@charset "UTF-8";
@font-face {
  font-family: "GT America Black Italic";
  src: url("../fonts/GT-America-Extended/GT-America-Extended-Black-Italic.otf") format("opentype"); /* Format OFT */
  font-display: swap;
}
@font-face {
  font-family: "GT America Bold";
  src: url("../fonts/GT-America-Extended/GT-America-Extended-Bold.otf") format("opentype"); /* Format OFT */
  font-display: swap;
}
@font-face {
  font-family: "GT America Medium Italic";
  src: url("../fonts/GT-America-Extended/GT-America-Extended-Medium-Italic.otf") format("opentype"); /* Format OFT */
  font-display: swap;
}
@font-face {
  font-family: "GT America Regular";
  src: url("../fonts/GT-America-Extended/GT-America-Extended-Regular.otf") format("opentype"); /* Format OFT */
  font-display: swap;
}
@font-face {
  font-family: "Minion Pro Regular";
  src: url("../fonts/Minion-Pro-Regular/MinionPro-Regular.otf") format("opentype"); /* Format OFT */
  font-display: swap;
}
@font-face {
  font-family: "GT America Thin Italic";
  src: url("../fonts/GT-America-Extended/GT-America-Extended-Thin-Italic.otf") format("opentype"); /* Format OFT */
  font-display: swap;
}
@font-face {
  font-family: "GT America Bold Italic";
  src: url("../fonts/GT-America-Extended/GT-America-Extended-Bold-Italic.otf") format("opentype"); /* Format OFT */
  font-display: swap;
}
/*!
* KNACSS Reborn: Just keep it simple!
* @author: Alsacreations
* v8.2 2022/01
* Licence WTFPL http://www.wtfpl.net/
*/
/* ----------------------------- */
/* ==Reset (base)                */
/* ----------------------------- */
/*
 * 1. Switch to border-box model for all elements
 * 2. Avoid min-width: auto on flex and grid items
 */
*,
*::before,
*::after {
  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;
  scroll-padding-top: 50px;
}

figure {
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  font-family: sans-serif;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.5;
  background-color: #f5f5eb;
  color: #121213;
}

/*
 * Headings
 */
/*
 * Links
 */
a {
  color: #121213;
  text-decoration: underline;
}

a:focus,
a:hover,
a:active {
  color: #121213;
  text-decoration: underline;
}

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

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.75rem;
}

blockquote {
  border-left: 4px solid #b1afff;
  color: #b1afff;
  margin-left: 0;
  padding-left: 20px;
  margin: 30px 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 {
  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;
}

/* 
 * 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;
    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 cursor on disabled, not-editable, or otherwise
 * inoperable elements in all browsers.
 */
[aria-disabled=true],
[disabled] {
  cursor: not-allowed;
}

/*
 * 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] {
  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.25rem;
  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;
}

/*
 * 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;
    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: "";
  }
}
/* ----------------------------  */
/* ==Layout classes              */
/* ----------------------------- */
/* Global container */
.layout-maxed {
  display: grid;
}
@media (min-width: 576px) {
  .layout-maxed {
    grid-template-columns: minmax(0.75rem, 1fr) minmax(auto, 576px) minmax(0.75rem, 1fr);
  }
}
@media (min-width: 992px) {
  .layout-maxed {
    grid-template-columns: minmax(0.75rem, 1fr) minmax(auto, 992px) minmax(0.75rem, 1fr);
  }
}
@media (min-width: 1400px) {
  .layout-maxed {
    grid-template-columns: minmax(0.75rem, 1fr) minmax(auto, 1400px) minmax(0.75rem, 1fr);
  }
}

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

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

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

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

/* 
 * Global utility classes 
 */
.hidden {
  display: none;
}

.block {
  display: block;
}

.inline {
  display: inline;
}

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

.flex {
  display: flex;
}

.flex-row {
  flex-direction: row;
}

.flex-col {
  flex-direction: column;
}

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

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

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

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

.flex-grow {
  flex-grow: 1;
}

.flex-no-grow {
  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 {
  justify-content: flex-start;
}

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

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

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

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

.justify-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 {
  align-content: start;
}

.align-end {
  align-content: end;
}

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

.align-between {
  align-content: space-between;
}

.align-around {
  align-content: space-around;
}

.align-evenly {
  align-content: space-evenly;
}

.align-items-start {
  align-items: flex-start;
}

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

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

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

.justify-self-auto {
  justify-self: auto;
}

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

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

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

.justify-self-stretch {
  justify-self: stretch;
}

.align-self-auto {
  align-self: auto;
}

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

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

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

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

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

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

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

.item-first {
  order: -100;
}

.item-last {
  order: 100;
}

@media (min-width: 576px) {
  .sm\:hidden {
    display: none;
  }
}
@media (min-width: 992px) {
  .md\:hidden {
    display: none;
  }
}
@media (min-width: 1400px) {
  .lg\:hidden {
    display: none;
  }
}
@media (min-width: 576px) {
  .sm\:block {
    display: block;
  }
}
@media (min-width: 992px) {
  .md\:block {
    display: block;
  }
}
@media (min-width: 1400px) {
  .lg\:block {
    display: block;
  }
}
@media (min-width: 576px) {
  .sm\:inline {
    display: inline;
  }
}
@media (min-width: 992px) {
  .md\:inline {
    display: inline;
  }
}
@media (min-width: 1400px) {
  .lg\:inline {
    display: inline;
  }
}
@media (min-width: 576px) {
  .sm\:inline-block {
    display: inline-block;
  }
}
@media (min-width: 992px) {
  .md\:inline-block {
    display: inline-block;
  }
}
@media (min-width: 1400px) {
  .lg\:inline-block {
    display: inline-block;
  }
}
@media (min-width: 576px) {
  .sm\:flex {
    display: flex;
  }
}
@media (min-width: 992px) {
  .md\:flex {
    display: flex;
  }
}
@media (min-width: 1400px) {
  .lg\:flex {
    display: flex;
  }
}
@media (min-width: 576px) {
  .sm\:flex-row {
    flex-direction: row;
  }
}
@media (min-width: 992px) {
  .md\:flex-row {
    flex-direction: row;
  }
}
@media (min-width: 1400px) {
  .lg\:flex-row {
    flex-direction: row;
  }
}
@media (min-width: 576px) {
  .sm\:flex-col {
    flex-direction: column;
  }
}
@media (min-width: 992px) {
  .md\:flex-col {
    flex-direction: column;
  }
}
@media (min-width: 1400px) {
  .lg\:flex-col {
    flex-direction: column;
  }
}
@media (min-width: 576px) {
  .sm\:flex-wrap {
    flex-wrap: wrap;
  }
}
@media (min-width: 992px) {
  .md\:flex-wrap {
    flex-wrap: wrap;
  }
}
@media (min-width: 1400px) {
  .lg\:flex-wrap {
    flex-wrap: wrap;
  }
}
@media (min-width: 576px) {
  .sm\:flex-no-wrap {
    flex-wrap: nowrap;
  }
}
@media (min-width: 992px) {
  .md\:flex-no-wrap {
    flex-wrap: nowrap;
  }
}
@media (min-width: 1400px) {
  .lg\:flex-no-wrap {
    flex-wrap: nowrap;
  }
}
@media (min-width: 576px) {
  .sm\:flex-shrink {
    flex-shrink: 1;
  }
}
@media (min-width: 992px) {
  .md\:flex-shrink {
    flex-shrink: 1;
  }
}
@media (min-width: 1400px) {
  .lg\:flex-shrink {
    flex-shrink: 1;
  }
}
@media (min-width: 576px) {
  .sm\:flex-no-shrink {
    flex-shrink: 0;
  }
}
@media (min-width: 992px) {
  .md\:flex-no-shrink {
    flex-shrink: 0;
  }
}
@media (min-width: 1400px) {
  .lg\:flex-no-shrink {
    flex-shrink: 0;
  }
}
@media (min-width: 576px) {
  .sm\:flex-grow {
    flex-grow: 1;
  }
}
@media (min-width: 992px) {
  .md\:flex-grow {
    flex-grow: 1;
  }
}
@media (min-width: 1400px) {
  .lg\:flex-grow {
    flex-grow: 1;
  }
}
@media (min-width: 576px) {
  .sm\:flex-no-grow {
    flex-grow: 0;
  }
}
@media (min-width: 992px) {
  .md\:flex-no-grow {
    flex-grow: 0;
  }
}
@media (min-width: 1400px) {
  .lg\:flex-no-grow {
    flex-grow: 0;
  }
}
@media (min-width: 576px) {
  .sm\:float-left {
    float: left;
  }
}
@media (min-width: 992px) {
  .md\:float-left {
    float: left;
  }
}
@media (min-width: 1400px) {
  .lg\:float-left {
    float: left;
  }
}
@media (min-width: 576px) {
  .sm\:float-right {
    float: right;
  }
}
@media (min-width: 992px) {
  .md\:float-right {
    float: right;
  }
}
@media (min-width: 1400px) {
  .lg\:float-right {
    float: right;
  }
}
@media (min-width: 576px) {
  .sm\:float-none {
    float: none;
  }
}
@media (min-width: 992px) {
  .md\:float-none {
    float: none;
  }
}
@media (min-width: 1400px) {
  .lg\:float-none {
    float: none;
  }
}
@media (min-width: 576px) {
  .sm\:text-bold {
    font-weight: bold;
  }
}
@media (min-width: 992px) {
  .md\:text-bold {
    font-weight: bold;
  }
}
@media (min-width: 1400px) {
  .lg\:text-bold {
    font-weight: bold;
  }
}
@media (min-width: 576px) {
  .sm\:text-italic {
    font-style: italic;
  }
}
@media (min-width: 992px) {
  .md\:text-italic {
    font-style: italic;
  }
}
@media (min-width: 1400px) {
  .lg\:text-italic {
    font-style: italic;
  }
}
@media (min-width: 576px) {
  .sm\:text-uppercase {
    text-transform: uppercase;
  }
}
@media (min-width: 992px) {
  .md\:text-uppercase {
    text-transform: uppercase;
  }
}
@media (min-width: 1400px) {
  .lg\:text-uppercase {
    text-transform: uppercase;
  }
}
@media (min-width: 576px) {
  .sm\:text-lowercase {
    text-transform: lowercase;
  }
}
@media (min-width: 992px) {
  .md\:text-lowercase {
    text-transform: lowercase;
  }
}
@media (min-width: 1400px) {
  .lg\:text-lowercase {
    text-transform: lowercase;
  }
}
@media (min-width: 576px) {
  .sm\:text-smaller {
    font-size: smaller;
  }
}
@media (min-width: 992px) {
  .md\:text-smaller {
    font-size: smaller;
  }
}
@media (min-width: 1400px) {
  .lg\:text-smaller {
    font-size: smaller;
  }
}
@media (min-width: 576px) {
  .sm\:text-larger {
    font-size: larger;
  }
}
@media (min-width: 992px) {
  .md\:text-larger {
    font-size: larger;
  }
}
@media (min-width: 1400px) {
  .lg\:text-larger {
    font-size: larger;
  }
}
@media (min-width: 576px) {
  .sm\:text-left {
    text-align: left;
  }
}
@media (min-width: 992px) {
  .md\:text-left {
    text-align: left;
  }
}
@media (min-width: 1400px) {
  .lg\:text-left {
    text-align: left;
  }
}
@media (min-width: 576px) {
  .sm\:text-center {
    text-align: center;
  }
}
@media (min-width: 992px) {
  .md\:text-center {
    text-align: center;
  }
}
@media (min-width: 1400px) {
  .lg\:text-center {
    text-align: center;
  }
}
@media (min-width: 576px) {
  .sm\:text-right {
    text-align: right;
  }
}
@media (min-width: 992px) {
  .md\:text-right {
    text-align: right;
  }
}
@media (min-width: 1400px) {
  .lg\:text-right {
    text-align: right;
  }
}
@media (min-width: 576px) {
  .sm\:text-justify {
    text-align: justify;
  }
}
@media (min-width: 992px) {
  .md\:text-justify {
    text-align: justify;
  }
}
@media (min-width: 1400px) {
  .lg\:text-justify {
    text-align: justify;
  }
}
@media (min-width: 576px) {
  .sm\:text-wrap {
    overflow-wrap: break-word;
  }
}
@media (min-width: 992px) {
  .md\:text-wrap {
    overflow-wrap: break-word;
  }
}
@media (min-width: 1400px) {
  .lg\:text-wrap {
    overflow-wrap: break-word;
  }
}
@media (min-width: 576px) {
  .sm\:justify-start {
    justify-content: flex-start;
  }
}
@media (min-width: 992px) {
  .md\:justify-start {
    justify-content: flex-start;
  }
}
@media (min-width: 1400px) {
  .lg\:justify-start {
    justify-content: flex-start;
  }
}
@media (min-width: 576px) {
  .sm\:justify-end {
    justify-content: flex-end;
  }
}
@media (min-width: 992px) {
  .md\:justify-end {
    justify-content: flex-end;
  }
}
@media (min-width: 1400px) {
  .lg\:justify-end {
    justify-content: flex-end;
  }
}
@media (min-width: 576px) {
  .sm\:justify-center {
    justify-content: center;
  }
}
@media (min-width: 992px) {
  .md\:justify-center {
    justify-content: center;
  }
}
@media (min-width: 1400px) {
  .lg\:justify-center {
    justify-content: center;
  }
}
@media (min-width: 576px) {
  .sm\:justify-between {
    justify-content: space-between;
  }
}
@media (min-width: 992px) {
  .md\:justify-between {
    justify-content: space-between;
  }
}
@media (min-width: 1400px) {
  .lg\:justify-between {
    justify-content: space-between;
  }
}
@media (min-width: 576px) {
  .sm\:justify-around {
    justify-content: space-around;
  }
}
@media (min-width: 992px) {
  .md\:justify-around {
    justify-content: space-around;
  }
}
@media (min-width: 1400px) {
  .lg\:justify-around {
    justify-content: space-around;
  }
}
@media (min-width: 576px) {
  .sm\:justify-evenly {
    justify-content: space-evenly;
  }
}
@media (min-width: 992px) {
  .md\:justify-evenly {
    justify-content: space-evenly;
  }
}
@media (min-width: 1400px) {
  .lg\:justify-evenly {
    justify-content: space-evenly;
  }
}
@media (min-width: 576px) {
  .sm\:justify-items-start {
    justify-items: start;
  }
}
@media (min-width: 992px) {
  .md\:justify-items-start {
    justify-items: start;
  }
}
@media (min-width: 1400px) {
  .lg\:justify-items-start {
    justify-items: start;
  }
}
@media (min-width: 576px) {
  .sm\:justify-items-end {
    justify-items: end;
  }
}
@media (min-width: 992px) {
  .md\:justify-items-end {
    justify-items: end;
  }
}
@media (min-width: 1400px) {
  .lg\:justify-items-end {
    justify-items: end;
  }
}
@media (min-width: 576px) {
  .sm\:justify-items-center {
    justify-items: center;
  }
}
@media (min-width: 992px) {
  .md\:justify-items-center {
    justify-items: center;
  }
}
@media (min-width: 1400px) {
  .lg\:justify-items-center {
    justify-items: center;
  }
}
@media (min-width: 576px) {
  .sm\:align-start {
    align-content: start;
  }
}
@media (min-width: 992px) {
  .md\:align-start {
    align-content: start;
  }
}
@media (min-width: 1400px) {
  .lg\:align-start {
    align-content: start;
  }
}
@media (min-width: 576px) {
  .sm\:align-end {
    align-content: end;
  }
}
@media (min-width: 992px) {
  .md\:align-end {
    align-content: end;
  }
}
@media (min-width: 1400px) {
  .lg\:align-end {
    align-content: end;
  }
}
@media (min-width: 576px) {
  .sm\:align-center {
    align-content: center;
  }
}
@media (min-width: 992px) {
  .md\:align-center {
    align-content: center;
  }
}
@media (min-width: 1400px) {
  .lg\:align-center {
    align-content: center;
  }
}
@media (min-width: 576px) {
  .sm\:align-between {
    align-content: space-between;
  }
}
@media (min-width: 992px) {
  .md\:align-between {
    align-content: space-between;
  }
}
@media (min-width: 1400px) {
  .lg\:align-between {
    align-content: space-between;
  }
}
@media (min-width: 576px) {
  .sm\:align-around {
    align-content: space-around;
  }
}
@media (min-width: 992px) {
  .md\:align-around {
    align-content: space-around;
  }
}
@media (min-width: 1400px) {
  .lg\:align-around {
    align-content: space-around;
  }
}
@media (min-width: 576px) {
  .sm\:align-evenly {
    align-content: space-evenly;
  }
}
@media (min-width: 992px) {
  .md\:align-evenly {
    align-content: space-evenly;
  }
}
@media (min-width: 1400px) {
  .lg\:align-evenly {
    align-content: space-evenly;
  }
}
@media (min-width: 576px) {
  .sm\:align-items-start {
    align-items: flex-start;
  }
}
@media (min-width: 992px) {
  .md\:align-items-start {
    align-items: flex-start;
  }
}
@media (min-width: 1400px) {
  .lg\:align-items-start {
    align-items: flex-start;
  }
}
@media (min-width: 576px) {
  .sm\:align-items-end {
    align-items: flex-end;
  }
}
@media (min-width: 992px) {
  .md\:align-items-end {
    align-items: flex-end;
  }
}
@media (min-width: 1400px) {
  .lg\:align-items-end {
    align-items: flex-end;
  }
}
@media (min-width: 576px) {
  .sm\:align-items-center {
    align-items: center;
  }
}
@media (min-width: 992px) {
  .md\:align-items-center {
    align-items: center;
  }
}
@media (min-width: 1400px) {
  .lg\:align-items-center {
    align-items: center;
  }
}
@media (min-width: 576px) {
  .sm\:place-center {
    place-content: center;
  }
}
@media (min-width: 992px) {
  .md\:place-center {
    place-content: center;
  }
}
@media (min-width: 1400px) {
  .lg\:place-center {
    place-content: center;
  }
}
@media (min-width: 576px) {
  .sm\:justify-self-auto {
    justify-self: auto;
  }
}
@media (min-width: 992px) {
  .md\:justify-self-auto {
    justify-self: auto;
  }
}
@media (min-width: 1400px) {
  .lg\:justify-self-auto {
    justify-self: auto;
  }
}
@media (min-width: 576px) {
  .sm\:justify-self-start {
    justify-self: start;
  }
}
@media (min-width: 992px) {
  .md\:justify-self-start {
    justify-self: start;
  }
}
@media (min-width: 1400px) {
  .lg\:justify-self-start {
    justify-self: start;
  }
}
@media (min-width: 576px) {
  .sm\:justify-self-end {
    justify-self: end;
  }
}
@media (min-width: 992px) {
  .md\:justify-self-end {
    justify-self: end;
  }
}
@media (min-width: 1400px) {
  .lg\:justify-self-end {
    justify-self: end;
  }
}
@media (min-width: 576px) {
  .sm\:justify-self-center {
    justify-self: center;
  }
}
@media (min-width: 992px) {
  .md\:justify-self-center {
    justify-self: center;
  }
}
@media (min-width: 1400px) {
  .lg\:justify-self-center {
    justify-self: center;
  }
}
@media (min-width: 576px) {
  .sm\:justify-self-stretch {
    justify-self: stretch;
  }
}
@media (min-width: 992px) {
  .md\:justify-self-stretch {
    justify-self: stretch;
  }
}
@media (min-width: 1400px) {
  .lg\:justify-self-stretch {
    justify-self: stretch;
  }
}
@media (min-width: 576px) {
  .sm\:align-self-auto {
    align-self: auto;
  }
}
@media (min-width: 992px) {
  .md\:align-self-auto {
    align-self: auto;
  }
}
@media (min-width: 1400px) {
  .lg\:align-self-auto {
    align-self: auto;
  }
}
@media (min-width: 576px) {
  .sm\:align-self-start {
    align-self: flex-start;
  }
}
@media (min-width: 992px) {
  .md\:align-self-start {
    align-self: flex-start;
  }
}
@media (min-width: 1400px) {
  .lg\:align-self-start {
    align-self: flex-start;
  }
}
@media (min-width: 576px) {
  .sm\:align-self-end {
    align-self: flex-end;
  }
}
@media (min-width: 992px) {
  .md\:align-self-end {
    align-self: flex-end;
  }
}
@media (min-width: 1400px) {
  .lg\:align-self-end {
    align-self: flex-end;
  }
}
@media (min-width: 576px) {
  .sm\:align-self-center {
    align-self: center;
  }
}
@media (min-width: 992px) {
  .md\:align-self-center {
    align-self: center;
  }
}
@media (min-width: 1400px) {
  .lg\:align-self-center {
    align-self: center;
  }
}
@media (min-width: 576px) {
  .sm\:align-self-stretch {
    align-self: stretch;
  }
}
@media (min-width: 992px) {
  .md\:align-self-stretch {
    align-self: stretch;
  }
}
@media (min-width: 1400px) {
  .lg\:align-self-stretch {
    align-self: stretch;
  }
}
@media (min-width: 576px) {
  .sm\:align-top {
    vertical-align: top;
  }
}
@media (min-width: 992px) {
  .md\:align-top {
    vertical-align: top;
  }
}
@media (min-width: 1400px) {
  .lg\:align-top {
    vertical-align: top;
  }
}
@media (min-width: 576px) {
  .sm\:align-bottom {
    vertical-align: bottom;
  }
}
@media (min-width: 992px) {
  .md\:align-bottom {
    vertical-align: bottom;
  }
}
@media (min-width: 1400px) {
  .lg\:align-bottom {
    vertical-align: bottom;
  }
}
@media (min-width: 576px) {
  .sm\:align-middle {
    vertical-align: middle;
  }
}
@media (min-width: 992px) {
  .md\:align-middle {
    vertical-align: middle;
  }
}
@media (min-width: 1400px) {
  .lg\:align-middle {
    vertical-align: middle;
  }
}
@media (min-width: 576px) {
  .sm\:item-first {
    order: -100;
  }
}
@media (min-width: 992px) {
  .md\:item-first {
    order: -100;
  }
}
@media (min-width: 1400px) {
  .lg\:item-first {
    order: -100;
  }
}
@media (min-width: 576px) {
  .sm\:item-last {
    order: 100;
  }
}
@media (min-width: 992px) {
  .md\:item-last {
    order: 100;
  }
}
@media (min-width: 1400px) {
  .lg\:item-last {
    order: 100;
  }
}
.is-unstyled {
  list-style: none;
  padding-left: 0;
}

.is-disabled,
[disabled] {
  opacity: 0.6;
  cursor: not-allowed !important;
  filter: grayscale(1);
}

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

@media (min-width: 576px) {
  .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;
    filter: grayscale(1);
  }
  .sm\:text-normal {
    font-weight: normal;
    font-style: normal;
    text-transform: none;
  }
}
@media (min-width: 992px) {
  .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;
    filter: grayscale(1);
  }
  .md\:text-normal {
    font-weight: normal;
    font-style: normal;
    text-transform: none;
  }
}
@media (min-width: 1400px) {
  .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;
    filter: grayscale(1);
  }
  .lg\: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-13 {
  font-size: 0.813rem;
}

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

