@charset "UTF-8";
/* ----------------------------- */
/* ==Reset (base)                */
/* ----------------------------- */
/*
 * 1. Switch to border-box model for all elements
 * 2. Avoid min-width: auto on flex and grid items
 */
@import url("https://fonts.googleapis.com/css2?family=Gabarito:wght@400,600,900&display=swap");
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* 1 */
  min-width: 0;
  /* 2 */
}

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

body {
  margin: 0;
  font-family: Montserrat, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.1;
  background-color: #F4F4F4;
  color: #4d4d4d;
}

/*
 * Headings
 */
h1,
.h1-like,
h2,
.h2-like,
h3,
.h3-like,
h4,
.h4-like,
h5,
.h5-like,
h6,
.h6-like {
  color: #034F8A;
}

/*
 * Links
 */
a {
  color: #034F8A;
  text-decoration: none;
}

a:focus,
a:hover,
a:active {
  color: #034F8A;
  text-decoration: none;
}

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

/*
 * Vertical rythm
 */
h1,
.h1-like,
h2,
.h2-like {
  margin-top: 0;
  margin-bottom: 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.5rem;
}

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

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

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

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

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

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

img {
  border-style: none;
}

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

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

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

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

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

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

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

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

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

/*
 * Change the 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] {
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}

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

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

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

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

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

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

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

form,
fieldset {
  border: none;
}

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

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

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

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

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

output {
  display: inline-block;
}

summary {
  display: list-item;
}

template {
  display: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.gap-5 {
  gap: 0.313rem;
}

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

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

.gap-10 {
  gap: 0.625rem;
}

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

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

.gap-16 {
  gap: 1rem;
}

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

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

.gap-20 {
  gap: 1.25rem;
}

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

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

.gap-30 {
  gap: 1.875rem;
}

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

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

.gap-36 {
  gap: 2.25rem;
}

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

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

.gap-40 {
  gap: 2.5rem;
}

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

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

.gap-50 {
  gap: 3.1255rem;
}

.gap-x-50 {
  -webkit-column-gap: 3.1255rem;
     -moz-column-gap: 3.1255rem;
          column-gap: 3.1255rem;
}

.gap-y-50 {
  row-gap: 3.1255rem;
}

.gap-70 {
  gap: 4.375rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* grid-items au sein des breakpoints */
@media (min-width: 576px) {
  .sm\:col-start-1 {
    -ms-grid-column: 1;
        grid-column-start: 1;
  }
  .sm\:col-end-1 {
    -ms-grid-column-span: 1;
    grid-column-end: 1;
  }
  .sm\:col-span-1 {
    -ms-grid-column-span: 1;
    grid-column: span 1/span 1;
  }
  .sm\:col-span-full {
    grid-column: 1/-1;
  }
  .sm\:row-start-1 {
    -ms-grid-row: 1;
        grid-row-start: 1;
  }
  .sm\:row-end-1 {
    -ms-grid-row-span: 1;
    grid-row-end: 1;
  }
  .sm\:row-span-1 {
    -ms-grid-row-span: 1;
    grid-row: span 1/span 1;
  }
  .sm\:col-start-2 {
    -ms-grid-column: 2;
        grid-column-start: 2;
  }
  .sm\:col-end-2 {
    -ms-grid-column-span: 2;
    grid-column-end: 2;
  }
  .sm\:col-span-2 {
    -ms-grid-column-span: 2;
    grid-column: span 2/span 2;
  }
  .sm\:col-span-full {
    grid-column: 1/-1;
  }
  .sm\:row-start-2 {
    -ms-grid-row: 2;
        grid-row-start: 2;
  }
  .sm\:row-end-2 {
    -ms-grid-row-span: 2;
    grid-row-end: 2;
  }
  .sm\:row-span-2 {
    -ms-grid-row-span: 2;
    grid-row: span 2/span 2;
  }
  .sm\:col-start-3 {
    -ms-grid-column: 3;
        grid-column-start: 3;
  }
  .sm\:col-end-3 {
    -ms-grid-column-span: 3;
    grid-column-end: 3;
  }
  .sm\:col-span-3 {
    -ms-grid-column-span: 3;
    grid-column: span 3/span 3;
  }
  .sm\:col-span-full {
    grid-column: 1/-1;
  }
  .sm\:row-start-3 {
    -ms-grid-row: 3;
        grid-row-start: 3;
  }
  .sm\:row-end-3 {
    -ms-grid-row-span: 3;
    grid-row-end: 3;
  }
  .sm\:row-span-3 {
    -ms-grid-row-span: 3;
    grid-row: span 3/span 3;
  }
  .sm\:col-start-4 {
    -ms-grid-column: 4;
        grid-column-start: 4;
  }
  .sm\:col-end-4 {
    -ms-grid-column-span: 4;
    grid-column-end: 4;
  }
  .sm\:col-span-4 {
    -ms-grid-column-span: 4;
    grid-column: span 4/span 4;
  }
  .sm\:col-span-full {
    grid-column: 1/-1;
  }
  .sm\:row-start-4 {
    -ms-grid-row: 4;
        grid-row-start: 4;
  }
  .sm\:row-end-4 {
    -ms-grid-row-span: 4;
    grid-row-end: 4;
  }
  .sm\:row-span-4 {
    -ms-grid-row-span: 4;
    grid-row: span 4/span 4;
  }
  .sm\:col-start-5 {
    -ms-grid-column: 5;
        grid-column-start: 5;
  }
  .sm\:col-end-5 {
    -ms-grid-column-span: 5;
    grid-column-end: 5;
  }
  .sm\:col-span-5 {
    -ms-grid-column-span: 5;
    grid-column: span 5/span 5;
  }
  .sm\:col-span-full {
    grid-column: 1/-1;
  }
  .sm\:row-start-5 {
    -ms-grid-row: 5;
        grid-row-start: 5;
  }
  .sm\:row-end-5 {
    -ms-grid-row-span: 5;
    grid-row-end: 5;
  }
  .sm\:row-span-5 {
    -ms-grid-row-span: 5;
    grid-row: span 5/span 5;
  }
  .sm\:col-start-6 {
    -ms-grid-column: 6;
        grid-column-start: 6;
  }
  .sm\:col-end-6 {
    -ms-grid-column-span: 6;
    grid-column-end: 6;
  }
  .sm\:col-span-6 {
    -ms-grid-column-span: 6;
    grid-column: span 6/span 6;
  }
  .sm\:col-span-full {
    grid-column: 1/-1;
  }
  .sm\:row-start-6 {
    -ms-grid-row: 6;
        grid-row-start: 6;
  }
  .sm\:row-end-6 {
    -ms-grid-row-span: 6;
    grid-row-end: 6;
  }
  .sm\:row-span-6 {
    -ms-grid-row-span: 6;
    grid-row: span 6/span 6;
  }
}
@media (min-width: 1215px) {
  .md\:col-start-1 {
    -ms-grid-column: 1;
        grid-column-start: 1;
  }
  .md\:col-end-1 {
    -ms-grid-column-span: 1;
    grid-column-end: 1;
  }
  .md\:col-span-1 {
    -ms-grid-column-span: 1;
    grid-column: span 1/span 1;
  }
  .md\:col-span-full {
    grid-column: 1/-1;
  }
  .md\:row-start-1 {
    -ms-grid-row: 1;
        grid-row-start: 1;
  }
  .md\:row-end-1 {
    -ms-grid-row-span: 1;
    grid-row-end: 1;
  }
  .md\:row-span-1 {
    -ms-grid-row-span: 1;
    grid-row: span 1/span 1;
  }
  .md\:col-start-2 {
    -ms-grid-column: 2;
        grid-column-start: 2;
  }
  .md\:col-end-2 {
    -ms-grid-column-span: 2;
    grid-column-end: 2;
  }
  .md\:col-span-2 {
    -ms-grid-column-span: 2;
    grid-column: span 2/span 2;
  }
  .md\:col-span-full {
    grid-column: 1/-1;
  }
  .md\:row-start-2 {
    -ms-grid-row: 2;
        grid-row-start: 2;
  }
  .md\:row-end-2 {
    -ms-grid-row-span: 2;
    grid-row-end: 2;
  }
  .md\:row-span-2 {
    -ms-grid-row-span: 2;
    grid-row: span 2/span 2;
  }
  .md\:col-start-3 {
    -ms-grid-column: 3;
        grid-column-start: 3;
  }
  .md\:col-end-3 {
    -ms-grid-column-span: 3;
    grid-column-end: 3;
  }
  .md\:col-span-3 {
    -ms-grid-column-span: 3;
    grid-column: span 3/span 3;
  }
  .md\:col-span-full {
    grid-column: 1/-1;
  }
  .md\:row-start-3 {
    -ms-grid-row: 3;
        grid-row-start: 3;
  }
  .md\:row-end-3 {
    -ms-grid-row-span: 3;
    grid-row-end: 3;
  }
  .md\:row-span-3 {
    -ms-grid-row-span: 3;
    grid-row: span 3/span 3;
  }
  .md\:col-start-4 {
    -ms-grid-column: 4;
        grid-column-start: 4;
  }
  .md\:col-end-4 {
    -ms-grid-column-span: 4;
    grid-column-end: 4;
  }
  .md\:col-span-4 {
    -ms-grid-column-span: 4;
    grid-column: span 4/span 4;
  }
  .md\:col-span-full {
    grid-column: 1/-1;
  }
  .md\:row-start-4 {
    -ms-grid-row: 4;
        grid-row-start: 4;
  }
  .md\:row-end-4 {
    -ms-grid-row-span: 4;
    grid-row-end: 4;
  }
  .md\:row-span-4 {
    -ms-grid-row-span: 4;
    grid-row: span 4/span 4;
  }
  .md\:col-start-5 {
    -ms-grid-column: 5;
        grid-column-start: 5;
  }
  .md\:col-end-5 {
    -ms-grid-column-span: 5;
    grid-column-end: 5;
  }
  .md\:col-span-5 {
    -ms-grid-column-span: 5;
    grid-column: span 5/span 5;
  }
  .md\:col-span-full {
    grid-column: 1/-1;
  }
  .md\:row-start-5 {
    -ms-grid-row: 5;
        grid-row-start: 5;
  }
  .md\:row-end-5 {
    -ms-grid-row-span: 5;
    grid-row-end: 5;
  }
  .md\:row-span-5 {
    -ms-grid-row-span: 5;
    grid-row: span 5/span 5;
  }
  .md\:col-start-6 {
    -ms-grid-column: 6;
        grid-column-start: 6;
  }
  .md\:col-end-6 {
    -ms-grid-column-span: 6;
    grid-column-end: 6;
  }
  .md\:col-span-6 {
    -ms-grid-column-span: 6;
    grid-column: span 6/span 6;
  }
  .md\:col-span-full {
    grid-column: 1/-1;
  }
  .md\:row-start-6 {
    -ms-grid-row: 6;
        grid-row-start: 6;
  }
  .md\:row-end-6 {
    -ms-grid-row-span: 6;
    grid-row-end: 6;
  }
  .md\:row-span-6 {
    -ms-grid-row-span: 6;
    grid-row: span 6/span 6;
  }
}
/* ----------------------------  */
/* ==Layout classes              */
/* ----------------------------- */
/* Global container */
.layout-maxed {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(30px, 1fr) minmax(auto, 576px) minmax(30px, 1fr);
  grid-template-columns: minmax(30px, 1fr) minmax(auto, 576px) minmax(30px, 1fr);
}
@media (min-width: 576px) {
  .layout-maxed {
    -ms-grid-columns: minmax(40px, 1fr) minmax(auto, 576px) minmax(40px, 1fr);
    grid-template-columns: minmax(40px, 1fr) minmax(auto, 576px) minmax(40px, 1fr);
  }
}
@media (min-width: 1215px) {
  .layout-maxed {
    -ms-grid-columns: minmax(40px, 1fr) minmax(auto, 1215px) minmax(40px, 1fr);
    grid-template-columns: minmax(40px, 1fr) minmax(auto, 1215px) minmax(40px, 1fr);
  }
}

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

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

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

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

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

