@charset "UTF-8";
:root {
  interpolate-size: allow-keywords;
  --header-height: 5.625rem;
}
@media screen and (max-width: 1110px) {
  :root {
    --header-height: 4.375rem;
  }
}

/* ----------------------------- */
/* ==Reset (base)                */
/* ----------------------------- */
/*
 * 1. Switch to border-box model for all elements
 * 2. Avoid min-width: auto on flex and grid items
 */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* 1 */
  min-width: 0;
  /* 2 */
}

/*
 * 1. Remove the grey highlight on links in iOS 
 * 2. Prevent orientation font changes in iOS
 * 3. Breaks words to prevent overflow in all browsers
 */
html {
  font-size: 100%;
  -webkit-tap-highlight-color: transparent;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  overflow-wrap: break-word;
  /* 3 */
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Akrobat, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.1;
  background-color: #fff;
  color: #231F20;
}

/*
 * Links
 */
a {
  color: #231F20;
  text-decoration: none;
}

.highlight {
  color: #ED1C24;
}

a:focus,
a:hover,
a:active {
  color: #1F1F26;
  text-decoration: none;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  /* 2 */
}

/*
 * Vertical rythm
 */
h1,
.h1-like,
h2,
.h2-like {
  margin-top: 0;
  margin-bottom: 0;
}

p,
address,
ol,
ul,
dl,
blockquote,
pre,
h3,
.h3-like,
h4,
.h4-like,
h5,
.h5-like,
h6,
.h6-like,
dt,
dd {
  margin-top: 0;
  margin-bottom: 0;
}

/*
 * Nested elements
 */
ol ol,
ol ul,
ul ol,
ul ul,
li ul,
li ol,
nav ul,
nav ol,
li p,
li .p-like {
  margin-top: 0;
  margin-bottom: 0;
}

/*
 * Lists
 */
ul,
ol {
  padding-left: 1rem;
}

nav ul,
nav ol {
  list-style: none;
  padding: 0;
}

/*
 * Embed content
 */
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

img,
table,
td,
blockquote,
pre,
code,
input,
textarea,
select,
video,
svg,
iframe {
  max-width: 100%;
}

iframe,
img,
input,
select,
textarea {
  height: auto;
}

img {
  border-style: none;
}

/**
 * Remove the border on iframes in all browsers
 */
iframe {
  border-style: none;
}

/*
 * Fill color matching to text color
 */
svg:not([fill]) {
  fill: currentColor;
}

/*
 * Hide the overflow in IE
 */
svg:not(:root) {
  overflow: hidden;
}

/*
 * Tables
 */
table {
  border-collapse: collapse;
}

/*
 * Rulers
 */
hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  height: 0;
  overflow: visible;
  border: 0;
  border-top: 1px solid;
  margin: 1rem 0;
  clear: both;
  color: inherit;
}

/*
 * table styles
 */
table {
  width: 100%;
  max-width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  vertical-align: top;
  margin-bottom: 1rem;
}

section[id] {
  scroll-margin-top: 90px;
}
@media screen and (max-width: 1110px) {
  section[id] {
    scroll-margin-top: 70px;
  }
}

/* 
 * Hidden but not for an assistive technology like a screen reader, Yahoo! method 
 */
.visually-hidden,
.sr-only {
  position: absolute !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
}

/*
 * Disable animations styles when reduced motion is enabled
 */
@media (prefers-reduced-motion: reduce) {
  * {
    -webkit-animation: none !important;
            animation: none !important;
    -webkit-transition: none !important;
    transition: none !important;
  }
}
/*
 * Change the cursor on busy elements in all browsers.
 */
[aria-busy=true] {
  cursor: progress;
}

/*
 * Change the cursor on control elements in all browsers.
 */
[aria-controls] {
  cursor: pointer;
}

/*
 * Change the display on visually hidden accessible elements
 * in all browsers.
 */
[aria-hidden=false][hidden] {
  display: initial;
}

[aria-hidden=false][hidden]:not(:focus) {
  clip: rect(0, 0, 0, 0);
  position: absolute;
}

/* ----------------------------- */
/* ==Reset (forms)               */
/* ----------------------------- */
/*
 * Remove the tapping delay on clickable elements in all browsers .
 */
a,
area,
button,
input,
label,
select,
summary,
textarea,
[tabindex] {
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}

/*
 * 1. Change the inconsistent appearance in all browsers.
 * 2. Add typography inheritance in all browsers.
 */
button,
input,
select,
textarea {
  margin: 0;
  background-color: transparent; /* 1 */
  color: inherit; /* 1 */
  font-family: inherit; /* 2 */
  font-size: inherit; /* 2 */
  line-height: inherit; /* 2 */
  letter-spacing: inherit; /* 2 */
  vertical-align: middle;
}

/*
 * Basic User Interface reset
 */
button,
input:not([type=radio]):not([type=checkbox]),
select,
textarea {
  border: 0;
}

/*
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre,
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

pre {
  -moz-tab-size: 2;
    -o-tab-size: 2;
       tab-size: 2;
  white-space: pre-wrap;
  line-height: normal;
  overflow: auto;
  -ms-overflow-style: scrollbar;
}

/*
 * Show overflow in IE/Edge
 */
button,
input {
  overflow: visible;
}

/* 
 * Remove the inheritance of text transform in Firefox
 */
button,
select {
  text-transform: none;
}

/*
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

form,
fieldset {
  border: none;
}

fieldset {
  margin: 0;
  padding: 1rem;
}

legend {
  display: table;
  max-width: 100%;
  padding: 0 0.125rem;
  border: 0;
  color: inherit;
  white-space: normal;
}

label {
  display: inline-block;
  cursor: pointer;
}

textarea {
  overflow: auto;
  vertical-align: top;
  resize: vertical;
  white-space: pre-wrap;
}

progress {
  display: inline-block;
  width: 100%;
  vertical-align: baseline;
}

output {
  display: inline-block;
}

summary {
  display: list-item;
}

template {
  display: none;
}

/* ----------------------------- */
/* Form oddities                 */
/* ----------------------------- */
/*
 * 1. Correct the odd appearance in Chrome, Edge, and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/*
 * Correct the cursor style of increment and decrement buttons in Safari.
 */
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/*
 * Correct the text style of placeholders in Chrome, Edge, and Safari.
 */
::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54;
}

/*
 * Remove the inner padding in Chrome, Edge, and Safari on macOS.
 */
::-webkit-search-decoration {
  -webkit-appearance: none;
}

/*
 * 1. Correct the inability to style upload buttons in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/*
 * Remove the inner border and padding of focus outlines in Firefox.
 */
::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/*
 * Restore the focus outline styles unset by the previous rule in Firefox.
 */
:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/*
 * Remove the additional :invalid styles in Firefox.
 */
:-moz-ui-invalid {
  box-shadow: none;
}

/* ----------------------------- */
/* ==Print (quick print reset)   */
/* ----------------------------- */
@media print {
  * {
    background: transparent !important;
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
    text-shadow: none !important;
  }
  body {
    width: auto;
    margin: auto;
    font-family: serif;
    font-size: 12pt;
  }
  p,
  .p-like,
  h1,
  .h1-like,
  h2,
  .h2-like,
  h3,
  .h3-like,
  h4,
  .h4-like,
  h5,
  .h5-like,
  h6,
  .h6-like,
  blockquote,
  label,
  ul,
  ol {
    color: #000;
    margin: auto;
  }
  .print {
    display: block;
  }
  .no-print {
    display: none;
  }
  /* no orphans, no widows */
  p,
  .p-like,
  blockquote {
    orphans: 3;
    widows: 3;
  }
  /* no breaks inside these elements */
  blockquote,
  ul,
  ol {
    page-break-inside: avoid;
  }
  /* page break before main headers
  h1,
  .h1-like {
    page-break-before: always;
  }
  */
  /* no breaks after these elements */
  h1,
  .h1-like,
  h2,
  .h2-like,
  h3,
  .h3-like,
  caption {
    page-break-after: avoid;
  }
  a {
    color: #000;
  }
  /* displaying URLs
  a[href]::after {
    content: " (" attr(href) ")";
  }
  */
  a[href^="javascript:"]::after,
  a[href^="#"]::after {
    content: "";
  }
}
/* -------------------------------------------------- */
/* ==Grillade : système de micro-grille  de KNACSS   */
/* ------------------------------------------------ */
.grid {
  display: -ms-grid;
  display: grid;
}