.text-15 {
  font-size: 0.938rem;
}

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

.text-17 {
  font-size: 1.063rem;
}

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

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

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

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

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

.text-28 {
  font-size: 1.75rem;
}

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

.text-32 {
  font-size: 2rem;
}

.text-34 {
  font-size: 2.125rem;
}

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

.text-38 {
  font-size: 2.375rem;
}

.text-42 {
  font-size: 2.625rem;
}

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

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

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

@media (min-width: 576px) {
  .sm\:text-10 {
    font-size: 0.625rem;
  }
}
@media (min-width: 992px) {
  .md\:text-10 {
    font-size: 0.625rem;
  }
}
@media (min-width: 1400px) {
  .lg\:text-10 {
    font-size: 0.625rem;
  }
}
@media (min-width: 576px) {
  .sm\:text-11 {
    font-size: 0.6875rem;
  }
}
@media (min-width: 992px) {
  .md\:text-11 {
    font-size: 0.6875rem;
  }
}
@media (min-width: 1400px) {
  .lg\:text-11 {
    font-size: 0.6875rem;
  }
}
@media (min-width: 576px) {
  .sm\:text-12 {
    font-size: 0.75rem;
  }
}
@media (min-width: 992px) {
  .md\:text-12 {
    font-size: 0.75rem;
  }
}
@media (min-width: 1400px) {
  .lg\:text-12 {
    font-size: 0.75rem;
  }
}
@media (min-width: 576px) {
  .sm\:text-13 {
    font-size: 0.813rem;
  }
}
@media (min-width: 992px) {
  .md\:text-13 {
    font-size: 0.813rem;
  }
}
@media (min-width: 1400px) {
  .lg\:text-13 {
    font-size: 0.813rem;
  }
}
@media (min-width: 576px) {
  .sm\:text-14 {
    font-size: 0.875rem;
  }
}
@media (min-width: 992px) {
  .md\:text-14 {
    font-size: 0.875rem;
  }
}
@media (min-width: 1400px) {
  .lg\:text-14 {
    font-size: 0.875rem;
  }
}
@media (min-width: 576px) {
  .sm\:text-15 {
    font-size: 0.938rem;
  }
}
@media (min-width: 992px) {
  .md\:text-15 {
    font-size: 0.938rem;
  }
}
@media (min-width: 1400px) {
  .lg\:text-15 {
    font-size: 0.938rem;
  }
}
@media (min-width: 576px) {
  .sm\:text-16 {
    font-size: 1rem;
  }
}
@media (min-width: 992px) {
  .md\:text-16 {
    font-size: 1rem;
  }
}
@media (min-width: 1400px) {
  .lg\:text-16 {
    font-size: 1rem;
  }
}
@media (min-width: 576px) {
  .sm\:text-17 {
    font-size: 1.063rem;
  }
}
@media (min-width: 992px) {
  .md\:text-17 {
    font-size: 1.063rem;
  }
}
@media (min-width: 1400px) {
  .lg\:text-17 {
    font-size: 1.063rem;
  }
}
@media (min-width: 576px) {
  .sm\:text-18 {
    font-size: 1.125rem;
  }
}
@media (min-width: 992px) {
  .md\:text-18 {
    font-size: 1.125rem;
  }
}
@media (min-width: 1400px) {
  .lg\:text-18 {
    font-size: 1.125rem;
  }
}
@media (min-width: 576px) {
  .sm\:text-20 {
    font-size: 1.25rem;
  }
}
@media (min-width: 992px) {
  .md\:text-20 {
    font-size: 1.25rem;
  }
}
@media (min-width: 1400px) {
  .lg\:text-20 {
    font-size: 1.25rem;
  }
}
@media (min-width: 576px) {
  .sm\:text-22 {
    font-size: 1.375rem;
  }
}
@media (min-width: 992px) {
  .md\:text-22 {
    font-size: 1.375rem;
  }
}
@media (min-width: 1400px) {
  .lg\:text-22 {
    font-size: 1.375rem;
  }
}
@media (min-width: 576px) {
  .sm\:text-24 {
    font-size: 1.5rem;
  }
}
@media (min-width: 992px) {
  .md\:text-24 {
    font-size: 1.5rem;
  }
}
@media (min-width: 1400px) {
  .lg\:text-24 {
    font-size: 1.5rem;
  }
}
@media (min-width: 576px) {
  .sm\:text-26 {
    font-size: 1.625rem;
  }
}
@media (min-width: 992px) {
  .md\:text-26 {
    font-size: 1.625rem;
  }
}
@media (min-width: 1400px) {
  .lg\:text-26 {
    font-size: 1.625rem;
  }
}
@media (min-width: 576px) {
  .sm\:text-28 {
    font-size: 1.75rem;
  }
}
@media (min-width: 992px) {
  .md\:text-28 {
    font-size: 1.75rem;
  }
}
@media (min-width: 1400px) {
  .lg\:text-28 {
    font-size: 1.75rem;
  }
}
@media (min-width: 576px) {
  .sm\:text-30 {
    font-size: 1.875rem;
  }
}
@media (min-width: 992px) {
  .md\:text-30 {
    font-size: 1.875rem;
  }
}
@media (min-width: 1400px) {
  .lg\:text-30 {
    font-size: 1.875rem;
  }
}
@media (min-width: 576px) {
  .sm\:text-32 {
    font-size: 2rem;
  }
}
@media (min-width: 992px) {
  .md\:text-32 {
    font-size: 2rem;
  }
}
@media (min-width: 1400px) {
  .lg\:text-32 {
    font-size: 2rem;
  }
}
@media (min-width: 576px) {
  .sm\:text-34 {
    font-size: 2.125rem;
  }
}
@media (min-width: 992px) {
  .md\:text-34 {
    font-size: 2.125rem;
  }
}
@media (min-width: 1400px) {
  .lg\:text-34 {
    font-size: 2.125rem;
  }
}
@media (min-width: 576px) {
  .sm\:text-36 {
    font-size: 2.25rem;
  }
}
@media (min-width: 992px) {
  .md\:text-36 {
    font-size: 2.25rem;
  }
}
@media (min-width: 1400px) {
  .lg\:text-36 {
    font-size: 2.25rem;
  }
}
@media (min-width: 576px) {
  .sm\:text-38 {
    font-size: 2.375rem;
  }
}
@media (min-width: 992px) {
  .md\:text-38 {
    font-size: 2.375rem;
  }
}
@media (min-width: 1400px) {
  .lg\:text-38 {
    font-size: 2.375rem;
  }
}
@media (min-width: 576px) {
  .sm\:text-42 {
    font-size: 2.625rem;
  }
}
@media (min-width: 992px) {
  .md\:text-42 {
    font-size: 2.625rem;
  }
}
@media (min-width: 1400px) {
  .lg\:text-42 {
    font-size: 2.625rem;
  }
}
@media (min-width: 576px) {
  .sm\:text-60 {
    font-size: 3.75rem;
  }
}
@media (min-width: 992px) {
  .md\:text-60 {
    font-size: 3.75rem;
  }
}
@media (min-width: 1400px) {
  .lg\:text-60 {
    font-size: 3.75rem;
  }
}
@media (min-width: 576px) {
  .sm\:text-base {
    font-size: 1rem;
  }
}
@media (min-width: 992px) {
  .md\:text-base {
    font-size: 1rem;
  }
}
@media (min-width: 1400px) {
  .lg\:text-base {
    font-size: 1rem;
  }
}
@media (min-width: 576px) {
  .sm\:text-inherit {
    font-size: inherit;
  }
}
@media (min-width: 992px) {
  .md\:text-inherit {
    font-size: inherit;
  }
}
@media (min-width: 1400px) {
  .lg\: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: 576px) {
  .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: 992px) {
  .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: 1400px) {
  .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;
  }
}
.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: 576px) {
  .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: 992px) {
  .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: 1400px) {
  .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;
  }
}
.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: 576px) {
  .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: 992px) {
  .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: 1400px) {
  .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;
  }
}
.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: 576px) {
  .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: 992px) {
  .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: 1400px) {
  .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;
  }
}
.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: 576px) {
  .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: 992px) {
  .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: 1400px) {
  .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;
  }
}
.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: 576px) {
  .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: 992px) {
  .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: 1400px) {
  .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;
  }
}
.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: 576px) {
  .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: 992px) {
  .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: 1400px) {
  .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;
  }
}
.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: 576px) {
  .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: 992px) {
  .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: 1400px) {
  .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;
  }
}
.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: 576px) {
  .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: 992px) {
  .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: 1400px) {
  .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;
  }
}
.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: 576px) {
  .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: 992px) {
  .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: 1400px) {
  .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;
  }
}
.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: 576px) {
  .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: 992px) {
  .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: 1400px) {
  .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;
  }
}
/* -------------------------------------------------- */
/* ==Grillade : système de micro-grille  de KNACSS   */
/* ------------------------------------------------ */
.grid {
  display: grid;
}
.grid.overflow-hidden {
  overflow: hidden;
}

@media (min-width: 576px) {
  .sm\:grid {
    display: grid;
  }
}
@media (min-width: 992px) {
  .md\:grid {
    display: grid;
  }
}
@media (min-width: 1400px) {
  .lg\:grid {
    display: grid;
  }
}
/* grid-template-columns initialisation */
.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

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

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

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

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

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