.w-100 {
  width: 100%;
}

.h-100 {
  height: 100%;
}

.w-75 {
  width: 75%;
}

.h-75 {
  height: 75%;
}

.w-50 {
  width: 50%;
}

.h-50 {
  height: 50%;
}

.w-25 {
  width: 25%;
}

.h-25 {
  height: 25%;
}

.hidden {
  display: none;
}

.block {
  display: block;
}

.inline {
  display: inline;
}

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

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

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

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

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

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

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

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

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

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

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

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

.float-left {
  float: left;
}

.float-right {
  float: right;
}

.float-none {
  float: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.is-disabled,
[disabled] {
  opacity: 0.6;
  cursor: not-allowed !important;
  -webkit-filter: grayscale(1);
          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;
    -webkit-filter: grayscale(1);
            filter: grayscale(1);
  }
  .sm\:text-normal {
    font-weight: normal;
    font-style: normal;
    text-transform: none;
  }
}
@media (min-width: 1215px) {
  .md\:visually-hidden {
    position: absolute !important;
    border: 0 !important;
    height: 1px !important;
    width: 1px !important;
    padding: 0 !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
  }
  .md\:is-unstyled {
    list-style: none;
    padding-left: 0;
  }
  .md\:is-disabled {
    opacity: 0.6;
    cursor: not-allowed !important;
    -webkit-filter: grayscale(1);
            filter: grayscale(1);
  }
  .md\:text-normal {
    font-weight: normal;
    font-style: normal;
    text-transform: none;
  }
}
/* Font sizes utility classes */
.text-10 {
  font-size: 0.625rem;
}

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 576px) {
  .sm\:text-10 {
    font-size: 0.625rem;
  }
}
@media (min-width: 1215px) {
  .md\:text-10 {
    font-size: 0.625rem;
  }
}
@media (min-width: 576px) {
  .sm\:text-11 {
    font-size: 0.6875rem;
  }
}
@media (min-width: 1215px) {
  .md\:text-11 {
    font-size: 0.6875rem;
  }
}
@media (min-width: 576px) {
  .sm\:text-12 {
    font-size: 0.75rem;
  }
}
@media (min-width: 1215px) {
  .md\:text-12 {
    font-size: 0.75rem;
  }
}
@media (min-width: 576px) {
  .sm\:text-14 {
    font-size: 0.875rem;
  }
}
@media (min-width: 1215px) {
  .md\:text-14 {
    font-size: 0.875rem;
  }
}
@media (min-width: 576px) {
  .sm\:text-16 {
    font-size: 1rem;
  }
}
@media (min-width: 1215px) {
  .md\:text-16 {
    font-size: 1rem;
  }
}
@media (min-width: 576px) {
  .sm\:text-18 {
    font-size: 1.125rem;
  }
}
@media (min-width: 1215px) {
  .md\:text-18 {
    font-size: 1.125rem;
  }
}
@media (min-width: 576px) {
  .sm\:text-20 {
    font-size: 1.25rem;
  }
}
@media (min-width: 1215px) {
  .md\:text-20 {
    font-size: 1.25rem;
  }
}
@media (min-width: 576px) {
  .sm\:text-24 {
    font-size: 1.5rem;
  }
}
@media (min-width: 1215px) {
  .md\:text-24 {
    font-size: 1.5rem;
  }
}
@media (min-width: 576px) {
  .sm\:text-30 {
    font-size: 1.875rem;
  }
}
@media (min-width: 1215px) {
  .md\:text-30 {
    font-size: 1.875rem;
  }
}
@media (min-width: 576px) {
  .sm\:text-36 {
    font-size: 2.25rem;
  }
}
@media (min-width: 1215px) {
  .md\:text-36 {
    font-size: 2.25rem;
  }
}
@media (min-width: 576px) {
  .sm\:text-base {
    font-size: 1rem;
  }
}
@media (min-width: 1215px) {
  .md\:text-base {
    font-size: 1rem;
  }
}
@media (min-width: 576px) {
  .sm\:text-inherit {
    font-size: inherit;
  }
}
@media (min-width: 1215px) {
  .md\: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: 1215px) {
  .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;
  }
}
.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: 1215px) {
  .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;
  }
}
.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: 1215px) {
  .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;
  }
}
.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: 1215px) {
  .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;
  }
}
.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: 1215px) {
  .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;
  }
}
.p-10 {
  padding: 0.625rem;
}

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

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

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

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

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

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

.m-10 {
  margin: 0.625rem;
}

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

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

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

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

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

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

@media (min-width: 576px) {
  .sm\:p-10 {
    padding: 0.625rem;
  }
  .sm\:pt-10 {
    padding-top: 0.625rem;
  }
  .sm\:pr-10 {
    padding-right: 0.625rem;
  }
  .sm\:pb-10 {
    padding-bottom: 0.625rem;
  }
  .sm\:pl-10 {
    padding-left: 0.625rem;
  }
  .sm\:px-10 {
    padding-left: 0.625rem;
    padding-right: 0.625rem;
  }
  .sm\:py-10 {
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
  }
  .sm\:m-10 {
    margin: 0.625rem;
  }
  .sm\:mt-10 {
    margin-top: 0.625rem;
  }
  .sm\:mr-10 {
    margin-right: 0.625rem;
  }
  .sm\:mb-10 {
    margin-bottom: 0.625rem;
  }
  .sm\:ml-10 {
    margin-left: 0.625rem;
  }
  .sm\:mx-10 {
    margin-left: 0.625rem;
    margin-right: 0.625rem;
  }
  .sm\:my-10 {
    margin-top: 0.625rem;
    margin-bottom: 0.625rem;
  }
}
@media (min-width: 1215px) {
  .md\:p-10 {
    padding: 0.625rem;
  }
  .md\:pt-10 {
    padding-top: 0.625rem;
  }
  .md\:pr-10 {
    padding-right: 0.625rem;
  }
  .md\:pb-10 {
    padding-bottom: 0.625rem;
  }
  .md\:pl-10 {
    padding-left: 0.625rem;
  }
  .md\:px-10 {
    padding-left: 0.625rem;
    padding-right: 0.625rem;
  }
  .md\:py-10 {
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
  }
  .md\:m-10 {
    margin: 0.625rem;
  }
  .md\:mt-10 {
    margin-top: 0.625rem;
  }
  .md\:mr-10 {
    margin-right: 0.625rem;
  }
  .md\:mb-10 {
    margin-bottom: 0.625rem;
  }
  .md\:ml-10 {
    margin-left: 0.625rem;
  }
  .md\:mx-10 {
    margin-left: 0.625rem;
    margin-right: 0.625rem;
  }
  .md\:my-10 {
    margin-top: 0.625rem;
    margin-bottom: 0.625rem;
  }
}
.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: 1215px) {
  .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;
  }
}
.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: 1215px) {
  .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;
  }
}
.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: 1215px) {
  .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;
  }
}
.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: 1215px) {
  .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;
  }
}
.p-30 {
  padding: 1.875rem;
}

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

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

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

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

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

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

.m-30 {
  margin: 1.875rem;
}

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

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

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

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

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

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

@media (min-width: 576px) {
  .sm\:p-30 {
    padding: 1.875rem;
  }
  .sm\:pt-30 {
    padding-top: 1.875rem;
  }
  .sm\:pr-30 {
    padding-right: 1.875rem;
  }
  .sm\:pb-30 {
    padding-bottom: 1.875rem;
  }
  .sm\:pl-30 {
    padding-left: 1.875rem;
  }
  .sm\:px-30 {
    padding-left: 1.875rem;
    padding-right: 1.875rem;
  }
  .sm\:py-30 {
    padding-top: 1.875rem;
    padding-bottom: 1.875rem;
  }
  .sm\:m-30 {
    margin: 1.875rem;
  }
  .sm\:mt-30 {
    margin-top: 1.875rem;
  }
  .sm\:mr-30 {
    margin-right: 1.875rem;
  }
  .sm\:mb-30 {
    margin-bottom: 1.875rem;
  }
  .sm\:ml-30 {
    margin-left: 1.875rem;
  }
  .sm\:mx-30 {
    margin-left: 1.875rem;
    margin-right: 1.875rem;
  }
  .sm\:my-30 {
    margin-top: 1.875rem;
    margin-bottom: 1.875rem;
  }
}
@media (min-width: 1215px) {
  .md\:p-30 {
    padding: 1.875rem;
  }
  .md\:pt-30 {
    padding-top: 1.875rem;
  }
  .md\:pr-30 {
    padding-right: 1.875rem;
  }
  .md\:pb-30 {
    padding-bottom: 1.875rem;
  }
  .md\:pl-30 {
    padding-left: 1.875rem;
  }
  .md\:px-30 {
    padding-left: 1.875rem;
    padding-right: 1.875rem;
  }
  .md\:py-30 {
    padding-top: 1.875rem;
    padding-bottom: 1.875rem;
  }
  .md\:m-30 {
    margin: 1.875rem;
  }
  .md\:mt-30 {
    margin-top: 1.875rem;
  }
  .md\:mr-30 {
    margin-right: 1.875rem;
  }
  .md\:mb-30 {
    margin-bottom: 1.875rem;
  }
  .md\:ml-30 {
    margin-left: 1.875rem;
  }
  .md\:mx-30 {
    margin-left: 1.875rem;
    margin-right: 1.875rem;
  }
  .md\:my-30 {
    margin-top: 1.875rem;
    margin-bottom: 1.875rem;
  }
}
.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: 1215px) {
  .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;
  }
}
.p-40 {
  padding: 2.5rem;
}

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

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

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

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

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

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