@media (min-width: 353px) {
  .sm\:grid {
    display: -ms-grid;
    display: grid;
  }
}
@media (min-width: 724px) {
  .md\:grid {
    display: -ms-grid;
    display: grid;
  }
}
@media (min-width: 1070px) {
  .lg\:grid {
    display: -ms-grid;
    display: grid;
  }
}
@media (min-width: 1270px) {
  .xlg\:grid {
    display: -ms-grid;
    display: grid;
  }
}
/* grid-template-columns initialisation */
.grid-cols-1 {
  -ms-grid-columns: (minmax(0, 1fr))[1];
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-2 {
  -ms-grid-columns: (minmax(0, 1fr))[2];
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-cols-3 {
  -ms-grid-columns: (minmax(0, 1fr))[3];
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-cols-4 {
  -ms-grid-columns: (minmax(0, 1fr))[4];
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid-cols-5 {
  -ms-grid-columns: (minmax(0, 1fr))[5];
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.grid-cols-6 {
  -ms-grid-columns: (minmax(0, 1fr))[6];
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

/* grid-template-columns au sein des breakpoints */
@media (min-width: 353px) {
  .sm\:grid-cols-1 {
    -ms-grid-columns: (minmax(0, 1fr))[1];
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .sm\:grid-cols-2 {
    -ms-grid-columns: (minmax(0, 1fr))[2];
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .sm\:grid-cols-3 {
    -ms-grid-columns: (minmax(0, 1fr))[3];
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .sm\:grid-cols-4 {
    -ms-grid-columns: (minmax(0, 1fr))[4];
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .sm\:grid-cols-5 {
    -ms-grid-columns: (minmax(0, 1fr))[5];
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .sm\:grid-cols-6 {
    -ms-grid-columns: (minmax(0, 1fr))[6];
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}
@media (min-width: 724px) {
  .md\:grid-cols-1 {
    -ms-grid-columns: (minmax(0, 1fr))[1];
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .md\:grid-cols-2 {
    -ms-grid-columns: (minmax(0, 1fr))[2];
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .md\:grid-cols-3 {
    -ms-grid-columns: (minmax(0, 1fr))[3];
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .md\:grid-cols-4 {
    -ms-grid-columns: (minmax(0, 1fr))[4];
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .md\:grid-cols-5 {
    -ms-grid-columns: (minmax(0, 1fr))[5];
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .md\:grid-cols-6 {
    -ms-grid-columns: (minmax(0, 1fr))[6];
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}
@media (min-width: 1070px) {
  .lg\:grid-cols-1 {
    -ms-grid-columns: (minmax(0, 1fr))[1];
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .lg\:grid-cols-2 {
    -ms-grid-columns: (minmax(0, 1fr))[2];
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .lg\:grid-cols-3 {
    -ms-grid-columns: (minmax(0, 1fr))[3];
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .lg\:grid-cols-4 {
    -ms-grid-columns: (minmax(0, 1fr))[4];
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .lg\:grid-cols-5 {
    -ms-grid-columns: (minmax(0, 1fr))[5];
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .lg\:grid-cols-6 {
    -ms-grid-columns: (minmax(0, 1fr))[6];
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}
@media (min-width: 1270px) {
  .xlg\:grid-cols-1 {
    -ms-grid-columns: (minmax(0, 1fr))[1];
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .xlg\:grid-cols-2 {
    -ms-grid-columns: (minmax(0, 1fr))[2];
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .xlg\:grid-cols-3 {
    -ms-grid-columns: (minmax(0, 1fr))[3];
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .xlg\:grid-cols-4 {
    -ms-grid-columns: (minmax(0, 1fr))[4];
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .xlg\:grid-cols-5 {
    -ms-grid-columns: (minmax(0, 1fr))[5];
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .xlg\:grid-cols-6 {
    -ms-grid-columns: (minmax(0, 1fr))[6];
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}
/* gap initialisation */
.gap-0 {
  gap: 0;
}

.gap-x-0 {
  -webkit-column-gap: 0;
     -moz-column-gap: 0;
          column-gap: 0;
}

.gap-y-0 {
  row-gap: 0;
}

.gap-5 {
  gap: 0.313rem;
}

.gap-x-5 {
  -webkit-column-gap: 0.313rem;
     -moz-column-gap: 0.313rem;
          column-gap: 0.313rem;
}

.gap-y-5 {
  row-gap: 0.313rem;
}

.gap-10 {
  gap: 0.625rem;
}

.gap-x-10 {
  -webkit-column-gap: 0.625rem;
     -moz-column-gap: 0.625rem;
          column-gap: 0.625rem;
}

.gap-y-10 {
  row-gap: 0.625rem;
}

.gap-16 {
  gap: 1rem;
}

.gap-x-16 {
  -webkit-column-gap: 1rem;
     -moz-column-gap: 1rem;
          column-gap: 1rem;
}

.gap-y-16 {
  row-gap: 1rem;
}

.gap-20 {
  gap: 1.25rem;
}

.gap-x-20 {
  -webkit-column-gap: 1.25rem;
     -moz-column-gap: 1.25rem;
          column-gap: 1.25rem;
}

.gap-y-20 {
  row-gap: 1.25rem;
}

.gap-30 {
  gap: 1.875rem;
}

.gap-x-30 {
  -webkit-column-gap: 1.875rem;
     -moz-column-gap: 1.875rem;
          column-gap: 1.875rem;
}

.gap-y-30 {
  row-gap: 1.875rem;
}

.gap-36 {
  gap: 2.25rem;
}

.gap-x-36 {
  -webkit-column-gap: 2.25rem;
     -moz-column-gap: 2.25rem;
          column-gap: 2.25rem;
}

.gap-y-36 {
  row-gap: 2.25rem;
}

.gap-40 {
  gap: 2.5rem;
}

.gap-x-40 {
  -webkit-column-gap: 2.5rem;
     -moz-column-gap: 2.5rem;
          column-gap: 2.5rem;
}

.gap-y-40 {
  row-gap: 2.5rem;
}

.gap-70 {
  gap: 4.375rem;
}

.gap-x-70 {
  -webkit-column-gap: 4.375rem;
     -moz-column-gap: 4.375rem;
          column-gap: 4.375rem;
}

.gap-y-70 {
  row-gap: 4.375rem;
}

/* gap au sein des breakpoints */
@media (min-width: 353px) {
  .sm\:gap-0 {
    gap: 0;
  }
  .sm\:gap-x-0 {
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
  }
  .sm\:gap-y-0 {
    row-gap: 0;
  }
  .sm\:gap-5 {
    gap: 0.313rem;
  }
  .sm\:gap-x-5 {
    -webkit-column-gap: 0.313rem;
       -moz-column-gap: 0.313rem;
            column-gap: 0.313rem;
  }
  .sm\:gap-y-5 {
    row-gap: 0.313rem;
  }
  .sm\:gap-10 {
    gap: 0.625rem;
  }
  .sm\:gap-x-10 {
    -webkit-column-gap: 0.625rem;
       -moz-column-gap: 0.625rem;
            column-gap: 0.625rem;
  }
  .sm\:gap-y-10 {
    row-gap: 0.625rem;
  }
  .sm\:gap-16 {
    gap: 1rem;
  }
  .sm\:gap-x-16 {
    -webkit-column-gap: 1rem;
       -moz-column-gap: 1rem;
            column-gap: 1rem;
  }
  .sm\:gap-y-16 {
    row-gap: 1rem;
  }
  .sm\:gap-20 {
    gap: 1.25rem;
  }
  .sm\:gap-x-20 {
    -webkit-column-gap: 1.25rem;
       -moz-column-gap: 1.25rem;
            column-gap: 1.25rem;
  }
  .sm\:gap-y-20 {
    row-gap: 1.25rem;
  }
  .sm\:gap-30 {
    gap: 1.875rem;
  }
  .sm\:gap-x-30 {
    -webkit-column-gap: 1.875rem;
       -moz-column-gap: 1.875rem;
            column-gap: 1.875rem;
  }
  .sm\:gap-y-30 {
    row-gap: 1.875rem;
  }
  .sm\:gap-36 {
    gap: 2.25rem;
  }
  .sm\:gap-x-36 {
    -webkit-column-gap: 2.25rem;
       -moz-column-gap: 2.25rem;
            column-gap: 2.25rem;
  }
  .sm\:gap-y-36 {
    row-gap: 2.25rem;
  }
  .sm\:gap-40 {
    gap: 2.5rem;
  }
  .sm\:gap-x-40 {
    -webkit-column-gap: 2.5rem;
       -moz-column-gap: 2.5rem;
            column-gap: 2.5rem;
  }
  .sm\:gap-y-40 {
    row-gap: 2.5rem;
  }
  .sm\:gap-70 {
    gap: 4.375rem;
  }
  .sm\:gap-x-70 {
    -webkit-column-gap: 4.375rem;
       -moz-column-gap: 4.375rem;
            column-gap: 4.375rem;
  }
  .sm\:gap-y-70 {
    row-gap: 4.375rem;
  }
}
@media (min-width: 724px) {
  .md\:gap-0 {
    gap: 0;
  }
  .md\:gap-x-0 {
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
  }
  .md\:gap-y-0 {
    row-gap: 0;
  }
  .md\:gap-5 {
    gap: 0.313rem;
  }
  .md\:gap-x-5 {
    -webkit-column-gap: 0.313rem;
       -moz-column-gap: 0.313rem;
            column-gap: 0.313rem;
  }
  .md\:gap-y-5 {
    row-gap: 0.313rem;
  }
  .md\:gap-10 {
    gap: 0.625rem;
  }
  .md\:gap-x-10 {
    -webkit-column-gap: 0.625rem;
       -moz-column-gap: 0.625rem;
            column-gap: 0.625rem;
  }
  .md\:gap-y-10 {
    row-gap: 0.625rem;
  }
  .md\:gap-16 {
    gap: 1rem;
  }
  .md\:gap-x-16 {
    -webkit-column-gap: 1rem;
       -moz-column-gap: 1rem;
            column-gap: 1rem;
  }
  .md\:gap-y-16 {
    row-gap: 1rem;
  }
  .md\:gap-20 {
    gap: 1.25rem;
  }
  .md\:gap-x-20 {
    -webkit-column-gap: 1.25rem;
       -moz-column-gap: 1.25rem;
            column-gap: 1.25rem;
  }
  .md\:gap-y-20 {
    row-gap: 1.25rem;
  }
  .md\:gap-30 {
    gap: 1.875rem;
  }
  .md\:gap-x-30 {
    -webkit-column-gap: 1.875rem;
       -moz-column-gap: 1.875rem;
            column-gap: 1.875rem;
  }
  .md\:gap-y-30 {
    row-gap: 1.875rem;
  }
  .md\:gap-36 {
    gap: 2.25rem;
  }
  .md\:gap-x-36 {
    -webkit-column-gap: 2.25rem;
       -moz-column-gap: 2.25rem;
            column-gap: 2.25rem;
  }
  .md\:gap-y-36 {
    row-gap: 2.25rem;
  }
  .md\:gap-40 {
    gap: 2.5rem;
  }
  .md\:gap-x-40 {
    -webkit-column-gap: 2.5rem;
       -moz-column-gap: 2.5rem;
            column-gap: 2.5rem;
  }
  .md\:gap-y-40 {
    row-gap: 2.5rem;
  }
  .md\:gap-70 {
    gap: 4.375rem;
  }
  .md\:gap-x-70 {
    -webkit-column-gap: 4.375rem;
       -moz-column-gap: 4.375rem;
            column-gap: 4.375rem;
  }
  .md\:gap-y-70 {
    row-gap: 4.375rem;
  }
}
@media (min-width: 1070px) {
  .lg\:gap-0 {
    gap: 0;
  }
  .lg\:gap-x-0 {
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
  }
  .lg\:gap-y-0 {
    row-gap: 0;
  }
  .lg\:gap-5 {
    gap: 0.313rem;
  }
  .lg\:gap-x-5 {
    -webkit-column-gap: 0.313rem;
       -moz-column-gap: 0.313rem;
            column-gap: 0.313rem;
  }
  .lg\:gap-y-5 {
    row-gap: 0.313rem;
  }
  .lg\:gap-10 {
    gap: 0.625rem;
  }
  .lg\:gap-x-10 {
    -webkit-column-gap: 0.625rem;
       -moz-column-gap: 0.625rem;
            column-gap: 0.625rem;
  }
  .lg\:gap-y-10 {
    row-gap: 0.625rem;
  }
  .lg\:gap-16 {
    gap: 1rem;
  }
  .lg\:gap-x-16 {
    -webkit-column-gap: 1rem;
       -moz-column-gap: 1rem;
            column-gap: 1rem;
  }
  .lg\:gap-y-16 {
    row-gap: 1rem;
  }
  .lg\:gap-20 {
    gap: 1.25rem;
  }
  .lg\:gap-x-20 {
    -webkit-column-gap: 1.25rem;
       -moz-column-gap: 1.25rem;
            column-gap: 1.25rem;
  }
  .lg\:gap-y-20 {
    row-gap: 1.25rem;
  }
  .lg\:gap-30 {
    gap: 1.875rem;
  }
  .lg\:gap-x-30 {
    -webkit-column-gap: 1.875rem;
       -moz-column-gap: 1.875rem;
            column-gap: 1.875rem;
  }
  .lg\:gap-y-30 {
    row-gap: 1.875rem;
  }
  .lg\:gap-36 {
    gap: 2.25rem;
  }
  .lg\:gap-x-36 {
    -webkit-column-gap: 2.25rem;
       -moz-column-gap: 2.25rem;
            column-gap: 2.25rem;
  }
  .lg\:gap-y-36 {
    row-gap: 2.25rem;
  }
  .lg\:gap-40 {
    gap: 2.5rem;
  }
  .lg\:gap-x-40 {
    -webkit-column-gap: 2.5rem;
       -moz-column-gap: 2.5rem;
            column-gap: 2.5rem;
  }
  .lg\:gap-y-40 {
    row-gap: 2.5rem;
  }
  .lg\:gap-70 {
    gap: 4.375rem;
  }
  .lg\:gap-x-70 {
    -webkit-column-gap: 4.375rem;
       -moz-column-gap: 4.375rem;
            column-gap: 4.375rem;
  }
  .lg\:gap-y-70 {
    row-gap: 4.375rem;
  }
}
@media (min-width: 1270px) {
  .xlg\:gap-0 {
    gap: 0;
  }
  .xlg\:gap-x-0 {
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
  }
  .xlg\:gap-y-0 {
    row-gap: 0;
  }
  .xlg\:gap-5 {
    gap: 0.313rem;
  }
  .xlg\:gap-x-5 {
    -webkit-column-gap: 0.313rem;
       -moz-column-gap: 0.313rem;
            column-gap: 0.313rem;
  }
  .xlg\:gap-y-5 {
    row-gap: 0.313rem;
  }
  .xlg\:gap-10 {
    gap: 0.625rem;
  }
  .xlg\:gap-x-10 {
    -webkit-column-gap: 0.625rem;
       -moz-column-gap: 0.625rem;
            column-gap: 0.625rem;
  }
  .xlg\:gap-y-10 {
    row-gap: 0.625rem;
  }
  .xlg\:gap-16 {
    gap: 1rem;
  }
  .xlg\:gap-x-16 {
    -webkit-column-gap: 1rem;
       -moz-column-gap: 1rem;
            column-gap: 1rem;
  }
  .xlg\:gap-y-16 {
    row-gap: 1rem;
  }
  .xlg\:gap-20 {
    gap: 1.25rem;
  }
  .xlg\:gap-x-20 {
    -webkit-column-gap: 1.25rem;
       -moz-column-gap: 1.25rem;
            column-gap: 1.25rem;
  }
  .xlg\:gap-y-20 {
    row-gap: 1.25rem;
  }
  .xlg\:gap-30 {
    gap: 1.875rem;
  }
  .xlg\:gap-x-30 {
    -webkit-column-gap: 1.875rem;
       -moz-column-gap: 1.875rem;
            column-gap: 1.875rem;
  }
  .xlg\:gap-y-30 {
    row-gap: 1.875rem;
  }
  .xlg\:gap-36 {
    gap: 2.25rem;
  }
  .xlg\:gap-x-36 {
    -webkit-column-gap: 2.25rem;
       -moz-column-gap: 2.25rem;
            column-gap: 2.25rem;
  }
  .xlg\:gap-y-36 {
    row-gap: 2.25rem;
  }
  .xlg\:gap-40 {
    gap: 2.5rem;
  }
  .xlg\:gap-x-40 {
    -webkit-column-gap: 2.5rem;
       -moz-column-gap: 2.5rem;
            column-gap: 2.5rem;
  }
  .xlg\:gap-y-40 {
    row-gap: 2.5rem;
  }
  .xlg\:gap-70 {
    gap: 4.375rem;
  }
  .xlg\:gap-x-70 {
    -webkit-column-gap: 4.375rem;
       -moz-column-gap: 4.375rem;
            column-gap: 4.375rem;
  }
  .xlg\:gap-y-70 {
    row-gap: 4.375rem;
  }
}
/* grid-items initialisation */
.col-start-1 {
  -ms-grid-column: 1;
      grid-column-start: 1;
}

.col-end-1 {
  -ms-grid-column-span: 1;
  grid-column-end: 1;
}

.col-span-1 {
  -ms-grid-column-span: 1;
  grid-column: span 1/span 1;
}

.col-span-full {
  grid-column: 1/-1;
}

.row-start-1 {
  -ms-grid-row: 1;
      grid-row-start: 1;
}

.row-end-1 {
  -ms-grid-row-span: 1;
  grid-row-end: 1;
}

.row-span-1 {
  -ms-grid-row-span: 1;
  grid-row: span 1/span 1;
}

.col-start-2 {
  -ms-grid-column: 2;
      grid-column-start: 2;
}

.col-end-2 {
  -ms-grid-column-span: 2;
  grid-column-end: 2;
}

.col-span-2 {
  -ms-grid-column-span: 2;
  grid-column: span 2/span 2;
}

.col-span-full {
  grid-column: 1/-1;
}

.row-start-2 {
  -ms-grid-row: 2;
      grid-row-start: 2;
}

.row-end-2 {
  -ms-grid-row-span: 2;
  grid-row-end: 2;
}

.row-span-2 {
  -ms-grid-row-span: 2;
  grid-row: span 2/span 2;
}

.col-start-3 {
  -ms-grid-column: 3;
      grid-column-start: 3;
}

.col-end-3 {
  -ms-grid-column-span: 3;
  grid-column-end: 3;
}

.col-span-3 {
  -ms-grid-column-span: 3;
  grid-column: span 3/span 3;
}

.col-span-full {
  grid-column: 1/-1;
}

.row-start-3 {
  -ms-grid-row: 3;
      grid-row-start: 3;
}

.row-end-3 {
  -ms-grid-row-span: 3;
  grid-row-end: 3;
}

.row-span-3 {
  -ms-grid-row-span: 3;
  grid-row: span 3/span 3;
}

.col-start-4 {
  -ms-grid-column: 4;
      grid-column-start: 4;
}

.col-end-4 {
  -ms-grid-column-span: 4;
  grid-column-end: 4;
}

.col-span-4 {
  -ms-grid-column-span: 4;
  grid-column: span 4/span 4;
}

.col-span-full {
  grid-column: 1/-1;
}

.row-start-4 {
  -ms-grid-row: 4;
      grid-row-start: 4;
}

.row-end-4 {
  -ms-grid-row-span: 4;
  grid-row-end: 4;
}

.row-span-4 {
  -ms-grid-row-span: 4;
  grid-row: span 4/span 4;
}

.col-start-5 {
  -ms-grid-column: 5;
      grid-column-start: 5;
}

.col-end-5 {
  -ms-grid-column-span: 5;
  grid-column-end: 5;
}

.col-span-5 {
  -ms-grid-column-span: 5;
  grid-column: span 5/span 5;
}

.col-span-full {
  grid-column: 1/-1;
}

.row-start-5 {
  -ms-grid-row: 5;
      grid-row-start: 5;
}

.row-end-5 {
  -ms-grid-row-span: 5;
  grid-row-end: 5;
}

.row-span-5 {
  -ms-grid-row-span: 5;
  grid-row: span 5/span 5;
}

.col-start-6 {
  -ms-grid-column: 6;
      grid-column-start: 6;
}

.col-end-6 {
  -ms-grid-column-span: 6;
  grid-column-end: 6;
}

.col-span-6 {
  -ms-grid-column-span: 6;
  grid-column: span 6/span 6;
}

.col-span-full {
  grid-column: 1/-1;
}

.row-start-6 {
  -ms-grid-row: 6;
      grid-row-start: 6;
}

.row-end-6 {
  -ms-grid-row-span: 6;
  grid-row-end: 6;
}

.row-span-6 {
  -ms-grid-row-span: 6;
  grid-row: span 6/span 6;
}

/* grid-items au sein des breakpoints */
@media (min-width: 353px) {
  .sm\:col-start-1 {
    -ms-grid-column: 1;
        grid-column-start: 1;
  }
  .sm\:col-end-1 {
    -ms-grid-column-span: 1;
    grid-column-end: 1;
  }
  .sm\:col-span-1 {
    -ms-grid-column-span: 1;
    grid-column: span 1/span 1;
  }
  .sm\:col-span-full {
    grid-column: 1/-1;
  }
  .sm\:row-start-1 {
    -ms-grid-row: 1;
        grid-row-start: 1;
  }
  .sm\:row-end-1 {
    -ms-grid-row-span: 1;
    grid-row-end: 1;
  }
  .sm\:row-span-1 {
    -ms-grid-row-span: 1;
    grid-row: span 1/span 1;
  }
  .sm\:col-start-2 {
    -ms-grid-column: 2;
        grid-column-start: 2;
  }
  .sm\:col-end-2 {
    -ms-grid-column-span: 2;
    grid-column-end: 2;
  }
  .sm\:col-span-2 {
    -ms-grid-column-span: 2;
    grid-column: span 2/span 2;
  }
  .sm\:col-span-full {
    grid-column: 1/-1;
  }
  .sm\:row-start-2 {
    -ms-grid-row: 2;
        grid-row-start: 2;
  }
  .sm\:row-end-2 {
    -ms-grid-row-span: 2;
    grid-row-end: 2;
  }
  .sm\:row-span-2 {
    -ms-grid-row-span: 2;
    grid-row: span 2/span 2;
  }
  .sm\:col-start-3 {
    -ms-grid-column: 3;
        grid-column-start: 3;
  }
  .sm\:col-end-3 {
    -ms-grid-column-span: 3;
    grid-column-end: 3;
  }
  .sm\:col-span-3 {
    -ms-grid-column-span: 3;
    grid-column: span 3/span 3;
  }
  .sm\:col-span-full {
    grid-column: 1/-1;
  }
  .sm\:row-start-3 {
    -ms-grid-row: 3;
        grid-row-start: 3;
  }
  .sm\:row-end-3 {
    -ms-grid-row-span: 3;
    grid-row-end: 3;
  }
  .sm\:row-span-3 {
    -ms-grid-row-span: 3;
    grid-row: span 3/span 3;
  }
  .sm\:col-start-4 {
    -ms-grid-column: 4;
        grid-column-start: 4;
  }
  .sm\:col-end-4 {
    -ms-grid-column-span: 4;
    grid-column-end: 4;
  }
  .sm\:col-span-4 {
    -ms-grid-column-span: 4;
    grid-column: span 4/span 4;
  }
  .sm\:col-span-full {
    grid-column: 1/-1;
  }
  .sm\:row-start-4 {
    -ms-grid-row: 4;
        grid-row-start: 4;
  }
  .sm\:row-end-4 {
    -ms-grid-row-span: 4;
    grid-row-end: 4;
  }
  .sm\:row-span-4 {
    -ms-grid-row-span: 4;
    grid-row: span 4/span 4;
  }
  .sm\:col-start-5 {
    -ms-grid-column: 5;
        grid-column-start: 5;
  }
  .sm\:col-end-5 {
    -ms-grid-column-span: 5;
    grid-column-end: 5;
  }
  .sm\:col-span-5 {
    -ms-grid-column-span: 5;
    grid-column: span 5/span 5;
  }
  .sm\:col-span-full {
    grid-column: 1/-1;
  }
  .sm\:row-start-5 {
    -ms-grid-row: 5;
        grid-row-start: 5;
  }
  .sm\:row-end-5 {
    -ms-grid-row-span: 5;
    grid-row-end: 5;
  }
  .sm\:row-span-5 {
    -ms-grid-row-span: 5;
    grid-row: span 5/span 5;
  }
  .sm\:col-start-6 {
    -ms-grid-column: 6;
        grid-column-start: 6;
  }
  .sm\:col-end-6 {
    -ms-grid-column-span: 6;
    grid-column-end: 6;
  }
  .sm\:col-span-6 {
    -ms-grid-column-span: 6;
    grid-column: span 6/span 6;
  }
  .sm\:col-span-full {
    grid-column: 1/-1;
  }
  .sm\:row-start-6 {
    -ms-grid-row: 6;
        grid-row-start: 6;
  }
  .sm\:row-end-6 {
    -ms-grid-row-span: 6;
    grid-row-end: 6;
  }
  .sm\:row-span-6 {
    -ms-grid-row-span: 6;
    grid-row: span 6/span 6;
  }
}
@media (min-width: 724px) {
  .md\:col-start-1 {
    -ms-grid-column: 1;
        grid-column-start: 1;
  }
  .md\:col-end-1 {
    -ms-grid-column-span: 1;
    grid-column-end: 1;
  }
  .md\:col-span-1 {
    -ms-grid-column-span: 1;
    grid-column: span 1/span 1;
  }
  .md\:col-span-full {
    grid-column: 1/-1;
  }
  .md\:row-start-1 {
    -ms-grid-row: 1;
        grid-row-start: 1;
  }
  .md\:row-end-1 {
    -ms-grid-row-span: 1;
    grid-row-end: 1;
  }
  .md\:row-span-1 {
    -ms-grid-row-span: 1;
    grid-row: span 1/span 1;
  }
  .md\:col-start-2 {
    -ms-grid-column: 2;
        grid-column-start: 2;
  }
  .md\:col-end-2 {
    -ms-grid-column-span: 2;
    grid-column-end: 2;
  }
  .md\:col-span-2 {
    -ms-grid-column-span: 2;
    grid-column: span 2/span 2;
  }
  .md\:col-span-full {
    grid-column: 1/-1;
  }
  .md\:row-start-2 {
    -ms-grid-row: 2;
        grid-row-start: 2;
  }
  .md\:row-end-2 {
    -ms-grid-row-span: 2;
    grid-row-end: 2;
  }
  .md\:row-span-2 {
    -ms-grid-row-span: 2;
    grid-row: span 2/span 2;
  }
  .md\:col-start-3 {
    -ms-grid-column: 3;
        grid-column-start: 3;
  }
  .md\:col-end-3 {
    -ms-grid-column-span: 3;
    grid-column-end: 3;
  }
  .md\:col-span-3 {
    -ms-grid-column-span: 3;
    grid-column: span 3/span 3;
  }
  .md\:col-span-full {
    grid-column: 1/-1;
  }
  .md\:row-start-3 {
    -ms-grid-row: 3;
        grid-row-start: 3;
  }
  .md\:row-end-3 {
    -ms-grid-row-span: 3;
    grid-row-end: 3;
  }
  .md\:row-span-3 {
    -ms-grid-row-span: 3;
    grid-row: span 3/span 3;
  }
  .md\:col-start-4 {
    -ms-grid-column: 4;
        grid-column-start: 4;
  }
  .md\:col-end-4 {
    -ms-grid-column-span: 4;
    grid-column-end: 4;
  }
  .md\:col-span-4 {
    -ms-grid-column-span: 4;
    grid-column: span 4/span 4;
  }
  .md\:col-span-full {
    grid-column: 1/-1;
  }
  .md\:row-start-4 {
    -ms-grid-row: 4;
        grid-row-start: 4;
  }
  .md\:row-end-4 {
    -ms-grid-row-span: 4;
    grid-row-end: 4;
  }
  .md\:row-span-4 {
    -ms-grid-row-span: 4;
    grid-row: span 4/span 4;
  }
  .md\:col-start-5 {
    -ms-grid-column: 5;
        grid-column-start: 5;
  }
  .md\:col-end-5 {
    -ms-grid-column-span: 5;
    grid-column-end: 5;
  }
  .md\:col-span-5 {
    -ms-grid-column-span: 5;
    grid-column: span 5/span 5;
  }
  .md\:col-span-full {
    grid-column: 1/-1;
  }
  .md\:row-start-5 {
    -ms-grid-row: 5;
        grid-row-start: 5;
  }
  .md\:row-end-5 {
    -ms-grid-row-span: 5;
    grid-row-end: 5;
  }
  .md\:row-span-5 {
    -ms-grid-row-span: 5;
    grid-row: span 5/span 5;
  }
  .md\:col-start-6 {
    -ms-grid-column: 6;
        grid-column-start: 6;
  }
  .md\:col-end-6 {
    -ms-grid-column-span: 6;
    grid-column-end: 6;
  }
  .md\:col-span-6 {
    -ms-grid-column-span: 6;
    grid-column: span 6/span 6;
  }
  .md\:col-span-full {
    grid-column: 1/-1;
  }
  .md\:row-start-6 {
    -ms-grid-row: 6;
        grid-row-start: 6;
  }
  .md\:row-end-6 {
    -ms-grid-row-span: 6;
    grid-row-end: 6;
  }
  .md\:row-span-6 {
    -ms-grid-row-span: 6;
    grid-row: span 6/span 6;
  }
}
@media (min-width: 1070px) {
  .lg\:col-start-1 {
    -ms-grid-column: 1;
        grid-column-start: 1;
  }
  .lg\:col-end-1 {
    -ms-grid-column-span: 1;
    grid-column-end: 1;
  }
  .lg\:col-span-1 {
    -ms-grid-column-span: 1;
    grid-column: span 1/span 1;
  }
  .lg\:col-span-full {
    grid-column: 1/-1;
  }
  .lg\:row-start-1 {
    -ms-grid-row: 1;
        grid-row-start: 1;
  }
  .lg\:row-end-1 {
    -ms-grid-row-span: 1;
    grid-row-end: 1;
  }
  .lg\:row-span-1 {
    -ms-grid-row-span: 1;
    grid-row: span 1/span 1;
  }
  .lg\:col-start-2 {
    -ms-grid-column: 2;
        grid-column-start: 2;
  }
  .lg\:col-end-2 {
    -ms-grid-column-span: 2;
    grid-column-end: 2;
  }
  .lg\:col-span-2 {
    -ms-grid-column-span: 2;
    grid-column: span 2/span 2;
  }
  .lg\:col-span-full {
    grid-column: 1/-1;
  }
  .lg\:row-start-2 {
    -ms-grid-row: 2;
        grid-row-start: 2;
  }
  .lg\:row-end-2 {
    -ms-grid-row-span: 2;
    grid-row-end: 2;
  }
  .lg\:row-span-2 {
    -ms-grid-row-span: 2;
    grid-row: span 2/span 2;
  }
  .lg\:col-start-3 {
    -ms-grid-column: 3;
        grid-column-start: 3;
  }
  .lg\:col-end-3 {
    -ms-grid-column-span: 3;
    grid-column-end: 3;
  }
  .lg\:col-span-3 {
    -ms-grid-column-span: 3;
    grid-column: span 3/span 3;
  }
  .lg\:col-span-full {
    grid-column: 1/-1;
  }
  .lg\:row-start-3 {
    -ms-grid-row: 3;
        grid-row-start: 3;
  }
  .lg\:row-end-3 {
    -ms-grid-row-span: 3;
    grid-row-end: 3;
  }
  .lg\:row-span-3 {
    -ms-grid-row-span: 3;
    grid-row: span 3/span 3;
  }
  .lg\:col-start-4 {
    -ms-grid-column: 4;
        grid-column-start: 4;
  }
  .lg\:col-end-4 {
    -ms-grid-column-span: 4;
    grid-column-end: 4;
  }
  .lg\:col-span-4 {
    -ms-grid-column-span: 4;
    grid-column: span 4/span 4;
  }
  .lg\:col-span-full {
    grid-column: 1/-1;
  }
  .lg\:row-start-4 {
    -ms-grid-row: 4;
        grid-row-start: 4;
  }
  .lg\:row-end-4 {
    -ms-grid-row-span: 4;
    grid-row-end: 4;
  }
  .lg\:row-span-4 {
    -ms-grid-row-span: 4;
    grid-row: span 4/span 4;
  }
  .lg\:col-start-5 {
    -ms-grid-column: 5;
        grid-column-start: 5;
  }
  .lg\:col-end-5 {
    -ms-grid-column-span: 5;
    grid-column-end: 5;
  }
  .lg\:col-span-5 {
    -ms-grid-column-span: 5;
    grid-column: span 5/span 5;
  }
  .lg\:col-span-full {
    grid-column: 1/-1;
  }
  .lg\:row-start-5 {
    -ms-grid-row: 5;
        grid-row-start: 5;
  }
  .lg\:row-end-5 {
    -ms-grid-row-span: 5;
    grid-row-end: 5;
  }
  .lg\:row-span-5 {
    -ms-grid-row-span: 5;
    grid-row: span 5/span 5;
  }
  .lg\:col-start-6 {
    -ms-grid-column: 6;
        grid-column-start: 6;
  }
  .lg\:col-end-6 {
    -ms-grid-column-span: 6;
    grid-column-end: 6;
  }
  .lg\:col-span-6 {
    -ms-grid-column-span: 6;
    grid-column: span 6/span 6;
  }
  .lg\:col-span-full {
    grid-column: 1/-1;
  }
  .lg\:row-start-6 {
    -ms-grid-row: 6;
        grid-row-start: 6;
  }
  .lg\:row-end-6 {
    -ms-grid-row-span: 6;
    grid-row-end: 6;
  }
  .lg\:row-span-6 {
    -ms-grid-row-span: 6;
    grid-row: span 6/span 6;
  }
}
@media (min-width: 1270px) {
  .xlg\:col-start-1 {
    -ms-grid-column: 1;
        grid-column-start: 1;
  }
  .xlg\:col-end-1 {
    -ms-grid-column-span: 1;
    grid-column-end: 1;
  }
  .xlg\:col-span-1 {
    -ms-grid-column-span: 1;
    grid-column: span 1/span 1;
  }
  .xlg\:col-span-full {
    grid-column: 1/-1;
  }
  .xlg\:row-start-1 {
    -ms-grid-row: 1;
        grid-row-start: 1;
  }
  .xlg\:row-end-1 {
    -ms-grid-row-span: 1;
    grid-row-end: 1;
  }
  .xlg\:row-span-1 {
    -ms-grid-row-span: 1;
    grid-row: span 1/span 1;
  }
  .xlg\:col-start-2 {
    -ms-grid-column: 2;
        grid-column-start: 2;
  }
  .xlg\:col-end-2 {
    -ms-grid-column-span: 2;
    grid-column-end: 2;
  }
  .xlg\:col-span-2 {
    -ms-grid-column-span: 2;
    grid-column: span 2/span 2;
  }
  .xlg\:col-span-full {
    grid-column: 1/-1;
  }
  .xlg\:row-start-2 {
    -ms-grid-row: 2;
        grid-row-start: 2;
  }
  .xlg\:row-end-2 {
    -ms-grid-row-span: 2;
    grid-row-end: 2;
  }
  .xlg\:row-span-2 {
    -ms-grid-row-span: 2;
    grid-row: span 2/span 2;
  }
  .xlg\:col-start-3 {
    -ms-grid-column: 3;
        grid-column-start: 3;
  }
  .xlg\:col-end-3 {
    -ms-grid-column-span: 3;
    grid-column-end: 3;
  }
  .xlg\:col-span-3 {
    -ms-grid-column-span: 3;
    grid-column: span 3/span 3;
  }
  .xlg\:col-span-full {
    grid-column: 1/-1;
  }
  .xlg\:row-start-3 {
    -ms-grid-row: 3;
        grid-row-start: 3;
  }
  .xlg\:row-end-3 {
    -ms-grid-row-span: 3;
    grid-row-end: 3;
  }
  .xlg\:row-span-3 {
    -ms-grid-row-span: 3;
    grid-row: span 3/span 3;
  }
  .xlg\:col-start-4 {
    -ms-grid-column: 4;
        grid-column-start: 4;
  }
  .xlg\:col-end-4 {
    -ms-grid-column-span: 4;
    grid-column-end: 4;
  }
  .xlg\:col-span-4 {
    -ms-grid-column-span: 4;
    grid-column: span 4/span 4;
  }
  .xlg\:col-span-full {
    grid-column: 1/-1;
  }
  .xlg\:row-start-4 {
    -ms-grid-row: 4;
        grid-row-start: 4;
  }
  .xlg\:row-end-4 {
    -ms-grid-row-span: 4;
    grid-row-end: 4;
  }
  .xlg\:row-span-4 {
    -ms-grid-row-span: 4;
    grid-row: span 4/span 4;
  }
  .xlg\:col-start-5 {
    -ms-grid-column: 5;
        grid-column-start: 5;
  }
  .xlg\:col-end-5 {
    -ms-grid-column-span: 5;
    grid-column-end: 5;
  }
  .xlg\:col-span-5 {
    -ms-grid-column-span: 5;
    grid-column: span 5/span 5;
  }
  .xlg\:col-span-full {
    grid-column: 1/-1;
  }
  .xlg\:row-start-5 {
    -ms-grid-row: 5;
        grid-row-start: 5;
  }
  .xlg\:row-end-5 {
    -ms-grid-row-span: 5;
    grid-row-end: 5;
  }
  .xlg\:row-span-5 {
    -ms-grid-row-span: 5;
    grid-row: span 5/span 5;
  }
  .xlg\:col-start-6 {
    -ms-grid-column: 6;
        grid-column-start: 6;
  }
  .xlg\:col-end-6 {
    -ms-grid-column-span: 6;
    grid-column-end: 6;
  }
  .xlg\:col-span-6 {
    -ms-grid-column-span: 6;
    grid-column: span 6/span 6;
  }
  .xlg\:col-span-full {
    grid-column: 1/-1;
  }
  .xlg\:row-start-6 {
    -ms-grid-row: 6;
        grid-row-start: 6;
  }
  .xlg\:row-end-6 {
    -ms-grid-row-span: 6;
    grid-row-end: 6;
  }
  .xlg\:row-span-6 {
    -ms-grid-row-span: 6;
    grid-row: span 6/span 6;
  }
}
/* ----------------------------  */
/* ==Layout classes              */
/* ----------------------------- */
/* Global container */
.layout-maxed {
  display: -ms-grid;
  display: grid;
  overflow-x: clip;
  -ms-grid-columns: minmax(20px, 1fr) minmax(auto, calc(353px + 20px * 2)) minmax(20px, 1fr);
  grid-template-columns: minmax(20px, 1fr) minmax(auto, calc(353px + 20px * 2)) minmax(20px, 1fr);
}
@media (min-width: calc(353px + 20px * 2)) {
  .layout-maxed {
    -ms-grid-columns: minmax(20px, 1fr) minmax(auto, 353px) minmax(20px, 1fr);
    grid-template-columns: minmax(20px, 1fr) minmax(auto, 353px) minmax(20px, 1fr);
  }
}
@media (min-width: calc(724px + 20px * 2)) {
  .layout-maxed {
    -ms-grid-columns: minmax(20px, 1fr) minmax(auto, 724px) minmax(20px, 1fr);
    grid-template-columns: minmax(20px, 1fr) minmax(auto, 724px) minmax(20px, 1fr);
  }
}
@media (min-width: calc(1070px + 20px * 2)) {
  .layout-maxed {
    -ms-grid-columns: minmax(20px, 1fr) minmax(auto, 1070px) minmax(20px, 1fr);
    grid-template-columns: minmax(20px, 1fr) minmax(auto, 1070px) minmax(20px, 1fr);
  }
}
@media (min-width: calc(1270px + 20px * 2)) {
  .layout-maxed {
    -ms-grid-columns: minmax(20px, 1fr) minmax(auto, 1270px) minmax(20px, 1fr);
    grid-template-columns: minmax(20px, 1fr) minmax(auto, 1270px) minmax(20px, 1fr);
  }
}

/* Center all children */
.layout-maxed > * {
  -ms-grid-column: 2;
  grid-column: 2;
}

/* Hero box  */
.layout-hero {
  grid-column: 1/-1;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: inherit;
  grid-template-columns: inherit;
}

.layout-hero > * {
  -ms-grid-column: 2;
  grid-column: 2;
}

.layout-maxed-4col {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(20px, 1fr) minmax(auto, 288px) minmax(auto, 288px) minmax(20px, 1fr);
  grid-template-columns: minmax(20px, 1fr) minmax(auto, 288px) minmax(auto, 288px) minmax(20px, 1fr);
}
@media (min-width: 353px) {
  .layout-maxed-4col {
    -ms-grid-columns: minmax(20px, 1fr) minmax(auto, 176.5px) minmax(auto, 176.5px) minmax(20px, 1fr);
    grid-template-columns: minmax(20px, 1fr) minmax(auto, 176.5px) minmax(auto, 176.5px) minmax(20px, 1fr);
  }
}
@media (min-width: 724px) {
  .layout-maxed-4col {
    -ms-grid-columns: minmax(20px, 1fr) minmax(auto, 362px) minmax(auto, 362px) minmax(20px, 1fr);
    grid-template-columns: minmax(20px, 1fr) minmax(auto, 362px) minmax(auto, 362px) minmax(20px, 1fr);
  }
}
@media (min-width: 1070px) {
  .layout-maxed-4col {
    -ms-grid-columns: minmax(20px, 1fr) minmax(auto, 535px) minmax(auto, 535px) minmax(20px, 1fr);
    grid-template-columns: minmax(20px, 1fr) minmax(auto, 535px) minmax(auto, 535px) minmax(20px, 1fr);
  }
}
@media (min-width: 1270px) {
  .layout-maxed-4col {
    -ms-grid-columns: minmax(20px, 1fr) minmax(auto, 635px) minmax(auto, 635px) minmax(20px, 1fr);
    grid-template-columns: minmax(20px, 1fr) minmax(auto, 635px) minmax(auto, 635px) minmax(20px, 1fr);
  }
}
.layout-maxed-4col > * {
  -ms-grid-column: 2;
  -ms-grid-column-span: 2;
  grid-column: 2/4;
}
.layout-maxed-4col .expand-right {
  -ms-grid-column: 3;
  -ms-grid-column-span: 2;
  grid-column: 3/5;
}
@media screen and (max-width: 764px) {
  .layout-maxed-4col .expand-right {
    -ms-grid-column: 2;
    -ms-grid-column-span: 2;
    grid-column: 2/4;
  }
}
.layout-maxed-4col *:has(+ .expand-right):not(.expand-left) {
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2/3;
}
.layout-maxed-4col .expand-left {
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1/3;
}
.layout-maxed-4col .expand-left + *:not(.expand-right) {
  -ms-grid-column: 3;
  grid-column: 3/3;
}
@media screen and (max-width: 764px) {
  .layout-maxed-4col .expand-left {
    -ms-grid-column: 2;
    -ms-grid-column-span: 2;
    grid-column: 2/4;
  }
}
@media screen and (max-width: 764px) {
  .layout-maxed-4col *:has(+ .expand-right):not(.expand-left),
  .layout-maxed-4col .expand-left + *:not(.expand-right) {
    -ms-grid-column: 2;
    -ms-grid-column-span: 2;
    grid-column: 2/4;
  }
}

.layout-hero-4col {
  grid-column: 1/-1;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: inherit;
  grid-template-columns: inherit;
  gap: 0;
}
.layout-hero-4col > :first-child {
  -ms-grid-column: 2;
  grid-column: 2/2;
}
.layout-hero-4col > :last-child {
  -ms-grid-column: 3;
  -ms-grid-column-span: 1;
  grid-column: 3/4;
}
@media screen and (max-width: 764px) {
  .layout-hero-4col > :first-child,
  .layout-hero-4col > :last-child {
    -ms-grid-column: 2;
    -ms-grid-column-span: 2;
    grid-column: 2/4;
  }
}

/* Hero box  */
.layout-hero-4col {
  position: relative;
}

/* Hero image */
.layout-hero-img {
  grid-column: 1/-1;
  -ms-grid-column-align: center;
      justify-self: center;
  max-width: 100%;
}

.d-none {
  display: none !important;
}

.w-100 {
  width: 100%;
}

.h-100 {
  height: 100%;
}

.w-75 {
  width: 75%;
}

.h-75 {
  height: 75%;
}

.w-50 {
  width: 50%;
}

.h-50 {
  height: 50%;
}

.w-25 {
  width: 25%;
}

.h-25 {
  height: 25%;
}

.hidden {
  display: none;
}

.block {
  display: block;
}

.inline {
  display: inline;
}

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

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.ov-visible {
  overflow: visible;
}

.ov-hidden {
  overflow: hidden;
}

.flex-row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.flex-row-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.flex-col {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.flex-col-reverse {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}

.flex-wrap {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.flex-no-wrap {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.flex-shrink {
  -ms-flex-negative: 1;
      flex-shrink: 1;
}

.flex-no-shrink {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.flex-grow {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.flex-no-grow {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
}

.float-left {
  float: left;
}

.float-right {
  float: right;
}

.float-none {
  float: none;
}

.text-bold {
  font-weight: bold;
}

.text-italic {
  font-style: italic;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-lowercase {
  text-transform: lowercase;
}

.text-smaller {
  font-size: smaller;
}

.text-larger {
  font-size: larger;
}

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

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

.text-right {
  text-align: right;
}

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

.text-wrap {
  overflow-wrap: break-word;
}

.justify-start {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.justify-end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.justify-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.justify-between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.justify-around {
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.justify-evenly {
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

.justify-items-start {
  justify-items: start;
}

.justify-items-end {
  justify-items: end;
}

.justify-items-center {
  justify-items: center;
}

.align-start {
  -ms-flex-line-pack: start;
      align-content: start;
}

.align-end {
  -ms-flex-line-pack: end;
      align-content: end;
}

.align-center {
  -ms-flex-line-pack: center;
      align-content: center;
}

.align-between {
  -ms-flex-line-pack: justify;
      align-content: space-between;
}

.align-around {
  -ms-flex-line-pack: distribute;
      align-content: space-around;
}

.align-evenly {
  -ms-flex-line-pack: space-evenly;
      align-content: space-evenly;
}

.align-items-start {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.align-items-end {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.align-items-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.place-center {
  place-content: center;
}

.justify-self-auto {
  -ms-grid-column-align: auto;
      justify-self: auto;
}

.justify-self-start {
  -ms-grid-column-align: start;
      justify-self: start;
}

.justify-self-end {
  -ms-grid-column-align: end;
      justify-self: end;
}

.justify-self-center {
  -ms-grid-column-align: center;
      justify-self: center;
}

.justify-self-stretch {
  -ms-grid-column-align: stretch;
      justify-self: stretch;
}

.align-self-auto {
  -ms-flex-item-align: auto;
      -ms-grid-row-align: auto;
      align-self: auto;
}

.align-self-start {
  -ms-flex-item-align: start;
      align-self: flex-start;
}

.align-self-end {
  -ms-flex-item-align: end;
      align-self: flex-end;
}

.align-self-center {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

.align-self-stretch {
  -ms-flex-item-align: stretch;
      -ms-grid-row-align: stretch;
      align-self: stretch;
}

.align-top {
  vertical-align: top;
}

.align-bottom {
  vertical-align: bottom;
}

.align-middle {
  vertical-align: middle;
}

.item-first {
  -webkit-box-ordinal-group: -99;
      -ms-flex-order: -100;
          order: -100;
}

.item-last {
  -webkit-box-ordinal-group: 101;
      -ms-flex-order: 100;
          order: 100;
}

@media (min-width: 353px) {
  .sm\:hidden {
    display: none;
  }
}
@media (min-width: 724px) {
  .md\:hidden {
    display: none;
  }
}
@media (min-width: 1070px) {
  .lg\:hidden {
    display: none;
  }
}
@media (min-width: 1270px) {
  .xlg\:hidden {
    display: none;
  }
}
@media (min-width: 353px) {
  .sm\:block {
    display: block;
  }
}
@media (min-width: 724px) {
  .md\:block {
    display: block;
  }
}
@media (min-width: 1070px) {
  .lg\:block {
    display: block;
  }
}
@media (min-width: 1270px) {
  .xlg\:block {
    display: block;
  }
}
@media (min-width: 353px) {
  .sm\:inline {
    display: inline;
  }
}
@media (min-width: 724px) {
  .md\:inline {
    display: inline;
  }
}
@media (min-width: 1070px) {
  .lg\:inline {
    display: inline;
  }
}
@media (min-width: 1270px) {
  .xlg\:inline {
    display: inline;
  }
}
@media (min-width: 353px) {
  .sm\:inline-block {
    display: inline-block;
  }
}
@media (min-width: 724px) {
  .md\:inline-block {
    display: inline-block;
  }
}
@media (min-width: 1070px) {
  .lg\:inline-block {
    display: inline-block;
  }
}
@media (min-width: 1270px) {
  .xlg\:inline-block {
    display: inline-block;
  }
}
@media (min-width: 353px) {
  .sm\:flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (min-width: 724px) {
  .md\:flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (min-width: 1070px) {
  .lg\:flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (min-width: 1270px) {
  .xlg\:flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (min-width: 353px) {
  .sm\:ov-visible {
    overflow: visible;
  }
}
@media (min-width: 724px) {
  .md\:ov-visible {
    overflow: visible;
  }
}
@media (min-width: 1070px) {
  .lg\:ov-visible {
    overflow: visible;
  }
}
@media (min-width: 1270px) {
  .xlg\:ov-visible {
    overflow: visible;
  }
}
@media (min-width: 353px) {
  .sm\:ov-hidden {
    overflow: hidden;
  }
}
@media (min-width: 724px) {
  .md\:ov-hidden {
    overflow: hidden;
  }
}
@media (min-width: 1070px) {
  .lg\:ov-hidden {
    overflow: hidden;
  }
}
@media (min-width: 1270px) {
  .xlg\:ov-hidden {
    overflow: hidden;
  }
}
@media (min-width: 353px) {
  .sm\:flex-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media (min-width: 724px) {
  .md\:flex-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media (min-width: 1070px) {
  .lg\:flex-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media (min-width: 1270px) {
  .xlg\:flex-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media (min-width: 353px) {
  .sm\:flex-row-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
@media (min-width: 724px) {
  .md\:flex-row-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
@media (min-width: 1070px) {
  .lg\:flex-row-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
@media (min-width: 1270px) {
  .xlg\:flex-row-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
@media (min-width: 353px) {
  .sm\:flex-col {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (min-width: 724px) {
  .md\:flex-col {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (min-width: 1070px) {
  .lg\:flex-col {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (min-width: 1270px) {
  .xlg\:flex-col {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (min-width: 353px) {
  .sm\:flex-col-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
@media (min-width: 724px) {
  .md\:flex-col-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
@media (min-width: 1070px) {
  .lg\:flex-col-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
@media (min-width: 1270px) {
  .xlg\:flex-col-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
@media (min-width: 353px) {
  .sm\:flex-wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media (min-width: 724px) {
  .md\:flex-wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media (min-width: 1070px) {
  .lg\:flex-wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media (min-width: 1270px) {
  .xlg\:flex-wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media (min-width: 353px) {
  .sm\:flex-no-wrap {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}
@media (min-width: 724px) {
  .md\:flex-no-wrap {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}
@media (min-width: 1070px) {
  .lg\:flex-no-wrap {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}
@media (min-width: 1270px) {
  .xlg\:flex-no-wrap {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}
@media (min-width: 353px) {
  .sm\:flex-shrink {
    -ms-flex-negative: 1;
        flex-shrink: 1;
  }
}
@media (min-width: 724px) {
  .md\:flex-shrink {
    -ms-flex-negative: 1;
        flex-shrink: 1;
  }
}
@media (min-width: 1070px) {
  .lg\:flex-shrink {
    -ms-flex-negative: 1;
        flex-shrink: 1;
  }
}
@media (min-width: 1270px) {
  .xlg\:flex-shrink {
    -ms-flex-negative: 1;
        flex-shrink: 1;
  }
}
@media (min-width: 353px) {
  .sm\:flex-no-shrink {
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
@media (min-width: 724px) {
  .md\:flex-no-shrink {
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
@media (min-width: 1070px) {
  .lg\:flex-no-shrink {
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
@media (min-width: 1270px) {
  .xlg\:flex-no-shrink {
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
@media (min-width: 353px) {
  .sm\:flex-grow {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}
@media (min-width: 724px) {
  .md\:flex-grow {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}
@media (min-width: 1070px) {
  .lg\:flex-grow {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}
@media (min-width: 1270px) {
  .xlg\:flex-grow {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}
@media (min-width: 353px) {
  .sm\:flex-no-grow {
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
  }
}
@media (min-width: 724px) {
  .md\:flex-no-grow {
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
  }
}
@media (min-width: 1070px) {
  .lg\:flex-no-grow {
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
  }
}
@media (min-width: 1270px) {
  .xlg\:flex-no-grow {
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
  }
}
@media (min-width: 353px) {
  .sm\:float-left {
    float: left;
  }
}
@media (min-width: 724px) {
  .md\:float-left {
    float: left;
  }
}
@media (min-width: 1070px) {
  .lg\:float-left {
    float: left;
  }
}
@media (min-width: 1270px) {
  .xlg\:float-left {
    float: left;
  }
}
@media (min-width: 353px) {
  .sm\:float-right {
    float: right;
  }
}
@media (min-width: 724px) {
  .md\:float-right {
    float: right;
  }
}
@media (min-width: 1070px) {
  .lg\:float-right {
    float: right;
  }
}
@media (min-width: 1270px) {
  .xlg\:float-right {
    float: right;
  }
}
@media (min-width: 353px) {
  .sm\:float-none {
    float: none;
  }
}
@media (min-width: 724px) {
  .md\:float-none {
    float: none;
  }
}
@media (min-width: 1070px) {
  .lg\:float-none {
    float: none;
  }
}
@media (min-width: 1270px) {
  .xlg\:float-none {
    float: none;
  }
}
@media (min-width: 353px) {
  .sm\:text-bold {
    font-weight: bold;
  }
}
@media (min-width: 724px) {
  .md\:text-bold {
    font-weight: bold;
  }
}
@media (min-width: 1070px) {
  .lg\:text-bold {
    font-weight: bold;
  }
}
@media (min-width: 1270px) {
  .xlg\:text-bold {
    font-weight: bold;
  }
}
@media (min-width: 353px) {
  .sm\:text-italic {
    font-style: italic;
  }
}
@media (min-width: 724px) {
  .md\:text-italic {
    font-style: italic;
  }
}
@media (min-width: 1070px) {
  .lg\:text-italic {
    font-style: italic;
  }
}
@media (min-width: 1270px) {
  .xlg\:text-italic {
    font-style: italic;
  }
}
@media (min-width: 353px) {
  .sm\:text-uppercase {
    text-transform: uppercase;
  }
}
@media (min-width: 724px) {
  .md\:text-uppercase {
    text-transform: uppercase;
  }
}
@media (min-width: 1070px) {
  .lg\:text-uppercase {
    text-transform: uppercase;
  }
}
@media (min-width: 1270px) {
  .xlg\:text-uppercase {
    text-transform: uppercase;
  }
}
@media (min-width: 353px) {
  .sm\:text-lowercase {
    text-transform: lowercase;
  }
}
@media (min-width: 724px) {
  .md\:text-lowercase {
    text-transform: lowercase;
  }
}
@media (min-width: 1070px) {
  .lg\:text-lowercase {
    text-transform: lowercase;
  }
}
@media (min-width: 1270px) {
  .xlg\:text-lowercase {
    text-transform: lowercase;
  }
}
@media (min-width: 353px) {
  .sm\:text-smaller {
    font-size: smaller;
  }
}
@media (min-width: 724px) {
  .md\:text-smaller {
    font-size: smaller;
  }
}
@media (min-width: 1070px) {
  .lg\:text-smaller {
    font-size: smaller;
  }
}
@media (min-width: 1270px) {
  .xlg\:text-smaller {
    font-size: smaller;
  }
}
@media (min-width: 353px) {
  .sm\:text-larger {
    font-size: larger;
  }
}
@media (min-width: 724px) {
  .md\:text-larger {
    font-size: larger;
  }
}
@media (min-width: 1070px) {
  .lg\:text-larger {
    font-size: larger;
  }
}
@media (min-width: 1270px) {
  .xlg\:text-larger {
    font-size: larger;
  }
}
@media (min-width: 353px) {
  .sm\:text-left {
    text-align: left;
  }
}
@media (min-width: 724px) {
  .md\:text-left {
    text-align: left;
  }
}
@media (min-width: 1070px) {
  .lg\:text-left {
    text-align: left;
  }
}
@media (min-width: 1270px) {
  .xlg\:text-left {
    text-align: left;
  }
}
@media (min-width: 353px) {
  .sm\:text-center {
    text-align: center;
  }
}
@media (min-width: 724px) {
  .md\:text-center {
    text-align: center;
  }
}
@media (min-width: 1070px) {
  .lg\:text-center {
    text-align: center;
  }
}
@media (min-width: 1270px) {
  .xlg\:text-center {
    text-align: center;
  }
}
@media (min-width: 353px) {
  .sm\:text-right {
    text-align: right;
  }
}
@media (min-width: 724px) {
  .md\:text-right {
    text-align: right;
  }
}
@media (min-width: 1070px) {
  .lg\:text-right {
    text-align: right;
  }
}
@media (min-width: 1270px) {
  .xlg\:text-right {
    text-align: right;
  }
}
@media (min-width: 353px) {
  .sm\:text-justify {
    text-align: justify;
  }
}
@media (min-width: 724px) {
  .md\:text-justify {
    text-align: justify;
  }
}
@media (min-width: 1070px) {
  .lg\:text-justify {
    text-align: justify;
  }
}
@media (min-width: 1270px) {
  .xlg\:text-justify {
    text-align: justify;
  }
}
@media (min-width: 353px) {
  .sm\:text-wrap {
    overflow-wrap: break-word;
  }
}
@media (min-width: 724px) {
  .md\:text-wrap {
    overflow-wrap: break-word;
  }
}
@media (min-width: 1070px) {
  .lg\:text-wrap {
    overflow-wrap: break-word;
  }
}
@media (min-width: 1270px) {
  .xlg\:text-wrap {
    overflow-wrap: break-word;
  }
}
@media (min-width: 353px) {
  .sm\:justify-start {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
@media (min-width: 724px) {
  .md\:justify-start {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
@media (min-width: 1070px) {
  .lg\:justify-start {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
@media (min-width: 1270px) {
  .xlg\:justify-start {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
@media (min-width: 353px) {
  .sm\:justify-end {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
@media (min-width: 724px) {
  .md\:justify-end {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
@media (min-width: 1070px) {
  .lg\:justify-end {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
@media (min-width: 1270px) {
  .xlg\:justify-end {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
@media (min-width: 353px) {
  .sm\:justify-center {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (min-width: 724px) {
  .md\:justify-center {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (min-width: 1070px) {
  .lg\:justify-center {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (min-width: 1270px) {
  .xlg\:justify-center {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (min-width: 353px) {
  .sm\:justify-between {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media (min-width: 724px) {
  .md\:justify-between {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media (min-width: 1070px) {
  .lg\:justify-between {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media (min-width: 1270px) {
  .xlg\:justify-between {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media (min-width: 353px) {
  .sm\:justify-around {
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
}
@media (min-width: 724px) {
  .md\:justify-around {
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
}
@media (min-width: 1070px) {
  .lg\:justify-around {
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
}
@media (min-width: 1270px) {
  .xlg\:justify-around {
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
}
@media (min-width: 353px) {
  .sm\:justify-evenly {
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
  }
}
@media (min-width: 724px) {
  .md\:justify-evenly {
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
  }
}
@media (min-width: 1070px) {
  .lg\:justify-evenly {
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
  }
}
@media (min-width: 1270px) {
  .xlg\:justify-evenly {
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
  }
}
@media (min-width: 353px) {
  .sm\:justify-items-start {
    justify-items: start;
  }
}
@media (min-width: 724px) {
  .md\:justify-items-start {
    justify-items: start;
  }
}
@media (min-width: 1070px) {
  .lg\:justify-items-start {
    justify-items: start;
  }
}
@media (min-width: 1270px) {
  .xlg\:justify-items-start {
    justify-items: start;
  }
}
@media (min-width: 353px) {
  .sm\:justify-items-end {
    justify-items: end;
  }
}
@media (min-width: 724px) {
  .md\:justify-items-end {
    justify-items: end;
  }
}
@media (min-width: 1070px) {
  .lg\:justify-items-end {
    justify-items: end;
  }
}
@media (min-width: 1270px) {
  .xlg\:justify-items-end {
    justify-items: end;
  }
}
@media (min-width: 353px) {
  .sm\:justify-items-center {
    justify-items: center;
  }
}
@media (min-width: 724px) {
  .md\:justify-items-center {
    justify-items: center;
  }
}
@media (min-width: 1070px) {
  .lg\:justify-items-center {
    justify-items: center;
  }
}
@media (min-width: 1270px) {
  .xlg\:justify-items-center {
    justify-items: center;
  }
}
@media (min-width: 353px) {
  .sm\:align-start {
    -ms-flex-line-pack: start;
        align-content: start;
  }
}
@media (min-width: 724px) {
  .md\:align-start {
    -ms-flex-line-pack: start;
        align-content: start;
  }
}
@media (min-width: 1070px) {
  .lg\:align-start {
    -ms-flex-line-pack: start;
        align-content: start;
  }
}
@media (min-width: 1270px) {
  .xlg\:align-start {
    -ms-flex-line-pack: start;
        align-content: start;
  }
}
@media (min-width: 353px) {
  .sm\:align-end {
    -ms-flex-line-pack: end;
        align-content: end;
  }
}
@media (min-width: 724px) {
  .md\:align-end {
    -ms-flex-line-pack: end;
        align-content: end;
  }
}
@media (min-width: 1070px) {
  .lg\:align-end {
    -ms-flex-line-pack: end;
        align-content: end;
  }
}
@media (min-width: 1270px) {
  .xlg\:align-end {
    -ms-flex-line-pack: end;
        align-content: end;
  }
}
@media (min-width: 353px) {
  .sm\:align-center {
    -ms-flex-line-pack: center;
        align-content: center;
  }
}
@media (min-width: 724px) {
  .md\:align-center {
    -ms-flex-line-pack: center;
        align-content: center;
  }
}
@media (min-width: 1070px) {
  .lg\:align-center {
    -ms-flex-line-pack: center;
        align-content: center;
  }
}
@media (min-width: 1270px) {
  .xlg\:align-center {
    -ms-flex-line-pack: center;
        align-content: center;
  }
}
@media (min-width: 353px) {
  .sm\:align-between {
    -ms-flex-line-pack: justify;
        align-content: space-between;
  }
}
@media (min-width: 724px) {
  .md\:align-between {
    -ms-flex-line-pack: justify;
        align-content: space-between;
  }
}
@media (min-width: 1070px) {
  .lg\:align-between {
    -ms-flex-line-pack: justify;
        align-content: space-between;
  }
}
@media (min-width: 1270px) {
  .xlg\:align-between {
    -ms-flex-line-pack: justify;
        align-content: space-between;
  }
}
@media (min-width: 353px) {
  .sm\:align-around {
    -ms-flex-line-pack: distribute;
        align-content: space-around;
  }
}
@media (min-width: 724px) {
  .md\:align-around {
    -ms-flex-line-pack: distribute;
        align-content: space-around;
  }
}
@media (min-width: 1070px) {
  .lg\:align-around {
    -ms-flex-line-pack: distribute;
        align-content: space-around;
  }
}
@media (min-width: 1270px) {
  .xlg\:align-around {
    -ms-flex-line-pack: distribute;
        align-content: space-around;
  }
}
@media (min-width: 353px) {
  .sm\:align-evenly {
    -ms-flex-line-pack: space-evenly;
        align-content: space-evenly;
  }
}
@media (min-width: 724px) {
  .md\:align-evenly {
    -ms-flex-line-pack: space-evenly;
        align-content: space-evenly;
  }
}
@media (min-width: 1070px) {
  .lg\:align-evenly {
    -ms-flex-line-pack: space-evenly;
        align-content: space-evenly;
  }
}
@media (min-width: 1270px) {
  .xlg\:align-evenly {
    -ms-flex-line-pack: space-evenly;
        align-content: space-evenly;
  }
}
@media (min-width: 353px) {
  .sm\:align-items-start {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media (min-width: 724px) {
  .md\:align-items-start {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media (min-width: 1070px) {
  .lg\:align-items-start {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media (min-width: 1270px) {
  .xlg\:align-items-start {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media (min-width: 353px) {
  .sm\:align-items-end {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}
@media (min-width: 724px) {
  .md\:align-items-end {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}
@media (min-width: 1070px) {
  .lg\:align-items-end {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}
@media (min-width: 1270px) {
  .xlg\:align-items-end {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}
@media (min-width: 353px) {
  .sm\:align-items-center {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media (min-width: 724px) {
  .md\:align-items-center {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media (min-width: 1070px) {
  .lg\:align-items-center {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media (min-width: 1270px) {
  .xlg\:align-items-center {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media (min-width: 353px) {
  .sm\:place-center {
    place-content: center;
  }
}
@media (min-width: 724px) {
  .md\:place-center {
    place-content: center;
  }
}
@media (min-width: 1070px) {
  .lg\:place-center {
    place-content: center;
  }
}
@media (min-width: 1270px) {
  .xlg\:place-center {
    place-content: center;
  }
}
@media (min-width: 353px) {
  .sm\:justify-self-auto {
    -ms-grid-column-align: auto;
        justify-self: auto;
  }
}
@media (min-width: 724px) {
  .md\:justify-self-auto {
    -ms-grid-column-align: auto;
        justify-self: auto;
  }
}
@media (min-width: 1070px) {
  .lg\:justify-self-auto {
    -ms-grid-column-align: auto;
        justify-self: auto;
  }
}
@media (min-width: 1270px) {
  .xlg\:justify-self-auto {
    -ms-grid-column-align: auto;
        justify-self: auto;
  }
}
@media (min-width: 353px) {
  .sm\:justify-self-start {
    -ms-grid-column-align: start;
        justify-self: start;
  }
}
@media (min-width: 724px) {
  .md\:justify-self-start {
    -ms-grid-column-align: start;
        justify-self: start;
  }
}
@media (min-width: 1070px) {
  .lg\:justify-self-start {
    -ms-grid-column-align: start;
        justify-self: start;
  }
}
@media (min-width: 1270px) {
  .xlg\:justify-self-start {
    -ms-grid-column-align: start;
        justify-self: start;
  }
}
@media (min-width: 353px) {
  .sm\:justify-self-end {
    -ms-grid-column-align: end;
        justify-self: end;
  }
}
@media (min-width: 724px) {
  .md\:justify-self-end {
    -ms-grid-column-align: end;
        justify-self: end;
  }
}
@media (min-width: 1070px) {
  .lg\:justify-self-end {
    -ms-grid-column-align: end;
        justify-self: end;
  }
}
@media (min-width: 1270px) {
  .xlg\:justify-self-end {
    -ms-grid-column-align: end;
        justify-self: end;
  }
}
@media (min-width: 353px) {
  .sm\:justify-self-center {
    -ms-grid-column-align: center;
        justify-self: center;
  }
}
@media (min-width: 724px) {
  .md\:justify-self-center {
    -ms-grid-column-align: center;
        justify-self: center;
  }
}
@media (min-width: 1070px) {
  .lg\:justify-self-center {
    -ms-grid-column-align: center;
        justify-self: center;
  }
}
@media (min-width: 1270px) {
  .xlg\:justify-self-center {
    -ms-grid-column-align: center;
        justify-self: center;
  }
}
@media (min-width: 353px) {
  .sm\:justify-self-stretch {
    -ms-grid-column-align: stretch;
        justify-self: stretch;
  }
}
@media (min-width: 724px) {
  .md\:justify-self-stretch {
    -ms-grid-column-align: stretch;
        justify-self: stretch;
  }
}
@media (min-width: 1070px) {
  .lg\:justify-self-stretch {
    -ms-grid-column-align: stretch;
        justify-self: stretch;
  }
}
@media (min-width: 1270px) {
  .xlg\:justify-self-stretch {
    -ms-grid-column-align: stretch;
        justify-self: stretch;
  }
}
@media (min-width: 353px) {
  .sm\:align-self-auto {
    -ms-flex-item-align: auto;
        -ms-grid-row-align: auto;
        align-self: auto;
  }
}
@media (min-width: 724px) {
  .md\:align-self-auto {
    -ms-flex-item-align: auto;
        -ms-grid-row-align: auto;
        align-self: auto;
  }
}
@media (min-width: 1070px) {
  .lg\:align-self-auto {
    -ms-flex-item-align: auto;
        -ms-grid-row-align: auto;
        align-self: auto;
  }
}
@media (min-width: 1270px) {
  .xlg\:align-self-auto {
    -ms-flex-item-align: auto;
        -ms-grid-row-align: auto;
        align-self: auto;
  }
}
@media (min-width: 353px) {
  .sm\:align-self-start {
    -ms-flex-item-align: start;
        align-self: flex-start;
  }
}
@media (min-width: 724px) {
  .md\:align-self-start {
    -ms-flex-item-align: start;
        align-self: flex-start;
  }
}
@media (min-width: 1070px) {
  .lg\:align-self-start {
    -ms-flex-item-align: start;
        align-self: flex-start;
  }
}
@media (min-width: 1270px) {
  .xlg\:align-self-start {
    -ms-flex-item-align: start;
        align-self: flex-start;
  }
}
@media (min-width: 353px) {
  .sm\:align-self-end {
    -ms-flex-item-align: end;
        align-self: flex-end;
  }
}
@media (min-width: 724px) {
  .md\:align-self-end {
    -ms-flex-item-align: end;
        align-self: flex-end;
  }
}
@media (min-width: 1070px) {
  .lg\:align-self-end {
    -ms-flex-item-align: end;
        align-self: flex-end;
  }
}
@media (min-width: 1270px) {
  .xlg\:align-self-end {
    -ms-flex-item-align: end;
        align-self: flex-end;
  }
}
@media (min-width: 353px) {
  .sm\:align-self-center {
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
  }
}
@media (min-width: 724px) {
  .md\:align-self-center {
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
  }
}
@media (min-width: 1070px) {
  .lg\:align-self-center {
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
  }
}
@media (min-width: 1270px) {
  .xlg\:align-self-center {
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
  }
}
@media (min-width: 353px) {
  .sm\:align-self-stretch {
    -ms-flex-item-align: stretch;
        -ms-grid-row-align: stretch;
        align-self: stretch;
  }
}
@media (min-width: 724px) {
  .md\:align-self-stretch {
    -ms-flex-item-align: stretch;
        -ms-grid-row-align: stretch;
        align-self: stretch;
  }
}
@media (min-width: 1070px) {
  .lg\:align-self-stretch {
    -ms-flex-item-align: stretch;
        -ms-grid-row-align: stretch;
        align-self: stretch;
  }
}
@media (min-width: 1270px) {
  .xlg\:align-self-stretch {
    -ms-flex-item-align: stretch;
        -ms-grid-row-align: stretch;
        align-self: stretch;
  }
}
@media (min-width: 353px) {
  .sm\:align-top {
    vertical-align: top;
  }
}
@media (min-width: 724px) {
  .md\:align-top {
    vertical-align: top;
  }
}
@media (min-width: 1070px) {
  .lg\:align-top {
    vertical-align: top;
  }
}
@media (min-width: 1270px) {
  .xlg\:align-top {
    vertical-align: top;
  }
}
@media (min-width: 353px) {
  .sm\:align-bottom {
    vertical-align: bottom;
  }
}
@media (min-width: 724px) {
  .md\:align-bottom {
    vertical-align: bottom;
  }
}
@media (min-width: 1070px) {
  .lg\:align-bottom {
    vertical-align: bottom;
  }
}
@media (min-width: 1270px) {
  .xlg\:align-bottom {
    vertical-align: bottom;
  }
}
@media (min-width: 353px) {
  .sm\:align-middle {
    vertical-align: middle;
  }
}
@media (min-width: 724px) {
  .md\:align-middle {
    vertical-align: middle;
  }
}
@media (min-width: 1070px) {
  .lg\:align-middle {
    vertical-align: middle;
  }
}
@media (min-width: 1270px) {
  .xlg\:align-middle {
    vertical-align: middle;
  }
}
@media (min-width: 353px) {
  .sm\:item-first {
    -webkit-box-ordinal-group: -99;
        -ms-flex-order: -100;
            order: -100;
  }
}
@media (min-width: 724px) {
  .md\:item-first {
    -webkit-box-ordinal-group: -99;
        -ms-flex-order: -100;
            order: -100;
  }
}
@media (min-width: 1070px) {
  .lg\:item-first {
    -webkit-box-ordinal-group: -99;
        -ms-flex-order: -100;
            order: -100;
  }
}
@media (min-width: 1270px) {
  .xlg\:item-first {
    -webkit-box-ordinal-group: -99;
        -ms-flex-order: -100;
            order: -100;
  }
}
@media (min-width: 353px) {
  .sm\:item-last {
    -webkit-box-ordinal-group: 101;
        -ms-flex-order: 100;
            order: 100;
  }
}
@media (min-width: 724px) {
  .md\:item-last {
    -webkit-box-ordinal-group: 101;
        -ms-flex-order: 100;
            order: 100;
  }
}
@media (min-width: 1070px) {
  .lg\:item-last {
    -webkit-box-ordinal-group: 101;
        -ms-flex-order: 100;
            order: 100;
  }
}
@media (min-width: 1270px) {
  .xlg\:item-last {
    -webkit-box-ordinal-group: 101;
        -ms-flex-order: 100;
            order: 100;
  }
}
.lc-1 {
  -webkit-line-clamp: 1;
}

.lc-2 {
  -webkit-line-clamp: 2;
}

.lc-3 {
  -webkit-line-clamp: 3;
}

.lc-4 {
  -webkit-line-clamp: 4;
}

.is-unstyled {
  list-style: none;
  padding-left: 0;
}

.is-disabled,
[disabled] {
  opacity: 0.6;
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
}

.text-normal {
  font-weight: normal;
  font-style: normal;
  text-transform: none;
}

@media (min-width: 353px) {
  .sm\:visually-hidden {
    position: absolute !important;
    border: 0 !important;
    height: 1px !important;
    width: 1px !important;
    padding: 0 !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
  }
  .sm\:is-unstyled {
    list-style: none;
    padding-left: 0;
  }
  .sm\:is-disabled {
    opacity: 0.6;
    cursor: not-allowed !important;
    -webkit-filter: grayscale(1);
            filter: grayscale(1);
  }
  .sm\:text-normal {
    font-weight: normal;
    font-style: normal;
    text-transform: none;
  }
}
@media (min-width: 724px) {
  .md\:visually-hidden {
    position: absolute !important;
    border: 0 !important;
    height: 1px !important;
    width: 1px !important;
    padding: 0 !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
  }
  .md\:is-unstyled {
    list-style: none;
    padding-left: 0;
  }
  .md\:is-disabled {
    opacity: 0.6;
    cursor: not-allowed !important;
    -webkit-filter: grayscale(1);
            filter: grayscale(1);
  }
  .md\:text-normal {
    font-weight: normal;
    font-style: normal;
    text-transform: none;
  }
}
@media (min-width: 1070px) {
  .lg\:visually-hidden {
    position: absolute !important;
    border: 0 !important;
    height: 1px !important;
    width: 1px !important;
    padding: 0 !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
  }
  .lg\:is-unstyled {
    list-style: none;
    padding-left: 0;
  }
  .lg\:is-disabled {
    opacity: 0.6;
    cursor: not-allowed !important;
    -webkit-filter: grayscale(1);
            filter: grayscale(1);
  }
  .lg\:text-normal {
    font-weight: normal;
    font-style: normal;
    text-transform: none;
  }
}
@media (min-width: 1270px) {
  .xlg\:visually-hidden {
    position: absolute !important;
    border: 0 !important;
    height: 1px !important;
    width: 1px !important;
    padding: 0 !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
  }
  .xlg\:is-unstyled {
    list-style: none;
    padding-left: 0;
  }
  .xlg\:is-disabled {
    opacity: 0.6;
    cursor: not-allowed !important;
    -webkit-filter: grayscale(1);
            filter: grayscale(1);
  }
  .xlg\:text-normal {
    font-weight: normal;
    font-style: normal;
    text-transform: none;
  }
}
/* Font sizes utility classes */
.text-10 {
  font-size: 0.625rem;
}

.text-11 {
  font-size: 0.6875rem;
}

.text-12 {
  font-size: 0.75rem;
}

.text-14 {
  font-size: 0.875rem;
}

.text-16 {
  font-size: 1rem;
}

.text-18 {
  font-size: 1.125rem;
}

.text-20 {
  font-size: 1.25rem;
}

.text-22 {
  font-size: 1.375rem;
}

.text-23 {
  font-size: 1.438rem;
}

.text-24 {
  font-size: 1.5rem;
}

.text-25 {
  font-size: 1.563rem;
}

.text-26 {
  font-size: 1.625rem;
}

.text-30 {
  font-size: 1.875rem;
}

.text-35 {
  font-size: 2.188rem;
}

.text-36 {
  font-size: 2.25rem;
}

.text-45 {
  font-size: 2.813rem;
}

.text-50 {
  font-size: 3.125rem;
}

.text-55 {
  font-size: 3.438rem;
}

.text-60 {
  font-size: 3.75rem;
}

.text-base {
  font-size: 1rem;
}

.text-inherit {
  font-size: inherit;
}

@media (min-width: 353px) {
  .sm\:text-10 {
    font-size: 0.625rem;
  }
}
@media (min-width: 724px) {
  .md\:text-10 {
    font-size: 0.625rem;
  }
}
@media (min-width: 1070px) {
  .lg\:text-10 {
    font-size: 0.625rem;
  }
}
@media (min-width: 1270px) {
  .xlg\:text-10 {
    font-size: 0.625rem;
  }
}
@media (min-width: 353px) {
  .sm\:text-11 {
    font-size: 0.6875rem;
  }
}
@media (min-width: 724px) {
  .md\:text-11 {
    font-size: 0.6875rem;
  }
}
@media (min-width: 1070px) {
  .lg\:text-11 {
    font-size: 0.6875rem;
  }
}
@media (min-width: 1270px) {
  .xlg\:text-11 {
    font-size: 0.6875rem;
  }
}
@media (min-width: 353px) {
  .sm\:text-12 {
    font-size: 0.75rem;
  }
}
@media (min-width: 724px) {
  .md\:text-12 {
    font-size: 0.75rem;
  }
}
@media (min-width: 1070px) {
  .lg\:text-12 {
    font-size: 0.75rem;
  }
}
@media (min-width: 1270px) {
  .xlg\:text-12 {
    font-size: 0.75rem;
  }
}
@media (min-width: 353px) {
  .sm\:text-14 {
    font-size: 0.875rem;
  }
}
@media (min-width: 724px) {
  .md\:text-14 {
    font-size: 0.875rem;
  }
}
@media (min-width: 1070px) {
  .lg\:text-14 {
    font-size: 0.875rem;
  }
}
@media (min-width: 1270px) {
  .xlg\:text-14 {
    font-size: 0.875rem;
  }
}
@media (min-width: 353px) {
  .sm\:text-16 {
    font-size: 1rem;
  }
}
@media (min-width: 724px) {
  .md\:text-16 {
    font-size: 1rem;
  }
}
@media (min-width: 1070px) {
  .lg\:text-16 {
    font-size: 1rem;
  }
}
@media (min-width: 1270px) {
  .xlg\:text-16 {
    font-size: 1rem;
  }
}
@media (min-width: 353px) {
  .sm\:text-18 {
    font-size: 1.125rem;
  }
}
@media (min-width: 724px) {
  .md\:text-18 {
    font-size: 1.125rem;
  }
}
@media (min-width: 1070px) {
  .lg\:text-18 {
    font-size: 1.125rem;
  }
}
@media (min-width: 1270px) {
  .xlg\:text-18 {
    font-size: 1.125rem;
  }
}
@media (min-width: 353px) {
  .sm\:text-20 {
    font-size: 1.25rem;
  }
}
@media (min-width: 724px) {
  .md\:text-20 {
    font-size: 1.25rem;
  }
}
@media (min-width: 1070px) {
  .lg\:text-20 {
    font-size: 1.25rem;
  }
}
@media (min-width: 1270px) {
  .xlg\:text-20 {
    font-size: 1.25rem;
  }
}
@media (min-width: 353px) {
  .sm\:text-22 {
    font-size: 1.375rem;
  }
}
@media (min-width: 724px) {
  .md\:text-22 {
    font-size: 1.375rem;
  }
}
@media (min-width: 1070px) {
  .lg\:text-22 {
    font-size: 1.375rem;
  }
}
@media (min-width: 1270px) {
  .xlg\:text-22 {
    font-size: 1.375rem;
  }
}
@media (min-width: 353px) {
  .sm\:text-23 {
    font-size: 1.438rem;
  }
}
@media (min-width: 724px) {
  .md\:text-23 {
    font-size: 1.438rem;
  }
}
@media (min-width: 1070px) {
  .lg\:text-23 {
    font-size: 1.438rem;
  }
}
@media (min-width: 1270px) {
  .xlg\:text-23 {
    font-size: 1.438rem;
  }
}
@media (min-width: 353px) {
  .sm\:text-24 {
    font-size: 1.5rem;
  }
}
@media (min-width: 724px) {
  .md\:text-24 {
    font-size: 1.5rem;
  }
}
@media (min-width: 1070px) {
  .lg\:text-24 {
    font-size: 1.5rem;
  }
}
@media (min-width: 1270px) {
  .xlg\:text-24 {
    font-size: 1.5rem;
  }
}
@media (min-width: 353px) {
  .sm\:text-25 {
    font-size: 1.563rem;
  }
}
@media (min-width: 724px) {
  .md\:text-25 {
    font-size: 1.563rem;
  }
}
@media (min-width: 1070px) {
  .lg\:text-25 {
    font-size: 1.563rem;
  }
}
@media (min-width: 1270px) {
  .xlg\:text-25 {
    font-size: 1.563rem;
  }
}
@media (min-width: 353px) {
  .sm\:text-26 {
    font-size: 1.625rem;
  }
}
@media (min-width: 724px) {
  .md\:text-26 {
    font-size: 1.625rem;
  }
}
@media (min-width: 1070px) {
  .lg\:text-26 {
    font-size: 1.625rem;
  }
}
@media (min-width: 1270px) {
  .xlg\:text-26 {
    font-size: 1.625rem;
  }
}
@media (min-width: 353px) {
  .sm\:text-30 {
    font-size: 1.875rem;
  }
}
@media (min-width: 724px) {
  .md\:text-30 {
    font-size: 1.875rem;
  }
}
@media (min-width: 1070px) {
  .lg\:text-30 {
    font-size: 1.875rem;
  }
}
@media (min-width: 1270px) {
  .xlg\:text-30 {
    font-size: 1.875rem;
  }
}
@media (min-width: 353px) {
  .sm\:text-35 {
    font-size: 2.188rem;
  }
}
@media (min-width: 724px) {
  .md\:text-35 {
    font-size: 2.188rem;
  }
}
@media (min-width: 1070px) {
  .lg\:text-35 {
    font-size: 2.188rem;
  }
}
@media (min-width: 1270px) {
  .xlg\:text-35 {
    font-size: 2.188rem;
  }
}
@media (min-width: 353px) {
  .sm\:text-36 {
    font-size: 2.25rem;
  }
}
@media (min-width: 724px) {
  .md\:text-36 {
    font-size: 2.25rem;
  }
}
@media (min-width: 1070px) {
  .lg\:text-36 {
    font-size: 2.25rem;
  }
}
@media (min-width: 1270px) {
  .xlg\:text-36 {
    font-size: 2.25rem;
  }
}
@media (min-width: 353px) {
  .sm\:text-45 {
    font-size: 2.813rem;
  }
}
@media (min-width: 724px) {
  .md\:text-45 {
    font-size: 2.813rem;
  }
}
@media (min-width: 1070px) {
  .lg\:text-45 {
    font-size: 2.813rem;
  }
}
@media (min-width: 1270px) {
  .xlg\:text-45 {
    font-size: 2.813rem;
  }
}
@media (min-width: 353px) {
  .sm\:text-50 {
    font-size: 3.125rem;
  }
}
@media (min-width: 724px) {
  .md\:text-50 {
    font-size: 3.125rem;
  }
}
@media (min-width: 1070px) {
  .lg\:text-50 {
    font-size: 3.125rem;
  }
}
@media (min-width: 1270px) {
  .xlg\:text-50 {
    font-size: 3.125rem;
  }
}
@media (min-width: 353px) {
  .sm\:text-55 {
    font-size: 3.438rem;
  }
}
@media (min-width: 724px) {
  .md\:text-55 {
    font-size: 3.438rem;
  }
}
@media (min-width: 1070px) {
  .lg\:text-55 {
    font-size: 3.438rem;
  }
}
@media (min-width: 1270px) {
  .xlg\:text-55 {
    font-size: 3.438rem;
  }
}
@media (min-width: 353px) {
  .sm\:text-60 {
    font-size: 3.75rem;
  }
}
@media (min-width: 724px) {
  .md\:text-60 {
    font-size: 3.75rem;
  }
}
@media (min-width: 1070px) {
  .lg\:text-60 {
    font-size: 3.75rem;
  }
}
@media (min-width: 1270px) {
  .xlg\:text-60 {
    font-size: 3.75rem;
  }
}
@media (min-width: 353px) {
  .sm\:text-base {
    font-size: 1rem;
  }
}
@media (min-width: 724px) {
  .md\:text-base {
    font-size: 1rem;
  }
}
@media (min-width: 1070px) {
  .lg\:text-base {
    font-size: 1rem;
  }
}
@media (min-width: 1270px) {
  .xlg\:text-base {
    font-size: 1rem;
  }
}
@media (min-width: 353px) {
  .sm\:text-inherit {
    font-size: inherit;
  }
}
@media (min-width: 724px) {
  .md\:text-inherit {
    font-size: inherit;
  }
}
@media (min-width: 1070px) {
  .lg\:text-inherit {
    font-size: inherit;
  }
}
@media (min-width: 1270px) {
  .xlg\:text-inherit {
    font-size: inherit;
  }
}
/* Spacers utility classes */
.p-0 {
  padding: 0;
}

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

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

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

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

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

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

.m-0 {
  margin: 0;
}

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

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

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

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

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

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

@media (min-width: 353px) {
  .sm\:p-0 {
    padding: 0;
  }
  .sm\:pt-0 {
    padding-top: 0;
  }
  .sm\:pr-0 {
    padding-right: 0;
  }
  .sm\:pb-0 {
    padding-bottom: 0;
  }
  .sm\:pl-0 {
    padding-left: 0;
  }
  .sm\:px-0 {
    padding-left: 0;
    padding-right: 0;
  }
  .sm\:py-0 {
    padding-top: 0;
    padding-bottom: 0;
  }
  .sm\:m-0 {
    margin: 0;
  }
  .sm\:mt-0 {
    margin-top: 0;
  }
  .sm\:mr-0 {
    margin-right: 0;
  }
  .sm\:mb-0 {
    margin-bottom: 0;
  }
  .sm\:ml-0 {
    margin-left: 0;
  }
  .sm\:mx-0 {
    margin-left: 0;
    margin-right: 0;
  }
  .sm\:my-0 {
    margin-top: 0;
    margin-bottom: 0;
  }
}
@media (min-width: 724px) {
  .md\:p-0 {
    padding: 0;
  }
  .md\:pt-0 {
    padding-top: 0;
  }
  .md\:pr-0 {
    padding-right: 0;
  }
  .md\:pb-0 {
    padding-bottom: 0;
  }
  .md\:pl-0 {
    padding-left: 0;
  }
  .md\:px-0 {
    padding-left: 0;
    padding-right: 0;
  }
  .md\:py-0 {
    padding-top: 0;
    padding-bottom: 0;
  }
  .md\:m-0 {
    margin: 0;
  }
  .md\:mt-0 {
    margin-top: 0;
  }
  .md\:mr-0 {
    margin-right: 0;
  }
  .md\:mb-0 {
    margin-bottom: 0;
  }
  .md\:ml-0 {
    margin-left: 0;
  }
  .md\:mx-0 {
    margin-left: 0;
    margin-right: 0;
  }
  .md\:my-0 {
    margin-top: 0;
    margin-bottom: 0;
  }
}
@media (min-width: 1070px) {
  .lg\:p-0 {
    padding: 0;
  }
  .lg\:pt-0 {
    padding-top: 0;
  }
  .lg\:pr-0 {
    padding-right: 0;
  }
  .lg\:pb-0 {
    padding-bottom: 0;
  }
  .lg\:pl-0 {
    padding-left: 0;
  }
  .lg\:px-0 {
    padding-left: 0;
    padding-right: 0;
  }
  .lg\:py-0 {
    padding-top: 0;
    padding-bottom: 0;
  }
  .lg\:m-0 {
    margin: 0;
  }
  .lg\:mt-0 {
    margin-top: 0;
  }
  .lg\:mr-0 {
    margin-right: 0;
  }
  .lg\:mb-0 {
    margin-bottom: 0;
  }
  .lg\:ml-0 {
    margin-left: 0;
  }
  .lg\:mx-0 {
    margin-left: 0;
    margin-right: 0;
  }
  .lg\:my-0 {
    margin-top: 0;
    margin-bottom: 0;
  }
}
@media (min-width: 1270px) {
  .xlg\:p-0 {
    padding: 0;
  }
  .xlg\:pt-0 {
    padding-top: 0;
  }
  .xlg\:pr-0 {
    padding-right: 0;
  }
  .xlg\:pb-0 {
    padding-bottom: 0;
  }
  .xlg\:pl-0 {
    padding-left: 0;
  }
  .xlg\:px-0 {
    padding-left: 0;
    padding-right: 0;
  }
  .xlg\:py-0 {
    padding-top: 0;
    padding-bottom: 0;
  }
  .xlg\:m-0 {
    margin: 0;
  }
  .xlg\:mt-0 {
    margin-top: 0;
  }
  .xlg\:mr-0 {
    margin-right: 0;
  }
  .xlg\:mb-0 {
    margin-bottom: 0;
  }
  .xlg\:ml-0 {
    margin-left: 0;
  }
  .xlg\:mx-0 {
    margin-left: 0;
    margin-right: 0;
  }
  .xlg\:my-0 {
    margin-top: 0;
    margin-bottom: 0;
  }
}
.p-1 {
  padding: 1px;
}

.pt-1 {
  padding-top: 1px;
}

.pr-1 {
  padding-right: 1px;
}

.pb-1 {
  padding-bottom: 1px;
}

.pl-1 {
  padding-left: 1px;
}

.px-1 {
  padding-left: 1px;
  padding-right: 1px;
}

.py-1 {
  padding-top: 1px;
  padding-bottom: 1px;
}

.m-1 {
  margin: 1px;
}

.mt-1 {
  margin-top: 1px;
}

.mr-1 {
  margin-right: 1px;
}

.mb-1 {
  margin-bottom: 1px;
}

.ml-1 {
  margin-left: 1px;
}

.mx-1 {
  margin-left: 1px;
  margin-right: 1px;
}

.my-1 {
  margin-top: 1px;
  margin-bottom: 1px;
}

@media (min-width: 353px) {
  .sm\:p-1 {
    padding: 1px;
  }
  .sm\:pt-1 {
    padding-top: 1px;
  }
  .sm\:pr-1 {
    padding-right: 1px;
  }
  .sm\:pb-1 {
    padding-bottom: 1px;
  }
  .sm\:pl-1 {
    padding-left: 1px;
  }
  .sm\:px-1 {
    padding-left: 1px;
    padding-right: 1px;
  }
  .sm\:py-1 {
    padding-top: 1px;
    padding-bottom: 1px;
  }
  .sm\:m-1 {
    margin: 1px;
  }
  .sm\:mt-1 {
    margin-top: 1px;
  }
  .sm\:mr-1 {
    margin-right: 1px;
  }
  .sm\:mb-1 {
    margin-bottom: 1px;
  }
  .sm\:ml-1 {
    margin-left: 1px;
  }
  .sm\:mx-1 {
    margin-left: 1px;
    margin-right: 1px;
  }
  .sm\:my-1 {
    margin-top: 1px;
    margin-bottom: 1px;
  }
}
@media (min-width: 724px) {
  .md\:p-1 {
    padding: 1px;
  }
  .md\:pt-1 {
    padding-top: 1px;
  }
  .md\:pr-1 {
    padding-right: 1px;
  }
  .md\:pb-1 {
    padding-bottom: 1px;
  }
  .md\:pl-1 {
    padding-left: 1px;
  }
  .md\:px-1 {
    padding-left: 1px;
    padding-right: 1px;
  }
  .md\:py-1 {
    padding-top: 1px;
    padding-bottom: 1px;
  }
  .md\:m-1 {
    margin: 1px;
  }
  .md\:mt-1 {
    margin-top: 1px;
  }
  .md\:mr-1 {
    margin-right: 1px;
  }
  .md\:mb-1 {
    margin-bottom: 1px;
  }
  .md\:ml-1 {
    margin-left: 1px;
  }
  .md\:mx-1 {
    margin-left: 1px;
    margin-right: 1px;
  }
  .md\:my-1 {
    margin-top: 1px;
    margin-bottom: 1px;
  }
}
@media (min-width: 1070px) {
  .lg\:p-1 {
    padding: 1px;
  }
  .lg\:pt-1 {
    padding-top: 1px;
  }
  .lg\:pr-1 {
    padding-right: 1px;
  }
  .lg\:pb-1 {
    padding-bottom: 1px;
  }
  .lg\:pl-1 {
    padding-left: 1px;
  }
  .lg\:px-1 {
    padding-left: 1px;
    padding-right: 1px;
  }
  .lg\:py-1 {
    padding-top: 1px;
    padding-bottom: 1px;
  }
  .lg\:m-1 {
    margin: 1px;
  }
  .lg\:mt-1 {
    margin-top: 1px;
  }
  .lg\:mr-1 {
    margin-right: 1px;
  }
  .lg\:mb-1 {
    margin-bottom: 1px;
  }
  .lg\:ml-1 {
    margin-left: 1px;
  }
  .lg\:mx-1 {
    margin-left: 1px;
    margin-right: 1px;
  }
  .lg\:my-1 {
    margin-top: 1px;
    margin-bottom: 1px;
  }
}
@media (min-width: 1270px) {
  .xlg\:p-1 {
    padding: 1px;
  }
  .xlg\:pt-1 {
    padding-top: 1px;
  }
  .xlg\:pr-1 {
    padding-right: 1px;
  }
  .xlg\:pb-1 {
    padding-bottom: 1px;
  }
  .xlg\:pl-1 {
    padding-left: 1px;
  }
  .xlg\:px-1 {
    padding-left: 1px;
    padding-right: 1px;
  }
  .xlg\:py-1 {
    padding-top: 1px;
    padding-bottom: 1px;
  }
  .xlg\:m-1 {
    margin: 1px;
  }
  .xlg\:mt-1 {
    margin-top: 1px;
  }
  .xlg\:mr-1 {
    margin-right: 1px;
  }
  .xlg\:mb-1 {
    margin-bottom: 1px;
  }
  .xlg\:ml-1 {
    margin-left: 1px;
  }
  .xlg\:mx-1 {
    margin-left: 1px;
    margin-right: 1px;
  }
  .xlg\:my-1 {
    margin-top: 1px;
    margin-bottom: 1px;
  }
}
.p-2 {
  padding: 0.125rem;
}

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

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

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

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

.px-2 {
  padding-left: 0.125rem;
  padding-right: 0.125rem;
}

.py-2 {
  padding-top: 0.125rem;
  padding-bottom: 0.125rem;
}

.m-2 {
  margin: 0.125rem;
}

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

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

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

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

.mx-2 {
  margin-left: 0.125rem;
  margin-right: 0.125rem;
}

.my-2 {
  margin-top: 0.125rem;
  margin-bottom: 0.125rem;
}

@media (min-width: 353px) {
  .sm\:p-2 {
    padding: 0.125rem;
  }
  .sm\:pt-2 {
    padding-top: 0.125rem;
  }
  .sm\:pr-2 {
    padding-right: 0.125rem;
  }
  .sm\:pb-2 {
    padding-bottom: 0.125rem;
  }
  .sm\:pl-2 {
    padding-left: 0.125rem;
  }
  .sm\:px-2 {
    padding-left: 0.125rem;
    padding-right: 0.125rem;
  }
  .sm\:py-2 {
    padding-top: 0.125rem;
    padding-bottom: 0.125rem;
  }
  .sm\:m-2 {
    margin: 0.125rem;
  }
  .sm\:mt-2 {
    margin-top: 0.125rem;
  }
  .sm\:mr-2 {
    margin-right: 0.125rem;
  }
  .sm\:mb-2 {
    margin-bottom: 0.125rem;
  }
  .sm\:ml-2 {
    margin-left: 0.125rem;
  }
  .sm\:mx-2 {
    margin-left: 0.125rem;
    margin-right: 0.125rem;
  }
  .sm\:my-2 {
    margin-top: 0.125rem;
    margin-bottom: 0.125rem;
  }
}
@media (min-width: 724px) {
  .md\:p-2 {
    padding: 0.125rem;
  }
  .md\:pt-2 {
    padding-top: 0.125rem;
  }
  .md\:pr-2 {
    padding-right: 0.125rem;
  }
  .md\:pb-2 {
    padding-bottom: 0.125rem;
  }
  .md\:pl-2 {
    padding-left: 0.125rem;
  }
  .md\:px-2 {
    padding-left: 0.125rem;
    padding-right: 0.125rem;
  }
  .md\:py-2 {
    padding-top: 0.125rem;
    padding-bottom: 0.125rem;
  }
  .md\:m-2 {
    margin: 0.125rem;
  }
  .md\:mt-2 {
    margin-top: 0.125rem;
  }
  .md\:mr-2 {
    margin-right: 0.125rem;
  }
  .md\:mb-2 {
    margin-bottom: 0.125rem;
  }
  .md\:ml-2 {
    margin-left: 0.125rem;
  }
  .md\:mx-2 {
    margin-left: 0.125rem;
    margin-right: 0.125rem;
  }
  .md\:my-2 {
    margin-top: 0.125rem;
    margin-bottom: 0.125rem;
  }
}
@media (min-width: 1070px) {
  .lg\:p-2 {
    padding: 0.125rem;
  }
  .lg\:pt-2 {
    padding-top: 0.125rem;
  }
  .lg\:pr-2 {
    padding-right: 0.125rem;
  }
  .lg\:pb-2 {
    padding-bottom: 0.125rem;
  }
  .lg\:pl-2 {
    padding-left: 0.125rem;
  }
  .lg\:px-2 {
    padding-left: 0.125rem;
    padding-right: 0.125rem;
  }
  .lg\:py-2 {
    padding-top: 0.125rem;
    padding-bottom: 0.125rem;
  }
  .lg\:m-2 {
    margin: 0.125rem;
  }
  .lg\:mt-2 {
    margin-top: 0.125rem;
  }
  .lg\:mr-2 {
    margin-right: 0.125rem;
  }
  .lg\:mb-2 {
    margin-bottom: 0.125rem;
  }
  .lg\:ml-2 {
    margin-left: 0.125rem;
  }
  .lg\:mx-2 {
    margin-left: 0.125rem;
    margin-right: 0.125rem;
  }
  .lg\:my-2 {
    margin-top: 0.125rem;
    margin-bottom: 0.125rem;
  }
}
@media (min-width: 1270px) {
  .xlg\:p-2 {
    padding: 0.125rem;
  }
  .xlg\:pt-2 {
    padding-top: 0.125rem;
  }
  .xlg\:pr-2 {
    padding-right: 0.125rem;
  }
  .xlg\:pb-2 {
    padding-bottom: 0.125rem;
  }
  .xlg\:pl-2 {
    padding-left: 0.125rem;
  }
  .xlg\:px-2 {
    padding-left: 0.125rem;
    padding-right: 0.125rem;
  }
  .xlg\:py-2 {
    padding-top: 0.125rem;
    padding-bottom: 0.125rem;
  }
  .xlg\:m-2 {
    margin: 0.125rem;
  }
  .xlg\:mt-2 {
    margin-top: 0.125rem;
  }
  .xlg\:mr-2 {
    margin-right: 0.125rem;
  }
  .xlg\:mb-2 {
    margin-bottom: 0.125rem;
  }
  .xlg\:ml-2 {
    margin-left: 0.125rem;
  }
  .xlg\:mx-2 {
    margin-left: 0.125rem;
    margin-right: 0.125rem;
  }
  .xlg\:my-2 {
    margin-top: 0.125rem;
    margin-bottom: 0.125rem;
  }
}
.p-4 {
  padding: 0.25rem;
}

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

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

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

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

.px-4 {
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}

.py-4 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.m-4 {
  margin: 0.25rem;
}

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

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

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

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

.mx-4 {
  margin-left: 0.25rem;
  margin-right: 0.25rem;
}

.my-4 {
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}

@media (min-width: 353px) {
  .sm\:p-4 {
    padding: 0.25rem;
  }
  .sm\:pt-4 {
    padding-top: 0.25rem;
  }
  .sm\:pr-4 {
    padding-right: 0.25rem;
  }
  .sm\:pb-4 {
    padding-bottom: 0.25rem;
  }
  .sm\:pl-4 {
    padding-left: 0.25rem;
  }
  .sm\:px-4 {
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }
  .sm\:py-4 {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }
  .sm\:m-4 {
    margin: 0.25rem;
  }
  .sm\:mt-4 {
    margin-top: 0.25rem;
  }
  .sm\:mr-4 {
    margin-right: 0.25rem;
  }
  .sm\:mb-4 {
    margin-bottom: 0.25rem;
  }
  .sm\:ml-4 {
    margin-left: 0.25rem;
  }
  .sm\:mx-4 {
    margin-left: 0.25rem;
    margin-right: 0.25rem;
  }
  .sm\:my-4 {
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
  }
}
@media (min-width: 724px) {
  .md\:p-4 {
    padding: 0.25rem;
  }
  .md\:pt-4 {
    padding-top: 0.25rem;
  }
  .md\:pr-4 {
    padding-right: 0.25rem;
  }
  .md\:pb-4 {
    padding-bottom: 0.25rem;
  }
  .md\:pl-4 {
    padding-left: 0.25rem;
  }
  .md\:px-4 {
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }
  .md\:py-4 {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }
  .md\:m-4 {
    margin: 0.25rem;
  }
  .md\:mt-4 {
    margin-top: 0.25rem;
  }
  .md\:mr-4 {
    margin-right: 0.25rem;
  }
  .md\:mb-4 {
    margin-bottom: 0.25rem;
  }
  .md\:ml-4 {
    margin-left: 0.25rem;
  }
  .md\:mx-4 {
    margin-left: 0.25rem;
    margin-right: 0.25rem;
  }
  .md\:my-4 {
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
  }
}
@media (min-width: 1070px) {
  .lg\:p-4 {
    padding: 0.25rem;
  }
  .lg\:pt-4 {
    padding-top: 0.25rem;
  }
  .lg\:pr-4 {
    padding-right: 0.25rem;
  }
  .lg\:pb-4 {
    padding-bottom: 0.25rem;
  }
  .lg\:pl-4 {
    padding-left: 0.25rem;
  }
  .lg\:px-4 {
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }
  .lg\:py-4 {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }
  .lg\:m-4 {
    margin: 0.25rem;
  }
  .lg\:mt-4 {
    margin-top: 0.25rem;
  }
  .lg\:mr-4 {
    margin-right: 0.25rem;
  }
  .lg\:mb-4 {
    margin-bottom: 0.25rem;
  }
  .lg\:ml-4 {
    margin-left: 0.25rem;
  }
  .lg\:mx-4 {
    margin-left: 0.25rem;
    margin-right: 0.25rem;
  }
  .lg\:my-4 {
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
  }
}
@media (min-width: 1270px) {
  .xlg\:p-4 {
    padding: 0.25rem;
  }
  .xlg\:pt-4 {
    padding-top: 0.25rem;
  }
  .xlg\:pr-4 {
    padding-right: 0.25rem;
  }
  .xlg\:pb-4 {
    padding-bottom: 0.25rem;
  }
  .xlg\:pl-4 {
    padding-left: 0.25rem;
  }
  .xlg\:px-4 {
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }
  .xlg\:py-4 {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }
  .xlg\:m-4 {
    margin: 0.25rem;
  }
  .xlg\:mt-4 {
    margin-top: 0.25rem;
  }
  .xlg\:mr-4 {
    margin-right: 0.25rem;
  }
  .xlg\:mb-4 {
    margin-bottom: 0.25rem;
  }
  .xlg\:ml-4 {
    margin-left: 0.25rem;
  }
  .xlg\:mx-4 {
    margin-left: 0.25rem;
    margin-right: 0.25rem;
  }
  .xlg\:my-4 {
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
  }
}
.p-8 {
  padding: 0.5rem;
}

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

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

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

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

.px-8 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.py-8 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.m-8 {
  margin: 0.5rem;
}

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

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

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

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

.mx-8 {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}

.my-8 {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

@media (min-width: 353px) {
  .sm\:p-8 {
    padding: 0.5rem;
  }
  .sm\:pt-8 {
    padding-top: 0.5rem;
  }
  .sm\:pr-8 {
    padding-right: 0.5rem;
  }
  .sm\:pb-8 {
    padding-bottom: 0.5rem;
  }
  .sm\:pl-8 {
    padding-left: 0.5rem;
  }
  .sm\:px-8 {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  .sm\:py-8 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
  .sm\:m-8 {
    margin: 0.5rem;
  }
  .sm\:mt-8 {
    margin-top: 0.5rem;
  }
  .sm\:mr-8 {
    margin-right: 0.5rem;
  }
  .sm\:mb-8 {
    margin-bottom: 0.5rem;
  }
  .sm\:ml-8 {
    margin-left: 0.5rem;
  }
  .sm\:mx-8 {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }
  .sm\:my-8 {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }
}
@media (min-width: 724px) {
  .md\:p-8 {
    padding: 0.5rem;
  }
  .md\:pt-8 {
    padding-top: 0.5rem;
  }
  .md\:pr-8 {
    padding-right: 0.5rem;
  }
  .md\:pb-8 {
    padding-bottom: 0.5rem;
  }
  .md\:pl-8 {
    padding-left: 0.5rem;
  }
  .md\:px-8 {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  .md\:py-8 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
  .md\:m-8 {
    margin: 0.5rem;
  }
  .md\:mt-8 {
    margin-top: 0.5rem;
  }
  .md\:mr-8 {
    margin-right: 0.5rem;
  }
  .md\:mb-8 {
    margin-bottom: 0.5rem;
  }
  .md\:ml-8 {
    margin-left: 0.5rem;
  }
  .md\:mx-8 {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }
  .md\:my-8 {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }
}
@media (min-width: 1070px) {
  .lg\:p-8 {
    padding: 0.5rem;
  }
  .lg\:pt-8 {
    padding-top: 0.5rem;
  }
  .lg\:pr-8 {
    padding-right: 0.5rem;
  }
  .lg\:pb-8 {
    padding-bottom: 0.5rem;
  }
  .lg\:pl-8 {
    padding-left: 0.5rem;
  }
  .lg\:px-8 {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  .lg\:py-8 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
  .lg\:m-8 {
    margin: 0.5rem;
  }
  .lg\:mt-8 {
    margin-top: 0.5rem;
  }
  .lg\:mr-8 {
    margin-right: 0.5rem;
  }
  .lg\:mb-8 {
    margin-bottom: 0.5rem;
  }
  .lg\:ml-8 {
    margin-left: 0.5rem;
  }
  .lg\:mx-8 {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }
  .lg\:my-8 {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }
}
@media (min-width: 1270px) {
  .xlg\:p-8 {
    padding: 0.5rem;
  }
  .xlg\:pt-8 {
    padding-top: 0.5rem;
  }
  .xlg\:pr-8 {
    padding-right: 0.5rem;
  }
  .xlg\:pb-8 {
    padding-bottom: 0.5rem;
  }
  .xlg\:pl-8 {
    padding-left: 0.5rem;
  }
  .xlg\:px-8 {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  .xlg\:py-8 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
  .xlg\:m-8 {
    margin: 0.5rem;
  }
  .xlg\:mt-8 {
    margin-top: 0.5rem;
  }
  .xlg\:mr-8 {
    margin-right: 0.5rem;
  }
  .xlg\:mb-8 {
    margin-bottom: 0.5rem;
  }
  .xlg\:ml-8 {
    margin-left: 0.5rem;
  }
  .xlg\:mx-8 {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }
  .xlg\:my-8 {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }
}
.p-10 {
  padding: 0.625rem;
}

.pt-10 {
  padding-top: 0.625rem;
}

.pr-10 {
  padding-right: 0.625rem;
}

.pb-10 {
  padding-bottom: 0.625rem;
}

.pl-10 {
  padding-left: 0.625rem;
}

.px-10 {
  padding-left: 0.625rem;
  padding-right: 0.625rem;
}

.py-10 {
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
}

.m-10 {
  margin: 0.625rem;
}

.mt-10 {
  margin-top: 0.625rem;
}

.mr-10 {
  margin-right: 0.625rem;
}

.mb-10 {
  margin-bottom: 0.625rem;
}

.ml-10 {
  margin-left: 0.625rem;
}

.mx-10 {
  margin-left: 0.625rem;
  margin-right: 0.625rem;
}

.my-10 {
  margin-top: 0.625rem;
  margin-bottom: 0.625rem;
}

@media (min-width: 353px) {
  .sm\:p-10 {
    padding: 0.625rem;
  }
  .sm\:pt-10 {
    padding-top: 0.625rem;
  }
  .sm\:pr-10 {
    padding-right: 0.625rem;
  }
  .sm\:pb-10 {
    padding-bottom: 0.625rem;
  }
  .sm\:pl-10 {
    padding-left: 0.625rem;
  }
  .sm\:px-10 {
    padding-left: 0.625rem;
    padding-right: 0.625rem;
  }
  .sm\:py-10 {
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
  }
  .sm\:m-10 {
    margin: 0.625rem;
  }
  .sm\:mt-10 {
    margin-top: 0.625rem;
  }
  .sm\:mr-10 {
    margin-right: 0.625rem;
  }
  .sm\:mb-10 {
    margin-bottom: 0.625rem;
  }
  .sm\:ml-10 {
    margin-left: 0.625rem;
  }
  .sm\:mx-10 {
    margin-left: 0.625rem;
    margin-right: 0.625rem;
  }
  .sm\:my-10 {
    margin-top: 0.625rem;
    margin-bottom: 0.625rem;
  }
}
@media (min-width: 724px) {
  .md\:p-10 {
    padding: 0.625rem;
  }
  .md\:pt-10 {
    padding-top: 0.625rem;
  }
  .md\:pr-10 {
    padding-right: 0.625rem;
  }
  .md\:pb-10 {
    padding-bottom: 0.625rem;
  }
  .md\:pl-10 {
    padding-left: 0.625rem;
  }
  .md\:px-10 {
    padding-left: 0.625rem;
    padding-right: 0.625rem;
  }
  .md\:py-10 {
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
  }
  .md\:m-10 {
    margin: 0.625rem;
  }
  .md\:mt-10 {
    margin-top: 0.625rem;
  }
  .md\:mr-10 {
    margin-right: 0.625rem;
  }
  .md\:mb-10 {
    margin-bottom: 0.625rem;
  }
  .md\:ml-10 {
    margin-left: 0.625rem;
  }
  .md\:mx-10 {
    margin-left: 0.625rem;
    margin-right: 0.625rem;
  }
  .md\:my-10 {
    margin-top: 0.625rem;
    margin-bottom: 0.625rem;
  }
}
@media (min-width: 1070px) {
  .lg\:p-10 {
    padding: 0.625rem;
  }
  .lg\:pt-10 {
    padding-top: 0.625rem;
  }
  .lg\:pr-10 {
    padding-right: 0.625rem;
  }
  .lg\:pb-10 {
    padding-bottom: 0.625rem;
  }
  .lg\:pl-10 {
    padding-left: 0.625rem;
  }
  .lg\:px-10 {
    padding-left: 0.625rem;
    padding-right: 0.625rem;
  }
  .lg\:py-10 {
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
  }
  .lg\:m-10 {
    margin: 0.625rem;
  }
  .lg\:mt-10 {
    margin-top: 0.625rem;
  }
  .lg\:mr-10 {
    margin-right: 0.625rem;
  }
  .lg\:mb-10 {
    margin-bottom: 0.625rem;
  }
  .lg\:ml-10 {
    margin-left: 0.625rem;
  }
  .lg\:mx-10 {
    margin-left: 0.625rem;
    margin-right: 0.625rem;
  }
  .lg\:my-10 {
    margin-top: 0.625rem;
    margin-bottom: 0.625rem;
  }
}
@media (min-width: 1270px) {
  .xlg\:p-10 {
    padding: 0.625rem;
  }
  .xlg\:pt-10 {
    padding-top: 0.625rem;
  }
  .xlg\:pr-10 {
    padding-right: 0.625rem;
  }
  .xlg\:pb-10 {
    padding-bottom: 0.625rem;
  }
  .xlg\:pl-10 {
    padding-left: 0.625rem;
  }
  .xlg\:px-10 {
    padding-left: 0.625rem;
    padding-right: 0.625rem;
  }
  .xlg\:py-10 {
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
  }
  .xlg\:m-10 {
    margin: 0.625rem;
  }
  .xlg\:mt-10 {
    margin-top: 0.625rem;
  }
  .xlg\:mr-10 {
    margin-right: 0.625rem;
  }
  .xlg\:mb-10 {
    margin-bottom: 0.625rem;
  }
  .xlg\:ml-10 {
    margin-left: 0.625rem;
  }
  .xlg\:mx-10 {
    margin-left: 0.625rem;
    margin-right: 0.625rem;
  }
  .xlg\:my-10 {
    margin-top: 0.625rem;
    margin-bottom: 0.625rem;
  }
}
.p-12 {
  padding: 0.75rem;
}

.pt-12 {
  padding-top: 0.75rem;
}

.pr-12 {
  padding-right: 0.75rem;
}

.pb-12 {
  padding-bottom: 0.75rem;
}

.pl-12 {
  padding-left: 0.75rem;
}

.px-12 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.py-12 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.m-12 {
  margin: 0.75rem;
}

.mt-12 {
  margin-top: 0.75rem;
}

.mr-12 {
  margin-right: 0.75rem;
}

.mb-12 {
  margin-bottom: 0.75rem;
}

.ml-12 {
  margin-left: 0.75rem;
}

.mx-12 {
  margin-left: 0.75rem;
  margin-right: 0.75rem;
}

.my-12 {
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}

@media (min-width: 353px) {
  .sm\:p-12 {
    padding: 0.75rem;
  }
  .sm\:pt-12 {
    padding-top: 0.75rem;
  }
  .sm\:pr-12 {
    padding-right: 0.75rem;
  }
  .sm\:pb-12 {
    padding-bottom: 0.75rem;
  }
  .sm\:pl-12 {
    padding-left: 0.75rem;
  }
  .sm\:px-12 {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
  .sm\:py-12 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }
  .sm\:m-12 {
    margin: 0.75rem;
  }
  .sm\:mt-12 {
    margin-top: 0.75rem;
  }
  .sm\:mr-12 {
    margin-right: 0.75rem;
  }
  .sm\:mb-12 {
    margin-bottom: 0.75rem;
  }
  .sm\:ml-12 {
    margin-left: 0.75rem;
  }
  .sm\:mx-12 {
    margin-left: 0.75rem;
    margin-right: 0.75rem;
  }
  .sm\:my-12 {
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
  }
}
@media (min-width: 724px) {
  .md\:p-12 {
    padding: 0.75rem;
  }
  .md\:pt-12 {
    padding-top: 0.75rem;
  }
  .md\:pr-12 {
    padding-right: 0.75rem;
  }
  .md\:pb-12 {
    padding-bottom: 0.75rem;
  }
  .md\:pl-12 {
    padding-left: 0.75rem;
  }
  .md\:px-12 {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
  .md\:py-12 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }
  .md\:m-12 {
    margin: 0.75rem;
  }
  .md\:mt-12 {
    margin-top: 0.75rem;
  }
  .md\:mr-12 {
    margin-right: 0.75rem;
  }
  .md\:mb-12 {
    margin-bottom: 0.75rem;
  }
  .md\:ml-12 {
    margin-left: 0.75rem;
  }
  .md\:mx-12 {
    margin-left: 0.75rem;
    margin-right: 0.75rem;
  }
  .md\:my-12 {
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
  }
}
@media (min-width: 1070px) {
  .lg\:p-12 {
    padding: 0.75rem;
  }
  .lg\:pt-12 {
    padding-top: 0.75rem;
  }
  .lg\:pr-12 {
    padding-right: 0.75rem;
  }
  .lg\:pb-12 {
    padding-bottom: 0.75rem;
  }
  .lg\:pl-12 {
    padding-left: 0.75rem;
  }
  .lg\:px-12 {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
  .lg\:py-12 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }
  .lg\:m-12 {
    margin: 0.75rem;
  }
  .lg\:mt-12 {
    margin-top: 0.75rem;
  }
  .lg\:mr-12 {
    margin-right: 0.75rem;
  }
  .lg\:mb-12 {
    margin-bottom: 0.75rem;
  }
  .lg\:ml-12 {
    margin-left: 0.75rem;
  }
  .lg\:mx-12 {
    margin-left: 0.75rem;
    margin-right: 0.75rem;
  }
  .lg\:my-12 {
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
  }
}
@media (min-width: 1270px) {
  .xlg\:p-12 {
    padding: 0.75rem;
  }
  .xlg\:pt-12 {
    padding-top: 0.75rem;
  }
  .xlg\:pr-12 {
    padding-right: 0.75rem;
  }
  .xlg\:pb-12 {
    padding-bottom: 0.75rem;
  }
  .xlg\:pl-12 {
    padding-left: 0.75rem;
  }
  .xlg\:px-12 {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
  .xlg\:py-12 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }
  .xlg\:m-12 {
    margin: 0.75rem;
  }
  .xlg\:mt-12 {
    margin-top: 0.75rem;
  }
  .xlg\:mr-12 {
    margin-right: 0.75rem;
  }
  .xlg\:mb-12 {
    margin-bottom: 0.75rem;
  }
  .xlg\:ml-12 {
    margin-left: 0.75rem;
  }
  .xlg\:mx-12 {
    margin-left: 0.75rem;
    margin-right: 0.75rem;
  }
  .xlg\:my-12 {
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
  }
}
.p-16 {
  padding: 1rem;
}

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

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

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

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

.px-16 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.py-16 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.m-16 {
  margin: 1rem;
}

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

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

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

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

.mx-16 {
  margin-left: 1rem;
  margin-right: 1rem;
}

.my-16 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

@media (min-width: 353px) {
  .sm\:p-16 {
    padding: 1rem;
  }
  .sm\:pt-16 {
    padding-top: 1rem;
  }
  .sm\:pr-16 {
    padding-right: 1rem;
  }
  .sm\:pb-16 {
    padding-bottom: 1rem;
  }
  .sm\:pl-16 {
    padding-left: 1rem;
  }
  .sm\:px-16 {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .sm\:py-16 {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  .sm\:m-16 {
    margin: 1rem;
  }
  .sm\:mt-16 {
    margin-top: 1rem;
  }
  .sm\:mr-16 {
    margin-right: 1rem;
  }
  .sm\:mb-16 {
    margin-bottom: 1rem;
  }
  .sm\:ml-16 {
    margin-left: 1rem;
  }
  .sm\:mx-16 {
    margin-left: 1rem;
    margin-right: 1rem;
  }
  .sm\:my-16 {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
}
@media (min-width: 724px) {
  .md\:p-16 {
    padding: 1rem;
  }
  .md\:pt-16 {
    padding-top: 1rem;
  }
  .md\:pr-16 {
    padding-right: 1rem;
  }
  .md\:pb-16 {
    padding-bottom: 1rem;
  }
  .md\:pl-16 {
    padding-left: 1rem;
  }
  .md\:px-16 {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .md\:py-16 {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  .md\:m-16 {
    margin: 1rem;
  }
  .md\:mt-16 {
    margin-top: 1rem;
  }
  .md\:mr-16 {
    margin-right: 1rem;
  }
  .md\:mb-16 {
    margin-bottom: 1rem;
  }
  .md\:ml-16 {
    margin-left: 1rem;
  }
  .md\:mx-16 {
    margin-left: 1rem;
    margin-right: 1rem;
  }
  .md\:my-16 {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
}
@media (min-width: 1070px) {
  .lg\:p-16 {
    padding: 1rem;
  }
  .lg\:pt-16 {
    padding-top: 1rem;
  }
  .lg\:pr-16 {
    padding-right: 1rem;
  }
  .lg\:pb-16 {
    padding-bottom: 1rem;
  }
  .lg\:pl-16 {
    padding-left: 1rem;
  }
  .lg\:px-16 {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .lg\:py-16 {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  .lg\:m-16 {
    margin: 1rem;
  }
  .lg\:mt-16 {
    margin-top: 1rem;
  }
  .lg\:mr-16 {
    margin-right: 1rem;
  }
  .lg\:mb-16 {
    margin-bottom: 1rem;
  }
  .lg\:ml-16 {
    margin-left: 1rem;
  }
  .lg\:mx-16 {
    margin-left: 1rem;
    margin-right: 1rem;
  }
  .lg\:my-16 {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
}
@media (min-width: 1270px) {
  .xlg\:p-16 {
    padding: 1rem;
  }
  .xlg\:pt-16 {
    padding-top: 1rem;
  }
  .xlg\:pr-16 {
    padding-right: 1rem;
  }
  .xlg\:pb-16 {
    padding-bottom: 1rem;
  }
  .xlg\:pl-16 {
    padding-left: 1rem;
  }
  .xlg\:px-16 {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .xlg\:py-16 {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  .xlg\:m-16 {
    margin: 1rem;
  }
  .xlg\:mt-16 {
    margin-top: 1rem;
  }
  .xlg\:mr-16 {
    margin-right: 1rem;
  }
  .xlg\:mb-16 {
    margin-bottom: 1rem;
  }
  .xlg\:ml-16 {
    margin-left: 1rem;
  }
  .xlg\:mx-16 {
    margin-left: 1rem;
    margin-right: 1rem;
  }
  .xlg\:my-16 {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
}
.p-20 {
  padding: 1.25rem;
}

.pt-20 {
  padding-top: 1.25rem;
}

.pr-20 {
  padding-right: 1.25rem;
}

.pb-20 {
  padding-bottom: 1.25rem;
}

.pl-20 {
  padding-left: 1.25rem;
}

.px-20 {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.py-20 {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.m-20 {
  margin: 1.25rem;
}

.mt-20 {
  margin-top: 1.25rem;
}

.mr-20 {
  margin-right: 1.25rem;
}

.mb-20 {
  margin-bottom: 1.25rem;
}

.ml-20 {
  margin-left: 1.25rem;
}

.mx-20 {
  margin-left: 1.25rem;
  margin-right: 1.25rem;
}

.my-20 {
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
}

@media (min-width: 353px) {
  .sm\:p-20 {
    padding: 1.25rem;
  }
  .sm\:pt-20 {
    padding-top: 1.25rem;
  }
  .sm\:pr-20 {
    padding-right: 1.25rem;
  }
  .sm\:pb-20 {
    padding-bottom: 1.25rem;
  }
  .sm\:pl-20 {
    padding-left: 1.25rem;
  }
  .sm\:px-20 {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .sm\:py-20 {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }
  .sm\:m-20 {
    margin: 1.25rem;
  }
  .sm\:mt-20 {
    margin-top: 1.25rem;
  }
  .sm\:mr-20 {
    margin-right: 1.25rem;
  }
  .sm\:mb-20 {
    margin-bottom: 1.25rem;
  }
  .sm\:ml-20 {
    margin-left: 1.25rem;
  }
  .sm\:mx-20 {
    margin-left: 1.25rem;
    margin-right: 1.25rem;
  }
  .sm\:my-20 {
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
  }
}
@media (min-width: 724px) {
  .md\:p-20 {
    padding: 1.25rem;
  }
  .md\:pt-20 {
    padding-top: 1.25rem;
  }
  .md\:pr-20 {
    padding-right: 1.25rem;
  }
  .md\:pb-20 {
    padding-bottom: 1.25rem;
  }
  .md\:pl-20 {
    padding-left: 1.25rem;
  }
  .md\:px-20 {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .md\:py-20 {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }
  .md\:m-20 {
    margin: 1.25rem;
  }
  .md\:mt-20 {
    margin-top: 1.25rem;
  }
  .md\:mr-20 {
    margin-right: 1.25rem;
  }
  .md\:mb-20 {
    margin-bottom: 1.25rem;
  }
  .md\:ml-20 {
    margin-left: 1.25rem;
  }
  .md\:mx-20 {
    margin-left: 1.25rem;
    margin-right: 1.25rem;
  }
  .md\:my-20 {
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
  }
}
@media (min-width: 1070px) {
  .lg\:p-20 {
    padding: 1.25rem;
  }
  .lg\:pt-20 {
    padding-top: 1.25rem;
  }
  .lg\:pr-20 {
    padding-right: 1.25rem;
  }
  .lg\:pb-20 {
    padding-bottom: 1.25rem;
  }
  .lg\:pl-20 {
    padding-left: 1.25rem;
  }
  .lg\:px-20 {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .lg\:py-20 {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }
  .lg\:m-20 {
    margin: 1.25rem;
  }
  .lg\:mt-20 {
    margin-top: 1.25rem;
  }
  .lg\:mr-20 {
    margin-right: 1.25rem;
  }
  .lg\:mb-20 {
    margin-bottom: 1.25rem;
  }
  .lg\:ml-20 {
    margin-left: 1.25rem;
  }
  .lg\:mx-20 {
    margin-left: 1.25rem;
    margin-right: 1.25rem;
  }
  .lg\:my-20 {
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
  }
}
@media (min-width: 1270px) {
  .xlg\:p-20 {
    padding: 1.25rem;
  }
  .xlg\:pt-20 {
    padding-top: 1.25rem;
  }
  .xlg\:pr-20 {
    padding-right: 1.25rem;
  }
  .xlg\:pb-20 {
    padding-bottom: 1.25rem;
  }
  .xlg\:pl-20 {
    padding-left: 1.25rem;
  }
  .xlg\:px-20 {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .xlg\:py-20 {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }
  .xlg\:m-20 {
    margin: 1.25rem;
  }
  .xlg\:mt-20 {
    margin-top: 1.25rem;
  }
  .xlg\:mr-20 {
    margin-right: 1.25rem;
  }
  .xlg\:mb-20 {
    margin-bottom: 1.25rem;
  }
  .xlg\:ml-20 {
    margin-left: 1.25rem;
  }
  .xlg\:mx-20 {
    margin-left: 1.25rem;
    margin-right: 1.25rem;
  }
  .xlg\:my-20 {
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
  }
}
.p-24 {
  padding: 1.5rem;
}

.pt-24 {
  padding-top: 1.5rem;
}

.pr-24 {
  padding-right: 1.5rem;
}

.pb-24 {
  padding-bottom: 1.5rem;
}

.pl-24 {
  padding-left: 1.5rem;
}

.px-24 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.py-24 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.m-24 {
  margin: 1.5rem;
}

.mt-24 {
  margin-top: 1.5rem;
}

.mr-24 {
  margin-right: 1.5rem;
}

.mb-24 {
  margin-bottom: 1.5rem;
}

.ml-24 {
  margin-left: 1.5rem;
}

.mx-24 {
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}

.my-24 {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 353px) {
  .sm\:p-24 {
    padding: 1.5rem;
  }
  .sm\:pt-24 {
    padding-top: 1.5rem;
  }
  .sm\:pr-24 {
    padding-right: 1.5rem;
  }
  .sm\:pb-24 {
    padding-bottom: 1.5rem;
  }
  .sm\:pl-24 {
    padding-left: 1.5rem;
  }
  .sm\:px-24 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .sm\:py-24 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
  .sm\:m-24 {
    margin: 1.5rem;
  }
  .sm\:mt-24 {
    margin-top: 1.5rem;
  }
  .sm\:mr-24 {
    margin-right: 1.5rem;
  }
  .sm\:mb-24 {
    margin-bottom: 1.5rem;
  }
  .sm\:ml-24 {
    margin-left: 1.5rem;
  }
  .sm\:mx-24 {
    margin-left: 1.5rem;
    margin-right: 1.5rem;
  }
  .sm\:my-24 {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
@media (min-width: 724px) {
  .md\:p-24 {
    padding: 1.5rem;
  }
  .md\:pt-24 {
    padding-top: 1.5rem;
  }
  .md\:pr-24 {
    padding-right: 1.5rem;
  }
  .md\:pb-24 {
    padding-bottom: 1.5rem;
  }
  .md\:pl-24 {
    padding-left: 1.5rem;
  }
  .md\:px-24 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .md\:py-24 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
  .md\:m-24 {
    margin: 1.5rem;
  }
  .md\:mt-24 {
    margin-top: 1.5rem;
  }
  .md\:mr-24 {
    margin-right: 1.5rem;
  }
  .md\:mb-24 {
    margin-bottom: 1.5rem;
  }
  .md\:ml-24 {
    margin-left: 1.5rem;
  }
  .md\:mx-24 {
    margin-left: 1.5rem;
    margin-right: 1.5rem;
  }
  .md\:my-24 {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
@media (min-width: 1070px) {
  .lg\:p-24 {
    padding: 1.5rem;
  }
  .lg\:pt-24 {
    padding-top: 1.5rem;
  }
  .lg\:pr-24 {
    padding-right: 1.5rem;
  }
  .lg\:pb-24 {
    padding-bottom: 1.5rem;
  }
  .lg\:pl-24 {
    padding-left: 1.5rem;
  }
  .lg\:px-24 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .lg\:py-24 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
  .lg\:m-24 {
    margin: 1.5rem;
  }
  .lg\:mt-24 {
    margin-top: 1.5rem;
  }
  .lg\:mr-24 {
    margin-right: 1.5rem;
  }
  .lg\:mb-24 {
    margin-bottom: 1.5rem;
  }
  .lg\:ml-24 {
    margin-left: 1.5rem;
  }
  .lg\:mx-24 {
    margin-left: 1.5rem;
    margin-right: 1.5rem;
  }
  .lg\:my-24 {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
@media (min-width: 1270px) {
  .xlg\:p-24 {
    padding: 1.5rem;
  }
  .xlg\:pt-24 {
    padding-top: 1.5rem;
  }
  .xlg\:pr-24 {
    padding-right: 1.5rem;
  }
  .xlg\:pb-24 {
    padding-bottom: 1.5rem;
  }
  .xlg\:pl-24 {
    padding-left: 1.5rem;
  }
  .xlg\:px-24 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .xlg\:py-24 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
  .xlg\:m-24 {
    margin: 1.5rem;
  }
  .xlg\:mt-24 {
    margin-top: 1.5rem;
  }
  .xlg\:mr-24 {
    margin-right: 1.5rem;
  }
  .xlg\:mb-24 {
    margin-bottom: 1.5rem;
  }
  .xlg\:ml-24 {
    margin-left: 1.5rem;
  }
  .xlg\:mx-24 {
    margin-left: 1.5rem;
    margin-right: 1.5rem;
  }
  .xlg\:my-24 {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
.p-30 {
  padding: 1.875rem;
}

.pt-30 {
  padding-top: 1.875rem;
}

.pr-30 {
  padding-right: 1.875rem;
}

.pb-30 {
  padding-bottom: 1.875rem;
}

.pl-30 {
  padding-left: 1.875rem;
}

.px-30 {
  padding-left: 1.875rem;
  padding-right: 1.875rem;
}

.py-30 {
  padding-top: 1.875rem;
  padding-bottom: 1.875rem;
}

.m-30 {
  margin: 1.875rem;
}

.mt-30 {
  margin-top: 1.875rem;
}

.mr-30 {
  margin-right: 1.875rem;
}

.mb-30 {
  margin-bottom: 1.875rem;
}

.ml-30 {
  margin-left: 1.875rem;
}

.mx-30 {
  margin-left: 1.875rem;
  margin-right: 1.875rem;
}

.my-30 {
  margin-top: 1.875rem;
  margin-bottom: 1.875rem;
}

@media (min-width: 353px) {
  .sm\:p-30 {
    padding: 1.875rem;
  }
  .sm\:pt-30 {
    padding-top: 1.875rem;
  }
  .sm\:pr-30 {
    padding-right: 1.875rem;
  }
  .sm\:pb-30 {
    padding-bottom: 1.875rem;
  }
  .sm\:pl-30 {
    padding-left: 1.875rem;
  }
  .sm\:px-30 {
    padding-left: 1.875rem;
    padding-right: 1.875rem;
  }
  .sm\:py-30 {
    padding-top: 1.875rem;
    padding-bottom: 1.875rem;
  }
  .sm\:m-30 {
    margin: 1.875rem;
  }
  .sm\:mt-30 {
    margin-top: 1.875rem;
  }
  .sm\:mr-30 {
    margin-right: 1.875rem;
  }
  .sm\:mb-30 {
    margin-bottom: 1.875rem;
  }
  .sm\:ml-30 {
    margin-left: 1.875rem;
  }
  .sm\:mx-30 {
    margin-left: 1.875rem;
    margin-right: 1.875rem;
  }
  .sm\:my-30 {
    margin-top: 1.875rem;
    margin-bottom: 1.875rem;
  }
}
@media (min-width: 724px) {
  .md\:p-30 {
    padding: 1.875rem;
  }
  .md\:pt-30 {
    padding-top: 1.875rem;
  }
  .md\:pr-30 {
    padding-right: 1.875rem;
  }
  .md\:pb-30 {
    padding-bottom: 1.875rem;
  }
  .md\:pl-30 {
    padding-left: 1.875rem;
  }
  .md\:px-30 {
    padding-left: 1.875rem;
    padding-right: 1.875rem;
  }
  .md\:py-30 {
    padding-top: 1.875rem;
    padding-bottom: 1.875rem;
  }
  .md\:m-30 {
    margin: 1.875rem;
  }
  .md\:mt-30 {
    margin-top: 1.875rem;
  }
  .md\:mr-30 {
    margin-right: 1.875rem;
  }
  .md\:mb-30 {
    margin-bottom: 1.875rem;
  }
  .md\:ml-30 {
    margin-left: 1.875rem;
  }
  .md\:mx-30 {
    margin-left: 1.875rem;
    margin-right: 1.875rem;
  }
  .md\:my-30 {
    margin-top: 1.875rem;
    margin-bottom: 1.875rem;
  }
}
@media (min-width: 1070px) {
  .lg\:p-30 {
    padding: 1.875rem;
  }
  .lg\:pt-30 {
    padding-top: 1.875rem;
  }
  .lg\:pr-30 {
    padding-right: 1.875rem;
  }
  .lg\:pb-30 {
    padding-bottom: 1.875rem;
  }
  .lg\:pl-30 {
    padding-left: 1.875rem;
  }
  .lg\:px-30 {
    padding-left: 1.875rem;
    padding-right: 1.875rem;
  }
  .lg\:py-30 {
    padding-top: 1.875rem;
    padding-bottom: 1.875rem;
  }
  .lg\:m-30 {
    margin: 1.875rem;
  }
  .lg\:mt-30 {
    margin-top: 1.875rem;
  }
  .lg\:mr-30 {
    margin-right: 1.875rem;
  }
  .lg\:mb-30 {
    margin-bottom: 1.875rem;
  }
  .lg\:ml-30 {
    margin-left: 1.875rem;
  }
  .lg\:mx-30 {
    margin-left: 1.875rem;
    margin-right: 1.875rem;
  }
  .lg\:my-30 {
    margin-top: 1.875rem;
    margin-bottom: 1.875rem;
  }
}
@media (min-width: 1270px) {
  .xlg\:p-30 {
    padding: 1.875rem;
  }
  .xlg\:pt-30 {
    padding-top: 1.875rem;
  }
  .xlg\:pr-30 {
    padding-right: 1.875rem;
  }
  .xlg\:pb-30 {
    padding-bottom: 1.875rem;
  }
  .xlg\:pl-30 {
    padding-left: 1.875rem;
  }
  .xlg\:px-30 {
    padding-left: 1.875rem;
    padding-right: 1.875rem;
  }
  .xlg\:py-30 {
    padding-top: 1.875rem;
    padding-bottom: 1.875rem;
  }
  .xlg\:m-30 {
    margin: 1.875rem;
  }
  .xlg\:mt-30 {
    margin-top: 1.875rem;
  }
  .xlg\:mr-30 {
    margin-right: 1.875rem;
  }
  .xlg\:mb-30 {
    margin-bottom: 1.875rem;
  }
  .xlg\:ml-30 {
    margin-left: 1.875rem;
  }
  .xlg\:mx-30 {
    margin-left: 1.875rem;
    margin-right: 1.875rem;
  }
  .xlg\:my-30 {
    margin-top: 1.875rem;
    margin-bottom: 1.875rem;
  }
}
.p-36 {
  padding: 2.25rem;
}

.pt-36 {
  padding-top: 2.25rem;
}

.pr-36 {
  padding-right: 2.25rem;
}

.pb-36 {
  padding-bottom: 2.25rem;
}

.pl-36 {
  padding-left: 2.25rem;
}

.px-36 {
  padding-left: 2.25rem;
  padding-right: 2.25rem;
}

.py-36 {
  padding-top: 2.25rem;
  padding-bottom: 2.25rem;
}

.m-36 {
  margin: 2.25rem;
}

.mt-36 {
  margin-top: 2.25rem;
}

.mr-36 {
  margin-right: 2.25rem;
}

.mb-36 {
  margin-bottom: 2.25rem;
}

.ml-36 {
  margin-left: 2.25rem;
}

.mx-36 {
  margin-left: 2.25rem;
  margin-right: 2.25rem;
}

.my-36 {
  margin-top: 2.25rem;
  margin-bottom: 2.25rem;
}

@media (min-width: 353px) {
  .sm\:p-36 {
    padding: 2.25rem;
  }
  .sm\:pt-36 {
    padding-top: 2.25rem;
  }
  .sm\:pr-36 {
    padding-right: 2.25rem;
  }
  .sm\:pb-36 {
    padding-bottom: 2.25rem;
  }
  .sm\:pl-36 {
    padding-left: 2.25rem;
  }
  .sm\:px-36 {
    padding-left: 2.25rem;
    padding-right: 2.25rem;
  }
  .sm\:py-36 {
    padding-top: 2.25rem;
    padding-bottom: 2.25rem;
  }
  .sm\:m-36 {
    margin: 2.25rem;
  }
  .sm\:mt-36 {
    margin-top: 2.25rem;
  }
  .sm\:mr-36 {
    margin-right: 2.25rem;
  }
  .sm\:mb-36 {
    margin-bottom: 2.25rem;
  }
  .sm\:ml-36 {
    margin-left: 2.25rem;
  }
  .sm\:mx-36 {
    margin-left: 2.25rem;
    margin-right: 2.25rem;
  }
  .sm\:my-36 {
    margin-top: 2.25rem;
    margin-bottom: 2.25rem;
  }
}
@media (min-width: 724px) {
  .md\:p-36 {
    padding: 2.25rem;
  }
  .md\:pt-36 {
    padding-top: 2.25rem;
  }
  .md\:pr-36 {
    padding-right: 2.25rem;
  }
  .md\:pb-36 {
    padding-bottom: 2.25rem;
  }
  .md\:pl-36 {
    padding-left: 2.25rem;
  }
  .md\:px-36 {
    padding-left: 2.25rem;
    padding-right: 2.25rem;
  }
  .md\:py-36 {
    padding-top: 2.25rem;
    padding-bottom: 2.25rem;
  }
  .md\:m-36 {
    margin: 2.25rem;
  }
  .md\:mt-36 {
    margin-top: 2.25rem;
  }
  .md\:mr-36 {
    margin-right: 2.25rem;
  }
  .md\:mb-36 {
    margin-bottom: 2.25rem;
  }
  .md\:ml-36 {
    margin-left: 2.25rem;
  }
  .md\:mx-36 {
    margin-left: 2.25rem;
    margin-right: 2.25rem;
  }
  .md\:my-36 {
    margin-top: 2.25rem;
    margin-bottom: 2.25rem;
  }
}
@media (min-width: 1070px) {
  .lg\:p-36 {
    padding: 2.25rem;
  }
  .lg\:pt-36 {
    padding-top: 2.25rem;
  }
  .lg\:pr-36 {
    padding-right: 2.25rem;
  }
  .lg\:pb-36 {
    padding-bottom: 2.25rem;
  }
  .lg\:pl-36 {
    padding-left: 2.25rem;
  }
  .lg\:px-36 {
    padding-left: 2.25rem;
    padding-right: 2.25rem;
  }
  .lg\:py-36 {
    padding-top: 2.25rem;
    padding-bottom: 2.25rem;
  }
  .lg\:m-36 {
    margin: 2.25rem;
  }
  .lg\:mt-36 {
    margin-top: 2.25rem;
  }
  .lg\:mr-36 {
    margin-right: 2.25rem;
  }
  .lg\:mb-36 {
    margin-bottom: 2.25rem;
  }
  .lg\:ml-36 {
    margin-left: 2.25rem;
  }
  .lg\:mx-36 {
    margin-left: 2.25rem;
    margin-right: 2.25rem;
  }
  .lg\:my-36 {
    margin-top: 2.25rem;
    margin-bottom: 2.25rem;
  }
}
@media (min-width: 1270px) {
  .xlg\:p-36 {
    padding: 2.25rem;
  }
  .xlg\:pt-36 {
    padding-top: 2.25rem;
  }
  .xlg\:pr-36 {
    padding-right: 2.25rem;
  }
  .xlg\:pb-36 {
    padding-bottom: 2.25rem;
  }
  .xlg\:pl-36 {
    padding-left: 2.25rem;
  }
  .xlg\:px-36 {
    padding-left: 2.25rem;
    padding-right: 2.25rem;
  }
  .xlg\:py-36 {
    padding-top: 2.25rem;
    padding-bottom: 2.25rem;
  }
  .xlg\:m-36 {
    margin: 2.25rem;
  }
  .xlg\:mt-36 {
    margin-top: 2.25rem;
  }
  .xlg\:mr-36 {
    margin-right: 2.25rem;
  }
  .xlg\:mb-36 {
    margin-bottom: 2.25rem;
  }
  .xlg\:ml-36 {
    margin-left: 2.25rem;
  }
  .xlg\:mx-36 {
    margin-left: 2.25rem;
    margin-right: 2.25rem;
  }
  .xlg\:my-36 {
    margin-top: 2.25rem;
    margin-bottom: 2.25rem;
  }
}
.p-40 {
  padding: 2.5rem;
}

.pt-40 {
  padding-top: 2.5rem;
}

.pr-40 {
  padding-right: 2.5rem;
}

.pb-40 {
  padding-bottom: 2.5rem;
}

.pl-40 {
  padding-left: 2.5rem;
}

.px-40 {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.py-40 {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.m-40 {
  margin: 2.5rem;
}

.mt-40 {
  margin-top: 2.5rem;
}

.mr-40 {
  margin-right: 2.5rem;
}

.mb-40 {
  margin-bottom: 2.5rem;
}

.ml-40 {
  margin-left: 2.5rem;
}

.mx-40 {
  margin-left: 2.5rem;
  margin-right: 2.5rem;
}

.my-40 {
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 353px) {
  .sm\:p-40 {
    padding: 2.5rem;
  }
  .sm\:pt-40 {
    padding-top: 2.5rem;
  }
  .sm\:pr-40 {
    padding-right: 2.5rem;
  }
  .sm\:pb-40 {
    padding-bottom: 2.5rem;
  }
  .sm\:pl-40 {
    padding-left: 2.5rem;
  }
  .sm\:px-40 {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
  .sm\:py-40 {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
  .sm\:m-40 {
    margin: 2.5rem;
  }
  .sm\:mt-40 {
    margin-top: 2.5rem;
  }
  .sm\:mr-40 {
    margin-right: 2.5rem;
  }
  .sm\:mb-40 {
    margin-bottom: 2.5rem;
  }
  .sm\:ml-40 {
    margin-left: 2.5rem;
  }
  .sm\:mx-40 {
    margin-left: 2.5rem;
    margin-right: 2.5rem;
  }
  .sm\:my-40 {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
  }
}
@media (min-width: 724px) {
  .md\:p-40 {
    padding: 2.5rem;
  }
  .md\:pt-40 {
    padding-top: 2.5rem;
  }
  .md\:pr-40 {
    padding-right: 2.5rem;
  }
  .md\:pb-40 {
    padding-bottom: 2.5rem;
  }
  .md\:pl-40 {
    padding-left: 2.5rem;
  }
  .md\:px-40 {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
  .md\:py-40 {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
  .md\:m-40 {
    margin: 2.5rem;
  }
  .md\:mt-40 {
    margin-top: 2.5rem;
  }
  .md\:mr-40 {
    margin-right: 2.5rem;
  }
  .md\:mb-40 {
    margin-bottom: 2.5rem;
  }
  .md\:ml-40 {
    margin-left: 2.5rem;
  }
  .md\:mx-40 {
    margin-left: 2.5rem;
    margin-right: 2.5rem;
  }
  .md\:my-40 {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
  }
}
@media (min-width: 1070px) {
  .lg\:p-40 {
    padding: 2.5rem;
  }
  .lg\:pt-40 {
    padding-top: 2.5rem;
  }
  .lg\:pr-40 {
    padding-right: 2.5rem;
  }
  .lg\:pb-40 {
    padding-bottom: 2.5rem;
  }
  .lg\:pl-40 {
    padding-left: 2.5rem;
  }
  .lg\:px-40 {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
  .lg\:py-40 {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
  .lg\:m-40 {
    margin: 2.5rem;
  }
  .lg\:mt-40 {
    margin-top: 2.5rem;
  }
  .lg\:mr-40 {
    margin-right: 2.5rem;
  }
  .lg\:mb-40 {
    margin-bottom: 2.5rem;
  }
  .lg\:ml-40 {
    margin-left: 2.5rem;
  }
  .lg\:mx-40 {
    margin-left: 2.5rem;
    margin-right: 2.5rem;
  }
  .lg\:my-40 {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
  }
}
@media (min-width: 1270px) {
  .xlg\:p-40 {
    padding: 2.5rem;
  }
  .xlg\:pt-40 {
    padding-top: 2.5rem;
  }
  .xlg\:pr-40 {
    padding-right: 2.5rem;
  }
  .xlg\:pb-40 {
    padding-bottom: 2.5rem;
  }
  .xlg\:pl-40 {
    padding-left: 2.5rem;
  }
  .xlg\:px-40 {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
  .xlg\:py-40 {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
  .xlg\:m-40 {
    margin: 2.5rem;
  }
  .xlg\:mt-40 {
    margin-top: 2.5rem;
  }
  .xlg\:mr-40 {
    margin-right: 2.5rem;
  }
  .xlg\:mb-40 {
    margin-bottom: 2.5rem;
  }
  .xlg\:ml-40 {
    margin-left: 2.5rem;
  }
  .xlg\:mx-40 {
    margin-left: 2.5rem;
    margin-right: 2.5rem;
  }
  .xlg\:my-40 {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
  }
}
.p-50 {
  padding: 3.125rem;
}

.pt-50 {
  padding-top: 3.125rem;
}

.pr-50 {
  padding-right: 3.125rem;
}

.pb-50 {
  padding-bottom: 3.125rem;
}

.pl-50 {
  padding-left: 3.125rem;
}

.px-50 {
  padding-left: 3.125rem;
  padding-right: 3.125rem;
}

.py-50 {
  padding-top: 3.125rem;
  padding-bottom: 3.125rem;
}

.m-50 {
  margin: 3.125rem;
}

.mt-50 {
  margin-top: 3.125rem;
}

.mr-50 {
  margin-right: 3.125rem;
}

.mb-50 {
  margin-bottom: 3.125rem;
}

.ml-50 {
  margin-left: 3.125rem;
}

.mx-50 {
  margin-left: 3.125rem;
  margin-right: 3.125rem;
}

.my-50 {
  margin-top: 3.125rem;
  margin-bottom: 3.125rem;
}

@media (min-width: 353px) {
  .sm\:p-50 {
    padding: 3.125rem;
  }
  .sm\:pt-50 {
    padding-top: 3.125rem;
  }
  .sm\:pr-50 {
    padding-right: 3.125rem;
  }
  .sm\:pb-50 {
    padding-bottom: 3.125rem;
  }
  .sm\:pl-50 {
    padding-left: 3.125rem;
  }
  .sm\:px-50 {
    padding-left: 3.125rem;
    padding-right: 3.125rem;
  }
  .sm\:py-50 {
    padding-top: 3.125rem;
    padding-bottom: 3.125rem;
  }
  .sm\:m-50 {
    margin: 3.125rem;
  }
  .sm\:mt-50 {
    margin-top: 3.125rem;
  }
  .sm\:mr-50 {
    margin-right: 3.125rem;
  }
  .sm\:mb-50 {
    margin-bottom: 3.125rem;
  }
  .sm\:ml-50 {
    margin-left: 3.125rem;
  }
  .sm\:mx-50 {
    margin-left: 3.125rem;
    margin-right: 3.125rem;
  }
  .sm\:my-50 {
    margin-top: 3.125rem;
    margin-bottom: 3.125rem;
  }
}
@media (min-width: 724px) {
  .md\:p-50 {
    padding: 3.125rem;
  }
  .md\:pt-50 {
    padding-top: 3.125rem;
  }
  .md\:pr-50 {
    padding-right: 3.125rem;
  }
  .md\:pb-50 {
    padding-bottom: 3.125rem;
  }
  .md\:pl-50 {
    padding-left: 3.125rem;
  }
  .md\:px-50 {
    padding-left: 3.125rem;
    padding-right: 3.125rem;
  }
  .md\:py-50 {
    padding-top: 3.125rem;
    padding-bottom: 3.125rem;
  }
  .md\:m-50 {
    margin: 3.125rem;
  }
  .md\:mt-50 {
    margin-top: 3.125rem;
  }
  .md\:mr-50 {
    margin-right: 3.125rem;
  }
  .md\:mb-50 {
    margin-bottom: 3.125rem;
  }
  .md\:ml-50 {
    margin-left: 3.125rem;
  }
  .md\:mx-50 {
    margin-left: 3.125rem;
    margin-right: 3.125rem;
  }
  .md\:my-50 {
    margin-top: 3.125rem;
    margin-bottom: 3.125rem;
  }
}
@media (min-width: 1070px) {
  .lg\:p-50 {
    padding: 3.125rem;
  }
  .lg\:pt-50 {
    padding-top: 3.125rem;
  }
  .lg\:pr-50 {
    padding-right: 3.125rem;
  }
  .lg\:pb-50 {
    padding-bottom: 3.125rem;
  }
  .lg\:pl-50 {
    padding-left: 3.125rem;
  }
  .lg\:px-50 {
    padding-left: 3.125rem;
    padding-right: 3.125rem;
  }
  .lg\:py-50 {
    padding-top: 3.125rem;
    padding-bottom: 3.125rem;
  }
  .lg\:m-50 {
    margin: 3.125rem;
  }
  .lg\:mt-50 {
    margin-top: 3.125rem;
  }
  .lg\:mr-50 {
    margin-right: 3.125rem;
  }
  .lg\:mb-50 {
    margin-bottom: 3.125rem;
  }
  .lg\:ml-50 {
    margin-left: 3.125rem;
  }
  .lg\:mx-50 {
    margin-left: 3.125rem;
    margin-right: 3.125rem;
  }
  .lg\:my-50 {
    margin-top: 3.125rem;
    margin-bottom: 3.125rem;
  }
}
@media (min-width: 1270px) {
  .xlg\:p-50 {
    padding: 3.125rem;
  }
  .xlg\:pt-50 {
    padding-top: 3.125rem;
  }
  .xlg\:pr-50 {
    padding-right: 3.125rem;
  }
  .xlg\:pb-50 {
    padding-bottom: 3.125rem;
  }
  .xlg\:pl-50 {
    padding-left: 3.125rem;
  }
  .xlg\:px-50 {
    padding-left: 3.125rem;
    padding-right: 3.125rem;
  }
  .xlg\:py-50 {
    padding-top: 3.125rem;
    padding-bottom: 3.125rem;
  }
  .xlg\:m-50 {
    margin: 3.125rem;
  }
  .xlg\:mt-50 {
    margin-top: 3.125rem;
  }
  .xlg\:mr-50 {
    margin-right: 3.125rem;
  }
  .xlg\:mb-50 {
    margin-bottom: 3.125rem;
  }
  .xlg\:ml-50 {
    margin-left: 3.125rem;
  }
  .xlg\:mx-50 {
    margin-left: 3.125rem;
    margin-right: 3.125rem;
  }
  .xlg\:my-50 {
    margin-top: 3.125rem;
    margin-bottom: 3.125rem;
  }
}
.p-70 {
  padding: 4.375rem;
}

.pt-70 {
  padding-top: 4.375rem;
}

.pr-70 {
  padding-right: 4.375rem;
}

.pb-70 {
  padding-bottom: 4.375rem;
}

.pl-70 {
  padding-left: 4.375rem;
}

.px-70 {
  padding-left: 4.375rem;
  padding-right: 4.375rem;
}

.py-70 {
  padding-top: 4.375rem;
  padding-bottom: 4.375rem;
}

.m-70 {
  margin: 4.375rem;
}

.mt-70 {
  margin-top: 4.375rem;
}

.mr-70 {
  margin-right: 4.375rem;
}

.mb-70 {
  margin-bottom: 4.375rem;
}

.ml-70 {
  margin-left: 4.375rem;
}

.mx-70 {
  margin-left: 4.375rem;
  margin-right: 4.375rem;
}

.my-70 {
  margin-top: 4.375rem;
  margin-bottom: 4.375rem;
}

@media (min-width: 353px) {
  .sm\:p-70 {
    padding: 4.375rem;
  }
  .sm\:pt-70 {
    padding-top: 4.375rem;
  }
  .sm\:pr-70 {
    padding-right: 4.375rem;
  }
  .sm\:pb-70 {
    padding-bottom: 4.375rem;
  }
  .sm\:pl-70 {
    padding-left: 4.375rem;
  }
  .sm\:px-70 {
    padding-left: 4.375rem;
    padding-right: 4.375rem;
  }
  .sm\:py-70 {
    padding-top: 4.375rem;
    padding-bottom: 4.375rem;
  }
  .sm\:m-70 {
    margin: 4.375rem;
  }
  .sm\:mt-70 {
    margin-top: 4.375rem;
  }
  .sm\:mr-70 {
    margin-right: 4.375rem;
  }
  .sm\:mb-70 {
    margin-bottom: 4.375rem;
  }
  .sm\:ml-70 {
    margin-left: 4.375rem;
  }
  .sm\:mx-70 {
    margin-left: 4.375rem;
    margin-right: 4.375rem;
  }
  .sm\:my-70 {
    margin-top: 4.375rem;
    margin-bottom: 4.375rem;
  }
}
@media (min-width: 724px) {
  .md\:p-70 {
    padding: 4.375rem;
  }
  .md\:pt-70 {
    padding-top: 4.375rem;
  }
  .md\:pr-70 {
    padding-right: 4.375rem;
  }
  .md\:pb-70 {
    padding-bottom: 4.375rem;
  }
  .md\:pl-70 {
    padding-left: 4.375rem;
  }
  .md\:px-70 {
    padding-left: 4.375rem;
    padding-right: 4.375rem;
  }
  .md\:py-70 {
    padding-top: 4.375rem;
    padding-bottom: 4.375rem;
  }
  .md\:m-70 {
    margin: 4.375rem;
  }
  .md\:mt-70 {
    margin-top: 4.375rem;
  }
  .md\:mr-70 {
    margin-right: 4.375rem;
  }
  .md\:mb-70 {
    margin-bottom: 4.375rem;
  }
  .md\:ml-70 {
    margin-left: 4.375rem;
  }
  .md\:mx-70 {
    margin-left: 4.375rem;
    margin-right: 4.375rem;
  }
  .md\:my-70 {
    margin-top: 4.375rem;
    margin-bottom: 4.375rem;
  }
}
@media (min-width: 1070px) {
  .lg\:p-70 {
    padding: 4.375rem;
  }
  .lg\:pt-70 {
    padding-top: 4.375rem;
  }
  .lg\:pr-70 {
    padding-right: 4.375rem;
  }
  .lg\:pb-70 {
    padding-bottom: 4.375rem;
  }
  .lg\:pl-70 {
    padding-left: 4.375rem;
  }
  .lg\:px-70 {
    padding-left: 4.375rem;
    padding-right: 4.375rem;
  }
  .lg\:py-70 {
    padding-top: 4.375rem;
    padding-bottom: 4.375rem;
  }
  .lg\:m-70 {
    margin: 4.375rem;
  }
  .lg\:mt-70 {
    margin-top: 4.375rem;
  }
  .lg\:mr-70 {
    margin-right: 4.375rem;
  }
  .lg\:mb-70 {
    margin-bottom: 4.375rem;
  }
  .lg\:ml-70 {
    margin-left: 4.375rem;
  }
  .lg\:mx-70 {
    margin-left: 4.375rem;
    margin-right: 4.375rem;
  }
  .lg\:my-70 {
    margin-top: 4.375rem;
    margin-bottom: 4.375rem;
  }
}
@media (min-width: 1270px) {
  .xlg\:p-70 {
    padding: 4.375rem;
  }
  .xlg\:pt-70 {
    padding-top: 4.375rem;
  }
  .xlg\:pr-70 {
    padding-right: 4.375rem;
  }
  .xlg\:pb-70 {
    padding-bottom: 4.375rem;
  }
  .xlg\:pl-70 {
    padding-left: 4.375rem;
  }
  .xlg\:px-70 {
    padding-left: 4.375rem;
    padding-right: 4.375rem;
  }
  .xlg\:py-70 {
    padding-top: 4.375rem;
    padding-bottom: 4.375rem;
  }
  .xlg\:m-70 {
    margin: 4.375rem;
  }
  .xlg\:mt-70 {
    margin-top: 4.375rem;
  }
  .xlg\:mr-70 {
    margin-right: 4.375rem;
  }
  .xlg\:mb-70 {
    margin-bottom: 4.375rem;
  }
  .xlg\:ml-70 {
    margin-left: 4.375rem;
  }
  .xlg\:mx-70 {
    margin-left: 4.375rem;
    margin-right: 4.375rem;
  }
  .xlg\:my-70 {
    margin-top: 4.375rem;
    margin-bottom: 4.375rem;
  }
}
.p-auto {
  padding: auto;
}

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

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

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

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

.px-auto {
  padding-left: auto;
  padding-right: auto;
}

.py-auto {
  padding-top: auto;
  padding-bottom: auto;
}

.m-auto {
  margin: auto;
}

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

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

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

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

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

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

@media (min-width: 353px) {
  .sm\:p-auto {
    padding: auto;
  }
  .sm\:pt-auto {
    padding-top: auto;
  }
  .sm\:pr-auto {
    padding-right: auto;
  }
  .sm\:pb-auto {
    padding-bottom: auto;
  }
  .sm\:pl-auto {
    padding-left: auto;
  }
  .sm\:px-auto {
    padding-left: auto;
    padding-right: auto;
  }
  .sm\:py-auto {
    padding-top: auto;
    padding-bottom: auto;
  }
  .sm\:m-auto {
    margin: auto;
  }
  .sm\:mt-auto {
    margin-top: auto;
  }
  .sm\:mr-auto {
    margin-right: auto;
  }
  .sm\:mb-auto {
    margin-bottom: auto;
  }
  .sm\:ml-auto {
    margin-left: auto;
  }
  .sm\:mx-auto {
    margin-left: auto;
    margin-right: auto;
  }
  .sm\:my-auto {
    margin-top: auto;
    margin-bottom: auto;
  }
}
@media (min-width: 724px) {
  .md\:p-auto {
    padding: auto;
  }
  .md\:pt-auto {
    padding-top: auto;
  }
  .md\:pr-auto {
    padding-right: auto;
  }
  .md\:pb-auto {
    padding-bottom: auto;
  }
  .md\:pl-auto {
    padding-left: auto;
  }
  .md\:px-auto {
    padding-left: auto;
    padding-right: auto;
  }
  .md\:py-auto {
    padding-top: auto;
    padding-bottom: auto;
  }
  .md\:m-auto {
    margin: auto;
  }
  .md\:mt-auto {
    margin-top: auto;
  }
  .md\:mr-auto {
    margin-right: auto;
  }
  .md\:mb-auto {
    margin-bottom: auto;
  }
  .md\:ml-auto {
    margin-left: auto;
  }
  .md\:mx-auto {
    margin-left: auto;
    margin-right: auto;
  }
  .md\:my-auto {
    margin-top: auto;
    margin-bottom: auto;
  }
}
@media (min-width: 1070px) {
  .lg\:p-auto {
    padding: auto;
  }
  .lg\:pt-auto {
    padding-top: auto;
  }
  .lg\:pr-auto {
    padding-right: auto;
  }
  .lg\:pb-auto {
    padding-bottom: auto;
  }
  .lg\:pl-auto {
    padding-left: auto;
  }
  .lg\:px-auto {
    padding-left: auto;
    padding-right: auto;
  }
  .lg\:py-auto {
    padding-top: auto;
    padding-bottom: auto;
  }
  .lg\:m-auto {
    margin: auto;
  }
  .lg\:mt-auto {
    margin-top: auto;
  }
  .lg\:mr-auto {
    margin-right: auto;
  }
  .lg\:mb-auto {
    margin-bottom: auto;
  }
  .lg\:ml-auto {
    margin-left: auto;
  }
  .lg\:mx-auto {
    margin-left: auto;
    margin-right: auto;
  }
  .lg\:my-auto {
    margin-top: auto;
    margin-bottom: auto;
  }
}
@media (min-width: 1270px) {
  .xlg\:p-auto {
    padding: auto;
  }
  .xlg\:pt-auto {
    padding-top: auto;
  }
  .xlg\:pr-auto {
    padding-right: auto;
  }
  .xlg\:pb-auto {
    padding-bottom: auto;
  }
  .xlg\:pl-auto {
    padding-left: auto;
  }
  .xlg\:px-auto {
    padding-left: auto;
    padding-right: auto;
  }
  .xlg\:py-auto {
    padding-top: auto;
    padding-bottom: auto;
  }
  .xlg\:m-auto {
    margin: auto;
  }
  .xlg\:mt-auto {
    margin-top: auto;
  }
  .xlg\:mr-auto {
    margin-right: auto;
  }
  .xlg\:mb-auto {
    margin-bottom: auto;
  }
  .xlg\:ml-auto {
    margin-left: auto;
  }
  .xlg\:mx-auto {
    margin-left: auto;
    margin-right: auto;
  }
  .xlg\:my-auto {
    margin-top: auto;
    margin-bottom: auto;
  }
}
html, body {
  font-family: Akrobat, Arial, sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

html:has(#wpadminbar) {
  margin-top: 32px !important;
}

.caret {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}

.bg-highlight {
  background-color: #fff;
  padding: 0 4px;
  color: white;
}

.text-highlight {
  padding: 0 4px;
  color: #fff;
}

.blur {
  -webkit-filter: blur(1px);
          filter: blur(1px);
}

.overflow-x-hidden {
  overflow-x: hidden;
}

.overflow-y-hidden {
  overflow-y: hidden;
}

.reveal {
  opacity: 0;
  -webkit-transform: translateY(-20px);
          transform: translateY(-20px);
  -webkit-transition: 0.9s cubic-bezier(0.5, 0, 0, 1) ease-in-out;
  transition: 0.9s cubic-bezier(0.5, 0, 0, 1) ease-in-out;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
  width: 100%;
}
.reveal.in {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}

.dev-links {
  position: fixed;
  z-index: 99999;
  right: 0;
  top: 50%;
  height: 83px;
  width: 40px;
  margin-top: -40px;
  background-color: #000;
}
.dev-links .link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  width: 40px;
  height: 40px;
}
.dev-links .link:hover {
  color: #0bbde3;
}
.dev-links .link:nth-child(1) {
  height: 43px;
  border-bottom: solid 3px #fff;
}
.dev-links .dashicons {
  width: 22px;
  height: 22px;
  font-size: 22px;
}

.header-site {
  position: sticky;
  z-index: 9;
  top: 0;
  padding: 15px 0;
  color: #ED1C24;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  height: var(--header-height);
  width: 100%;
  border-bottom: 1px solid rgba(35, 31, 32, 0.1);
  background-color: #fff;
}
@media screen and (max-width: 1110px) {
  .header-site {
    padding: 10px 0;
  }
}
.header-site .header-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.header-site .header-container .left-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}
@media screen and (max-width: 1110px) {
  .header-site .header-container .left-container {
    gap: 6px;
  }
}
.header-site .header-container .left-container .header-burger {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3px;
  padding: 6px 4px;
}
@media screen and (min-width: 1110px) {
  .header-site .header-container .left-container .header-burger {
    display: none;
  }
}
.header-site .header-container .left-container .header-burger span {
  background-color: #231F20;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 20px;
  height: 2px;
  position: relative;
}
.header-site .header-container .left-container .brand {
  width: 175px;
  height: 60px;
  color: #fff;
}
@media screen and (max-width: 1110px) {
  .header-site .header-container .left-container .brand {
    width: 140px;
    height: 50px;
  }
}
.header-site .header-container .left-container .brand svg {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header-site .header-container .right-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 764px) {
  .header-site .header-container .right-container .btn:first-child, .header-site .header-container .right-container .contact-form .contact-form-right .gform-footer .gform_button:first-child, .contact-form .contact-form-right .gform-footer .header-site .header-container .right-container .gform_button:first-child {
    display: none;
  }
}
.header-site .overlay-blur {
  position: absolute;
  top: 70px;
  left: 0;
  width: 100%;
  height: calc(100vh - 70px);
  backdrop-filter: blur(0);
  -webkit-backdrop-filter: blur(0);
  z-index: -1;
  -webkit-transition: backdrop-filter 0.3s ease, opacity 0.3s ease;
  transition: backdrop-filter 0.3s ease, opacity 0.3s ease;
  pointer-events: none;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  opacity: 0;
  background-color: rgba(35, 31, 32, 0.3);
  visibility: hidden;
  pointer-events: none;
}
.header-site.menu-open .header-container .left-container .header-burger span:nth-child(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 2px;
}
.header-site.menu-open .header-container .left-container .header-burger span:nth-child(2) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: -3px;
}
.header-site.menu-open .header-container .left-container .mega-menu {
  position: absolute;
  left: 0;
  top: calc(100% + 1px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #fff;
  width: 100%;
}
.header-site.menu-open .header-container .left-container .mega-menu .nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.header-site.menu-open .header-container .left-container .mega-menu .nav .nav-link {
  color: #231F20;
}
@media screen and (min-width: 1110px) {
  .header-site.menu-open .header-container .left-container .mega-menu .nav .nav-link:hover {
    background-color: rgba(35, 31, 32, 0.1);
  }
}
.header-site.menu-open .overlay-blur {
  opacity: 1;
  pointer-events: all;
  visibility: visible;
}

.banner-header {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  padding: 15px 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: white;
  font-size: 1rem;
  text-align: center;
  font-weight: 800;
  height: 50px;
}
@media screen and (min-width: 1110px) {
  .banner-header {
    padding: 10px 0;
  }
}
.banner-header .titre a {
  text-decoration: underline;
  color: #fff;
}

#content {
  margin-top: calc(-1 * var(--header-height));
  position: relative;
}
#content > :first-child {
  padding-top: var(--header-height);
}

@media screen and (max-width: 1110px) {
  .mega-menu {
    display: none;
  }
}
@media screen and (min-width: 1110px) {
  .mega-menu .layout-maxed {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.mega-menu .nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
}
@media screen and (max-width: 1110px) {
  .mega-menu .nav {
    gap: 0;
  }
}
.mega-menu .nav .nav-item {
  display: inline-block;
  padding: 18px 0;
  position: relative;
  overflow: visible;
}
@media screen and (max-width: 1110px) {
  .mega-menu .nav .nav-item {
    padding: 25px 0;
    border-bottom: 1px solid rgba(35, 31, 32, 0.15);
  }
}
@media screen and (min-width: 1110px) {
  .mega-menu .nav .nav-item:hover .nav-link svg {
    -webkit-transform: rotateX(180deg);
            transform: rotateX(180deg);
    color: #ED1C24;
    opacity: 1;
  }
  .mega-menu .nav .nav-item:hover .menu-container {
    pointer-events: all;
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    max-height: 300px;
  }
}
.mega-menu .nav .nav-item.is-active .menu-container {
  pointer-events: all;
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  max-height: 300px;
  margin-top: 20px;
}
.mega-menu .nav .nav-item.is-active .nav-link svg {
  color: #ED1C24;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  opacity: 1;
}
.mega-menu .nav .nav-item .nav-link {
  color: #231F20;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 800;
  font-size: 1.125rem;
  cursor: pointer;
}
@media screen and (max-width: 1110px) {
  .mega-menu .nav .nav-item .nav-link {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    font-size: 1rem;
  }
}
.mega-menu .nav .nav-item .nav-link svg {
  opacity: 0.5;
  -webkit-transition: color 0.3s ease, opacity 0.3s ease, -webkit-transform 0.6s;
  transition: color 0.3s ease, opacity 0.3s ease, -webkit-transform 0.6s;
  transition: transform 0.6s, color 0.3s ease, opacity 0.3s ease;
  transition: transform 0.6s, color 0.3s ease, opacity 0.3s ease, -webkit-transform 0.6s;
  font-size: 12px;
}
@media screen and (max-width: 1110px) {
  .mega-menu .nav .nav-item .nav-link svg {
    font-size: 15px;
  }
}
.mega-menu .nav .nav-item .menu-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  white-space: nowrap;
  pointer-events: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  gap: 15px;
  width: 100%;
  max-height: 0;
  opacity: 0;
}
@media screen and (min-width: 1110px) {
  .mega-menu .nav .nav-item .menu-container {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    gap: 0;
    position: absolute;
    top: 100%;
    border-radius: 10px;
    -webkit-box-shadow: 0px 5px 20px 0px rgba(35, 31, 32, 0.2);
            box-shadow: 0px 5px 20px 0px rgba(35, 31, 32, 0.2);
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid #fff;
    padding: 10px;
    -webkit-transform: translateY(-4px);
            transform: translateY(-4px);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
  .mega-menu .nav .nav-item .menu-container::before {
    content: "";
    position: absolute;
    display: inline-block;
    height: 0;
    width: 0;
    border-right: 8px solid transparent;
    border-bottom: 12px solid #fff;
    border-left: 8px solid transparent;
    top: -13px;
    left: 20px;
  }
  .mega-menu .nav .nav-item .menu-container .see-all {
    display: none;
  }
}
.mega-menu .nav .nav-item .menu-container .see-all {
  color: #ED1C24;
  font-size: 0.875rem;
  font-weight: 700;
  margin-top: 10px;
}
.mega-menu .nav .nav-item .menu-container .nav-link {
  -webkit-transition: opacity 0.3s ease, color 0.3s ease;
  transition: opacity 0.3s ease, color 0.3s ease;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  opacity: 0.7;
  font-weight: 700;
  padding: 0;
}
@media screen and (min-width: 1110px) {
  .mega-menu .nav .nav-item .menu-container .nav-link {
    padding: 10px;
    opacity: 0.8;
  }
}
.mega-menu .nav .nav-item .menu-container .nav-link:hover {
  color: #ED1C24;
  opacity: 1;
}
.mega-menu .sub-nav .wrap {
  margin-top: 30px;
  padding: 30px 50px;
  background-color: #fff;
}
.mega-menu .sub-nav {
  display: none;
  position: absolute;
  top: 53px;
  left: 0;
  z-index: 99999999;
  width: 100vw;
}
.mega-menu .menu-opened .sub-nav {
  display: block;
}
.mega-menu .sub-nav-item {
  display: block;
  padding: 10px;
}

.footer {
  color: #fff;
  background-image: url(../images/bg/bkg-red.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.footer .footer-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 100px;
}
@media screen and (max-width: 764px) {
  .footer .footer-top {
    margin-top: 50px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 50px;
  }
}
.footer .footer-top .footer-brand {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
.footer .footer-top .footer-brand .footer-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
}
.footer .footer-top .footer-brand .footer-logo svg {
  width: 180px;
  height: 60px;
}
@media screen and (max-width: 764px) {
  .footer .footer-top .footer-brand .footer-logo svg {
    width: 140px;
    height: 50px;
  }
}
.footer .footer-top .footer-brand .address {
  font-size: 1rem;
  line-height: 1.25rem;
  font-weight: 800;
}
@media screen and (max-width: 764px) {
  .footer .footer-top .footer-brand .address {
    font-size: 0.875rem;
    line-height: 1.125rem;
  }
}
.footer .footer-top .footer-brand .footer-social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  margin-top: 30px;
}
@media screen and (max-width: 764px) {
  .footer .footer-top .footer-brand .footer-social {
    margin-top: 20px;
  }
}
.footer .footer-top .footer-brand .footer-social .footer-social-btn {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: border 0.3s ease;
  transition: border 0.3s ease;
  border-radius: 5px;
}
.footer .footer-top .footer-brand .footer-social .footer-social-btn:hover {
  border: 1px solid white;
}
.footer .footer-top .footer-brand .footer-social .footer-social-btn svg {
  width: 25px;
  height: 25px;
  color: #fff;
}
.footer .footer-top .footer-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  gap: 120px;
  margin-right: 100px;
}
@media screen and (max-width: 1110px) {
  .footer .footer-top .footer-nav {
    margin: 0;
    gap: 60px;
  }
}
@media screen and (max-width: 1110px) and (max-width: 764px) {
  .footer .footer-top .footer-nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
  }
}
.footer .footer-top .footer-nav .footer-col {
  font-weight: 800;
}
.footer .footer-top .footer-nav .footer-col .h5, .footer .footer-top .footer-nav .footer-col .post .article-body h5, .post .article-body .footer .footer-top .footer-nav .footer-col h5, .footer .footer-top .footer-nav .footer-col .legal-page .legal-content h2, .legal-page .legal-content .footer .footer-top .footer-nav .footer-col h2 {
  margin-bottom: 25px;
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #fff;
}
@media screen and (max-width: 1110px) {
  .footer .footer-top .footer-nav .footer-col .h5, .footer .footer-top .footer-nav .footer-col .post .article-body h5, .post .article-body .footer .footer-top .footer-nav .footer-col h5, .footer .footer-top .footer-nav .footer-col .legal-page .legal-content h2, .legal-page .legal-content .footer .footer-top .footer-nav .footer-col h2 {
    margin-bottom: 15px;
    font-size: 20px;
  }
}
.footer .footer-top .footer-nav .footer-col .footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 764px) {
  .footer .footer-top .footer-nav .footer-col .footer-list {
    gap: 15px;
  }
}
.footer .footer-top .footer-nav .footer-col .footer-list .footer-link {
  font-family: Akrobat, Arial, sans-serif;
  font-size: 1.125rem;
  color: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
}
@media screen and (max-width: 1110px) {
  .footer .footer-top .footer-nav .footer-col .footer-list .footer-link {
    font-size: 1rem;
  }
}
.footer .footer-top .footer-nav .footer-col .footer-list .footer-link:hover {
  border-color: white;
}
.footer .footer-bottom {
  margin-top: 100px;
  margin-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 800;
  font-size: 0.875rem;
}
@media screen and (max-width: 764px) {
  .footer .footer-bottom {
    gap: 15px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    margin-bottom: 20px;
    margin-top: 60px;
  }
}
.footer .footer-bottom a {
  color: #fff;
}
.footer .footer-bottom .footer-legal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}
@media screen and (max-width: 764px) {
  .footer .footer-bottom .footer-legal {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
  }
}

.input.select, .input.checkbox, .input.radio, .input.file, .input.text, .input.textarea, .input.email, .input.tel, .input.number, .input.date, .input.password {
  margin-bottom: 18px;
}

.gform_wrapper.gravity-theme form .gfield_label, .input.select label, .input.checkbox label, .input.radio label, .input.file label, .input.text label, .input.textarea label, .input.email label, .input.tel label, .input.number label, .input.date label, .input.password label {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: #ED1C24;
  margin: 0 0 5px 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.gform_wrapper.gravity-theme form input[type=text],
.gform_wrapper.gravity-theme form input[type=email],
.gform_wrapper.gravity-theme form input[type=tel],
.gform_wrapper.gravity-theme form input[type=number],
.gform_wrapper.gravity-theme form textarea,
.gform_wrapper.gravity-theme form select, .input.select select, .input.file input, .input.text input, .input.textarea input, .input.email input, .input.tel input, .input.number input, .input.date input, .input.password input {
  display: block;
  width: 100%;
  padding: 18px 20px;
  font-size: 16px;
  line-height: 25px;
  border: solid 1px rgba(237, 28, 36, 0.2);
  background-color: transparent;
  border-radius: 5px;
  color: #ED1C24;
  font-family: Akrobat, Arial, sans-serif;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.gform_wrapper.gravity-theme form input[type=text]::-webkit-input-placeholder, .gform_wrapper.gravity-theme form input[type=email]::-webkit-input-placeholder, .gform_wrapper.gravity-theme form input[type=tel]::-webkit-input-placeholder, .gform_wrapper.gravity-theme form input[type=number]::-webkit-input-placeholder, .gform_wrapper.gravity-theme form textarea::-webkit-input-placeholder, .gform_wrapper.gravity-theme form select::-webkit-input-placeholder, .input.select select::-webkit-input-placeholder, .input.file input::-webkit-input-placeholder, .input.text input::-webkit-input-placeholder, .input.textarea input::-webkit-input-placeholder, .input.email input::-webkit-input-placeholder, .input.tel input::-webkit-input-placeholder, .input.number input::-webkit-input-placeholder, .input.date input::-webkit-input-placeholder, .input.password input::-webkit-input-placeholder {
  color: rgba(237, 28, 36, 0.5);
}
.gform_wrapper.gravity-theme form input[type=text]::-moz-placeholder, .gform_wrapper.gravity-theme form input[type=email]::-moz-placeholder, .gform_wrapper.gravity-theme form input[type=tel]::-moz-placeholder, .gform_wrapper.gravity-theme form input[type=number]::-moz-placeholder, .gform_wrapper.gravity-theme form textarea::-moz-placeholder, .gform_wrapper.gravity-theme form select::-moz-placeholder, .input.select select::-moz-placeholder, .input.file input::-moz-placeholder, .input.text input::-moz-placeholder, .input.textarea input::-moz-placeholder, .input.email input::-moz-placeholder, .input.tel input::-moz-placeholder, .input.number input::-moz-placeholder, .input.date input::-moz-placeholder, .input.password input::-moz-placeholder {
  color: rgba(237, 28, 36, 0.5);
}
.gform_wrapper.gravity-theme form input[type=text]:-ms-input-placeholder, .gform_wrapper.gravity-theme form input[type=email]:-ms-input-placeholder, .gform_wrapper.gravity-theme form input[type=tel]:-ms-input-placeholder, .gform_wrapper.gravity-theme form input[type=number]:-ms-input-placeholder, .gform_wrapper.gravity-theme form textarea:-ms-input-placeholder, .gform_wrapper.gravity-theme form select:-ms-input-placeholder, .input.select select:-ms-input-placeholder, .input.file input:-ms-input-placeholder, .input.text input:-ms-input-placeholder, .input.textarea input:-ms-input-placeholder, .input.email input:-ms-input-placeholder, .input.tel input:-ms-input-placeholder, .input.number input:-ms-input-placeholder, .input.date input:-ms-input-placeholder, .input.password input:-ms-input-placeholder {
  color: rgba(237, 28, 36, 0.5);
}
.gform_wrapper.gravity-theme form input[type=text]::-ms-input-placeholder, .gform_wrapper.gravity-theme form input[type=email]::-ms-input-placeholder, .gform_wrapper.gravity-theme form input[type=tel]::-ms-input-placeholder, .gform_wrapper.gravity-theme form input[type=number]::-ms-input-placeholder, .gform_wrapper.gravity-theme form textarea::-ms-input-placeholder, .gform_wrapper.gravity-theme form select::-ms-input-placeholder, .input.select select::-ms-input-placeholder, .input.file input::-ms-input-placeholder, .input.text input::-ms-input-placeholder, .input.textarea input::-ms-input-placeholder, .input.email input::-ms-input-placeholder, .input.tel input::-ms-input-placeholder, .input.number input::-ms-input-placeholder, .input.date input::-ms-input-placeholder, .input.password input::-ms-input-placeholder {
  color: rgba(237, 28, 36, 0.5);
}
.gform_wrapper.gravity-theme form input[type=text]::placeholder,
.gform_wrapper.gravity-theme form input[type=email]::placeholder,
.gform_wrapper.gravity-theme form input[type=tel]::placeholder,
.gform_wrapper.gravity-theme form input[type=number]::placeholder,
.gform_wrapper.gravity-theme form textarea::placeholder,
.gform_wrapper.gravity-theme form select::placeholder, .input.select select::placeholder, .input.file input::placeholder, .input.text input::placeholder, .input.textarea input::placeholder, .input.email input::placeholder, .input.tel input::placeholder, .input.number input::placeholder, .input.date input::placeholder, .input.password input::placeholder {
  color: rgba(237, 28, 36, 0.5);
}

.gform_wrapper.gravity-theme form select, .input.select select {
  background-image: url(../img/icon/caret_blue.png);
  background-repeat: no-repeat;
  background-position: top 50% right 15px;
  background-size: 13px;
}

.input.file input:focus-visible, .input.text input:focus-visible, .input.textarea input:focus-visible, .input.email input:focus-visible, .input.tel input:focus-visible, .input.number input:focus-visible, .input.date input:focus-visible, .input.password input:focus-visible {
  outline: none;
}
.input.file input::-webkit-input-placeholder, .input.text input::-webkit-input-placeholder, .input.textarea input::-webkit-input-placeholder, .input.email input::-webkit-input-placeholder, .input.tel input::-webkit-input-placeholder, .input.number input::-webkit-input-placeholder, .input.date input::-webkit-input-placeholder, .input.password input::-webkit-input-placeholder {
  color: #B9B9B9;
}
.input.file input::-moz-placeholder, .input.text input::-moz-placeholder, .input.textarea input::-moz-placeholder, .input.email input::-moz-placeholder, .input.tel input::-moz-placeholder, .input.number input::-moz-placeholder, .input.date input::-moz-placeholder, .input.password input::-moz-placeholder {
  color: #B9B9B9;
}
.input.file input:-ms-input-placeholder, .input.text input:-ms-input-placeholder, .input.textarea input:-ms-input-placeholder, .input.email input:-ms-input-placeholder, .input.tel input:-ms-input-placeholder, .input.number input:-ms-input-placeholder, .input.date input:-ms-input-placeholder, .input.password input:-ms-input-placeholder {
  color: #B9B9B9;
}
.input.file input::-ms-input-placeholder, .input.text input::-ms-input-placeholder, .input.textarea input::-ms-input-placeholder, .input.email input::-ms-input-placeholder, .input.tel input::-ms-input-placeholder, .input.number input::-ms-input-placeholder, .input.date input::-ms-input-placeholder, .input.password input::-ms-input-placeholder {
  color: #B9B9B9;
}
.input.file input::placeholder, .input.text input::placeholder, .input.textarea input::placeholder, .input.email input::placeholder, .input.tel input::placeholder, .input.number input::placeholder, .input.date input::placeholder, .input.password input::placeholder {
  color: #B9B9B9;
}
.input.radio {
  accent-color: chocolate;
}
.input.radio input {
  margin-right: 10px;
}
.input.radio .radio-group {
  display: inline-block;
  margin-right: 20px;
}
.input.checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: Akrobat, Arial, sans-serif;
}
.input.checkbox label {
  padding-left: 38px;
}
.input.checkbox input {
  margin-right: 10px;
  margin-left: -36px;
  top: 6px;
  position: relative;
}
.input.select select option[value=""] {
  display: none;
}
.input.required > label:after {
  content: "*";
  padding-left: 6px;
  font-size: 15px;
}
.input.error label {
  color: #ED1C24;
}
.input.error input {
  border-color: #ED1C24;
}

.error-message {
  color: #ED1C24;
  font-size: 14px;
}

.gform_heading {
  display: none;
}

.gform_wrapper.gravity-theme form .gform_fields {
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
}
.gform_wrapper.gravity-theme form select,
.gform_wrapper.gravity-theme form textarea,
.gform_wrapper.gravity-theme form input,
.gform_wrapper.gravity-theme form ul,
.gform_wrapper.gravity-theme form li {
  outline: none !important;
}
.gform_wrapper.gravity-theme form select:focus-visible,
.gform_wrapper.gravity-theme form textarea:focus-visible,
.gform_wrapper.gravity-theme form input:focus-visible,
.gform_wrapper.gravity-theme form ul:focus-visible,
.gform_wrapper.gravity-theme form li:focus-visible {
  outline: none !important;
}
.gform_wrapper.gravity-theme form textarea {
  resize: none;
}
.gform_wrapper.gravity-theme form .ginput_container_select {
  position: relative;
}
.gform_wrapper.gravity-theme form .ginput_container_select:after {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12.226' height='7.017' viewBox='0 0 12.226 7.017'%3E%3Cpath id='Tracé_28153' data-name='Tracé 28153' d='M11.137,15.013a.877.877,0,0,1-.622-.254L5.254,9.5A.88.88,0,0,1,6.5,8.254L11.137,12.9l4.638-4.638A.877.877,0,0,1,17.011,9.5l-5.26,5.26a.877.877,0,0,1-.614.254Z' transform='translate(-4.996 -7.996)' fill='rgba(31,39,73,0.3)'/%3E%3C/svg%3E");
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: inline-block;
  width: 15px;
  height: 20px;
  fill: currentColor;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.gform_wrapper.gravity-theme form .ginput_container_select:has(select:focus):after {
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}
.gform_wrapper.gravity-theme form select {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
}
.gform_wrapper.gravity-theme form input[type=checkbox] {
  cursor: pointer;
}
.gform_wrapper.gravity-theme form input::-webkit-outer-spin-button,
.gform_wrapper.gravity-theme form input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.gform_wrapper.gravity-theme form input[type=number] {
  -moz-appearance: textfield;
}
.gform_wrapper.gravity-theme form input[type=submit] {
  width: 100%;
  background-color: rgba(237, 28, 36, 0.05);
  border-radius: 5px;
  color: rgba(237, 28, 36, 0.5);
  white-space: break-spaces;
  font-size: 16px;
  font-weight: 400;
  white-space: nowrap;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.gform_wrapper.gravity-theme form input[type=submit]:hover {
  background-color: rgba(237, 28, 36, 0.1);
  color: #ED1C24;
}
.gform_wrapper.gravity-theme form input[type=submit].active {
  color: #ED1C24;
}
.gform_wrapper.gravity-theme form .gfield:has(input:not([type=radio], [type=checkbox]):focus) input,
.gform_wrapper.gravity-theme form .gfield:has(input:not([type=radio], [type=checkbox]):focus) textarea,
.gform_wrapper.gravity-theme form .gfield:has(textarea:focus) input,
.gform_wrapper.gravity-theme form .gfield:has(textarea:focus) textarea {
  border-color: #fff;
}
.gform_wrapper.gravity-theme form .gfield:has(input:not([type=radio], [type=checkbox]):focus) label,
.gform_wrapper.gravity-theme form .gfield:has(textarea:focus) label {
  color: #fff;
}
.gform_wrapper.gravity-theme form .gfield:has(input[type=radio]) label {
  font-size: 16px;
  font-weight: 400;
}
.gform_wrapper.gravity-theme form .gfield:has(input[type=radio]) input {
  accent-color: chocolate;
  width: 27px;
  height: 27px;
  margin-right: 15px;
}
.gform_wrapper.gravity-theme form .gfield--type-consent legend {
  display: none;
}
.gform_wrapper.gravity-theme form .gfield--type-consent .ginput_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 15px;
}
.gform_wrapper.gravity-theme form .gfield--type-consent .ginput_container label {
  font-size: 14px;
  font-weight: 400;
  color: #ED1C24;
}
.gform_wrapper.gravity-theme form .gfield--type-consent .ginput_container label a {
  text-decoration: underline;
  color: #ED1C24;
}
.gform_wrapper.gravity-theme form .gfield--type-consent .ginput_container input {
  accent-color: chocolate;
}
.gform_wrapper.gravity-theme form .ginput_container_number .gfield_description {
  display: none;
}
.gform_wrapper.gravity-theme form .gform_footer {
  margin: 0;
  padding: 0;
}

.info-required {
  font-size: 12px;
  font-weight: 400;
  color: rgba(237, 28, 36, 0.5);
  margin-bottom: 10px;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}

.confirmation-form {
  margin: 100px 0;
  gap: 10px;
  text-align: start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.confirmation-form a {
  margin-top: 10px;
}
@media screen and (min-width: 764px) {
  .confirmation-form {
    width: 50%;
    margin: 100px auto 200px;
    gap: 20px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
  }
}

.breadcrumbs {
  padding: 30px 0 40px;
  font-weight: 800;
}
@media (max-width: 1110px) {
  .breadcrumbs {
    padding: 20px 0;
  }
}
.breadcrumbs a, .breadcrumbs span {
  color: rgba(35, 31, 32, 0.7);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.breadcrumbs span:nth-last-child(2), .breadcrumbs span:nth-last-child(1) {
  color: #ED1C24;
}
.breadcrumbs span:nth-last-child(2).separator, .breadcrumbs span:nth-last-child(1).separator {
  background-color: red;
}
.breadcrumbs .separator {
  display: inline-block;
  width: 18px;
  height: 18px;
  margin: 0 7px 0 5px;
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-mask-image: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><g><path d="M12.5 16.6443C12.2311 16.6443 11.9623 16.5448 11.7574 16.3462L5.30771 10.0938C4.89743 9.69606 4.89743 9.05121 5.30771 8.65364C5.71783 8.25608 6.3829 8.25608 6.79322 8.65364L12.5 14.1861L18.2068 8.65384C18.617 8.25627 19.2821 8.25627 19.6921 8.65384C20.1026 9.0514 20.1026 9.69625 19.6921 10.094L13.2426 16.3464C13.0375 16.545 12.7687 16.6443 12.5 16.6443Z"/></g></svg>');
          mask-image: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><g><path d="M12.5 16.6443C12.2311 16.6443 11.9623 16.5448 11.7574 16.3462L5.30771 10.0938C4.89743 9.69606 4.89743 9.05121 5.30771 8.65364C5.71783 8.25608 6.3829 8.25608 6.79322 8.65364L12.5 14.1861L18.2068 8.65384C18.617 8.25627 19.2821 8.25627 19.6921 8.65384C20.1026 9.0514 20.1026 9.69625 19.6921 10.094L13.2426 16.3464C13.0375 16.545 12.7687 16.6443 12.5 16.6443Z"/></g></svg>');
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  background-color: rgba(35, 31, 32, 0.7);
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  pointer-events: none;
  vertical-align: middle;
  color: transparent;
}
.breadcrumbs .separator:has(+ .last) {
  display: inline-block;
}

.btn, .contact-form .contact-form-right .gform-footer .gform_button,
.button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.5rem 1rem;
  gap: 8px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transition: 0.25s;
  transition: 0.25s;
  -webkit-transition-property: background-color, color, border, -webkit-box-shadow;
  transition-property: background-color, color, border, -webkit-box-shadow;
  transition-property: box-shadow, background-color, color, border;
  transition-property: box-shadow, background-color, color, border, -webkit-box-shadow;
  text-decoration: none;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  padding: 18px 15px;
  border-radius: 5px;
  font-size: 1.125rem;
  font-weight: 800;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}
@media screen and (max-width: 1110px) {
  .btn, .contact-form .contact-form-right .gform-footer .gform_button,
  .button {
    font-size: 0.875rem;
    padding: 16px 12px;
  }
}

.btn:focus, .contact-form .contact-form-right .gform-footer .gform_button:focus,
.button:focus {
  -webkit-tap-highlight-color: transparent;
}

.btn-small,
.button-small {
  padding: 0.5rem;
  font-size: 0.8em;
}
.btn-big,
.button-big {
  padding: 1rem 1rem;
  font-size: 1.4em;
}
.btn-block,
.button-block {
  width: 100% !important;
  display: block;
}
.btn-unstyled,
.button-unstyled {
  padding: 0;
  border: none;
  text-align: left;
  background: none;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.btn-unstyled:focus,
.button-unstyled:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}

.btn-primary {
  color: #fff;
  background-color: #ED1C24;
}
.btn-primary:focus, .btn-primary:active, .btn-primary:hover {
  background-color: rgb(226.6293877551, 17.9706122449, 25.9575510204);
}

.btn-secondary {
  color: #ED1C24;
  background-color: #fff;
}
.btn-secondary:focus, .btn-secondary:active, .btn-secondary:hover {
  background-color: rgb(244.8, 244.8, 244.8);
}

.btn-success {
  color: #ED1C24;
  background-color: #7fbf69;
}
.btn-success:focus, .btn-success:active, .btn-success:hover {
  background-color: rgb(114.7981308411, 184.8990654206, 90.7009345794);
}

.btn-danger {
  color: #fff;
  background-color: #ED1C24;
}
.btn-danger:focus, .btn-danger:active, .btn-danger:hover {
  background-color: rgb(226.6293877551, 17.9706122449, 25.9575510204);
}

.btn-warning {
  color: #ED1C24;
  background-color: #F49A54;
}
.btn-warning:focus, .btn-warning:active, .btn-warning:hover {
  background-color: rgb(242.767032967, 142.6791208791, 64.832967033);
}

.btn-info {
  color: #fff;
  background-color: #17a2b8;
}
.btn-info:focus, .btn-info:active, .btn-info:hover {
  background-color: rgb(20.7333333333, 146.0347826087, 165.8666666667);
}

.btn-gray {
  color: #ED1C24;
  background-color: #F0EFEF;
}
.btn-gray:focus, .btn-gray:active, .btn-gray:hover {
  background-color: rgb(230.1290322581, 228.4709677419, 228.4709677419);
}

.btn-white {
  color: #ED1C24;
  background-color: #fff;
}
.btn-white:focus, .btn-white:active, .btn-white:hover {
  background-color: rgb(244.8, 244.8, 244.8);
}

.btn-dark {
  color: #fff;
  background-color: #1F1F26;
}
.btn-dark:focus, .btn-dark:active, .btn-dark:hover {
  background-color: rgb(21.8347826087, 21.8347826087, 26.7652173913);
}

.btn-light {
  color: #ED1C24;
  background-color: #f4f4f6;
}
.btn-light:focus, .btn-light:active, .btn-light:hover {
  background-color: rgb(232.78, 232.78, 236.82);
}

.btn-text {
  color: #ED1C24;
  background-color: #fff;
}
.btn-text:focus, .btn-text:active, .btn-text:hover {
  background-color: rgb(244.8, 244.8, 244.8);
}

.btn-blue {
  color: #fff;
  background-color: #323c65;
}
.btn-blue:focus, .btn-blue:active, .btn-blue:hover {
  background-color: rgb(43.2450331126, 51.8940397351, 87.3549668874);
}

.btn-primary {
  background-color: #ED1C24;
  color: #fff;
  border: 1px solid #ED1C24;
}
.btn-primary:hover {
  color: #fff;
}

.btn-secondary {
  color: #231F20;
}
.btn-secondary.border {
  border: 1px solid rgba(35, 31, 32, 0.15);
}

.btn-border {
  background-color: transparent;
  color: #fff;
  border: 1px solid #fff;
}
.btn-border:hover {
  background-color: #fff;
  color: #231F20;
  border: 1px solid #fff;
}

.icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  stroke-width: 0;
  stroke: currentColor;
  fill: currentColor;
}

dialog.modal {
  border: 0;
  border-radius: 20px;
  max-width: 600px;
  width: 100%;
  padding: 0;
}
dialog.modal .modal-header {
  border-bottom: solid 1px rgba(237, 28, 36, 0.1);
  padding: 30px 40px 31px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
dialog.modal .modal-header .btn, dialog.modal .modal-header .contact-form .contact-form-right .gform-footer .gform_button, .contact-form .contact-form-right .gform-footer dialog.modal .modal-header .gform_button {
  background-color: rgba(237, 28, 36, 0.1);
  font-size: 16px;
  gap: 5px;
}
dialog.modal .modal-content {
  padding: 40px;
}
dialog.modal .modal-content .description {
  margin-bottom: 50px;
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  color: rgba(237, 28, 36, 0.7);
}
dialog.modal::-ms-backdrop {
  background-color: rgba(237, 28, 36, 0.3);
  backdrop-filter: blur(7px);
}
dialog.modal::backdrop {
  background-color: rgba(237, 28, 36, 0.3);
  backdrop-filter: blur(7px);
}

body:has(dialog[open]) {
  overflow: hidden;
}

.tac {
  text-align: center;
}

.tar {
  text-align: right;
}

.text-primary {
  color: #ED1C24 !important;
}

.text-secondary {
  color: #fff !important;
}

.text-success {
  color: #7fbf69 !important;
}

.text-danger {
  color: #ED1C24 !important;
}

.text-warning {
  color: #F49A54 !important;
}

.text-info {
  color: #17a2b8 !important;
}

.text-gray {
  color: #F0EFEF !important;
}

.text-white {
  color: #fff !important;
}

.text-dark {
  color: #1F1F26 !important;
}

.text-light {
  color: #f4f4f6 !important;
}

.text-text {
  color: #fff !important;
}

.text-blue {
  color: #323c65 !important;
}

.weight-light {
  font-weight: 200 !important;
}

.weight-book {
  font-weight: 300 !important;
}

.weight-regular {
  font-weight: 400 !important;
}

.weight-medium {
  font-weight: 500 !important;
}

.weight-semibold {
  font-weight: 600 !important;
}

.weight-bold {
  font-weight: 700 !important;
}

@font-face {
  font-family: "Akrobat";
  src: url("../fonts/akrobat/Akrobat-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Akrobat";
  src: url("../fonts/akrobat/Akrobat-SemiBold.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Akrobat";
  src: url("../fonts/akrobat/Akrobat-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Akrobat";
  src: url("../fonts/akrobat/Akrobat-ExtraBold.otf") format("opentype");
  font-weight: 800;
  font-style: normal;
}
.title-30 {
  font-size: 30px;
  line-height: 40px;
  font-weight: 600;
  padding: 30px 0;
  margin: 0;
}

.title-40 {
  font-size: 40px;
  line-height: 50px;
  font-weight: 600;
  padding: 30px 0;
  margin: 0;
}

.title-50, .page-title {
  font-size: 50px;
  line-height: 60px;
  font-weight: 600;
  padding: 30px 0;
  margin: 0;
}

.title-60 {
  font-size: 60px;
  line-height: 70px;
  font-weight: 600;
  padding: 30px 0;
  margin: 0;
}

.h1 {
  font-family: Akrobat, Arial, sans-serif;
  font-weight: 800;
  font-size: 3.438rem;
  line-height: 3.75rem;
}
@media screen and (max-width: 1110px) {
  .h1 {
    font-size: 1.875rem;
    line-height: 2.188rem;
  }
}

.h2 {
  font-family: Akrobat, Arial, sans-serif;
  font-weight: 800;
  font-size: 2.813rem;
  line-height: 3.125rem;
}
@media screen and (max-width: 1110px) {
  .h2 {
    font-size: 1.875rem;
    line-height: 2.188rem;
  }
}

.h3, .marquee-section .marquee-row .track .marquee-title {
  font-family: Akrobat, Arial, sans-serif;
  font-size: 2.188rem;
  font-weight: 800;
}
@media screen and (max-width: 1110px) {
  .h3, .marquee-section .marquee-row .track .marquee-title {
    font-size: 1.875rem;
    line-height: 2.188rem;
  }
}

.h4 {
  font-family: Akrobat, Arial, sans-serif;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.625rem;
}

.h5, .post .article-body h5, .legal-page .legal-content h2 {
  font-weight: 800;
  font-size: 1.438rem;
  line-height: 1.875rem;
}
@media screen and (max-width: 1110px) {
  .h5-mobile, .post .article-body h5 {
    font-size: 1.125rem;
    line-height: 1.25rem;
  }
}

.p, .post .article-body p {
  font-size: 1.125rem;
  line-height: 1.438rem;
  font-weight: 600;
  color: rgba(35, 31, 32, 0.7);
}
@media screen and (max-width: 1110px) {
  .p, .post .article-body p {
    font-size: 0.875rem;
    line-height: 1.125rem;
  }
}

.well {
  padding: 40px;
  border-radius: 20px;
  background-color: #fff;
  border: 1px solid rgba(31, 39, 73, 0.1019607843);
}

.well-primary {
  background-color: #ED1C24;
  color: #fff;
  border: 1px solid rgb(221.9040816327, 17.5959183673, 25.4163265306);
}

.well-secondary {
  background-color: #fff;
  color: #ED1C24;
  border: 1px solid rgb(242.25, 242.25, 242.25);
}

.well-success {
  background-color: #7fbf69;
  color: #ED1C24;
  border: 1px solid rgb(111.7476635514, 183.3738317757, 87.1261682243);
}

.well-danger {
  background-color: #ED1C24;
  color: #fff;
  border: 1px solid rgb(221.9040816327, 17.5959183673, 25.4163265306);
}

.well-warning {
  background-color: #F49A54;
  color: #ED1C24;
  border: 1px solid rgb(242.4587912088, 139.8489010989, 60.0412087912);
}

.well-info {
  background-color: #17a2b8;
  color: #fff;
  border: 1px solid rgb(20.1666666667, 142.0434782609, 161.3333333333);
}

.well-gray {
  background-color: #F0EFEF;
  color: #ED1C24;
  border: 1px solid rgb(227.6612903226, 225.8387096774, 225.8387096774);
}

.well-white {
  background-color: #fff;
  color: #ED1C24;
  border: 1px solid rgb(242.25, 242.25, 242.25);
}

.well-dark {
  background-color: #1F1F26;
  color: #fff;
  border: 1px solid rgb(19.5434782609, 19.5434782609, 23.9565217391);
}

.well-light {
  background-color: #f4f4f6;
  color: #ED1C24;
  border: 1px solid rgb(229.975, 229.975, 234.525);
}

.well-text {
  background-color: #fff;
  color: #ED1C24;
  border: 1px solid rgb(242.25, 242.25, 242.25);
}

.well-blue {
  background-color: #323c65;
  color: #fff;
  border: 1px solid rgb(41.5562913907, 49.8675496689, 83.9437086093);
}

.bg-primary {
  background-color: #ED1C24;
  color: #fff;
}

.bg-secondary {
  background-color: #fff;
  color: #ED1C24;
}

.bg-success {
  background-color: #7fbf69;
  color: #ED1C24;
}

.bg-danger {
  background-color: #ED1C24;
  color: #fff;
}

.bg-warning {
  background-color: #F49A54;
  color: #ED1C24;
}

.bg-info {
  background-color: #17a2b8;
  color: #fff;
}

.bg-gray {
  background-color: #F0EFEF;
  color: #ED1C24;
}

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

.bg-dark {
  background-color: #1F1F26;
  color: #fff;
}

.bg-light {
  background-color: #f4f4f6;
  color: #ED1C24;
}

.bg-text {
  background-color: #fff;
  color: #ED1C24;
}

.bg-blue {
  background-color: #323c65;
  color: #fff;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(35, 31, 32, 0.3);
  backdrop-filter: blur(4px);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 10;
}

.modal-panel {
  position: fixed;
  right: 0;
  top: 0;
  height: 100%;
  width: 660px;
  background: #fff;
  padding: 30px;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.35s ease;
  transition: -webkit-transform 0.35s ease;
  transition: transform 0.35s ease;
  transition: transform 0.35s ease, -webkit-transform 0.35s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  z-index: 11;
}
@media screen and (max-width: 1110px) {
  .modal-panel {
    width: 95%;
    padding: 25px 20px;
    max-width: 610px;
  }
}
.modal-panel .top-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 30px;
}
.modal-panel .top-content .title {
  font-size: 1.875rem;
  line-height: 2.188rem;
  font-weight: 800;
}
@media screen and (max-width: 1110px) {
  .modal-panel .top-content .title {
    font-size: 1.563rem;
    line-height: 1.875rem;
    letter-spacing: -0.5px;
  }
}
.modal-panel .top-content button {
  border: 1px solid rgba(35, 31, 32, 0.15);
  width: 50px;
  height: 50px;
  display: -ms-grid;
  display: grid;
  place-items: center;
  border-radius: 50%;
  cursor: pointer;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 1110px) {
  .modal-panel .top-content button {
    width: 40px;
    height: 40px;
  }
}
.modal-panel .top-content button svg {
  width: 17px;
  height: 17px;
  fill: #231F20;
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  border-radius: 10px;
  border: 1px solid rgba(35, 31, 32, 0.15);
  padding: 10px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 60px auto 0;
  background-color: #fff;
}
@media screen and (max-width: 1110px) {
  .pagination {
    margin: 40px auto 0;
  }
}
.pagination .btn-pagination a, .pagination .btn-pagination button {
  width: 50px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 5px;
  cursor: pointer;
}
.pagination .btn-pagination a:hover, .pagination .btn-pagination button:hover {
  background-color: rgba(35, 31, 32, 0.1);
}
.pagination .btn-pagination a svg, .pagination .btn-pagination button svg {
  font-size: 15px;
}
.pagination .btn-pagination.disabled a:hover, .pagination .btn-pagination.disabled button:hover {
  background-color: rgba(35, 31, 32, 0.05);
}
.pagination .prev {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.pagination .next {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.pagination .pages {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
}
.pagination .pages .current .page-number {
  border: solid 1px #ED1C24;
  background-color: #ED1C24;
  color: #fff;
}
.pagination .pages .current .page-number:hover {
  color: #fff;
}
.pagination .pages .page-number {
  color: rgba(35, 31, 32, 0.5);
  font-size: 1.125rem;
  width: 50px;
  height: 50px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 700;
  border-radius: 5px;
  border: solid 1px transparent;
}
.pagination .pages .page-number:hover {
  border: solid 1px rgba(35, 31, 32, 0.15);
  color: #ED1C24;
}

.nav-swipe {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  pointer-events: none;
}
.nav-swipe .swipe-button {
  width: 50px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 5px;
  background-color: #ED1C24;
  border: 1px solid #ED1C24;
  pointer-events: all;
}
@media screen and (max-width: 1110px) {
  .nav-swipe .swipe-button {
    width: 40px;
    height: 40px;
  }
}
.nav-swipe .swipe-button:hover {
  background-color: rgba(237, 28, 36, 0.9);
}
.nav-swipe .swipe-button.arrow-left {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.nav-swipe .swipe-button.gamme {
  background-color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0);
  -webkit-transform: rotate(-90deg) translateY(calc(100% + 10px));
          transform: rotate(-90deg) translateY(calc(100% + 10px));
}
.nav-swipe .swipe-button.gamme:hover {
  background-color: white;
  border: 1px solid white;
}
.nav-swipe .swipe-button.gamme.arrow-left {
  -webkit-transform: rotate(90deg) translateY(calc(100% + 10px));
          transform: rotate(90deg) translateY(calc(100% + 10px));
}
.nav-swipe .swipe-button.gamme svg {
  fill: #ED1C24;
  font-size: 20px;
}
.nav-swipe .swipe-button svg {
  font-size: 16px;
  fill: #fff;
}
@media screen and (max-width: 1110px) {
  .nav-swipe .swipe-button svg {
    font-size: 12px;
  }
}

.badge-category, .badge-product {
  z-index: 1;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.badge-category span, .badge-product span {
  padding: 4px 35px 4px 30px;
  font-weight: 800;
  font-size: 0.875rem;
  line-height: normal;
  height: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-transform: uppercase;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  white-space: nowrap;
  clip-path: polygon(0 0, 100% 0, calc(100% - 25px) 100%, 0% 100%);
}
.badge-category.grey span, .badge-product.grey span {
  background-color: #C6C6C6;
  color: #231F20;
}
.badge-category.blue span, .badge-product.blue span {
  background-color: #56A8DD;
  color: #fff;
}
.badge-category.red span, .badge-product.red span {
  background-color: #E40524;
  color: #fff;
}
.badge-category.green span, .badge-product.green span {
  background-color: #63B450;
  color: #fff;
}
.badge-category.gold span, .badge-product.gold span {
  background-color: #BDA06C;
  color: #fff;
}
.badge-category.yellow span, .badge-product.yellow span {
  background-color: #F5AB22;
  color: #fff;
}
.badge-category.orange span, .badge-product.orange span {
  background-color: #EE7601;
  color: #fff;
}
.badge-category.brown span, .badge-product.brown span {
  background-color: #9B5A1F;
  color: #fff;
}
.badge-category.purple span, .badge-product.purple span {
  background-color: #565CAA;
  color: #fff;
}

.badge-category span {
  padding: 4px 35px 4px 30px;
  clip-path: polygon(0 0, 100% 0, calc(100% - 25px) 100%, 0% 100%);
}

.badge-product span {
  padding: 5px 30px;
  clip-path: polygon(0 0, 100% 0, calc(100% - 25px) 100%, 25px 100%);
}

.st-accordion__item {
  padding: 10px 0;
}

.st-accordion__content {
  display: none;
}

.st-accordion__content--visible {
  display: block;
}

.caret {
  position: relative;
  display: inline-block;
  width: 8px;
  height: 2px;
}
.caret::before, .caret::after {
  content: "";
  position: absolute;
  border-radius: 9999px;
  background-color: #ED1C24;
  width: 8px;
  height: 2px;
  top: calc(50% - 1px);
  right: 0;
  -webkit-transform-origin: calc(100% - 1px) 50%;
          transform-origin: calc(100% - 1px) 50%;
}
.caret::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.caret::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.caret-bottom {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.caret-start {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.card-post:hover .img-wrapper img {
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
}
.card-post .img-wrapper {
  overflow: hidden;
  height: 180px;
  border-radius: 10px;
  margin-bottom: 20px;
}
.card-post .img-wrapper img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  display: block;
  height: 100%;
  aspect-ratio: 16/9;
  -o-object-position: center;
     object-position: center;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  will-change: transform;
  image-rendering: -webkit-optimize-contrast;
}
.card-post .post-date {
  color: #ED1C24;
  font-weight: 700;
  font-size: 1rem;
  margin: 20px 0 0;
}
.card-post .post-title {
  margin-right: 30px;
}

.card-category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 450px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 1110px) {
  .card-category {
    height: 400px;
  }
}
.card-category:hover .btn, .card-category:hover .contact-form .contact-form-right .gform-footer .gform_button, .contact-form .contact-form-right .gform-footer .card-category:hover .gform_button {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  pointer-events: all;
}
.card-category .btn, .card-category .contact-form .contact-form-right .gform-footer .gform_button, .contact-form .contact-form-right .gform-footer .card-category .gform_button {
  left: 25px;
  right: 25px;
  bottom: 25px;
  position: absolute;
  z-index: 1;
  opacity: 0;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  pointer-events: none;
  width: auto;
}
.card-category .btn.grey, .card-category .contact-form .contact-form-right .gform-footer .grey.gform_button, .contact-form .contact-form-right .gform-footer .card-category .grey.gform_button {
  background-color: #C6C6C6;
  color: #231F20;
}
.card-category .btn.blue, .card-category .contact-form .contact-form-right .gform-footer .blue.gform_button, .contact-form .contact-form-right .gform-footer .card-category .blue.gform_button {
  background-color: #56A8DD;
  color: #fff;
}
.card-category .btn.red, .card-category .contact-form .contact-form-right .gform-footer .red.gform_button, .contact-form .contact-form-right .gform-footer .card-category .red.gform_button {
  background-color: #E40524;
  color: #fff;
}
.card-category .btn.green, .card-category .contact-form .contact-form-right .gform-footer .green.gform_button, .contact-form .contact-form-right .gform-footer .card-category .green.gform_button {
  background-color: #63B450;
  color: #fff;
}
.card-category .btn.gold, .card-category .contact-form .contact-form-right .gform-footer .gold.gform_button, .contact-form .contact-form-right .gform-footer .card-category .gold.gform_button {
  background-color: #BDA06C;
  color: #fff;
}
.card-category .btn.yellow, .card-category .contact-form .contact-form-right .gform-footer .yellow.gform_button, .contact-form .contact-form-right .gform-footer .card-category .yellow.gform_button {
  background-color: #F5AB22;
  color: #fff;
}
.card-category .btn.orange, .card-category .contact-form .contact-form-right .gform-footer .orange.gform_button, .contact-form .contact-form-right .gform-footer .card-category .orange.gform_button {
  background-color: #EE7601;
  color: #fff;
}
.card-category .btn.brown, .card-category .contact-form .contact-form-right .gform-footer .brown.gform_button, .contact-form .contact-form-right .gform-footer .card-category .brown.gform_button {
  background-color: #9B5A1F;
  color: #fff;
}
.card-category .btn.purple, .card-category .contact-form .contact-form-right .gform-footer .purple.gform_button, .contact-form .contact-form-right .gform-footer .card-category .purple.gform_button {
  background-color: #565CAA;
  color: #fff;
}
.card-category .bkg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.card-category.card-auto .product-img {
  height: 350px;
  left: 50%;
  bottom: 0;
}
.card-category .product-img {
  position: absolute;
  height: 350px;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  right: auto;
  width: 333px;
}
@media screen and (max-width: 1110px) {
  .card-category .product-img {
    width: 260px;
    height: 300px;
  }
}
.card-category .product-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.card-category .category-name {
  position: absolute;
  z-index: 1;
  color: #fff;
  top: 55px;
  left: 30px;
  text-transform: uppercase;
}
.card-category .badge-category {
  position: absolute;
  top: 20px;
  left: 0;
}

.timeline-card {
  background-color: #fff;
  padding: 20px 20px 20px 60px;
  border-radius: 10px;
  display: -ms-grid;
  display: grid;
  gap: 170px;
  -ms-grid-columns: 1fr 170px 500px;
  grid-template-columns: 1fr 500px;
  position: sticky;
  top: 110px;
  scroll-margin-top: 130px;
  -webkit-box-shadow: 0px -5px 20px 0px rgba(35, 31, 32, 0.07);
          box-shadow: 0px -5px 20px 0px rgba(35, 31, 32, 0.07);
}
@media screen and (max-width: 1110px) {
  .timeline-card {
    padding: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
    top: 180px;
  }
}
.timeline-card .card-text {
  margin-top: 70px;
}
@media screen and (max-width: 1110px) {
  .timeline-card .card-text {
    margin: 20px 10px 10px 10px;
  }
}
.timeline-card .card-text .red-title {
  color: #ED1C24;
  margin-bottom: 20px;
}
@media screen and (max-width: 1110px) {
  .timeline-card .card-text .red-title {
    margin-bottom: 10px;
  }
}
.timeline-card .card-text .description {
  color: rgba(35, 31, 32, 0.8);
  font-size: 1.25rem;
  line-height: 1.563rem;
  font-weight: 600;
}
@media screen and (max-width: 1110px) {
  .timeline-card .card-text .description {
    font-size: 0.875rem;
    line-height: 1.125rem;
  }
}
.timeline-card .card-image {
  height: 350px;
  overflow: hidden;
  border-radius: 10px;
  position: relative;
}
.timeline-card .card-image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
.timeline-card .card-image.img-contain {
  background-color: rgba(35, 31, 32, 0.05);
}
.timeline-card .card-image.img-contain img {
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.timeline-card .card-image .timeline-media-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  border-radius: 0 0 10px 10px;
  height: 180px;
  background: -webkit-gradient(linear, left bottom, left top, from(#231f20), color-stop(50%, rgba(35, 31, 32, 0.5)), to(rgba(35, 31, 32, 0)));
  background: linear-gradient(to top, #231f20 0%, rgba(35, 31, 32, 0.5) 50%, rgba(35, 31, 32, 0) 100%);
  pointer-events: none;
}
.timeline-card .card-image .timeline-caption {
  position: absolute;
  bottom: 20px;
  z-index: 2;
  text-align: center;
  color: #fff;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 3fr 20px 2fr;
  grid-template-columns: 3fr 2fr;
  gap: 20px;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  left: 20px;
  right: 20px;
}
.timeline-card .card-image .timeline-caption .timeline-caption-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  text-align: start;
  gap: 5px;
}
.timeline-card .card-image .timeline-caption .timeline-caption-left .name {
  font-size: 1rem;
  font-weight: 700;
}
.timeline-card .card-image .timeline-caption .timeline-caption-left .description {
  font-size: 0.875rem;
  line-height: 1.125rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
}
.timeline-card .card-image .timeline-caption .source {
  font-weight: 600;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  text-align: end;
}

.card-product {
  background-color: #fff;
  border-radius: 10px;
  padding: 30px;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-shadow: rgba(100, 100, 111, 0) 0px 7px 29px 0px;
          box-shadow: rgba(100, 100, 111, 0) 0px 7px 29px 0px;
  border: 1px solid transparent;
  position: relative;
}
.card-product:hover {
  -webkit-box-shadow: 0px 5px 20px 0px rgba(35, 31, 32, 0.2);
          box-shadow: 0px 5px 20px 0px rgba(35, 31, 32, 0.2);
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  border: 1px solid rgba(35, 31, 32, 0.15);
}
.card-product:hover .btn, .card-product:hover .contact-form .contact-form-right .gform-footer .gform_button, .contact-form .contact-form-right .gform-footer .card-product:hover .gform_button {
  background-color: #ED1C24;
  color: #fff;
  border-color: #ED1C24;
}
.card-product .img-wrapper {
  margin-bottom: 20px;
}
.card-product .img-wrapper img {
  height: 200px;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.card-product .img-wrapper .badge-container {
  position: absolute;
  left: 30px;
  top: -1px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.card-product .subtitle {
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
}
.card-product .subtitle span {
  color: #ED1C24;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}
.card-product .subtitle span::before {
  content: "";
  background-color: rgba(35, 31, 32, 0.7);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 3px;
}
.card-product .formats-container {
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  font-size: 1.125rem;
  line-height: 1.438rem;
  font-weight: 600;
  color: rgba(35, 31, 32, 0.7);
}
.card-product .formats-container .bullet {
  background-color: rgba(35, 31, 32, 0.7);
  border-radius: 50%;
  height: 3px;
  width: 3px;
  margin-bottom: 8px;
}
.card-product .btn, .card-product .contact-form .contact-form-right .gform-footer .gform_button, .contact-form .contact-form-right .gform-footer .card-product .gform_button {
  margin-top: 30px;
  border: 1px solid rgba(35, 31, 32, 0.15);
  background-color: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #231F20;
}
@media screen and (max-width: 1110px) {
  .card-product .btn, .card-product .contact-form .contact-form-right .gform-footer .gform_button, .contact-form .contact-form-right .gform-footer .card-product .gform_button {
    margin-top: 20px;
  }
}

.gamme-card {
  border-radius: 10px;
  height: 450px;
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.gamme-card:hover .gamme-image img {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.gamme-card:hover .gamme-caption .gamme-btn {
  color: #fff;
}
.gamme-card:hover .gamme-caption .gamme-btn svg {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}
.gamme-card .gamme-image {
  overflow: hidden;
  border-radius: 10px;
  width: 100%;
  height: 100%;
}
.gamme-card .gamme-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.gamme-card .gamme-media-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  border-radius: 0 0 10px 10px;
  height: 180px;
  background: -webkit-gradient(linear, left bottom, left top, from(#231f20), color-stop(25%, rgba(35, 31, 32, 0.5)), to(rgba(35, 31, 32, 0)));
  background: linear-gradient(to top, #231f20 0%, rgba(35, 31, 32, 0.5) 25%, rgba(35, 31, 32, 0) 100%);
  pointer-events: none;
}
.gamme-card .gamme-caption {
  position: absolute;
  bottom: 25px;
  z-index: 2;
  color: #fff;
  display: -ms-grid;
  display: grid;
  gap: 10px;
  left: 25px;
  right: 25px;
}
.gamme-card .gamme-caption .gamme-title {
  color: #fff;
}
.gamme-card .gamme-caption .gamme-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 800;
  font-size: 1.125rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.gamme-card .gamme-caption .gamme-btn svg {
  font-size: 25px;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.marquee-section {
  background-color: #ED1C24;
  overflow: hidden;
}
.marquee-section .title {
  font-weight: 800;
  color: #fff;
  text-align: center;
  padding: 60px 0 30px;
  max-width: 1280px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 1.25rem;
}
@media (max-width: 764px) {
  .marquee-section .title {
    font-size: 1rem;
    padding: 50px 0 20px;
    max-width: 350px;
  }
}
.marquee-section .marquee-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: visible;
}
.marquee-section .marquee-row .track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0;
  white-space: nowrap;
  will-change: transform;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-animation: scroll-left 40s linear infinite;
          animation: scroll-left 40s linear infinite;
  padding: 60px 0;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
@media (max-width: 764px) {
  .marquee-section .marquee-row .track {
    padding: 50px 0;
  }
}
.marquee-section .marquee-row .track .marquee-title {
  color: #fff;
  text-transform: uppercase;
  padding: 0 75px;
}
@media (max-width: 764px) {
  .marquee-section .marquee-row .track .marquee-title {
    padding: 0 25px;
  }
}

@-webkit-keyframes scroll-left {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@keyframes scroll-left {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.rdv-modal {
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
}
.rdv-modal .rdv-selection-view {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-height: 0;
}
.rdv-modal .rdv-selection-view[hidden] {
  display: none !important;
}
.rdv-modal .rdv-gammes-grid {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-height: 0;
  gap: 10px;
  overflow-y: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.rdv-modal .rdv-gammes-grid .gamme-card {
  border: none;
  cursor: pointer;
  text-align: left;
  padding: 0;
  height: auto;
}
.rdv-modal .rdv-iframe-view {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-height: 0;
}
.rdv-modal .rdv-iframe-view[hidden] {
  display: none !important;
}
.rdv-modal .rdv-loader {
  position: absolute;
  inset: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 10px;
  z-index: 2;
}
.rdv-modal .rdv-loader[hidden] {
  display: none !important;
}
.rdv-modal .rdv-loader span {
  width: 36px;
  height: 36px;
  border: 3px solid rgba(237, 28, 36, 0.2);
  border-top-color: #ED1C24;
  border-radius: 50%;
  -webkit-animation: rdv-spin 0.7s linear infinite;
          animation: rdv-spin 0.7s linear infinite;
}
@-webkit-keyframes rdv-spin {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes rdv-spin {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.rdv-modal button.rdv-back-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 700;
  color: #231F20;
  width: 100%;
  -ms-flex-negative: inherit;
      flex-shrink: inherit;
}
.rdv-modal button.rdv-back-btn .titre {
  font-size: 1.875rem;
  line-height: 2.188rem;
  font-weight: 800;
}
@media screen and (max-width: 1110px) {
  .rdv-modal button.rdv-back-btn .titre {
    font-size: 1.438rem;
    line-height: 1.875rem;
  }
}
.rdv-modal button.rdv-back-btn .back {
  border: 1px solid rgba(35, 31, 32, 0.15);
  border-radius: 10px;
  width: 30px;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 5px;
}
.rdv-modal button.rdv-back-btn .back svg {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  width: 12px;
  height: 12px;
}
.rdv-modal .rdv-container {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-height: 0;
  position: relative;
}
.rdv-modal .rdv-container:has(iframe) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.rdv-modal .rdv-container .calendly-inline-widget {
  height: 100% !important;
  border: 1px solid rgba(237, 28, 36, 0.2);
  border-radius: 10px;
  overflow: hidden;
}
.rdv-modal .rdv-container iframe {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  border: 1px solid rgba(237, 28, 36, 0.2);
}

/* Lock scroll */
body.rdv-modal-open {
  overflow: hidden;
}
body.rdv-modal-open .rdv-modal-overlay {
  opacity: 1;
  pointer-events: all;
}
body.rdv-modal-open .rdv-modal-panel {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
body.rdv-modal-open .rdv-modal {
  pointer-events: auto;
}

.section-last-post {
  padding: 100px 0;
  overflow: hidden;
}
@media (max-width: 764px) {
  .section-last-post {
    padding: 50px 0;
  }
  .section-last-post .swiper {
    overflow: visible;
  }
  .section-last-post .swiper .swiper-slide {
    opacity: 0.5;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .section-last-post .swiper .swiper-slide.swiper-slide-active {
    opacity: 1;
  }
}
.section-last-post .title-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 30px;
}

.half {
  position: relative;
  padding: 130px 0;
}
@media (max-width: 1110px) {
  .half {
    padding: 50px 0;
  }
}
.half.bkg-white {
  background-image: url(../images/bg/bkg-white.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  color: #231F20;
}
.half.bkg-white .hat {
  color: #ED1C24;
}
.half.bkg-red {
  background-image: url(../images/bg/bkg-red2.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  color: #fff;
}
.half.bkg-red .hat {
  color: rgba(255, 255, 255, 0.8);
}
.half.bkg-red .p, .half.bkg-red .post .article-body p, .post .article-body .half.bkg-red p {
  color: rgba(255, 255, 255, 0.7);
}
.half .half-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 80px 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1110px) {
  .half .half-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
@media (max-width: 1110px) {
  .half .half-grid .half-left {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.half .half-grid .half-left .number-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  padding: 30px 0;
}
@media (max-width: 1110px) {
  .half .half-grid .half-left .number-container {
    padding: 20px 0 30px;
  }
}
.half .half-grid .half-left .number-container .number-item {
  display: -ms-grid;
  display: grid;
  gap: 5px;
}
.half .half-grid .half-left .number-container .number-item:first-child {
  padding-right: 30px;
}
@media (max-width: 1110px) {
  .half .half-grid .half-left .number-container .number-item:first-child {
    padding-right: 20px;
  }
}
.half .half-grid .half-left .number-container .number-item:nth-child(2) {
  border-right: 1px solid rgba(35, 31, 32, 0.15);
  border-left: 1px solid rgba(35, 31, 32, 0.15);
  padding: 0 30px;
}
@media (max-width: 1110px) {
  .half .half-grid .half-left .number-container .number-item:nth-child(2) {
    padding: 0 20px;
  }
}
.half .half-grid .half-left .number-container .number-item:last-child {
  padding-left: 30px;
}
@media (max-width: 1110px) {
  .half .half-grid .half-left .number-container .number-item:last-child {
    padding-left: 20px;
  }
}
.half .half-grid .half-left .number-container .number-item .number-value {
  color: #ED1C24;
  font-size: 2.188rem;
  font-weight: 800;
}
@media (max-width: 1110px) {
  .half .half-grid .half-left .number-container .number-item .number-value {
    font-size: 1.5rem;
    line-height: 1.875rem;
  }
}
@media (min-width: 1110px) and (max-width: 1310px) {
  .half .half-grid .half-left .number-container .number-item .number-value {
    font-size: 32px;
  }
}
.half .half-grid .half-left .number-container .number-item .number-label {
  font-size: 1rem;
  line-height: 1.25rem;
  color: rgba(35, 31, 32, 0.7);
}
@media (max-width: 1110px) {
  .half .half-grid .half-left .number-container .number-item .number-label {
    font-size: 0.75rem;
    line-height: 1rem;
  }
}
.half .half-grid .half-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  position: relative;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 1110px) {
  .half .half-grid .half-right {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.half .half-grid .half-right .half-media {
  height: 520px;
  width: 100%;
}
@media (max-width: 764px) {
  .half .half-grid .half-right .half-media {
    height: 200px;
  }
}
.half .half-grid .half-right .half-media img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  border-radius: 10px;
}
@media (max-width: 1110px) {
  .half .half-grid .half-right .half-media img {
    aspect-ratio: auto;
    -o-object-position: top;
       object-position: top;
  }
}
.half .half-grid .half-right .half-media-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  border-radius: 0 0 10px 10px;
  height: 180px;
  background: -webkit-gradient(linear, left bottom, left top, from(#231f20), color-stop(25%, rgba(35, 31, 32, 0.5)), to(rgba(35, 31, 32, 0)));
  background: linear-gradient(to top, #231f20 0%, rgba(35, 31, 32, 0.5) 25%, rgba(35, 31, 32, 0) 100%);
  pointer-events: none;
}
@media (max-width: 1110px) {
  .half .half-grid .half-right .half-media-overlay {
    display: none;
  }
}
.half .half-grid .half-right .half-caption {
  position: absolute;
  bottom: 20px;
  z-index: 2;
  text-align: center;
  color: #fff;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  left: 20px;
  right: 20px;
}
@media (min-width: 1110px) and (max-width: 1310px) {
  .half .half-grid .half-right .half-caption {
    gap: 10px;
    -ms-grid-columns: 1fr;
    grid-template-columns: repeat(1, 1fr);
    text-align: start;
  }
}
@media (max-width: 1110px) {
  .half .half-grid .half-right .half-caption {
    display: none;
  }
}
.half .half-grid .half-right .half-caption .half-caption-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  text-align: start;
  gap: 5px;
}
.half .half-grid .half-right .half-caption .half-caption-left .name {
  font-size: 1rem;
  font-weight: 700;
}
.half .half-grid .half-right .half-caption .half-caption-left .description {
  font-size: 0.875rem;
  line-height: 1.125rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
}
.half .half-grid .half-right .half-caption .source {
  font-weight: 600;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
}
.half .hat {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 5px;
  text-transform: uppercase;
}
@media (max-width: 1110px) {
  .half .hat {
    font-size: 0.875rem;
  }
}

.banner-blog {
  background-image: url(../images/bg/bkg-white2.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.banner-blog .banner-content {
  position: relative;
}
.banner-blog .banner-content .banner-title {
  margin-bottom: 70px;
}
@media screen and (max-width: 1110px) {
  .banner-blog .banner-content .banner-title {
    margin-bottom: 50px;
  }
}
.banner-blog .banner-content .search-bar {
  padding: 15px;
  border-radius: 5px;
  border: 1px solid rgba(35, 31, 32, 0.15);
  background-color: #fff;
  -webkit-box-shadow: 0px 5px 20px 0px rgba(35, 31, 32, 0.2);
          box-shadow: 0px 5px 20px 0px rgba(35, 31, 32, 0.2);
  position: absolute;
  top: calc(100% - 30px);
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1110px) {
  .banner-blog .banner-content .search-bar {
    padding: 10px;
  }
}
.banner-blog .banner-content .search-bar:hover {
  border: 1px solid #ED1C24;
}
.banner-blog .banner-content .search-bar svg {
  font-size: 25px;
}
.banner-blog .banner-content .search-bar input {
  font-weight: 700;
  width: 100%;
  padding: 10px 0;
}
.banner-blog .banner-content .search-bar input:focus-visible {
  outline: none;
}
.banner-blog .banner-content .search-bar input::-webkit-input-placeholder {
  color: rgba(35, 31, 32, 0.7);
  font-weight: 700;
  opacity: 1;
}
.banner-blog .banner-content .search-bar input::-moz-placeholder {
  color: rgba(35, 31, 32, 0.7);
  font-weight: 700;
  opacity: 1;
}
.banner-blog .banner-content .search-bar input:-ms-input-placeholder {
  color: rgba(35, 31, 32, 0.7);
  font-weight: 700;
  opacity: 1;
}
.banner-blog .banner-content .search-bar input::-ms-input-placeholder {
  color: rgba(35, 31, 32, 0.7);
  font-weight: 700;
  opacity: 1;
}
.banner-blog .banner-content .search-bar input::placeholder {
  color: rgba(35, 31, 32, 0.7);
  font-weight: 700;
  opacity: 1;
}

.banner-history {
  background-image: url(../images/bg/bkg-white2.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
}
.banner-history::after {
  content: "";
  position: absolute;
  bottom: 0;
  z-index: 0;
  height: 200px;
  left: 0;
  right: 0;
  background: -webkit-gradient(linear, left bottom, left top, from(#f0efef), color-stop(10%, rgba(255, 255, 255, 0.5)), color-stop(70%, rgba(255, 255, 255, 0.5)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(to top, #f0efef 0%, rgba(255, 255, 255, 0.5) 10%, rgba(255, 255, 255, 0.5) 70%, rgba(255, 255, 255, 0) 100%);
}
.banner-history .banner-content {
  position: relative;
  width: 60%;
  z-index: 1;
}
@media screen and (max-width: 1110px) {
  .banner-history .banner-content {
    width: 100%;
  }
}
.banner-history .banner-content .banner-title {
  margin-bottom: 20px;
}
@media screen and (max-width: 1110px) {
  .banner-history .banner-content .banner-title {
    margin: 10px 0;
  }
}
.banner-history .banner-content .banner-description {
  margin-bottom: 50px;
  color: rgba(35, 31, 32, 0.8);
  font-size: 1.25rem;
  line-height: 1.5rem;
  font-weight: 600;
}
@media screen and (max-width: 1110px) {
  .banner-history .banner-content .banner-description {
    font-size: 0.875rem;
    line-height: 1.125rem;
  }
}

.gammes-section {
  padding: 0 0 100px;
}
.gammes-section.bkg-white {
  background-image: url(../images/bg/bkg-white2.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 130px 0;
}
@media (max-width: 1110px) {
  .gammes-section.bkg-white {
    padding: 50px 0;
  }
  .gammes-section.bkg-white .swiper {
    overflow: visible;
  }
}
.gammes-section .gammes-container {
  position: relative;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 10px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
@media (max-width: 1110px) {
  .gammes-section .gammes-container {
    -ms-grid-columns: 1fr;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}
.gammes-section .gammes-swiper-wrapper .gamme-card, .gammes-section .gammes-container .gamme-card {
  border-radius: 10px;
  height: 450px;
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.gammes-section .gammes-swiper-wrapper .gamme-card:hover .gamme-image img, .gammes-section .gammes-container .gamme-card:hover .gamme-image img {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.gammes-section .gammes-swiper-wrapper .gamme-card:hover .gamme-caption .gamme-btn, .gammes-section .gammes-container .gamme-card:hover .gamme-caption .gamme-btn {
  color: #fff;
}
.gammes-section .gammes-swiper-wrapper .gamme-card:hover .gamme-caption .gamme-btn svg, .gammes-section .gammes-container .gamme-card:hover .gamme-caption .gamme-btn svg {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}
.gammes-section .gammes-swiper-wrapper .gamme-card .gamme-image, .gammes-section .gammes-container .gamme-card .gamme-image {
  overflow: hidden;
  border-radius: 10px;
  width: 100%;
  height: 100%;
}
.gammes-section .gammes-swiper-wrapper .gamme-card .gamme-image img, .gammes-section .gammes-container .gamme-card .gamme-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.gammes-section .gammes-swiper-wrapper .gamme-card .gamme-media-overlay, .gammes-section .gammes-container .gamme-card .gamme-media-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  border-radius: 0 0 10px 10px;
  height: 180px;
  background: -webkit-gradient(linear, left bottom, left top, from(#231f20), color-stop(25%, rgba(35, 31, 32, 0.5)), to(rgba(35, 31, 32, 0)));
  background: linear-gradient(to top, #231f20 0%, rgba(35, 31, 32, 0.5) 25%, rgba(35, 31, 32, 0) 100%);
  pointer-events: none;
}
.gammes-section .gammes-swiper-wrapper .gamme-card .gamme-caption, .gammes-section .gammes-container .gamme-card .gamme-caption {
  position: absolute;
  bottom: 25px;
  z-index: 2;
  color: #fff;
  display: -ms-grid;
  display: grid;
  gap: 10px;
  left: 25px;
  right: 25px;
}
.gammes-section .gammes-swiper-wrapper .gamme-card .gamme-caption .gamme-title, .gammes-section .gammes-container .gamme-card .gamme-caption .gamme-title {
  color: #fff;
}
.gammes-section .gammes-swiper-wrapper .gamme-card .gamme-caption .gamme-btn, .gammes-section .gammes-container .gamme-card .gamme-caption .gamme-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 800;
  font-size: 1.125rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.gammes-section .gammes-swiper-wrapper .gamme-card .gamme-caption .gamme-btn svg, .gammes-section .gammes-container .gamme-card .gamme-caption .gamme-btn svg {
  font-size: 25px;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.all-gammes {
  padding: 100px 0;
  background-color: #F0EFEF;
  overflow: hidden;
  min-width: 0;
}
@media screen and (max-width: 1110px) {
  .all-gammes {
    padding: 80px 0;
  }
}
.all-gammes .swiper {
  width: 100%;
  max-width: 100vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: visible;
}
.all-gammes .swiper .swiper-slide {
  opacity: 0.5;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.all-gammes .swiper .swiper-slide-visible {
  opacity: 1;
}
.all-gammes .swiper .nav-swipe {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1110px) {
  .all-gammes .swiper .nav-swipe {
    display: none;
  }
}

.contact-form {
  padding: 20px 0 150px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 70px 760px;
  grid-template-columns: 1fr 760px;
  gap: 70px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  border-bottom: 1px solid rgba(237, 28, 36, 0.15);
}
@media (min-width: 1110px) and (max-width: 1310px) {
  .contact-form {
    -ms-grid-columns: 1fr 560px;
    grid-template-columns: 1fr 560px;
  }
}
@media screen and (max-width: 1110px) {
  .contact-form {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 10px 0 50px;
    border-bottom: none;
  }
}
.contact-form .hour-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px;
  -webkit-box-shadow: 0px 5px 20px 0px rgba(35, 31, 32, 0.2);
          box-shadow: 0px 5px 20px 0px rgba(35, 31, 32, 0.2);
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-radius: 5px;
  width: 240px;
  position: absolute;
  left: 100%;
  background-color: #fff;
  pointer-events: none;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1110px) {
  .contact-form .hour-container {
    left: auto;
    right: 0;
    padding: 15px;
    width: 200px;
  }
}
.contact-form .hour-container .hour-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.contact-form .hour-container .hour-item:first-child {
  padding-top: 0;
}
.contact-form .hour-container .hour-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 15px 0;
  border-bottom: 1px solid rgba(35, 31, 32, 0.15);
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 1rem;
  line-height: 1.25rem;
  font-weight: 800;
}
@media screen and (max-width: 1110px) {
  .contact-form .hour-container .hour-item {
    padding: 10px 0;
    font-size: 0.875rem;
    line-height: 1.125rem;
  }
}
.contact-form .hour-container .hour-item .hour-label {
  color: rgba(35, 31, 32, 0.7);
}
.contact-form .contact-form-left {
  position: sticky;
  top: 150px;
  -ms-flex-item-align: start;
      -ms-grid-row-align: start;
      align-self: start;
  z-index: 5;
}
@media screen and (max-width: 1110px) {
  .contact-form .contact-form-left {
    position: static;
  }
}
.contact-form .contact-form-left .contact-form-card {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 1110px) {
  .contact-form .contact-form-left .contact-form-card {
    margin-top: 20px;
    gap: 10px;
  }
}
.contact-form .contact-form-left .contact-form-card .link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1rem;
  line-height: 1.25rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 1110px) {
  .contact-form .contact-form-left .contact-form-card .link {
    position: relative;
  }
}
@media screen and (max-width: 1110px) {
  .contact-form .contact-form-left .contact-form-card .link {
    font-size: 0.875rem;
    line-height: 1.125rem;
  }
}
.contact-form .contact-form-left .contact-form-card .link:hover.child .hour-container {
  opacity: 1;
  pointer-events: all;
}
.contact-form .contact-form-left .contact-form-card .link:hover.child span {
  color: #ED1C24;
}
.contact-form .contact-form-left .contact-form-card .link:hover.child span svg {
  color: #ED1C24;
}
.contact-form .contact-form-left .contact-form-card .link svg {
  color: #ED1C24;
  width: 25px;
  height: 25px;
  font-size: 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 1110px) {
  .contact-form .contact-form-left .contact-form-card .link svg {
    width: 20px;
    height: 20px;
  }
}
.contact-form .contact-form-left .contact-form-card .link span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  padding-right: 10px;
}
.contact-form .contact-form-left .contact-form-card .link span svg {
  color: #231F20;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-size: 20px;
  width: 20px;
  height: 20px;
  margin-left: 5px;
}
@media screen and (max-width: 1110px) {
  .contact-form .contact-form-left .contact-form-card .link span svg {
    font-size: 15px;
    width: 15px;
    height: 15px;
  }
}
.contact-form .contact-form-right .gform_heading {
  display: none;
}
.contact-form .contact-form-right #field_1_7[style*="display: none"] + #field_1_8 {
  grid-column: 1/-1 !important;
  max-width: 100% !important;
  width: 100% !important;
}
.contact-form .contact-form-right .gform_wrapper {
  margin: 0;
}
.contact-form .contact-form-right .gform_wrapper .gform_fields {
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  row-gap: 0;
}
@media screen and (max-width: 1110px) {
  .contact-form .contact-form-right .gform_wrapper .gform_fields {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.contact-form .contact-form-right .gform_wrapper .gform_fields .gfield {
  margin-bottom: 20px;
}
.contact-form .contact-form-right .gform_wrapper .gform_fields .gfield.gfield--type-html {
  margin-bottom: 40px;
  font-size: 0.875rem;
  display: -ms-grid;
  display: grid;
}
@media screen and (max-width: 1110px) {
  .contact-form .contact-form-right .gform_wrapper .gform_fields .gfield.gfield--type-html {
    font-size: 0.75rem;
  }
}
.contact-form .contact-form-right .gform_wrapper .gform_fields .gfield.gfield--type-consent .ginput_container_consent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 10px;
}
.contact-form .contact-form-right .gform_wrapper .gform_fields .gfield.gfield--type-consent .ginput_container_consent input[type=checkbox] {
  display: none;
}
.contact-form .contact-form-right .gform_wrapper .gform_fields .gfield.gfield--type-consent .ginput_container_consent input[type=checkbox]:checked + label::before {
  background-color: #ED1C24;
  border-color: #ED1C24;
}
.contact-form .contact-form-right .gform_wrapper .gform_fields .gfield.gfield--type-consent .ginput_container_consent input[type=checkbox]:checked + label::after {
  opacity: 1;
}
.contact-form .contact-form-right .gform_wrapper .gform_fields .gfield.gfield--type-consent .ginput_container_consent label {
  position: relative;
  padding: 0 0 0 25px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  display: inline-block;
  line-height: 20px;
  margin: 0;
  font-weight: 600;
}
.contact-form .contact-form-right .gform_wrapper .gform_fields .gfield.gfield--type-consent .ginput_container_consent label a {
  color: #ED1C24;
  text-decoration: underline;
}
.contact-form .contact-form-right .gform_wrapper .gform_fields .gfield.gfield--type-consent .ginput_container_consent label .gfield_required {
  color: #231F20;
  font-size: 15px;
}
.contact-form .contact-form-right .gform_wrapper .gform_fields .gfield.gfield--type-consent .ginput_container_consent label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  border: 1px solid rgba(35, 31, 32, 0.3);
  border-radius: 2px;
  width: 15px;
  height: 15px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.contact-form .contact-form-right .gform_wrapper .gform_fields .gfield.gfield--type-consent .ginput_container_consent label::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 5px;
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  opacity: 0;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.contact-form .contact-form-right .gform_wrapper .gform_fields .ginput_container_phone {
  position: relative;
}
.contact-form .contact-form-right .gform_wrapper .gform_fields .ginput_container_phone:hover .iti {
  border-color: #ED1C24;
}
.contact-form .contact-form-right .gform_wrapper .gform_fields .ginput_container_phone:hover .iti .iti__selected-flag {
  border-color: #ED1C24;
}
.contact-form .contact-form-right .gform_wrapper .gform_fields .ginput_container_phone .iti {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid rgba(35, 31, 32, 0.15);
  border-radius: 5px;
  height: 63px;
  font-size: 1.125rem;
  line-height: 1.438rem;
  font-weight: 700;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}
.contact-form .contact-form-right .gform_wrapper .gform_fields .ginput_container_phone .iti .iti__selected-flag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  background-color: transparent;
  height: 63px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 15px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-right: 1px solid rgba(35, 31, 32, 0.15);
}
.contact-form .contact-form-right .gform_wrapper .gform_fields .ginput_container_phone .iti input {
  border: none;
  background-color: transparent;
  padding-left: 20px !important;
}
.contact-form .contact-form-right .gform_wrapper .gform_fields .ginput_container_phone .iti__selected-flag {
  position: relative;
}
.contact-form .contact-form-right .gform_wrapper .gform_fields .ginput_container_phone .iti__selected-flag::before {
  content: "";
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-image: url('data:image/svg+xml,<svg width="25" height="25" viewBox="0 0 25 25" xmlns="http://www.w3.org/2000/svg"><g opacity="0.5"><path d="M12.5 16.6443C12.2311 16.6443 11.9623 16.5448 11.7574 16.3462L5.30771 10.0938C4.89743 9.69606 4.89743 9.05121 5.30771 8.65364C5.71783 8.25608 6.3829 8.25608 6.79322 8.65364L12.5 14.1861L18.2068 8.65384C18.617 8.25627 19.2821 8.25627 19.6921 8.65384C20.1026 9.0514 20.1026 9.69625 19.6921 10.094L13.2426 16.3464C13.0375 16.545 12.7687 16.6443 12.5 16.6443Z"/></g></svg>');
          mask-image: url('data:image/svg+xml,<svg width="25" height="25" viewBox="0 0 25 25" xmlns="http://www.w3.org/2000/svg"><g opacity="0.5"><path d="M12.5 16.6443C12.2311 16.6443 11.9623 16.5448 11.7574 16.3462L5.30771 10.0938C4.89743 9.69606 4.89743 9.05121 5.30771 8.65364C5.71783 8.25608 6.3829 8.25608 6.79322 8.65364L12.5 14.1861L18.2068 8.65384C18.617 8.25627 19.2821 8.25627 19.6921 8.65384C20.1026 9.0514 20.1026 9.69625 19.6921 10.094L13.2426 16.3464C13.0375 16.545 12.7687 16.6443 12.5 16.6443Z"/></g></svg>');
  pointer-events: none;
  display: block;
  width: 25px;
  height: 25px;
  background-color: rgba(35, 31, 32, 0.5);
  margin-left: 15px;
}
.contact-form .contact-form-right .gform_wrapper .gform_fields .ginput_container_phone .intl-country-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100% !important;
  color: #ED1C24;
}
.contact-form .contact-form-right .gform_wrapper .gform_fields .ginput_container_phone .iti__selected-dial-code {
  color: rgba(35, 31, 32, 0.7);
}
.contact-form .contact-form-right .gform_wrapper .gform_fields .ginput_container_phone .iti__flag-container {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.contact-form .contact-form-right .gform_wrapper .gfield_label {
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.25rem;
  margin-bottom: 10px !important;
  gap: 2px !important;
  pointer-events: none;
}
.contact-form .contact-form-right .gform_wrapper .gfield_label .gfield_required {
  color: #231F20;
  font-size: 15px;
}
.contact-form .contact-form-right .gform_wrapper input, .contact-form .contact-form-right .gform_wrapper select, .contact-form .contact-form-right .gform_wrapper textarea {
  border: 1px solid rgba(35, 31, 32, 0.15);
  border-radius: 5px;
  height: 63px;
  font-size: 1.125rem;
  line-height: 1.438rem;
  font-weight: 700;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
  outline: none !important;
}
.contact-form .contact-form-right .gform_wrapper input::-webkit-input-placeholder, .contact-form .contact-form-right .gform_wrapper select::-webkit-input-placeholder, .contact-form .contact-form-right .gform_wrapper textarea::-webkit-input-placeholder {
  color: rgba(35, 31, 32, 0.7);
  opacity: 1;
}
.contact-form .contact-form-right .gform_wrapper input::-moz-placeholder, .contact-form .contact-form-right .gform_wrapper select::-moz-placeholder, .contact-form .contact-form-right .gform_wrapper textarea::-moz-placeholder {
  color: rgba(35, 31, 32, 0.7);
  opacity: 1;
}
.contact-form .contact-form-right .gform_wrapper input:-ms-input-placeholder, .contact-form .contact-form-right .gform_wrapper select:-ms-input-placeholder, .contact-form .contact-form-right .gform_wrapper textarea:-ms-input-placeholder {
  color: rgba(35, 31, 32, 0.7);
  opacity: 1;
}
.contact-form .contact-form-right .gform_wrapper input::-ms-input-placeholder, .contact-form .contact-form-right .gform_wrapper select::-ms-input-placeholder, .contact-form .contact-form-right .gform_wrapper textarea::-ms-input-placeholder {
  color: rgba(35, 31, 32, 0.7);
  opacity: 1;
}
.contact-form .contact-form-right .gform_wrapper input::placeholder, .contact-form .contact-form-right .gform_wrapper select::placeholder, .contact-form .contact-form-right .gform_wrapper textarea::placeholder {
  color: rgba(35, 31, 32, 0.7);
  opacity: 1;
}
.contact-form .contact-form-right .gform_wrapper input:hover, .contact-form .contact-form-right .gform_wrapper select:hover, .contact-form .contact-form-right .gform_wrapper textarea:hover {
  border: 1px solid #ED1C24;
  outline: none;
}
.contact-form .contact-form-right .gform_wrapper input:focus, .contact-form .contact-form-right .gform_wrapper input:active, .contact-form .contact-form-right .gform_wrapper input:focus-within, .contact-form .contact-form-right .gform_wrapper select:focus, .contact-form .contact-form-right .gform_wrapper select:active, .contact-form .contact-form-right .gform_wrapper select:focus-within, .contact-form .contact-form-right .gform_wrapper textarea:focus, .contact-form .contact-form-right .gform_wrapper textarea:active, .contact-form .contact-form-right .gform_wrapper textarea:focus-within {
  outline: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}
.contact-form .contact-form-right .gform_wrapper input {
  padding-bottom: 2px;
}
.contact-form .contact-form-right .gform_wrapper .ginput_container_select {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.contact-form .contact-form-right .gform_wrapper .ginput_container_select:hover::after {
  background-color: #ED1C24;
}
.contact-form .contact-form-right .gform_wrapper .ginput_container_select:after {
  content: "";
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-image: url('data:image/svg+xml,<svg width="25" height="25" viewBox="0 0 25 25" xmlns="http://www.w3.org/2000/svg"><g opacity="0.5"><path d="M12.5 16.6443C12.2311 16.6443 11.9623 16.5448 11.7574 16.3462L5.30771 10.0938C4.89743 9.69606 4.89743 9.05121 5.30771 8.65364C5.71783 8.25608 6.3829 8.25608 6.79322 8.65364L12.5 14.1861L18.2068 8.65384C18.617 8.25627 19.2821 8.25627 19.6921 8.65384C20.1026 9.0514 20.1026 9.69625 19.6921 10.094L13.2426 16.3464C13.0375 16.545 12.7687 16.6443 12.5 16.6443Z"/></g></svg>');
          mask-image: url('data:image/svg+xml,<svg width="25" height="25" viewBox="0 0 25 25" xmlns="http://www.w3.org/2000/svg"><g opacity="0.5"><path d="M12.5 16.6443C12.2311 16.6443 11.9623 16.5448 11.7574 16.3462L5.30771 10.0938C4.89743 9.69606 4.89743 9.05121 5.30771 8.65364C5.71783 8.25608 6.3829 8.25608 6.79322 8.65364L12.5 14.1861L18.2068 8.65384C18.617 8.25627 19.2821 8.25627 19.6921 8.65384C20.1026 9.0514 20.1026 9.69625 19.6921 10.094L13.2426 16.3464C13.0375 16.545 12.7687 16.6443 12.5 16.6443Z"/></g></svg>');
  position: absolute;
  right: 10px;
  pointer-events: none;
  display: block;
  width: 25px;
  height: 25px;
  background-color: rgba(35, 31, 32, 0.5);
}
.contact-form .contact-form-right .gform_wrapper .ginput_container_select select {
  background-image: none;
}
.contact-form .contact-form-right .gform_wrapper .gfield--type-textarea {
  margin-bottom: 10px !important;
}
.contact-form .contact-form-right .gform_wrapper .gfield--type-textarea textarea {
  height: 250px;
  resize: none;
}
.contact-form .contact-form-right .gform-footer {
  margin-top: 15px;
}
.contact-form .contact-form-right .gform-footer .gform_button {
  background-color: #ED1C24 !important;
  color: #fff !important;
  font-family: Akrobat, Arial, sans-serif !important;
  padding: 15px 12px 13px 12px !important;
  font-size: 1.125rem !important;
  border-radius: 5px !important;
  font-weight: 800 !important;
  height: 60px !important;
}
.contact-form .contact-form-right .gform-footer .gform_button:hover {
  background-color: rgb(226.6293877551, 17.9706122449, 25.9575510204) !important;
}
@media screen and (max-width: 1110px) {
  .contact-form .contact-form-right .gform-footer .gform_button {
    font-size: 0.875rem !important;
    line-height: 1.125rem !important;
    height: 50px !important;
  }
}

.home .hero-swiper {
  position: relative;
  overflow: hidden;
}
.home .hero-swiper .bkg {
  position: absolute;
  inset: 0;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}
.home .hero-swiper .hero-swiper-overlay {
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(10, 4, 0, 0.05)), to(rgba(10, 4, 0, 0.5)));
  background: linear-gradient(top, rgba(10, 4, 0, 0.05) 0%, rgba(10, 4, 0, 0.5) 100%);
}
.home .hero-swiper .hero-swiper-content {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  width: 100%;
  height: 550px;
}
.home .hero-swiper .hero-swiper-content .hero-swiper-transition {
  position: absolute;
  bottom: 50px;
  opacity: 0;
  -webkit-transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
}
@media screen and (min-width: 1110px) {
  .home .hero-swiper .hero-swiper-content .hero-swiper-transition {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    top: 50%;
    bottom: auto;
    -webkit-transform: translateY(-40%);
            transform: translateY(-40%);
  }
}
.home .hero-swiper .hero-swiper-content .hero-swiper-transition .btn, .home .hero-swiper .hero-swiper-content .hero-swiper-transition .contact-form .contact-form-right .gform-footer .gform_button, .contact-form .contact-form-right .gform-footer .home .hero-swiper .hero-swiper-content .hero-swiper-transition .gform_button {
  display: none;
}
@media screen and (max-width: 1110px) {
  .home .hero-swiper .hero-swiper-content .hero-swiper-transition .btn, .home .hero-swiper .hero-swiper-content .hero-swiper-transition .contact-form .contact-form-right .gform-footer .gform_button, .contact-form .contact-form-right .gform-footer .home .hero-swiper .hero-swiper-content .hero-swiper-transition .gform_button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.home .hero-swiper .hero-swiper-content .hero-swiper-transition.is-visible {
  opacity: 1;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 1110px) {
  .home .hero-swiper .hero-swiper-content .hero-swiper-transition.is-visible {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.home .hero-swiper .hero-swiper-content .hero-swiper-transition.is-leaving {
  opacity: 0;
  -webkit-transform: translateY(-55%);
          transform: translateY(-55%);
}
@media screen and (max-width: 1110px) {
  .home .hero-swiper .hero-swiper-content .hero-swiper-transition.is-leaving {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
}
.home .hero-swiper .hero-swiper-content .hero-swiper-transition .hero-swiper-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 1110px) {
  .home .hero-swiper .hero-swiper-content .hero-swiper-transition .hero-swiper-left {
    gap: 0;
  }
}
.home .hero-swiper .hero-swiper-content .hero-swiper-transition .hero-swiper-left .btn, .home .hero-swiper .hero-swiper-content .hero-swiper-transition .hero-swiper-left .contact-form .contact-form-right .gform-footer .gform_button, .contact-form .contact-form-right .gform-footer .home .hero-swiper .hero-swiper-content .hero-swiper-transition .hero-swiper-left .gform_button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 1110px) {
  .home .hero-swiper .hero-swiper-content .hero-swiper-transition .hero-swiper-left .btn, .home .hero-swiper .hero-swiper-content .hero-swiper-transition .hero-swiper-left .contact-form .contact-form-right .gform-footer .gform_button, .contact-form .contact-form-right .gform-footer .home .hero-swiper .hero-swiper-content .hero-swiper-transition .hero-swiper-left .gform_button {
    display: none;
  }
}
.home .hero-swiper .hero-swiper-content .hero-swiper-transition .hero-swiper-desc {
  color: #fff;
  font-size: 1.25rem;
  line-height: 1.563rem;
  font-weight: 600;
  margin: 10px 0 0 100px;
}
@media screen and (max-width: 1110px) {
  .home .hero-swiper .hero-swiper-content .hero-swiper-transition .hero-swiper-desc {
    margin: 20px 0;
    font-size: 0.875rem;
    line-height: 1.125rem;
  }
}
.home .hero-swiper .hero-swiper-trust-container {
  position: relative;
}
.home .hero-swiper .hero-swiper-trust-container .hero-swiper-trust {
  z-index: 5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  width: 100%;
  position: absolute;
  bottom: 0;
}
.home .hero-swiper .hero-swiper-trust-container .hero-swiper-trust .hero-swiper-trust-item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  padding: 40px 0;
  text-align: center;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
@media (max-width: 1110px) {
  .home .hero-swiper .hero-swiper-trust-container .hero-swiper-trust .hero-swiper-trust-item {
    padding: 10px;
  }
}
.home .hero-swiper .hero-swiper-trust-container .hero-swiper-trust .hero-swiper-trust-item::after {
  content: "";
  height: 1px;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  position: absolute;
  top: 50;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.home .hero-swiper .hero-swiper-trust-container .hero-swiper-trust .hero-swiper-trust-item.is-active {
  color: #fff;
}
.home .hero-swiper .hero-swiper-trust-container .hero-swiper-trust .hero-swiper-trust-item.is-active svg {
  fill: #fff;
}
.home .hero-swiper .hero-swiper-trust-container .hero-swiper-trust .hero-swiper-trust-item .hero-swiper-trust-progress {
  position: absolute;
  top: 50;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  height: 2px;
  width: 0%;
  opacity: 0;
  background: #fff;
  -webkit-animation: none;
          animation: none;
}
.home .hero-swiper .hero-swiper-trust-container .hero-swiper-trust .hero-swiper-trust-item.is-active .hero-swiper-trust-progress {
  -webkit-animation: trust-progress 5s linear forwards;
          animation: trust-progress 5s linear forwards;
}
@-webkit-keyframes trust-progress {
  0% {
    width: 0%;
    opacity: 0;
  }
  8% {
    width: 0%;
    opacity: 1;
  }
  70% {
    opacity: 1;
  }
  100% {
    width: 100%;
    opacity: 0;
  }
}
@keyframes trust-progress {
  0% {
    width: 0%;
    opacity: 0;
  }
  8% {
    width: 0%;
    opacity: 1;
  }
  70% {
    opacity: 1;
  }
  100% {
    width: 100%;
    opacity: 0;
  }
}

.ui-colors .container-color div {
  width: 60px;
  aspect-ratio: 1/1;
}

.page-ui-kit .ui-block {
  margin-bottom: 90px;
}
.page-ui-kit .ui-title {
  padding: 10px 20px;
  background-color: #fff;
  border-radius: 16px;
  -webkit-box-shadow: 0px 2px 3px rgba(237, 28, 36, 0.1);
          box-shadow: 0px 2px 3px rgba(237, 28, 36, 0.1);
  margin-bottom: 20px;
}
.page-ui-kit .ui-title:before {
  content: "#";
  padding-right: 12px;
}
.page-ui-kit .icons > svg {
  display: none;
}
.page-ui-kit .icons svg {
  fill: #fff;
  width: 30px;
  height: 30px;
}
.page-ui-kit .icons .svg {
  display: inline-block;
  padding: 22px 0 0 0;
  margin: 8px;
  border: solid 1px #343434;
  width: 110px;
  text-align: center;
  background: rgba(0, 0, 0, 0.1);
}
.page-ui-kit .icons .text {
  background-color: #343434;
  color: #fff;
  padding: 5px;
  margin: 22px 0 0 0;
  font-size: 12px;
}
.page-ui-kit .html .hljs-name,
.page-ui-kit .html .hljs-attr {
  color: #ffa07a;
}
@media screen and (min-width: 353px) {
  .page-ui-kit .cards .container > div {
    width: 47%;
  }
}
@media screen and (min-width: 764px) {
  .page-ui-kit .cards .container > div {
    width: 31%;
  }
}

.faq-section {
  position: relative;
  margin: 0 0 150px;
  color: #231F20;
}
.faq-section .faq-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 470px 80px 1fr;
  grid-template-columns: 470px 1fr;
  gap: 80px;
}
@media (max-width: 1110px) {
  .faq-section .faq-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.faq-section .faq-intro {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: sticky;
  top: 150px;
}
.faq-section .faq-intro .btn, .faq-section .faq-intro .contact-form .contact-form-right .gform-footer .gform_button, .contact-form .contact-form-right .gform-footer .faq-section .faq-intro .gform_button {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.faq-section .faq-item {
  border-top: 1px solid rgba(35, 31, 32, 0.15);
  padding: 10px 0;
}
.faq-section .faq-item::details-content {
  block-size: 0;
  -webkit-transition: block-size 0.4s, content-visibility 0.4s;
  transition: block-size 0.4s, content-visibility 0.4s;
  transition-behavior: allow-discrete;
}
.faq-section .faq-item:open::details-content {
  block-size: auto;
}
.faq-section .faq-item summary {
  list-style: none;
  cursor: pointer;
}
.faq-section .faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-section .faq-item .faq-answer {
  opacity: 0;
  overflow: hidden;
  font-size: 1.25rem;
  line-height: 1.5rem;
  -webkit-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
  padding-bottom: 30px;
}
@media (max-width: 1110px) {
  .faq-section .faq-item .faq-answer {
    font-size: 1rem;
    line-height: 1.125rem;
  }
}
.faq-section .faq-item[open] .faq-answer {
  opacity: 1;
}
.faq-section .faq-item[open] .faq-icon {
  background-color: #231F20;
  border: 1px solid #231F20;
}
.faq-section .faq-item[open] .faq-icon svg {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.faq-section .faq-question {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  -webkit-user-select: none;
  padding: 40px 0;
}
@media (max-width: 1110px) {
  .faq-section .faq-question {
    padding: 20px 0;
  }
}
.faq-section .faq-icon {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 5px;
  background-color: #ED1C24;
}
@media (max-width: 1110px) {
  .faq-section .faq-icon {
    width: 40px;
    height: 40px;
  }
}
.faq-section .faq-icon svg {
  width: 15px;
  height: 10px;
  fill: #fff;
  -webkit-transition: -webkit-transform 0.25s ease;
  transition: -webkit-transform 0.25s ease;
  transition: transform 0.25s ease;
  transition: transform 0.25s ease, -webkit-transform 0.25s ease;
}
@media (max-width: 1110px) {
  .faq-section .faq-icon svg {
    width: 10px;
  }
}

.legal-page .legal-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  gap: 20px;
}
@media (max-width: 1110px) {
  .legal-page .legal-head {
    gap: 10px;
  }
}
.legal-page .legal-rule {
  width: 100%;
  max-width: 730px;
  height: 1px;
  background: rgba(237, 28, 36, 0.15);
  margin-top: 60px;
}
@media (max-width: 1110px) {
  .legal-page .legal-rule {
    margin-top: 20px;
  }
}
.legal-page .legal-content {
  max-width: 730px;
  margin: 0 auto 120px;
}
@media (max-width: 1110px) {
  .legal-page .legal-content {
    margin: 0 0 80px;
  }
}
.legal-page .legal-content p {
  font-size: 1rem;
  line-height: 1.25rem;
  color: rgba(35, 31, 32, 0.7);
  font-weight: 600;
}
.legal-page .legal-content a {
  color: #ED1C24;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-page .legal-content strong {
  opacity: 1;
}
.legal-page .legal-content h2 {
  padding: 40px 0 20px;
  border-top: 1px solid rgba(35, 31, 32, 0.15);
  margin-top: 40px;
}
.legal-page .legal-content {
  counter-reset: legal;
}
.legal-page .legal-content h2 {
  counter-increment: legal;
}
.legal-page .legal-content h2::before {
  content: counter(legal) ". ";
}
.legal-page .legal-content ul,
.legal-page .legal-content ol {
  margin: 0 0 14px 18px;
}
.legal-page .legal-content ul li,
.legal-page .legal-content ol li {
  font-family: Akrobat, Arial, sans-serif;
  font-size: 0.875rem;
  line-height: 1.125rem;
  opacity: 0.75;
  margin: 0 0 8px;
}
.legal-page .legal-content img,
.legal-page .legal-content iframe,
.legal-page .legal-content video {
  max-width: 100%;
  height: auto;
}

.archive-posts {
  margin-bottom: 70px;
}
@media screen and (max-width: 1110px) {
  .archive-posts {
    margin-bottom: 50px;
  }
}
.archive-posts .result {
  margin: 70px 0 30px;
  font-weight: 700;
  font-size: 0.875rem;
  color: rgba(35, 31, 32, 0.5);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}
@media screen and (max-width: 1110px) {
  .archive-posts .result {
    margin: 50px 0 20px;
  }
}
.archive-posts .result strong {
  color: #231F20;
}
.archive-posts .cards {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 10px 1fr 10px 1fr;
  grid-template-columns: repeat(3, 1fr);
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  row-gap: 50px;
}
@media screen and (max-width: 1110px) {
  .archive-posts .cards {
    -ms-grid-columns: 1fr 20px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media screen and (max-width: 1110px) and (max-width: 764px) {
  .archive-posts .cards {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
}

.grid-categories {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 10px 1fr 10px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 50px 0 100px;
}
@media screen and (max-width: 1110px) {
  .grid-categories {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 1110px) and (max-width: 764px) {
  .grid-categories {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
    padding: 50px 0;
  }
}

.gamme-archive {
  background-color: rgba(35, 31, 32, 0.07);
}
.gamme-archive .archive-products {
  margin-bottom: 70px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 360px 70px 1fr;
  grid-template-columns: 360px 1fr;
  gap: 70px;
  margin-top: 90px;
}
@media screen and (max-width: 1110px) {
  .gamme-archive .archive-products {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 50px;
  }
}
@media screen and (min-width: 1110px) {
  .gamme-archive .archive-products .left-container {
    position: relative;
  }
  .gamme-archive .archive-products .left-container .modal-panel {
    z-index: 5;
  }
}
.gamme-archive .archive-products .left-container .filter-btn {
  background-color: #fff;
  border-radius: 5px;
  border: 1px solid rgba(35, 31, 32, 0.15);
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  font-size: 0.875rem;
  font-weight: 800;
}
@media screen and (min-width: 1110px) {
  .gamme-archive .archive-products .left-container .filter-btn {
    display: none;
  }
}
.gamme-archive .archive-products .left-container .filter-btn svg {
  width: 25px;
  height: 25px;
}
.gamme-archive .archive-products .left-container .top-content {
  position: absolute;
  right: 20px;
  z-index: 3;
}
@media screen and (min-width: 1110px) {
  .gamme-archive .archive-products .left-container .modal-panel {
    position: relative;
    -webkit-transform: none;
            transform: none;
    padding: 0;
    width: 100%;
    background-color: transparent;
  }
  .gamme-archive .archive-products .left-container .modal-panel .top-content {
    display: none;
  }
}
.gamme-archive .archive-products .left-container .filter-container {
  background-color: #fff;
  border-radius: 10px;
  max-height: 100%;
  overflow: scroll;
}
@media screen and (min-width: 1110px) {
  .gamme-archive .archive-products .left-container .filter-container {
    border: 1px solid rgba(35, 31, 32, 0.15);
    -webkit-box-shadow: 0px 5px 20px 0px rgba(35, 31, 32, 0.2);
            box-shadow: 0px 5px 20px 0px rgba(35, 31, 32, 0.2);
    position: sticky;
    top: 150px;
    max-height: 500px;
  }
}
.gamme-archive .archive-products .left-container .filter-container::before {
  content: "";
  position: sticky;
  top: -1px;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 10px;
  min-height: 10px;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(20%, white), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(to bottom, white 20%, rgba(255, 255, 255, 0) 100%);
  z-index: 2;
  pointer-events: none;
}
@media screen and (min-width: 1110px) {
  .gamme-archive .archive-products .left-container .filter-container::before {
    height: 40px;
    min-height: 40px;
  }
}
.gamme-archive .archive-products .left-container .filter-container::after {
  content: "";
  position: sticky;
  bottom: -1px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  left: 0;
  width: 100%;
  height: 40px;
  min-height: 40px;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(20%, white), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(to top, white 20%, rgba(255, 255, 255, 0) 100%);
  z-index: 2;
  pointer-events: none;
  margin-top: auto;
}
.gamme-archive .archive-products .left-container .filter-container::-webkit-scrollbar {
  display: none;
}
.gamme-archive .archive-products .left-container .filter-container .filter-content-wrapper {
  padding: 10px 0 50px 0;
  margin-top: -10px;
  margin-bottom: -40px;
}
@media screen and (min-width: 1110px) {
  .gamme-archive .archive-products .left-container .filter-container .filter-content-wrapper {
    padding: 40px 30px 50px 30px;
    margin-top: -40px;
  }
}
.gamme-archive .archive-products .left-container .filter-container .filter-group .filter-title {
  font-size: 1.25rem;
  line-height: 1.563rem;
  font-weight: 800;
  margin-bottom: 20px;
}
.gamme-archive .archive-products .left-container .filter-container .filter-group.application {
  border-bottom: 1px solid rgba(35, 31, 32, 0.15);
  padding-bottom: 30px;
  margin-bottom: 30px;
}
.gamme-archive .archive-products .left-container .filter-container .filter-group ul {
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0;
  gap: 20px;
  font-size: 1.125rem;
  line-height: 1.438rem;
  font-weight: 700;
}
.gamme-archive .archive-products .left-container .filter-container .filter-group ul .filter-checkbox-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.gamme-archive .archive-products .left-container .filter-container .filter-group ul .filter-checkbox-item input {
  display: none;
}
.gamme-archive .archive-products .left-container .filter-container .filter-group ul .filter-checkbox-item input:checked + .checkbox-custom {
  background-color: #ED1C24;
  border-color: #ED1C24;
  position: relative;
}
.gamme-archive .archive-products .left-container .filter-container .filter-group ul .filter-checkbox-item input:checked + .checkbox-custom::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 3px;
  width: 6px;
  height: 11px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.gamme-archive .archive-products .left-container .filter-container .filter-group ul .filter-checkbox-item .checkbox-custom {
  border: 2px solid rgba(35, 31, 32, 0.3);
  border-radius: 5px;
  width: 24px;
  height: 24px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.gamme-archive .archive-products .left-container .filter-container .filter-group.gamme ul {
  gap: 15px;
}
.gamme-archive .archive-products .right-container .result-container {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 0 30px;
}
@media screen and (max-width: 1110px) {
  .gamme-archive .archive-products .right-container .result-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    gap: 10px;
  }
}
.gamme-archive .archive-products .right-container .result-container .result {
  font-weight: 700;
  font-size: 0.875rem;
  color: rgba(35, 31, 32, 0.5);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}
.gamme-archive .archive-products .right-container .result-container .result strong {
  color: #231F20;
}
.gamme-archive .archive-products .right-container .result-container .active-filters-chips {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.gamme-archive .archive-products .right-container .result-container .active-filters-chips .chip {
  background-color: #ED1C24;
  padding: 5px 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  color: #fff;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.gamme-archive .archive-products .right-container .result-container .active-filters-chips .chip svg {
  font-size: 12px;
}
.gamme-archive .archive-products .right-container .cards {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 10px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
@media screen and (max-width: 764px) {
  .gamme-archive .archive-products .right-container .cards {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

body.filter-open {
  overflow: hidden;
}
body.filter-open .filter-modal-overlay {
  opacity: 1;
  pointer-events: all;
}
body.filter-open .filter-modal-panel {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.post {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 70px 480px;
  grid-template-columns: 1fr 480px;
  gap: 70px;
}
@media (max-width: 1110px) {
  .post {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.post .img-wrapper {
  border-radius: 10px;
  height: 200px;
  overflow: hidden;
  margin-bottom: 40px;
}
@media (max-width: 1110px) {
  .post .img-wrapper {
    margin-bottom: 20px;
  }
}
.post .img-wrapper img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}
.post .article-h1 {
  margin-bottom: 20px;
}
.post .article-body p {
  margin-bottom: 25px;
}
@media (max-width: 1110px) {
  .post .article-body p {
    margin-bottom: 20px;
  }
}
.post .article-body h5 {
  margin: 40px 0 10px;
}
@media (max-width: 1110px) {
  .post .article-body h5 {
    margin: 20px 0 10px;
  }
}
.post .post-right {
  position: relative;
}
.post .post-right .sticky-card {
  padding: 30px;
  border-radius: 10px;
  background-color: #fff;
  -webkit-box-shadow: 0px 5px 20px 0px rgba(35, 31, 32, 0.2);
          box-shadow: 0px 5px 20px 0px rgba(35, 31, 32, 0.2);
  position: sticky;
  top: 150px;
}
.post .post-right .sticky-card .sticky-title {
  margin: 20px 0 10px;
}
.post .post-right .sticky-card .btn, .post .post-right .sticky-card .contact-form .contact-form-right .gform-footer .gform_button, .contact-form .contact-form-right .gform-footer .post .post-right .sticky-card .gform_button {
  margin-top: 25px;
}
@media (max-width: 1110px) {
  .post .post-right .sticky-card .btn, .post .post-right .sticky-card .contact-form .contact-form-right .gform-footer .gform_button, .contact-form .contact-form-right .gform-footer .post .post-right .sticky-card .gform_button {
    margin-top: 20px;
  }
}
.post .post-right .sticky-card .img-container {
  border-radius: 5px;
  overflow: hidden;
  height: 200px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 1110px) {
  .post .post-right .sticky-card .img-container {
    height: 180px;
  }
}
.post .post-right .sticky-card .img-container img:not(.bkg) {
  position: absolute;
  z-index: 1;
  width: 250px;
  top: 6%;
}
.post .post-right .sticky-card .img-container .bkg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 0 90%;
     object-position: 0 90%;
}

.history-page {
  background-color: #F0EFEF;
  z-index: 0;
  position: relative;
}
.history-page .history-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
  padding: 40px 0 100px;
}
.history-page .history-container .timeline-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.history-page .history-container .timeline-container {
  padding-bottom: 100px;
  border-bottom: 1px solid rgba(35, 31, 32, 0.15);
  margin-bottom: 50px;
}
@media screen and (max-width: 1110px) {
  .history-page .history-container .timeline-container {
    padding-bottom: 80px;
  }
}
.history-page .history-container .timeline-container:last-child {
  padding-bottom: 0;
  border-bottom: none;
  margin-bottom: 0;
}
.history-page .history-container .timeline-section-group {
  position: relative;
}
.history-page .history-container .timeline-section-title {
  margin-bottom: 40px;
  z-index: 5;
}
@media screen and (max-width: 1110px) {
  .history-page .history-container .timeline-section-title {
    position: sticky;
    top: 110px;
    margin-bottom: 20px;
    text-align: center;
  }
}
@media screen and (max-width: 1110px) and (max-width: 764px) {
  .history-page .history-container .timeline-section-title {
    text-align: left;
    top: 80px;
  }
}
.history-page .history-container .sticky-container {
  position: relative;
  width: 150px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 1110px) {
  .history-page .history-container .sticky-container {
    display: none;
  }
}
.history-page .history-container .sticky-container .timeline-nav {
  width: 100%;
  position: sticky;
  top: 150px;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.history-page .history-container .sticky-container .timeline-nav .line {
  width: 1px;
  height: 10px;
  background-color: #ED1C24;
}
.history-page .history-container .sticky-container .timeline-nav .nav-item {
  position: relative;
  width: 20px;
  height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
}
.history-page .history-container .sticky-container .timeline-nav .nav-item .dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 2;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.history-page .history-container .sticky-container .timeline-nav .nav-item .dot::before {
  content: "";
  width: 15px;
  height: 15px;
  border: 1px solid rgba(35, 31, 32, 0.3);
  border-radius: 50%;
  position: absolute;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.history-page .history-container .sticky-container .timeline-nav .nav-item .dot::after {
  content: "";
  width: 5px;
  height: 5px;
  background-color: rgba(35, 31, 32, 0.5);
  border-radius: 50%;
  -webkit-transition: background-color 0.3s ease, -webkit-transform 0.3s ease;
  transition: background-color 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, background-color 0.3s ease;
  transition: transform 0.3s ease, background-color 0.3s ease, -webkit-transform 0.3s ease;
}
.history-page .history-container .sticky-container .timeline-nav .nav-item:not(.active):hover .label-wrapper .year-label {
  color: #ED1C24;
}
.history-page .history-container .sticky-container .timeline-nav .nav-item:not(.active):hover .dot::after {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  background-color: #ED1C24;
}
.history-page .history-container .sticky-container .timeline-nav .nav-item:not(.active):hover .dot::before {
  opacity: 1;
}
.history-page .history-container .sticky-container .timeline-nav .nav-item .label-wrapper {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  right: 100%;
  white-space: nowrap;
  padding-right: 5px;
}
.history-page .history-container .sticky-container .timeline-nav .nav-item .label-wrapper .horizontal-line {
  width: 12px;
  height: 2px;
  background-color: rgba(35, 31, 32, 0.3);
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  margin-left: 5px;
}
.history-page .history-container .sticky-container .timeline-nav .nav-item .label-wrapper .year-label {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.563rem;
  color: rgba(35, 31, 32, 0.7);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.history-page .history-container .sticky-container .timeline-nav .nav-item:nth-of-type(even) .label-wrapper {
  right: auto;
  left: 100%;
  padding-right: 0;
  padding-left: 5px;
}
.history-page .history-container .sticky-container .timeline-nav .nav-item:nth-of-type(even) .label-wrapper .horizontal-line {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  margin-left: 0;
  margin-right: 5px;
}
.history-page .history-container .sticky-container .timeline-nav .nav-item:nth-of-type(even) .label-wrapper .year-label {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.history-page .history-container .sticky-container .timeline-nav .nav-item.active .dot::after {
  width: 11px;
  height: 11px;
  background-color: #ED1C24;
}
.history-page .history-container .sticky-container .timeline-nav .nav-item.active .year-label {
  color: #ED1C24;
}
.history-page .history-container .sticky-container .timeline-nav .nav-item.active .horizontal-line {
  background-color: #ED1C24;
}
.history-page .history-container .cards-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 50px;
  position: relative;
  z-index: 10;
}

.produit {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 100px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 100px;
  margin-bottom: 150px;
}
@media screen and (max-width: 1110px) {
  .produit {
    -ms-grid-columns: 1fr;
    grid-template-columns: repeat(1, 1fr);
    gap: 50px;
    margin-bottom: 50px;
  }
}
.produit .sticky-container {
  position: relative;
  height: 100%;
}
.produit .sticky-container .post-left {
  border-radius: 10px;
  overflow: hidden;
  height: 450px;
  position: sticky;
  top: 150px;
}
@media screen and (max-width: 764px) {
  .produit .sticky-container .post-left {
    height: 500px;
  }
}
.produit .sticky-container .post-left .gamme-name {
  position: absolute;
  left: 30px;
  top: 30px;
  color: #fff;
  font-size: 1.875rem;
  line-height: 2.188rem;
  font-weight: 800;
}
@media screen and (max-width: 1110px) {
  .produit .sticky-container .post-left .gamme-name {
    font-size: 1.563rem;
    line-height: 1.875rem;
  }
}
.produit .sticky-container .post-left .badge-container {
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 85px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  left: 0;
  gap: 10px;
}
.produit .sticky-container .post-left .badge-container span {
  padding: 4px 35px 4px 50px;
}
.produit .sticky-container .post-left .bkg {
  z-index: -1;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.produit .sticky-container .post-left .img-wrapper {
  position: absolute;
  z-index: 1;
  inset: 0;
  height: 330px;
  top: 20px;
  bottom: 100px;
}
@media screen and (max-width: 764px) {
  .produit .sticky-container .post-left .img-wrapper {
    height: 250px;
    top: 150px;
  }
}
.produit .sticky-container .post-left .img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.produit .sticky-container .post-left .btn, .produit .sticky-container .post-left .contact-form .contact-form-right .gform-footer .gform_button, .contact-form .contact-form-right .gform-footer .produit .sticky-container .post-left .gform_button {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: 1;
  width: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.produit .post-right .subtitle {
  color: #231F20;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.25rem;
  margin-top: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}
.produit .post-right .subtitle span {
  color: #ED1C24;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}
.produit .post-right .subtitle span::before {
  content: "";
  background-color: rgba(35, 31, 32, 0.7);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 3px;
}
.produit .post-right .content {
  margin-top: 20px;
  font-size: 1rem;
  line-height: 1.25rem;
  font-weight: 600;
  color: rgba(35, 31, 32, 0.7);
}
@media screen and (max-width: 1110px) {
  .produit .post-right .content {
    font-size: 0.875rem;
    line-height: 1.125rem;
  }
}
.produit .post-right .specification-container {
  margin-top: 40px;
}
@media screen and (max-width: 1110px) {
  .produit .post-right .specification-container {
    margin-top: 30px;
  }
}
.produit .post-right .specification-container .specification-items {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 1110px) {
  .produit .post-right .specification-container .specification-items {
    margin-top: 10px;
  }
}
.produit .post-right .specification-container .specification-items .specification-item {
  padding: 15px 0;
  border-bottom: 1px solid rgba(35, 31, 32, 0.15);
  font-size: 1.125rem;
  line-height: 1.438rem;
  color: rgba(35, 31, 32, 0.7);
  font-weight: 700;
}
@media screen and (max-width: 1110px) {
  .produit .post-right .specification-container .specification-items .specification-item {
    font-size: 0.875rem;
    line-height: 1.125rem;
  }
}
.produit .post-right .formats-container {
  margin-top: 70px;
}
@media screen and (max-width: 1110px) {
  .produit .post-right .formats-container {
    margin-top: 50px;
  }
}
.produit .post-right .formats-container .formats-items {
  margin-top: 20px;
  gap: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 1110px) {
  .produit .post-right .formats-container .formats-items {
    margin-top: 10px;
  }
}
.produit .post-right .formats-container .formats-items .formats-item {
  width: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 calc(50% - 5px);
          flex: 1 1 calc(50% - 5px);
  border-radius: 5px;
  background-color: rgba(35, 31, 32, 0.05);
  padding: 25px 30px 25px 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
}
@media screen and (max-width: 1110px) {
  .produit .post-right .formats-container .formats-items .formats-item {
    padding: 20px;
  }
}
.produit .post-right .formats-container .formats-items .formats-item:last-child:nth-child(odd) {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 100%;
          flex: 1 1 100%;
}
.produit .post-right .formats-container .formats-items .formats-item .top-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 1rem;
  line-height: 1.25rem;
  font-weight: 600;
}
@media screen and (max-width: 1110px) {
  .produit .post-right .formats-container .formats-items .formats-item .top-content {
    font-size: 0.875rem;
    line-height: 1.125rem;
  }
}
.produit .post-right .formats-container .formats-items .formats-item .name {
  color: #ED1C24;
  font-weight: 800;
  font-size: 1.25rem;
  line-height: 1.563rem;
}
@media screen and (max-width: 1110px) {
  .produit .post-right .formats-container .formats-items .formats-item .name {
    font-size: 1.125rem;
    line-height: 1.25rem;
  }
}

/* - - - -    Z-index Element Priority    - - - -  */