.grid-cols-7 {
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.grid-cols-8 {
  grid-template-columns: repeat(8, minmax(0, 1fr));
}

.grid-cols-9 {
  grid-template-columns: repeat(9, minmax(0, 1fr));
}

.grid-cols-10 {
  grid-template-columns: repeat(10, minmax(0, 1fr));
}

.grid-cols-11 {
  grid-template-columns: repeat(11, minmax(0, 1fr));
}

.grid-cols-12 {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.grid-cols-13 {
  grid-template-columns: repeat(13, minmax(0, 1fr));
}

.grid-cols-14 {
  grid-template-columns: repeat(14, minmax(0, 1fr));
}

.grid-cols-15 {
  grid-template-columns: repeat(15, minmax(0, 1fr));
}

.grid-cols-16 {
  grid-template-columns: repeat(16, minmax(0, 1fr));
}

.grid-cols-17 {
  grid-template-columns: repeat(17, minmax(0, 1fr));
}

.grid-cols-18 {
  grid-template-columns: repeat(18, minmax(0, 1fr));
}

.grid-cols-19 {
  grid-template-columns: repeat(19, minmax(0, 1fr));
}

.grid-cols-20 {
  grid-template-columns: repeat(20, minmax(0, 1fr));
}

.grid-cols-21 {
  grid-template-columns: repeat(21, minmax(0, 1fr));
}

.grid-cols-22 {
  grid-template-columns: repeat(22, minmax(0, 1fr));
}

.grid-cols-23 {
  grid-template-columns: repeat(23, minmax(0, 1fr));
}

.grid-cols-24 {
  grid-template-columns: repeat(24, minmax(0, 1fr));
}

/* grid-template-columns au sein des breakpoints */
@media (min-width: 576px) {
  .sm\:grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .sm\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .sm\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .sm\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .sm\:grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .sm\:grid-cols-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
  .sm\:grid-cols-7 {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }
  .sm\:grid-cols-8 {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }
  .sm\:grid-cols-9 {
    grid-template-columns: repeat(9, minmax(0, 1fr));
  }
  .sm\:grid-cols-10 {
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }
  .sm\:grid-cols-11 {
    grid-template-columns: repeat(11, minmax(0, 1fr));
  }
  .sm\:grid-cols-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
  .sm\:grid-cols-13 {
    grid-template-columns: repeat(13, minmax(0, 1fr));
  }
  .sm\:grid-cols-14 {
    grid-template-columns: repeat(14, minmax(0, 1fr));
  }
  .sm\:grid-cols-15 {
    grid-template-columns: repeat(15, minmax(0, 1fr));
  }
  .sm\:grid-cols-16 {
    grid-template-columns: repeat(16, minmax(0, 1fr));
  }
  .sm\:grid-cols-17 {
    grid-template-columns: repeat(17, minmax(0, 1fr));
  }
  .sm\:grid-cols-18 {
    grid-template-columns: repeat(18, minmax(0, 1fr));
  }
  .sm\:grid-cols-19 {
    grid-template-columns: repeat(19, minmax(0, 1fr));
  }
  .sm\:grid-cols-20 {
    grid-template-columns: repeat(20, minmax(0, 1fr));
  }
  .sm\:grid-cols-21 {
    grid-template-columns: repeat(21, minmax(0, 1fr));
  }
  .sm\:grid-cols-22 {
    grid-template-columns: repeat(22, minmax(0, 1fr));
  }
  .sm\:grid-cols-23 {
    grid-template-columns: repeat(23, minmax(0, 1fr));
  }
  .sm\:grid-cols-24 {
    grid-template-columns: repeat(24, minmax(0, 1fr));
  }
}
@media (min-width: 992px) {
  .md\:grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .md\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .md\:grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .md\:grid-cols-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
  .md\:grid-cols-7 {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }
  .md\:grid-cols-8 {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }
  .md\:grid-cols-9 {
    grid-template-columns: repeat(9, minmax(0, 1fr));
  }
  .md\:grid-cols-10 {
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }
  .md\:grid-cols-11 {
    grid-template-columns: repeat(11, minmax(0, 1fr));
  }
  .md\:grid-cols-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
  .md\:grid-cols-13 {
    grid-template-columns: repeat(13, minmax(0, 1fr));
  }
  .md\:grid-cols-14 {
    grid-template-columns: repeat(14, minmax(0, 1fr));
  }
  .md\:grid-cols-15 {
    grid-template-columns: repeat(15, minmax(0, 1fr));
  }
  .md\:grid-cols-16 {
    grid-template-columns: repeat(16, minmax(0, 1fr));
  }
  .md\:grid-cols-17 {
    grid-template-columns: repeat(17, minmax(0, 1fr));
  }
  .md\:grid-cols-18 {
    grid-template-columns: repeat(18, minmax(0, 1fr));
  }
  .md\:grid-cols-19 {
    grid-template-columns: repeat(19, minmax(0, 1fr));
  }
  .md\:grid-cols-20 {
    grid-template-columns: repeat(20, minmax(0, 1fr));
  }
  .md\:grid-cols-21 {
    grid-template-columns: repeat(21, minmax(0, 1fr));
  }
  .md\:grid-cols-22 {
    grid-template-columns: repeat(22, minmax(0, 1fr));
  }
  .md\:grid-cols-23 {
    grid-template-columns: repeat(23, minmax(0, 1fr));
  }
  .md\:grid-cols-24 {
    grid-template-columns: repeat(24, minmax(0, 1fr));
  }
}
@media (min-width: 1400px) {
  .lg\:grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .lg\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .lg\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .lg\:grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .lg\:grid-cols-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
  .lg\:grid-cols-7 {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }
  .lg\:grid-cols-8 {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }
  .lg\:grid-cols-9 {
    grid-template-columns: repeat(9, minmax(0, 1fr));
  }
  .lg\:grid-cols-10 {
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }
  .lg\:grid-cols-11 {
    grid-template-columns: repeat(11, minmax(0, 1fr));
  }
  .lg\:grid-cols-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
  .lg\:grid-cols-13 {
    grid-template-columns: repeat(13, minmax(0, 1fr));
  }
  .lg\:grid-cols-14 {
    grid-template-columns: repeat(14, minmax(0, 1fr));
  }
  .lg\:grid-cols-15 {
    grid-template-columns: repeat(15, minmax(0, 1fr));
  }
  .lg\:grid-cols-16 {
    grid-template-columns: repeat(16, minmax(0, 1fr));
  }
  .lg\:grid-cols-17 {
    grid-template-columns: repeat(17, minmax(0, 1fr));
  }
  .lg\:grid-cols-18 {
    grid-template-columns: repeat(18, minmax(0, 1fr));
  }
  .lg\:grid-cols-19 {
    grid-template-columns: repeat(19, minmax(0, 1fr));
  }
  .lg\:grid-cols-20 {
    grid-template-columns: repeat(20, minmax(0, 1fr));
  }
  .lg\:grid-cols-21 {
    grid-template-columns: repeat(21, minmax(0, 1fr));
  }
  .lg\:grid-cols-22 {
    grid-template-columns: repeat(22, minmax(0, 1fr));
  }
  .lg\:grid-cols-23 {
    grid-template-columns: repeat(23, minmax(0, 1fr));
  }
  .lg\:grid-cols-24 {
    grid-template-columns: repeat(24, minmax(0, 1fr));
  }
}
/* gap initialisation */
.gap-0 {
  gap: 0;
}

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

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

.gap-5 {
  gap: 0.313rem;
}

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

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

.gap-10 {
  gap: 0.625rem;
}

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

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

.gap-16 {
  gap: 1rem;
}

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

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

.gap-20 {
  gap: 1.25rem;
}

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

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

.gap-36 {
  gap: 2.25rem;
}

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

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

.gap-100 {
  gap: 6vw;
}

.gap-x-100 {
  -moz-column-gap: 6vw;
       column-gap: 6vw;
}

.gap-y-100 {
  row-gap: 6vw;
}

/* gap au sein des breakpoints */
@media (min-width: 576px) {
  .sm\:gap-0 {
    gap: 0;
  }
  .sm\:gap-x-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 {
    -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 {
    -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 {
    -moz-column-gap: 1rem;
         column-gap: 1rem;
  }
  .sm\:gap-y-16 {
    row-gap: 1rem;
  }
  .sm\:gap-20 {
    gap: 1.25rem;
  }
  .sm\:gap-x-20 {
    -moz-column-gap: 1.25rem;
         column-gap: 1.25rem;
  }
  .sm\:gap-y-20 {
    row-gap: 1.25rem;
  }
  .sm\:gap-36 {
    gap: 2.25rem;
  }
  .sm\:gap-x-36 {
    -moz-column-gap: 2.25rem;
         column-gap: 2.25rem;
  }
  .sm\:gap-y-36 {
    row-gap: 2.25rem;
  }
  .sm\:gap-100 {
    gap: 6vw;
  }
  .sm\:gap-x-100 {
    -moz-column-gap: 6vw;
         column-gap: 6vw;
  }
  .sm\:gap-y-100 {
    row-gap: 6vw;
  }
}
@media (min-width: 992px) {
  .md\:gap-0 {
    gap: 0;
  }
  .md\:gap-x-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 {
    -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 {
    -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 {
    -moz-column-gap: 1rem;
         column-gap: 1rem;
  }
  .md\:gap-y-16 {
    row-gap: 1rem;
  }
  .md\:gap-20 {
    gap: 1.25rem;
  }
  .md\:gap-x-20 {
    -moz-column-gap: 1.25rem;
         column-gap: 1.25rem;
  }
  .md\:gap-y-20 {
    row-gap: 1.25rem;
  }
  .md\:gap-36 {
    gap: 2.25rem;
  }
  .md\:gap-x-36 {
    -moz-column-gap: 2.25rem;
         column-gap: 2.25rem;
  }
  .md\:gap-y-36 {
    row-gap: 2.25rem;
  }
  .md\:gap-100 {
    gap: 6vw;
  }
  .md\:gap-x-100 {
    -moz-column-gap: 6vw;
         column-gap: 6vw;
  }
  .md\:gap-y-100 {
    row-gap: 6vw;
  }
}
@media (min-width: 1400px) {
  .lg\:gap-0 {
    gap: 0;
  }
  .lg\:gap-x-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 {
    -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 {
    -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 {
    -moz-column-gap: 1rem;
         column-gap: 1rem;
  }
  .lg\:gap-y-16 {
    row-gap: 1rem;
  }
  .lg\:gap-20 {
    gap: 1.25rem;
  }
  .lg\:gap-x-20 {
    -moz-column-gap: 1.25rem;
         column-gap: 1.25rem;
  }
  .lg\:gap-y-20 {
    row-gap: 1.25rem;
  }
  .lg\:gap-36 {
    gap: 2.25rem;
  }
  .lg\:gap-x-36 {
    -moz-column-gap: 2.25rem;
         column-gap: 2.25rem;
  }
  .lg\:gap-y-36 {
    row-gap: 2.25rem;
  }
  .lg\:gap-100 {
    gap: 6vw;
  }
  .lg\:gap-x-100 {
    -moz-column-gap: 6vw;
         column-gap: 6vw;
  }
  .lg\:gap-y-100 {
    row-gap: 6vw;
  }
}
/* grid-items initialisation */
.col-start-1 {
  grid-column-start: 1;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.col-start-7 {
  grid-column-start: 7;
}

.col-end-7 {
  grid-column-end: 7;
}

.col-span-7 {
  grid-column: span 7/span 7;
}

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

.row-start-7 {
  grid-row-start: 7;
}

.row-end-7 {
  grid-row-end: 7;
}

.row-span-7 {
  grid-row: span 7/span 7;
}

.col-start-8 {
  grid-column-start: 8;
}

.col-end-8 {
  grid-column-end: 8;
}

.col-span-8 {
  grid-column: span 8/span 8;
}

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

.row-start-8 {
  grid-row-start: 8;
}

.row-end-8 {
  grid-row-end: 8;
}

.row-span-8 {
  grid-row: span 8/span 8;
}

.col-start-9 {
  grid-column-start: 9;
}

.col-end-9 {
  grid-column-end: 9;
}

.col-span-9 {
  grid-column: span 9/span 9;
}

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

.row-start-9 {
  grid-row-start: 9;
}

.row-end-9 {
  grid-row-end: 9;
}

.row-span-9 {
  grid-row: span 9/span 9;
}

.col-start-10 {
  grid-column-start: 10;
}

.col-end-10 {
  grid-column-end: 10;
}

.col-span-10 {
  grid-column: span 10/span 10;
}

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

.row-start-10 {
  grid-row-start: 10;
}

.row-end-10 {
  grid-row-end: 10;
}

.row-span-10 {
  grid-row: span 10/span 10;
}

.col-start-11 {
  grid-column-start: 11;
}

.col-end-11 {
  grid-column-end: 11;
}

.col-span-11 {
  grid-column: span 11/span 11;
}

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

.row-start-11 {
  grid-row-start: 11;
}

.row-end-11 {
  grid-row-end: 11;
}

.row-span-11 {
  grid-row: span 11/span 11;
}

.col-start-12 {
  grid-column-start: 12;
}

.col-end-12 {
  grid-column-end: 12;
}

.col-span-12 {
  grid-column: span 12/span 12;
}

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

.row-start-12 {
  grid-row-start: 12;
}

.row-end-12 {
  grid-row-end: 12;
}

.row-span-12 {
  grid-row: span 12/span 12;
}

.col-start-13 {
  grid-column-start: 13;
}

.col-end-13 {
  grid-column-end: 13;
}

.col-span-13 {
  grid-column: span 13/span 13;
}

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

.row-start-13 {
  grid-row-start: 13;
}

.row-end-13 {
  grid-row-end: 13;
}

.row-span-13 {
  grid-row: span 13/span 13;
}

.col-start-14 {
  grid-column-start: 14;
}

.col-end-14 {
  grid-column-end: 14;
}

.col-span-14 {
  grid-column: span 14/span 14;
}

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

.row-start-14 {
  grid-row-start: 14;
}

.row-end-14 {
  grid-row-end: 14;
}

.row-span-14 {
  grid-row: span 14/span 14;
}

.col-start-15 {
  grid-column-start: 15;
}

.col-end-15 {
  grid-column-end: 15;
}

.col-span-15 {
  grid-column: span 15/span 15;
}

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

.row-start-15 {
  grid-row-start: 15;
}

.row-end-15 {
  grid-row-end: 15;
}

.row-span-15 {
  grid-row: span 15/span 15;
}

.col-start-16 {
  grid-column-start: 16;
}

.col-end-16 {
  grid-column-end: 16;
}

.col-span-16 {
  grid-column: span 16/span 16;
}

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

.row-start-16 {
  grid-row-start: 16;
}

.row-end-16 {
  grid-row-end: 16;
}

.row-span-16 {
  grid-row: span 16/span 16;
}

.col-start-17 {
  grid-column-start: 17;
}

.col-end-17 {
  grid-column-end: 17;
}

.col-span-17 {
  grid-column: span 17/span 17;
}

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

.row-start-17 {
  grid-row-start: 17;
}

.row-end-17 {
  grid-row-end: 17;
}

.row-span-17 {
  grid-row: span 17/span 17;
}

.col-start-18 {
  grid-column-start: 18;
}

.col-end-18 {
  grid-column-end: 18;
}

.col-span-18 {
  grid-column: span 18/span 18;
}

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

.row-start-18 {
  grid-row-start: 18;
}

.row-end-18 {
  grid-row-end: 18;
}

.row-span-18 {
  grid-row: span 18/span 18;
}

.col-start-19 {
  grid-column-start: 19;
}

.col-end-19 {
  grid-column-end: 19;
}

.col-span-19 {
  grid-column: span 19/span 19;
}

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

.row-start-19 {
  grid-row-start: 19;
}

.row-end-19 {
  grid-row-end: 19;
}

.row-span-19 {
  grid-row: span 19/span 19;
}

.col-start-20 {
  grid-column-start: 20;
}

.col-end-20 {
  grid-column-end: 20;
}

.col-span-20 {
  grid-column: span 20/span 20;
}

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

.row-start-20 {
  grid-row-start: 20;
}

.row-end-20 {
  grid-row-end: 20;
}

.row-span-20 {
  grid-row: span 20/span 20;
}

.col-start-21 {
  grid-column-start: 21;
}

.col-end-21 {
  grid-column-end: 21;
}

.col-span-21 {
  grid-column: span 21/span 21;
}

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

.row-start-21 {
  grid-row-start: 21;
}

.row-end-21 {
  grid-row-end: 21;
}

.row-span-21 {
  grid-row: span 21/span 21;
}

.col-start-22 {
  grid-column-start: 22;
}

.col-end-22 {
  grid-column-end: 22;
}

.col-span-22 {
  grid-column: span 22/span 22;
}

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

.row-start-22 {
  grid-row-start: 22;
}

.row-end-22 {
  grid-row-end: 22;
}

.row-span-22 {
  grid-row: span 22/span 22;
}

.col-start-23 {
  grid-column-start: 23;
}

.col-end-23 {
  grid-column-end: 23;
}

.col-span-23 {
  grid-column: span 23/span 23;
}

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

.row-start-23 {
  grid-row-start: 23;
}

.row-end-23 {
  grid-row-end: 23;
}

.row-span-23 {
  grid-row: span 23/span 23;
}

.col-start-24 {
  grid-column-start: 24;
}

.col-end-24 {
  grid-column-end: 24;
}

.col-span-24 {
  grid-column: span 24/span 24;
}

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

.row-start-24 {
  grid-row-start: 24;
}

.row-end-24 {
  grid-row-end: 24;
}

.row-span-24 {
  grid-row: span 24/span 24;
}

/* grid-items au sein des breakpoints */
@media (min-width: 576px) {
  .sm\:col-start-1 {
    grid-column-start: 1;
  }
  .sm\:col-end-1 {
    grid-column-end: 1;
  }
  .sm\:col-span-1 {
    grid-column: span 1/span 1;
  }
  .sm\:col-span-full {
    grid-column: 1/-1;
  }
  .sm\:row-start-1 {
    grid-row-start: 1;
  }
  .sm\:row-end-1 {
    grid-row-end: 1;
  }
  .sm\:row-span-1 {
    grid-row: span 1/span 1;
  }
  .sm\:col-start-2 {
    grid-column-start: 2;
  }
  .sm\:col-end-2 {
    grid-column-end: 2;
  }
  .sm\:col-span-2 {
    grid-column: span 2/span 2;
  }
  .sm\:col-span-full {
    grid-column: 1/-1;
  }
  .sm\:row-start-2 {
    grid-row-start: 2;
  }
  .sm\:row-end-2 {
    grid-row-end: 2;
  }
  .sm\:row-span-2 {
    grid-row: span 2/span 2;
  }
  .sm\:col-start-3 {
    grid-column-start: 3;
  }
  .sm\:col-end-3 {
    grid-column-end: 3;
  }
  .sm\:col-span-3 {
    grid-column: span 3/span 3;
  }
  .sm\:col-span-full {
    grid-column: 1/-1;
  }
  .sm\:row-start-3 {
    grid-row-start: 3;
  }
  .sm\:row-end-3 {
    grid-row-end: 3;
  }
  .sm\:row-span-3 {
    grid-row: span 3/span 3;
  }
  .sm\:col-start-4 {
    grid-column-start: 4;
  }
  .sm\:col-end-4 {
    grid-column-end: 4;
  }
  .sm\:col-span-4 {
    grid-column: span 4/span 4;
  }
  .sm\:col-span-full {
    grid-column: 1/-1;
  }
  .sm\:row-start-4 {
    grid-row-start: 4;
  }
  .sm\:row-end-4 {
    grid-row-end: 4;
  }
  .sm\:row-span-4 {
    grid-row: span 4/span 4;
  }
  .sm\:col-start-5 {
    grid-column-start: 5;
  }
  .sm\:col-end-5 {
    grid-column-end: 5;
  }
  .sm\:col-span-5 {
    grid-column: span 5/span 5;
  }
  .sm\:col-span-full {
    grid-column: 1/-1;
  }
  .sm\:row-start-5 {
    grid-row-start: 5;
  }
  .sm\:row-end-5 {
    grid-row-end: 5;
  }
  .sm\:row-span-5 {
    grid-row: span 5/span 5;
  }
  .sm\:col-start-6 {
    grid-column-start: 6;
  }
  .sm\:col-end-6 {
    grid-column-end: 6;
  }
  .sm\:col-span-6 {
    grid-column: span 6/span 6;
  }
  .sm\:col-span-full {
    grid-column: 1/-1;
  }
  .sm\:row-start-6 {
    grid-row-start: 6;
  }
  .sm\:row-end-6 {
    grid-row-end: 6;
  }
  .sm\:row-span-6 {
    grid-row: span 6/span 6;
  }
  .sm\:col-start-7 {
    grid-column-start: 7;
  }
  .sm\:col-end-7 {
    grid-column-end: 7;
  }
  .sm\:col-span-7 {
    grid-column: span 7/span 7;
  }
  .sm\:col-span-full {
    grid-column: 1/-1;
  }
  .sm\:row-start-7 {
    grid-row-start: 7;
  }
  .sm\:row-end-7 {
    grid-row-end: 7;
  }
  .sm\:row-span-7 {
    grid-row: span 7/span 7;
  }
  .sm\:col-start-8 {
    grid-column-start: 8;
  }
  .sm\:col-end-8 {
    grid-column-end: 8;
  }
  .sm\:col-span-8 {
    grid-column: span 8/span 8;
  }
  .sm\:col-span-full {
    grid-column: 1/-1;
  }
  .sm\:row-start-8 {
    grid-row-start: 8;
  }
  .sm\:row-end-8 {
    grid-row-end: 8;
  }
  .sm\:row-span-8 {
    grid-row: span 8/span 8;
  }
  .sm\:col-start-9 {
    grid-column-start: 9;
  }
  .sm\:col-end-9 {
    grid-column-end: 9;
  }
  .sm\:col-span-9 {
    grid-column: span 9/span 9;
  }
  .sm\:col-span-full {
    grid-column: 1/-1;
  }
  .sm\:row-start-9 {
    grid-row-start: 9;
  }
  .sm\:row-end-9 {
    grid-row-end: 9;
  }
  .sm\:row-span-9 {
    grid-row: span 9/span 9;
  }
  .sm\:col-start-10 {
    grid-column-start: 10;
  }
  .sm\:col-end-10 {
    grid-column-end: 10;
  }
  .sm\:col-span-10 {
    grid-column: span 10/span 10;
  }
  .sm\:col-span-full {
    grid-column: 1/-1;
  }
  .sm\:row-start-10 {
    grid-row-start: 10;
  }
  .sm\:row-end-10 {
    grid-row-end: 10;
  }
  .sm\:row-span-10 {
    grid-row: span 10/span 10;
  }
  .sm\:col-start-11 {
    grid-column-start: 11;
  }
  .sm\:col-end-11 {
    grid-column-end: 11;
  }
  .sm\:col-span-11 {
    grid-column: span 11/span 11;
  }
  .sm\:col-span-full {
    grid-column: 1/-1;
  }
  .sm\:row-start-11 {
    grid-row-start: 11;
  }
  .sm\:row-end-11 {
    grid-row-end: 11;
  }
  .sm\:row-span-11 {
    grid-row: span 11/span 11;
  }
  .sm\:col-start-12 {
    grid-column-start: 12;
  }
  .sm\:col-end-12 {
    grid-column-end: 12;
  }
  .sm\:col-span-12 {
    grid-column: span 12/span 12;
  }
  .sm\:col-span-full {
    grid-column: 1/-1;
  }
  .sm\:row-start-12 {
    grid-row-start: 12;
  }
  .sm\:row-end-12 {
    grid-row-end: 12;
  }
  .sm\:row-span-12 {
    grid-row: span 12/span 12;
  }
  .sm\:col-start-13 {
    grid-column-start: 13;
  }
  .sm\:col-end-13 {
    grid-column-end: 13;
  }
  .sm\:col-span-13 {
    grid-column: span 13/span 13;
  }
  .sm\:col-span-full {
    grid-column: 1/-1;
  }
  .sm\:row-start-13 {
    grid-row-start: 13;
  }
  .sm\:row-end-13 {
    grid-row-end: 13;
  }
  .sm\:row-span-13 {
    grid-row: span 13/span 13;
  }
  .sm\:col-start-14 {
    grid-column-start: 14;
  }
  .sm\:col-end-14 {
    grid-column-end: 14;
  }
  .sm\:col-span-14 {
    grid-column: span 14/span 14;
  }
  .sm\:col-span-full {
    grid-column: 1/-1;
  }
  .sm\:row-start-14 {
    grid-row-start: 14;
  }
  .sm\:row-end-14 {
    grid-row-end: 14;
  }
  .sm\:row-span-14 {
    grid-row: span 14/span 14;
  }
  .sm\:col-start-15 {
    grid-column-start: 15;
  }
  .sm\:col-end-15 {
    grid-column-end: 15;
  }
  .sm\:col-span-15 {
    grid-column: span 15/span 15;
  }
  .sm\:col-span-full {
    grid-column: 1/-1;
  }
  .sm\:row-start-15 {
    grid-row-start: 15;
  }
  .sm\:row-end-15 {
    grid-row-end: 15;
  }
  .sm\:row-span-15 {
    grid-row: span 15/span 15;
  }
  .sm\:col-start-16 {
    grid-column-start: 16;
  }
  .sm\:col-end-16 {
    grid-column-end: 16;
  }
  .sm\:col-span-16 {
    grid-column: span 16/span 16;
  }
  .sm\:col-span-full {
    grid-column: 1/-1;
  }
  .sm\:row-start-16 {
    grid-row-start: 16;
  }
  .sm\:row-end-16 {
    grid-row-end: 16;
  }
  .sm\:row-span-16 {
    grid-row: span 16/span 16;
  }
  .sm\:col-start-17 {
    grid-column-start: 17;
  }
  .sm\:col-end-17 {
    grid-column-end: 17;
  }
  .sm\:col-span-17 {
    grid-column: span 17/span 17;
  }
  .sm\:col-span-full {
    grid-column: 1/-1;
  }
  .sm\:row-start-17 {
    grid-row-start: 17;
  }
  .sm\:row-end-17 {
    grid-row-end: 17;
  }
  .sm\:row-span-17 {
    grid-row: span 17/span 17;
  }
  .sm\:col-start-18 {
    grid-column-start: 18;
  }
  .sm\:col-end-18 {
    grid-column-end: 18;
  }
  .sm\:col-span-18 {
    grid-column: span 18/span 18;
  }
  .sm\:col-span-full {
    grid-column: 1/-1;
  }
  .sm\:row-start-18 {
    grid-row-start: 18;
  }
  .sm\:row-end-18 {
    grid-row-end: 18;
  }
  .sm\:row-span-18 {
    grid-row: span 18/span 18;
  }
  .sm\:col-start-19 {
    grid-column-start: 19;
  }
  .sm\:col-end-19 {
    grid-column-end: 19;
  }
  .sm\:col-span-19 {
    grid-column: span 19/span 19;
  }
  .sm\:col-span-full {
    grid-column: 1/-1;
  }
  .sm\:row-start-19 {
    grid-row-start: 19;
  }
  .sm\:row-end-19 {
    grid-row-end: 19;
  }
  .sm\:row-span-19 {
    grid-row: span 19/span 19;
  }
  .sm\:col-start-20 {
    grid-column-start: 20;
  }
  .sm\:col-end-20 {
    grid-column-end: 20;
  }
  .sm\:col-span-20 {
    grid-column: span 20/span 20;
  }
  .sm\:col-span-full {
    grid-column: 1/-1;
  }
  .sm\:row-start-20 {
    grid-row-start: 20;
  }
  .sm\:row-end-20 {
    grid-row-end: 20;
  }
  .sm\:row-span-20 {
    grid-row: span 20/span 20;
  }
  .sm\:col-start-21 {
    grid-column-start: 21;
  }
  .sm\:col-end-21 {
    grid-column-end: 21;
  }
  .sm\:col-span-21 {
    grid-column: span 21/span 21;
  }
  .sm\:col-span-full {
    grid-column: 1/-1;
  }
  .sm\:row-start-21 {
    grid-row-start: 21;
  }
  .sm\:row-end-21 {
    grid-row-end: 21;
  }
  .sm\:row-span-21 {
    grid-row: span 21/span 21;
  }
  .sm\:col-start-22 {
    grid-column-start: 22;
  }
  .sm\:col-end-22 {
    grid-column-end: 22;
  }
  .sm\:col-span-22 {
    grid-column: span 22/span 22;
  }
  .sm\:col-span-full {
    grid-column: 1/-1;
  }
  .sm\:row-start-22 {
    grid-row-start: 22;
  }
  .sm\:row-end-22 {
    grid-row-end: 22;
  }
  .sm\:row-span-22 {
    grid-row: span 22/span 22;
  }
  .sm\:col-start-23 {
    grid-column-start: 23;
  }
  .sm\:col-end-23 {
    grid-column-end: 23;
  }
  .sm\:col-span-23 {
    grid-column: span 23/span 23;
  }
  .sm\:col-span-full {
    grid-column: 1/-1;
  }
  .sm\:row-start-23 {
    grid-row-start: 23;
  }
  .sm\:row-end-23 {
    grid-row-end: 23;
  }
  .sm\:row-span-23 {
    grid-row: span 23/span 23;
  }
  .sm\:col-start-24 {
    grid-column-start: 24;
  }
  .sm\:col-end-24 {
    grid-column-end: 24;
  }
  .sm\:col-span-24 {
    grid-column: span 24/span 24;
  }
  .sm\:col-span-full {
    grid-column: 1/-1;
  }
  .sm\:row-start-24 {
    grid-row-start: 24;
  }
  .sm\:row-end-24 {
    grid-row-end: 24;
  }
  .sm\:row-span-24 {
    grid-row: span 24/span 24;
  }
}
@media (min-width: 992px) {
  .md\:col-start-1 {
    grid-column-start: 1;
  }
  .md\:col-end-1 {
    grid-column-end: 1;
  }
  .md\:col-span-1 {
    grid-column: span 1/span 1;
  }
  .md\:col-span-full {
    grid-column: 1/-1;
  }
  .md\:row-start-1 {
    grid-row-start: 1;
  }
  .md\:row-end-1 {
    grid-row-end: 1;
  }
  .md\:row-span-1 {
    grid-row: span 1/span 1;
  }
  .md\:col-start-2 {
    grid-column-start: 2;
  }
  .md\:col-end-2 {
    grid-column-end: 2;
  }
  .md\:col-span-2 {
    grid-column: span 2/span 2;
  }
  .md\:col-span-full {
    grid-column: 1/-1;
  }
  .md\:row-start-2 {
    grid-row-start: 2;
  }
  .md\:row-end-2 {
    grid-row-end: 2;
  }
  .md\:row-span-2 {
    grid-row: span 2/span 2;
  }
  .md\:col-start-3 {
    grid-column-start: 3;
  }
  .md\:col-end-3 {
    grid-column-end: 3;
  }
  .md\:col-span-3 {
    grid-column: span 3/span 3;
  }
  .md\:col-span-full {
    grid-column: 1/-1;
  }
  .md\:row-start-3 {
    grid-row-start: 3;
  }
  .md\:row-end-3 {
    grid-row-end: 3;
  }
  .md\:row-span-3 {
    grid-row: span 3/span 3;
  }
  .md\:col-start-4 {
    grid-column-start: 4;
  }
  .md\:col-end-4 {
    grid-column-end: 4;
  }
  .md\:col-span-4 {
    grid-column: span 4/span 4;
  }
  .md\:col-span-full {
    grid-column: 1/-1;
  }
  .md\:row-start-4 {
    grid-row-start: 4;
  }
  .md\:row-end-4 {
    grid-row-end: 4;
  }
  .md\:row-span-4 {
    grid-row: span 4/span 4;
  }
  .md\:col-start-5 {
    grid-column-start: 5;
  }
  .md\:col-end-5 {
    grid-column-end: 5;
  }
  .md\:col-span-5 {
    grid-column: span 5/span 5;
  }
  .md\:col-span-full {
    grid-column: 1/-1;
  }
  .md\:row-start-5 {
    grid-row-start: 5;
  }
  .md\:row-end-5 {
    grid-row-end: 5;
  }
  .md\:row-span-5 {
    grid-row: span 5/span 5;
  }
  .md\:col-start-6 {
    grid-column-start: 6;
  }
  .md\:col-end-6 {
    grid-column-end: 6;
  }
  .md\:col-span-6 {
    grid-column: span 6/span 6;
  }
  .md\:col-span-full {
    grid-column: 1/-1;
  }
  .md\:row-start-6 {
    grid-row-start: 6;
  }
  .md\:row-end-6 {
    grid-row-end: 6;
  }
  .md\:row-span-6 {
    grid-row: span 6/span 6;
  }
  .md\:col-start-7 {
    grid-column-start: 7;
  }
  .md\:col-end-7 {
    grid-column-end: 7;
  }
  .md\:col-span-7 {
    grid-column: span 7/span 7;
  }
  .md\:col-span-full {
    grid-column: 1/-1;
  }
  .md\:row-start-7 {
    grid-row-start: 7;
  }
  .md\:row-end-7 {
    grid-row-end: 7;
  }
  .md\:row-span-7 {
    grid-row: span 7/span 7;
  }
  .md\:col-start-8 {
    grid-column-start: 8;
  }
  .md\:col-end-8 {
    grid-column-end: 8;
  }
  .md\:col-span-8 {
    grid-column: span 8/span 8;
  }
  .md\:col-span-full {
    grid-column: 1/-1;
  }
  .md\:row-start-8 {
    grid-row-start: 8;
  }
  .md\:row-end-8 {
    grid-row-end: 8;
  }
  .md\:row-span-8 {
    grid-row: span 8/span 8;
  }
  .md\:col-start-9 {
    grid-column-start: 9;
  }
  .md\:col-end-9 {
    grid-column-end: 9;
  }
  .md\:col-span-9 {
    grid-column: span 9/span 9;
  }
  .md\:col-span-full {
    grid-column: 1/-1;
  }
  .md\:row-start-9 {
    grid-row-start: 9;
  }
  .md\:row-end-9 {
    grid-row-end: 9;
  }
  .md\:row-span-9 {
    grid-row: span 9/span 9;
  }
  .md\:col-start-10 {
    grid-column-start: 10;
  }
  .md\:col-end-10 {
    grid-column-end: 10;
  }
  .md\:col-span-10 {
    grid-column: span 10/span 10;
  }
  .md\:col-span-full {
    grid-column: 1/-1;
  }
  .md\:row-start-10 {
    grid-row-start: 10;
  }
  .md\:row-end-10 {
    grid-row-end: 10;
  }
  .md\:row-span-10 {
    grid-row: span 10/span 10;
  }
  .md\:col-start-11 {
    grid-column-start: 11;
  }
  .md\:col-end-11 {
    grid-column-end: 11;
  }
  .md\:col-span-11 {
    grid-column: span 11/span 11;
  }
  .md\:col-span-full {
    grid-column: 1/-1;
  }
  .md\:row-start-11 {
    grid-row-start: 11;
  }
  .md\:row-end-11 {
    grid-row-end: 11;
  }
  .md\:row-span-11 {
    grid-row: span 11/span 11;
  }
  .md\:col-start-12 {
    grid-column-start: 12;
  }
  .md\:col-end-12 {
    grid-column-end: 12;
  }
  .md\:col-span-12 {
    grid-column: span 12/span 12;
  }
  .md\:col-span-full {
    grid-column: 1/-1;
  }
  .md\:row-start-12 {
    grid-row-start: 12;
  }
  .md\:row-end-12 {
    grid-row-end: 12;
  }
  .md\:row-span-12 {
    grid-row: span 12/span 12;
  }
  .md\:col-start-13 {
    grid-column-start: 13;
  }
  .md\:col-end-13 {
    grid-column-end: 13;
  }
  .md\:col-span-13 {
    grid-column: span 13/span 13;
  }
  .md\:col-span-full {
    grid-column: 1/-1;
  }
  .md\:row-start-13 {
    grid-row-start: 13;
  }
  .md\:row-end-13 {
    grid-row-end: 13;
  }
  .md\:row-span-13 {
    grid-row: span 13/span 13;
  }
  .md\:col-start-14 {
    grid-column-start: 14;
  }
  .md\:col-end-14 {
    grid-column-end: 14;
  }
  .md\:col-span-14 {
    grid-column: span 14/span 14;
  }
  .md\:col-span-full {
    grid-column: 1/-1;
  }
  .md\:row-start-14 {
    grid-row-start: 14;
  }
  .md\:row-end-14 {
    grid-row-end: 14;
  }
  .md\:row-span-14 {
    grid-row: span 14/span 14;
  }
  .md\:col-start-15 {
    grid-column-start: 15;
  }
  .md\:col-end-15 {
    grid-column-end: 15;
  }
  .md\:col-span-15 {
    grid-column: span 15/span 15;
  }
  .md\:col-span-full {
    grid-column: 1/-1;
  }
  .md\:row-start-15 {
    grid-row-start: 15;
  }
  .md\:row-end-15 {
    grid-row-end: 15;
  }
  .md\:row-span-15 {
    grid-row: span 15/span 15;
  }
  .md\:col-start-16 {
    grid-column-start: 16;
  }
  .md\:col-end-16 {
    grid-column-end: 16;
  }
  .md\:col-span-16 {
    grid-column: span 16/span 16;
  }
  .md\:col-span-full {
    grid-column: 1/-1;
  }
  .md\:row-start-16 {
    grid-row-start: 16;
  }
  .md\:row-end-16 {
    grid-row-end: 16;
  }
  .md\:row-span-16 {
    grid-row: span 16/span 16;
  }
  .md\:col-start-17 {
    grid-column-start: 17;
  }
  .md\:col-end-17 {
    grid-column-end: 17;
  }
  .md\:col-span-17 {
    grid-column: span 17/span 17;
  }
  .md\:col-span-full {
    grid-column: 1/-1;
  }
  .md\:row-start-17 {
    grid-row-start: 17;
  }
  .md\:row-end-17 {
    grid-row-end: 17;
  }
  .md\:row-span-17 {
    grid-row: span 17/span 17;
  }
  .md\:col-start-18 {
    grid-column-start: 18;
  }
  .md\:col-end-18 {
    grid-column-end: 18;
  }
  .md\:col-span-18 {
    grid-column: span 18/span 18;
  }
  .md\:col-span-full {
    grid-column: 1/-1;
  }
  .md\:row-start-18 {
    grid-row-start: 18;
  }
  .md\:row-end-18 {
    grid-row-end: 18;
  }
  .md\:row-span-18 {
    grid-row: span 18/span 18;
  }
  .md\:col-start-19 {
    grid-column-start: 19;
  }
  .md\:col-end-19 {
    grid-column-end: 19;
  }
  .md\:col-span-19 {
    grid-column: span 19/span 19;
  }
  .md\:col-span-full {
    grid-column: 1/-1;
  }
  .md\:row-start-19 {
    grid-row-start: 19;
  }
  .md\:row-end-19 {
    grid-row-end: 19;
  }
  .md\:row-span-19 {
    grid-row: span 19/span 19;
  }
  .md\:col-start-20 {
    grid-column-start: 20;
  }
  .md\:col-end-20 {
    grid-column-end: 20;
  }
  .md\:col-span-20 {
    grid-column: span 20/span 20;
  }
  .md\:col-span-full {
    grid-column: 1/-1;
  }
  .md\:row-start-20 {
    grid-row-start: 20;
  }
  .md\:row-end-20 {
    grid-row-end: 20;
  }
  .md\:row-span-20 {
    grid-row: span 20/span 20;
  }
  .md\:col-start-21 {
    grid-column-start: 21;
  }
  .md\:col-end-21 {
    grid-column-end: 21;
  }
  .md\:col-span-21 {
    grid-column: span 21/span 21;
  }
  .md\:col-span-full {
    grid-column: 1/-1;
  }
  .md\:row-start-21 {
    grid-row-start: 21;
  }
  .md\:row-end-21 {
    grid-row-end: 21;
  }
  .md\:row-span-21 {
    grid-row: span 21/span 21;
  }
  .md\:col-start-22 {
    grid-column-start: 22;
  }
  .md\:col-end-22 {
    grid-column-end: 22;
  }
  .md\:col-span-22 {
    grid-column: span 22/span 22;
  }
  .md\:col-span-full {
    grid-column: 1/-1;
  }
  .md\:row-start-22 {
    grid-row-start: 22;
  }
  .md\:row-end-22 {
    grid-row-end: 22;
  }
  .md\:row-span-22 {
    grid-row: span 22/span 22;
  }
  .md\:col-start-23 {
    grid-column-start: 23;
  }
  .md\:col-end-23 {
    grid-column-end: 23;
  }
  .md\:col-span-23 {
    grid-column: span 23/span 23;
  }
  .md\:col-span-full {
    grid-column: 1/-1;
  }
  .md\:row-start-23 {
    grid-row-start: 23;
  }
  .md\:row-end-23 {
    grid-row-end: 23;
  }
  .md\:row-span-23 {
    grid-row: span 23/span 23;
  }
  .md\:col-start-24 {
    grid-column-start: 24;
  }
  .md\:col-end-24 {
    grid-column-end: 24;
  }
  .md\:col-span-24 {
    grid-column: span 24/span 24;
  }
  .md\:col-span-full {
    grid-column: 1/-1;
  }
  .md\:row-start-24 {
    grid-row-start: 24;
  }
  .md\:row-end-24 {
    grid-row-end: 24;
  }
  .md\:row-span-24 {
    grid-row: span 24/span 24;
  }
}
@media (min-width: 1400px) {
  .lg\:col-start-1 {
    grid-column-start: 1;
  }
  .lg\:col-end-1 {
    grid-column-end: 1;
  }
  .lg\:col-span-1 {
    grid-column: span 1/span 1;
  }
  .lg\:col-span-full {
    grid-column: 1/-1;
  }
  .lg\:row-start-1 {
    grid-row-start: 1;
  }
  .lg\:row-end-1 {
    grid-row-end: 1;
  }
  .lg\:row-span-1 {
    grid-row: span 1/span 1;
  }
  .lg\:col-start-2 {
    grid-column-start: 2;
  }
  .lg\:col-end-2 {
    grid-column-end: 2;
  }
  .lg\:col-span-2 {
    grid-column: span 2/span 2;
  }
  .lg\:col-span-full {
    grid-column: 1/-1;
  }
  .lg\:row-start-2 {
    grid-row-start: 2;
  }
  .lg\:row-end-2 {
    grid-row-end: 2;
  }
  .lg\:row-span-2 {
    grid-row: span 2/span 2;
  }
  .lg\:col-start-3 {
    grid-column-start: 3;
  }
  .lg\:col-end-3 {
    grid-column-end: 3;
  }
  .lg\:col-span-3 {
    grid-column: span 3/span 3;
  }
  .lg\:col-span-full {
    grid-column: 1/-1;
  }
  .lg\:row-start-3 {
    grid-row-start: 3;
  }
  .lg\:row-end-3 {
    grid-row-end: 3;
  }
  .lg\:row-span-3 {
    grid-row: span 3/span 3;
  }
  .lg\:col-start-4 {
    grid-column-start: 4;
  }
  .lg\:col-end-4 {
    grid-column-end: 4;
  }
  .lg\:col-span-4 {
    grid-column: span 4/span 4;
  }
  .lg\:col-span-full {
    grid-column: 1/-1;
  }
  .lg\:row-start-4 {
    grid-row-start: 4;
  }
  .lg\:row-end-4 {
    grid-row-end: 4;
  }
  .lg\:row-span-4 {
    grid-row: span 4/span 4;
  }
  .lg\:col-start-5 {
    grid-column-start: 5;
  }
  .lg\:col-end-5 {
    grid-column-end: 5;
  }
  .lg\:col-span-5 {
    grid-column: span 5/span 5;
  }
  .lg\:col-span-full {
    grid-column: 1/-1;
  }
  .lg\:row-start-5 {
    grid-row-start: 5;
  }
  .lg\:row-end-5 {
    grid-row-end: 5;
  }
  .lg\:row-span-5 {
    grid-row: span 5/span 5;
  }
  .lg\:col-start-6 {
    grid-column-start: 6;
  }
  .lg\:col-end-6 {
    grid-column-end: 6;
  }
  .lg\:col-span-6 {
    grid-column: span 6/span 6;
  }
  .lg\:col-span-full {
    grid-column: 1/-1;
  }
  .lg\:row-start-6 {
    grid-row-start: 6;
  }
  .lg\:row-end-6 {
    grid-row-end: 6;
  }
  .lg\:row-span-6 {
    grid-row: span 6/span 6;
  }
  .lg\:col-start-7 {
    grid-column-start: 7;
  }
  .lg\:col-end-7 {
    grid-column-end: 7;
  }
  .lg\:col-span-7 {
    grid-column: span 7/span 7;
  }
  .lg\:col-span-full {
    grid-column: 1/-1;
  }
  .lg\:row-start-7 {
    grid-row-start: 7;
  }
  .lg\:row-end-7 {
    grid-row-end: 7;
  }
  .lg\:row-span-7 {
    grid-row: span 7/span 7;
  }
  .lg\:col-start-8 {
    grid-column-start: 8;
  }
  .lg\:col-end-8 {
    grid-column-end: 8;
  }
  .lg\:col-span-8 {
    grid-column: span 8/span 8;
  }
  .lg\:col-span-full {
    grid-column: 1/-1;
  }
  .lg\:row-start-8 {
    grid-row-start: 8;
  }
  .lg\:row-end-8 {
    grid-row-end: 8;
  }
  .lg\:row-span-8 {
    grid-row: span 8/span 8;
  }
  .lg\:col-start-9 {
    grid-column-start: 9;
  }
  .lg\:col-end-9 {
    grid-column-end: 9;
  }
  .lg\:col-span-9 {
    grid-column: span 9/span 9;
  }
  .lg\:col-span-full {
    grid-column: 1/-1;
  }
  .lg\:row-start-9 {
    grid-row-start: 9;
  }
  .lg\:row-end-9 {
    grid-row-end: 9;
  }
  .lg\:row-span-9 {
    grid-row: span 9/span 9;
  }
  .lg\:col-start-10 {
    grid-column-start: 10;
  }
  .lg\:col-end-10 {
    grid-column-end: 10;
  }
  .lg\:col-span-10 {
    grid-column: span 10/span 10;
  }
  .lg\:col-span-full {
    grid-column: 1/-1;
  }
  .lg\:row-start-10 {
    grid-row-start: 10;
  }
  .lg\:row-end-10 {
    grid-row-end: 10;
  }
  .lg\:row-span-10 {
    grid-row: span 10/span 10;
  }
  .lg\:col-start-11 {
    grid-column-start: 11;
  }
  .lg\:col-end-11 {
    grid-column-end: 11;
  }
  .lg\:col-span-11 {
    grid-column: span 11/span 11;
  }
  .lg\:col-span-full {
    grid-column: 1/-1;
  }
  .lg\:row-start-11 {
    grid-row-start: 11;
  }
  .lg\:row-end-11 {
    grid-row-end: 11;
  }
  .lg\:row-span-11 {
    grid-row: span 11/span 11;
  }
  .lg\:col-start-12 {
    grid-column-start: 12;
  }
  .lg\:col-end-12 {
    grid-column-end: 12;
  }
  .lg\:col-span-12 {
    grid-column: span 12/span 12;
  }
  .lg\:col-span-full {
    grid-column: 1/-1;
  }
  .lg\:row-start-12 {
    grid-row-start: 12;
  }
  .lg\:row-end-12 {
    grid-row-end: 12;
  }
  .lg\:row-span-12 {
    grid-row: span 12/span 12;
  }
  .lg\:col-start-13 {
    grid-column-start: 13;
  }
  .lg\:col-end-13 {
    grid-column-end: 13;
  }
  .lg\:col-span-13 {
    grid-column: span 13/span 13;
  }
  .lg\:col-span-full {
    grid-column: 1/-1;
  }
  .lg\:row-start-13 {
    grid-row-start: 13;
  }
  .lg\:row-end-13 {
    grid-row-end: 13;
  }
  .lg\:row-span-13 {
    grid-row: span 13/span 13;
  }
  .lg\:col-start-14 {
    grid-column-start: 14;
  }
  .lg\:col-end-14 {
    grid-column-end: 14;
  }
  .lg\:col-span-14 {
    grid-column: span 14/span 14;
  }
  .lg\:col-span-full {
    grid-column: 1/-1;
  }
  .lg\:row-start-14 {
    grid-row-start: 14;
  }
  .lg\:row-end-14 {
    grid-row-end: 14;
  }
  .lg\:row-span-14 {
    grid-row: span 14/span 14;
  }
  .lg\:col-start-15 {
    grid-column-start: 15;
  }
  .lg\:col-end-15 {
    grid-column-end: 15;
  }
  .lg\:col-span-15 {
    grid-column: span 15/span 15;
  }
  .lg\:col-span-full {
    grid-column: 1/-1;
  }
  .lg\:row-start-15 {
    grid-row-start: 15;
  }
  .lg\:row-end-15 {
    grid-row-end: 15;
  }
  .lg\:row-span-15 {
    grid-row: span 15/span 15;
  }
  .lg\:col-start-16 {
    grid-column-start: 16;
  }
  .lg\:col-end-16 {
    grid-column-end: 16;
  }
  .lg\:col-span-16 {
    grid-column: span 16/span 16;
  }
  .lg\:col-span-full {
    grid-column: 1/-1;
  }
  .lg\:row-start-16 {
    grid-row-start: 16;
  }
  .lg\:row-end-16 {
    grid-row-end: 16;
  }
  .lg\:row-span-16 {
    grid-row: span 16/span 16;
  }
  .lg\:col-start-17 {
    grid-column-start: 17;
  }
  .lg\:col-end-17 {
    grid-column-end: 17;
  }
  .lg\:col-span-17 {
    grid-column: span 17/span 17;
  }
  .lg\:col-span-full {
    grid-column: 1/-1;
  }
  .lg\:row-start-17 {
    grid-row-start: 17;
  }
  .lg\:row-end-17 {
    grid-row-end: 17;
  }
  .lg\:row-span-17 {
    grid-row: span 17/span 17;
  }
  .lg\:col-start-18 {
    grid-column-start: 18;
  }
  .lg\:col-end-18 {
    grid-column-end: 18;
  }
  .lg\:col-span-18 {
    grid-column: span 18/span 18;
  }
  .lg\:col-span-full {
    grid-column: 1/-1;
  }
  .lg\:row-start-18 {
    grid-row-start: 18;
  }
  .lg\:row-end-18 {
    grid-row-end: 18;
  }
  .lg\:row-span-18 {
    grid-row: span 18/span 18;
  }
  .lg\:col-start-19 {
    grid-column-start: 19;
  }
  .lg\:col-end-19 {
    grid-column-end: 19;
  }
  .lg\:col-span-19 {
    grid-column: span 19/span 19;
  }
  .lg\:col-span-full {
    grid-column: 1/-1;
  }
  .lg\:row-start-19 {
    grid-row-start: 19;
  }
  .lg\:row-end-19 {
    grid-row-end: 19;
  }
  .lg\:row-span-19 {
    grid-row: span 19/span 19;
  }
  .lg\:col-start-20 {
    grid-column-start: 20;
  }
  .lg\:col-end-20 {
    grid-column-end: 20;
  }
  .lg\:col-span-20 {
    grid-column: span 20/span 20;
  }
  .lg\:col-span-full {
    grid-column: 1/-1;
  }
  .lg\:row-start-20 {
    grid-row-start: 20;
  }
  .lg\:row-end-20 {
    grid-row-end: 20;
  }
  .lg\:row-span-20 {
    grid-row: span 20/span 20;
  }
  .lg\:col-start-21 {
    grid-column-start: 21;
  }
  .lg\:col-end-21 {
    grid-column-end: 21;
  }
  .lg\:col-span-21 {
    grid-column: span 21/span 21;
  }
  .lg\:col-span-full {
    grid-column: 1/-1;
  }
  .lg\:row-start-21 {
    grid-row-start: 21;
  }
  .lg\:row-end-21 {
    grid-row-end: 21;
  }
  .lg\:row-span-21 {
    grid-row: span 21/span 21;
  }
  .lg\:col-start-22 {
    grid-column-start: 22;
  }
  .lg\:col-end-22 {
    grid-column-end: 22;
  }
  .lg\:col-span-22 {
    grid-column: span 22/span 22;
  }
  .lg\:col-span-full {
    grid-column: 1/-1;
  }
  .lg\:row-start-22 {
    grid-row-start: 22;
  }
  .lg\:row-end-22 {
    grid-row-end: 22;
  }
  .lg\:row-span-22 {
    grid-row: span 22/span 22;
  }
  .lg\:col-start-23 {
    grid-column-start: 23;
  }
  .lg\:col-end-23 {
    grid-column-end: 23;
  }
  .lg\:col-span-23 {
    grid-column: span 23/span 23;
  }
  .lg\:col-span-full {
    grid-column: 1/-1;
  }
  .lg\:row-start-23 {
    grid-row-start: 23;
  }
  .lg\:row-end-23 {
    grid-row-end: 23;
  }
  .lg\:row-span-23 {
    grid-row: span 23/span 23;
  }
  .lg\:col-start-24 {
    grid-column-start: 24;
  }
  .lg\:col-end-24 {
    grid-column-end: 24;
  }
  .lg\:col-span-24 {
    grid-column: span 24/span 24;
  }
  .lg\:col-span-full {
    grid-column: 1/-1;
  }
  .lg\:row-start-24 {
    grid-row-start: 24;
  }
  .lg\:row-end-24 {
    grid-row-end: 24;
  }
  .lg\:row-span-24 {
    grid-row: span 24/span 24;
  }
}
/*
 * component nav "burger" button
 */
/*
 * HTML template example:
 * <button class="burger-button" type="button" role="button" aria-label="open/close navigation"><i></i></button>
 * activate it with a JS toggle-class to .is-active
 * see doc : https: //www.knacss.com/doc.html#buttons
 */
/*
 * burger variables (you can change them)
 */
/*
 * burger button styles
 */
.burger-button {
  padding: 0;
  background-color: transparent;
  box-shadow: none;
  outline: 0;
  border: 0;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.burger-button > * {
  display: inline-flex;
  vertical-align: top;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  height: 1.5rem;
  width: 1.5rem;
  padding: 0;
  background-color: transparent;
  background-image: linear-gradient(#b1afff, #b1afff);
  background-position: center;
  background-repeat: no-repeat;
  background-origin: content-box;
  background-size: 100% 2px;
  transition: 0.25s;
  transition-property: transform, background;
  will-change: transform, background;
}

.burger-button > *::before,
.burger-button > *::after {
  content: "";
  height: 2px;
  background: #b1afff;
  transition: 0.25s;
  transition-property: transform, top;
  will-change: transform, top;
}

.burger-button:hover > * {
  background-color: transparent;
}

.burger-button:focus {
  outline: 0;
}

.burger-button.is-active > * {
  background-image: none;
  justify-content: center;
}

.burger-button.is-active > *::before {
  transform: translateY(50%) rotate3d(0, 0, 1, 45deg);
}

.burger-button.is-active > *::after {
  transform: translateY(-50%) rotate3d(0, 0, 1, -45deg);
}

/*
 * component checkbox
 */
/*
 * HTML template example:
 * <input type="checkbox" class="checkbox" id="c1">
 * <label for="c1">click here</label>
 */
/*
 * checkbox variables (you can change them)
 */
/*
 * checkbox styles
 */
.checkbox {
  border-radius: 4px;
}

.checkbox {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  width: 18px;
  height: 18px;
  vertical-align: text-bottom;
  box-shadow: inset 0 0 0 1px #b1afff;
  background-color: #ffffff;
  transition: background-color 0.15s;
  cursor: pointer;
}

.checkbox + label {
  cursor: pointer;
}

.checkbox:disabled {
  opacity: 0.6;
}

.checkbox:disabled + label {
  opacity: 0.6;
  cursor: not-allowed;
}

.checkbox:checked {
  background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxNy4xLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+DQo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4Ig0KCSB2aWV3Qm94PSIwIDAgOCA4IiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCA4IDgiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPHBhdGggZmlsbD0iI0ZGRkZGRiIgZD0iTTYuNCwxTDUuNywxLjdMMi45LDQuNUwyLjEsMy43TDEuNCwzTDAsNC40bDAuNywwLjdsMS41LDEuNWwwLjcsMC43bDAuNy0wLjdsMy41LTMuNWwwLjctMC43TDYuNCwxTDYuNCwxeiINCgkvPg0KPC9zdmc+DQo=");
  background-size: 60% 60%;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #b1afff;
}

.arrow.violet, .top-arrow.violet, .bottom-arrow.violet {
  background-color: #4f00ff;
}
.arrow.vert-jaune, .top-arrow.vert-jaune, .bottom-arrow.vert-jaune {
  background-color: #def240;
}
.arrow.rose, .top-arrow.rose, .bottom-arrow.rose {
  background-color: #eba1f5;
}

.beige {
  background-color: #f5f5eb;
}

.color--violet {
  color: #4f00ff;
}
.color--vert-jaune {
  color: #def240;
}
.color--rose {
  color: #eba1f5;
}
.color--blanc {
  color: #ffffff;
}
.color--noir {
  color: #121213;
}

.c-grid-gap {
  padding: 0 4vw;
}
@media (max-width: 575px) {
  .c-grid-gap {
    padding: 0 8vw;
  }
}
.c-grid-gap__right {
  width: calc(100% + 4vw);
}
@media (max-width: 991px) {
  .c-grid-gap__right {
    padding: 0;
    width: 100%;
  }
}
.c-grid-gap__left {
  width: calc(100% + 4vw);
  margin-left: -4vw;
}
@media (max-width: 991px) {
  .c-grid-gap__left {
    padding: 0;
    width: 100%;
    margin: 0;
  }
}
.c-grid-gap__full {
  width: calc(100% + 4vw + 4vw);
  margin-left: -4vw;
}
@media (max-width: 991px) {
  .c-grid-gap__full {
    padding: 0;
    width: 100%;
  }
}
.c-grid-gap__right-padding {
  padding: 0;
  padding-right: 4vw;
}
.c-grid-gap--full {
  padding: 4vw;
}

.g-hidden-mobile {
  display: block;
}
@media (max-width: 991px) {
  .g-hidden-mobile {
    display: none;
  }
}

.g-hidden-desktop {
  display: none;
}
@media (max-width: 991px) {
  .g-hidden-desktop {
    display: block;
  }
}

.glightbox-container {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999 !important;
  overflow: hidden;
  touch-action: none;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  outline: 0;
}

.glightbox-container.inactive {
  display: none;
}

.glightbox-container .gcontainer {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 9999;
  overflow: hidden;
}

.glightbox-container .gslider {
  transition: transform 0.4s ease;
  height: 100%;
  left: 0;
  top: 0;
  width: 100%;
  position: relative;
  overflow: hidden;
  display: flex !important;
  justify-content: center;
  align-items: center;
  transform: translate3d(0, 0, 0);
}

.glightbox-container .gslide {
  width: 100%;
  position: absolute;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
}

.glightbox-container .gslide.current {
  opacity: 1;
  z-index: 99999;
  position: relative;
}

.glightbox-container .gslide.prev {
  opacity: 1;
  z-index: 9999;
}

.glightbox-container .gslide-inner-content {
  width: 100%;
}

.glightbox-container .ginner-container {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  max-width: 100%;
  margin: auto;
  height: 100vh;
}

.glightbox-container .ginner-container.gvideo-container {
  width: 100%;
}

.glightbox-container .ginner-container.desc-bottom, .glightbox-container .ginner-container.desc-top {
  flex-direction: column;
}

.glightbox-container .ginner-container.desc-left, .glightbox-container .ginner-container.desc-right {
  max-width: 100% !important;
}

.gslide iframe, .gslide video {
  outline: 0 !important;
  border: none;
  min-height: 165px;
  -webkit-overflow-scrolling: touch;
  touch-action: auto;
}

.gslide:not(.current) {
  pointer-events: none;
}

.gslide-image {
  align-items: center;
}

.gslide-image img {
  max-height: 100vh;
  display: block;
  padding: 0;
  float: none;
  outline: 0;
  border: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  max-width: 100vw;
  width: auto;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  touch-action: none;
  margin: auto;
  min-width: 200px;
}

.desc-bottom .gslide-image img, .desc-top .gslide-image img {
  width: auto;
}

.desc-left .gslide-image img, .desc-right .gslide-image img {
  width: auto;
  max-width: 100%;
}

.gslide-image img.zoomable {
  position: relative;
}

.gslide-image img.dragging {
  cursor: -webkit-grabbing !important;
  cursor: grabbing !important;
  transition: none;
}

.gslide-video {
  position: relative;
  max-width: 100vh;
  width: 100% !important;
}

.gslide-video .plyr__poster-enabled.plyr--loading .plyr__poster {
  display: none;
}

.gslide-video .gvideo-wrapper {
  width: 100%;
  margin: auto;
}

.gslide-video::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(255, 0, 0, 0.34);
  display: none;
}

.gslide-video.playing::before {
  display: none;
}

.gslide-video.fullscreen {
  max-width: 100% !important;
  min-width: 100%;
  height: 75vh;
}

.gslide-video.fullscreen video {
  max-width: 100% !important;
  width: 100% !important;
}

.gslide-inline {
  background: #fff;
  text-align: left;
  max-height: calc(100vh - 40px);
  overflow: auto;
  max-width: 100%;
  margin: auto;
}

.gslide-inline .ginlined-content {
  padding: 20px;
  width: 100%;
}

.gslide-inline .dragging {
  cursor: -webkit-grabbing !important;
  cursor: grabbing !important;
  transition: none;
}

.ginlined-content {
  overflow: auto;
  display: block !important;
  opacity: 1;
}

.gslide-external {
  display: flex;
  width: 100%;
  min-width: 100%;
  background: #fff;
  padding: 0;
  overflow: auto;
  max-height: 75vh;
  height: 100%;
}

.gslide-media {
  display: flex;
  width: auto;
}

.zoomed .gslide-media {
  box-shadow: none !important;
}

.desc-bottom .gslide-media, .desc-top .gslide-media {
  margin: 0 auto;
  flex-direction: column;
}

.gslide-description {
  position: relative;
  flex: 1 0 100%;
}

.gslide-description.description-left, .gslide-description.description-right {
  max-width: 100%;
}

.gslide-description.description-bottom, .gslide-description.description-top {
  margin: 0 auto;
  width: 100%;
}

.gslide-description p {
  margin-bottom: 12px;
}

.gslide-description p:last-child {
  margin-bottom: 0;
}

.zoomed .gslide-description {
  display: none;
}

.glightbox-button-hidden {
  display: none;
}

.glightbox-mobile .glightbox-container .gslide-description {
  height: auto !important;
  width: 100%;
  position: absolute;
  bottom: 0;
  padding: 19px 11px;
  max-width: 100vw !important;
  order: 2 !important;
  max-height: 78vh;
  overflow: auto !important;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0.75) 100%);
  transition: opacity 0.3s linear;
  padding-bottom: 50px;
}

.glightbox-mobile .glightbox-container .gslide-title {
  color: #fff;
  font-size: 1em;
}

.glightbox-mobile .glightbox-container .gslide-desc {
  color: #a1a1a1;
}

.glightbox-mobile .glightbox-container .gslide-desc a {
  color: #fff;
  font-weight: 700;
}

.glightbox-mobile .glightbox-container .gslide-desc * {
  color: inherit;
}

.glightbox-mobile .glightbox-container .gslide-desc .desc-more {
  color: #fff;
  opacity: 0.4;
}

.gdesc-open .gslide-media {
  transition: opacity 0.5s ease;
  opacity: 0.4;
}

.gdesc-open .gdesc-inner {
  padding-bottom: 30px;
}

.gdesc-closed .gslide-media {
  transition: opacity 0.5s ease;
  opacity: 1;
}

.greset {
  transition: all 0.3s ease;
}

.gabsolute {
  position: absolute;
}

.grelative {
  position: relative;
}

.glightbox-desc {
  display: none !important;
}

.glightbox-open {
  overflow: hidden;
}

.gloader {
  height: 25px;
  width: 25px;
  -webkit-animation: lightboxLoader 0.8s infinite linear;
  animation: lightboxLoader 0.8s infinite linear;
  border: 2px solid #fff;
  border-right-color: transparent;
  border-radius: 50%;
  position: absolute;
  display: block;
  z-index: 9999;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 47%;
}

.goverlay {
  width: 100%;
  height: calc(100vh + 1px);
  position: fixed;
  top: -1px;
  left: 0;
  background: #000;
  will-change: opacity;
}

.glightbox-mobile .goverlay {
  background: #000;
}

.gclose, .gnext, .gprev {
  z-index: 99999;
  cursor: pointer;
  width: 26px;
  height: 44px;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.gclose svg, .gnext svg, .gprev svg {
  display: block;
  width: 25px;
  height: auto;
  margin: 0;
  padding: 0;
}

.gclose.disabled, .gnext.disabled, .gprev.disabled {
  opacity: 0.1;
}

.gclose .garrow, .gnext .garrow, .gprev .garrow {
  stroke: #fff;
}

.gbtn.focused {
  outline: 2px solid #0f3d81;
}

iframe.wait-autoplay {
  opacity: 0;
}

.glightbox-closing .gclose, .glightbox-closing .gnext, .glightbox-closing .gprev {
  opacity: 0 !important;
}

.glightbox-clean .gslide-description {
  background: #fff;
}

.glightbox-clean .gdesc-inner {
  padding: 22px 20px;
}

.glightbox-clean .gslide-title {
  font-size: 1em;
  font-weight: 400;
  font-family: arial;
  color: #000;
  margin-bottom: 19px;
  line-height: 1.4em;
}

.glightbox-clean .gslide-desc {
  font-size: 0.86em;
  margin-bottom: 0;
  font-family: arial;
  line-height: 1.4em;
}

.glightbox-clean .gslide-video {
  background: #000;
}

.glightbox-clean .gclose, .glightbox-clean .gnext, .glightbox-clean .gprev {
  background-color: rgba(0, 0, 0, 0.75);
  border-radius: 4px;
}

.glightbox-clean .gclose path, .glightbox-clean .gnext path, .glightbox-clean .gprev path {
  fill: #fff;
}

.glightbox-clean .gprev {
  position: absolute;
  top: -100%;
  left: 30px;
  width: 40px;
  height: 50px;
}

.glightbox-clean .gnext {
  position: absolute;
  top: -100%;
  right: 30px;
  width: 40px;
  height: 50px;
}

.glightbox-clean .gclose {
  width: 35px;
  height: 35px;
  top: 15px;
  right: 10px;
  position: absolute;
}

.glightbox-clean .gclose svg {
  width: 18px;
  height: auto;
}

.glightbox-clean .gclose:hover {
  opacity: 1;
}

.gfadeIn {
  -webkit-animation: gfadeIn 0.5s ease;
  animation: gfadeIn 0.5s ease;
}

.gfadeOut {
  -webkit-animation: gfadeOut 0.5s ease;
  animation: gfadeOut 0.5s ease;
}

.gslideOutLeft {
  -webkit-animation: gslideOutLeft 0.3s ease;
  animation: gslideOutLeft 0.3s ease;
}

.gslideInLeft {
  -webkit-animation: gslideInLeft 0.3s ease;
  animation: gslideInLeft 0.3s ease;
}

.gslideOutRight {
  -webkit-animation: gslideOutRight 0.3s ease;
  animation: gslideOutRight 0.3s ease;
}

.gslideInRight {
  -webkit-animation: gslideInRight 0.3s ease;
  animation: gslideInRight 0.3s ease;
}

.gzoomIn {
  -webkit-animation: gzoomIn 0.5s ease;
  animation: gzoomIn 0.5s ease;
}

.gzoomOut {
  -webkit-animation: gzoomOut 0.5s ease;
  animation: gzoomOut 0.5s ease;
}

@-webkit-keyframes lightboxLoader {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes lightboxLoader {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes gfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes gfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes gfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes gfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@-webkit-keyframes gslideInLeft {
  from {
    opacity: 0;
    transform: translate3d(-60%, 0, 0);
  }
  to {
    visibility: visible;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes gslideInLeft {
  from {
    opacity: 0;
    transform: translate3d(-60%, 0, 0);
  }
  to {
    visibility: visible;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes gslideOutLeft {
  from {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-60%, 0, 0);
    opacity: 0;
    visibility: hidden;
  }
}
@keyframes gslideOutLeft {
  from {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-60%, 0, 0);
    opacity: 0;
    visibility: hidden;
  }
}
@-webkit-keyframes gslideInRight {
  from {
    opacity: 0;
    visibility: visible;
    transform: translate3d(60%, 0, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes gslideInRight {
  from {
    opacity: 0;
    visibility: visible;
    transform: translate3d(60%, 0, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes gslideOutRight {
  from {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(60%, 0, 0);
    opacity: 0;
  }
}
@keyframes gslideOutRight {
  from {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(60%, 0, 0);
    opacity: 0;
  }
}
@-webkit-keyframes gzoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 1;
  }
}
@keyframes gzoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes gzoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
@keyframes gzoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
@media (min-width: 769px) {
  .glightbox-container .ginner-container {
    width: auto;
    height: auto;
    flex-direction: row;
  }
  .glightbox-container .ginner-container.desc-top .gslide-description {
    order: 0;
  }
  .glightbox-container .ginner-container.desc-top .gslide-image, .glightbox-container .ginner-container.desc-top .gslide-image img {
    order: 1;
  }
  .glightbox-container .ginner-container.desc-left .gslide-description {
    order: 0;
  }
  .glightbox-container .ginner-container.desc-left .gslide-image {
    order: 1;
  }
  .gslide-image img {
    max-height: 97vh;
    max-width: 100%;
  }
  .gslide-image img.zoomable {
    cursor: zoom-in;
  }
  .zoomed .gslide-image img.zoomable {
    cursor: -webkit-grab;
    cursor: grab;
  }
  .gslide-inline {
    max-height: 95vh;
  }
  .gslide-external {
    max-height: 100vh;
  }
  .gslide-description.description-left, .gslide-description.description-right {
    max-width: 275px;
  }
  .glightbox-open {
    height: auto;
  }
  .goverlay {
    background: rgba(0, 0, 0, 0.92);
  }
  .glightbox-clean .gslide-media {
    box-shadow: 1px 2px 9px 0 rgba(0, 0, 0, 0.65);
  }
  .glightbox-clean .description-left .gdesc-inner, .glightbox-clean .description-right .gdesc-inner {
    position: absolute;
    height: 100%;
    overflow-y: auto;
  }
  .glightbox-clean .gclose, .glightbox-clean .gnext, .glightbox-clean .gprev {
    background-color: rgba(0, 0, 0, 0.32);
  }
  .glightbox-clean .gclose:hover, .glightbox-clean .gnext:hover, .glightbox-clean .gprev:hover {
    background-color: rgba(0, 0, 0, 0.7);
  }
  .glightbox-clean .gprev {
    top: 45%;
  }
  .glightbox-clean .gnext {
    top: 45%;
  }
}
@media (min-width: 992px) {
  .glightbox-clean .gclose {
    opacity: 0.7;
    right: 20px;
  }
}
@media screen and (max-height: 420px) {
  .goverlay {
    background: #000;
  }
}
.splide__container {
  box-sizing: border-box;
  position: relative;
}

.splide__list {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  display: flex;
  height: 100%;
  margin: 0 !important;
  padding: 0 !important;
}

.splide.is-initialized:not(.is-active) .splide__list {
  display: block;
}

.splide__pagination {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
  pointer-events: none;
}

.splide__pagination li {
  display: inline-block;
  line-height: 1;
  list-style-type: none;
  margin: 0;
  pointer-events: auto;
}

.splide:not(.is-overflow) .splide__pagination {
  display: none;
}

.splide__progress__bar {
  width: 0;
}

.splide {
  position: relative;
  visibility: hidden;
}

.splide.is-initialized, .splide.is-rendered {
  visibility: visible;
}

.splide__slide {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  box-sizing: border-box;
  flex-shrink: 0;
  list-style-type: none !important;
  margin: 0;
  position: relative;
}

.splide__slide img {
  vertical-align: bottom;
}

.splide__spinner {
  -webkit-animation: splide-loading 1s linear infinite;
          animation: splide-loading 1s linear infinite;
  border: 2px solid #999;
  border-left-color: transparent;
  border-radius: 50%;
  bottom: 0;
  contain: strict;
  display: inline-block;
  height: 20px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
}

.splide__sr {
  clip: rect(0 0 0 0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.splide__toggle.is-active .splide__toggle__play, .splide__toggle__pause {
  display: none;
}

.splide__toggle.is-active .splide__toggle__pause {
  display: inline;
}

.splide__track {
  overflow: hidden;
  position: relative;
  z-index: 0;
}

@-webkit-keyframes splide-loading {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(1turn);
  }
}

@keyframes splide-loading {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(1turn);
  }
}
.splide__track--draggable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  -moz-user-select: none;
       user-select: none;
}

.splide__track--fade > .splide__list > .splide__slide {
  margin: 0 !important;
  opacity: 0;
  z-index: 0;
}

.splide__track--fade > .splide__list > .splide__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.splide--rtl {
  direction: rtl;
}

.splide__track--ttb > .splide__list {
  display: block;
}

.splide__arrow {
  align-items: center;
  background: #ccc;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  height: 2em;
  justify-content: center;
  opacity: 0.7;
  padding: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2em;
  z-index: 1;
}

.splide__arrow svg {
  fill: #000;
  height: 1.2em;
  width: 1.2em;
}

.splide__arrow:hover:not(:disabled) {
  opacity: 0.9;
}

.splide__arrow:disabled {
  opacity: 0.3;
}

.splide__arrow:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__arrow--prev {
  left: 1em;
}

.splide__arrow--prev svg {
  transform: scaleX(-1);
}

.splide__arrow--next {
  right: 1em;
}

.splide.is-focus-in .splide__arrow:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__pagination {
  bottom: 0.5em;
  left: 0;
  padding: 0 1em;
  position: absolute;
  right: 0;
  z-index: 1;
}

.splide__pagination__page {
  background: #ccc;
  border: 0;
  border-radius: 50%;
  display: inline-block;
  height: 8px;
  margin: 3px;
  opacity: 0.7;
  padding: 0;
  position: relative;
  transition: transform 0.2s linear;
  width: 8px;
}

.splide__pagination__page.is-active {
  background: #fff;
  transform: scale(1.4);
  z-index: 1;
}

.splide__pagination__page:hover {
  cursor: pointer;
  opacity: 0.9;
}

.splide__pagination__page:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide.is-focus-in .splide__pagination__page:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__progress__bar {
  background: #ccc;
  height: 3px;
}

.splide__slide {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.splide__slide:focus {
  outline: 0;
}

@supports (outline-offset: -3px) {
  .splide__slide:focus-visible {
    outline: 3px solid #0bf;
    outline-offset: -3px;
  }
}
@media screen and (-ms-high-contrast: none) {
  .splide__slide:focus-visible {
    border: 3px solid #0bf;
  }
}
@supports (outline-offset: -3px) {
  .splide.is-focus-in .splide__slide:focus {
    outline: 3px solid #0bf;
    outline-offset: -3px;
  }
}
@media screen and (-ms-high-contrast: none) {
  .splide.is-focus-in .splide__slide:focus {
    border: 3px solid #0bf;
  }
  .splide.is-focus-in .splide__track > .splide__list > .splide__slide:focus {
    border-color: #0bf;
  }
}
.splide__toggle {
  cursor: pointer;
}

.splide__toggle:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide.is-focus-in .splide__toggle:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__track--nav > .splide__list > .splide__slide {
  border: 3px solid transparent;
  cursor: pointer;
}

.splide__track--nav > .splide__list > .splide__slide.is-active {
  border: 3px solid #000;
}

.splide__arrows--rtl .splide__arrow--prev {
  left: auto;
  right: 1em;
}

.splide__arrows--rtl .splide__arrow--prev svg {
  transform: scaleX(1);
}

.splide__arrows--rtl .splide__arrow--next {
  left: 1em;
  right: auto;
}

.splide__arrows--rtl .splide__arrow--next svg {
  transform: scaleX(-1);
}

.splide__arrows--ttb .splide__arrow {
  left: 50%;
  transform: translate(-50%);
}

.splide__arrows--ttb .splide__arrow--prev {
  top: 1em;
}

.splide__arrows--ttb .splide__arrow--prev svg {
  transform: rotate(-90deg);
}

.splide__arrows--ttb .splide__arrow--next {
  bottom: 1em;
  top: auto;
}

.splide__arrows--ttb .splide__arrow--next svg {
  transform: rotate(90deg);
}

.splide__pagination--ttb {
  bottom: 0;
  display: flex;
  flex-direction: column;
  left: auto;
  padding: 1em 0;
  right: 0.5em;
  top: 0;
}

.loadmore-wrapper {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  margin-top: 16px;
  margin-bottom: 16px;
}

.btn-loadmore {
  background-color: #121213;
  color: #ffffff;
  font-size: 1rem;
  padding: 0.5rem 1rem;
  text-align: center;
  font-family: "GT America Bold Italic";
  transition: all 0.3s ease-in-out;
}
.btn-loadmore:hover {
  background-color: #ffffff;
  color: #121213;
  cursor: pointer;
}

.a-flex-titre {
  font-family: sans-serif;
}

.a-the-content h2,
.a-the-content h3,
.a-the-content h4 {
  font-family: GT America Bold;
  font-size: 20px;
  color: black;
  margin-bottom: 20px;
}
.a-the-content p {
  font-family: GT America Regular;
  font-size: 16px;
  color: black;
  margin-bottom: 20px;
}
.a-the-content p strong,
.a-the-content p b {
  font-family: GT America Bold;
}

.a-btn-rs {
  display: flex;
  align-items: center;
  gap: 30px;
}
.a-btn-rs .icon path {
  transition: all 0.3s ease;
  fill: #121213;
}
.a-btn-rs__icon {
  flex-grow: 0;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border: 1px solid #121213;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  transition: background-color 0.3s ease;
}
.a-btn-rs:hover .a-btn-rs__icon {
  background-color: #121213;
}
.a-btn-rs:hover .a-btn-rs__icon .icon path {
  fill: #ffffff;
}
.a-btn-rs .icon {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.a-btn-rs .icon svg {
  width: 50%;
  height: auto;
}
.a-btn-rs--white .a-btn-rs__icon {
  border: 1px solid #ffffff;
  background: transparent;
}
.a-btn-rs--white .a-btn-rs__icon path {
  fill: #ffffff;
}
.a-btn-rs--white .a-btn-rs__icon:hover {
  background: #ffffff;
}
.a-btn-rs--white .a-btn-rs__icon:hover .icon path {
  fill: #121213;
}

.a-btn-link {
  color: #ffffff;
  text-decoration: none !important;
  font-family: "GT America Bold Italic";
}
.a-btn-link a {
  z-index: 10;
}
@media (max-width: 575px) {
  .a-btn-link {
    font-size: 14px;
  }
}

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

.left-arrow {
  position: relative;
  height: 70px;
  width: 450px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 575px) {
  .left-arrow {
    width: 400px;
  }
}

.left-arrow::before {
  content: url('data:image/svg+xml;utf8,<svg width="556" height="115" viewBox="0 0 497 87" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M38.5 1.5L2.5 33L38.5 63H404.5V1.5H38.5Z" fill="rgba(0, 0, 0, 0.2)"  stroke="white" stroke-width="1"/></svg>');
  position: absolute;
  top: -10px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.left-arrow::after {
  content: "";
  position: absolute;
  top: 1px;
  left: 80%;
  width: 100%;
  height: 100%;
  transition: left 0.3s ease;
  -webkit-clip-path: polygon(100% 0%, 100% 97%, 10% 97%, 1% 49%, 10% 0%);
          clip-path: polygon(100% 0%, 100% 97%, 10% 97%, 1% 49%, 10% 0%);
  z-index: -1;
}
@media (max-width: 575px) {
  .left-arrow::after {
    left: 0%;
    -webkit-clip-path: polygon(100% 0%, 100% 97%, 11% 97%, 1% 49%, 11% 0%);
            clip-path: polygon(100% 0%, 100% 97%, 11% 97%, 1% 49%, 11% 0%);
  }
}

@media (max-width: 575px) {
  .left-arrow.yellow {
    color: #4f00ff;
  }
}

.left-arrow.purple::after {
  background-color: #4f00ff;
}

.left-arrow.yellow::after {
  background-color: #def240;
}

.left-arrow.yellow:hover {
  color: #4f00ff;
}

.left-arrow:hover::after {
  left: 0;
}

.right-arrow, .o-contact form .submit-arrow {
  position: relative;
  height: 70px;
  width: 450px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #121213;
  z-index: 1;
}
.right-arrow a, .o-contact form .submit-arrow a {
  text-decoration: none !important;
}
.right-arrow:hover a, .o-contact form .submit-arrow:hover a {
  color: #ffffff;
}
@media (max-width: 575px) {
  .right-arrow, .o-contact form .submit-arrow {
    width: 350px;
    color: #ffffff;
  }
}

.right-arrow::before, .o-contact form .submit-arrow::before {
  content: url('data:image/svg+xml;utf8,<svg width="556" height="115" viewBox="0 0 497 87" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M367.5 63L403.5 31.5L367.5 1.5L1.50001 1.49996L1.5 63L367.5 63Z" stroke="black" stroke-width="1"/></svg>');
  position: absolute;
  top: -10px;
  left: -5px;
  right: 85%;
}
@media (max-width: 575px) {
  .right-arrow::before, .o-contact form .submit-arrow::before {
    left: -100px;
  }
}

.right-arrow::after, .o-contact form .submit-arrow::after {
  content: "";
  position: absolute;
  right: 85%;
  width: 100%;
  height: 100%;
  transition: right 0.3s ease;
  -webkit-clip-path: polygon(0% 0%, 0% 100%, 90% 100%, 99% 49%, 90% 0%);
          clip-path: polygon(0% 0%, 0% 100%, 90% 100%, 99% 49%, 90% 0%);
  z-index: -1;
  background-color: var(--background-color);
}
@media (max-width: 575px) {
  .right-arrow::after, .o-contact form .submit-arrow::after {
    right: -2px;
    width: 120%;
    -webkit-clip-path: polygon(0% 0%, 0% 100%, 90% 100%, 100% 49%, 90% 0%);
            clip-path: polygon(0% 0%, 0% 100%, 90% 100%, 100% 49%, 90% 0%);
  }
}

.right-arrow:hover::after, .o-contact form .submit-arrow:hover::after {
  right: 0;
}

.right-arrow.purple::after, .o-contact form .purple.submit-arrow::after {
  background-color: #4f00ff;
}

.right-arrow.green-yellow::after, .o-contact form .green-yellow.submit-arrow::after {
  background-color: #def240;
}

.right-arrow.pink::after, .o-contact form .pink.submit-arrow::after {
  background-color: #eba1f5;
}

.a-btn-fleche {
  height: 120px;
  display: block;
  text-decoration: none;
  font-size: 18px;
  transition: all 0.5s cubic-bezier(0.57, 0.21, 0.69, 1.25);
  border-top: 1px solid #000;
}
@media (max-width: 991px) {
  .a-btn-fleche {
    font-size: 16px;
    height: auto;
    padding: 6vw;
  }
}
.a-btn-fleche:hover {
  background: #121213;
  color: #ffffff;
}
.a-btn-fleche:hover .fleche svg path {
  stroke: #ffffff;
}
.a-btn-fleche:hover .fleche__bar {
  background: #ffffff;
  width: 68%;
}
.a-btn-fleche__flex {
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 100%;
  gap: 1.875vw;
  margin: 0 1.875vw 0 2.5694444444vw;
}
@media (max-width: 991px) {
  .a-btn-fleche__flex {
    gap: 27px;
  }
}
.a-btn-fleche .fleche {
  width: 100%;
  position: relative;
}
.a-btn-fleche .fleche__bar {
  height: 3px;
  width: 100%;
  background: #121213;
  transition: width 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
  position: absolute;
  top: 50%;
  margin-top: -1.5px;
  right: 4px;
}
.a-btn-fleche .fleche span {
  height: 100%;
  width: 100%;
  display: block;
  text-align: right;
}
.a-btn-fleche .title {
  flex-shrink: 0;
  width: 50%;
}
.a-btn-fleche:hover {
  text-decoration: none;
}

.full_with_text_on_right {
  height: 96px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  text-decoration: none;
  background-color: #f5f5eb;
  border-top: 1px solid #121213;
}
@media (max-width: 575px) {
  .full_with_text_on_right {
    height: 70px;
  }
}
.full_with_text_on_right-left {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.full_with_text_on_right-left::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/big-arrow.svg");
  background-repeat: no-repeat;
  background-position: right;
  background-size: cover;
}
.full_with_text_on_right-left::after {
  content: "";
  position: absolute;
  top: 0;
  left: -33%;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: right;
  background-size: cover;
  transition: all 0.3s ease;
}
@media (max-width: 575px) {
  .full_with_text_on_right-left::after {
    left: 0;
  }
}
.full_with_text_on_right-right {
  width: 38%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 575px) {
  .full_with_text_on_right-right {
    width: 100%;
  }
}
.full_with_text_on_right-right .title {
  position: relative;
  z-index: 10;
  color: #121213;
  font-size: 1rem;
  font-family: "GT America Bold Italic";
  margin-bottom: 0 !important;
}
@media (max-width: 575px) {
  .full_with_text_on_right-right .title {
    padding-left: 30px;
  }
}
.full_with_text_on_right.green-yellow span.full_with_text_on_right-left::after, .full_with_text_on_right.yellow span.full_with_text_on_right-left::after {
  background-image: url("../img/big-arrow-green-yellow.svg");
}
.full_with_text_on_right.pink span.full_with_text_on_right-left::after {
  background-image: url("../img/big-arrow-pink.svg");
}
.full_with_text_on_right.purple span.full_with_text_on_right-left::after {
  background-image: url("../img/big-arrow-purple.svg");
}
.full_with_text_on_right:hover .full_with_text_on_right-left:after {
  left: 0;
}

.full_with_text_on_left {
  border-top: 1px solid #121213;
  border-bottom: 1px solid #121213;
  position: relative;
  overflow: hidden;
  display: block;
}
.full_with_text_on_left .r-arrow {
  height: 100%;
  width: 60%;
  position: absolute;
  -webkit-clip-path: polygon(80.6% 0%, 85% 50%, 80.6% 100%, 0% 100%, 0% 50%, 0% 0%);
          clip-path: polygon(80.6% 0%, 85% 50%, 80.6% 100%, 0% 100%, 0% 50%, 0% 0%);
  background-color: #f5f5eb;
  z-index: 1;
  transition: width 1s ease;
}
@media (max-width: 575px) {
  .full_with_text_on_left .r-arrow {
    width: 100%;
    -webkit-clip-path: polygon(80.6% 0%, 92% 50%, 80.6% 100%, 0% 100%, 0% 50%, 0% 0%);
            clip-path: polygon(80.6% 0%, 92% 50%, 80.6% 100%, 0% 100%, 0% 50%, 0% 0%);
  }
}
.full_with_text_on_left:hover .r-arrow {
  width: 84%;
  height: 100%;
}
.full_with_text_on_left .title {
  font-size: 2rem;
  font-family: "GT America Black Italic";
  color: #121213;
  z-index: 2;
  position: inherit;
  transition: transform 1s ease;
  margin-bottom: 0px;
  padding: 30px 120px;
}
@media (max-width: 575px) {
  .full_with_text_on_left .title {
    padding: 20px 20px;
    font-size: 1.5rem;
  }
}
.full_with_text_on_left.purple {
  background-color: #4f00ff;
}
.full_with_text_on_left.green-yellow {
  background-color: #def240;
}
.full_with_text_on_left.pink {
  background-color: #eba1f5;
}

.categories {
  display: flex;
  position: relative;
  width: auto;
  height: 70px;
  margin-bottom: 60px;
  cursor: pointer;
}
.categories .filtre-arrow {
  border: 1px solid black;
  -webkit-clip-path: polygon(75% 0%, 85% 50%, 75% 100%, 0% 100%, 10% 50%, 0% 0%);
          clip-path: polygon(75% 0%, 85% 50%, 75% 100%, 0% 100%, 10% 50%, 0% 0%);
}
@media (max-width: 575px) {
  .categories {
    flex-direction: column;
    height: 180px;
    gap: 10px;
    margin-left: 15px;
  }
}

.arrow-right {
  width: 400px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-clip-path: polygon(0% 0%, 8% 50%, 0% 100%, 89% 100%, 98% 50%, 89% 0%);
          clip-path: polygon(0% 0%, 8% 50%, 0% 100%, 89% 100%, 98% 50%, 89% 0%);
  position: absolute;
  background-color: #f5f5eb;
}
@media (max-width: 575px) {
  .arrow-right:nth-child(1) {
    left: 0px;
    position: relative;
  }
}
.arrow-right:nth-child(2) {
  left: 350px;
}
@media (max-width: 575px) {
  .arrow-right:nth-child(2) {
    position: relative;
    left: 0px;
  }
}
.arrow-right:nth-child(3) {
  left: 700px;
}
@media (max-width: 575px) {
  .arrow-right:nth-child(3) {
    position: relative;
    left: 0px;
  }
}
.arrow-right::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 85%;
  z-index: 1;
  height: 100%;
  width: 100%;
  background-image: url("../img/arrow-right.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
@media (max-width: 575px) {
  .arrow-right::before {
    width: 300px;
    height: 90px;
  }
}
.arrow-right .a-categorie {
  font-family: "GT America Bold Italic";
  z-index: 1;
  white-space: nowrap;
  margin-bottom: 0;
}
@media (max-width: 575px) {
  .arrow-right {
    width: 305px;
    height: 90px;
  }
}
.arrow-right .a-categorie--right-holder-management.active {
  color: white;
}
.arrow-right.active[data-slug=right-holder-management] {
  background-color: #def240;
}
.arrow-right.active[data-slug=in-house-events] {
  background-color: #eba1f5;
}
.arrow-right.active[data-slug=consulting-activations] {
  background-color: #4f00ff;
}
.arrow-right.active[data-slug=consulting-activations] .a-categorie {
  color: white;
}

.m-header-nav {
  padding-top: 2.0833333333vw;
  padding-bottom: 2.0833333333vw;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 100;
  background-color: transparent;
  transition: background-color 0.3s ease;
}
.m-header-nav.scrolled {
  background-color: #f5f5eb;
  border-bottom: 1px solid #121213;
}
.m-header-nav__container {
  justify-content: space-between;
  align-items: center;
}
.m-header-nav__container.mobile {
  display: none;
}
.m-header-nav__container.desktop {
  display: flex;
}
@media (max-width: 991px) {
  .m-header-nav__container.mobile {
    display: flex;
  }
  .m-header-nav__container.mobile .a-btn-rs__icon {
    width: 35px;
    height: 35px;
  }
  .m-header-nav__container.desktop {
    display: none;
  }
}
.m-header-nav__container .logo {
  position: relative;
  z-index: 10;
  width: 80px;
  height: auto;
}
@media (max-width: 991px) {
  .m-header-nav__container .logo {
    width: 60px;
  }
}
.m-header-nav__links .liens {
  display: flex;
  gap: 10px;
}
.m-header-nav__rs {
  display: flex;
  gap: 10px;
}

.menu-icon {
  cursor: pointer;
  height: 50px;
  width: 50px;
  padding: 10px;
  margin-left: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 16px;
  z-index: 2000;
}
.hamburger .line {
  width: 100%;
  height: 2px;
  background-color: #000000;
  transition: all 0.3s ease;
}
.hamburger .line:first-of-type {
  width: 70%;
}
.hamburger.open {
  height: 17px;
}
.hamburger.open .line {
  background-color: #ffffff;
}
.hamburger.open .line:nth-child(1) {
  width: 100%;
  transform: rotate(45deg) translate(6px, 6px);
}
.hamburger.open .line:nth-child(2) {
  opacity: 0;
}
.hamburger.open .line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.menu-links-container {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #121213;
  z-index: 1000;
  padding: 20px;
}
.menu-links-container.open {
  display: block;
}
.menu-links-container .liens {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100%;
  gap: 10px;
  font-family: GT America Regular;
  font-size: 25px;
  color: white;
}
.menu-links-container a {
  padding: 10px;
  text-decoration: none;
  color: white;
}
.menu-links-container a:hover {
  color: #def240;
}

.m-header-nav__container.desktop .liens {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 20px;
  margin-right: 30px;
}
.m-header-nav__container.desktop .liens a {
  color: #121213;
  text-decoration: none !important;
  font-family: "GT America Medium Italic";
}
.m-header-nav__container.desktop .liens a.current {
  color: #4f00ff;
}

.bg-arrows {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}
.bg-arrows span:nth-child(1) {
  left: 0;
  top: -330px;
  z-index: 1;
}
@media (max-width: 575px) {
  .bg-arrows span:nth-child(1) {
    left: -25px;
    top: -340px;
    display: none;
  }
}
.bg-arrows span:nth-child(2) {
  left: 75px;
  top: -100px;
}
@media (max-width: 575px) {
  .bg-arrows span:nth-child(2) {
    left: 25px;
    top: -190px;
    display: none;
  }
}
.bg-arrows span:nth-child(3) {
  left: 325px;
  top: 200px;
  z-index: 1;
}
@media (max-width: 575px) {
  .bg-arrows span:nth-child(3) {
    left: 8vw;
    top: -32vw;
  }
}
.bg-arrows span:nth-child(4) {
  left: 400px;
  top: -400px;
  z-index: 2;
}
@media (max-width: 575px) {
  .bg-arrows span:nth-child(4) {
    left: 150px;
    top: -351px;
    display: none;
  }
}
.bg-arrows span:nth-child(5) {
  left: 400px;
  top: 410px;
}
@media (max-width: 575px) {
  .bg-arrows span:nth-child(5) {
    left: -1vw;
    top: -18vw;
  }
}
.bg-arrows span:nth-child(6) {
  right: 225px;
  top: 360px;
  z-index: 1;
}
@media (max-width: 575px) {
  .bg-arrows span:nth-child(6) {
    right: 8vw;
    top: 72vw;
    z-index: 6;
  }
}
.bg-arrows span:nth-child(7) {
  right: 75px;
  top: 190px;
  z-index: 1;
}
@media (max-width: 575px) {
  .bg-arrows span:nth-child(7) {
    display: none;
  }
}
.bg-arrows span:nth-child(8) {
  right: 153px;
  top: 75px;
}
@media (max-width: 575px) {
  .bg-arrows span:nth-child(8) {
    right: -1vw;
    top: 92vw;
    z-index: 5;
  }
}
.bg-arrows span:nth-child(9) {
  right: 426px;
  top: -178px;
}
@media (max-width: 575px) {
  .bg-arrows span:nth-child(9) {
    display: none;
  }
}
.bg-arrows span:nth-child(10) {
  right: 502px;
  top: 109px;
}
@media (max-width: 575px) {
  .bg-arrows span:nth-child(10) {
    display: none;
  }
}

.top-arrow {
  position: absolute;
  width: 150px;
  height: 600px;
  display: block;
  -webkit-clip-path: polygon(0 15%, 0 100%, 50% 85%, 100% 100%, 100% 15%, 50% 0);
          clip-path: polygon(0 15%, 0 100%, 50% 85%, 100% 100%, 100% 15%, 50% 0);
  -webkit-animation: moveTop 3s forwards;
          animation: moveTop 3s forwards;
}
@media (max-width: 575px) {
  .top-arrow {
    scale: 0.5;
  }
}

.bottom-arrow {
  position: absolute;
  width: 150px;
  height: 600px;
  display: block;
  -webkit-clip-path: polygon(0 0, 0% 85%, 50% 100%, 100% 85%, 100% 0, 50% 15%);
          clip-path: polygon(0 0, 0% 85%, 50% 100%, 100% 85%, 100% 0, 50% 15%);
  -webkit-animation: moveBottom 2s forwards;
          animation: moveBottom 2s forwards;
}
@media (max-width: 575px) {
  .bottom-arrow {
    scale: 0.5;
  }
}

@-webkit-keyframes moveTop {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes moveTop {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0);
  }
}
@-webkit-keyframes moveBottom {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes moveBottom {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}
.expertises {
  width: 100%;
}

/* Chaque item est positionné en relatif pour permettre un positionnement interne éventuel */
.o-home-expertises__item {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

/* Indique que l'image est cliquable */
.o-home-expertises__image {
  cursor: pointer;
  position: relative;
}
.o-home-expertises__image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 1;
}
.o-home-expertises__image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 2;
}
.o-home-expertises__image picture {
  pointer-events: none;
  display: block;
  width: 100%;
  height: 25vw;
}
@media (max-width: 575px) {
  .o-home-expertises__image picture {
    height: 30vh;
  }
}
.o-home-expertises__image picture img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.o-home-expertises__image .o-home-expertises__title {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 3;
  font-size: clamp(18px, 3vw, 3rem);
  font-family: "GT America Bold Italic";
}
.o-home-expertises__image:hover::after {
  opacity: 0.46;
}
.o-home-expertises__image:hover::before {
  opacity: 1;
}
.o-home-expertises__image:hover .o-home-expertises__title {
  opacity: 1;
}

/* Par défaut, le contenu est masqué */
.o-home-expertises__content {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, opacity 0.5s ease;
}
.o-home-expertises__content p {
  font-family: "GT America Thin Italic";
}
.o-home-expertises__content strong {
  font-family: "GT America Bold Italic";
}
.o-home-expertises__content .link-wrapper {
  margin-top: 60px;
  text-align: center;
}
.o-home-expertises__content a {
  font-family: "GT America Bold Italic";
  margin-left: 130px;
  position: relative;
  margin-top: 30px;
  text-align: center;
  text-decoration: none;
}
@media (max-width: 575px) {
  .o-home-expertises__content a {
    font-size: 3vw;
    margin-left: 40px;
  }
}
.o-home-expertises__content a::before {
  content: "";
  position: absolute;
  top: -13px;
  left: -130px;
  width: 75px;
  height: 50px;
  background-image: url("../img/arrow-expertise.svg");
  background-repeat: no-repeat;
  background-position: right;
  background-size: cover;
}
@media (max-width: 575px) {
  .o-home-expertises__content a::before {
    top: -10px;
    left: -56px;
    width: 50px;
    height: 35px;
  }
}

/* Quand l'item a la classe active, le contenu s'affiche */
.o-home-expertises__item.active .o-home-expertises__content {
  /* La valeur max-height doit être suffisamment haute pour contenir le contenu */
  max-height: 1000px;
  opacity: 1;
  padding: 5vw 16vw;
}
@media (max-width: 575px) {
  .o-home-expertises__item.active .o-home-expertises__content {
    padding: 10vw 8vw;
  }
}

.pink .o-home-expertises__image::before {
  background-color: #eba1f5;
  mix-blend-mode: color;
}
.pink .o-home-expertises__image::after {
  background-color: #eba1f5;
}

.purple .o-home-expertises__image {
  color: #ffffff;
}
.purple .o-home-expertises__image::before {
  background-color: #4f00ff;
  mix-blend-mode: color;
}
.purple .o-home-expertises__image::after {
  background-color: #4f00ff;
}

.green-yellow .o-home-expertises__image::before,
.yellow .o-home-expertises__image::before {
  background-color: #def240;
  mix-blend-mode: color;
}
.green-yellow .o-home-expertises__image::after,
.yellow .o-home-expertises__image::after {
  background-color: #def240;
}

.m-flex-image_texte {
  border-bottom: 1px solid #121213;
}
.m-flex-image_texte.variation-1 {
  padding: 4vw;
}
.m-flex-image_texte.variation-1 .liens {
  padding: 4vw;
  flex-direction: column;
  gap: 5px;
}
.m-flex-image_texte.variation-2 .text {
  padding: 4vw 0;
}
.m-flex-image_texte.variation-2 .visuel {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.m-flex-image_texte.variation-3 .text {
  padding-top: 4vw;
  padding-bottom: 8.3333333333vw;
}
.m-flex-image_texte.variation-3 .visuel {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.m-flex-image_texte .text-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.m-flex-image_texte .bloc-fleche {
  border-top: 1px solid #121213;
  padding-left: 4vw;
}
.m-flex-image_texte .bloc-fleche .a-btn-fleche__flex {
  margin-left: 0;
}
.m-flex-image_texte .liens {
  padding: 50px;
}

.m-flex-carrousel {
  text-align: center;
  padding: 60px;
  border-top: 1px solid black;
}
@media (max-width: 575px) {
  .m-flex-carrousel {
    padding: 8vw;
  }
}
.m-flex-carrousel .splide__slide img {
  max-height: 80vh;
  max-width: 100%;
}
.m-flex-carrousel .splide__arrows {
  margin-top: 3.3333333333vw;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 2.0833333333vw;
}
@media (max-width: 575px) {
  .m-flex-carrousel .splide__arrows .splide__arrow--prev {
    left: 0em;
  }
}
@media (max-width: 575px) {
  .m-flex-carrousel .splide__arrows .splide__arrow--next {
    right: 0em;
  }
}
.m-flex-carrousel .splide__arrows .splide__arrow {
  position: relative;
  background-color: transparent;
  border: none;
  filter: none;
  opacity: 1;
  top: unset;
  transform: none;
}
.m-flex-carrousel .splide__arrows .splide__pagination {
  padding: 0;
  justify-content: space-around;
  gap: 2.4305555556vw;
  position: relative;
  bottom: unset;
}
@media (max-width: 575px) {
  .m-flex-carrousel .splide__arrows .splide__pagination {
    gap: 1.3888888889vw;
  }
}
.m-flex-carrousel .splide__arrows .splide__pagination .splide__pagination__page {
  width: auto;
  height: auto;
  font-family: "GT America Medium Italic";
  background-color: transparent;
  color: #121213;
  opacity: 1;
}
.m-flex-carrousel .splide__arrows .splide__pagination .splide__pagination__page.is-active {
  font-family: "GT America Bold italic";
  transform: none;
}

.m-flex-chiffres {
  position: relative;
  border-bottom: 1px solid #121213;
}
.m-flex-chiffres .r-arrow {
  background-color: #def240;
  -webkit-clip-path: polygon(65% 0%, 85% 50%, 65% 100%, 0% 100%, 0% 50%, 0% 0%);
          clip-path: polygon(65% 0%, 85% 50%, 65% 100%, 0% 100%, 0% 50%, 0% 0%);
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 20%;
  transition: right 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.m-flex-chiffres .r-arrow::after {
  content: "";
  position: absolute;
  right: 60px;
  top: 0;
  z-index: -1;
  -webkit-clip-path: polygon(65% 0%, 85% 50%, 65% 100%, 0% 100%, 0% 50%, 0% 0%);
          clip-path: polygon(65% 0%, 85% 50%, 65% 100%, 0% 100%, 0% 50%, 0% 0%);
  height: 100%;
  width: 100%;
  background-color: rgb(41, 41, 41);
}
@media (max-width: 575px) {
  .m-flex-chiffres .r-arrow::after {
    right: 0;
  }
}
.m-flex-chiffres .l-arrow {
  background-color: #def240;
  -webkit-clip-path: polygon(65% 0%, 85% 50%, 65% 100%, 0% 100%, 0% 50%, 0% 0%);
          clip-path: polygon(65% 0%, 85% 50%, 65% 100%, 0% 100%, 0% 50%, 0% 0%);
  rotate: 180deg;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 20%;
  z-index: 1;
  transition: left 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.m-flex-chiffres .l-arrow::after {
  content: "";
  position: absolute;
  left: -60px;
  top: 0;
  z-index: -1;
  -webkit-clip-path: polygon(65% 0%, 85% 50%, 65% 100%, 0% 100%, 0% 50%, 0% 0%);
          clip-path: polygon(65% 0%, 85% 50%, 65% 100%, 0% 100%, 0% 50%, 0% 0%);
  height: 100%;
  width: 100%;
  background-color: rgb(41, 41, 41);
}
@media (max-width: 575px) {
  .m-flex-chiffres .l-arrow::after {
    left: 0;
  }
}
.m-flex-chiffres .frame {
  position: absolute;
  top: 0;
  height: 100%;
  z-index: 50;
  transition: all 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.m-flex-chiffres .frame--left {
  left: 30%;
}
.m-flex-chiffres .frame--right {
  right: 30%;
}
@media (max-width: 991px) {
  .m-flex-chiffres .frame {
    display: none;
  }
}
.m-flex-chiffres.is-active .frame--left {
  left: 4vw;
  width: 50%;
  transition: all 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
@media (max-width: 575px) {
  .m-flex-chiffres.is-active .frame--left {
    left: 0;
    width: 51%;
    -webkit-clip-path: polygon(80% 0%, 100% 50%, 80% 100%, 0% 100%, 0% 50%, 0% 0%);
            clip-path: polygon(80% 0%, 100% 50%, 80% 100%, 0% 100%, 0% 50%, 0% 0%);
  }
}
.m-flex-chiffres.is-active .frame--right {
  right: 4vw;
  width: 47%;
  transition: all 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
@media (max-width: 575px) {
  .m-flex-chiffres.is-active .frame--right {
    right: 0;
    width: 51%;
    -webkit-clip-path: polygon(80% 0%, 100% 50%, 80% 100%, 0% 100%, 0% 50%, 0% 0%);
            clip-path: polygon(80% 0%, 100% 50%, 80% 100%, 0% 100%, 0% 50%, 0% 0%);
  }
}
.m-flex-chiffres.is-active .m-flex-chiffres__chiffres {
  opacity: 1;
}
.m-flex-chiffres.is-finish .frame {
  z-index: 0;
}
.m-flex-chiffres__chiffres {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
  align-content: center;
  padding: 4.8611111111vw 0;
  gap: 2.0833333333vw;
  opacity: 0;
}
@media (max-width: 991px) {
  .m-flex-chiffres__chiffres {
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    align-content: center;
  }
}
.m-flex-chiffres__chiffres .chiffre {
  position: relative;
  z-index: 2;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  align-content: stretch;
  height: 100%;
}
.m-flex-chiffres__chiffres .chiffre__title {
  text-align: center;
  font-family: GT America Black Italic;
  font-size: 65px;
  color: rgb(255, 255, 255);
}
@media (max-width: 991px) {
  .m-flex-chiffres__chiffres .chiffre__title {
    font-size: 35px;
    line-height: 46px;
  }
}
.m-flex-chiffres__chiffres .chiffre__description {
  color: rgb(255, 255, 255);
  font-family: GT America Bold;
}
@media (max-width: 991px) {
  .m-flex-chiffres__chiffres .chiffre__description {
    font-size: 14px;
  }
}
.m-flex-chiffres__chiffres .chiffre__image {
  width: 10vw;
  margin-bottom: 1.3888888889vw;
  height: 100%;
  display: flex;
}
.m-flex-chiffres__chiffres .chiffre__image img {
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: 50%;
     object-position: 50%;
}
@media (max-width: 991px) {
  .m-flex-chiffres__chiffres .chiffre__image {
    width: 110px;
    height: 110px;
    margin-bottom: 20px;
  }
}

.page-template-tpl-agence .m-flex-chiffres {
  border-bottom: none;
  border-top: 1px solid #121213;
}

.m-text-dynamique h1 {
  font-family: "GT America Medium Italic";
  text-align: center;
  font-size: 65px;
  color: #ffffff;
}
@media (max-width: 991px) {
  .m-text-dynamique h1 {
    font-size: 50px;
  }
}
@media (max-width: 991px) {
  .m-text-dynamique h1 {
    font-size: 45px;
  }
}
.m-text-dynamique .color {
  font-family: "GT America Black Italic";
}
.m-text-dynamique .color--violet {
  color: #4f00ff;
}
.m-text-dynamique .color--vert-jaune {
  color: #def240;
}
.m-text-dynamique .color--rose {
  color: #eba1f5;
}

.m-expertise {
  position: relative;
  overflow: hidden;
}
.m-expertise__img {
  position: relative;
}
.m-expertise__img img {
  width: 100%;
  height: 30vh;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease-in-out;
}
@media (max-width: 991px) {
  .m-expertise__img img {
    height: 20vh;
  }
}
.m-expertise__img .expertise-bg {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0;
  mix-blend-mode: color;
  transition: opacity 0.3s ease-in-out;
}
.m-expertise h3 {
  font-size: 2.5rem;
  font-family: "GT America Black Italic";
  z-index: 2;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
@media (max-width: 991px) {
  .m-expertise h3 {
    font-size: 2rem;
  }
}
@media (max-width: 575px) {
  .m-expertise h3 {
    font-size: 1.2rem;
  }
}
.m-expertise:hover .expertise-bg {
  opacity: 1;
}
.m-expertise:hover h3 {
  opacity: 1;
}
.m-expertise:hover img {
  transform: scale(1.1);
}

/*  
  .expertise-name.gauche {
    left: vw(120px);
    transform: translateX(-100%);
    clip-path: polygon(0% 0%, 80% 0, 100% 50%, 80% 100%, 0% 100%);
    @include respond-to("small") {
      clip-path: polygon(0% 0%, 80% 0, 100% 50%, 80% 100%, 0% 100%);
    }
  }

  .expertise-name.droite {
    right: vw(120px);
    transform: translateX(100%);
    clip-path: polygon(20% 0, 100% 0%, 100% 100%, 20% 100%, 0% 50%);
    @include respond-to("small") {
      clip-path: polygon(20% 0, 100% 0%, 100% 100%, 20% 100%, 0% 50%);
    }
  }

  .expertise-name.droite h3 {
    margin-left: 145px;
    @include respond-to("medium") {
      margin-left: 100px;
    }
    @include respond-to("small") {
      margin-left: 70px;
      margin-right: 10px;
    }
  }

  .expertise-name.gauche h3 {

    @include respond-to("small") {
    }
  } */
.m-thumb-post {
  position: relative;
  display: block;
  overflow: hidden;
  transition: transform 0.3s ease;
  text-decoration: none;
}
.m-thumb-post__visuel {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1/1;
  transition: all 0.3s ease;
}
.m-thumb-post__visuel img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.m-thumb-post__visuel .color-bg {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0;
}
.m-thumb-post:hover {
  text-decoration: none;
}
.m-thumb-post:hover .color-bg {
  opacity: 1;
  mix-blend-mode: color;
}
.m-thumb-post:hover .m-thumb-post__visuel {
  transform: scale(0.9);
}
.m-thumb-post__filtre {
  font-size: 0.8rem;
  font-family: "GT America Bold Italic";
  margin: 20px 0 10px 0;
}
.m-thumb-post__filtre .a-categorie--consulting-activations {
  color: #4f00ff;
}
.m-thumb-post__filtre .a-categorie--in-house-events {
  color: #eba1f5;
}
.m-thumb-post__filtre .a-categorie--right-holder-management {
  color: #121213;
}
@media (max-width: 575px) {
  .m-thumb-post__filtre {
    padding: 0 8vw;
  }
}
@media (max-width: 575px) {
  .m-thumb-post__title {
    font-size: 1.2rem;
    padding: 0 8vw;
  }
}
.m-thumb-post__title h3 {
  font-size: 1rem;
  font-family: "GT America Thin Italic";
  color: black;
}
@media (max-width: 991px) {
  .m-thumb-post__title h3 {
    font-size: 5vw;
  }
}
.m-thumb-post__title p {
  font-size: 0.8rem;
  font-family: "GT America Bold";
}

.m-thumb-post[data-cat=consulting-activations] .m-thumb-post__visuel .color-bg {
  background-color: #4f00ff;
}

.m-thumb-post[data-cat=in-house-events] .m-thumb-post__visuel .color-bg {
  background-color: #eba1f5;
}

.m-thumb-post[data-cat=right-holder-management] .m-thumb-post__visuel .color-bg {
  background-color: #def240;
}

.m-flex-chiffres {
  position: relative;
  border-bottom: 1px solid #121213;
}
.m-flex-chiffres .r-arrow {
  background-color: #def240;
  -webkit-clip-path: polygon(65% 0%, 85% 50%, 65% 100%, 0% 100%, 0% 50%, 0% 0%);
          clip-path: polygon(65% 0%, 85% 50%, 65% 100%, 0% 100%, 0% 50%, 0% 0%);
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 20%;
  transition: right 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.m-flex-chiffres .r-arrow::after {
  content: "";
  position: absolute;
  right: 60px;
  top: 0;
  z-index: -1;
  -webkit-clip-path: polygon(65% 0%, 85% 50%, 65% 100%, 0% 100%, 0% 50%, 0% 0%);
          clip-path: polygon(65% 0%, 85% 50%, 65% 100%, 0% 100%, 0% 50%, 0% 0%);
  height: 100%;
  width: 100%;
  background-color: rgb(41, 41, 41);
}
@media (max-width: 575px) {
  .m-flex-chiffres .r-arrow::after {
    right: 0;
  }
}
.m-flex-chiffres .l-arrow {
  background-color: #def240;
  -webkit-clip-path: polygon(65% 0%, 85% 50%, 65% 100%, 0% 100%, 0% 50%, 0% 0%);
          clip-path: polygon(65% 0%, 85% 50%, 65% 100%, 0% 100%, 0% 50%, 0% 0%);
  rotate: 180deg;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 20%;
  z-index: 1;
  transition: left 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.m-flex-chiffres .l-arrow::after {
  content: "";
  position: absolute;
  left: -60px;
  top: 0;
  z-index: -1;
  -webkit-clip-path: polygon(65% 0%, 85% 50%, 65% 100%, 0% 100%, 0% 50%, 0% 0%);
          clip-path: polygon(65% 0%, 85% 50%, 65% 100%, 0% 100%, 0% 50%, 0% 0%);
  height: 100%;
  width: 100%;
  background-color: rgb(41, 41, 41);
}
@media (max-width: 575px) {
  .m-flex-chiffres .l-arrow::after {
    left: 0;
  }
}
.m-flex-chiffres .frame {
  position: absolute;
  top: 0;
  height: 100%;
  z-index: 50;
  transition: all 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.m-flex-chiffres .frame--left {
  left: 30%;
}
.m-flex-chiffres .frame--right {
  right: 30%;
}
@media (max-width: 991px) {
  .m-flex-chiffres .frame {
    display: none;
  }
}
.m-flex-chiffres.is-active .frame--left {
  left: 4vw;
  width: 50%;
  transition: all 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
@media (max-width: 575px) {
  .m-flex-chiffres.is-active .frame--left {
    left: 0;
    width: 51%;
    -webkit-clip-path: polygon(80% 0%, 100% 50%, 80% 100%, 0% 100%, 0% 50%, 0% 0%);
            clip-path: polygon(80% 0%, 100% 50%, 80% 100%, 0% 100%, 0% 50%, 0% 0%);
  }
}
.m-flex-chiffres.is-active .frame--right {
  right: 4vw;
  width: 47%;
  transition: all 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
@media (max-width: 575px) {
  .m-flex-chiffres.is-active .frame--right {
    right: 0;
    width: 51%;
    -webkit-clip-path: polygon(80% 0%, 100% 50%, 80% 100%, 0% 100%, 0% 50%, 0% 0%);
            clip-path: polygon(80% 0%, 100% 50%, 80% 100%, 0% 100%, 0% 50%, 0% 0%);
  }
}
.m-flex-chiffres.is-active .m-flex-chiffres__chiffres {
  opacity: 1;
}
.m-flex-chiffres.is-finish .frame {
  z-index: 0;
}
.m-flex-chiffres__chiffres {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
  align-content: center;
  padding: 4.8611111111vw 0;
  gap: 2.0833333333vw;
  opacity: 0;
}
@media (max-width: 991px) {
  .m-flex-chiffres__chiffres {
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    align-content: center;
  }
}
.m-flex-chiffres__chiffres .chiffre {
  position: relative;
  z-index: 2;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  align-content: stretch;
  height: 100%;
}
.m-flex-chiffres__chiffres .chiffre__title {
  text-align: center;
  font-family: GT America Black Italic;
  font-size: 65px;
  color: rgb(255, 255, 255);
}
@media (max-width: 991px) {
  .m-flex-chiffres__chiffres .chiffre__title {
    font-size: 35px;
    line-height: 46px;
  }
}
.m-flex-chiffres__chiffres .chiffre__description {
  color: rgb(255, 255, 255);
  font-family: GT America Bold;
}
@media (max-width: 991px) {
  .m-flex-chiffres__chiffres .chiffre__description {
    font-size: 14px;
  }
}
.m-flex-chiffres__chiffres .chiffre__image {
  width: 10vw;
  margin-bottom: 1.3888888889vw;
  height: 100%;
  display: flex;
}
.m-flex-chiffres__chiffres .chiffre__image img {
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: 50%;
     object-position: 50%;
}
@media (max-width: 991px) {
  .m-flex-chiffres__chiffres .chiffre__image {
    width: 110px;
    height: 110px;
    margin-bottom: 20px;
  }
}

.page-template-tpl-agence .m-flex-chiffres {
  border-bottom: none;
  border-top: 1px solid #121213;
}

.m-agence-expertise__titres {
  display: flex;
  margin: 60px 0;
  position: relative;
  height: 100px;
  width: auto;
}
@media (max-width: 575px) {
  .m-agence-expertise__titres {
    height: 200px;
  }
}
.m-agence-expertise .title-block {
  padding: 10px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-size: 18px;
  font-family: GT America Bold;
}
.m-agence-expertise .arrow-right {
  width: 400px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-clip-path: polygon(0% 0%, 8% 50%, 0% 100%, 89% 100%, 98% 50%, 89% 0%);
          clip-path: polygon(0% 0%, 8% 50%, 0% 100%, 89% 100%, 98% 50%, 89% 0%);
  position: absolute;
  color: #121213;
  z-index: 10;
  background-color: transparent;
  transition: background-color 0.3s ease;
}
.m-agence-expertise .arrow-right::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 85%;
  z-index: 1;
  height: 100%;
  width: 100%;
  z-index: 10;
  background-image: url("../img/arrow-right.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
.m-agence-expertise .arrow-right::after {
  content: "";
  position: absolute;
  right: 100%;
  width: 400px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-clip-path: polygon(0% 0%, 8% 50%, 0% 100%, 89% 100%, 98% 50%, 89% 0%);
          clip-path: polygon(0% 0%, 8% 50%, 0% 100%, 89% 100%, 98% 50%, 89% 0%);
  position: absolute;
  color: #121213;
  z-index: -1;
  background-color: var(--title-color, red);
  transition: right 0.3s ease;
}
.m-agence-expertise .arrow-right:hover::after {
  right: 0;
}
.m-agence-expertise .arrow-right.active {
  z-index: 10;
}
.m-agence-expertise #title1 {
  right: 55%;
  top: 34px;
  --title-color: #eba1f5;
}
@media (max-width: 575px) {
  .m-agence-expertise #title1 {
    left: 10px;
    top: 80px;
  }
}
.m-agence-expertise #title2 {
  left: 50%;
  transform: translateX(-50%);
  --title-color: #D4D936;
}
@media (max-width: 575px) {
  .m-agence-expertise #title2 {
    left: 10px;
    transform: translateX(0%);
  }
}
.m-agence-expertise #title3 {
  left: 55%;
  top: 34px;
  --title-color: #4f00ff;
}
.m-agence-expertise #title3.active {
  color: white;
}
.m-agence-expertise #title3:hover {
  color: white;
}
@media (max-width: 575px) {
  .m-agence-expertise #title3 {
    left: 10px;
    top: 160px;
  }
}
.m-agence-expertise__textes {
  padding-bottom: 60px;
  width: 45%;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .m-agence-expertise__textes {
    width: 80%;
  }
}
@media screen and (max-width: 768px) {
  .m-agence-expertise__textes {
    width: 90%;
  }
}
.m-agence-expertise .content {
  opacity: 0;
  height: 0;
  overflow: hidden;
  margin-top: 10px;
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
  transform: translateX(-20%);
}
.m-agence-expertise .content h2,
.m-agence-expertise .content h3,
.m-agence-expertise .content h4 {
  font-family: GT America Black Italic;
  font-size: 20px;
  color: black;
}
.m-agence-expertise .content p {
  font-family: GT America Regular;
  font-size: 16px;
  color: black;
}
.m-agence-expertise .content p strong,
.m-agence-expertise .content p b {
  font-family: GT America Bold;
}
.m-agence-expertise .content.active {
  opacity: 1;
  height: auto;
  transform: translateX(0);
}
.m-agence-expertise .a-btn-link {
  margin-bottom: 60px;
}
.m-agence-expertise .contact-title {
  background-color: #def240;
  height: 100px;
  display: flex;
  align-items: center;
  position: relative;
  border-bottom: 1px solid black;
}
.m-agence-expertise .contact-title .title {
  z-index: 1;
  padding-left: 120px;
  font-family: GT America Black Italic;
  color: #121213;
  font-size: 30px;
}
@media (max-width: 575px) {
  .m-agence-expertise .contact-title .title {
    font-size: 20px;
    padding-left: 30px;
  }
}
.m-agence-expertise .contact-title .r-arrow {
  position: absolute;
  top: 0;
  left: -100px;
  width: 50%;
  height: 100%;
  background-color: #f5f5eb;
  -webkit-clip-path: polygon(75% 0%, 85% 50%, 75% 100%, 0% 100%, 10% 50%, 0% 0%);
          clip-path: polygon(75% 0%, 85% 50%, 75% 100%, 0% 100%, 10% 50%, 0% 0%);
}
@media (max-width: 575px) {
  .m-agence-expertise .contact-title .r-arrow {
    width: 100%;
    left: -50px;
  }
}
.m-agence-expertise .title-block.arrow-right {
  color: transparent;
  transition: background-color 0.5s ease, color 0.5s ease;
}
.m-agence-expertise .title-block.arrow-right.active {
  color: black;
  z-index: 50;
}
.m-agence-expertise .title-block.arrow-right:hover {
  color: black;
}

.o-footer {
  background-color: black;
  padding-top: 3.4722222222vw;
  padding-bottom: 3.4722222222vw;
  color: #ffffff;
}
@media (max-width: 575px) {
  .o-footer {
    padding: 8vw;
  }
}
.o-footer__logo {
  height: 100%;
  display: flex;
  align-items: center;
}
.o-footer__logo img {
  width: 80px;
  height: auto;
  margin-right: 30px;
}
.o-footer__logo .group {
  font-size: 12px;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100px;
  height: 100%;
}
.o-footer__logo .group span {
  width: 200px;
}
.o-footer__rs {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  gap: 1.0416666667vw;
}
@media (max-width: 575px) {
  .o-footer__rs {
    margin-top: 20px;
  }
}
.o-footer__rs .reseaux {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 0.6944444444vw;
  flex-shrink: 0;
}
.o-footer a {
  color: #ffffff;
  text-decoration: none;
}
.o-footer__menu {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: flex-start;
  align-content: stretch;
  line-height: 50px;
}
@media (max-width: 991px) {
  .o-footer__menu {
    margin-top: 20px;
  }
}
.o-footer__menu a {
  white-space: nowrap;
  text-decoration: none;
}
.o-footer__menu a:hover {
  text-decoration: underline;
}
.o-footer__menu--un {
  font-size: 14px;
  line-height: 29px;
}
.o-footer__menu--deux {
  font-size: 12px;
  line-height: 15px;
}

.o-page {
  display: flex;
  flex-direction: column;
}
.o-page-titre {
  font-family: "GT America Black Italic";
  font-size: 3rem;
  border-top: 1px solid #121213;
  border-bottom: 1px solid #121213;
  position: relative;
  overflow: hidden;
}
@media (max-width: 575px) {
  .o-page-titre {
    font-size: 1.5rem;
  }
}
.o-page-titre h1, .o-page-titre h2 {
  color: #121213;
  z-index: 2;
  position: inherit;
  transition: transform 1s ease;
  margin-bottom: 0px;
  padding: 20px 0;
}
@media (max-width: 575px) {
  .o-page-titre h1, .o-page-titre h2 {
    font-size: 1.5rem;
  }
}
.o-page-titre h2 {
  font-size: 4.8vw;
}
.o-page-titre .r-arrow {
  height: 100%;
  width: 60%;
  position: absolute;
  -webkit-clip-path: polygon(78% 0%, 85% 50%, 78% 100%, 0% 100%, 0% 50%, 0% 0%);
          clip-path: polygon(78% 0%, 85% 50%, 78% 100%, 0% 100%, 0% 50%, 0% 0%);
  background-color: #f5f5eb;
  z-index: 1;
  transition: width 1s ease;
}
.o-page-titre.loaded .r-arrow {
  width: 80%;
  height: 100%;
}
@media (max-width: 575px) {
  .o-page-titre.loaded .r-arrow {
    width: 90%;
  }
}
.o-page-titre.loaded h1, .o-page-titre.loaded h2 {
  transform: translateX(180px);
}
@media (max-width: 575px) {
  .o-page-titre.loaded h1, .o-page-titre.loaded h2 {
    transform: translateX(30px);
  }
}
.o-page-titre.violet, .o-page-titre.color-consulting-activations {
  background-color: #4f00ff;
}
.o-page-titre.green-yellow, .o-page-titre.color-right-holder-management {
  background-color: #def240;
}
.o-page-titre.pink, .o-page-titre.color-in-house-events {
  background-color: #eba1f5;
}
.o-page__title {
  font-size: 2.5rem;
  font-family: "GT America Black Italic";
  color: #121213;
  margin: 0 auto 50px;
  width: 60%;
  text-align: left;
}
@media (max-width: 575px) {
  .o-page__title {
    font-size: 1.5rem;
  }
}
.o-page__content {
  width: 60%;
  margin: 0 auto;
  text-align: left;
}
@media (max-width: 575px) {
  .o-page__content {
    width: 80%;
    font-size: 14px;
  }
}
.o-page__content p {
  color: #121213;
  font-family: "GT America Regular";
}
.o-page__content p strong,
.o-page__content p b {
  font-family: "GT America Bold";
}
.o-page__content h2 {
  margin-top: 35px !important;
}

.o-welcome__content {
  padding: 50px;
  height: 20vh;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: baseline;
  overflow: hidden;
  border-bottom: 1px solid #b1afff;
}
.o-welcome__content h1 {
  font-size: 30px;
}
.o-welcome__btn {
  background: #ffffff;
  color: #b1afff;
  text-align: center;
  text-decoration: none;
  display: block;
}
.o-welcome__btn span {
  margin-right: 10px;
  display: inline-block;
}
.o-welcome__btn:hover {
  text-decoration: none;
}
.o-welcome iframe {
  height: 80vh;
  width: calc(100vw - (100vw - 100%));
}

.admin-bar iframe {
  height: calc(80vh - 32px);
}

.o-hero-home {
  min-height: calc(100vh - 145px);
  background-repeat: no-repeat;
  background-size: cover;
  padding-bottom: 3.4722222222vw;
  position: relative;
  padding: 4vw;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: stretch;
  align-content: stretch;
  overflow: hidden;
}
@media (max-width: 575px) {
  .o-hero-home {
    justify-content: flex-start;
    min-height: 100vh;
  }
}
.o-hero-home__liens {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-end;
  position: absolute;
  bottom: 100px;
  right: -2px;
}
@media (max-width: 575px) {
  .o-hero-home__liens {
    right: -110px;
    bottom: 200px;
  }
}
.o-hero-home__liens a {
  color: #ffffff;
}
.o-hero-home__video .video-full-bg {
  height: 100vh;
  width: 100vw;
  -o-object-fit: cover;
     object-fit: cover;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.o-hero-home .m-text-dynamique {
  margin-top: 30px;
}

.o-home-manifest {
  background-color: #f5f5eb;
  padding-bottom: 60px;
  overflow: hidden;
}
.o-home-manifest h2 {
  color: #121213;
  font-family: GT America Black Italic;
  margin-bottom: 25px;
}
.o-home-manifest p {
  color: #121213;
  font-family: GT America Regular;
}
.o-home-manifest p strong,
.o-home-manifest p b {
  font-family: GT America Bold;
}
.o-home-manifest__bouton a:hover {
  color: #ffffff;
}
.o-home-manifest__arrows {
  height: 40vh;
  margin: 0 auto;
  width: 40%;
  position: relative;
}
@media (max-width: 575px) {
  .o-home-manifest__arrows {
    height: 35vh;
    width: 100%;
    height: 28vh;
  }
}
.o-home-manifest__arrows .l-arrow,
.o-home-manifest__arrows .r-arrow {
  height: 100px;
  width: 600px;
  position: absolute;
}
@media (max-width: 575px) {
  .o-home-manifest__arrows .l-arrow,
.o-home-manifest__arrows .r-arrow {
    height: 60px;
    width: 380px;
  }
}
.o-home-manifest__arrows .l-arrow {
  -webkit-clip-path: polygon(100% 0%, 90% 50%, 100% 100%, 25% 100%, 15% 50%, 25% 0%);
          clip-path: polygon(100% 0%, 90% 50%, 100% 100%, 25% 100%, 15% 50%, 25% 0%);
}
.o-home-manifest__arrows .r-arrow {
  -webkit-clip-path: polygon(75% 0%, 85% 50%, 75% 100%, 0% 100%, 10% 50%, 0% 0%);
          clip-path: polygon(75% 0%, 85% 50%, 75% 100%, 0% 100%, 10% 50%, 0% 0%);
}
.o-home-manifest__arrows .gauche {
  -webkit-clip-path: polygon(100% 0%, 90% 50%, 100% 100%, 25% 100%, 15% 50%, 25% 0%);
          clip-path: polygon(100% 0%, 90% 50%, 100% 100%, 25% 100%, 15% 50%, 25% 0%);
}
.o-home-manifest__arrows .droite {
  -webkit-clip-path: polygon(75% 0%, 85% 50%, 75% 100%, 0% 100%, 10% 50%, 0% 0%);
          clip-path: polygon(75% 0%, 85% 50%, 75% 100%, 0% 100%, 10% 50%, 0% 0%);
}
.o-home-manifest__arrows span:nth-child(1) {
  top: 0;
}
@media (max-width: 575px) {
  .o-home-manifest__arrows span:nth-child(1) {
    right: -70px;
  }
}
.o-home-manifest__arrows span:nth-child(2) {
  top: 47px;
  left: 250px;
  z-index: 1;
}
@media (max-width: 575px) {
  .o-home-manifest__arrows span:nth-child(2) {
    left: 15px;
  }
}
.o-home-manifest__arrows span:nth-child(3) {
  top: 146px;
  left: -80px;
  z-index: 1;
}
@media (max-width: 575px) {
  .o-home-manifest__arrows span:nth-child(3) {
    top: 90px;
    left: -50px;
  }
}
.o-home-manifest__arrows span:nth-child(4) {
  top: 195px;
}
@media (max-width: 575px) {
  .o-home-manifest__arrows span:nth-child(4) {
    top: 120px;
  }
}
.o-home-manifest__arrows .arrow {
  opacity: 0;
}
@-webkit-keyframes left-to-right {
  from {
    transform: translateX(-500px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes left-to-right {
  from {
    transform: translateX(-500px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@-webkit-keyframes right-to-left {
  from {
    transform: translateX(500px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes right-to-left {
  from {
    transform: translateX(500px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
.o-home-manifest__arrows .l-arrow.appear {
  -webkit-animation: right-to-left 0.8s ease forwards;
          animation: right-to-left 0.8s ease forwards;
}
.o-home-manifest__arrows .r-arrow.appear {
  -webkit-animation: left-to-right 0.8s ease forwards;
          animation: left-to-right 0.8s ease forwards;
}
.o-home-manifest__text {
  width: 60%;
  margin: 0 auto 50px;
  text-align: center;
}
.o-home-manifest__text p {
  margin-bottom: 1.25rem;
}
@media (max-width: 575px) {
  .o-home-manifest__text {
    width: 80%;
    font-size: 14px;
  }
}

.o-home-expertises__title .m-text-dynamique h2 {
  font-family: "GT America Medium Italic";
  text-align: center;
  font-size: 65px;
  color: #ffffff;
  background-color: #121213;
  padding: 50px 30px;
  margin-bottom: 0px !important;
}
@media (max-width: 991px) {
  .o-home-expertises__title .m-text-dynamique h2 {
    font-size: 2.5em;
  }
}

.o-contact {
  display: flex;
  flex-direction: column;
  background-color: #f5f5eb;
}
.o-contact__adress-infos {
  border-bottom: 1px solid #121213;
  border-top: 1px solid #121213;
  display: flex;
}
.o-contact__adress {
  display: flex;
  flex-direction: column;
  padding: 100px 120px;
  width: 80%;
}
@media (max-width: 575px) {
  .o-contact__adress {
    padding: 80px 30px;
  }
}
.o-contact__adress .adresse-infos {
  margin-bottom: 30px;
}
.o-contact__adress .logo-rs {
  display: flex;
  gap: 10px;
}
.o-contact__img {
  width: 40%;
  border-left: 1px solid #121213;
}
.o-contact__img img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
.o-contact form {
  display: flex;
  flex-direction: column;
}
.o-contact form label {
  width: 100%;
}
.o-contact form input {
  width: 100%;
  margin-bottom: 20px;
  padding: 10px;
  border-bottom: 1px solid #121213 !important;
  color: #121213;
}
.o-contact form input input:focus {
  outline: none;
}
.o-contact form textarea {
  width: 100%;
  margin-top: 10px;
  margin-bottom: 20px;
  padding: 10px;
  border: 1px solid #121213 !important;
  color: #121213;
}
.o-contact form .submit-arrow {
  overflow: hidden;
  position: relative;
}
@media (max-width: 575px) {
  .o-contact form .submit-arrow {
    width: 300px;
    color: #ffffff;
    margin-left: -30px;
  }
  .o-contact form .submit-arrow::before {
    left: -152px;
  }
  .o-contact form .submit-arrow::after {
    -webkit-clip-path: polygon(0% 0%, 0% 100%, 89% 100%, 100% 49%, 89% 0%);
            clip-path: polygon(0% 0%, 0% 100%, 89% 100%, 100% 49%, 89% 0%);
  }
}
.o-contact form .submit-arrow::after {
  right: 90%;
  background-color: #4f00ff;
}
.o-contact form .submit-arrow p {
  margin-bottom: 0;
}
.o-contact form .submit-arrow .submit-btn {
  top: 0;
  right: 0;
  z-index: 1000;
  position: absolute;
  height: 70px;
  width: 450px;
  cursor: pointer;
  display: block;
  cursor: pointer;
  margin-bottom: 0;
  border-bottom: none !important;
}
@media (max-width: 575px) {
  .o-contact form .submit-arrow .submit-btn {
    width: 200px;
    left: 0;
    right: unset;
  }
}
.o-contact form .submit-arrow .wpcf7-spinner {
  top: 22px;
  right: 50px;
}
.o-contact form .submit-arrow:hover input {
  color: #ffffff;
}
.o-contact h3 {
  font-family: GT America Black Italic;
  color: #121213;
  font-size: 30px;
  margin: 0;
}
@media (max-width: 575px) {
  .o-contact h3 {
    font-size: 20px;
  }
}
.o-contact p {
  font-family: GT America Regular;
  color: #121213;
  font-size: 20px;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .o-contact p {
    font-size: 15px;
  }
}
.o-contact .contact-title {
  background-color: #eba1f5;
  height: 100px;
  display: flex;
  align-items: center;
  position: relative;
}
.o-contact .contact-title .title {
  z-index: 1;
  padding-left: 120px;
}
@media (max-width: 575px) {
  .o-contact .contact-title .title {
    padding-left: 30px;
  }
}
.o-contact .contact-title .r-arrow {
  position: absolute;
  top: 0;
  left: 0;
  width: 65%;
  height: 100%;
  background-color: #f5f5eb;
  -webkit-clip-path: polygon(80% 0%, 87% 50%, 80% 100%, 0% 100%, 0% 0%);
          clip-path: polygon(80% 0%, 87% 50%, 80% 100%, 0% 100%, 0% 0%);
}
@media (max-width: 575px) {
  .o-contact .contact-title .r-arrow {
    width: 85%;
    -webkit-clip-path: polygon(80% 0%, 90% 50%, 80% 100%, 0% 100%, 0% 0%);
            clip-path: polygon(80% 0%, 90% 50%, 80% 100%, 0% 100%, 0% 0%);
  }
}
.o-contact .contact-form {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 100px 120px;
}
.o-contact .contact-form .contact-description {
  width: 60%;
}
.o-contact .contact-form #wpcf7-f99-p43-o1 {
  width: 40%;
}
.o-contact .contact-form #wpcf7-f99-p43-o1 small {
  font-size: 13px;
}
@media (max-width: 991px) {
  .o-contact .contact-form {
    flex-direction: column;
  }
  .o-contact .contact-form .contact-description {
    width: 100%;
  }
  .o-contact .contact-form #wpcf7-f99-p43-o1 {
    width: 100%;
  }
}
@media (max-width: 575px) {
  .o-contact .contact-form {
    padding: 80px 8vw;
  }
}
.o-contact .contact-form .wpcf7-spinner {
  position: absolute;
}

.o-contact__title {
  padding: 50px 30px;
  border-bottom: 1px solid #121213;
  background-color: #f5f5eb;
}
.o-contact__title h3 {
  font-family: GT America Black Italic;
  font-size: 65px !important;
  color: #121213;
  text-align: center;
  margin: 0;
}
@media (max-width: 991px) {
  .o-contact__title h3 {
    font-size: 2.5em !important;
  }
}

.page-template-tpl-agence .o-contact__adress.wysiwyg {
  padding-left: 0;
}
.page-template-tpl-agence .o-contact__adress.wysiwyg p {
  padding-left: 120px;
}
@media (max-width: 575px) {
  .page-template-tpl-agence .o-contact__adress.wysiwyg p {
    padding-left: 8vw;
  }
}
.page-template-tpl-agence .o-contact__adress.wysiwyg strong {
  font-family: "GT America Bold";
}
.page-template-tpl-agence .o-contact__adress.wysiwyg .a-btn-link {
  margin-top: 50px;
  margin-bottom: 50px;
  margin-left: -120px;
}
.page-template-tpl-agence .o-contact__adress.wysiwyg .a-btn-link:hover a {
  color: #121213;
}

.page-template-tpl-equipe .o-contact__adress-infos {
  flex-direction: column;
  border: none;
}
.page-template-tpl-equipe .o-contact__adress-infos .thumbnail_before picture {
  display: block;
  width: 100%;
  aspect-ratio: 16/6;
}
.page-template-tpl-equipe .o-contact__adress-infos .thumbnail_before picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-template-tpl-equipe .o-contact__adress-infos .o-contact__adress {
  width: 100%;
  padding: 100px 16vw;
  text-align: center;
}
@media (max-width: 575px) {
  .page-template-tpl-equipe .o-contact__adress-infos .o-contact__adress {
    padding: 10vw 8vw;
  }
}
.page-template-tpl-equipe .o-contact__adress-infos .o-contact__adress p {
  font-family: "GT America thin Italic";
}
.page-template-tpl-equipe .title-directors .r-arrow {
  width: 84%;
}
.page-template-tpl-equipe .title-directors .title {
  font-size: 3vw;
}
.page-template-tpl-equipe .equipes-container {
  display: flex;
  flex-direction: column;
  padding: 8.33vw;
  gap: 4vw;
}
.page-template-tpl-equipe .equipes-container .equipes-premiers {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}
.page-template-tpl-equipe .equipes-container .equipes-suivants {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.page-template-tpl-equipe .equipes-container .equipe-item {
  display: flex;
  flex-direction: column;
  width: 30%;
  gap: 20px;
}
.page-template-tpl-equipe .equipes-container .equipe-item picture {
  display: block;
  width: 100%;
}
.page-template-tpl-equipe .equipes-container .equipe-item picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  aspect-ratio: 1/1;
}
.page-template-tpl-equipe .equipes-container .equipe-item .team-member--data {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.page-template-tpl-equipe .equipes-container .equipe-item .team-member--data .team-member-name {
  font-family: "GT America Bold Italic";
  font-size: 1rem;
  color: #4f00ff;
  text-align: center;
}
@media (max-width: 575px) {
  .page-template-tpl-equipe .equipes-container .equipe-item .team-member--data .team-member-name {
    font-size: 3vw;
  }
}
.page-template-tpl-equipe .equipes-container .equipe-item .team-member--data .team-member-role {
  text-align: center;
  font-family: "GT America Medium Italic";
}
@media (max-width: 575px) {
  .page-template-tpl-equipe .equipes-container .equipe-item .team-member--data .team-member-role {
    font-size: 3vw;
  }
}

.o-realisations {
  padding: 60px 180px;
}
@media (max-width: 575px) {
  .o-realisations {
    padding: 60px 0px;
  }
}

.o-realisations__container {
  display: grid;
  grid-gap: 50px;
}

@media (max-width: 599px) {
  .o-realisations__container {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 600px) and (max-width: 1600px) {
  .o-realisations__container {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1601px) {
  .o-realisations__container {
    grid-template-columns: repeat(4, 1fr);
  }
}
.o-hero-post__visuel {
  min-height: 100vh;
}
@media (max-width: 575px) {
  .o-hero-post__visuel {
    min-height: 30vh;
  }
}
.o-hero-post__visuel img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.o-hero-post__contenu {
  padding-left: 0;
}
.o-hero-post__contenu .a-categorie {
  font-size: 16px;
  font-family: GT America Medium Italic;
  color: black;
  margin: 25px 0;
  padding-left: 0;
}
.o-hero-post__contenu .a-categorie[data-cat=consulting-activations] {
  color: white;
}
.o-hero-post__contenu h3 {
  font-size: 1.2rem;
  font-family: "GT America Bold Italic";
  color: black;
}
.o-hero-post__contenu .client {
  font-size: 1.2rem;
  font-family: "GT America Bold Italic";
  color: black;
}
.o-hero-post__contenu .client.color-in-house-events {
  color: #eba1f5;
}
.o-hero-post__contenu .client.color-consulting-activations {
  color: #4f00ff;
}
.o-hero-post__contenu .client.color-right-holder-management {
  color: #def240;
}
.o-hero-post__contenu .texte p {
  font-size: 16px;
  font-family: "GT America Thin Italic";
  margin-bottom: 25px;
}
.o-hero-post__contenu strong {
  font-family: "GT America Bold Italic";
}
.o-hero-post .filter-arrow {
  position: relative;
  left: -17px;
  height: 70px;
  width: 350px;
  display: flex;
  margin-top: 60px;
  margin-bottom: 30px;
  justify-content: center;
  align-items: center;
  background-color: #121213;
  z-index: 1;
  -webkit-clip-path: polygon(5% 0%, 13% 50%, 5% 100%, 90% 100%, 100% 50%, 90% 0%);
          clip-path: polygon(5% 0%, 13% 50%, 5% 100%, 90% 100%, 100% 50%, 90% 0%);
}
.o-hero-post .filter-arrow::after {
  content: "";
  position: absolute;
  right: 0;
  width: 100%;
  height: 100%;
  transition: right 0.3s ease;
  -webkit-clip-path: polygon(5.6% 1.4%, 13.5% 50%, 5.6% 98.2%, 89.9% 98.2%, 99.6% 50%, 90% 1.4%);
          clip-path: polygon(5.6% 1.4%, 13.5% 50%, 5.6% 98.2%, 89.9% 98.2%, 99.6% 50%, 90% 1.4%);
  z-index: -1;
}
.o-hero-post .filter-arrow[data-cat=consulting-activations]::after {
  background-color: #4f00ff;
}
.o-hero-post .filter-arrow[data-cat=in-house-events]::after {
  background-color: #eba1f5;
}
.o-hero-post .filter-arrow[data-cat=right-holder-management]::after {
  background-color: #def240;
}

.o-flexs .a-btn-link {
  left: -50px;
}
/*# sourceMappingURL=main.css.map */
