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

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

body {
  margin: 0;
  font-family: Gabarito, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.1;
  background-color: #E5EAE4;
  color: #323c65;
}

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

/*
 * Links
 */
a {
  color: #323c65;
  text-decoration: none;
}

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

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

/*
 * Vertical rythm
 */
h1,
.h1-like,
h2,
.h2-like {
  margin-top: 0;
  margin-bottom: 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: 992px) {
  .md\:grid {
    display: -ms-grid;
    display: grid;
  }
}
@media (min-width: 1200px) {
  .lg\:grid {
    display: -ms-grid;
    display: grid;
  }
}
@media (min-width: 1400px) {
  .xl\: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: 992px) {
  .md\:grid-cols-1 {
    -ms-grid-columns: (minmax(0, 1fr))[1];
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .md\:grid-cols-2 {
    -ms-grid-columns: (minmax(0, 1fr))[2];
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .md\:grid-cols-3 {
    -ms-grid-columns: (minmax(0, 1fr))[3];
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .md\:grid-cols-4 {
    -ms-grid-columns: (minmax(0, 1fr))[4];
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .md\:grid-cols-5 {
    -ms-grid-columns: (minmax(0, 1fr))[5];
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .md\:grid-cols-6 {
    -ms-grid-columns: (minmax(0, 1fr))[6];
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}
@media (min-width: 1200px) {
  .lg\:grid-cols-1 {
    -ms-grid-columns: (minmax(0, 1fr))[1];
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .lg\:grid-cols-2 {
    -ms-grid-columns: (minmax(0, 1fr))[2];
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .lg\:grid-cols-3 {
    -ms-grid-columns: (minmax(0, 1fr))[3];
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .lg\:grid-cols-4 {
    -ms-grid-columns: (minmax(0, 1fr))[4];
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .lg\:grid-cols-5 {
    -ms-grid-columns: (minmax(0, 1fr))[5];
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .lg\:grid-cols-6 {
    -ms-grid-columns: (minmax(0, 1fr))[6];
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}
@media (min-width: 1400px) {
  .xl\:grid-cols-1 {
    -ms-grid-columns: (minmax(0, 1fr))[1];
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .xl\:grid-cols-2 {
    -ms-grid-columns: (minmax(0, 1fr))[2];
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .xl\:grid-cols-3 {
    -ms-grid-columns: (minmax(0, 1fr))[3];
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .xl\:grid-cols-4 {
    -ms-grid-columns: (minmax(0, 1fr))[4];
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .xl\:grid-cols-5 {
    -ms-grid-columns: (minmax(0, 1fr))[5];
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .xl\: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-60 {
  gap: 3.75rem;
}

.gap-x-60 {
  -webkit-column-gap: 3.75rem;
     -moz-column-gap: 3.75rem;
          column-gap: 3.75rem;
}

.gap-y-60 {
  row-gap: 3.75rem;
}

.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-80 {
  gap: 5rem;
}

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

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

.gap-100 {
  gap: 6.25rem;
}

.gap-x-100 {
  -webkit-column-gap: 6.25rem;
     -moz-column-gap: 6.25rem;
          column-gap: 6.25rem;
}

.gap-y-100 {
  row-gap: 6.25rem;
}

.gap-120 {
  gap: 7.5rem;
}

.gap-x-120 {
  -webkit-column-gap: 7.5rem;
     -moz-column-gap: 7.5rem;
          column-gap: 7.5rem;
}

.gap-y-120 {
  row-gap: 7.5rem;
}

.gap-150 {
  gap: 9.375rem;
}

.gap-x-150 {
  -webkit-column-gap: 9.375rem;
     -moz-column-gap: 9.375rem;
          column-gap: 9.375rem;
}

.gap-y-150 {
  row-gap: 9.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-60 {
    gap: 3.75rem;
  }
  .sm\:gap-x-60 {
    -webkit-column-gap: 3.75rem;
       -moz-column-gap: 3.75rem;
            column-gap: 3.75rem;
  }
  .sm\:gap-y-60 {
    row-gap: 3.75rem;
  }
  .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;
  }
  .sm\:gap-80 {
    gap: 5rem;
  }
  .sm\:gap-x-80 {
    -webkit-column-gap: 5rem;
       -moz-column-gap: 5rem;
            column-gap: 5rem;
  }
  .sm\:gap-y-80 {
    row-gap: 5rem;
  }
  .sm\:gap-100 {
    gap: 6.25rem;
  }
  .sm\:gap-x-100 {
    -webkit-column-gap: 6.25rem;
       -moz-column-gap: 6.25rem;
            column-gap: 6.25rem;
  }
  .sm\:gap-y-100 {
    row-gap: 6.25rem;
  }
  .sm\:gap-120 {
    gap: 7.5rem;
  }
  .sm\:gap-x-120 {
    -webkit-column-gap: 7.5rem;
       -moz-column-gap: 7.5rem;
            column-gap: 7.5rem;
  }
  .sm\:gap-y-120 {
    row-gap: 7.5rem;
  }
  .sm\:gap-150 {
    gap: 9.375rem;
  }
  .sm\:gap-x-150 {
    -webkit-column-gap: 9.375rem;
       -moz-column-gap: 9.375rem;
            column-gap: 9.375rem;
  }
  .sm\:gap-y-150 {
    row-gap: 9.375rem;
  }
}
@media (min-width: 992px) {
  .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-60 {
    gap: 3.75rem;
  }
  .md\:gap-x-60 {
    -webkit-column-gap: 3.75rem;
       -moz-column-gap: 3.75rem;
            column-gap: 3.75rem;
  }
  .md\:gap-y-60 {
    row-gap: 3.75rem;
  }
  .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;
  }
  .md\:gap-80 {
    gap: 5rem;
  }
  .md\:gap-x-80 {
    -webkit-column-gap: 5rem;
       -moz-column-gap: 5rem;
            column-gap: 5rem;
  }
  .md\:gap-y-80 {
    row-gap: 5rem;
  }
  .md\:gap-100 {
    gap: 6.25rem;
  }
  .md\:gap-x-100 {
    -webkit-column-gap: 6.25rem;
       -moz-column-gap: 6.25rem;
            column-gap: 6.25rem;
  }
  .md\:gap-y-100 {
    row-gap: 6.25rem;
  }
  .md\:gap-120 {
    gap: 7.5rem;
  }
  .md\:gap-x-120 {
    -webkit-column-gap: 7.5rem;
       -moz-column-gap: 7.5rem;
            column-gap: 7.5rem;
  }
  .md\:gap-y-120 {
    row-gap: 7.5rem;
  }
  .md\:gap-150 {
    gap: 9.375rem;
  }
  .md\:gap-x-150 {
    -webkit-column-gap: 9.375rem;
       -moz-column-gap: 9.375rem;
            column-gap: 9.375rem;
  }
  .md\:gap-y-150 {
    row-gap: 9.375rem;
  }
}
@media (min-width: 1200px) {
  .lg\:gap-0 {
    gap: 0;
  }
  .lg\:gap-x-0 {
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
  }
  .lg\:gap-y-0 {
    row-gap: 0;
  }
  .lg\:gap-5 {
    gap: 0.313rem;
  }
  .lg\:gap-x-5 {
    -webkit-column-gap: 0.313rem;
       -moz-column-gap: 0.313rem;
            column-gap: 0.313rem;
  }
  .lg\:gap-y-5 {
    row-gap: 0.313rem;
  }
  .lg\:gap-10 {
    gap: 0.625rem;
  }
  .lg\:gap-x-10 {
    -webkit-column-gap: 0.625rem;
       -moz-column-gap: 0.625rem;
            column-gap: 0.625rem;
  }
  .lg\:gap-y-10 {
    row-gap: 0.625rem;
  }
  .lg\:gap-16 {
    gap: 1rem;
  }
  .lg\:gap-x-16 {
    -webkit-column-gap: 1rem;
       -moz-column-gap: 1rem;
            column-gap: 1rem;
  }
  .lg\:gap-y-16 {
    row-gap: 1rem;
  }
  .lg\:gap-20 {
    gap: 1.25rem;
  }
  .lg\:gap-x-20 {
    -webkit-column-gap: 1.25rem;
       -moz-column-gap: 1.25rem;
            column-gap: 1.25rem;
  }
  .lg\:gap-y-20 {
    row-gap: 1.25rem;
  }
  .lg\:gap-30 {
    gap: 1.875rem;
  }
  .lg\:gap-x-30 {
    -webkit-column-gap: 1.875rem;
       -moz-column-gap: 1.875rem;
            column-gap: 1.875rem;
  }
  .lg\:gap-y-30 {
    row-gap: 1.875rem;
  }
  .lg\:gap-36 {
    gap: 2.25rem;
  }
  .lg\:gap-x-36 {
    -webkit-column-gap: 2.25rem;
       -moz-column-gap: 2.25rem;
            column-gap: 2.25rem;
  }
  .lg\:gap-y-36 {
    row-gap: 2.25rem;
  }
  .lg\:gap-40 {
    gap: 2.5rem;
  }
  .lg\:gap-x-40 {
    -webkit-column-gap: 2.5rem;
       -moz-column-gap: 2.5rem;
            column-gap: 2.5rem;
  }
  .lg\:gap-y-40 {
    row-gap: 2.5rem;
  }
  .lg\:gap-60 {
    gap: 3.75rem;
  }
  .lg\:gap-x-60 {
    -webkit-column-gap: 3.75rem;
       -moz-column-gap: 3.75rem;
            column-gap: 3.75rem;
  }
  .lg\:gap-y-60 {
    row-gap: 3.75rem;
  }
  .lg\:gap-70 {
    gap: 4.375rem;
  }
  .lg\:gap-x-70 {
    -webkit-column-gap: 4.375rem;
       -moz-column-gap: 4.375rem;
            column-gap: 4.375rem;
  }
  .lg\:gap-y-70 {
    row-gap: 4.375rem;
  }
  .lg\:gap-80 {
    gap: 5rem;
  }
  .lg\:gap-x-80 {
    -webkit-column-gap: 5rem;
       -moz-column-gap: 5rem;
            column-gap: 5rem;
  }
  .lg\:gap-y-80 {
    row-gap: 5rem;
  }
  .lg\:gap-100 {
    gap: 6.25rem;
  }
  .lg\:gap-x-100 {
    -webkit-column-gap: 6.25rem;
       -moz-column-gap: 6.25rem;
            column-gap: 6.25rem;
  }
  .lg\:gap-y-100 {
    row-gap: 6.25rem;
  }
  .lg\:gap-120 {
    gap: 7.5rem;
  }
  .lg\:gap-x-120 {
    -webkit-column-gap: 7.5rem;
       -moz-column-gap: 7.5rem;
            column-gap: 7.5rem;
  }
  .lg\:gap-y-120 {
    row-gap: 7.5rem;
  }
  .lg\:gap-150 {
    gap: 9.375rem;
  }
  .lg\:gap-x-150 {
    -webkit-column-gap: 9.375rem;
       -moz-column-gap: 9.375rem;
            column-gap: 9.375rem;
  }
  .lg\:gap-y-150 {
    row-gap: 9.375rem;
  }
}
@media (min-width: 1400px) {
  .xl\:gap-0 {
    gap: 0;
  }
  .xl\:gap-x-0 {
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
  }
  .xl\:gap-y-0 {
    row-gap: 0;
  }
  .xl\:gap-5 {
    gap: 0.313rem;
  }
  .xl\:gap-x-5 {
    -webkit-column-gap: 0.313rem;
       -moz-column-gap: 0.313rem;
            column-gap: 0.313rem;
  }
  .xl\:gap-y-5 {
    row-gap: 0.313rem;
  }
  .xl\:gap-10 {
    gap: 0.625rem;
  }
  .xl\:gap-x-10 {
    -webkit-column-gap: 0.625rem;
       -moz-column-gap: 0.625rem;
            column-gap: 0.625rem;
  }
  .xl\:gap-y-10 {
    row-gap: 0.625rem;
  }
  .xl\:gap-16 {
    gap: 1rem;
  }
  .xl\:gap-x-16 {
    -webkit-column-gap: 1rem;
       -moz-column-gap: 1rem;
            column-gap: 1rem;
  }
  .xl\:gap-y-16 {
    row-gap: 1rem;
  }
  .xl\:gap-20 {
    gap: 1.25rem;
  }
  .xl\:gap-x-20 {
    -webkit-column-gap: 1.25rem;
       -moz-column-gap: 1.25rem;
            column-gap: 1.25rem;
  }
  .xl\:gap-y-20 {
    row-gap: 1.25rem;
  }
  .xl\:gap-30 {
    gap: 1.875rem;
  }
  .xl\:gap-x-30 {
    -webkit-column-gap: 1.875rem;
       -moz-column-gap: 1.875rem;
            column-gap: 1.875rem;
  }
  .xl\:gap-y-30 {
    row-gap: 1.875rem;
  }
  .xl\:gap-36 {
    gap: 2.25rem;
  }
  .xl\:gap-x-36 {
    -webkit-column-gap: 2.25rem;
       -moz-column-gap: 2.25rem;
            column-gap: 2.25rem;
  }
  .xl\:gap-y-36 {
    row-gap: 2.25rem;
  }
  .xl\:gap-40 {
    gap: 2.5rem;
  }
  .xl\:gap-x-40 {
    -webkit-column-gap: 2.5rem;
       -moz-column-gap: 2.5rem;
            column-gap: 2.5rem;
  }
  .xl\:gap-y-40 {
    row-gap: 2.5rem;
  }
  .xl\:gap-60 {
    gap: 3.75rem;
  }
  .xl\:gap-x-60 {
    -webkit-column-gap: 3.75rem;
       -moz-column-gap: 3.75rem;
            column-gap: 3.75rem;
  }
  .xl\:gap-y-60 {
    row-gap: 3.75rem;
  }
  .xl\:gap-70 {
    gap: 4.375rem;
  }
  .xl\:gap-x-70 {
    -webkit-column-gap: 4.375rem;
       -moz-column-gap: 4.375rem;
            column-gap: 4.375rem;
  }
  .xl\:gap-y-70 {
    row-gap: 4.375rem;
  }
  .xl\:gap-80 {
    gap: 5rem;
  }
  .xl\:gap-x-80 {
    -webkit-column-gap: 5rem;
       -moz-column-gap: 5rem;
            column-gap: 5rem;
  }
  .xl\:gap-y-80 {
    row-gap: 5rem;
  }
  .xl\:gap-100 {
    gap: 6.25rem;
  }
  .xl\:gap-x-100 {
    -webkit-column-gap: 6.25rem;
       -moz-column-gap: 6.25rem;
            column-gap: 6.25rem;
  }
  .xl\:gap-y-100 {
    row-gap: 6.25rem;
  }
  .xl\:gap-120 {
    gap: 7.5rem;
  }
  .xl\:gap-x-120 {
    -webkit-column-gap: 7.5rem;
       -moz-column-gap: 7.5rem;
            column-gap: 7.5rem;
  }
  .xl\:gap-y-120 {
    row-gap: 7.5rem;
  }
  .xl\:gap-150 {
    gap: 9.375rem;
  }
  .xl\:gap-x-150 {
    -webkit-column-gap: 9.375rem;
       -moz-column-gap: 9.375rem;
            column-gap: 9.375rem;
  }
  .xl\:gap-y-150 {
    row-gap: 9.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: 992px) {
  .md\:col-start-1 {
    -ms-grid-column: 1;
        grid-column-start: 1;
  }
  .md\:col-end-1 {
    -ms-grid-column-span: 1;
    grid-column-end: 1;
  }
  .md\:col-span-1 {
    -ms-grid-column-span: 1;
    grid-column: span 1/span 1;
  }
  .md\:col-span-full {
    grid-column: 1/-1;
  }
  .md\:row-start-1 {
    -ms-grid-row: 1;
        grid-row-start: 1;
  }
  .md\:row-end-1 {
    -ms-grid-row-span: 1;
    grid-row-end: 1;
  }
  .md\:row-span-1 {
    -ms-grid-row-span: 1;
    grid-row: span 1/span 1;
  }
  .md\:col-start-2 {
    -ms-grid-column: 2;
        grid-column-start: 2;
  }
  .md\:col-end-2 {
    -ms-grid-column-span: 2;
    grid-column-end: 2;
  }
  .md\:col-span-2 {
    -ms-grid-column-span: 2;
    grid-column: span 2/span 2;
  }
  .md\:col-span-full {
    grid-column: 1/-1;
  }
  .md\:row-start-2 {
    -ms-grid-row: 2;
        grid-row-start: 2;
  }
  .md\:row-end-2 {
    -ms-grid-row-span: 2;
    grid-row-end: 2;
  }
  .md\:row-span-2 {
    -ms-grid-row-span: 2;
    grid-row: span 2/span 2;
  }
  .md\:col-start-3 {
    -ms-grid-column: 3;
        grid-column-start: 3;
  }
  .md\:col-end-3 {
    -ms-grid-column-span: 3;
    grid-column-end: 3;
  }
  .md\:col-span-3 {
    -ms-grid-column-span: 3;
    grid-column: span 3/span 3;
  }
  .md\:col-span-full {
    grid-column: 1/-1;
  }
  .md\:row-start-3 {
    -ms-grid-row: 3;
        grid-row-start: 3;
  }
  .md\:row-end-3 {
    -ms-grid-row-span: 3;
    grid-row-end: 3;
  }
  .md\:row-span-3 {
    -ms-grid-row-span: 3;
    grid-row: span 3/span 3;
  }
  .md\:col-start-4 {
    -ms-grid-column: 4;
        grid-column-start: 4;
  }
  .md\:col-end-4 {
    -ms-grid-column-span: 4;
    grid-column-end: 4;
  }
  .md\:col-span-4 {
    -ms-grid-column-span: 4;
    grid-column: span 4/span 4;
  }
  .md\:col-span-full {
    grid-column: 1/-1;
  }
  .md\:row-start-4 {
    -ms-grid-row: 4;
        grid-row-start: 4;
  }
  .md\:row-end-4 {
    -ms-grid-row-span: 4;
    grid-row-end: 4;
  }
  .md\:row-span-4 {
    -ms-grid-row-span: 4;
    grid-row: span 4/span 4;
  }
  .md\:col-start-5 {
    -ms-grid-column: 5;
        grid-column-start: 5;
  }
  .md\:col-end-5 {
    -ms-grid-column-span: 5;
    grid-column-end: 5;
  }
  .md\:col-span-5 {
    -ms-grid-column-span: 5;
    grid-column: span 5/span 5;
  }
  .md\:col-span-full {
    grid-column: 1/-1;
  }
  .md\:row-start-5 {
    -ms-grid-row: 5;
        grid-row-start: 5;
  }
  .md\:row-end-5 {
    -ms-grid-row-span: 5;
    grid-row-end: 5;
  }
  .md\:row-span-5 {
    -ms-grid-row-span: 5;
    grid-row: span 5/span 5;
  }
  .md\:col-start-6 {
    -ms-grid-column: 6;
        grid-column-start: 6;
  }
  .md\:col-end-6 {
    -ms-grid-column-span: 6;
    grid-column-end: 6;
  }
  .md\:col-span-6 {
    -ms-grid-column-span: 6;
    grid-column: span 6/span 6;
  }
  .md\:col-span-full {
    grid-column: 1/-1;
  }
  .md\:row-start-6 {
    -ms-grid-row: 6;
        grid-row-start: 6;
  }
  .md\:row-end-6 {
    -ms-grid-row-span: 6;
    grid-row-end: 6;
  }
  .md\:row-span-6 {
    -ms-grid-row-span: 6;
    grid-row: span 6/span 6;
  }
}
@media (min-width: 1200px) {
  .lg\:col-start-1 {
    -ms-grid-column: 1;
        grid-column-start: 1;
  }
  .lg\:col-end-1 {
    -ms-grid-column-span: 1;
    grid-column-end: 1;
  }
  .lg\:col-span-1 {
    -ms-grid-column-span: 1;
    grid-column: span 1/span 1;
  }
  .lg\:col-span-full {
    grid-column: 1/-1;
  }
  .lg\:row-start-1 {
    -ms-grid-row: 1;
        grid-row-start: 1;
  }
  .lg\:row-end-1 {
    -ms-grid-row-span: 1;
    grid-row-end: 1;
  }
  .lg\:row-span-1 {
    -ms-grid-row-span: 1;
    grid-row: span 1/span 1;
  }
  .lg\:col-start-2 {
    -ms-grid-column: 2;
        grid-column-start: 2;
  }
  .lg\:col-end-2 {
    -ms-grid-column-span: 2;
    grid-column-end: 2;
  }
  .lg\:col-span-2 {
    -ms-grid-column-span: 2;
    grid-column: span 2/span 2;
  }
  .lg\:col-span-full {
    grid-column: 1/-1;
  }
  .lg\:row-start-2 {
    -ms-grid-row: 2;
        grid-row-start: 2;
  }
  .lg\:row-end-2 {
    -ms-grid-row-span: 2;
    grid-row-end: 2;
  }
  .lg\:row-span-2 {
    -ms-grid-row-span: 2;
    grid-row: span 2/span 2;
  }
  .lg\:col-start-3 {
    -ms-grid-column: 3;
        grid-column-start: 3;
  }
  .lg\:col-end-3 {
    -ms-grid-column-span: 3;
    grid-column-end: 3;
  }
  .lg\:col-span-3 {
    -ms-grid-column-span: 3;
    grid-column: span 3/span 3;
  }
  .lg\:col-span-full {
    grid-column: 1/-1;
  }
  .lg\:row-start-3 {
    -ms-grid-row: 3;
        grid-row-start: 3;
  }
  .lg\:row-end-3 {
    -ms-grid-row-span: 3;
    grid-row-end: 3;
  }
  .lg\:row-span-3 {
    -ms-grid-row-span: 3;
    grid-row: span 3/span 3;
  }
  .lg\:col-start-4 {
    -ms-grid-column: 4;
        grid-column-start: 4;
  }
  .lg\:col-end-4 {
    -ms-grid-column-span: 4;
    grid-column-end: 4;
  }
  .lg\:col-span-4 {
    -ms-grid-column-span: 4;
    grid-column: span 4/span 4;
  }
  .lg\:col-span-full {
    grid-column: 1/-1;
  }
  .lg\:row-start-4 {
    -ms-grid-row: 4;
        grid-row-start: 4;
  }
  .lg\:row-end-4 {
    -ms-grid-row-span: 4;
    grid-row-end: 4;
  }
  .lg\:row-span-4 {
    -ms-grid-row-span: 4;
    grid-row: span 4/span 4;
  }
  .lg\:col-start-5 {
    -ms-grid-column: 5;
        grid-column-start: 5;
  }
  .lg\:col-end-5 {
    -ms-grid-column-span: 5;
    grid-column-end: 5;
  }
  .lg\:col-span-5 {
    -ms-grid-column-span: 5;
    grid-column: span 5/span 5;
  }
  .lg\:col-span-full {
    grid-column: 1/-1;
  }
  .lg\:row-start-5 {
    -ms-grid-row: 5;
        grid-row-start: 5;
  }
  .lg\:row-end-5 {
    -ms-grid-row-span: 5;
    grid-row-end: 5;
  }
  .lg\:row-span-5 {
    -ms-grid-row-span: 5;
    grid-row: span 5/span 5;
  }
  .lg\:col-start-6 {
    -ms-grid-column: 6;
        grid-column-start: 6;
  }
  .lg\:col-end-6 {
    -ms-grid-column-span: 6;
    grid-column-end: 6;
  }
  .lg\:col-span-6 {
    -ms-grid-column-span: 6;
    grid-column: span 6/span 6;
  }
  .lg\:col-span-full {
    grid-column: 1/-1;
  }
  .lg\:row-start-6 {
    -ms-grid-row: 6;
        grid-row-start: 6;
  }
  .lg\:row-end-6 {
    -ms-grid-row-span: 6;
    grid-row-end: 6;
  }
  .lg\:row-span-6 {
    -ms-grid-row-span: 6;
    grid-row: span 6/span 6;
  }
}
@media (min-width: 1400px) {
  .xl\:col-start-1 {
    -ms-grid-column: 1;
        grid-column-start: 1;
  }
  .xl\:col-end-1 {
    -ms-grid-column-span: 1;
    grid-column-end: 1;
  }
  .xl\:col-span-1 {
    -ms-grid-column-span: 1;
    grid-column: span 1/span 1;
  }
  .xl\:col-span-full {
    grid-column: 1/-1;
  }
  .xl\:row-start-1 {
    -ms-grid-row: 1;
        grid-row-start: 1;
  }
  .xl\:row-end-1 {
    -ms-grid-row-span: 1;
    grid-row-end: 1;
  }
  .xl\:row-span-1 {
    -ms-grid-row-span: 1;
    grid-row: span 1/span 1;
  }
  .xl\:col-start-2 {
    -ms-grid-column: 2;
        grid-column-start: 2;
  }
  .xl\:col-end-2 {
    -ms-grid-column-span: 2;
    grid-column-end: 2;
  }
  .xl\:col-span-2 {
    -ms-grid-column-span: 2;
    grid-column: span 2/span 2;
  }
  .xl\:col-span-full {
    grid-column: 1/-1;
  }
  .xl\:row-start-2 {
    -ms-grid-row: 2;
        grid-row-start: 2;
  }
  .xl\:row-end-2 {
    -ms-grid-row-span: 2;
    grid-row-end: 2;
  }
  .xl\:row-span-2 {
    -ms-grid-row-span: 2;
    grid-row: span 2/span 2;
  }
  .xl\:col-start-3 {
    -ms-grid-column: 3;
        grid-column-start: 3;
  }
  .xl\:col-end-3 {
    -ms-grid-column-span: 3;
    grid-column-end: 3;
  }
  .xl\:col-span-3 {
    -ms-grid-column-span: 3;
    grid-column: span 3/span 3;
  }
  .xl\:col-span-full {
    grid-column: 1/-1;
  }
  .xl\:row-start-3 {
    -ms-grid-row: 3;
        grid-row-start: 3;
  }
  .xl\:row-end-3 {
    -ms-grid-row-span: 3;
    grid-row-end: 3;
  }
  .xl\:row-span-3 {
    -ms-grid-row-span: 3;
    grid-row: span 3/span 3;
  }
  .xl\:col-start-4 {
    -ms-grid-column: 4;
        grid-column-start: 4;
  }
  .xl\:col-end-4 {
    -ms-grid-column-span: 4;
    grid-column-end: 4;
  }
  .xl\:col-span-4 {
    -ms-grid-column-span: 4;
    grid-column: span 4/span 4;
  }
  .xl\:col-span-full {
    grid-column: 1/-1;
  }
  .xl\:row-start-4 {
    -ms-grid-row: 4;
        grid-row-start: 4;
  }
  .xl\:row-end-4 {
    -ms-grid-row-span: 4;
    grid-row-end: 4;
  }
  .xl\:row-span-4 {
    -ms-grid-row-span: 4;
    grid-row: span 4/span 4;
  }
  .xl\:col-start-5 {
    -ms-grid-column: 5;
        grid-column-start: 5;
  }
  .xl\:col-end-5 {
    -ms-grid-column-span: 5;
    grid-column-end: 5;
  }
  .xl\:col-span-5 {
    -ms-grid-column-span: 5;
    grid-column: span 5/span 5;
  }
  .xl\:col-span-full {
    grid-column: 1/-1;
  }
  .xl\:row-start-5 {
    -ms-grid-row: 5;
        grid-row-start: 5;
  }
  .xl\:row-end-5 {
    -ms-grid-row-span: 5;
    grid-row-end: 5;
  }
  .xl\:row-span-5 {
    -ms-grid-row-span: 5;
    grid-row: span 5/span 5;
  }
  .xl\:col-start-6 {
    -ms-grid-column: 6;
        grid-column-start: 6;
  }
  .xl\:col-end-6 {
    -ms-grid-column-span: 6;
    grid-column-end: 6;
  }
  .xl\:col-span-6 {
    -ms-grid-column-span: 6;
    grid-column: span 6/span 6;
  }
  .xl\:col-span-full {
    grid-column: 1/-1;
  }
  .xl\:row-start-6 {
    -ms-grid-row: 6;
        grid-row-start: 6;
  }
  .xl\:row-end-6 {
    -ms-grid-row-span: 6;
    grid-row-end: 6;
  }
  .xl\: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(30px, 1fr) minmax(auto, 576px) minmax(30px, 1fr);
    grid-template-columns: minmax(30px, 1fr) minmax(auto, 576px) minmax(30px, 1fr);
  }
}
@media (min-width: 992px) {
  .layout-maxed {
    -ms-grid-columns: minmax(30px, 1fr) minmax(auto, 992px) minmax(30px, 1fr);
    grid-template-columns: minmax(30px, 1fr) minmax(auto, 992px) minmax(30px, 1fr);
  }
}
@media (min-width: 1200px) {
  .layout-maxed {
    -ms-grid-columns: minmax(40px, 1fr) minmax(auto, 1200px) minmax(40px, 1fr);
    grid-template-columns: minmax(40px, 1fr) minmax(auto, 1200px) minmax(40px, 1fr);
  }
}
@media (min-width: 1400px) {
  .layout-maxed {
    -ms-grid-columns: minmax(50px, 1fr) minmax(auto, 1400px) minmax(50px, 1fr);
    grid-template-columns: minmax(50px, 1fr) minmax(auto, 1400px) minmax(50px, 1fr);
  }
}
@media (max-width: 1200px) {
  .layout-maxed.mobile-disable {
    display: block;
  }
}

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

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

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

.layout-maxed-4col {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(30px, 1fr) minmax(auto, 288px) minmax(auto, 288px) minmax(30px, 1fr);
  grid-template-columns: minmax(30px, 1fr) minmax(auto, 288px) minmax(auto, 288px) minmax(30px, 1fr);
}
@media (min-width: 576px) {
  .layout-maxed-4col {
    -ms-grid-columns: minmax(30px, 1fr) minmax(auto, 288px) minmax(auto, 288px) minmax(30px, 1fr);
    grid-template-columns: minmax(30px, 1fr) minmax(auto, 288px) minmax(auto, 288px) minmax(30px, 1fr);
  }
}
@media (min-width: 992px) {
  .layout-maxed-4col {
    -ms-grid-columns: minmax(30px, 1fr) minmax(auto, 496px) minmax(auto, 496px) minmax(30px, 1fr);
    grid-template-columns: minmax(30px, 1fr) minmax(auto, 496px) minmax(auto, 496px) minmax(30px, 1fr);
  }
}
@media (min-width: 1200px) {
  .layout-maxed-4col {
    -ms-grid-columns: minmax(40px, 1fr) minmax(auto, 600px) minmax(auto, 600px) minmax(40px, 1fr);
    grid-template-columns: minmax(40px, 1fr) minmax(auto, 600px) minmax(auto, 600px) minmax(40px, 1fr);
  }
}
@media (min-width: 1400px) {
  .layout-maxed-4col {
    -ms-grid-columns: minmax(50px, 1fr) minmax(auto, 700px) minmax(auto, 700px) minmax(50px, 1fr);
    grid-template-columns: minmax(50px, 1fr) minmax(auto, 700px) minmax(auto, 700px) minmax(50px, 1fr);
  }
}
.layout-maxed-4col > * {
  -ms-grid-column: 2;
  -ms-grid-column-span: 2;
  grid-column: 2/4;
}
.layout-maxed-4col .expand-right {
  -ms-grid-column: 3;
  -ms-grid-column-span: 2;
  grid-column: 3/5;
}
@media screen and (max-width: 992px) {
  .layout-maxed-4col .expand-right {
    -ms-grid-column: 2;
    -ms-grid-column-span: 2;
    grid-column: 2/4;
  }
}
.layout-maxed-4col *:has(+ .expand-right):not(.expand-left) {
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2/3;
}
.layout-maxed-4col .expand-left {
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1/3;
}
.layout-maxed-4col .expand-left + *:not(.expand-right) {
  -ms-grid-column: 3;
  grid-column: 3/3;
}
@media screen and (max-width: 992px) {
  .layout-maxed-4col .expand-left {
    -ms-grid-column: 2;
    -ms-grid-column-span: 2;
    grid-column: 2/4;
  }
}
@media screen and (max-width: 992px) {
  .layout-maxed-4col *:has(+ .expand-right):not(.expand-left),
  .layout-maxed-4col .expand-left + *:not(.expand-right) {
    -ms-grid-column: 2;
    -ms-grid-column-span: 2;
    grid-column: 2/4;
  }
}

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

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

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

@media (max-width: 576px) {
  .max-sm-layout-padded {
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media (max-width: 992px) {
  .max-md-layout-padded {
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (max-width: 992px) and (min-width: 576px) {
  .max-md-layout-padded {
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media (max-width: 1200px) {
  .max-lg-layout-padded {
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (max-width: 1200px) and (min-width: 576px) {
  .max-lg-layout-padded {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (max-width: 1200px) and (min-width: 992px) {
  .max-lg-layout-padded {
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media (max-width: 1400px) {
  .max-xl-layout-padded {
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (max-width: 1400px) and (min-width: 576px) {
  .max-xl-layout-padded {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (max-width: 1400px) and (min-width: 992px) {
  .max-xl-layout-padded {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (max-width: 1400px) and (min-width: 1200px) {
  .max-xl-layout-padded {
    padding-left: 40px;
    padding-right: 40px;
  }
}

.layout-padded {
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 30px;
  padding-right: 30px;
}
@media (min-width: 576px) {
  .layout-padded {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (min-width: 992px) {
  .layout-padded {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (min-width: 1200px) {
  .layout-padded {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (min-width: 1400px) {
  .layout-padded {
    padding-left: 50px;
    padding-right: 50px;
  }
}

.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: 992px) {
  .md\:hidden {
    display: none;
  }
}
@media (min-width: 1200px) {
  .lg\:hidden {
    display: none;
  }
}
@media (min-width: 1400px) {
  .xl\:hidden {
    display: none;
  }
}
@media (min-width: 576px) {
  .sm\:block {
    display: block;
  }
}
@media (min-width: 992px) {
  .md\:block {
    display: block;
  }
}
@media (min-width: 1200px) {
  .lg\:block {
    display: block;
  }
}
@media (min-width: 1400px) {
  .xl\:block {
    display: block;
  }
}
@media (min-width: 576px) {
  .sm\:inline {
    display: inline;
  }
}
@media (min-width: 992px) {
  .md\:inline {
    display: inline;
  }
}
@media (min-width: 1200px) {
  .lg\:inline {
    display: inline;
  }
}
@media (min-width: 1400px) {
  .xl\:inline {
    display: inline;
  }
}
@media (min-width: 576px) {
  .sm\:inline-block {
    display: inline-block;
  }
}
@media (min-width: 992px) {
  .md\:inline-block {
    display: inline-block;
  }
}
@media (min-width: 1200px) {
  .lg\:inline-block {
    display: inline-block;
  }
}
@media (min-width: 1400px) {
  .xl\:inline-block {
    display: inline-block;
  }
}
@media (min-width: 576px) {
  .sm\:flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (min-width: 992px) {
  .md\:flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (min-width: 1200px) {
  .lg\:flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (min-width: 1400px) {
  .xl\: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: 992px) {
  .md\:flex-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media (min-width: 1200px) {
  .lg\:flex-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media (min-width: 1400px) {
  .xl\: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: 992px) {
  .md\:flex-row-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
@media (min-width: 1200px) {
  .lg\:flex-row-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
@media (min-width: 1400px) {
  .xl\: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: 992px) {
  .md\:flex-col {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (min-width: 1200px) {
  .lg\:flex-col {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (min-width: 1400px) {
  .xl\: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: 992px) {
  .md\:flex-col-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
@media (min-width: 1200px) {
  .lg\:flex-col-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
@media (min-width: 1400px) {
  .xl\: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: 992px) {
  .md\:flex-wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media (min-width: 1200px) {
  .lg\:flex-wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media (min-width: 1400px) {
  .xl\: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: 992px) {
  .md\:flex-no-wrap {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}
@media (min-width: 1200px) {
  .lg\:flex-no-wrap {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}
@media (min-width: 1400px) {
  .xl\: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: 992px) {
  .md\:flex-shrink {
    -ms-flex-negative: 1;
        flex-shrink: 1;
  }
}
@media (min-width: 1200px) {
  .lg\:flex-shrink {
    -ms-flex-negative: 1;
        flex-shrink: 1;
  }
}
@media (min-width: 1400px) {
  .xl\: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: 992px) {
  .md\:flex-no-shrink {
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
@media (min-width: 1200px) {
  .lg\:flex-no-shrink {
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
@media (min-width: 1400px) {
  .xl\: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: 992px) {
  .md\:flex-grow {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}
@media (min-width: 1200px) {
  .lg\:flex-grow {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}
@media (min-width: 1400px) {
  .xl\: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: 992px) {
  .md\:flex-no-grow {
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
  }
}
@media (min-width: 1200px) {
  .lg\:flex-no-grow {
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
  }
}
@media (min-width: 1400px) {
  .xl\: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: 992px) {
  .md\:float-left {
    float: left;
  }
}
@media (min-width: 1200px) {
  .lg\:float-left {
    float: left;
  }
}
@media (min-width: 1400px) {
  .xl\:float-left {
    float: left;
  }
}
@media (min-width: 576px) {
  .sm\:float-right {
    float: right;
  }
}
@media (min-width: 992px) {
  .md\:float-right {
    float: right;
  }
}
@media (min-width: 1200px) {
  .lg\:float-right {
    float: right;
  }
}
@media (min-width: 1400px) {
  .xl\:float-right {
    float: right;
  }
}
@media (min-width: 576px) {
  .sm\:float-none {
    float: none;
  }
}
@media (min-width: 992px) {
  .md\:float-none {
    float: none;
  }
}
@media (min-width: 1200px) {
  .lg\:float-none {
    float: none;
  }
}
@media (min-width: 1400px) {
  .xl\:float-none {
    float: none;
  }
}
@media (min-width: 576px) {
  .sm\:text-bold {
    font-weight: bold;
  }
}
@media (min-width: 992px) {
  .md\:text-bold {
    font-weight: bold;
  }
}
@media (min-width: 1200px) {
  .lg\:text-bold {
    font-weight: bold;
  }
}
@media (min-width: 1400px) {
  .xl\:text-bold {
    font-weight: bold;
  }
}
@media (min-width: 576px) {
  .sm\:text-italic {
    font-style: italic;
  }
}
@media (min-width: 992px) {
  .md\:text-italic {
    font-style: italic;
  }
}
@media (min-width: 1200px) {
  .lg\:text-italic {
    font-style: italic;
  }
}
@media (min-width: 1400px) {
  .xl\:text-italic {
    font-style: italic;
  }
}
@media (min-width: 576px) {
  .sm\:text-uppercase {
    text-transform: uppercase;
  }
}
@media (min-width: 992px) {
  .md\:text-uppercase {
    text-transform: uppercase;
  }
}
@media (min-width: 1200px) {
  .lg\:text-uppercase {
    text-transform: uppercase;
  }
}
@media (min-width: 1400px) {
  .xl\:text-uppercase {
    text-transform: uppercase;
  }
}
@media (min-width: 576px) {
  .sm\:text-lowercase {
    text-transform: lowercase;
  }
}
@media (min-width: 992px) {
  .md\:text-lowercase {
    text-transform: lowercase;
  }
}
@media (min-width: 1200px) {
  .lg\:text-lowercase {
    text-transform: lowercase;
  }
}
@media (min-width: 1400px) {
  .xl\:text-lowercase {
    text-transform: lowercase;
  }
}
@media (min-width: 576px) {
  .sm\:text-smaller {
    font-size: smaller;
  }
}
@media (min-width: 992px) {
  .md\:text-smaller {
    font-size: smaller;
  }
}
@media (min-width: 1200px) {
  .lg\:text-smaller {
    font-size: smaller;
  }
}
@media (min-width: 1400px) {
  .xl\:text-smaller {
    font-size: smaller;
  }
}
@media (min-width: 576px) {
  .sm\:text-larger {
    font-size: larger;
  }
}
@media (min-width: 992px) {
  .md\:text-larger {
    font-size: larger;
  }
}
@media (min-width: 1200px) {
  .lg\:text-larger {
    font-size: larger;
  }
}
@media (min-width: 1400px) {
  .xl\:text-larger {
    font-size: larger;
  }
}
@media (min-width: 576px) {
  .sm\:text-left {
    text-align: left;
  }
}
@media (min-width: 992px) {
  .md\:text-left {
    text-align: left;
  }
}
@media (min-width: 1200px) {
  .lg\:text-left {
    text-align: left;
  }
}
@media (min-width: 1400px) {
  .xl\:text-left {
    text-align: left;
  }
}
@media (min-width: 576px) {
  .sm\:text-center {
    text-align: center;
  }
}
@media (min-width: 992px) {
  .md\:text-center {
    text-align: center;
  }
}
@media (min-width: 1200px) {
  .lg\:text-center {
    text-align: center;
  }
}
@media (min-width: 1400px) {
  .xl\:text-center {
    text-align: center;
  }
}
@media (min-width: 576px) {
  .sm\:text-right {
    text-align: right;
  }
}
@media (min-width: 992px) {
  .md\:text-right {
    text-align: right;
  }
}
@media (min-width: 1200px) {
  .lg\:text-right {
    text-align: right;
  }
}
@media (min-width: 1400px) {
  .xl\:text-right {
    text-align: right;
  }
}
@media (min-width: 576px) {
  .sm\:text-justify {
    text-align: justify;
  }
}
@media (min-width: 992px) {
  .md\:text-justify {
    text-align: justify;
  }
}
@media (min-width: 1200px) {
  .lg\:text-justify {
    text-align: justify;
  }
}
@media (min-width: 1400px) {
  .xl\:text-justify {
    text-align: justify;
  }
}
@media (min-width: 576px) {
  .sm\:text-wrap {
    overflow-wrap: break-word;
  }
}
@media (min-width: 992px) {
  .md\:text-wrap {
    overflow-wrap: break-word;
  }
}
@media (min-width: 1200px) {
  .lg\:text-wrap {
    overflow-wrap: break-word;
  }
}
@media (min-width: 1400px) {
  .xl\: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: 992px) {
  .md\:justify-start {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
@media (min-width: 1200px) {
  .lg\:justify-start {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
@media (min-width: 1400px) {
  .xl\: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: 992px) {
  .md\:justify-end {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
@media (min-width: 1200px) {
  .lg\:justify-end {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
@media (min-width: 1400px) {
  .xl\: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: 992px) {
  .md\:justify-center {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (min-width: 1200px) {
  .lg\:justify-center {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (min-width: 1400px) {
  .xl\: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: 992px) {
  .md\:justify-between {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media (min-width: 1200px) {
  .lg\:justify-between {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media (min-width: 1400px) {
  .xl\: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: 992px) {
  .md\:justify-around {
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
}
@media (min-width: 1200px) {
  .lg\:justify-around {
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
}
@media (min-width: 1400px) {
  .xl\: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: 992px) {
  .md\:justify-evenly {
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
  }
}
@media (min-width: 1200px) {
  .lg\:justify-evenly {
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
  }
}
@media (min-width: 1400px) {
  .xl\: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: 992px) {
  .md\:justify-items-start {
    justify-items: start;
  }
}
@media (min-width: 1200px) {
  .lg\:justify-items-start {
    justify-items: start;
  }
}
@media (min-width: 1400px) {
  .xl\:justify-items-start {
    justify-items: start;
  }
}
@media (min-width: 576px) {
  .sm\:justify-items-end {
    justify-items: end;
  }
}
@media (min-width: 992px) {
  .md\:justify-items-end {
    justify-items: end;
  }
}
@media (min-width: 1200px) {
  .lg\:justify-items-end {
    justify-items: end;
  }
}
@media (min-width: 1400px) {
  .xl\:justify-items-end {
    justify-items: end;
  }
}
@media (min-width: 576px) {
  .sm\:justify-items-center {
    justify-items: center;
  }
}
@media (min-width: 992px) {
  .md\:justify-items-center {
    justify-items: center;
  }
}
@media (min-width: 1200px) {
  .lg\:justify-items-center {
    justify-items: center;
  }
}
@media (min-width: 1400px) {
  .xl\:justify-items-center {
    justify-items: center;
  }
}
@media (min-width: 576px) {
  .sm\:align-start {
    -ms-flex-line-pack: start;
        align-content: start;
  }
}
@media (min-width: 992px) {
  .md\:align-start {
    -ms-flex-line-pack: start;
        align-content: start;
  }
}
@media (min-width: 1200px) {
  .lg\:align-start {
    -ms-flex-line-pack: start;
        align-content: start;
  }
}
@media (min-width: 1400px) {
  .xl\: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: 992px) {
  .md\:align-end {
    -ms-flex-line-pack: end;
        align-content: end;
  }
}
@media (min-width: 1200px) {
  .lg\:align-end {
    -ms-flex-line-pack: end;
        align-content: end;
  }
}
@media (min-width: 1400px) {
  .xl\: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: 992px) {
  .md\:align-center {
    -ms-flex-line-pack: center;
        align-content: center;
  }
}
@media (min-width: 1200px) {
  .lg\:align-center {
    -ms-flex-line-pack: center;
        align-content: center;
  }
}
@media (min-width: 1400px) {
  .xl\: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: 992px) {
  .md\:align-between {
    -ms-flex-line-pack: justify;
        align-content: space-between;
  }
}
@media (min-width: 1200px) {
  .lg\:align-between {
    -ms-flex-line-pack: justify;
        align-content: space-between;
  }
}
@media (min-width: 1400px) {
  .xl\: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: 992px) {
  .md\:align-around {
    -ms-flex-line-pack: distribute;
        align-content: space-around;
  }
}
@media (min-width: 1200px) {
  .lg\:align-around {
    -ms-flex-line-pack: distribute;
        align-content: space-around;
  }
}
@media (min-width: 1400px) {
  .xl\: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: 992px) {
  .md\:align-evenly {
    -ms-flex-line-pack: space-evenly;
        align-content: space-evenly;
  }
}
@media (min-width: 1200px) {
  .lg\:align-evenly {
    -ms-flex-line-pack: space-evenly;
        align-content: space-evenly;
  }
}
@media (min-width: 1400px) {
  .xl\: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: 992px) {
  .md\:align-items-start {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media (min-width: 1200px) {
  .lg\:align-items-start {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media (min-width: 1400px) {
  .xl\: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: 992px) {
  .md\:align-items-end {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}
@media (min-width: 1200px) {
  .lg\:align-items-end {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}
@media (min-width: 1400px) {
  .xl\: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: 992px) {
  .md\:align-items-center {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media (min-width: 1200px) {
  .lg\:align-items-center {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media (min-width: 1400px) {
  .xl\: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: 992px) {
  .md\:place-center {
    place-content: center;
  }
}
@media (min-width: 1200px) {
  .lg\:place-center {
    place-content: center;
  }
}
@media (min-width: 1400px) {
  .xl\:place-center {
    place-content: center;
  }
}
@media (min-width: 576px) {
  .sm\:justify-self-auto {
    -ms-grid-column-align: auto;
        justify-self: auto;
  }
}
@media (min-width: 992px) {
  .md\:justify-self-auto {
    -ms-grid-column-align: auto;
        justify-self: auto;
  }
}
@media (min-width: 1200px) {
  .lg\:justify-self-auto {
    -ms-grid-column-align: auto;
        justify-self: auto;
  }
}
@media (min-width: 1400px) {
  .xl\: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: 992px) {
  .md\:justify-self-start {
    -ms-grid-column-align: start;
        justify-self: start;
  }
}
@media (min-width: 1200px) {
  .lg\:justify-self-start {
    -ms-grid-column-align: start;
        justify-self: start;
  }
}
@media (min-width: 1400px) {
  .xl\: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: 992px) {
  .md\:justify-self-end {
    -ms-grid-column-align: end;
        justify-self: end;
  }
}
@media (min-width: 1200px) {
  .lg\:justify-self-end {
    -ms-grid-column-align: end;
        justify-self: end;
  }
}
@media (min-width: 1400px) {
  .xl\: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: 992px) {
  .md\:justify-self-center {
    -ms-grid-column-align: center;
        justify-self: center;
  }
}
@media (min-width: 1200px) {
  .lg\:justify-self-center {
    -ms-grid-column-align: center;
        justify-self: center;
  }
}
@media (min-width: 1400px) {
  .xl\: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: 992px) {
  .md\:justify-self-stretch {
    -ms-grid-column-align: stretch;
        justify-self: stretch;
  }
}
@media (min-width: 1200px) {
  .lg\:justify-self-stretch {
    -ms-grid-column-align: stretch;
        justify-self: stretch;
  }
}
@media (min-width: 1400px) {
  .xl\: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: 992px) {
  .md\:align-self-auto {
    -ms-flex-item-align: auto;
        -ms-grid-row-align: auto;
        align-self: auto;
  }
}
@media (min-width: 1200px) {
  .lg\:align-self-auto {
    -ms-flex-item-align: auto;
        -ms-grid-row-align: auto;
        align-self: auto;
  }
}
@media (min-width: 1400px) {
  .xl\: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: 992px) {
  .md\:align-self-start {
    -ms-flex-item-align: start;
        align-self: flex-start;
  }
}
@media (min-width: 1200px) {
  .lg\:align-self-start {
    -ms-flex-item-align: start;
        align-self: flex-start;
  }
}
@media (min-width: 1400px) {
  .xl\: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: 992px) {
  .md\:align-self-end {
    -ms-flex-item-align: end;
        align-self: flex-end;
  }
}
@media (min-width: 1200px) {
  .lg\:align-self-end {
    -ms-flex-item-align: end;
        align-self: flex-end;
  }
}
@media (min-width: 1400px) {
  .xl\: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: 992px) {
  .md\:align-self-center {
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
  }
}
@media (min-width: 1200px) {
  .lg\:align-self-center {
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
  }
}
@media (min-width: 1400px) {
  .xl\: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: 992px) {
  .md\:align-self-stretch {
    -ms-flex-item-align: stretch;
        -ms-grid-row-align: stretch;
        align-self: stretch;
  }
}
@media (min-width: 1200px) {
  .lg\:align-self-stretch {
    -ms-flex-item-align: stretch;
        -ms-grid-row-align: stretch;
        align-self: stretch;
  }
}
@media (min-width: 1400px) {
  .xl\: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: 992px) {
  .md\:align-top {
    vertical-align: top;
  }
}
@media (min-width: 1200px) {
  .lg\:align-top {
    vertical-align: top;
  }
}
@media (min-width: 1400px) {
  .xl\:align-top {
    vertical-align: top;
  }
}
@media (min-width: 576px) {
  .sm\:align-bottom {
    vertical-align: bottom;
  }
}
@media (min-width: 992px) {
  .md\:align-bottom {
    vertical-align: bottom;
  }
}
@media (min-width: 1200px) {
  .lg\:align-bottom {
    vertical-align: bottom;
  }
}
@media (min-width: 1400px) {
  .xl\:align-bottom {
    vertical-align: bottom;
  }
}
@media (min-width: 576px) {
  .sm\:align-middle {
    vertical-align: middle;
  }
}
@media (min-width: 992px) {
  .md\:align-middle {
    vertical-align: middle;
  }
}
@media (min-width: 1200px) {
  .lg\:align-middle {
    vertical-align: middle;
  }
}
@media (min-width: 1400px) {
  .xl\: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: 992px) {
  .md\:item-first {
    -webkit-box-ordinal-group: -99;
        -ms-flex-order: -100;
            order: -100;
  }
}
@media (min-width: 1200px) {
  .lg\:item-first {
    -webkit-box-ordinal-group: -99;
        -ms-flex-order: -100;
            order: -100;
  }
}
@media (min-width: 1400px) {
  .xl\: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: 992px) {
  .md\:item-last {
    -webkit-box-ordinal-group: 101;
        -ms-flex-order: 100;
            order: 100;
  }
}
@media (min-width: 1200px) {
  .lg\:item-last {
    -webkit-box-ordinal-group: 101;
        -ms-flex-order: 100;
            order: 100;
  }
}
@media (min-width: 1400px) {
  .xl\: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: 992px) {
  .md\:visually-hidden {
    position: absolute !important;
    border: 0 !important;
    height: 1px !important;
    width: 1px !important;
    padding: 0 !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
  }
  .md\:is-unstyled {
    list-style: none;
    padding-left: 0;
  }
  .md\:is-disabled {
    opacity: 0.6;
    cursor: not-allowed !important;
    -webkit-filter: grayscale(1);
            filter: grayscale(1);
  }
  .md\:text-normal {
    font-weight: normal;
    font-style: normal;
    text-transform: none;
  }
}
@media (min-width: 1200px) {
  .lg\:visually-hidden {
    position: absolute !important;
    border: 0 !important;
    height: 1px !important;
    width: 1px !important;
    padding: 0 !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
  }
  .lg\:is-unstyled {
    list-style: none;
    padding-left: 0;
  }
  .lg\:is-disabled {
    opacity: 0.6;
    cursor: not-allowed !important;
    -webkit-filter: grayscale(1);
            filter: grayscale(1);
  }
  .lg\:text-normal {
    font-weight: normal;
    font-style: normal;
    text-transform: none;
  }
}
@media (min-width: 1400px) {
  .xl\: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;
  }
  .xl\:is-unstyled {
    list-style: none;
    padding-left: 0;
  }
  .xl\:is-disabled {
    opacity: 0.6;
    cursor: not-allowed !important;
    -webkit-filter: grayscale(1);
            filter: grayscale(1);
  }
  .xl\: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: 992px) {
  .md\:text-10 {
    font-size: 0.625rem;
  }
}
@media (min-width: 1200px) {
  .lg\:text-10 {
    font-size: 0.625rem;
  }
}
@media (min-width: 1400px) {
  .xl\:text-10 {
    font-size: 0.625rem;
  }
}
@media (min-width: 576px) {
  .sm\:text-11 {
    font-size: 0.6875rem;
  }
}
@media (min-width: 992px) {
  .md\:text-11 {
    font-size: 0.6875rem;
  }
}
@media (min-width: 1200px) {
  .lg\:text-11 {
    font-size: 0.6875rem;
  }
}
@media (min-width: 1400px) {
  .xl\:text-11 {
    font-size: 0.6875rem;
  }
}
@media (min-width: 576px) {
  .sm\:text-12 {
    font-size: 0.75rem;
  }
}
@media (min-width: 992px) {
  .md\:text-12 {
    font-size: 0.75rem;
  }
}
@media (min-width: 1200px) {
  .lg\:text-12 {
    font-size: 0.75rem;
  }
}
@media (min-width: 1400px) {
  .xl\:text-12 {
    font-size: 0.75rem;
  }
}
@media (min-width: 576px) {
  .sm\:text-14 {
    font-size: 0.875rem;
  }
}
@media (min-width: 992px) {
  .md\:text-14 {
    font-size: 0.875rem;
  }
}
@media (min-width: 1200px) {
  .lg\:text-14 {
    font-size: 0.875rem;
  }
}
@media (min-width: 1400px) {
  .xl\:text-14 {
    font-size: 0.875rem;
  }
}
@media (min-width: 576px) {
  .sm\:text-16 {
    font-size: 1rem;
  }
}
@media (min-width: 992px) {
  .md\:text-16 {
    font-size: 1rem;
  }
}
@media (min-width: 1200px) {
  .lg\:text-16 {
    font-size: 1rem;
  }
}
@media (min-width: 1400px) {
  .xl\:text-16 {
    font-size: 1rem;
  }
}
@media (min-width: 576px) {
  .sm\:text-18 {
    font-size: 1.125rem;
  }
}
@media (min-width: 992px) {
  .md\:text-18 {
    font-size: 1.125rem;
  }
}
@media (min-width: 1200px) {
  .lg\:text-18 {
    font-size: 1.125rem;
  }
}
@media (min-width: 1400px) {
  .xl\:text-18 {
    font-size: 1.125rem;
  }
}
@media (min-width: 576px) {
  .sm\:text-20 {
    font-size: 1.25rem;
  }
}
@media (min-width: 992px) {
  .md\:text-20 {
    font-size: 1.25rem;
  }
}
@media (min-width: 1200px) {
  .lg\:text-20 {
    font-size: 1.25rem;
  }
}
@media (min-width: 1400px) {
  .xl\:text-20 {
    font-size: 1.25rem;
  }
}
@media (min-width: 576px) {
  .sm\:text-24 {
    font-size: 1.5rem;
  }
}
@media (min-width: 992px) {
  .md\:text-24 {
    font-size: 1.5rem;
  }
}
@media (min-width: 1200px) {
  .lg\:text-24 {
    font-size: 1.5rem;
  }
}
@media (min-width: 1400px) {
  .xl\:text-24 {
    font-size: 1.5rem;
  }
}
@media (min-width: 576px) {
  .sm\:text-30 {
    font-size: 1.875rem;
  }
}
@media (min-width: 992px) {
  .md\:text-30 {
    font-size: 1.875rem;
  }
}
@media (min-width: 1200px) {
  .lg\:text-30 {
    font-size: 1.875rem;
  }
}
@media (min-width: 1400px) {
  .xl\:text-30 {
    font-size: 1.875rem;
  }
}
@media (min-width: 576px) {
  .sm\:text-36 {
    font-size: 2.25rem;
  }
}
@media (min-width: 992px) {
  .md\:text-36 {
    font-size: 2.25rem;
  }
}
@media (min-width: 1200px) {
  .lg\:text-36 {
    font-size: 2.25rem;
  }
}
@media (min-width: 1400px) {
  .xl\:text-36 {
    font-size: 2.25rem;
  }
}
@media (min-width: 576px) {
  .sm\:text-base {
    font-size: 1rem;
  }
}
@media (min-width: 992px) {
  .md\:text-base {
    font-size: 1rem;
  }
}
@media (min-width: 1200px) {
  .lg\:text-base {
    font-size: 1rem;
  }
}
@media (min-width: 1400px) {
  .xl\:text-base {
    font-size: 1rem;
  }
}
@media (min-width: 576px) {
  .sm\:text-inherit {
    font-size: inherit;
  }
}
@media (min-width: 992px) {
  .md\:text-inherit {
    font-size: inherit;
  }
}
@media (min-width: 1200px) {
  .lg\:text-inherit {
    font-size: inherit;
  }
}
@media (min-width: 1400px) {
  .xl\:text-inherit {
    font-size: inherit;
  }
}
/* Spacers utility classes */
.p-0 {
  padding: 0;
}

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

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

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

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

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

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

.m-0 {
  margin: 0;
}

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

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

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

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

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

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

@media (min-width: 576px) {
  .sm\:p-0 {
    padding: 0;
  }
  .sm\:pt-0 {
    padding-top: 0;
  }
  .sm\:pr-0 {
    padding-right: 0;
  }
  .sm\:pb-0 {
    padding-bottom: 0;
  }
  .sm\:pl-0 {
    padding-left: 0;
  }
  .sm\:px-0 {
    padding-left: 0;
    padding-right: 0;
  }
  .sm\:py-0 {
    padding-top: 0;
    padding-bottom: 0;
  }
  .sm\:m-0 {
    margin: 0;
  }
  .sm\:mt-0 {
    margin-top: 0;
  }
  .sm\:mr-0 {
    margin-right: 0;
  }
  .sm\:mb-0 {
    margin-bottom: 0;
  }
  .sm\:ml-0 {
    margin-left: 0;
  }
  .sm\:mx-0 {
    margin-left: 0;
    margin-right: 0;
  }
  .sm\:my-0 {
    margin-top: 0;
    margin-bottom: 0;
  }
}
@media (min-width: 992px) {
  .md\:p-0 {
    padding: 0;
  }
  .md\:pt-0 {
    padding-top: 0;
  }
  .md\:pr-0 {
    padding-right: 0;
  }
  .md\:pb-0 {
    padding-bottom: 0;
  }
  .md\:pl-0 {
    padding-left: 0;
  }
  .md\:px-0 {
    padding-left: 0;
    padding-right: 0;
  }
  .md\:py-0 {
    padding-top: 0;
    padding-bottom: 0;
  }
  .md\:m-0 {
    margin: 0;
  }
  .md\:mt-0 {
    margin-top: 0;
  }
  .md\:mr-0 {
    margin-right: 0;
  }
  .md\:mb-0 {
    margin-bottom: 0;
  }
  .md\:ml-0 {
    margin-left: 0;
  }
  .md\:mx-0 {
    margin-left: 0;
    margin-right: 0;
  }
  .md\:my-0 {
    margin-top: 0;
    margin-bottom: 0;
  }
}
@media (min-width: 1200px) {
  .lg\:p-0 {
    padding: 0;
  }
  .lg\:pt-0 {
    padding-top: 0;
  }
  .lg\:pr-0 {
    padding-right: 0;
  }
  .lg\:pb-0 {
    padding-bottom: 0;
  }
  .lg\:pl-0 {
    padding-left: 0;
  }
  .lg\:px-0 {
    padding-left: 0;
    padding-right: 0;
  }
  .lg\:py-0 {
    padding-top: 0;
    padding-bottom: 0;
  }
  .lg\:m-0 {
    margin: 0;
  }
  .lg\:mt-0 {
    margin-top: 0;
  }
  .lg\:mr-0 {
    margin-right: 0;
  }
  .lg\:mb-0 {
    margin-bottom: 0;
  }
  .lg\:ml-0 {
    margin-left: 0;
  }
  .lg\:mx-0 {
    margin-left: 0;
    margin-right: 0;
  }
  .lg\:my-0 {
    margin-top: 0;
    margin-bottom: 0;
  }
}
@media (min-width: 1400px) {
  .xl\:p-0 {
    padding: 0;
  }
  .xl\:pt-0 {
    padding-top: 0;
  }
  .xl\:pr-0 {
    padding-right: 0;
  }
  .xl\:pb-0 {
    padding-bottom: 0;
  }
  .xl\:pl-0 {
    padding-left: 0;
  }
  .xl\:px-0 {
    padding-left: 0;
    padding-right: 0;
  }
  .xl\:py-0 {
    padding-top: 0;
    padding-bottom: 0;
  }
  .xl\:m-0 {
    margin: 0;
  }
  .xl\:mt-0 {
    margin-top: 0;
  }
  .xl\:mr-0 {
    margin-right: 0;
  }
  .xl\:mb-0 {
    margin-bottom: 0;
  }
  .xl\:ml-0 {
    margin-left: 0;
  }
  .xl\:mx-0 {
    margin-left: 0;
    margin-right: 0;
  }
  .xl\:my-0 {
    margin-top: 0;
    margin-bottom: 0;
  }
}
.p-1 {
  padding: 1px;
}

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

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

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

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

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

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

.m-1 {
  margin: 1px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.m-2 {
  margin: 0.125rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.m-4 {
  margin: 0.25rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.m-8 {
  margin: 0.5rem;
}

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

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

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

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

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

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

@media (min-width: 576px) {
  .sm\:p-8 {
    padding: 0.5rem;
  }
  .sm\:pt-8 {
    padding-top: 0.5rem;
  }
  .sm\:pr-8 {
    padding-right: 0.5rem;
  }
  .sm\:pb-8 {
    padding-bottom: 0.5rem;
  }
  .sm\:pl-8 {
    padding-left: 0.5rem;
  }
  .sm\:px-8 {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  .sm\:py-8 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
  .sm\:m-8 {
    margin: 0.5rem;
  }
  .sm\:mt-8 {
    margin-top: 0.5rem;
  }
  .sm\:mr-8 {
    margin-right: 0.5rem;
  }
  .sm\:mb-8 {
    margin-bottom: 0.5rem;
  }
  .sm\:ml-8 {
    margin-left: 0.5rem;
  }
  .sm\:mx-8 {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }
  .sm\:my-8 {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }
}
@media (min-width: 992px) {
  .md\:p-8 {
    padding: 0.5rem;
  }
  .md\:pt-8 {
    padding-top: 0.5rem;
  }
  .md\:pr-8 {
    padding-right: 0.5rem;
  }
  .md\:pb-8 {
    padding-bottom: 0.5rem;
  }
  .md\:pl-8 {
    padding-left: 0.5rem;
  }
  .md\:px-8 {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  .md\:py-8 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
  .md\:m-8 {
    margin: 0.5rem;
  }
  .md\:mt-8 {
    margin-top: 0.5rem;
  }
  .md\:mr-8 {
    margin-right: 0.5rem;
  }
  .md\:mb-8 {
    margin-bottom: 0.5rem;
  }
  .md\:ml-8 {
    margin-left: 0.5rem;
  }
  .md\:mx-8 {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }
  .md\:my-8 {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }
}
@media (min-width: 1200px) {
  .lg\:p-8 {
    padding: 0.5rem;
  }
  .lg\:pt-8 {
    padding-top: 0.5rem;
  }
  .lg\:pr-8 {
    padding-right: 0.5rem;
  }
  .lg\:pb-8 {
    padding-bottom: 0.5rem;
  }
  .lg\:pl-8 {
    padding-left: 0.5rem;
  }
  .lg\:px-8 {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  .lg\:py-8 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
  .lg\:m-8 {
    margin: 0.5rem;
  }
  .lg\:mt-8 {
    margin-top: 0.5rem;
  }
  .lg\:mr-8 {
    margin-right: 0.5rem;
  }
  .lg\:mb-8 {
    margin-bottom: 0.5rem;
  }
  .lg\:ml-8 {
    margin-left: 0.5rem;
  }
  .lg\:mx-8 {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }
  .lg\:my-8 {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }
}
@media (min-width: 1400px) {
  .xl\:p-8 {
    padding: 0.5rem;
  }
  .xl\:pt-8 {
    padding-top: 0.5rem;
  }
  .xl\:pr-8 {
    padding-right: 0.5rem;
  }
  .xl\:pb-8 {
    padding-bottom: 0.5rem;
  }
  .xl\:pl-8 {
    padding-left: 0.5rem;
  }
  .xl\:px-8 {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  .xl\:py-8 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
  .xl\:m-8 {
    margin: 0.5rem;
  }
  .xl\:mt-8 {
    margin-top: 0.5rem;
  }
  .xl\:mr-8 {
    margin-right: 0.5rem;
  }
  .xl\:mb-8 {
    margin-bottom: 0.5rem;
  }
  .xl\:ml-8 {
    margin-left: 0.5rem;
  }
  .xl\:mx-8 {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }
  .xl\: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: 992px) {
  .md\:p-10 {
    padding: 0.625rem;
  }
  .md\:pt-10 {
    padding-top: 0.625rem;
  }
  .md\:pr-10 {
    padding-right: 0.625rem;
  }
  .md\:pb-10 {
    padding-bottom: 0.625rem;
  }
  .md\:pl-10 {
    padding-left: 0.625rem;
  }
  .md\:px-10 {
    padding-left: 0.625rem;
    padding-right: 0.625rem;
  }
  .md\:py-10 {
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
  }
  .md\:m-10 {
    margin: 0.625rem;
  }
  .md\:mt-10 {
    margin-top: 0.625rem;
  }
  .md\:mr-10 {
    margin-right: 0.625rem;
  }
  .md\:mb-10 {
    margin-bottom: 0.625rem;
  }
  .md\:ml-10 {
    margin-left: 0.625rem;
  }
  .md\:mx-10 {
    margin-left: 0.625rem;
    margin-right: 0.625rem;
  }
  .md\:my-10 {
    margin-top: 0.625rem;
    margin-bottom: 0.625rem;
  }
}
@media (min-width: 1200px) {
  .lg\:p-10 {
    padding: 0.625rem;
  }
  .lg\:pt-10 {
    padding-top: 0.625rem;
  }
  .lg\:pr-10 {
    padding-right: 0.625rem;
  }
  .lg\:pb-10 {
    padding-bottom: 0.625rem;
  }
  .lg\:pl-10 {
    padding-left: 0.625rem;
  }
  .lg\:px-10 {
    padding-left: 0.625rem;
    padding-right: 0.625rem;
  }
  .lg\:py-10 {
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
  }
  .lg\:m-10 {
    margin: 0.625rem;
  }
  .lg\:mt-10 {
    margin-top: 0.625rem;
  }
  .lg\:mr-10 {
    margin-right: 0.625rem;
  }
  .lg\:mb-10 {
    margin-bottom: 0.625rem;
  }
  .lg\:ml-10 {
    margin-left: 0.625rem;
  }
  .lg\:mx-10 {
    margin-left: 0.625rem;
    margin-right: 0.625rem;
  }
  .lg\:my-10 {
    margin-top: 0.625rem;
    margin-bottom: 0.625rem;
  }
}
@media (min-width: 1400px) {
  .xl\:p-10 {
    padding: 0.625rem;
  }
  .xl\:pt-10 {
    padding-top: 0.625rem;
  }
  .xl\:pr-10 {
    padding-right: 0.625rem;
  }
  .xl\:pb-10 {
    padding-bottom: 0.625rem;
  }
  .xl\:pl-10 {
    padding-left: 0.625rem;
  }
  .xl\:px-10 {
    padding-left: 0.625rem;
    padding-right: 0.625rem;
  }
  .xl\:py-10 {
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
  }
  .xl\:m-10 {
    margin: 0.625rem;
  }
  .xl\:mt-10 {
    margin-top: 0.625rem;
  }
  .xl\:mr-10 {
    margin-right: 0.625rem;
  }
  .xl\:mb-10 {
    margin-bottom: 0.625rem;
  }
  .xl\:ml-10 {
    margin-left: 0.625rem;
  }
  .xl\:mx-10 {
    margin-left: 0.625rem;
    margin-right: 0.625rem;
  }
  .xl\: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: 992px) {
  .md\:p-12 {
    padding: 0.75rem;
  }
  .md\:pt-12 {
    padding-top: 0.75rem;
  }
  .md\:pr-12 {
    padding-right: 0.75rem;
  }
  .md\:pb-12 {
    padding-bottom: 0.75rem;
  }
  .md\:pl-12 {
    padding-left: 0.75rem;
  }
  .md\:px-12 {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
  .md\:py-12 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }
  .md\:m-12 {
    margin: 0.75rem;
  }
  .md\:mt-12 {
    margin-top: 0.75rem;
  }
  .md\:mr-12 {
    margin-right: 0.75rem;
  }
  .md\:mb-12 {
    margin-bottom: 0.75rem;
  }
  .md\:ml-12 {
    margin-left: 0.75rem;
  }
  .md\:mx-12 {
    margin-left: 0.75rem;
    margin-right: 0.75rem;
  }
  .md\:my-12 {
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
  }
}
@media (min-width: 1200px) {
  .lg\:p-12 {
    padding: 0.75rem;
  }
  .lg\:pt-12 {
    padding-top: 0.75rem;
  }
  .lg\:pr-12 {
    padding-right: 0.75rem;
  }
  .lg\:pb-12 {
    padding-bottom: 0.75rem;
  }
  .lg\:pl-12 {
    padding-left: 0.75rem;
  }
  .lg\:px-12 {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
  .lg\:py-12 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }
  .lg\:m-12 {
    margin: 0.75rem;
  }
  .lg\:mt-12 {
    margin-top: 0.75rem;
  }
  .lg\:mr-12 {
    margin-right: 0.75rem;
  }
  .lg\:mb-12 {
    margin-bottom: 0.75rem;
  }
  .lg\:ml-12 {
    margin-left: 0.75rem;
  }
  .lg\:mx-12 {
    margin-left: 0.75rem;
    margin-right: 0.75rem;
  }
  .lg\:my-12 {
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
  }
}
@media (min-width: 1400px) {
  .xl\:p-12 {
    padding: 0.75rem;
  }
  .xl\:pt-12 {
    padding-top: 0.75rem;
  }
  .xl\:pr-12 {
    padding-right: 0.75rem;
  }
  .xl\:pb-12 {
    padding-bottom: 0.75rem;
  }
  .xl\:pl-12 {
    padding-left: 0.75rem;
  }
  .xl\:px-12 {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
  .xl\:py-12 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }
  .xl\:m-12 {
    margin: 0.75rem;
  }
  .xl\:mt-12 {
    margin-top: 0.75rem;
  }
  .xl\:mr-12 {
    margin-right: 0.75rem;
  }
  .xl\:mb-12 {
    margin-bottom: 0.75rem;
  }
  .xl\:ml-12 {
    margin-left: 0.75rem;
  }
  .xl\:mx-12 {
    margin-left: 0.75rem;
    margin-right: 0.75rem;
  }
  .xl\:my-12 {
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
  }
}
.p-16 {
  padding: 1rem;
}

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

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

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

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

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

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

.m-16 {
  margin: 1rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.m-20 {
  margin: 1.25rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.m-24 {
  margin: 1.5rem;
}

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

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

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

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

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

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

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

.pt-60 {
  padding-top: 3.75rem;
}

.pr-60 {
  padding-right: 3.75rem;
}

.pb-60 {
  padding-bottom: 3.75rem;
}

.pl-60 {
  padding-left: 3.75rem;
}

.px-60 {
  padding-left: 3.75rem;
  padding-right: 3.75rem;
}

.py-60 {
  padding-top: 3.75rem;
  padding-bottom: 3.75rem;
}

.m-60 {
  margin: 3.75rem;
}

.mt-60 {
  margin-top: 3.75rem;
}

.mr-60 {
  margin-right: 3.75rem;
}

.mb-60 {
  margin-bottom: 3.75rem;
}

.ml-60 {
  margin-left: 3.75rem;
}

.mx-60 {
  margin-left: 3.75rem;
  margin-right: 3.75rem;
}

.my-60 {
  margin-top: 3.75rem;
  margin-bottom: 3.75rem;
}

@media (min-width: 576px) {
  .sm\:p-60 {
    padding: 3.75rem;
  }
  .sm\:pt-60 {
    padding-top: 3.75rem;
  }
  .sm\:pr-60 {
    padding-right: 3.75rem;
  }
  .sm\:pb-60 {
    padding-bottom: 3.75rem;
  }
  .sm\:pl-60 {
    padding-left: 3.75rem;
  }
  .sm\:px-60 {
    padding-left: 3.75rem;
    padding-right: 3.75rem;
  }
  .sm\:py-60 {
    padding-top: 3.75rem;
    padding-bottom: 3.75rem;
  }
  .sm\:m-60 {
    margin: 3.75rem;
  }
  .sm\:mt-60 {
    margin-top: 3.75rem;
  }
  .sm\:mr-60 {
    margin-right: 3.75rem;
  }
  .sm\:mb-60 {
    margin-bottom: 3.75rem;
  }
  .sm\:ml-60 {
    margin-left: 3.75rem;
  }
  .sm\:mx-60 {
    margin-left: 3.75rem;
    margin-right: 3.75rem;
  }
  .sm\:my-60 {
    margin-top: 3.75rem;
    margin-bottom: 3.75rem;
  }
}
@media (min-width: 992px) {
  .md\:p-60 {
    padding: 3.75rem;
  }
  .md\:pt-60 {
    padding-top: 3.75rem;
  }
  .md\:pr-60 {
    padding-right: 3.75rem;
  }
  .md\:pb-60 {
    padding-bottom: 3.75rem;
  }
  .md\:pl-60 {
    padding-left: 3.75rem;
  }
  .md\:px-60 {
    padding-left: 3.75rem;
    padding-right: 3.75rem;
  }
  .md\:py-60 {
    padding-top: 3.75rem;
    padding-bottom: 3.75rem;
  }
  .md\:m-60 {
    margin: 3.75rem;
  }
  .md\:mt-60 {
    margin-top: 3.75rem;
  }
  .md\:mr-60 {
    margin-right: 3.75rem;
  }
  .md\:mb-60 {
    margin-bottom: 3.75rem;
  }
  .md\:ml-60 {
    margin-left: 3.75rem;
  }
  .md\:mx-60 {
    margin-left: 3.75rem;
    margin-right: 3.75rem;
  }
  .md\:my-60 {
    margin-top: 3.75rem;
    margin-bottom: 3.75rem;
  }
}
@media (min-width: 1200px) {
  .lg\:p-60 {
    padding: 3.75rem;
  }
  .lg\:pt-60 {
    padding-top: 3.75rem;
  }
  .lg\:pr-60 {
    padding-right: 3.75rem;
  }
  .lg\:pb-60 {
    padding-bottom: 3.75rem;
  }
  .lg\:pl-60 {
    padding-left: 3.75rem;
  }
  .lg\:px-60 {
    padding-left: 3.75rem;
    padding-right: 3.75rem;
  }
  .lg\:py-60 {
    padding-top: 3.75rem;
    padding-bottom: 3.75rem;
  }
  .lg\:m-60 {
    margin: 3.75rem;
  }
  .lg\:mt-60 {
    margin-top: 3.75rem;
  }
  .lg\:mr-60 {
    margin-right: 3.75rem;
  }
  .lg\:mb-60 {
    margin-bottom: 3.75rem;
  }
  .lg\:ml-60 {
    margin-left: 3.75rem;
  }
  .lg\:mx-60 {
    margin-left: 3.75rem;
    margin-right: 3.75rem;
  }
  .lg\:my-60 {
    margin-top: 3.75rem;
    margin-bottom: 3.75rem;
  }
}
@media (min-width: 1400px) {
  .xl\:p-60 {
    padding: 3.75rem;
  }
  .xl\:pt-60 {
    padding-top: 3.75rem;
  }
  .xl\:pr-60 {
    padding-right: 3.75rem;
  }
  .xl\:pb-60 {
    padding-bottom: 3.75rem;
  }
  .xl\:pl-60 {
    padding-left: 3.75rem;
  }
  .xl\:px-60 {
    padding-left: 3.75rem;
    padding-right: 3.75rem;
  }
  .xl\:py-60 {
    padding-top: 3.75rem;
    padding-bottom: 3.75rem;
  }
  .xl\:m-60 {
    margin: 3.75rem;
  }
  .xl\:mt-60 {
    margin-top: 3.75rem;
  }
  .xl\:mr-60 {
    margin-right: 3.75rem;
  }
  .xl\:mb-60 {
    margin-bottom: 3.75rem;
  }
  .xl\:ml-60 {
    margin-left: 3.75rem;
  }
  .xl\:mx-60 {
    margin-left: 3.75rem;
    margin-right: 3.75rem;
  }
  .xl\:my-60 {
    margin-top: 3.75rem;
    margin-bottom: 3.75rem;
  }
}
.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: 992px) {
  .md\:p-70 {
    padding: 4.375rem;
  }
  .md\:pt-70 {
    padding-top: 4.375rem;
  }
  .md\:pr-70 {
    padding-right: 4.375rem;
  }
  .md\:pb-70 {
    padding-bottom: 4.375rem;
  }
  .md\:pl-70 {
    padding-left: 4.375rem;
  }
  .md\:px-70 {
    padding-left: 4.375rem;
    padding-right: 4.375rem;
  }
  .md\:py-70 {
    padding-top: 4.375rem;
    padding-bottom: 4.375rem;
  }
  .md\:m-70 {
    margin: 4.375rem;
  }
  .md\:mt-70 {
    margin-top: 4.375rem;
  }
  .md\:mr-70 {
    margin-right: 4.375rem;
  }
  .md\:mb-70 {
    margin-bottom: 4.375rem;
  }
  .md\:ml-70 {
    margin-left: 4.375rem;
  }
  .md\:mx-70 {
    margin-left: 4.375rem;
    margin-right: 4.375rem;
  }
  .md\:my-70 {
    margin-top: 4.375rem;
    margin-bottom: 4.375rem;
  }
}
@media (min-width: 1200px) {
  .lg\:p-70 {
    padding: 4.375rem;
  }
  .lg\:pt-70 {
    padding-top: 4.375rem;
  }
  .lg\:pr-70 {
    padding-right: 4.375rem;
  }
  .lg\:pb-70 {
    padding-bottom: 4.375rem;
  }
  .lg\:pl-70 {
    padding-left: 4.375rem;
  }
  .lg\:px-70 {
    padding-left: 4.375rem;
    padding-right: 4.375rem;
  }
  .lg\:py-70 {
    padding-top: 4.375rem;
    padding-bottom: 4.375rem;
  }
  .lg\:m-70 {
    margin: 4.375rem;
  }
  .lg\:mt-70 {
    margin-top: 4.375rem;
  }
  .lg\:mr-70 {
    margin-right: 4.375rem;
  }
  .lg\:mb-70 {
    margin-bottom: 4.375rem;
  }
  .lg\:ml-70 {
    margin-left: 4.375rem;
  }
  .lg\:mx-70 {
    margin-left: 4.375rem;
    margin-right: 4.375rem;
  }
  .lg\:my-70 {
    margin-top: 4.375rem;
    margin-bottom: 4.375rem;
  }
}
@media (min-width: 1400px) {
  .xl\:p-70 {
    padding: 4.375rem;
  }
  .xl\:pt-70 {
    padding-top: 4.375rem;
  }
  .xl\:pr-70 {
    padding-right: 4.375rem;
  }
  .xl\:pb-70 {
    padding-bottom: 4.375rem;
  }
  .xl\:pl-70 {
    padding-left: 4.375rem;
  }
  .xl\:px-70 {
    padding-left: 4.375rem;
    padding-right: 4.375rem;
  }
  .xl\:py-70 {
    padding-top: 4.375rem;
    padding-bottom: 4.375rem;
  }
  .xl\:m-70 {
    margin: 4.375rem;
  }
  .xl\:mt-70 {
    margin-top: 4.375rem;
  }
  .xl\:mr-70 {
    margin-right: 4.375rem;
  }
  .xl\:mb-70 {
    margin-bottom: 4.375rem;
  }
  .xl\:ml-70 {
    margin-left: 4.375rem;
  }
  .xl\:mx-70 {
    margin-left: 4.375rem;
    margin-right: 4.375rem;
  }
  .xl\: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: 992px) {
  .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;
  }
}
@media (min-width: 1200px) {
  .lg\:p-80 {
    padding: 5rem;
  }
  .lg\:pt-80 {
    padding-top: 5rem;
  }
  .lg\:pr-80 {
    padding-right: 5rem;
  }
  .lg\:pb-80 {
    padding-bottom: 5rem;
  }
  .lg\:pl-80 {
    padding-left: 5rem;
  }
  .lg\:px-80 {
    padding-left: 5rem;
    padding-right: 5rem;
  }
  .lg\:py-80 {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
  .lg\:m-80 {
    margin: 5rem;
  }
  .lg\:mt-80 {
    margin-top: 5rem;
  }
  .lg\:mr-80 {
    margin-right: 5rem;
  }
  .lg\:mb-80 {
    margin-bottom: 5rem;
  }
  .lg\:ml-80 {
    margin-left: 5rem;
  }
  .lg\:mx-80 {
    margin-left: 5rem;
    margin-right: 5rem;
  }
  .lg\:my-80 {
    margin-top: 5rem;
    margin-bottom: 5rem;
  }
}
@media (min-width: 1400px) {
  .xl\:p-80 {
    padding: 5rem;
  }
  .xl\:pt-80 {
    padding-top: 5rem;
  }
  .xl\:pr-80 {
    padding-right: 5rem;
  }
  .xl\:pb-80 {
    padding-bottom: 5rem;
  }
  .xl\:pl-80 {
    padding-left: 5rem;
  }
  .xl\:px-80 {
    padding-left: 5rem;
    padding-right: 5rem;
  }
  .xl\:py-80 {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
  .xl\:m-80 {
    margin: 5rem;
  }
  .xl\:mt-80 {
    margin-top: 5rem;
  }
  .xl\:mr-80 {
    margin-right: 5rem;
  }
  .xl\:mb-80 {
    margin-bottom: 5rem;
  }
  .xl\:ml-80 {
    margin-left: 5rem;
  }
  .xl\:mx-80 {
    margin-left: 5rem;
    margin-right: 5rem;
  }
  .xl\:my-80 {
    margin-top: 5rem;
    margin-bottom: 5rem;
  }
}
.p-175 {
  padding: 10.938rem;
}

.pt-175 {
  padding-top: 10.938rem;
}

.pr-175 {
  padding-right: 10.938rem;
}

.pb-175 {
  padding-bottom: 10.938rem;
}

.pl-175 {
  padding-left: 10.938rem;
}

.px-175 {
  padding-left: 10.938rem;
  padding-right: 10.938rem;
}

.py-175 {
  padding-top: 10.938rem;
  padding-bottom: 10.938rem;
}

.m-175 {
  margin: 10.938rem;
}

.mt-175 {
  margin-top: 10.938rem;
}

.mr-175 {
  margin-right: 10.938rem;
}

.mb-175 {
  margin-bottom: 10.938rem;
}

.ml-175 {
  margin-left: 10.938rem;
}

.mx-175 {
  margin-left: 10.938rem;
  margin-right: 10.938rem;
}

.my-175 {
  margin-top: 10.938rem;
  margin-bottom: 10.938rem;
}

@media (min-width: 576px) {
  .sm\:p-175 {
    padding: 10.938rem;
  }
  .sm\:pt-175 {
    padding-top: 10.938rem;
  }
  .sm\:pr-175 {
    padding-right: 10.938rem;
  }
  .sm\:pb-175 {
    padding-bottom: 10.938rem;
  }
  .sm\:pl-175 {
    padding-left: 10.938rem;
  }
  .sm\:px-175 {
    padding-left: 10.938rem;
    padding-right: 10.938rem;
  }
  .sm\:py-175 {
    padding-top: 10.938rem;
    padding-bottom: 10.938rem;
  }
  .sm\:m-175 {
    margin: 10.938rem;
  }
  .sm\:mt-175 {
    margin-top: 10.938rem;
  }
  .sm\:mr-175 {
    margin-right: 10.938rem;
  }
  .sm\:mb-175 {
    margin-bottom: 10.938rem;
  }
  .sm\:ml-175 {
    margin-left: 10.938rem;
  }
  .sm\:mx-175 {
    margin-left: 10.938rem;
    margin-right: 10.938rem;
  }
  .sm\:my-175 {
    margin-top: 10.938rem;
    margin-bottom: 10.938rem;
  }
}
@media (min-width: 992px) {
  .md\:p-175 {
    padding: 10.938rem;
  }
  .md\:pt-175 {
    padding-top: 10.938rem;
  }
  .md\:pr-175 {
    padding-right: 10.938rem;
  }
  .md\:pb-175 {
    padding-bottom: 10.938rem;
  }
  .md\:pl-175 {
    padding-left: 10.938rem;
  }
  .md\:px-175 {
    padding-left: 10.938rem;
    padding-right: 10.938rem;
  }
  .md\:py-175 {
    padding-top: 10.938rem;
    padding-bottom: 10.938rem;
  }
  .md\:m-175 {
    margin: 10.938rem;
  }
  .md\:mt-175 {
    margin-top: 10.938rem;
  }
  .md\:mr-175 {
    margin-right: 10.938rem;
  }
  .md\:mb-175 {
    margin-bottom: 10.938rem;
  }
  .md\:ml-175 {
    margin-left: 10.938rem;
  }
  .md\:mx-175 {
    margin-left: 10.938rem;
    margin-right: 10.938rem;
  }
  .md\:my-175 {
    margin-top: 10.938rem;
    margin-bottom: 10.938rem;
  }
}
@media (min-width: 1200px) {
  .lg\:p-175 {
    padding: 10.938rem;
  }
  .lg\:pt-175 {
    padding-top: 10.938rem;
  }
  .lg\:pr-175 {
    padding-right: 10.938rem;
  }
  .lg\:pb-175 {
    padding-bottom: 10.938rem;
  }
  .lg\:pl-175 {
    padding-left: 10.938rem;
  }
  .lg\:px-175 {
    padding-left: 10.938rem;
    padding-right: 10.938rem;
  }
  .lg\:py-175 {
    padding-top: 10.938rem;
    padding-bottom: 10.938rem;
  }
  .lg\:m-175 {
    margin: 10.938rem;
  }
  .lg\:mt-175 {
    margin-top: 10.938rem;
  }
  .lg\:mr-175 {
    margin-right: 10.938rem;
  }
  .lg\:mb-175 {
    margin-bottom: 10.938rem;
  }
  .lg\:ml-175 {
    margin-left: 10.938rem;
  }
  .lg\:mx-175 {
    margin-left: 10.938rem;
    margin-right: 10.938rem;
  }
  .lg\:my-175 {
    margin-top: 10.938rem;
    margin-bottom: 10.938rem;
  }
}
@media (min-width: 1400px) {
  .xl\:p-175 {
    padding: 10.938rem;
  }
  .xl\:pt-175 {
    padding-top: 10.938rem;
  }
  .xl\:pr-175 {
    padding-right: 10.938rem;
  }
  .xl\:pb-175 {
    padding-bottom: 10.938rem;
  }
  .xl\:pl-175 {
    padding-left: 10.938rem;
  }
  .xl\:px-175 {
    padding-left: 10.938rem;
    padding-right: 10.938rem;
  }
  .xl\:py-175 {
    padding-top: 10.938rem;
    padding-bottom: 10.938rem;
  }
  .xl\:m-175 {
    margin: 10.938rem;
  }
  .xl\:mt-175 {
    margin-top: 10.938rem;
  }
  .xl\:mr-175 {
    margin-right: 10.938rem;
  }
  .xl\:mb-175 {
    margin-bottom: 10.938rem;
  }
  .xl\:ml-175 {
    margin-left: 10.938rem;
  }
  .xl\:mx-175 {
    margin-left: 10.938rem;
    margin-right: 10.938rem;
  }
  .xl\:my-175 {
    margin-top: 10.938rem;
    margin-bottom: 10.938rem;
  }
}
.p-auto {
  padding: auto;
}

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

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

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

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

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

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

.m-auto {
  margin: auto;
}

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

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

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

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

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

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

@media (min-width: 576px) {
  .sm\:p-auto {
    padding: auto;
  }
  .sm\:pt-auto {
    padding-top: auto;
  }
  .sm\:pr-auto {
    padding-right: auto;
  }
  .sm\:pb-auto {
    padding-bottom: auto;
  }
  .sm\:pl-auto {
    padding-left: auto;
  }
  .sm\:px-auto {
    padding-left: auto;
    padding-right: auto;
  }
  .sm\:py-auto {
    padding-top: auto;
    padding-bottom: auto;
  }
  .sm\:m-auto {
    margin: auto;
  }
  .sm\:mt-auto {
    margin-top: auto;
  }
  .sm\:mr-auto {
    margin-right: auto;
  }
  .sm\:mb-auto {
    margin-bottom: auto;
  }
  .sm\:ml-auto {
    margin-left: auto;
  }
  .sm\:mx-auto {
    margin-left: auto;
    margin-right: auto;
  }
  .sm\:my-auto {
    margin-top: auto;
    margin-bottom: auto;
  }
}
@media (min-width: 992px) {
  .md\:p-auto {
    padding: auto;
  }
  .md\:pt-auto {
    padding-top: auto;
  }
  .md\:pr-auto {
    padding-right: auto;
  }
  .md\:pb-auto {
    padding-bottom: auto;
  }
  .md\:pl-auto {
    padding-left: auto;
  }
  .md\:px-auto {
    padding-left: auto;
    padding-right: auto;
  }
  .md\:py-auto {
    padding-top: auto;
    padding-bottom: auto;
  }
  .md\:m-auto {
    margin: auto;
  }
  .md\:mt-auto {
    margin-top: auto;
  }
  .md\:mr-auto {
    margin-right: auto;
  }
  .md\:mb-auto {
    margin-bottom: auto;
  }
  .md\:ml-auto {
    margin-left: auto;
  }
  .md\:mx-auto {
    margin-left: auto;
    margin-right: auto;
  }
  .md\:my-auto {
    margin-top: auto;
    margin-bottom: auto;
  }
}
@media (min-width: 1200px) {
  .lg\:p-auto {
    padding: auto;
  }
  .lg\:pt-auto {
    padding-top: auto;
  }
  .lg\:pr-auto {
    padding-right: auto;
  }
  .lg\:pb-auto {
    padding-bottom: auto;
  }
  .lg\:pl-auto {
    padding-left: auto;
  }
  .lg\:px-auto {
    padding-left: auto;
    padding-right: auto;
  }
  .lg\:py-auto {
    padding-top: auto;
    padding-bottom: auto;
  }
  .lg\:m-auto {
    margin: auto;
  }
  .lg\:mt-auto {
    margin-top: auto;
  }
  .lg\:mr-auto {
    margin-right: auto;
  }
  .lg\:mb-auto {
    margin-bottom: auto;
  }
  .lg\:ml-auto {
    margin-left: auto;
  }
  .lg\:mx-auto {
    margin-left: auto;
    margin-right: auto;
  }
  .lg\:my-auto {
    margin-top: auto;
    margin-bottom: auto;
  }
}
@media (min-width: 1400px) {
  .xl\:p-auto {
    padding: auto;
  }
  .xl\:pt-auto {
    padding-top: auto;
  }
  .xl\:pr-auto {
    padding-right: auto;
  }
  .xl\:pb-auto {
    padding-bottom: auto;
  }
  .xl\:pl-auto {
    padding-left: auto;
  }
  .xl\:px-auto {
    padding-left: auto;
    padding-right: auto;
  }
  .xl\:py-auto {
    padding-top: auto;
    padding-bottom: auto;
  }
  .xl\:m-auto {
    margin: auto;
  }
  .xl\:mt-auto {
    margin-top: auto;
  }
  .xl\:mr-auto {
    margin-right: auto;
  }
  .xl\:mb-auto {
    margin-bottom: auto;
  }
  .xl\:ml-auto {
    margin-left: auto;
  }
  .xl\:mx-auto {
    margin-left: auto;
    margin-right: auto;
  }
  .xl\:my-auto {
    margin-top: auto;
    margin-bottom: auto;
  }
}
html, body {
  font-family: Gabarito, Arial, sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  background: #E5EAE4;
}

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

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

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

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

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

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

.overflow-hidden {
  overflow: hidden;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(80, 89, 82, 0.8);
  opacity: 0;
  pointer-events: none;
  z-index: 9999;
}
.overlay.active {
  opacity: 1;
  pointer-events: all;
}

.tac {
  text-align: center;
}

.gutenberg-content > * {
  margin-left: auto;
  margin-right: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (min-width: 1200px) {
  .gutenberg-content > * {
    padding-left: 0;
    padding-right: 0;
  }
}
.gutenberg-content > *:last-child {
  margin-bottom: 0;
}
.gutenberg-content .alignwide {
  width: 100%;
}
.gutenberg-content .alignfull {
  max-width: 100%;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}
.gutenberg-content .alignleft {
  float: left;
  margin-right: 2em;
  max-width: 50%;
}
.gutenberg-content .alignright {
  float: right;
  margin-left: 2em;
  max-width: 50%;
}
.gutenberg-content h1, .gutenberg-content h2, .gutenberg-content h3, .gutenberg-content h4, .gutenberg-content h5, .gutenberg-content h6 {
  margin-top: 1.5em;
  margin-bottom: 0.5em;
  line-height: 1.2;
  color: #747E74;
}
.gutenberg-content li,
.gutenberg-content p {
  margin-bottom: 1.5em;
  line-height: 20px;
  font-size: 14px;
  color: #747E74;
}
.gutenberg-content ul, .gutenberg-content ol {
  margin-bottom: 1.5em;
  padding-left: 20px;
}
.gutenberg-content ul li, .gutenberg-content ol li {
  margin-bottom: 0.5em;
}
.gutenberg-content ul li::marker, .gutenberg-content ol li::marker {
  color: #747E74;
}
.gutenberg-content .wp-block-image {
  margin-bottom: 2em;
}
.gutenberg-content .wp-block-image img {
  height: auto;
  width: 100%;
}
.gutenberg-content .wp-block-image figcaption {
  font-size: 0.85em;
  text-align: center;
  color: #a9afa9;
  margin-top: 10px;
  font-style: italic;
}
@media (max-width: 1200px) {
  .gutenberg-content .wp-block-columns {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
}
.gutenberg-content .wp-block-button {
  margin-bottom: 2em;
}
.gutenberg-content .wp-block-button__link {
  display: inline-block;
  background-color: #747E74;
  color: #fff;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 4px;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
.gutenberg-content .wp-block-button__link:hover {
  background-color: #5c635c;
}
.gutenberg-content .wp-block-button.is-style-outline .wp-block-button__link {
  background: transparent;
  border: 2px solid #747E74;
  color: #747E74;
}
.gutenberg-content .wp-block-quote {
  border-left: 4px solid #BAC8B7;
  padding-left: 20px;
  margin-left: 0;
  font-style: italic;
}
.gutenberg-content .wp-block-quote cite {
  display: block;
  margin-top: 10px;
  font-size: 0.9em;
  font-weight: bold;
  font-style: normal;
}
.gutenberg-content .wp-block-table {
  overflow-x: auto;
}
.gutenberg-content .wp-block-table table {
  width: 100%;
  border-collapse: collapse;
}
.gutenberg-content .wp-block-table table td, .gutenberg-content .wp-block-table table th {
  border: 1px solid #ddd;
  padding: 10px;
}

.header-site {
  position: sticky;
  z-index: 999999;
  top: 0;
  padding: 30px 0;
  background-color: #E5EAE4;
}
@media screen and (max-width: 1200px) {
  .header-site {
    -webkit-transition: background-color 0.3s ease-in-out;
    transition: background-color 0.3s ease-in-out;
  }
}
.header-site.active {
  background-color: #fff;
}
@media screen and (max-width: 1200px) {
  .header-site.active {
    background-color: #747E74;
  }
  .header-site.active .icon-logo {
    color: #fff !important;
  }
  .header-site.active .content-header-util .burger-icon {
    opacity: 0;
    pointer-events: none;
  }
  .header-site.active .content-header-util .burger-icon-close {
    opacity: 1;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    pointer-events: all;
  }
}
.header-site .brand .icon-logo-grand {
  height: 40px;
  width: 160px;
}
@media screen and (max-width: 1200px) {
  .header-site .brand .icon-logo-grand {
    display: none;
  }
}
.header-site .brand .icon-logo {
  height: 40px;
  width: 45px;
  color: #747E74;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media screen and (min-width: 1200px) {
  .header-site .brand .icon-logo {
    display: none;
  }
}
@media screen and (max-width: 1200px) {
  .header-site .content-header-util {
    position: relative;
    width: 100%;
  }
}
@media screen and (min-width: 1200px) {
  .header-site .content-header-util .burger-icon {
    display: none;
  }
}
@media screen and (min-width: 1200px) {
  .header-site .content-header-util .burger-icon-close {
    display: none;
  }
}
.header-site .content-header-util .btn-primary, .header-site .content-header-util .theme-page-21-domart .section-domart-contact-form .formulaire #field_submit input, .theme-page-21-domart .section-domart-contact-form .formulaire #field_submit .header-site .content-header-util input, .header-site .content-header-util .theme-page-vendre-mon-terrain .right .formulaire #field_submit input, .theme-page-vendre-mon-terrain .right .formulaire #field_submit .header-site .content-header-util input,
.header-site .content-header-util .theme-page-contact .right .formulaire #field_submit input,
.theme-page-contact .right .formulaire #field_submit .header-site .content-header-util input {
  padding-top: 20px;
  padding-bottom: 20px;
}
@media screen and (max-width: 1200px) {
  .header-site .content-header-util .btn-primary, .header-site .content-header-util .theme-page-21-domart .section-domart-contact-form .formulaire #field_submit input, .theme-page-21-domart .section-domart-contact-form .formulaire #field_submit .header-site .content-header-util input, .header-site .content-header-util .theme-page-vendre-mon-terrain .right .formulaire #field_submit input, .theme-page-vendre-mon-terrain .right .formulaire #field_submit .header-site .content-header-util input,
  .header-site .content-header-util .theme-page-contact .right .formulaire #field_submit input,
  .theme-page-contact .right .formulaire #field_submit .header-site .content-header-util input {
    display: none;
  }
}
@media screen and (max-width: 1200px) {
  .header-site .content-header-util .burger-icon {
    opacity: 1;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    pointer-events: all;
    top: 50%;
    right: 0;
    position: absolute;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .header-site .content-header-util .burger-icon-close {
    opacity: 0;
    pointer-events: none;
    top: 50%;
    right: 0;
    position: absolute;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

@media screen and (max-width: 1200px) {
  .mega-menu {
    display: none;
  }
}
.mega-menu .nav-item {
  display: inline-block;
  padding: 15px;
}
.mega-menu .nav-item:hover .sub-nav {
  display: block;
}
.mega-menu .nav-item:hover .nav-link {
  font-weight: 700;
}
.mega-menu .nav-link {
  color: #747E74;
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  text-decoration: none;
}
.mega-menu .sub-nav {
  display: none;
  position: absolute;
  top: 76px;
  left: 0;
  z-index: 99999999;
  width: 100vw;
}
.mega-menu .sub-nav .wrap {
  background-color: #fff;
}
.mega-menu .sub-nav .wrap .container-element-menu {
  border-top: 1px solid #CDD7CB;
  margin-top: 40px;
  padding: 40px 0;
}
.mega-menu .menu-opened .sub-nav {
  display: block;
}
.mega-menu .sub-nav-item {
  display: block;
  padding: 10px;
}

.sub-nav.nos-guides .card-menu-nos-guide .post-img,
.sub-nav.nos-guides .card-menu-nos-projet .post-img, .sub-nav.nos-projets .card-menu-nos-guide .post-img,
.sub-nav.nos-projets .card-menu-nos-projet .post-img {
  height: 200px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sub-nav.nos-guides .card-menu-nos-guide .link,
.sub-nav.nos-guides .card-menu-nos-projet .link, .sub-nav.nos-projets .card-menu-nos-guide .link,
.sub-nav.nos-projets .card-menu-nos-projet .link {
  margin-top: 17px;
  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;
  font-family: "Albert Sans", sans-serif;
  font-weight: 600;
  font-size: 12px;
  line-height: 18px;
  color: #747E74;
  text-transform: uppercase;
  border-bottom: 1px solid #CDD7CB;
  padding-bottom: 10px;
}
.sub-nav.nos-guides .card-menu-nos-guide .link .icon,
.sub-nav.nos-guides .card-menu-nos-projet .link .icon, .sub-nav.nos-projets .card-menu-nos-guide .link .icon,
.sub-nav.nos-projets .card-menu-nos-projet .link .icon {
  font-size: 12px;
  color: #CDD7CB;
  font-weight: 400;
}
.sub-nav.notre-societe .container-element-menu, .sub-nav.nos-solutions .container-element-menu, .sub-nav.nos-missions .container-element-menu {
  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: 30px;
}
.sub-nav.notre-societe .card-menu-societe .post-img,
.sub-nav.notre-societe .card-menu-solution .post-img,
.sub-nav.notre-societe .card-menu-mission .post-img, .sub-nav.nos-solutions .card-menu-societe .post-img,
.sub-nav.nos-solutions .card-menu-solution .post-img,
.sub-nav.nos-solutions .card-menu-mission .post-img, .sub-nav.nos-missions .card-menu-societe .post-img,
.sub-nav.nos-missions .card-menu-solution .post-img,
.sub-nav.nos-missions .card-menu-mission .post-img {
  height: 200px;
  width: 100%;
  min-width: 400px;
  max-width: 450px;
  -o-object-fit: cover;
     object-fit: cover;
}
.sub-nav.notre-societe .card-menu-societe .link,
.sub-nav.notre-societe .card-menu-solution .link,
.sub-nav.notre-societe .card-menu-mission .link, .sub-nav.nos-solutions .card-menu-societe .link,
.sub-nav.nos-solutions .card-menu-solution .link,
.sub-nav.nos-solutions .card-menu-mission .link, .sub-nav.nos-missions .card-menu-societe .link,
.sub-nav.nos-missions .card-menu-solution .link,
.sub-nav.nos-missions .card-menu-mission .link {
  margin-top: 17px;
  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;
  font-family: "Albert Sans", sans-serif;
  font-weight: 600;
  font-size: 12px;
  line-height: 18px;
  color: #747E74;
  text-transform: uppercase;
  border-bottom: 1px solid #CDD7CB;
  padding-bottom: 10px;
}
.sub-nav.notre-societe .card-menu-societe .link .icon,
.sub-nav.notre-societe .card-menu-solution .link .icon,
.sub-nav.notre-societe .card-menu-mission .link .icon, .sub-nav.nos-solutions .card-menu-societe .link .icon,
.sub-nav.nos-solutions .card-menu-solution .link .icon,
.sub-nav.nos-solutions .card-menu-mission .link .icon, .sub-nav.nos-missions .card-menu-societe .link .icon,
.sub-nav.nos-missions .card-menu-solution .link .icon,
.sub-nav.nos-missions .card-menu-mission .link .icon {
  font-size: 12px;
  color: #CDD7CB;
  font-weight: 400;
}
.sub-nav.nos-temoignages .container-temoignage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.sub-nav.nos-temoignages .container-content {
  padding-right: 50px;
  width: 40%;
}
.sub-nav.nos-temoignages .container-grid {
  width: 60%;
  row-gap: 20px;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
}

.menu-burger {
  height: calc(100vh - 99px);
  height: calc(100dvh - 99px);
  width: 100%;
  background: #747E74;
  position: fixed;
  top: 99px;
  right: -100vw;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  z-index: 100;
}
@media screen and (min-width: 1200px) {
  .menu-burger {
    display: none;
  }
}
.menu-burger.active {
  right: 0;
}
.menu-burger .layout-maxed {
  height: 100%;
}
.menu-burger .container-entre-layout {
  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;
  height: 100%;
  padding: 40px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.menu-burger .menu-burger-container {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.menu-burger .menu-burger-container .menu-burger-item .menu-burger-link {
  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;
  padding: 12px 0;
  border-bottom: 1px solid #fff;
  font-size: 16px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
}
.menu-burger .menu-burger-container .menu-burger-item .menu-burger-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}
.menu-burger .btn-primary, .menu-burger .theme-page-21-domart .section-domart-contact-form .formulaire #field_submit input, .theme-page-21-domart .section-domart-contact-form .formulaire #field_submit .menu-burger input, .menu-burger .theme-page-vendre-mon-terrain .right .formulaire #field_submit input, .theme-page-vendre-mon-terrain .right .formulaire #field_submit .menu-burger input,
.menu-burger .theme-page-contact .right .formulaire #field_submit input,
.theme-page-contact .right .formulaire #field_submit .menu-burger input {
  display: block;
  width: 100%;
  background: #fff;
  color: #747E74;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  padding: 15px;
  text-transform: uppercase;
  margin-top: 20px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.footer-site {
  background: #E5EAE4;
  color: white;
  margin-top: 100px;
}
.footer-site .container-footer {
  border-top: 1px solid #747E74;
  padding: 80px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 180px;
}
@media screen and (max-width: 1200px) {
  .footer-site .container-footer {
    padding: 60px 0;
    border-top: 1px solid #CDD7CB;
  }
}
@media screen and (max-width: 1200px) {
  .footer-site .container-footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 60px;
  }
}
@media screen and (max-width: 1200px) {
  .footer-site .container-footer .logo {
    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;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    padding-bottom: 60px;
    border-bottom: 1px solid #CDD7CB;
  }
  .footer-site .container-footer .logo .information-mobile {
    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;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 30px;
  }
  .footer-site .container-footer .logo .information-mobile .link {
    text-align: center;
  }
  .footer-site .container-footer .logo .information-mobile .container-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    width: 100%;
  }
  .footer-site .container-footer .logo .information-mobile .container-row .btn, .footer-site .container-footer .logo .information-mobile .container-row .theme-page-21-domart .section-domart-contact-form .formulaire #field_submit input, .theme-page-21-domart .section-domart-contact-form .formulaire #field_submit .footer-site .container-footer .logo .information-mobile .container-row input, .footer-site .container-footer .logo .information-mobile .container-row .theme-page-vendre-mon-terrain .right .formulaire #field_submit input, .theme-page-vendre-mon-terrain .right .formulaire #field_submit .footer-site .container-footer .logo .information-mobile .container-row input,
  .footer-site .container-footer .logo .information-mobile .container-row .theme-page-contact .right .formulaire #field_submit input,
  .theme-page-contact .right .formulaire #field_submit .footer-site .container-footer .logo .information-mobile .container-row input {
    width: 100%;
  }
}
.footer-site .container-footer .logo .icon:not(.icon-arrow) {
  color: #747E74;
  width: 120px;
  height: 110px;
}
@media screen and (max-width: 1200px) {
  .footer-site .container-footer .logo .icon:not(.icon-arrow) {
    width: 190px;
    height: 50px;
  }
}
.footer-site .container-footer .nav {
  width: 100%;
}
.footer-site .container-footer .nav .ul .li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 120px;
}
@media screen and (max-width: 1200px) {
  .footer-site .container-footer .nav .ul .li {
    gap: 15px;
  }
}
.footer-site .container-footer .nav .ul .li .ul-sub.information .li-sub .link {
  font-weight: 500;
  text-transform: unset;
}
.footer-site .container-footer .nav .ul .li .ul-sub.information .li-sub .link .icon {
  font-size: 12px;
  margin-left: 10px;
}
.footer-site .container-footer .nav .ul .li .ul-sub .li-sub {
  margin-bottom: 30px;
}
.footer-site .container-footer .nav .ul .li .ul-sub .li-sub:last-of-type {
  margin: 0;
}
.footer-site .container-footer .nav .ul .li .ul-sub .li-sub .link {
  font-size: 14px;
  line-height: 18px;
  font-weight: 600;
  text-transform: uppercase;
  color: #747E74;
  font-family: "Albert Sans", sans-serif;
}
@media screen and (max-width: 1200px) {
  .footer-site .container-footer .nav .ul .li .ul-sub .li-sub .link {
    font-size: 12px;
    line-height: 14px;
    font-weight: 200;
    text-transform: capitalize;
  }
}
.footer-site .information-mobile {
  display: none;
}
@media screen and (max-width: 1200px) {
  .footer-site .information-mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
  }
}
.footer-site .information {
  display: block;
}
@media screen and (max-width: 1200px) {
  .footer-site .information {
    display: none;
  }
}
.footer-site .ul-sub.legal {
  display: block;
}
@media screen and (max-width: 1200px) {
  .footer-site .ul-sub.legal {
    display: none;
  }
}

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

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

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

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

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

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

.gform_heading {
  display: none;
}

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

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

.breadcrumbs {
  padding: 40px 0;
}
.breadcrumbs > span span:nth-child(1) a {
  margin-left: 0;
}
.breadcrumbs a {
  margin: 0 8px;
}
.breadcrumbs .breadcrumb_last {
  margin-left: 8px;
}
.breadcrumbs p a, .breadcrumbs p span {
  text-transform: uppercase;
  color: #747E74;
  font-size: 14px;
  font-weight: 500;
}

.btn, .theme-page-21-domart .section-domart-contact-form .formulaire #field_submit input, .theme-page-vendre-mon-terrain .right .formulaire #field_submit input,
.theme-page-contact .right .formulaire #field_submit input,
.button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.5rem 1rem;
  gap: 8px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transition: 0.25s;
  transition: 0.25s;
  -webkit-transition-property: background-color, color, border, -webkit-box-shadow;
  transition-property: background-color, color, border, -webkit-box-shadow;
  transition-property: box-shadow, background-color, color, border;
  transition-property: box-shadow, background-color, color, border, -webkit-box-shadow;
  text-decoration: none;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.btn:focus, .theme-page-21-domart .section-domart-contact-form .formulaire #field_submit input:focus, .theme-page-vendre-mon-terrain .right .formulaire #field_submit input:focus,
.theme-page-contact .right .formulaire #field_submit input:focus,
.button:focus {
  -webkit-tap-highlight-color: transparent;
}

.btn-primary, .theme-page-21-domart .section-domart-contact-form .formulaire #field_submit input, .theme-page-vendre-mon-terrain .right .formulaire #field_submit input,
.theme-page-contact .right .formulaire #field_submit input {
  padding: 25px 50px;
  background: #747E74;
  color: #fff;
  font-size: 12px;
  line-height: 16px;
  text-transform: uppercase;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.btn-primary .icon, .theme-page-21-domart .section-domart-contact-form .formulaire #field_submit input .icon, .theme-page-vendre-mon-terrain .right .formulaire #field_submit input .icon,
.theme-page-contact .right .formulaire #field_submit input .icon {
  font-size: 10px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transform: scale(1);
          transform: scale(1);
}
.btn-primary:hover, .theme-page-21-domart .section-domart-contact-form .formulaire #field_submit input:hover, .theme-page-vendre-mon-terrain .right .formulaire #field_submit input:hover,
.theme-page-contact .right .formulaire #field_submit input:hover {
  background: #A5B7A1;
  color: #fff;
}
.btn-primary:hover .icon, .theme-page-21-domart .section-domart-contact-form .formulaire #field_submit input:hover .icon, .theme-page-vendre-mon-terrain .right .formulaire #field_submit input:hover .icon,
.theme-page-contact .right .formulaire #field_submit input:hover .icon {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.btn-secondary {
  padding: 12px 22px;
  background: #fff;
  color: #747E74;
  font-size: 12px;
  line-height: 16px;
  text-transform: uppercase;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.btn-secondary .icon {
  font-size: 10px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transform: scale(1);
          transform: scale(1);
}
.btn-secondary:hover {
  background: #fff;
  color: #747E74;
}
.btn-secondary:hover .icon {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.btn-tertiary {
  padding: 12px 22px;
  background: #E5EAE4;
  color: #747E74;
  font-size: 12px;
  line-height: 16px;
  text-transform: uppercase;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.btn-tertiary .icon {
  font-size: 10px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transform: scale(1);
          transform: scale(1);
}
.btn-tertiary:hover {
  background: #E5EAE4;
  color: #747E74;
}
.btn-tertiary:hover .icon-arrow {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

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

dialog.modal {
  border: 0;
  border-radius: 20px;
  max-width: 600px;
  width: 100%;
  padding: 0;
}
dialog.modal .modal-header {
  border-bottom: solid 1px rgba(50, 60, 101, 0.1);
  padding: 30px 40px 31px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
dialog.modal .modal-header .btn, dialog.modal .modal-header .theme-page-21-domart .section-domart-contact-form .formulaire #field_submit input, .theme-page-21-domart .section-domart-contact-form .formulaire #field_submit dialog.modal .modal-header input, dialog.modal .modal-header .theme-page-vendre-mon-terrain .right .formulaire #field_submit input, .theme-page-vendre-mon-terrain .right .formulaire #field_submit dialog.modal .modal-header input,
dialog.modal .modal-header .theme-page-contact .right .formulaire #field_submit input,
.theme-page-contact .right .formulaire #field_submit dialog.modal .modal-header input {
  background-color: rgba(50, 60, 101, 0.1);
  font-size: 16px;
  gap: 5px;
}
dialog.modal .modal-content {
  padding: 40px;
}
dialog.modal .modal-content .description {
  margin-bottom: 50px;
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  color: rgba(50, 60, 101, 0.7);
}
dialog.modal::-ms-backdrop {
  background-color: rgba(50, 60, 101, 0.3);
  backdrop-filter: blur(7px);
}
dialog.modal::backdrop {
  background-color: rgba(50, 60, 101, 0.3);
  backdrop-filter: blur(7px);
}

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

h1, .h1 {
  font-family: "Orelo SemiWide Italic", serif;
  font-weight: 500;
  font-size: 70px;
  color: #747E74;
}
@media screen and (max-width: 1200px) {
  h1, .h1 {
    font-size: 40px;
  }
}

h2, .h2, .section-card-image-texte .container .container-texte .texte .title {
  font-family: "Orelo SemiWide Italic", serif;
  font-weight: 500;
  font-size: 54px;
  line-height: 56px;
  color: #747E74;
}
@media screen and (max-width: 1200px) {
  h2, .h2, .section-card-image-texte .container .container-texte .texte .title {
    font-size: 34px;
    line-height: 38px;
  }
}

h3, .h3 {
  font-family: "Orelo SemiWide Italic", serif;
  font-weight: 500;
  font-size: 30px;
  line-height: 37px;
  color: #747E74;
}
@media screen and (max-width: 1200px) {
  h3, .h3 {
    font-size: 25px;
    line-height: 32px;
  }
}

p, .p, .section-card-image-texte .container .container-texte .texte .description {
  font-family: "Albert Sans", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  color: #747E74;
}
@media screen and (max-width: 1200px) {
  p, .p, .section-card-image-texte .container .container-texte .texte .description {
    font-size: 16px;
    line-height: 21px;
  }
}
p.l, .p.l, .section-card-image-texte .container .container-texte .texte .l.description {
  font-size: 18px;
  line-height: 25px;
}
p.xl, .p.xl, .section-card-image-texte .container .container-texte .texte .xl.description {
  font-size: 22px;
  line-height: 28px;
}
@media screen and (max-width: 1200px) {
  p.xl, .p.xl, .section-card-image-texte .container .container-texte .texte .xl.description {
    font-size: 18px;
    line-height: 25px;
  }
}

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

.well-primary {
  background-color: #323c65;
  color: #fff;
  border: 1px solid #2a3254;
}

.well-secondary {
  background-color: #F49A54;
  color: #323c65;
  border: 1px solid #f28c3c;
}

.well-success {
  background-color: #7fbf69;
  color: #323c65;
  border: 1px solid #70b757;
}

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

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

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

.well-gray {
  background-color: #F3F4F5;
  color: #323c65;
  border: 1px solid #e5e7e9;
}

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

.well-dark {
  background-color: #1F1F26;
  color: #fff;
  border: 1px solid #141418;
}

.well-light {
  background-color: #f4f4f6;
  color: #323c65;
  border: 1px solid #e6e6eb;
}

.well-text {
  background-color: #323c65;
  color: #fff;
  border: 1px solid #2a3254;
}

.well-blue {
  background-color: #323c65;
  color: #fff;
  border: 1px solid #2a3254;
}

.well-vert-1 {
  background-color: #E5EAE4;
  color: #323c65;
  border: 1px solid #d7dfd6;
}

.well-vert-2 {
  background-color: #CDD7CB;
  color: #323c65;
  border: 1px solid #bfccbd;
}

.well-vert-3 {
  background-color: #BAC8B7;
  color: #323c65;
  border: 1px solid #acbda9;
}

.well-vert-4 {
  background-color: #747E74;
  color: #fff;
  border: 1px solid #687168;
}

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

.bg-secondary {
  background-color: #F49A54;
  color: #323c65;
}

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

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

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

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

.bg-gray {
  background-color: #F3F4F5;
  color: #323c65;
}

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

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

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

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

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

.bg-vert-1 {
  background-color: #E5EAE4;
  color: #323c65;
}

.bg-vert-2 {
  background-color: #CDD7CB;
  color: #323c65;
}

.bg-vert-3 {
  background-color: #BAC8B7;
  color: #323c65;
}

.bg-vert-4 {
  background-color: #747E74;
  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: 10px;
  margin-top: 80px;
}
.pagination .page a,
.pagination .page-number,
.pagination .current span {
  font-size: 13px;
  font-weight: 400;
  text-decoration: none;
  line-height: 18px;
  color: #747E74;
  width: 40px;
  height: 40px;
  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 li.current {
  border: 1px solid #747E74;
  border-radius: 50%;
}
.pagination .prev svg {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.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: #323c65;
  color: white;
}

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

.badge-success {
  background-color: #7fbf69;
  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: #F3F4F5;
  color: white;
}

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

.badge-dark {
  background-color: #1F1F26;
  color: white;
}

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

.badge-text {
  background-color: #323c65;
  color: white;
}

.badge-blue {
  background-color: #323c65;
  color: white;
}

.badge-vert-1 {
  background-color: #E5EAE4;
  color: white;
}

.badge-vert-2 {
  background-color: #CDD7CB;
  color: white;
}

.badge-vert-3 {
  background-color: #BAC8B7;
  color: white;
}

.badge-vert-4 {
  background-color: #747E74;
  color: white;
}

.badge-light {
  color: #323c65;
}

.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: #323c65;
  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);
}

.section-card-image-texte {
  position: relative;
  padding-bottom: 33px;
  padding-right: 20px;
}
@media screen and (max-width: 1200px) {
  .section-card-image-texte {
    padding-right: 0;
  }
}
.section-card-image-texte .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #fff;
}
@media screen and (max-width: 1200px) {
  .section-card-image-texte .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    background: transparent;
  }
}
.section-card-image-texte .container .img {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 550px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1200px) {
  .section-card-image-texte .container .img {
    height: 350px;
    min-height: 350px;
  }
}
.section-card-image-texte .container .container-texte {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 1200px) {
  .section-card-image-texte .container .container-texte {
    margin-top: -20%;
  }
}
.section-card-image-texte .container .container-texte .texte {
  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;
  padding: 0 130px;
  height: 100%;
}
@media screen and (max-width: 1200px) {
  .section-card-image-texte .container .container-texte .texte {
    padding: 30px 20px 60px;
    background: #fff;
  }
}
.section-card-image-texte .container .container-texte .texte .title {
  margin-bottom: 30px;
}
@media screen and (max-width: 1200px) {
  .section-card-image-texte .container .container-texte .texte .title {
    text-align: center;
  }
}
@media screen and (max-width: 1200px) {
  .section-card-image-texte .container .container-texte .texte .description {
    text-align: center;
  }
}
.section-card-image-texte .container .container-texte .texte .btn, .section-card-image-texte .container .container-texte .texte .theme-page-21-domart .section-domart-contact-form .formulaire #field_submit input, .theme-page-21-domart .section-domart-contact-form .formulaire #field_submit .section-card-image-texte .container .container-texte .texte input, .section-card-image-texte .container .container-texte .texte .theme-page-vendre-mon-terrain .right .formulaire #field_submit input, .theme-page-vendre-mon-terrain .right .formulaire #field_submit .section-card-image-texte .container .container-texte .texte input,
.section-card-image-texte .container .container-texte .texte .theme-page-contact .right .formulaire #field_submit input,
.theme-page-contact .right .formulaire #field_submit .section-card-image-texte .container .container-texte .texte input {
  position: absolute;
  right: 0;
  bottom: 0;
}
@media screen and (max-width: 1200px) {
  .section-card-image-texte .container .container-texte .texte .btn, .section-card-image-texte .container .container-texte .texte .theme-page-21-domart .section-domart-contact-form .formulaire #field_submit input, .theme-page-21-domart .section-domart-contact-form .formulaire #field_submit .section-card-image-texte .container .container-texte .texte input, .section-card-image-texte .container .container-texte .texte .theme-page-vendre-mon-terrain .right .formulaire #field_submit input, .theme-page-vendre-mon-terrain .right .formulaire #field_submit .section-card-image-texte .container .container-texte .texte input,
  .section-card-image-texte .container .container-texte .texte .theme-page-contact .right .formulaire #field_submit input,
  .theme-page-contact .right .formulaire #field_submit .section-card-image-texte .container .container-texte .texte input {
    right: 50%;
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
    width: 75%;
  }
}

.card-post .container-row {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 1200px) {
  .card-post .container-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.card-post .container-row .image {
  width: 40%;
}
@media screen and (max-width: 1200px) {
  .card-post .container-row .image {
    width: 100%;
  }
}
.card-post .container-row .image .post-img {
  width: 100%;
  min-height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  max-height: 280px;
}
.card-post .container-row .content {
  width: 60%;
  padding: 50px;
  background: #fff;
  height: 100%;
  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;
}
@media screen and (max-width: 1200px) {
  .card-post .container-row .content {
    padding: 30px;
    width: 100%;
  }
}
.card-post .container-row .content .title {
  margin: 0;
}

.card-avis {
  height: 100%;
  background: #fff;
  padding: 50px;
  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-avis .container-start {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 20px;
}
.card-avis .container-start .icon.icon-star {
  color: #EFC75B;
}
.card-avis .titre {
  font-weight: 600;
  margin-bottom: 20px;
}
.card-avis .content {
  margin-bottom: 20px;
}

.card-projet {
  height: 100%;
  padding-bottom: 30px;
  padding-right: 20px;
  position: relative;
}
.card-projet .container-card {
  background: #fff;
  height: 100%;
}
.card-projet .container-card .image .post-img {
  height: 300px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.card-projet .container-card .container-content {
  padding: 30px 50px 60px;
}
.card-projet .container-card .container-content .container-top {
  margin-bottom: 10px;
  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;
}
.card-projet .container-card .container-content .container-top .container-localisation .localisation {
  font-size: 10px;
  line-height: 18px;
  font-weight: 200;
  margin-bottom: 10px;
}
.card-projet .container-card .container-content .container-top .container-localisation .titre {
  margin: 0;
  font-weight: 500;
}
.card-projet .container-card .container-content .container-top .container-livraison .titre-livraison {
  font-size: 10px;
  line-height: 18px;
  font-weight: 200;
  margin-bottom: 10px;
}
.card-projet .container-card .container-content .container-top .container-livraison .livraison {
  font-size: 17px;
  line-height: 37px;
  font-weight: 500;
  margin: 0;
  font-family: "Albert Sans", sans-serif;
  color: #747E74;
}
.card-projet .container-card .container-content .stade,
.card-projet .container-card .container-content .type-logement {
  font-size: 10px;
  line-height: 18px;
  font-weight: 200;
  margin-bottom: 5px;
}
.card-projet .container-card .container-content .puce,
.card-projet .container-card .container-content .type {
  font-size: 15px;
  line-height: 21px;
  font-weight: 500;
  margin-bottom: 20px;
  color: #747E74;
  font-family: "Albert Sans", sans-serif;
}
.card-projet .container-card .container-content .puce::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-right: 5px;
  background: var(--puce-color);
}
.card-projet .btn, .card-projet .theme-page-21-domart .section-domart-contact-form .formulaire #field_submit input, .theme-page-21-domart .section-domart-contact-form .formulaire #field_submit .card-projet input, .card-projet .theme-page-vendre-mon-terrain .right .formulaire #field_submit input, .theme-page-vendre-mon-terrain .right .formulaire #field_submit .card-projet input,
.card-projet .theme-page-contact .right .formulaire #field_submit input,
.theme-page-contact .right .formulaire #field_submit .card-projet input {
  position: absolute;
  bottom: 0;
  right: 0;
}

.card-mission {
  background: #fff;
  padding: 60px 150px;
}
@media screen and (max-width: 1200px) {
  .card-mission {
    padding: 30px 30px;
  }
}
.card-mission .top {
  text-align: center;
  color: #BAC8B7;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 30px;
}
.card-mission .titre-card {
  text-align: center;
  text-wrap: balance;
  margin-bottom: 40px;
}
.card-mission .content-1 {
  text-align: center;
  margin-bottom: 30px;
}
.card-mission .container-block {
  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;
}
.card-mission .container-block .st-accordion__icon {
  color: #747E74;
  position: relative;
}
.card-mission .container-block .st-accordion__icon.st-accordion__icon--opened .plus {
  display: none;
}
.card-mission .container-block .st-accordion__icon.st-accordion__icon--opened .moins {
  display: block;
}
.card-mission .container-block .st-accordion__icon .plus {
  display: block;
}
.card-mission .container-block .st-accordion__icon .moins {
  display: none;
}
.card-mission .container-block .st-accordion__icon svg {
  margin-left: 8px;
}
.card-mission .container-block .st-accordion__icon::before {
  content: "";
  position: absolute;
  bottom: -5px;
  height: 1px;
  background: #747E74;
  width: 100%;
}
.card-mission .st-accordion__content {
  margin-top: 50px;
}

.card-solution {
  background: #fff;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.card-solution .post-img {
  height: 200px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.card-solution .container {
  padding: 40px 80px;
}
@media screen and (max-width: 1200px) {
  .card-solution .container {
    padding: 30px;
  }
}
.card-solution .container .card-titre {
  margin-bottom: 40px;
}
@media screen and (max-width: 1200px) {
  .card-solution .container .card-titre {
    margin-bottom: 20px;
  }
}
.card-solution .container .item {
  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;
  font-size: 16px;
  color: #747E74;
  border-bottom: 1px solid #CDD7CB;
  height: 34px;
  margin: 0;
}
.card-solution .container .gutenberg-content {
  margin: 8px 0;
  font-size: 16px;
  color: #747E74;
}
.card-solution .st-accordion__icon--opened svg {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.card-temoignage .image {
  width: 86px;
  height: 86px;
}
.card-temoignage .image .post-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
.card-temoignage .row-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.card-temoignage .content {
  width: calc(100% - 90px);
}
.card-temoignage .content .titre {
  color: #747E74;
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  margin-top: 10px;
}
.card-temoignage .content .link {
  padding-bottom: 8px;
  border-bottom: 1px solid #747E74;
  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;
}
.card-temoignage .content .link .text {
  text-transform: uppercase;
  color: #747E74;
  font-size: 10px;
  font-weight: 600;
}
.card-temoignage .content .link .icon {
  text-transform: uppercase;
  color: #747E74;
  font-size: 8px;
  font-weight: 600;
}

.card-expert {
  height: 100%;
  background: #fff;
}
.card-expert .image-expert .post-img {
  height: 420px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.card-expert .container {
  padding: 40px;
}
.card-expert .container .nom {
  font-size: 40px;
  font-weight: 600;
  color: #747E74;
  margin-bottom: 17px;
  font-family: "Orelo SemiWide Italic", serif;
}
@media screen and (max-width: 1200px) {
  .card-expert .container .nom {
    font-size: 30px;
  }
}
.card-expert .container .poste {
  font-size: 16px;
  font-weight: 600;
  color: #747E74;
  margin-bottom: 19px;
  line-height: 21px;
}
.card-expert .container .description {
  font-size: 14px;
  font-weight: 400;
  color: #747E74;
  margin-bottom: 0;
  line-height: 21px;
}

.page-theme-accueil {
  padding-top: 80px;
}
@media screen and (max-width: 1200px) {
  .page-theme-accueil {
    padding-top: 30px;
  }
}
.page-theme-accueil .hero-primary .left .titre {
  margin-bottom: 30px;
}
@media screen and (max-width: 1200px) {
  .page-theme-accueil .hero-primary .left .titre {
    margin-bottom: 20px;
    text-wrap: balance;
  }
}
.page-theme-accueil .hero-primary .left .texte {
  margin-bottom: 40px;
}
@media screen and (max-width: 1200px) {
  .page-theme-accueil .hero-primary .left .texte {
    margin-bottom: 30px;
  }
}
.page-theme-accueil .hero-primary .left .icon {
  font-size: 80px;
}
.page-theme-accueil .hero-primary .right {
  position: relative;
  padding-bottom: 30px;
  padding-right: 30px;
}
@media screen and (max-width: 1200px) {
  .page-theme-accueil .hero-primary .right {
    padding: 0;
  }
  .page-theme-accueil .hero-primary .right .img {
    height: 380px;
  }
}
.page-theme-accueil .hero-primary .right .container-element {
  background: #fff;
  padding: 35px 40px;
  position: absolute;
  bottom: 0;
  right: 0;
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 1200px) {
  .page-theme-accueil .hero-primary .right .container-element {
    display: none;
  }
}
.page-theme-accueil .hero-primary .right .container-element .texte {
  margin-bottom: 10px;
  text-align: center;
  width: 200px;
}
.page-theme-accueil .section-projet .container-titre {
  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;
  margin-bottom: 40px;
}
@media screen and (max-width: 1200px) {
  .page-theme-accueil .section-projet .container-titre {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 1200px) {
  .page-theme-accueil .section-projet .container-titre .btn, .page-theme-accueil .section-projet .container-titre .theme-page-21-domart .section-domart-contact-form .formulaire #field_submit input, .theme-page-21-domart .section-domart-contact-form .formulaire #field_submit .page-theme-accueil .section-projet .container-titre input, .page-theme-accueil .section-projet .container-titre .theme-page-vendre-mon-terrain .right .formulaire #field_submit input, .theme-page-vendre-mon-terrain .right .formulaire #field_submit .page-theme-accueil .section-projet .container-titre input,
  .page-theme-accueil .section-projet .container-titre .theme-page-contact .right .formulaire #field_submit input,
  .theme-page-contact .right .formulaire #field_submit .page-theme-accueil .section-projet .container-titre input {
    display: none;
  }
}
@media screen and (max-width: 1200px) {
  .page-theme-accueil .section-projet .swiper-wrapper {
    padding-bottom: 70px;
  }
}
.page-theme-accueil .section-projet .swiper-pagination {
  top: 30px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
@media screen and (max-width: 1200px) {
  .page-theme-accueil .section-projet .swiper-pagination {
    bottom: 0;
    top: unset;
  }
}
.page-theme-accueil .section-projet .swiper-pagination .swiper-slide {
  height: auto;
}
.page-theme-accueil .section-projet .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  border: 1px solid #747E74;
  background: transparent;
}
.page-theme-accueil .section-projet .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #747E74;
}
.page-theme-accueil .section-solution {
  padding-bottom: 20px;
}
@media screen and (max-width: 1200px) {
  .page-theme-accueil .section-solution .container-image {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.page-theme-accueil .section-solution .container-content {
  position: relative;
}
@media screen and (min-width: 1200px) {
  .page-theme-accueil .section-solution .container-content {
    padding-right: 60px;
  }
}
@media screen and (max-width: 1200px) {
  .page-theme-accueil .section-solution .container-content {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-top: 20px;
  }
}
.page-theme-accueil .section-solution .container-content .content {
  background: #fff;
  padding: 80px;
  height: 100%;
}
@media screen and (max-width: 1200px) {
  .page-theme-accueil .section-solution .container-content .content {
    padding: 30px 15px 60px;
  }
  .page-theme-accueil .section-solution .container-content .content .title, .page-theme-accueil .section-solution .container-content .content .text {
    text-align: center;
  }
}
.page-theme-accueil .section-solution .container-content .content .btn, .page-theme-accueil .section-solution .container-content .content .theme-page-21-domart .section-domart-contact-form .formulaire #field_submit input, .theme-page-21-domart .section-domart-contact-form .formulaire #field_submit .page-theme-accueil .section-solution .container-content .content input, .page-theme-accueil .section-solution .container-content .content .theme-page-vendre-mon-terrain .right .formulaire #field_submit input, .theme-page-vendre-mon-terrain .right .formulaire #field_submit .page-theme-accueil .section-solution .container-content .content input,
.page-theme-accueil .section-solution .container-content .content .theme-page-contact .right .formulaire #field_submit input,
.theme-page-contact .right .formulaire #field_submit .page-theme-accueil .section-solution .container-content .content input {
  position: absolute;
  bottom: -25px;
  right: 20px;
}
@media screen and (max-width: 1200px) {
  .page-theme-accueil .section-solution .container-content .content .btn, .page-theme-accueil .section-solution .container-content .content .theme-page-21-domart .section-domart-contact-form .formulaire #field_submit input, .theme-page-21-domart .section-domart-contact-form .formulaire #field_submit .page-theme-accueil .section-solution .container-content .content input, .page-theme-accueil .section-solution .container-content .content .theme-page-vendre-mon-terrain .right .formulaire #field_submit input, .theme-page-vendre-mon-terrain .right .formulaire #field_submit .page-theme-accueil .section-solution .container-content .content input,
  .page-theme-accueil .section-solution .container-content .content .theme-page-contact .right .formulaire #field_submit input,
  .theme-page-contact .right .formulaire #field_submit .page-theme-accueil .section-solution .container-content .content input {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 75%;
  }
}
.page-theme-accueil .section-avis {
  position: relative;
  padding-bottom: 50px;
}
@media screen and (max-width: 1200px) {
  .page-theme-accueil .section-avis {
    padding-bottom: 100px;
  }
}
.page-theme-accueil .section-avis .container-titre {
  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;
  margin-bottom: 40px;
}
@media screen and (max-width: 1200px) {
  .page-theme-accueil .section-avis .container-titre {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 20px;
  }
  .page-theme-accueil .section-avis .container-titre .btn, .page-theme-accueil .section-avis .container-titre .theme-page-21-domart .section-domart-contact-form .formulaire #field_submit input, .theme-page-21-domart .section-domart-contact-form .formulaire #field_submit .page-theme-accueil .section-avis .container-titre input, .page-theme-accueil .section-avis .container-titre .theme-page-vendre-mon-terrain .right .formulaire #field_submit input, .theme-page-vendre-mon-terrain .right .formulaire #field_submit .page-theme-accueil .section-avis .container-titre input,
  .page-theme-accueil .section-avis .container-titre .theme-page-contact .right .formulaire #field_submit input,
  .theme-page-contact .right .formulaire #field_submit .page-theme-accueil .section-avis .container-titre input {
    position: absolute;
    bottom: 0;
    width: 75%;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.page-theme-accueil .section-avis .swiper-slide {
  height: auto;
}
.page-theme-accueil .section-avis .swiper-wrapper {
  padding-bottom: 50px;
}
.page-theme-accueil .section-avis .swiper-pagination {
  bottom: 0;
}
.page-theme-accueil .section-avis .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  border: 1px solid #747E74;
  margin: 0 7px;
  background: transparent;
}
.page-theme-accueil .section-avis .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #747E74;
}

.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(50, 60, 101, 0.1);
          box-shadow: 0px 2px 3px rgba(50, 60, 101, 0.1);
  margin-bottom: 20px;
}
.page-ui-kit .ui-title:before {
  content: "#";
  padding-right: 12px;
}
.page-ui-kit .icons > svg {
  display: none;
}
.page-ui-kit .icons svg {
  fill: #fff;
  width: 30px;
  height: 30px;
}
.page-ui-kit .icons .svg {
  display: inline-block;
  padding: 22px 0 0 0;
  margin: 8px;
  border: solid 1px #343434;
  width: 110px;
  text-align: center;
  background: rgba(0, 0, 0, 0.1);
}
.page-ui-kit .icons .text {
  background-color: #343434;
  color: #fff;
  padding: 5px;
  margin: 22px 0 0 0;
  font-size: 12px;
}
.page-ui-kit .html .hljs-name,
.page-ui-kit .html .hljs-attr {
  color: #ffa07a;
}
@media screen and (min-width: 576px) {
  .page-ui-kit .cards .container > div {
    width: 47%;
  }
}
@media screen and (min-width: 992px) {
  .page-ui-kit .cards .container > div {
    width: 31%;
  }
}

.theme-page-archive-projet .titre {
  text-align: center;
  margin-bottom: 120px;
}
@media screen and (max-width: 1200px) {
  .theme-page-archive-projet .titre {
    margin-bottom: 60px;
  }
}
.theme-page-archive-projet .container-filtre {
  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;
  padding-bottom: 30px;
  position: relative;
  margin-bottom: 60px;
  border-bottom: 2px solid #fff;
}
@media screen and (max-width: 1200px) {
  .theme-page-archive-projet .container-filtre {
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 30px;
    border: none;
    scrollbar-width: none;
  }
  .theme-page-archive-projet .container-filtre::-webkit-scrollbar {
    display: none;
  }
}
.theme-page-archive-projet .container-filtre .filtre {
  font-size: 18px;
  line-height: 22px;
  font-weight: 400;
  margin: 0;
  font-family: "Albert Sans", sans-serif;
  color: #747E74;
  text-decoration: none;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1200px) {
  .theme-page-archive-projet .container-filtre .filtre {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    white-space: nowrap;
  }
}
.theme-page-archive-projet .container-filtre .filtre.active {
  font-weight: 600;
}
.theme-page-archive-projet .container-filtre .active-line {
  position: absolute;
  bottom: -2px;
  left: 0;
  height: 2px;
  background-color: #747E74;
  width: 0;
  -webkit-transition: width 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: width 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  pointer-events: none;
}
.theme-page-archive-projet .container-filtre .active-line::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
  width: 10px;
  height: 10px;
  background-color: #747E74;
  border-radius: 50%;
}
@media screen and (max-width: 1200px) {
  .theme-page-archive-projet .container-filtre .active-line {
    display: none;
  }
}

.theme-page-legal .titre {
  text-align: center;
  margin-bottom: 50px;
}
.theme-page-legal .legal-content {
  padding: 30px 10%;
}
@media screen and (max-width: 1200px) {
  .theme-page-legal .legal-content {
    padding: 20px 0;
  }
}

.theme-page-archive-post .titre {
  text-align: center;
  margin-bottom: 120px;
}
@media screen and (max-width: 1200px) {
  .theme-page-archive-post .titre {
    margin-bottom: 60px;
  }
}
.theme-page-archive-post .filtre-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  margin-bottom: 50px;
}
@media screen and (max-width: 1200px) {
  .theme-page-archive-post .filtre-row {
    overflow-x: auto;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding-right: 20px;
    scrollbar-width: none;
  }
  .theme-page-archive-post .filtre-row::-webkit-scrollbar {
    display: none;
  }
}
.theme-page-archive-post .filtre-row .filtre {
  font-size: 18px;
  line-height: 22px;
  font-weight: 400;
  margin: 0;
  font-family: "Albert Sans", sans-serif;
  color: #747E74;
  text-decoration: none;
  border-bottom: 2px solid #BAC8B7;
  padding: 14px 40px;
  -webkit-transition: border-color 0.3s ease, font-weight 0.3s ease;
  transition: border-color 0.3s ease, font-weight 0.3s ease;
  white-space: nowrap;
}
@media screen and (max-width: 1200px) {
  .theme-page-archive-post .filtre-row .filtre {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    padding: 14px 20px;
  }
}
.theme-page-archive-post .filtre-row .filtre.active {
  font-weight: 600;
  border-bottom: 2px solid #747E74;
}

.theme-single-post .container-content {
  padding: 80px 120px;
  background: #fff;
}
@media screen and (max-width: 1200px) {
  .theme-single-post .container-content {
    padding: 30px;
  }
}
.theme-single-post .container-content .image-container .category {
  color: #BAC8B7;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 15px;
}
.theme-single-post .container-content .image-container .title {
  margin-bottom: 40px;
  color: #747E74;
}
@media screen and (max-width: 1200px) {
  .theme-single-post .container-content .image-container .title {
    margin-bottom: 20px;
  }
}
.theme-single-post .container-content .image-container .post-img {
  height: 350px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.theme-single-post .guide-similaire {
  margin-top: 150px;
}
@media screen and (max-width: 1200px) {
  .theme-single-post .guide-similaire {
    margin-top: 80px;
  }
}
.theme-single-post .guide-similaire .text {
  text-align: center;
  border-bottom: 1px solid #747E74;
  padding-bottom: 20px;
  margin-bottom: 50px;
}
.theme-single-post .guide-similaire .btn-container {
  margin-top: 60px;
  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;
}

.theme-archive-mission .titre {
  text-align: center;
  margin-bottom: 120px;
}
@media screen and (max-width: 1200px) {
  .theme-archive-mission .titre {
    margin-bottom: 40px;
  }
}
.theme-archive-mission .container-element {
  padding-top: 50px;
  border-top: 1px solid #CDD7CB;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 60px;
}
@media screen and (max-width: 1200px) {
  .theme-archive-mission .container-element {
    gap: 30px;
    padding-top: 30px;
  }
}

.theme-page-vendre-mon-terrain .titre {
  margin-bottom: 40px !important;
}

@media screen and (max-width: 1200px) {
  .theme-page-vendre-mon-terrain .left,
  .theme-page-contact .left {
    margin-bottom: 20px;
  }
}
.theme-page-vendre-mon-terrain .left .titre,
.theme-page-contact .left .titre {
  margin-bottom: 120px;
}
@media screen and (max-width: 1200px) {
  .theme-page-vendre-mon-terrain .left .titre,
  .theme-page-contact .left .titre {
    margin-bottom: 50px;
  }
}
.theme-page-vendre-mon-terrain .left .img,
.theme-page-contact .left .img {
  margin-top: 20px;
  height: 350px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.theme-page-vendre-mon-terrain .left .sub,
.theme-page-contact .left .sub {
  font-size: 14px;
  line-height: 18px;
  color: #747E74;
  font-weight: 400;
  margin-bottom: 10px;
}
.theme-page-vendre-mon-terrain .left .content,
.theme-page-contact .left .content {
  font-size: 18px;
  line-height: 22px;
  color: #747E74;
  font-weight: 500;
  display: inline-block;
}
.theme-page-vendre-mon-terrain .left .link,
.theme-page-contact .left .link {
  margin-bottom: 50px;
  font-size: 18px;
  line-height: 22px;
  color: #747E74;
  font-weight: 500;
  display: inline-block;
}
@media screen and (max-width: 1200px) {
  .theme-page-vendre-mon-terrain .left .link,
  .theme-page-contact .left .link {
    margin-bottom: 20px;
  }
}
.theme-page-vendre-mon-terrain .right .formulaire .gform_heading,
.theme-page-contact .right .formulaire .gform_heading {
  display: none;
}
.theme-page-vendre-mon-terrain .right .formulaire .gfield_label,
.theme-page-contact .right .formulaire .gfield_label {
  display: none;
}
.theme-page-vendre-mon-terrain .right .formulaire #gform_fields_2,
.theme-page-vendre-mon-terrain .right .formulaire #gform_fields_1,
.theme-page-contact .right .formulaire #gform_fields_2,
.theme-page-contact .right .formulaire #gform_fields_1 {
  gap: 20px;
}
.theme-page-vendre-mon-terrain .right .formulaire input, .theme-page-vendre-mon-terrain .right .formulaire select,
.theme-page-contact .right .formulaire input,
.theme-page-contact .right .formulaire select {
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: none;
  height: 70px;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 0;
}
.theme-page-vendre-mon-terrain .right .formulaire input::-webkit-input-placeholder, .theme-page-vendre-mon-terrain .right .formulaire select::-webkit-input-placeholder, .theme-page-contact .right .formulaire input::-webkit-input-placeholder, .theme-page-contact .right .formulaire select::-webkit-input-placeholder {
  color: #747E74;
}
.theme-page-vendre-mon-terrain .right .formulaire input::-moz-placeholder, .theme-page-vendre-mon-terrain .right .formulaire select::-moz-placeholder, .theme-page-contact .right .formulaire input::-moz-placeholder, .theme-page-contact .right .formulaire select::-moz-placeholder {
  color: #747E74;
}
.theme-page-vendre-mon-terrain .right .formulaire input:-ms-input-placeholder, .theme-page-vendre-mon-terrain .right .formulaire select:-ms-input-placeholder, .theme-page-contact .right .formulaire input:-ms-input-placeholder, .theme-page-contact .right .formulaire select:-ms-input-placeholder {
  color: #747E74;
}
.theme-page-vendre-mon-terrain .right .formulaire input::-ms-input-placeholder, .theme-page-vendre-mon-terrain .right .formulaire select::-ms-input-placeholder, .theme-page-contact .right .formulaire input::-ms-input-placeholder, .theme-page-contact .right .formulaire select::-ms-input-placeholder {
  color: #747E74;
}
.theme-page-vendre-mon-terrain .right .formulaire input::placeholder, .theme-page-vendre-mon-terrain .right .formulaire select::placeholder,
.theme-page-contact .right .formulaire input::placeholder,
.theme-page-contact .right .formulaire select::placeholder {
  color: #747E74;
}
.theme-page-vendre-mon-terrain .right .formulaire input:focus, .theme-page-vendre-mon-terrain .right .formulaire select:focus,
.theme-page-contact .right .formulaire input:focus,
.theme-page-contact .right .formulaire select:focus {
  outline: none;
}
.theme-page-vendre-mon-terrain .right .formulaire textarea,
.theme-page-contact .right .formulaire textarea {
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: none;
  height: 200px;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 0;
  resize: none;
}
.theme-page-vendre-mon-terrain .right .formulaire textarea::-webkit-input-placeholder, .theme-page-contact .right .formulaire textarea::-webkit-input-placeholder {
  color: #747E74;
}
.theme-page-vendre-mon-terrain .right .formulaire textarea::-moz-placeholder, .theme-page-contact .right .formulaire textarea::-moz-placeholder {
  color: #747E74;
}
.theme-page-vendre-mon-terrain .right .formulaire textarea:-ms-input-placeholder, .theme-page-contact .right .formulaire textarea:-ms-input-placeholder {
  color: #747E74;
}
.theme-page-vendre-mon-terrain .right .formulaire textarea::-ms-input-placeholder, .theme-page-contact .right .formulaire textarea::-ms-input-placeholder {
  color: #747E74;
}
.theme-page-vendre-mon-terrain .right .formulaire textarea::placeholder,
.theme-page-contact .right .formulaire textarea::placeholder {
  color: #747E74;
}
.theme-page-vendre-mon-terrain .right .formulaire textarea:focus,
.theme-page-contact .right .formulaire textarea:focus {
  outline: none;
}
.theme-page-vendre-mon-terrain .right .formulaire .gfield--type-consent,
.theme-page-contact .right .formulaire .gfield--type-consent {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.theme-page-vendre-mon-terrain .right .formulaire .gfield--type-consent input,
.theme-page-contact .right .formulaire .gfield--type-consent input {
  height: 36px;
  width: 36px;
  border-radius: 0;
}
.theme-page-vendre-mon-terrain .right .formulaire .gfield--type-consent input:before,
.theme-page-contact .right .formulaire .gfield--type-consent input:before {
  color: #747E74;
}
.theme-page-vendre-mon-terrain .right .formulaire .gfield--type-consent label,
.theme-page-contact .right .formulaire .gfield--type-consent label {
  font-size: 16px;
  line-height: 18px;
  color: #747E74;
}
.theme-page-vendre-mon-terrain .right .formulaire #field_submit,
.theme-page-contact .right .formulaire #field_submit {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.theme-page-vendre-mon-terrain .right .formulaire #field_submit input,
.theme-page-contact .right .formulaire #field_submit input {
  border-radius: 0;
}
@media screen and (max-width: 1200px) {
  .theme-page-vendre-mon-terrain .right .formulaire #field_submit input,
  .theme-page-contact .right .formulaire #field_submit input {
    width: 100%;
    margin-top: 20px;
  }
}

.theme-archive-solution .image {
  height: 480px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1200px) {
  .theme-archive-solution .image {
    height: 300px;
  }
}
.theme-archive-solution .titre {
  margin-top: 40px;
  text-align: center;
  margin-bottom: 20px;
}
.theme-archive-solution .center {
  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;
}
.theme-archive-solution .center .sub {
  text-align: center;
  width: 500px;
  text-wrap: balance;
}
.theme-archive-solution .row-container {
  margin-top: 120px;
}
@media screen and (max-width: 1200px) {
  .theme-archive-solution .row-container {
    margin-top: 50px;
  }
}

.theme-single-temoignage .container {
  padding: 60px 120px;
  background: #fff;
}
@media screen and (max-width: 1200px) {
  .theme-single-temoignage .container {
    padding: 30px;
  }
}
.theme-single-temoignage .container .header-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.theme-single-temoignage .container .header-container .post-img {
  height: 100px;
  width: 100px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  margin-bottom: 40px;
}
.theme-single-temoignage .container .header-container .author {
  text-transform: uppercase;
  color: #BAC8B7;
  font-size: 14px;
  margin-bottom: 15px;
}
.theme-single-temoignage .container .titre {
  text-align: center;
}
.theme-single-temoignage .dautre {
  margin-top: 120px;
}
@media screen and (max-width: 1200px) {
  .theme-single-temoignage .dautre {
    margin-top: 60px;
  }
}
.theme-single-temoignage .dautre .titre {
  margin-bottom: 30px;
}
.theme-single-temoignage .dautre .container-dautre {
  padding-top: 30px;
  border-top: 1px solid #747E74;
}
.theme-single-temoignage .dautre .container-dautre .card-temoignage {
  background: #fff;
  padding: 30px 40px;
}
@media screen and (max-width: 1200px) {
  .theme-single-temoignage .dautre .container-dautre .card-temoignage {
    padding: 20px;
  }
}

.theme-page-societe .image {
  height: 480px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1200px) {
  .theme-page-societe .image {
    height: 300px;
  }
}
.theme-page-societe .titre {
  margin-top: 40px;
  text-align: center;
  margin-bottom: 20px;
}
.theme-page-societe .center {
  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;
  margin-bottom: 80px;
}
.theme-page-societe .center .sub {
  text-align: center;
  width: 600px;
  text-wrap: balance;
}
@media screen and (max-width: 1200px) {
  .theme-page-societe .center .sub {
    width: 100%;
  }
}
.theme-page-societe .section-solution {
  padding-bottom: 20px;
  margin-bottom: 150px;
}
@media screen and (max-width: 1200px) {
  .theme-page-societe .section-solution {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 1200px) {
  .theme-page-societe .section-solution .container-image {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.theme-page-societe .section-solution .container-image .img {
  height: 100%;
}
@media screen and (max-width: 1200px) {
  .theme-page-societe .section-solution .container-image .img {
    max-height: 350px;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.theme-page-societe .section-solution .container-content {
  position: relative;
}
@media screen and (min-width: 1200px) {
  .theme-page-societe .section-solution .container-content {
    padding-left: 22px;
  }
}
@media screen and (max-width: 1200px) {
  .theme-page-societe .section-solution .container-content {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-top: 20px;
  }
}
.theme-page-societe .section-solution .container-content .content {
  background: #fff;
  padding: 80px;
  height: 100%;
}
@media screen and (max-width: 1200px) {
  .theme-page-societe .section-solution .container-content .content {
    padding: 30px 15px 60px;
  }
  .theme-page-societe .section-solution .container-content .content .title, .theme-page-societe .section-solution .container-content .content .text {
    text-align: center;
  }
}
.theme-page-societe .expert-section .titre-2 {
  text-align: center;
  margin-bottom: 50px;
}
.theme-page-societe .expert-section .container-row {
  border-top: 1px solid #CDD7CB;
  padding-top: 60px;
}
.theme-page-societe .section-actif {
  margin-top: 100px;
  background: #fff;
}
.theme-page-societe .section-actif .section-actif-image {
  width: 100%;
  height: 280px;
  -o-object-fit: cover;
     object-fit: cover;
}
.theme-page-societe .section-actif .titre-content-actif {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #BAC8B7;
  text-align: center;
  text-transform: uppercase;
}
.theme-page-societe .section-actif .grid-section-actif {
  padding: 50px 0;
  border-top: 1px solid #CDD7CB;
}
@media screen and (max-width: 1200px) {
  .theme-page-societe .section-actif .grid-section-actif {
    padding: 30px 0;
  }
}
.theme-page-societe .section-actif .section-actif-content {
  margin-top: 50px;
  padding: 0 100px;
}
@media screen and (max-width: 1200px) {
  .theme-page-societe .section-actif .section-actif-content {
    margin-top: 30px;
    padding: 0 30px;
  }
}
.theme-page-societe .section-actif .card-actif .titre-card-actif {
  font-size: 20px;
  color: #747E74;
  font-weight: 500;
  margin-bottom: 12px;
}
.theme-page-societe .section-actif .card-actif .content-card-actif {
  font-size: 14px;
  color: #747E74;
  font-weight: 400;
  margin: 0;
  line-height: 21px;
}
.theme-page-societe .ressource-section {
  margin-top: 100px;
}
.theme-page-societe .ressource-section .titre-2 {
  padding-bottom: 30px;
  border-bottom: 1px solid #CDD7CB;
  margin-bottom: 50px;
}
.theme-page-societe .ressource-section .content-container-ressource {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #fff;
}
@media screen and (max-width: 1200px) {
  .theme-page-societe .ressource-section .content-container-ressource {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.theme-page-societe .ressource-section .content-container-ressource .ressource-content {
  padding: 100px 80px 50px;
  width: 55%;
}
@media screen and (max-width: 1200px) {
  .theme-page-societe .ressource-section .content-container-ressource .ressource-content {
    padding: 30px;
    width: 100%;
  }
}
.theme-page-societe .ressource-section .content-container-ressource .ressource-content .ressource-titre {
  color: #BAC8B7;
  padding-bottom: 10px;
  border-bottom: 1px solid #CDD7CB;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 30px;
}
.theme-page-societe .ressource-section .content-container-ressource .ressource-content .grid-container {
  -webkit-column-gap: 60px;
     -moz-column-gap: 60px;
          column-gap: 60px;
  row-gap: 30px;
}
.theme-page-societe .ressource-section .content-container-ressource .ressource-content .container-card-ressource {
  margin-bottom: 30px;
}
.theme-page-societe .ressource-section .content-container-ressource .ressource-content .container-card-ressource .card-ressource-titre {
  color: #747E74;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 14px;
}
.theme-page-societe .ressource-section .content-container-ressource .ressource-content .container-card-ressource .content-card-ressource {
  color: #747E74;
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
}
.theme-page-societe .ressource-section .content-container-ressource .ressource-image {
  width: 45%;
}
@media screen and (max-width: 1200px) {
  .theme-page-societe .ressource-section .content-container-ressource .ressource-image {
    width: 100%;
  }
}
.theme-page-societe .ressource-section .content-container-ressource .ressource-image .img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.theme-archive-temoignage .title {
  text-align: center;
  margin-bottom: 120px;
}
@media screen and (max-width: 1200px) {
  .theme-archive-temoignage .title {
    margin-bottom: 60px;
  }
}
.theme-archive-temoignage .container {
  background: #fff;
  padding: 50px 150px;
  margin-bottom: 70px;
}
@media screen and (max-width: 1200px) {
  .theme-archive-temoignage .container {
    margin-bottom: 20px;
    padding: 30px;
  }
}
.theme-archive-temoignage .container .top {
  text-align: center;
  margin-bottom: 40px;
  text-transform: uppercase;
  font-size: 14px;
  color: #BAC8B7;
  font-weight: 400;
}
@media screen and (max-width: 1200px) {
  .theme-archive-temoignage .container .top {
    margin-bottom: 20px;
  }
}
.theme-archive-temoignage .container .text {
  text-align: center;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-size: 18px;
  color: #747E74;
  font-weight: 400;
}
@media screen and (max-width: 1200px) {
  .theme-archive-temoignage .container .text {
    font-size: 16px;
    text-transform: none;
  }
}
.theme-archive-temoignage .card-temoignage {
  background: #fff;
  padding: 30px 40px;
}
@media screen and (max-width: 1200px) {
  .theme-archive-temoignage .card-temoignage {
    padding: 20px;
  }
}

.theme-single-projet .container-fixed {
  position: fixed;
  bottom: 0;
  background: #fff;
  z-index: 99;
  padding: 30px 0;
}
@media screen and (max-width: 1200px) {
  .theme-single-projet .container-fixed {
    display: none;
  }
}
.theme-single-projet .container-fixed .all-container-fixed {
  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;
}
.theme-single-projet .container-fixed .all-container-fixed .container-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
.theme-single-projet .container-fixed .all-container-fixed .container-row .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
}
.theme-single-projet .container-fixed .all-container-fixed .container-row .container:not(:first-of-type) {
  padding-left: 20px;
  border-left: 1px solid #BAC8B7;
}
.theme-single-projet .container-fixed .all-container-fixed .container-row .container .libele {
  font-size: 11px;
  color: #BAC8B7;
  font-weight: 200;
  text-transform: uppercase;
}
.theme-single-projet .container-fixed .all-container-fixed .container-row .container .label {
  font-size: 18px;
  color: #747E74;
  font-weight: 500;
}
.theme-single-projet .container-fixed .all-container-fixed .container-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
}
.theme-single-projet .container-fixed .all-container-fixed .container-btn .btn, .theme-single-projet .container-fixed .all-container-fixed .container-btn .theme-page-21-domart .section-domart-contact-form .formulaire #field_submit input, .theme-page-21-domart .section-domart-contact-form .formulaire #field_submit .theme-single-projet .container-fixed .all-container-fixed .container-btn input, .theme-single-projet .container-fixed .all-container-fixed .container-btn .theme-page-vendre-mon-terrain .right .formulaire #field_submit input, .theme-page-vendre-mon-terrain .right .formulaire #field_submit .theme-single-projet .container-fixed .all-container-fixed .container-btn input,
.theme-single-projet .container-fixed .all-container-fixed .container-btn .theme-page-contact .right .formulaire #field_submit input,
.theme-page-contact .right .formulaire #field_submit .theme-single-projet .container-fixed .all-container-fixed .container-btn input {
  padding: 20px;
}
.theme-single-projet .container-hero {
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 1200px) {
  .theme-single-projet .container-hero {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.theme-single-projet .container-hero .content {
  width: 45%;
  padding: 0 80px;
  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;
}
@media screen and (max-width: 1200px) {
  .theme-single-projet .container-hero .content {
    width: 100%;
    padding: 0 30px;
    margin: 20px 0;
  }
}
.theme-single-projet .container-hero .content .h2, .theme-single-projet .container-hero .content .section-card-image-texte .container .container-texte .texte .title, .section-card-image-texte .container .container-texte .texte .theme-single-projet .container-hero .content .title {
  margin-bottom: 50px;
}
@media screen and (max-width: 1200px) {
  .theme-single-projet .container-hero .content .h2, .theme-single-projet .container-hero .content .section-card-image-texte .container .container-texte .texte .title, .section-card-image-texte .container .container-texte .texte .theme-single-projet .container-hero .content .title {
    margin-bottom: 20px;
  }
}
.theme-single-projet .container-hero .content .text {
  padding-top: 25px;
  border-top: 1px solid #747E74;
  font-size: 18px;
  color: #747E74;
  font-weight: 400;
}
.theme-single-projet .container-hero .image {
  width: 55%;
}
@media screen and (max-width: 1200px) {
  .theme-single-projet .container-hero .image {
    width: 100%;
  }
}
.theme-single-projet .container-hero .image .post-img {
  height: 100%;
  width: 100%;
}
.theme-single-projet .term-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 40px 100px;
  background: #fff;
  margin-top: 150px;
}
@media screen and (max-width: 1200px) {
  .theme-single-projet .term-container {
    margin-top: 50px;
    padding: 30px;
    overflow-x: auto;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 30px;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    scrollbar-width: none;
  }
  .theme-single-projet .term-container::-webkit-scrollbar {
    display: none;
  }
}
.theme-single-projet .term-container .filtre {
  font-size: 15px;
  line-height: 21px;
  font-weight: 400;
  margin-bottom: 0;
}
@media screen and (max-width: 1200px) {
  .theme-single-projet .term-container .filtre {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    white-space: nowrap;
  }
}
.theme-single-projet .term-container .filtre.puce {
  font-weight: 600;
}
.theme-single-projet .term-container .filtre.puce::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-right: 5px;
  background: var(--puce-color);
}
.theme-single-projet .presentation-container {
  background: #fff;
  padding: 50px 75px;
  margin-top: 100px;
}
@media screen and (max-width: 1200px) {
  .theme-single-projet .presentation-container {
    padding: 30px;
    margin-top: 40px;
  }
}
.theme-single-projet .presentation-container .titre {
  padding-bottom: 20px;
  margin-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #747E74;
}
.theme-single-projet .visuel-container {
  background: #fff;
  padding: 50px 75px;
  margin-top: 100px;
}
@media screen and (max-width: 1200px) {
  .theme-single-projet .visuel-container {
    padding: 30px;
    margin-top: 40px;
  }
}
.theme-single-projet .visuel-container .titre-container {
  padding-bottom: 20px;
  margin-bottom: 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;
  border-bottom: 1px solid #747E74;
}
.theme-single-projet .visuel-container .titre-container .titre {
  margin: 0;
}
.theme-single-projet .visuel-container .titre-container .swiper-pagination {
  position: unset;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.theme-single-projet .visuel-container .titre-container .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  border: 1px solid #747E74;
  background: transparent;
}
.theme-single-projet .visuel-container .titre-container .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #747E74;
}
.theme-single-projet .visuel-container .visuel-swiper .swiper-slide .post-img {
  height: 400px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1200px) {
  .theme-single-projet .visuel-container .visuel-swiper .swiper-slide .post-img {
    height: 300px;
  }
}
.theme-single-projet .presentation-2-container {
  margin-top: 150px;
}
@media screen and (max-width: 1200px) {
  .theme-single-projet .presentation-2-container {
    margin-top: 50px;
  }
}
.theme-single-projet .presentation-2-container .titre {
  padding-bottom: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #747E74;
  margin-bottom: 50px;
}
.theme-single-projet .presentation-2-container .card-presentation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 30px 25px;
  background: #fff;
}
.theme-single-projet .presentation-2-container .card-presentation .icon {
  font-size: 30px;
  color: #BAC8B7;
}
.theme-single-projet .presentation-2-container .card-presentation .text {
  width: 100%;
  font-size: 14px;
  color: #747E74;
  font-weight: 400;
  margin: 0;
}
.theme-single-projet .lot-container {
  margin-top: 150px;
}
@media screen and (max-width: 1200px) {
  .theme-single-projet .lot-container {
    margin-top: 50px;
  }
}
.theme-single-projet .lot-container .titre {
  padding-bottom: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #747E74;
  margin-bottom: 50px;
}
.theme-single-projet .lot-container .card-lot {
  padding: 30px;
  background: #fff;
}
.theme-single-projet .lot-container .card-lot .container-card-lot {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
@media screen and (max-width: 1200px) {
  .theme-single-projet .lot-container .card-lot .container-card-lot {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .theme-single-projet .lot-container .card-lot .container-card-lot .gros {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
  }
}
.theme-single-projet .lot-container .card-lot .container-card-lot .container {
  padding-left: 20px;
  border-left: 1px solid #CDD7CB;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
}
.theme-single-projet .lot-container .card-lot .container-card-lot .container:not(:first-of-type) {
  padding-left: 20px;
  border-left: 1px solid #BAC8B7;
}
@media screen and (max-width: 1200px) {
  .theme-single-projet .lot-container .card-lot .container-card-lot .container {
    padding: 0 !important;
    padding-top: 20px !important;
    border-left: none !important;
    border-top: 1px solid #CDD7CB;
    width: 100%;
  }
}
.theme-single-projet .lot-container .card-lot .container-card-lot .container .libele {
  font-size: 11px;
  color: #BAC8B7;
  font-weight: 200;
  text-transform: uppercase;
}
.theme-single-projet .lot-container .card-lot .container-card-lot .container .label {
  font-size: 18px;
  color: #747E74;
  font-weight: 500;
}
.theme-single-projet .adresse-container {
  margin-top: 150px;
}
@media screen and (max-width: 1200px) {
  .theme-single-projet .adresse-container {
    margin-top: 50px;
  }
}
.theme-single-projet .adresse-container .titre {
  padding-bottom: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #747E74;
  margin-bottom: 50px;
}
.theme-single-projet .adresse-container .container-adresse {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #fff;
}
@media screen and (max-width: 1200px) {
  .theme-single-projet .adresse-container .container-adresse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.theme-single-projet .adresse-container .container-adresse .image {
  width: 33.3333333333%;
}
@media screen and (max-width: 1200px) {
  .theme-single-projet .adresse-container .container-adresse .image {
    width: 100%;
  }
}
.theme-single-projet .adresse-container .container-adresse .image .post-img {
  width: 100%;
  height: 200px;
}
.theme-single-projet .adresse-container .container-adresse .content {
  width: 66.6666666667%;
  padding: 60px 90px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}
@media screen and (max-width: 1200px) {
  .theme-single-projet .adresse-container .container-adresse .content {
    width: 100%;
    padding: 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.theme-single-projet .adresse-container .container-adresse .content .card-adresse {
  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;
}
.theme-single-projet .adresse-container .container-adresse .content .card-adresse:not(:first-of-type) {
  padding-left: 40px;
  border-left: 1px solid #BAC8B7;
}
@media screen and (max-width: 1200px) {
  .theme-single-projet .adresse-container .container-adresse .content .card-adresse:not(:first-of-type) {
    padding: 20px 0 0;
    border-top: 1px solid #BAC8B7;
    border-left: none;
  }
}
.theme-single-projet .adresse-container .container-adresse .content .card-adresse .addresse {
  margin-bottom: 15px;
}
.theme-single-projet .adresse-container .container-adresse .content .card-adresse .addresse .icon {
  color: #BAC8B7;
}
.theme-single-projet .adresse-container .container-adresse .content .card-adresse .addresse .adresse-text {
  color: #BAC8B7;
  font-size: 12px;
  font-weight: 400;
}
.theme-single-projet .adresse-container .container-adresse .content .card-adresse .text {
  margin: 0;
  color: #747E74;
  font-size: 14px;
  font-weight: 400;
}
.theme-single-projet .autre-container {
  margin-top: 150px;
}
.theme-single-projet .autre-container .titre {
  padding-bottom: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #747E74;
  margin-bottom: 50px;
}

.theme-page-21-domart .section-domart-hero {
  padding: 0 !important;
}
.theme-page-21-domart .section-domart-hero .container-texte {
  width: 55%;
  -webkit-box-flex: unset;
      -ms-flex: unset;
          flex: unset;
}
.theme-page-21-domart .section-domart-hero .container-texte .texte {
  padding: 0 90px !important;
}
@media screen and (max-width: 1200px) {
  .theme-page-21-domart .section-domart-hero .container-texte .texte {
    padding: 20px !important;
  }
}
.theme-page-21-domart .section-domart-hero .container-texte .description,
.theme-page-21-domart .section-domart-hero .container-texte .title {
  text-align: center;
}
.theme-page-21-domart .section-domart-hero .container-texte .container-svg {
  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;
  margin-bottom: 20px;
}
@media screen and (max-width: 1200px) {
  .theme-page-21-domart .section-domart-hero .container-texte {
    width: 100%;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.theme-page-21-domart .section-domart-hero .img {
  width: 45%;
  -webkit-box-flex: unset;
      -ms-flex: unset;
          flex: unset;
}
@media screen and (max-width: 1200px) {
  .theme-page-21-domart .section-domart-hero .img {
    width: 100%;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.theme-page-21-domart .section-decouvrir {
  margin-top: 150px;
}
@media screen and (max-width: 1200px) {
  .theme-page-21-domart .section-decouvrir {
    margin-top: 80px;
  }
}
.theme-page-21-domart .section-decouvrir .container-texte {
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 90px;
}
@media screen and (max-width: 1200px) {
  .theme-page-21-domart .section-decouvrir .container-texte {
    margin-bottom: 40px;
  }
}
.theme-page-21-domart .section-decouvrir .container-texte .titre {
  text-align: center;
  margin-bottom: 20px;
}
.theme-page-21-domart .section-decouvrir .container-texte .content {
  text-align: center;
  width: 580px;
  margin: 0;
}
@media screen and (max-width: 1200px) {
  .theme-page-21-domart .section-decouvrir .container-texte .content {
    width: 100%;
  }
}
.theme-page-21-domart .section-domart-programme {
  margin-top: 150px;
}
@media screen and (max-width: 1200px) {
  .theme-page-21-domart .section-domart-programme {
    margin-top: 80px;
  }
}
.theme-page-21-domart .section-domart-programme .container-texte {
  width: 55%;
  -webkit-box-flex: unset;
      -ms-flex: unset;
          flex: unset;
}
@media screen and (max-width: 1200px) {
  .theme-page-21-domart .section-domart-programme .container-texte {
    margin: 0 !important;
  }
}
.theme-page-21-domart .section-domart-programme .container-texte .titre {
  padding-bottom: 15px;
  border-bottom: 1px solid #CDD7CB;
  margin-bottom: 20px;
}
.theme-page-21-domart .section-domart-programme .container-texte .texte {
  padding: 30px 90px !important;
}
@media screen and (max-width: 1200px) {
  .theme-page-21-domart .section-domart-programme .container-texte .texte {
    padding: 20px !important;
  }
}
.theme-page-21-domart .section-domart-programme .container-texte .content {
  font-size: 14px;
}
@media screen and (max-width: 1200px) {
  .theme-page-21-domart .section-domart-programme .container-texte {
    width: 100%;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.theme-page-21-domart .section-domart-programme .domart-swiper {
  width: 45%;
  -webkit-box-flex: unset;
      -ms-flex: unset;
          flex: unset;
}
@media screen and (max-width: 1200px) {
  .theme-page-21-domart .section-domart-programme .domart-swiper {
    width: 100%;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.theme-page-21-domart .section-domart-programme .domart-swiper .post-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.theme-page-21-domart .section-domart-presentation {
  margin-top: 150px;
}
@media screen and (max-width: 1200px) {
  .theme-page-21-domart .section-domart-presentation {
    margin-top: 80px;
  }
}
.theme-page-21-domart .section-domart-presentation .card-presentation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  margin-bottom: 14px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.theme-page-21-domart .section-domart-presentation .card-presentation svg {
  width: 40px;
}
.theme-page-21-domart .section-domart-presentation .card-presentation .content {
  width: 100%;
  margin: 0;
}
.theme-page-21-domart .section-domart-presentation .container-texte {
  width: 45%;
  -webkit-box-flex: unset;
      -ms-flex: unset;
          flex: unset;
}
@media screen and (max-width: 1200px) {
  .theme-page-21-domart .section-domart-presentation .container-texte {
    margin: 0 !important;
  }
}
.theme-page-21-domart .section-domart-presentation .container-texte .titre {
  padding-bottom: 15px;
  border-bottom: 1px solid #CDD7CB;
  margin-bottom: 20px;
}
.theme-page-21-domart .section-domart-presentation .container-texte .texte {
  padding: 30px 40px !important;
}
@media screen and (max-width: 1200px) {
  .theme-page-21-domart .section-domart-presentation .container-texte .texte {
    padding: 20px !important;
  }
}
.theme-page-21-domart .section-domart-presentation .container-texte .content {
  font-size: 14px;
}
@media screen and (max-width: 1200px) {
  .theme-page-21-domart .section-domart-presentation .container-texte {
    width: 100%;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.theme-page-21-domart .section-domart-presentation .domart-swiper {
  width: 55%;
  -webkit-box-flex: unset;
      -ms-flex: unset;
          flex: unset;
}
@media screen and (max-width: 1200px) {
  .theme-page-21-domart .section-domart-presentation .domart-swiper {
    width: 100%;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.theme-page-21-domart .section-domart-presentation .domart-swiper .post-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.theme-page-21-domart .domart-swiper .swiper-pagination {
  bottom: 30px;
}
@media screen and (max-width: 1200px) {
  .theme-page-21-domart .domart-swiper .swiper-pagination {
    bottom: 20px;
  }
}
.theme-page-21-domart .domart-swiper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  border: 1px solid #fff;
  background: transparent;
}
.theme-page-21-domart .domart-swiper .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #fff;
}
.theme-page-21-domart .section-type-a .container {
  background: #fff;
  padding: 50px 75px;
  margin-top: 100px;
}
@media screen and (max-width: 1200px) {
  .theme-page-21-domart .section-type-a .container {
    padding: 20px;
    margin-top: 40px;
  }
}
.theme-page-21-domart .section-type-a .titre-container {
  padding-bottom: 20px;
  margin-bottom: 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;
  border-bottom: 1px solid #CDD7CB;
}
.theme-page-21-domart .section-type-a .titre-container .titre {
  text-align: center;
  width: 100%;
  margin: 0;
}
@media screen and (max-width: 1200px) {
  .theme-page-21-domart .section-type-a .full-img {
    height: 150px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.theme-page-21-domart .section-type-a .container-icone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1200px) {
  .theme-page-21-domart .section-type-a .container-icone {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
.theme-page-21-domart .section-type-a .container-icone .card {
  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;
}
.theme-page-21-domart .section-type-a .container-icone .card .post-img {
  width: 78px;
  height: 78px;
}
.theme-page-21-domart .section-type-a .container-icone .card .content {
  font-size: 14px;
  text-align: center;
  color: #747E74;
  margin-top: 20px;
  line-height: 19px;
}
.theme-page-21-domart .section-domart-localisation {
  margin-top: 150px;
}
@media screen and (max-width: 1200px) {
  .theme-page-21-domart .section-domart-localisation {
    margin-top: 80px;
  }
}
.theme-page-21-domart .section-domart-localisation .container-metro {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  margin-top: 20px;
}
.theme-page-21-domart .section-domart-localisation .container-metro .card-metro {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.theme-page-21-domart .section-domart-localisation .container-metro .card-metro .number {
  color: #fff;
  width: 26px;
  height: 26px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  line-height: 0;
  font-size: 14px;
  font-weight: 700;
}
.theme-page-21-domart .section-domart-localisation .container-metro .card-metro .text {
  font-size: 14px;
  color: #747E74;
  font-weight: 700;
}
.theme-page-21-domart .section-domart-localisation .container-texte {
  width: 55%;
  -webkit-box-flex: unset;
      -ms-flex: unset;
          flex: unset;
}
.theme-page-21-domart .section-domart-localisation .container-texte .titre {
  padding-bottom: 15px;
  border-bottom: 1px solid #CDD7CB;
  margin-bottom: 20px;
}
.theme-page-21-domart .section-domart-localisation .container-texte .texte {
  padding: 30px 90px !important;
}
@media screen and (max-width: 1200px) {
  .theme-page-21-domart .section-domart-localisation .container-texte .texte {
    padding: 20px !important;
  }
}
.theme-page-21-domart .section-domart-localisation .container-texte .content {
  font-size: 14px;
}
@media screen and (max-width: 1200px) {
  .theme-page-21-domart .section-domart-localisation .container-texte {
    width: 100%;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.theme-page-21-domart .section-domart-localisation .iframe-map {
  width: 45%;
  -webkit-box-flex: unset;
      -ms-flex: unset;
          flex: unset;
}
@media screen and (max-width: 1200px) {
  .theme-page-21-domart .section-domart-localisation .iframe-map {
    width: 100%;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.theme-page-21-domart .section-domart-localisation .iframe-map iframe {
  width: 100%;
  height: 100%;
  min-height: 450px;
  -o-object-fit: cover;
     object-fit: cover;
}
.theme-page-21-domart .section-domart-contact-form {
  margin-top: 150px;
}
@media screen and (max-width: 1200px) {
  .theme-page-21-domart .section-domart-contact-form {
    margin-top: 80px;
  }
}
.theme-page-21-domart .section-domart-contact-form .container-top {
  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;
}
.theme-page-21-domart .section-domart-contact-form .container-top .titre {
  text-align: center;
  margin-bottom: 30px;
  font-size: 44px;
}
.theme-page-21-domart .section-domart-contact-form .container-top .content {
  text-align: center;
  width: 650px;
  margin: 0;
  font-size: 14px;
}
@media screen and (max-width: 1200px) {
  .theme-page-21-domart .section-domart-contact-form .container-top .content {
    width: 100%;
  }
}
.theme-page-21-domart .section-domart-contact-form .formulaire {
  padding: 0 10%;
  margin-top: 30px;
}
@media screen and (max-width: 1200px) {
  .theme-page-21-domart .section-domart-contact-form .formulaire {
    padding: 0;
  }
}
.theme-page-21-domart .section-domart-contact-form .formulaire .gform_heading {
  display: none;
}
.theme-page-21-domart .section-domart-contact-form .formulaire .gfield_label {
  display: none;
}
.theme-page-21-domart .section-domart-contact-form .formulaire #gform_fields_2,
.theme-page-21-domart .section-domart-contact-form .formulaire #gform_fields_1 {
  gap: 20px;
}
.theme-page-21-domart .section-domart-contact-form .formulaire input, .theme-page-21-domart .section-domart-contact-form .formulaire select {
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: none;
  height: 70px;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 0;
}
.theme-page-21-domart .section-domart-contact-form .formulaire input::-webkit-input-placeholder, .theme-page-21-domart .section-domart-contact-form .formulaire select::-webkit-input-placeholder {
  color: #747E74;
}
.theme-page-21-domart .section-domart-contact-form .formulaire input::-moz-placeholder, .theme-page-21-domart .section-domart-contact-form .formulaire select::-moz-placeholder {
  color: #747E74;
}
.theme-page-21-domart .section-domart-contact-form .formulaire input:-ms-input-placeholder, .theme-page-21-domart .section-domart-contact-form .formulaire select:-ms-input-placeholder {
  color: #747E74;
}
.theme-page-21-domart .section-domart-contact-form .formulaire input::-ms-input-placeholder, .theme-page-21-domart .section-domart-contact-form .formulaire select::-ms-input-placeholder {
  color: #747E74;
}
.theme-page-21-domart .section-domart-contact-form .formulaire input::placeholder, .theme-page-21-domart .section-domart-contact-form .formulaire select::placeholder {
  color: #747E74;
}
.theme-page-21-domart .section-domart-contact-form .formulaire input:focus, .theme-page-21-domart .section-domart-contact-form .formulaire select:focus {
  outline: none;
}
.theme-page-21-domart .section-domart-contact-form .formulaire textarea {
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: none;
  height: 200px;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 0;
  resize: none;
}
.theme-page-21-domart .section-domart-contact-form .formulaire textarea::-webkit-input-placeholder {
  color: #747E74;
}
.theme-page-21-domart .section-domart-contact-form .formulaire textarea::-moz-placeholder {
  color: #747E74;
}
.theme-page-21-domart .section-domart-contact-form .formulaire textarea:-ms-input-placeholder {
  color: #747E74;
}
.theme-page-21-domart .section-domart-contact-form .formulaire textarea::-ms-input-placeholder {
  color: #747E74;
}
.theme-page-21-domart .section-domart-contact-form .formulaire textarea::placeholder {
  color: #747E74;
}
.theme-page-21-domart .section-domart-contact-form .formulaire textarea:focus {
  outline: none;
}
.theme-page-21-domart .section-domart-contact-form .formulaire .gfield--type-consent {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.theme-page-21-domart .section-domart-contact-form .formulaire .gfield--type-consent input {
  height: 36px;
  width: 36px;
  border-radius: 0;
}
.theme-page-21-domart .section-domart-contact-form .formulaire .gfield--type-consent input:before {
  color: #747E74;
}
.theme-page-21-domart .section-domart-contact-form .formulaire .gfield--type-consent label {
  font-size: 16px;
  line-height: 18px;
  color: #747E74;
}
.theme-page-21-domart .section-domart-contact-form .formulaire #field_submit {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.theme-page-21-domart .section-domart-contact-form .formulaire #field_submit input {
  border-radius: 0;
}
@media screen and (max-width: 1200px) {
  .theme-page-21-domart .section-domart-contact-form .formulaire #field_submit input {
    width: 100%;
    margin-top: 20px;
  }
}

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