.m-40 {
  margin: 2.5rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.m-50 {
  margin: 3.125rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.m-70 {
  margin: 4.375rem;
}

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

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

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

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

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

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

@media (min-width: 576px) {
  .sm\:p-70 {
    padding: 4.375rem;
  }
  .sm\:pt-70 {
    padding-top: 4.375rem;
  }
  .sm\:pr-70 {
    padding-right: 4.375rem;
  }
  .sm\:pb-70 {
    padding-bottom: 4.375rem;
  }
  .sm\:pl-70 {
    padding-left: 4.375rem;
  }
  .sm\:px-70 {
    padding-left: 4.375rem;
    padding-right: 4.375rem;
  }
  .sm\:py-70 {
    padding-top: 4.375rem;
    padding-bottom: 4.375rem;
  }
  .sm\:m-70 {
    margin: 4.375rem;
  }
  .sm\:mt-70 {
    margin-top: 4.375rem;
  }
  .sm\:mr-70 {
    margin-right: 4.375rem;
  }
  .sm\:mb-70 {
    margin-bottom: 4.375rem;
  }
  .sm\:ml-70 {
    margin-left: 4.375rem;
  }
  .sm\:mx-70 {
    margin-left: 4.375rem;
    margin-right: 4.375rem;
  }
  .sm\:my-70 {
    margin-top: 4.375rem;
    margin-bottom: 4.375rem;
  }
}
@media (min-width: 1215px) {
  .md\:p-70 {
    padding: 4.375rem;
  }
  .md\:pt-70 {
    padding-top: 4.375rem;
  }
  .md\:pr-70 {
    padding-right: 4.375rem;
  }
  .md\:pb-70 {
    padding-bottom: 4.375rem;
  }
  .md\:pl-70 {
    padding-left: 4.375rem;
  }
  .md\:px-70 {
    padding-left: 4.375rem;
    padding-right: 4.375rem;
  }
  .md\:py-70 {
    padding-top: 4.375rem;
    padding-bottom: 4.375rem;
  }
  .md\:m-70 {
    margin: 4.375rem;
  }
  .md\:mt-70 {
    margin-top: 4.375rem;
  }
  .md\:mr-70 {
    margin-right: 4.375rem;
  }
  .md\:mb-70 {
    margin-bottom: 4.375rem;
  }
  .md\:ml-70 {
    margin-left: 4.375rem;
  }
  .md\:mx-70 {
    margin-left: 4.375rem;
    margin-right: 4.375rem;
  }
  .md\:my-70 {
    margin-top: 4.375rem;
    margin-bottom: 4.375rem;
  }
}
.p-80 {
  padding: 5rem;
}

.pt-80 {
  padding-top: 5rem;
}

.pr-80 {
  padding-right: 5rem;
}

.pb-80 {
  padding-bottom: 5rem;
}

.pl-80 {
  padding-left: 5rem;
}

.px-80 {
  padding-left: 5rem;
  padding-right: 5rem;
}

.py-80 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.m-80 {
  margin: 5rem;
}

.mt-80 {
  margin-top: 5rem;
}

.mr-80 {
  margin-right: 5rem;
}

.mb-80 {
  margin-bottom: 5rem;
}

.ml-80 {
  margin-left: 5rem;
}

.mx-80 {
  margin-left: 5rem;
  margin-right: 5rem;
}

.my-80 {
  margin-top: 5rem;
  margin-bottom: 5rem;
}

@media (min-width: 576px) {
  .sm\:p-80 {
    padding: 5rem;
  }
  .sm\:pt-80 {
    padding-top: 5rem;
  }
  .sm\:pr-80 {
    padding-right: 5rem;
  }
  .sm\:pb-80 {
    padding-bottom: 5rem;
  }
  .sm\:pl-80 {
    padding-left: 5rem;
  }
  .sm\:px-80 {
    padding-left: 5rem;
    padding-right: 5rem;
  }
  .sm\:py-80 {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
  .sm\:m-80 {
    margin: 5rem;
  }
  .sm\:mt-80 {
    margin-top: 5rem;
  }
  .sm\:mr-80 {
    margin-right: 5rem;
  }
  .sm\:mb-80 {
    margin-bottom: 5rem;
  }
  .sm\:ml-80 {
    margin-left: 5rem;
  }
  .sm\:mx-80 {
    margin-left: 5rem;
    margin-right: 5rem;
  }
  .sm\:my-80 {
    margin-top: 5rem;
    margin-bottom: 5rem;
  }
}
@media (min-width: 1215px) {
  .md\:p-80 {
    padding: 5rem;
  }
  .md\:pt-80 {
    padding-top: 5rem;
  }
  .md\:pr-80 {
    padding-right: 5rem;
  }
  .md\:pb-80 {
    padding-bottom: 5rem;
  }
  .md\:pl-80 {
    padding-left: 5rem;
  }
  .md\:px-80 {
    padding-left: 5rem;
    padding-right: 5rem;
  }
  .md\:py-80 {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
  .md\:m-80 {
    margin: 5rem;
  }
  .md\:mt-80 {
    margin-top: 5rem;
  }
  .md\:mr-80 {
    margin-right: 5rem;
  }
  .md\:mb-80 {
    margin-bottom: 5rem;
  }
  .md\:ml-80 {
    margin-left: 5rem;
  }
  .md\:mx-80 {
    margin-left: 5rem;
    margin-right: 5rem;
  }
  .md\:my-80 {
    margin-top: 5rem;
    margin-bottom: 5rem;
  }
}
.p-100 {
  padding: 6.25rem;
}

.pt-100 {
  padding-top: 6.25rem;
}

.pr-100 {
  padding-right: 6.25rem;
}

.pb-100 {
  padding-bottom: 6.25rem;
}

.pl-100 {
  padding-left: 6.25rem;
}

.px-100 {
  padding-left: 6.25rem;
  padding-right: 6.25rem;
}

.py-100 {
  padding-top: 6.25rem;
  padding-bottom: 6.25rem;
}

.m-100 {
  margin: 6.25rem;
}

.mt-100 {
  margin-top: 6.25rem;
}

.mr-100 {
  margin-right: 6.25rem;
}

.mb-100 {
  margin-bottom: 6.25rem;
}

.ml-100 {
  margin-left: 6.25rem;
}

.mx-100 {
  margin-left: 6.25rem;
  margin-right: 6.25rem;
}

.my-100 {
  margin-top: 6.25rem;
  margin-bottom: 6.25rem;
}

@media (min-width: 576px) {
  .sm\:p-100 {
    padding: 6.25rem;
  }
  .sm\:pt-100 {
    padding-top: 6.25rem;
  }
  .sm\:pr-100 {
    padding-right: 6.25rem;
  }
  .sm\:pb-100 {
    padding-bottom: 6.25rem;
  }
  .sm\:pl-100 {
    padding-left: 6.25rem;
  }
  .sm\:px-100 {
    padding-left: 6.25rem;
    padding-right: 6.25rem;
  }
  .sm\:py-100 {
    padding-top: 6.25rem;
    padding-bottom: 6.25rem;
  }
  .sm\:m-100 {
    margin: 6.25rem;
  }
  .sm\:mt-100 {
    margin-top: 6.25rem;
  }
  .sm\:mr-100 {
    margin-right: 6.25rem;
  }
  .sm\:mb-100 {
    margin-bottom: 6.25rem;
  }
  .sm\:ml-100 {
    margin-left: 6.25rem;
  }
  .sm\:mx-100 {
    margin-left: 6.25rem;
    margin-right: 6.25rem;
  }
  .sm\:my-100 {
    margin-top: 6.25rem;
    margin-bottom: 6.25rem;
  }
}
@media (min-width: 1215px) {
  .md\:p-100 {
    padding: 6.25rem;
  }
  .md\:pt-100 {
    padding-top: 6.25rem;
  }
  .md\:pr-100 {
    padding-right: 6.25rem;
  }
  .md\:pb-100 {
    padding-bottom: 6.25rem;
  }
  .md\:pl-100 {
    padding-left: 6.25rem;
  }
  .md\:px-100 {
    padding-left: 6.25rem;
    padding-right: 6.25rem;
  }
  .md\:py-100 {
    padding-top: 6.25rem;
    padding-bottom: 6.25rem;
  }
  .md\:m-100 {
    margin: 6.25rem;
  }
  .md\:mt-100 {
    margin-top: 6.25rem;
  }
  .md\:mr-100 {
    margin-right: 6.25rem;
  }
  .md\:mb-100 {
    margin-bottom: 6.25rem;
  }
  .md\:ml-100 {
    margin-left: 6.25rem;
  }
  .md\:mx-100 {
    margin-left: 6.25rem;
    margin-right: 6.25rem;
  }
  .md\:my-100 {
    margin-top: 6.25rem;
    margin-bottom: 6.25rem;
  }
}
.p-130 {
  padding: 8.125rem;
}

.pt-130 {
  padding-top: 8.125rem;
}

.pr-130 {
  padding-right: 8.125rem;
}

.pb-130 {
  padding-bottom: 8.125rem;
}

.pl-130 {
  padding-left: 8.125rem;
}

.px-130 {
  padding-left: 8.125rem;
  padding-right: 8.125rem;
}

.py-130 {
  padding-top: 8.125rem;
  padding-bottom: 8.125rem;
}

.m-130 {
  margin: 8.125rem;
}

.mt-130 {
  margin-top: 8.125rem;
}

.mr-130 {
  margin-right: 8.125rem;
}

.mb-130 {
  margin-bottom: 8.125rem;
}

.ml-130 {
  margin-left: 8.125rem;
}

.mx-130 {
  margin-left: 8.125rem;
  margin-right: 8.125rem;
}

.my-130 {
  margin-top: 8.125rem;
  margin-bottom: 8.125rem;
}

@media (min-width: 576px) {
  .sm\:p-130 {
    padding: 8.125rem;
  }
  .sm\:pt-130 {
    padding-top: 8.125rem;
  }
  .sm\:pr-130 {
    padding-right: 8.125rem;
  }
  .sm\:pb-130 {
    padding-bottom: 8.125rem;
  }
  .sm\:pl-130 {
    padding-left: 8.125rem;
  }
  .sm\:px-130 {
    padding-left: 8.125rem;
    padding-right: 8.125rem;
  }
  .sm\:py-130 {
    padding-top: 8.125rem;
    padding-bottom: 8.125rem;
  }
  .sm\:m-130 {
    margin: 8.125rem;
  }
  .sm\:mt-130 {
    margin-top: 8.125rem;
  }
  .sm\:mr-130 {
    margin-right: 8.125rem;
  }
  .sm\:mb-130 {
    margin-bottom: 8.125rem;
  }
  .sm\:ml-130 {
    margin-left: 8.125rem;
  }
  .sm\:mx-130 {
    margin-left: 8.125rem;
    margin-right: 8.125rem;
  }
  .sm\:my-130 {
    margin-top: 8.125rem;
    margin-bottom: 8.125rem;
  }
}
@media (min-width: 1215px) {
  .md\:p-130 {
    padding: 8.125rem;
  }
  .md\:pt-130 {
    padding-top: 8.125rem;
  }
  .md\:pr-130 {
    padding-right: 8.125rem;
  }
  .md\:pb-130 {
    padding-bottom: 8.125rem;
  }
  .md\:pl-130 {
    padding-left: 8.125rem;
  }
  .md\:px-130 {
    padding-left: 8.125rem;
    padding-right: 8.125rem;
  }
  .md\:py-130 {
    padding-top: 8.125rem;
    padding-bottom: 8.125rem;
  }
  .md\:m-130 {
    margin: 8.125rem;
  }
  .md\:mt-130 {
    margin-top: 8.125rem;
  }
  .md\:mr-130 {
    margin-right: 8.125rem;
  }
  .md\:mb-130 {
    margin-bottom: 8.125rem;
  }
  .md\:ml-130 {
    margin-left: 8.125rem;
  }
  .md\:mx-130 {
    margin-left: 8.125rem;
    margin-right: 8.125rem;
  }
  .md\:my-130 {
    margin-top: 8.125rem;
    margin-bottom: 8.125rem;
  }
}
.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: 1215px) {
  .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;
  }
}
.order-1 {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

@media (min-width: 576px) {
  .sm\:order-1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
@media (min-width: 1215px) {
  .md\:order-1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.order-2 {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

@media (min-width: 576px) {
  .sm\:order-2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
@media (min-width: 1215px) {
  .md\:order-2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.order-3 {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}

@media (min-width: 576px) {
  .sm\:order-3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}
@media (min-width: 1215px) {
  .md\:order-3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}
.order-4 {
  -webkit-box-ordinal-group: 5;
      -ms-flex-order: 4;
          order: 4;
}

@media (min-width: 576px) {
  .sm\:order-4 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
}
@media (min-width: 1215px) {
  .md\:order-4 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
}
.order-5 {
  -webkit-box-ordinal-group: 6;
      -ms-flex-order: 5;
          order: 5;
}

@media (min-width: 576px) {
  .sm\:order-5 {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
}
@media (min-width: 1215px) {
  .md\:order-5 {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
}
.order-6 {
  -webkit-box-ordinal-group: 7;
      -ms-flex-order: 6;
          order: 6;
}

@media (min-width: 576px) {
  .sm\:order-6 {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }
}
@media (min-width: 1215px) {
  .md\:order-6 {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }
}
.order-7 {
  -webkit-box-ordinal-group: 8;
      -ms-flex-order: 7;
          order: 7;
}

@media (min-width: 576px) {
  .sm\:order-7 {
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }
}
@media (min-width: 1215px) {
  .md\:order-7 {
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }
}
.order-8 {
  -webkit-box-ordinal-group: 9;
      -ms-flex-order: 8;
          order: 8;
}

@media (min-width: 576px) {
  .sm\:order-8 {
    -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
            order: 8;
  }
}
@media (min-width: 1215px) {
  .md\:order-8 {
    -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
            order: 8;
  }
}
.order-9 {
  -webkit-box-ordinal-group: 10;
      -ms-flex-order: 9;
          order: 9;
}

@media (min-width: 576px) {
  .sm\:order-9 {
    -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
            order: 9;
  }
}
@media (min-width: 1215px) {
  .md\:order-9 {
    -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
            order: 9;
  }
}
.order-10 {
  -webkit-box-ordinal-group: 11;
      -ms-flex-order: 10;
          order: 10;
}

@media (min-width: 576px) {
  .sm\:order-10 {
    -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
  }
}
@media (min-width: 1215px) {
  .md\:order-10 {
    -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
  }
}
.order-11 {
  -webkit-box-ordinal-group: 12;
      -ms-flex-order: 11;
          order: 11;
}

@media (min-width: 576px) {
  .sm\:order-11 {
    -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
            order: 11;
  }
}
@media (min-width: 1215px) {
  .md\:order-11 {
    -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
            order: 11;
  }
}
.order-12 {
  -webkit-box-ordinal-group: 13;
      -ms-flex-order: 12;
          order: 12;
}

@media (min-width: 576px) {
  .sm\:order-12 {
    -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
            order: 12;
  }
}
@media (min-width: 1215px) {
  .md\:order-12 {
    -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
            order: 12;
  }
}
html, body {
  font-family: Montserrat, Arial, sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

/* mobile viewport bug fix */
body {
  min-height: 100vh;
  min-height: -webkit-fill-available;
}

html {
  height: -webkit-fill-available;
}

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

html:has(#wpadminbar.mobile) {
  margin-top: 0 !important;
}

#wpadminbar.mobile {
  display: none;
}

p {
  line-height: 24px;
}

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

.swiper-prev,
.swiper-next {
  border: #009698 solid 1px;
  color: #009698;
  height: 43px;
  width: 45px;
  line-height: 40px;
}
.swiper-prev.swiper-button-disabled,
.swiper-next.swiper-button-disabled {
  color: rgba(0, 150, 152, 0.3);
}

.swiper-prev {
  border-radius: 5px 0 0 5px;
  border-right-width: 0;
  text-align: right;
  padding: 0 6px 0 0;
}

.swiper-next {
  border-radius: 0 5px 5px 0;
  border-left-width: 0;
  text-align: left;
  padding: 0 0 0 6px;
}

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

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

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

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

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

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

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

.va-c {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
}

.p {
  line-height: 24px;
}

.hr-light {
  margin: 0;
  color: rgba(3, 79, 138, 0.15);
}

.wp-block-list,
.list {
  padding: 0;
}
.wp-block-list li,
.list li {
  list-style: none;
  line-height: 24px;
  font-size: 14px;
  font-weight: 600;
  padding-left: 25px;
  padding-bottom: 12px;
  color: #034F8A;
  background: transparent url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABcAAAAXCAYAAADgKtSgAAAABHNCSVQICAgIfAhkiAAAAWtJREFUSEutlbFOwzAQhv+LoqJKbBQqBlhgYOQReAuKBBWIKa1Y+gR5gg4VETNCQoINpg4dOnToxkOwgMoOBSnGbpSEpE7uROopkc/fdzmfY4J0BMEOlHOEj/cH+P63ZBlJgrAA0xmIakD4itnsTiLg4RlwnIpMUA63guWCYngpWCawwweDPTjucVRjbugSzef36PU+85HL8Ah8osEuh03mQ/WGn6/bvCAL/w84qdCyIIVXARcIIvgqwBYBrRScExCub1ogHIg3Txao9El+JH2MXWxsteDQvmwdG6Xg4Bme9xLV3Agazbb+gl12KRfg4MmATVjaLb5f04LTSgJSQ3Q609if7fMqghw4m3msM4LN5oV+3eYqkM6HI3S7E/74m4h+v461elskCDHGlTe2JVL8V5QISsD2svxNoUzAgHl4WqJL/dhIvKQmuitG3J7w15whBME64JxHgnCqN2/IgWWZx5SFAIe2rigS/QIiAZaQz2MV+AAAAABJRU5ErkJggg==") no-repeat left 6px;
  background-size: 11px 11px;
}

.page-container {
  max-width: 1000px;
  margin: 95px auto;
}

.underligne {
  text-decoration: underline;
}

@media screen and (max-width: 576px) {
  .fabrications .btn {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
  }
}
.last-posts .swiper-navigation {
  display: none;
}
@media screen and (max-width: 576px) {
  .last-posts .swiper-navigation {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.sticky {
  position: sticky !important;
  top: 110px;
}

.border-radius {
  border-radius: 20px;
  width: 100%;
}
@media screen and (max-width: 1215px) {
  .border-radius {
    border-radius: 10px;
  }
}

.header-site {
  position: sticky;
  z-index: 9999;
  top: -1px;
  height: 80px;
  padding: 15px 0;
  color: white;
  background-color: #034F8A;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.header-site .link {
  color: white;
}
.header-site .brand .logo {
  height: 48px;
  width: auto;
  margin-right: 14px;
  margin-top: -12px;
}
.header-site .logo-color {
  display: none;
}
.header-site:hover, .header-site.is-pinned {
  background-color: white;
  color: #034F8A;
}
.header-site:hover .nav-link,
.header-site:hover .link, .header-site.is-pinned .nav-link,
.header-site.is-pinned .link {
  color: #034F8A;
}
.header-site:hover .logo-color, .header-site.is-pinned .logo-color {
  display: inline;
}
.header-site:hover .logo-blanc, .header-site.is-pinned .logo-blanc {
  display: none;
}
.header-site.header-mobile {
  padding: 0;
}
.header-site.header-mobile .btn-burger {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 40px;
  height: 40px;
  border-radius: 5px;
  background-color: #818f92;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.header-site.header-mobile .btn-burger .icon-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header-site.header-mobile .btn-burger .icon-close {
  display: none;
}
.header-site.header-mobile .top-bar {
  height: 80px;
  padding: 20px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.header-site.header-mobile .wrap-menu {
  display: none;
}
.header-site.header-mobile .nav-link {
  margin: 0;
}
.header-site.header-mobile.is-pinned .btn-burger {
  background-color: #f1f5f9;
}
.header-site.header-mobile.open .top-bar {
  background-color: #fff;
}
.header-site.header-mobile.open .btn-burger {
  background-color: #f1f5f9;
}
.header-site.header-mobile.open .btn-burger .icon-close {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header-site.header-mobile.open .btn-burger .icon-menu {
  display: none;
}
.header-site.header-mobile.open .wrap-menu {
  overflow-y: scroll;
  height: calc(100dvh - 78px);
  padding: 40px 30px 0 30px;
  background-color: #034F8A;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.header-site.header-mobile.open .wrap-menu .mega-menu {
  margin: 40px 0;
}
.header-site.header-mobile.open .wrap-menu .mega-menu .nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.header-site.header-mobile.open .wrap-menu .mega-menu .nav-link {
  padding: 22px 0;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border-top: 1px solid #3471a1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.header-site.header-mobile.open .wrap-menu .mega-menu .nav-item.open .sub-nav {
  display: block;
  opacity: 1;
}
.header-site.header-mobile.open .wrap-menu .mega-menu .sub-nav {
  position: relative;
  top: auto;
  width: 100%;
}
.header-site.header-mobile.open .wrap-menu .mega-menu .sub-nav .wrap {
  background-color: transparent;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 0;
}
.header-site.header-mobile.open .wrap-menu .mega-menu .sub-nav .wrap .menu-dropdown svg {
  display: none;
}
.header-site.header-mobile.open .wrap-menu .bottom-header {
  background-color: #0098C3;
  margin: 0 -30px;
  height: 46px;
  text-align: center;
}
.header-site.header-mobile.open .wrap-menu .bottom-header .nav-link {
  color: #fff;
  font-size: 12px;
  line-height: 46px;
}
.header-site.header-mobile.open .wrap-menu .bottom-header .separator {
  color: #fff;
  padding: 0 12px;
}
.header-site .burger-content-mobile {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  height: calc(100dvh - 78px);
}
.header-site .burger-content-mobile .full-height {
  height: 100%;
}
.header-site .burger-content-mobile .border-bottom {
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}
.header-site .burger-content-mobile .return {
  padding: 15px 0;
  color: #034F8A;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 15px;
}
.header-site .burger-content-mobile .return svg {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.header-site .burger-content-mobile .title {
  padding: 30px 0;
  font-weight: 600;
  font-size: 18px;
}
.header-site .burger-content-mobile .content {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.header-site .burger-content-mobile .content.open {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header-site .burger-content-mobile .content .menu-dropdown .dropdown-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.header-site .burger-content-mobile .content .menu-dropdown .dropdown-nav .dropdown-link {
  padding: 20px 0;
  color: black;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 15px;
}
.header-site .burger-content-mobile .content .menu-dropdown .dropdown-nav .dropdown-link .text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 500;
  font-size: 14px;
}
.header-site .burger-content-mobile .content .menu-dropdown .dropdown-nav .dropdown-link svg {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.home .header-site {
  background-color: transparent;
}
.home .header-site:hover, .home .header-site.is-pinned {
  background-color: white;
}

.header-mobile.open.active-subnav .wrap-menu {
  display: none !important;
}
.header-mobile.open.active-subnav .burger-content-mobile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
}

.mega-menu .nav-item {
  display: inline-block;
}
@media screen and (min-width: 1215px) {
  .mega-menu .nav-item:hover .sub-nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .mega-menu .nav-item:hover .sub-nav .wrap {
    background-color: #fff;
  }
  .mega-menu .nav-item:hover .nav-link {
    color: #009698;
    border-bottom: 3px solid #009698;
  }
  .mega-menu .nav-item:hover .icon-caret {
    -webkit-transition: linear 0.2s;
    transition: linear 0.2s;
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg);
  }
  .mega-menu .nav-item:hover .menu-dropdown {
    z-index: 1;
  }
  .mega-menu .nav-item:hover .menu-dropdown:hover .dropdown-nav {
    background-color: #fff;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}
.mega-menu .nav-item .menu-dropdown {
  z-index: 0;
}
.mega-menu .nav-link {
  padding: 30px 0;
  margin: 0 15px;
  color: #fff;
  font-weight: 600;
}
.mega-menu .nav-link .icon-caret {
  -webkit-transition: linear 0.2s;
  transition: linear 0.2s;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.mega-menu .sub-nav {
  position: absolute;
  top: 65px;
  z-index: 999999;
  left: 0;
  right: 0;
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
  will-change: opacity, transform;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
@media screen and (max-width: 1215px) {
  .mega-menu .sub-nav {
    max-height: 0;
    height: 100%;
  }
}
.mega-menu .sub-nav .wrap {
  margin-top: 15px;
  padding: 30px 50px;
  background-color: transparent;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
@media screen and (max-width: 1215px) {
  .mega-menu .sub-nav .wrap {
    margin-top: 0;
  }
}
.mega-menu .menu-opened .sub-nav {
  display: block;
}
.mega-menu .sub-nav-item {
  display: block;
  padding: 10px;
}
.mega-menu .menu-fabrications .wrap {
  padding-bottom: 80px;
}
.mega-menu .menu-fabrications .sub-nav-title {
  padding: 40px 20px;
  font-size: 16px;
  font-weight: bold;
}
.mega-menu .menu-fabrications .sub-nav-link {
  padding: 10px 20px;
  font-size: 14px;
  color: black;
}
.mega-menu .menu-fabrications .sub-nav-link:hover {
  color: #034F8A;
  background-color: rgba(3, 79, 138, 0.05);
}
@media screen and (max-width: 1215px) {
  .mega-menu .menu-fabrications .sub-nav-link {
    opacity: 0.5;
    color: #fff;
    padding: 0;
  }
  .mega-menu .menu-fabrications .sub-nav-link:hover {
    opacity: 1;
  }
}
@media screen and (max-width: 1215px) {
  .mega-menu .menu-fabrications.open .nav-link svg {
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
  }
  .mega-menu .menu-fabrications.open .sub-nav {
    max-height: 100%;
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }
}
.mega-menu .menu-solutions .sub-nav .wrap {
  height: 447px;
}
.mega-menu .menu-solutions .link-solution,
.mega-menu .menu-solutions .menu-dropdown {
  position: relative;
}
.mega-menu .menu-solutions .link-solution,
.mega-menu .menu-solutions .button-solution {
  width: 100%;
  cursor: pointer;
  font-size: 14px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 1215px) {
  .mega-menu .menu-solutions .link-solution,
  .mega-menu .menu-solutions .button-solution {
    background-color: #fff;
    -webkit-box-shadow: 0px 3px 6px rgba(54, 103, 158, 0.2431372549);
            box-shadow: 0px 3px 6px rgba(54, 103, 158, 0.2431372549);
    border-radius: 5px;
    padding: 15px;
    height: 64px;
    font-weight: 700;
  }
}
@media screen and (max-width: 1215px) {
  .mega-menu .menu-solutions .link-solution,
  .mega-menu .menu-solutions .button-solution {
    opacity: 0.5;
    color: #fff;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    padding: 0;
  }
  .mega-menu .menu-solutions .link-solution:hover,
  .mega-menu .menu-solutions .button-solution:hover {
    opacity: 1;
  }
}
.mega-menu .menu-solutions .link-solution .icon-caret,
.mega-menu .menu-solutions .button-solution .icon-caret {
  font-size: 22px;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
@media screen and (min-width: 1215px) {
  .mega-menu .menu-solutions:hover .sub-nav:not(:has(.menu-dropdown:hover)) .menu-dropdown:first-child .dropdown-nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    -webkit-transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
    transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
    transition: opacity 0.2s ease, transform 0.2s ease;
    transition: opacity 0.2s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
    background: #fff;
  }
  .mega-menu .menu-solutions .sub-nav:has(.menu-dropdown:hover:not(:first-child)) .menu-dropdown:first-child .dropdown-nav {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}
.mega-menu .menu-solutions .dropdown-nav {
  position: absolute;
  z-index: 2;
  top: 60px;
  left: 0;
  width: 100%;
  padding: 10px 5px;
  border-top: solid 1px rgba(2, 79, 138, 0.15);
  -webkit-box-shadow: 0px 3px 6px rgba(54, 103, 158, 0.2431372549);
          box-shadow: 0px 3px 6px rgba(54, 103, 158, 0.2431372549);
  border-radius: 0 0 5px 5px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  background-color: transparent;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.mega-menu .menu-solutions .dropdown-nav .dropdown-link {
  display: block;
  font-size: 14px;
  color: black;
  padding: 10px 20px;
}
.mega-menu .menu-solutions .dropdown-nav .dropdown-link:hover {
  color: #034F8A;
  background: rgba(3, 79, 138, 0.05) 0% 0% no-repeat padding-box;
}
@media screen and (max-width: 1215px) {
  .mega-menu .menu-solutions.open .nav-link svg {
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
  }
  .mega-menu .menu-solutions.open .sub-nav {
    max-height: 100%;
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }
}
.mega-menu .menu-langues {
  position: relative;
}
.mega-menu .menu-langues .nav-link {
  text-transform: uppercase;
}
.mega-menu .menu-langues .sub-nav {
  top: 25px;
}
.mega-menu .menu-langues .sub-nav .wrap {
  height: auto;
  width: 160px;
  padding: 15px 10px 5px 10px;
  border-radius: 0px 0px 10px 10px;
}
.mega-menu .menu-langues .sub-nav .lang-item {
  margin-bottom: 10px;
  font-size: 14px;
  background-color: #F4F4F4;
  border-radius: 5px;
  border: 1px solid #F4F4F4;
}
.mega-menu .menu-langues .sub-nav .lang-item a {
  display: block;
  padding: 12px 15px;
  opacity: 0.6;
}
.mega-menu .menu-langues .sub-nav .lang-item:hover {
  border-color: #009698;
}
.mega-menu .menu-langues .sub-nav .lang-item:hover a {
  opacity: 1;
}
.mega-menu .menu-langues .sub-nav .lang-item.current-lang {
  border: 1px solid #009698;
  background-size: contain;
}
.mega-menu .menu-langues .sub-nav .lang-item.current-lang a {
  opacity: 1;
  background: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="-20 -18 58 58"><path fill="%23009698" d="M0 11l2-2 5 5 11-11 2 2-13 13z"></path></svg>') no-repeat center right;
  background-size: contain;
}

.footer-site {
  color: white;
  padding: 60px 0 0 0;
}
.footer-site .col-logos {
  width: 210px;
}
.footer-site .logo {
  width: 190px;
  height: auto;
  margin-top: -20px;
  margin-bottom: 30px;
}
.footer-site .logo-cofinair {
  width: 150px;
  height: auto;
}
.footer-site .nav-group {
  width: 200px;
}
.footer-site .nav-group .title {
  font-size: 15px;
  color: white;
}
.footer-site .nav-group .title .icon-caret {
  display: none;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.footer-site .nav-group .nav-link {
  display: block;
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.5);
}
.footer-site .main-section {
  background-color: #034F8A;
  padding: 70px 0 50px 0;
}
.footer-site .adresse {
  opacity: 0.8;
  font-size: 14px;
  line-height: 24px;
  font-weight: 500;
}
@media screen and (min-width: 1215px) {
  .footer-site .adresse {
    margin-top: 20px;
  }
}
.footer-site .btn-blue {
  border-color: #0098C3;
  background-color: #034F8A;
}
.footer-site .btn-blue:hover {
  background-color: #0098C3;
}
.footer-site .bottom-section {
  background-color: #0098C3;
  line-height: 50px;
}
.footer-site .bottom-section .nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14px;
}
.footer-site .bottom-section .nav .nav-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer-site .bottom-section .nav .nav-item .nav-link {
  color: white;
}
.footer-site .bottom-section .nav .nav-item .nav-link .icon-linktree {
  width: 77px;
}
.footer-site .bottom-section .nav .nav-item .nav-link.instagram {
  margin-right: -6px;
}
.footer-site .bottom-section .nav .nav-item .nav-link.linkedin {
  margin-right: 20px;
}
.footer-site .bottom-section .nav .nav-item .nav-link.instagram, .footer-site .bottom-section .nav .nav-item .nav-link.linkedin {
  display: block;
  width: 34px;
  height: 34px;
  line-height: 30px;
  text-align: center;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
}
.footer-site .section-socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 576px) {
  .footer-site .nav-group {
    width: 100%;
  }
  .footer-site .nav-group .title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 25px 0 8px 0;
    margin: 0;
    border-top: 1px solid #3471a1;
  }
  .footer-site .nav-group .title .icon-caret {
    display: inline-block;
    margin-top: -5px;
    font-size: 22px;
  }
  .footer-site .nav-group.last .title {
    padding-bottom: 26px;
    border-bottom: 1px solid #3471a1;
  }
  .footer-site .nav-group .nav {
    display: none;
  }
  .footer-site .nav-group.open .nav {
    display: block;
  }
  .footer-site .nav-group.open .icon-caret {
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg);
  }
  .footer-site .section-socials {
    margin: -20px -60px 0 -60px;
    padding: 10px 0 36px 0;
    width: calc(100% + 90px);
    background-color: #034F8A;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .footer-site .section-socials .logo-cofinair {
    margin-top: 20px;
  }
  .footer-site .section-socials .nav .nav-item .nav-link.linkedin {
    margin: 0;
  }
  .footer-site .nav-mention {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .footer-site .nav-mention .nav-item .nav-link {
    font-size: 12px;
  }
}

.gform_required_legend,
.gform_heading {
  display: none;
}

body .gform-theme .gform_fields {
  row-gap: 20px;
}
body .gform-theme .gform-field-label {
  font-family: Montserrat, Arial, sans-serif;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
}
body .gform-theme .ginput_container_textarea textarea,
body .gform-theme .ginput_address_zip input,
body .gform-theme .ginput_container_email input,
body .gform-theme .ginput_container_phone input,
body .gform-theme .ginput_container_text input {
  width: 100%;
  inline-size: 100%;
  font-family: Montserrat, Arial, sans-serif;
  color: #fff;
  border: none;
  background-color: rgba(255, 255, 255, 0.1);
}
body .gform-theme .ginput_container_textarea textarea:focus,
body .gform-theme .ginput_address_zip input:focus,
body .gform-theme .ginput_container_email input:focus,
body .gform-theme .ginput_container_phone input:focus,
body .gform-theme .ginput_container_text input:focus {
  background-color: rgba(255, 255, 255, 0.18);
  outline: unset;
}
body .gform-theme .gfield_consent_label {
  font-size: 13px;
  font-weight: 400;
}
body .gform-theme input[type=checkbox] {
  background: transparent;
}
body .gform-theme input.gform_button.button,
body .gform-theme input.gform-button.button {
  font-size: 15px !important;
  font-weight: 600 !important;
  padding: 20px 30px;
  background-color: #0098C3 !important;
  border: 1px solid #0098C3 !important;
}
body .gform-theme input.gform_button.button:hover,
body .gform-theme input.gform-button.button:hover {
  background-color: #034F8A !important;
}

.gform_wrapper .ginput_address_zip {
  inline-size: 100% !important;
}

.breadcrumbs {
  padding: 25px 0;
}
.breadcrumbs span,
.breadcrumbs a {
  margin: 0 8px 0 0;
}
.breadcrumbs .breadcrumb_last {
  margin-left: 8px;
}
.breadcrumbs-white .breadcrumbs {
  padding: 50px 0;
}
.breadcrumbs-white .breadcrumbs span, .breadcrumbs-white .breadcrumbs a {
  color: white;
}
.breadcrumbs-white .breadcrumbs a {
  opacity: 0.5;
}

.breadcrumbs .last {
  font-weight: 600;
}

.btn,
.button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transition: 0.25s;
  transition: 0.25s;
  -webkit-transition-property: background-color, color, border, -webkit-box-shadow;
  transition-property: background-color, color, border, -webkit-box-shadow;
  transition-property: box-shadow, background-color, color, border;
  transition-property: box-shadow, background-color, color, border, -webkit-box-shadow;
  text-decoration: none;
  font-weight: 600;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  font-size: 15px;
  padding: 13px 26px;
  border-radius: 5px;
}

.btn:focus,
.button:focus {
  -webkit-tap-highlight-color: transparent;
}

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

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

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

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

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

.btn-warning {
  color: #034F8A;
  background-color: #F49A54;
  border: 1px solid #F49A54;
}
.btn-warning:hover {
  color: #034F8A;
}

.btn-info {
  color: #fff;
  background-color: #17a2b8;
  border: 1px solid #17a2b8;
}
.btn-info:hover {
  color: #fff;
}

.btn-gray {
  color: #fff;
  background-color: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(0, 0, 0, 0.2);
}
.btn-gray:hover {
  color: #fff;
}

.btn-white {
  color: #034F8A;
  background-color: #fff;
  border: 1px solid #fff;
}
.btn-white:hover {
  color: #034F8A;
}

.btn-dark {
  color: #fff;
  background-color: #4d4d4d;
  border: 1px solid #4d4d4d;
}
.btn-dark:hover {
  color: #fff;
}

.btn-light {
  color: #034F8A;
  background-color: #F4F4F4;
  border: 1px solid #F4F4F4;
}
.btn-light:hover {
  color: #034F8A;
}

.btn-text {
  color: #fff;
  background-color: #4d4d4d;
  border: 1px solid #4d4d4d;
}
.btn-text:hover {
  color: #fff;
}

.btn-blue {
  color: #fff;
  background-color: #0098C3;
  border: 1px solid #0098C3;
}
.btn-blue:hover {
  color: #fff;
}

.btn-dark-blue {
  color: #fff;
  background-color: #034F8A;
  border: 1px solid #034F8A;
}
.btn-dark-blue:hover {
  color: #fff;
}

.btn-blue:hover {
  background-color: #034F8A;
  border: 1px solid #034F8A;
}

.btn-secondary:hover {
  background-color: #027779;
  border: 1px solid #027779;
}

.bg-primary .btn-blue:hover {
  border: 1px solid #0098C3;
}

.btn-underligne {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-size: 15px;
  font-weight: 600;
  color: #034F8A;
  border-bottom: 1px solid rgba(3, 79, 138, 0.15);
  background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 -4 20 32"><path fill="%23009698" d="M8.578 16.594l4.594-4.594-4.594-4.594 1.406-1.406 6 6-6 6z"></path></svg>');
  background-position: center right;
  background-size: contain;
  background-repeat: no-repeat;
  text-align: left;
  cursor: pointer;
}
.btn-underligne:hover {
  color: #009698;
  border-bottom: 1px solid #009698;
}

@media screen and (max-width: 576px) {
  .btn-sm-block {
    width: 100%;
    text-align: center;
  }
}
.icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  stroke-width: 0;
  stroke: currentColor;
  fill: currentColor;
}

dialog.modal {
  top: 0;
  left: 50vw;
  width: 50vw;
  height: 100vh;
  max-height: 100vh;
  margin: 0;
  padding: 60px 40px;
  border: none;
}
dialog.modal .close {
  position: absolute;
  z-index: 9;
  top: 70px;
  right: 70px;
  padding: 16px;
  font-size: 18px;
  color: #009698;
  border: 1px solid rgba(3, 79, 138, 0.3);
  border-radius: 50%;
  cursor: pointer;
}
dialog.modal .close:hover {
  border: 1px solid #009698;
}
dialog.modal::-ms-backdrop {
  background-color: rgba(3, 79, 138, 0.3);
  backdrop-filter: blur(7px);
}
dialog.modal::backdrop {
  background-color: rgba(3, 79, 138, 0.3);
  backdrop-filter: blur(7px);
}
@media screen and (max-width: 576px) {
  dialog.modal {
    left: 0;
    width: 100vw;
    height: 100dvh;
    max-height: 100dvh;
  }
}

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

.tac {
  text-align: center;
}

.tar {
  text-align: right;
}

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

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

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

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

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

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

.text-gray {
  color: rgba(0, 0, 0, 0.2) !important;
}

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

.text-dark {
  color: #4d4d4d !important;
}

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

.text-text {
  color: #4d4d4d !important;
}

.text-blue {
  color: #0098C3 !important;
}

.text-dark-blue {
  color: #034F8A !important;
}

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

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

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

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

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

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

.title-14 {
  color: #034F8A;
  font-size: 14px;
  font-weight: bold;
}

.title-30 {
  color: #034F8A;
  font-size: 30px;
  font-weight: bold;
}

.title-40 {
  color: #034F8A;
  font-size: 40px;
  font-weight: bold;
}

.title-50 {
  color: #034F8A;
  font-size: 50px;
  font-weight: bold;
}

.title-60 {
  color: #034F8A;
  font-size: 60px;
  font-weight: bold;
}

.page-header {
  background: #034F8A url(./../images/overlay-cardre.png) no-repeat bottom right;
  background-size: 200px 200px;
}
.page-header .title {
  padding: 90px 0 140px 0;
  color: #fff;
  text-align: center;
  font-size: 65px;
  font-weight: 600;
}
.page-header .breadcrumbs {
  color: #fff;
}
.page-header .breadcrumbs a {
  color: #fff;
}
@media screen and (max-width: 576px) {
  .page-header .title {
    font-size: 40px;
  }
}

.paragraphe {
  font-size: 14px;
  line-height: 20px;
  opacity: 0.7;
  color: black;
}

@media screen and (max-width: 576px) {
  .title-40 {
    font-size: 30px;
  }
  .title-30 {
    font-size: 20px;
  }
}
.well {
  padding: 40px;
  border-radius: 20px;
  background-color: #fff;
  border: 1px solid rgba(31, 39, 73, 0.1019607843);
}

.well-primary {
  background-color: #034F8A;
  color: #fff;
  border: 1px solid #024171;
}

.well-secondary {
  background-color: #009698;
  color: #fff;
  border: 1px solid #007d7f;
}

.well-success {
  background-color: #009698;
  color: #fff;
  border: 1px solid #007d7f;
}

.well-danger {
  background-color: #ef6869;
  color: #fff;
  border: 1px solid #ed5152;
}

.well-warning {
  background-color: #F49A54;
  color: #034F8A;
  border: 1px solid #f28c3c;
}

.well-info {
  background-color: #17a2b8;
  color: #fff;
  border: 1px solid #148ea1;
}

.well-gray {
  background-color: rgba(0, 0, 0, 0.2);
  color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.2);
}

.well-white {
  background-color: #fff;
  color: #034F8A;
  border: 1px solid #f2f2f2;
}

.well-dark {
  background-color: #4d4d4d;
  color: #fff;
  border: 1px solid #404040;
}

.well-light {
  background-color: #F4F4F4;
  color: #034F8A;
  border: 1px solid #e7e7e7;
}

.well-text {
  background-color: #4d4d4d;
  color: #fff;
  border: 1px solid #404040;
}

.well-blue {
  background-color: #0098C3;
  color: #fff;
  border: 1px solid #0084aa;
}

.well-dark-blue {
  background-color: #034F8A;
  color: #fff;
  border: 1px solid #024171;
}

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

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

.bg-success {
  background-color: #009698;
  color: #fff;
}

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

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

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

.bg-gray {
  background-color: rgba(0, 0, 0, 0.2);
  color: #fff;
}

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

.bg-dark {
  background-color: #4d4d4d;
  color: #fff;
}

.bg-light {
  background-color: #F4F4F4;
  color: #034F8A;
}

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

.bg-blue {
  background-color: #0098C3;
  color: #fff;
}

.bg-dark-blue {
  background-color: #034F8A;
  color: #fff;
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  margin: 80px 0 140px 0;
}
.pagination .page-number {
  width: 50px;
  height: 50px;
  font-size: 14px;
  color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.pagination .page-number:hover {
  color: #009698;
}
.pagination .page-number.current {
  background-color: #009698;
  border: 6px solid #b8d8d9;
  border-radius: 50px;
  color: #fff;
}
.pagination .next,
.pagination .prev {
  font-size: 22px;
}
.pagination .next .icon-caret,
.pagination .prev .icon-caret {
  color: #009698;
}
.pagination .prev .icon-caret {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.pagination .disabled {
  opacity: 0.7;
}

.badge {
  display: inline-block;
  padding: 8px;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 500;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 15px;
}
.badge:empty {
  display: none;
}

.badge-primary {
  background-color: #034F8A;
  color: white;
}

.badge-secondary {
  background-color: #009698;
  color: white;
}

.badge-success {
  background-color: #009698;
  color: white;
}

.badge-danger {
  background-color: #ef6869;
  color: white;
}

.badge-warning {
  background-color: #F49A54;
  color: white;
}

.badge-info {
  background-color: #17a2b8;
  color: white;
}

.badge-gray {
  background-color: rgba(0, 0, 0, 0.2);
  color: white;
}

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

.badge-dark {
  background-color: #4d4d4d;
  color: white;
}

.badge-light {
  background-color: #F4F4F4;
  color: white;
}

.badge-text {
  background-color: #4d4d4d;
  color: white;
}

.badge-blue {
  background-color: #0098C3;
  color: white;
}

.badge-dark-blue {
  background-color: #034F8A;
  color: white;
}

.badge-light {
  color: #034F8A;
}

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

.st-accordion__content {
  display: none;
}

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

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

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

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

.swiper-logos .swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
          transition-timing-function: linear !important;
}
.swiper-logos .swiper-slide {
  height: 103px;
  padding: 20px;
  background-color: #fff;
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.swiper-logos .swiper-slide .logo {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 576px) {
  .swiper-logos .swiper-slide {
    height: 80px;
    padding: 16px;
  }
}

.certifications .swiper-logos .swiper-slide {
  height: 150px;
  padding: 20px 0;
}

.votre-projet {
  padding: 105px 0;
  background-color: #034F8A;
  color: #fff;
}
.votre-projet .title {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #fff;
}
.votre-projet .baseline {
  opacity: 0.5;
  margin-bottom: 25px;
}
.votre-projet .gform-theme .gform-field-label {
  color: #fff;
}
.votre-projet .gform-theme .gfield_required,
.votre-projet .gform-theme .gfield_required_asterisk {
  font-size: 18px !important;
  color: #fff !important;
}
.votre-projet .gform-theme #field_submit input {
  padding: 0px;
  height: 50px;
  line-height: 50px;
}
.votre-projet .gform-theme .gfield--type-submit,
.votre-projet .gform-theme .gfield--type-html {
  margin-top: 20px;
}
@media screen and (max-width: 576px) {
  .votre-projet {
    padding: 30px;
    margin: 0 -30px;
  }
}

.newsletter {
  margin-bottom: 40px;
}
.newsletter div.gform-theme {
  position: relative;
  color: #034F8A;
}
.newsletter div.gform-theme .ginput_container_email input {
  background-color: transparent;
  border: rgba(3, 79, 138, 0.3) solid 1px;
  color: #034F8A;
}
.newsletter div.gform-theme .ginput_container_email input:focus {
  background-color: rgba(255, 255, 255, 0.2);
  outline: unset;
}
.newsletter div.gform-theme .gform-field-label {
  color: #034F8A;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
}
.newsletter div.gform-theme input.gform_button.button {
  position: absolute;
  z-index: 9;
  top: 0px;
  right: 0;
  height: calc(100% + 2px);
  border-radius: 0 5px 5px 0 !important;
}
.newsletter div.gform-theme input[type=checkbox] {
  background: transparent;
}
.newsletter div.gform-theme label {
  font-weight: 500;
  opacity: 0.8;
}
.newsletter .rgpd {
  color: rgba(3, 79, 138, 0.8);
}
.newsletter .rgpd a {
  text-decoration: underline;
}

.processus {
  padding: 115px 0;
  color: #fff;
  background-color: #034F8A;
}
.processus .title {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 35px;
  text-align: center;
  color: #fff;
}
.processus .baseline {
  margin-bottom: 70px;
  text-align: center;
}
.processus .steps {
  background: transparent url(./../images/timeline.png) no-repeat center 60px;
  background-size: 39px 809px;
}
.processus .step {
  height: 160px;
  gap: 110px;
  overflow: hidden;
  margin-bottom: 95px;
}
.processus .step:nth-child(even) .left {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.processus .step:nth-child(even) .left:after {
  left: -8px;
}
.processus .step:nth-child(even) .right {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.processus .step .left {
  position: relative;
  padding: 40px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 5px;
}
.processus .step .left:after {
  content: "";
  position: absolute;
  z-index: 9;
  right: -8px;
  top: 72px;
  width: 16px;
  height: 16px;
  -webkit-transform: matrix(0.71, 0.71, -0.71, 0.71, 0, 0);
          transform: matrix(0.71, 0.71, -0.71, 0.71, 0, 0);
  background: rgba(0, 152, 195, 0.35);
}
.processus .step .left .name {
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 12px;
}
.processus .step .left .content {
  font-size: 14px;
  line-height: 20px;
  opacity: 0.7;
}
.processus .step .right .process {
  opacity: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.processus .step:hover .process {
  opacity: 1;
}
@media screen and (max-width: 576px) {
  .processus {
    padding: 80px 0 40px 0;
  }
  .processus .title {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 35px;
    text-align: center;
    color: #fff;
  }
  .processus .steps {
    background-position: left 0px;
    background-size: 32px 79%;
  }
  .processus .step {
    margin-bottom: 40px;
  }
  .processus .step .left {
    position: relative;
    padding: 0 0 0 60px;
    background-color: transparent;
  }
  .processus .step .left:after {
    display: none;
  }
  .processus .step .right {
    display: none;
  }
}

.block-citation {
  padding: 60px 140px;
  background-color: #fff;
  border: 1px solid rgba(0, 150, 152, 0.3);
  border-radius: 5px;
}
.block-citation .icon-citation {
  height: 43px;
  width: 62px;
  margin-bottom: 35px;
}
.block-citation .commentaire {
  font-size: 16px;
  margin-bottom: 45px;
  line-height: 24px;
  color: #034F8A;
  font-weight: 600;
}
.block-citation .fullname {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 600;
  color: #009698;
}
.block-citation .poste {
  font-size: 14px;
}
@media screen and (max-width: 576px) {
  .block-citation {
    padding: 40px 30px;
    margin: 30px -30px;
  }
}

.modal-equipe .content .miniature {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.modal-equipe .content .miniature .wrap-photo {
  margin-right: 60px;
}
.modal-equipe .content .miniature .wrap-photo .bg {
  position: absolute;
  height: 148px;
}
.modal-equipe .content .miniature .wrap-photo .photo {
  height: 158px;
}
.modal-equipe .content .miniature .poste {
  color: #009698;
  max-width: 280px;
}
.modal-equipe .content .block-citation {
  padding: 30px 50px 50px 50px;
}

dialog.modal-contact {
  background-color: #034F8A;
  color: #fff;
}
dialog.modal-contact .close {
  border-color: #5083ad;
}
dialog.modal-contact .close:hover {
  border-color: #009698;
}
dialog.modal-contact .close:hover .icon {
  color: #009698;
}
dialog.modal-contact .close .icon {
  color: #fff;
}
dialog.modal-contact .votre-projet {
  padding: 20px 50px;
}

@media screen and (max-width: 576px) {
  .realisations {
    position: relative;
    padding-bottom: 70px;
  }
  .realisations .swiper-navigation {
    position: absolute;
    z-index: 9;
    bottom: 0;
    left: 0;
  }
}

.solutions-swiper .swiper-slide {
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.card-post {
  padding: 12px;
  background-color: #fff;
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border: 1px solid transparent;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.card-post:hover {
  border: 1px solid #009698;
}
.card-post:hover .thumbnail img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.card-post .thumbnail {
  overflow: hidden;
  height: 205px;
  border-radius: 5px;
  margin-bottom: 20px;
}
.card-post .thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.card-post .card-title {
  color: #034F8A;
  font-size: 25px;
  line-height: 30px;
  margin: 0 12px 20px 12px;
}
.card-post .content {
  line-height: 20px;
  font-size: 14px;
  margin: 0 12px 20px 12px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.card-post .content p {
  margin: 0;
}
.card-post .btn-underligne {
  margin: 0 0 12px 0;
}

.posts-swiper .swiper-slide {
  height: auto;
}
.posts-swiper .swiper-slide .card-post {
  height: 100%;
}

.card-solution {
  position: relative;
  padding: 30px;
  background-color: #fff;
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.card-solution .card-title {
  color: #034F8A;
  font-size: 25px;
  line-height: 30px;
  margin: 20px 0;
  font-weight: 600;
}
.card-solution .content {
  line-height: 20px;
  font-size: 14px;
  margin-bottom: 25px;
}
.card-solution .content p {
  margin: 0;
}
.card-solution .bg-mask {
  position: absolute;
  z-index: 9;
  right: 0;
  top: 0;
  width: 80px;
  height: 80px;
}
.card-solution.active {
  color: #fff;
  background: transparent linear-gradient(223deg, #0098C3 0%, #006C9F 45%, #034F8A 100%) 0% 0% no-repeat padding-box;
}
.card-solution.active .card-title {
  color: #fff;
}
.card-solution.active .btn-underligne {
  color: #fff;
  border-color: #fff;
  background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 -4 20 32"><path fill="%23fff" d="M8.578 16.594l4.594-4.594-4.594-4.594 1.406-1.406 6 6-6 6z"></path></svg>');
}

.card-realisation {
  background-color: #fff;
  padding: 35px;
  border-radius: 5px;
}
.card-realisation .left {
  padding: 30px 50px 30px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.card-realisation .card-title {
  color: #034F8A;
  font-size: 18px;
  font-weight: 600;
  padding-bottom: 20px;
}
.card-realisation .card-content {
  padding-bottom: 40px;
  line-height: 25px;
}
.card-realisation .right img {
  border-radius: 12px;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 576px) {
  .card-realisation {
    padding: 0;
  }
  .card-realisation .left {
    padding: 30px 30px 25px 30px;
  }
  .card-realisation .btn {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
  }
  .card-realisation .cover {
    margin: 0 10px;
    border-radius: 12px;
  }
}

.card-equipe {
  margin-bottom: 30px;
  height: 100%;
}
.card-equipe .wrap-photo {
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
  border-radius: 20px;
  overflow: hidden;
}
.card-equipe .wrap-photo .bg {
  position: absolute;
  z-index: 0;
  bottom: 0;
  left: 0;
  height: 280px;
  width: 100%;
  border-radius: 20px;
}
.card-equipe .wrap-photo .photo {
  position: relative;
  z-index: 1;
  height: 320px;
}
.card-equipe .wrap-photo .photo img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.card-equipe .fullname {
  color: #034F8A;
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 12px;
}
.card-equipe .poste {
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 18px;
  height: 36px;
}
.card-equipe:hover .photo {
  -webkit-transform: scale(1.03);
          transform: scale(1.03);
  -webkit-transition: linear 0.4s;
  transition: linear 0.4s;
}
.card-equipe:nth-child(4n+1) .bg {
  background: transparent url(../images/equipe/bg1.png) no-repeat center center;
  background-size: cover;
}
.card-equipe:nth-child(4n+2) .bg {
  background: transparent url(../images/equipe/bg2.png) no-repeat center center;
  background-size: cover;
}
.card-equipe:nth-child(4n+3) .bg {
  background: transparent url(../images/equipe/bg3.png) no-repeat center center;
  background-size: cover;
}
.card-equipe:nth-child(4n) .bg {
  background: transparent url(../images/equipe/bg4.png) no-repeat center center;
  background-size: cover;
}
@media screen and (max-width: 576px) {
  .card-equipe .wrap-photo .bg {
    height: 135px;
  }
  .card-equipe .wrap-photo .photo {
    height: 160px;
  }
  .card-equipe .fullname {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .card-equipe .poste {
    font-size: 12px;
    margin-bottom: 20px;
    line-height: 16px;
    height: 60px;
  }
}

.home .header-site {
  margin-bottom: -90px;
}
.home .page-lead {
  padding-top: 90px;
}

.home-page .page-lead {
  position: relative;
  height: 720px;
  background-color: rgba(0, 0, 0, 0.4);
  color: white;
}
.home-page .page-lead .wrap {
  position: relative;
  z-index: 9;
}
.home-page .page-lead .title {
  color: white;
  font-size: 65px;
  line-height: 80px;
  width: 50%;
}
.home-page .page-lead .baseline {
  padding: 30px 0;
  font-size: 18px;
}
.home-page .page-lead .overlay {
  grid-column: 1/-1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.home-page .page-lead .mask-video {
  z-index: 1;
  background: transparent -webkit-gradient(linear, left top, right top, from(#001E36), to(rgba(0, 30, 54, 0))) 0% 0% no-repeat padding-box;
  background: transparent linear-gradient(90deg, #001E36 0%, rgba(0, 30, 54, 0) 100%) 0% 0% no-repeat padding-box;
}
.home-page .page-lead .bg-video {
  z-index: 0;
}
.home-page .page-lead .overlay-cardre {
  z-index: 2;
  background: transparent url(./../images/overlay-cardre.png) no-repeat bottom right;
  background-size: 250px 285px;
}
.home-page .section {
  margin-bottom: 140px;
}
.home-page .section-ceo .left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.home-page .section-ceo .left .icon-citation {
  height: 4auto;
  width: 62px;
  margin-bottom: 35px;
  color: #034F8A;
}
.home-page .section-ceo .left .commentaire {
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 45px;
  line-height: 35px;
  padding-right: 120px;
  color: #034F8A;
}
.home-page .section-ceo .left .fullname {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 600;
  color: #009698;
}
.home-page .section-ceo .left .poste {
  font-size: 14px;
}
.home-page .section-ceo .photo-ceo {
  border-radius: 20px;
  margin-bottom: 40px;
}
@media screen and (max-width: 576px) {
  .home-page .section {
    margin-bottom: 70px;
  }
  .home-page .page-lead {
    height: 100dvh;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .home-page .page-lead .title {
    color: white;
    font-size: 38px;
    line-height: 44px;
    width: 100%;
  }
  .home-page .page-lead .btn {
    display: block;
    text-align: center;
    margin: 0 0 20px 0;
  }
  .home-page .section-ceo .left .commentaire {
    font-size: 16px;
    margin-bottom: 35px;
    line-height: 24px;
    padding-right: 0px;
  }
  .home-page .section-ceo .left .poste {
    line-height: 25px;
  }
  .home-page .section-ceo .photo-ceo {
    margin-top: 40px;
  }
  .home-page .nos-solution {
    position: relative;
    padding-bottom: 70px;
  }
  .home-page .nos-solution .btn-devis {
    position: absolute;
    z-index: 9;
    left: 0;
    bottom: 0;
    width: 100%;
    text-align: center;
  }
  .home-page .nos-solution .title-40 {
    font-size: 30px;
  }
}

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

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

.archive-posts .menu-categories {
  position: unset;
  margin: 60px 0 40px 0;
}
.archive-posts .menu-categories .nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px 0;
  gap: 40px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  list-style: none;
}
.archive-posts .menu-categories .nav a {
  padding: 19px 0;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.5);
}
.archive-posts .menu-categories .nav a.active, .archive-posts .menu-categories .nav a:hover {
  color: #009698;
  border-bottom: 3px solid #009698;
}
.archive-posts .menu-categories .nav a.active {
  font-weight: 600;
}
.archive-posts .menu-categories .swiper-slide {
  height: auto;
  width: auto;
}

.view-single-post {
  max-width: 840px;
  margin: 0 auto;
  padding: 150px 0;
}
.view-single-post .article-h1 {
  text-align: center;
  font-size: 40px;
  font-weight: 600;
  color: #034F8A;
  padding-bottom: 50px;
}
.view-single-post .thumbnail {
  text-align: center;
  border-radius: 5px;
  margin: 40px 0 70px;
}
@media screen and (max-width: 576px) {
  .view-single-post {
    padding: 60px 0 20px 0;
  }
  .view-single-post .article-h1 {
    text-align: left;
    font-size: 30px;
    padding-bottom: 30px;
  }
}

.single-solution .main-content {
  position: relative;
  padding: 0 0 80px 0;
  margin-bottom: 100px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}
.single-solution .container-logo {
  position: sticky;
  top: 110px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.single-solution .page-title {
  font-size: 65px;
  line-height: 80px;
  font-weight: 600;
  margin-bottom: 30px;
}
@media screen and (max-width: 1215px) {
  .single-solution .page-title {
    font-size: 39px;
    line-height: 42px;
  }
}
.single-solution .gutenberg-content h2 {
  font-size: 40px;
  line-height: 50px;
  font-weight: 600;
  margin: 0 0 40px;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
  padding-top: 80px;
}
@media screen and (max-width: 1215px) {
  .single-solution .gutenberg-content h2 {
    font-size: 30px;
    line-height: 40px;
    margin: 0 0 20px;
    padding-top: 40px;
  }
}
.single-solution .gallery-swiper .swiper-slide {
  border-radius: 12px;
  overflow: hidden;
  height: 570px;
}
.single-solution .gallery-swiper .swiper-slide img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.single-solution .gallery-swiper .swiper-pagination-bullet-active {
  background: #009698;
}
.single-solution .gallery-swiper .swiper-prev,
.single-solution .gallery-swiper .swiper-next {
  position: absolute;
  z-index: 9;
  top: 50%;
  font-size: 30px;
  border: #009698 solid 1px;
  border-radius: 50%;
  background-color: #009698;
  color: #fff;
  height: 45px;
  width: 45px;
  text-align: center;
}
.single-solution .gallery-swiper .swiper-prev.swiper-button-disabled,
.single-solution .gallery-swiper .swiper-next.swiper-button-disabled {
  opacity: 0.7;
}
.single-solution .gallery-swiper .swiper-prev {
  left: 30px;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.single-solution .gallery-swiper .swiper-prev .icon {
  margin-left: 6px;
}
.single-solution .gallery-swiper .swiper-next {
  right: 30px;
}
.single-solution .gallery-swiper .swiper-next .icon {
  margin-left: -2px;
}
.single-solution .parent-title {
  font-size: 50px;
  color: #0C699E;
  padding: 50px 0 40px 0;
}
.single-solution .parent-content {
  color: #4d4d4d;
  line-height: 23px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}
@media screen and (max-width: 576px) {
  .single-solution .parent-title {
    padding: 0 0 30px 0;
    font-size: 38px;
  }
  .single-solution .gallery-swiper {
    margin: 0 -30px;
  }
  .single-solution .gallery-swiper .swiper-slide {
    height: 360px;
    border-radius: 0px;
  }
}

.page-about .notre-histoire {
  padding: 80px 0 0 0;
}
.page-about .item-nos-valeur .logo {
  height: 62px;
  width: 62px;
  margin-bottom: 20px;
}
.page-about .item-nos-valeur .name {
  font-size: 18px;
  color: #034F8A;
  margin-bottom: 16px;
  font-weight: 600;
}
.page-about .item-nos-valeur .desc {
  font-size: 14px;
}
.page-about .en-chiffres {
  text-align: center;
  color: #fff;
  padding: 90px 0;
  background-color: #034F8A;
}
.page-about .en-chiffres .title {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 50px;
}
.page-about .en-chiffres .item-chiffre {
  padding: 35px 0;
  background-color: #2E6093;
  border: 1px solid #4A77A3;
  border-radius: 5px;
}
.page-about .en-chiffres .item-chiffre .valeur {
  font-size: 40px;
  font-weight: 600;
}
.page-about .en-chiffres .item-chiffre .label {
  font-size: 18px;
}
.page-about .contact {
  padding: 140px 0 120px 0;
  margin-bottom: 135px;
  text-align: center;
  background: #034F8A url(./../images/about/location.webp) no-repeat center center;
  background-size: cover;
}
.page-about .contact .title {
  font-size: 40px;
  font-weight: 600;
  color: #fff;
}
.page-about .contact .desc {
  font-size: 14px;
  line-height: 25px;
  padding: 25px 0 40px 0;
  color: #fff;
  width: 60%;
  margin: 0 auto;
}
@media screen and (max-width: 576px) {
  .page-about .page-header .title {
    padding: 72px 0 100px 0;
    font-size: 39px;
  }
  .page-about .notre-histoire {
    padding: 0;
  }
  .page-about .contact {
    text-align: left;
  }
  .page-about .contact .title {
    font-size: 30px;
  }
  .page-about .contact .desc {
    width: 100%;
  }
}

.gutenberg-content p {
  line-height: 24px;
}

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