@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: "Raleway", sans-serif;
  font-size: 1rem;
  line-height: 1.1;
  background-color: #FCF8F4;
  color: #451113;
}
body.has-open-dropdown .blur-content {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  backdrop-filter: blur(6px);
}

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

/*
 * Links
 */
a {
  color: #451113;
  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;
}

/*
 * 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;
  opacity: 0.2;
}

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

.blur-content {
  position: fixed;
  inset: 0;
  height: 100vh;
  width: 100vw;
  backdrop-filter: blur(5px);
  background-color: rgba(70, 17, 19, 0.7);
  z-index: 11;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: opacity 0.3s ease, backdrop-filter 0.3s ease;
  transition: opacity 0.3s ease, backdrop-filter 0.3s ease;
}

/* 
 * 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: 1240px) {
  .lg\: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-cols-7 {
  -ms-grid-columns: (minmax(0, 1fr))[7];
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

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

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

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

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

.grid-cols-12 {
  -ms-grid-columns: (minmax(0, 1fr))[12];
  grid-template-columns: repeat(12, 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));
  }
  .sm\:grid-cols-7 {
    -ms-grid-columns: (minmax(0, 1fr))[7];
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }
  .sm\:grid-cols-8 {
    -ms-grid-columns: (minmax(0, 1fr))[8];
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }
  .sm\:grid-cols-9 {
    -ms-grid-columns: (minmax(0, 1fr))[9];
    grid-template-columns: repeat(9, minmax(0, 1fr));
  }
  .sm\:grid-cols-10 {
    -ms-grid-columns: (minmax(0, 1fr))[10];
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }
  .sm\:grid-cols-11 {
    -ms-grid-columns: (minmax(0, 1fr))[11];
    grid-template-columns: repeat(11, minmax(0, 1fr));
  }
  .sm\:grid-cols-12 {
    -ms-grid-columns: (minmax(0, 1fr))[12];
    grid-template-columns: repeat(12, 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));
  }
  .md\:grid-cols-7 {
    -ms-grid-columns: (minmax(0, 1fr))[7];
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }
  .md\:grid-cols-8 {
    -ms-grid-columns: (minmax(0, 1fr))[8];
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }
  .md\:grid-cols-9 {
    -ms-grid-columns: (minmax(0, 1fr))[9];
    grid-template-columns: repeat(9, minmax(0, 1fr));
  }
  .md\:grid-cols-10 {
    -ms-grid-columns: (minmax(0, 1fr))[10];
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }
  .md\:grid-cols-11 {
    -ms-grid-columns: (minmax(0, 1fr))[11];
    grid-template-columns: repeat(11, minmax(0, 1fr));
  }
  .md\:grid-cols-12 {
    -ms-grid-columns: (minmax(0, 1fr))[12];
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
}
@media (min-width: 1240px) {
  .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));
  }
  .lg\:grid-cols-7 {
    -ms-grid-columns: (minmax(0, 1fr))[7];
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }
  .lg\:grid-cols-8 {
    -ms-grid-columns: (minmax(0, 1fr))[8];
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }
  .lg\:grid-cols-9 {
    -ms-grid-columns: (minmax(0, 1fr))[9];
    grid-template-columns: repeat(9, minmax(0, 1fr));
  }
  .lg\:grid-cols-10 {
    -ms-grid-columns: (minmax(0, 1fr))[10];
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }
  .lg\:grid-cols-11 {
    -ms-grid-columns: (minmax(0, 1fr))[11];
    grid-template-columns: repeat(11, minmax(0, 1fr));
  }
  .lg\:grid-cols-12 {
    -ms-grid-columns: (minmax(0, 1fr))[12];
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
}
/* gap initialisation */
.gap-0 {
  gap: 0;
}

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

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

.gap-5 {
  gap: 0.313rem;
}

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

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

.gap-10 {
  gap: 0.625rem;
}

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

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

.gap-16 {
  gap: 1rem;
}

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

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

.gap-20 {
  gap: 1.25rem;
}

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

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

.gap-30 {
  gap: 1.875rem;
}

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

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

.gap-36 {
  gap: 2.25rem;
}

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

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

.gap-40 {
  gap: 2.5rem;
}

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

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

.gap-50 {
  gap: 3rem;
}

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

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

.gap-70 {
  gap: 4.375rem;
}

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

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

/* gap au sein des breakpoints */
@media (min-width: 576px) {
  .sm\:gap-0 {
    gap: 0;
  }
  .sm\:gap-x-0 {
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
  }
  .sm\:gap-y-0 {
    row-gap: 0;
  }
  .sm\:gap-5 {
    gap: 0.313rem;
  }
  .sm\:gap-x-5 {
    -webkit-column-gap: 0.313rem;
       -moz-column-gap: 0.313rem;
            column-gap: 0.313rem;
  }
  .sm\:gap-y-5 {
    row-gap: 0.313rem;
  }
  .sm\:gap-10 {
    gap: 0.625rem;
  }
  .sm\:gap-x-10 {
    -webkit-column-gap: 0.625rem;
       -moz-column-gap: 0.625rem;
            column-gap: 0.625rem;
  }
  .sm\:gap-y-10 {
    row-gap: 0.625rem;
  }
  .sm\:gap-16 {
    gap: 1rem;
  }
  .sm\:gap-x-16 {
    -webkit-column-gap: 1rem;
       -moz-column-gap: 1rem;
            column-gap: 1rem;
  }
  .sm\:gap-y-16 {
    row-gap: 1rem;
  }
  .sm\:gap-20 {
    gap: 1.25rem;
  }
  .sm\:gap-x-20 {
    -webkit-column-gap: 1.25rem;
       -moz-column-gap: 1.25rem;
            column-gap: 1.25rem;
  }
  .sm\:gap-y-20 {
    row-gap: 1.25rem;
  }
  .sm\:gap-30 {
    gap: 1.875rem;
  }
  .sm\:gap-x-30 {
    -webkit-column-gap: 1.875rem;
       -moz-column-gap: 1.875rem;
            column-gap: 1.875rem;
  }
  .sm\:gap-y-30 {
    row-gap: 1.875rem;
  }
  .sm\:gap-36 {
    gap: 2.25rem;
  }
  .sm\:gap-x-36 {
    -webkit-column-gap: 2.25rem;
       -moz-column-gap: 2.25rem;
            column-gap: 2.25rem;
  }
  .sm\:gap-y-36 {
    row-gap: 2.25rem;
  }
  .sm\:gap-40 {
    gap: 2.5rem;
  }
  .sm\:gap-x-40 {
    -webkit-column-gap: 2.5rem;
       -moz-column-gap: 2.5rem;
            column-gap: 2.5rem;
  }
  .sm\:gap-y-40 {
    row-gap: 2.5rem;
  }
  .sm\:gap-50 {
    gap: 3rem;
  }
  .sm\:gap-x-50 {
    -webkit-column-gap: 3rem;
       -moz-column-gap: 3rem;
            column-gap: 3rem;
  }
  .sm\:gap-y-50 {
    row-gap: 3rem;
  }
  .sm\:gap-70 {
    gap: 4.375rem;
  }
  .sm\:gap-x-70 {
    -webkit-column-gap: 4.375rem;
       -moz-column-gap: 4.375rem;
            column-gap: 4.375rem;
  }
  .sm\:gap-y-70 {
    row-gap: 4.375rem;
  }
}
@media (min-width: 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-50 {
    gap: 3rem;
  }
  .md\:gap-x-50 {
    -webkit-column-gap: 3rem;
       -moz-column-gap: 3rem;
            column-gap: 3rem;
  }
  .md\:gap-y-50 {
    row-gap: 3rem;
  }
  .md\:gap-70 {
    gap: 4.375rem;
  }
  .md\:gap-x-70 {
    -webkit-column-gap: 4.375rem;
       -moz-column-gap: 4.375rem;
            column-gap: 4.375rem;
  }
  .md\:gap-y-70 {
    row-gap: 4.375rem;
  }
}
@media (min-width: 1240px) {
  .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-50 {
    gap: 3rem;
  }
  .lg\:gap-x-50 {
    -webkit-column-gap: 3rem;
       -moz-column-gap: 3rem;
            column-gap: 3rem;
  }
  .lg\:gap-y-50 {
    row-gap: 3rem;
  }
  .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;
  }
}
/* 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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* 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;
  }
  .sm\:col-start-7 {
    -ms-grid-column: 7;
        grid-column-start: 7;
  }
  .sm\:col-end-7 {
    -ms-grid-column-span: 7;
    grid-column-end: 7;
  }
  .sm\:col-span-7 {
    -ms-grid-column-span: 7;
    grid-column: span 7/span 7;
  }
  .sm\:col-span-full {
    grid-column: 1/-1;
  }
  .sm\:row-start-7 {
    -ms-grid-row: 7;
        grid-row-start: 7;
  }
  .sm\:row-end-7 {
    -ms-grid-row-span: 7;
    grid-row-end: 7;
  }
  .sm\:row-span-7 {
    -ms-grid-row-span: 7;
    grid-row: span 7/span 7;
  }
  .sm\:col-start-8 {
    -ms-grid-column: 8;
        grid-column-start: 8;
  }
  .sm\:col-end-8 {
    -ms-grid-column-span: 8;
    grid-column-end: 8;
  }
  .sm\:col-span-8 {
    -ms-grid-column-span: 8;
    grid-column: span 8/span 8;
  }
  .sm\:col-span-full {
    grid-column: 1/-1;
  }
  .sm\:row-start-8 {
    -ms-grid-row: 8;
        grid-row-start: 8;
  }
  .sm\:row-end-8 {
    -ms-grid-row-span: 8;
    grid-row-end: 8;
  }
  .sm\:row-span-8 {
    -ms-grid-row-span: 8;
    grid-row: span 8/span 8;
  }
  .sm\:col-start-9 {
    -ms-grid-column: 9;
        grid-column-start: 9;
  }
  .sm\:col-end-9 {
    -ms-grid-column-span: 9;
    grid-column-end: 9;
  }
  .sm\:col-span-9 {
    -ms-grid-column-span: 9;
    grid-column: span 9/span 9;
  }
  .sm\:col-span-full {
    grid-column: 1/-1;
  }
  .sm\:row-start-9 {
    -ms-grid-row: 9;
        grid-row-start: 9;
  }
  .sm\:row-end-9 {
    -ms-grid-row-span: 9;
    grid-row-end: 9;
  }
  .sm\:row-span-9 {
    -ms-grid-row-span: 9;
    grid-row: span 9/span 9;
  }
  .sm\:col-start-10 {
    -ms-grid-column: 10;
        grid-column-start: 10;
  }
  .sm\:col-end-10 {
    -ms-grid-column-span: 10;
    grid-column-end: 10;
  }
  .sm\:col-span-10 {
    -ms-grid-column-span: 10;
    grid-column: span 10/span 10;
  }
  .sm\:col-span-full {
    grid-column: 1/-1;
  }
  .sm\:row-start-10 {
    -ms-grid-row: 10;
        grid-row-start: 10;
  }
  .sm\:row-end-10 {
    -ms-grid-row-span: 10;
    grid-row-end: 10;
  }
  .sm\:row-span-10 {
    -ms-grid-row-span: 10;
    grid-row: span 10/span 10;
  }
  .sm\:col-start-11 {
    -ms-grid-column: 11;
        grid-column-start: 11;
  }
  .sm\:col-end-11 {
    -ms-grid-column-span: 11;
    grid-column-end: 11;
  }
  .sm\:col-span-11 {
    -ms-grid-column-span: 11;
    grid-column: span 11/span 11;
  }
  .sm\:col-span-full {
    grid-column: 1/-1;
  }
  .sm\:row-start-11 {
    -ms-grid-row: 11;
        grid-row-start: 11;
  }
  .sm\:row-end-11 {
    -ms-grid-row-span: 11;
    grid-row-end: 11;
  }
  .sm\:row-span-11 {
    -ms-grid-row-span: 11;
    grid-row: span 11/span 11;
  }
  .sm\:col-start-12 {
    -ms-grid-column: 12;
        grid-column-start: 12;
  }
  .sm\:col-end-12 {
    -ms-grid-column-span: 12;
    grid-column-end: 12;
  }
  .sm\:col-span-12 {
    -ms-grid-column-span: 12;
    grid-column: span 12/span 12;
  }
  .sm\:col-span-full {
    grid-column: 1/-1;
  }
  .sm\:row-start-12 {
    -ms-grid-row: 12;
        grid-row-start: 12;
  }
  .sm\:row-end-12 {
    -ms-grid-row-span: 12;
    grid-row-end: 12;
  }
  .sm\:row-span-12 {
    -ms-grid-row-span: 12;
    grid-row: span 12/span 12;
  }
}
@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;
  }
  .md\:col-start-7 {
    -ms-grid-column: 7;
        grid-column-start: 7;
  }
  .md\:col-end-7 {
    -ms-grid-column-span: 7;
    grid-column-end: 7;
  }
  .md\:col-span-7 {
    -ms-grid-column-span: 7;
    grid-column: span 7/span 7;
  }
  .md\:col-span-full {
    grid-column: 1/-1;
  }
  .md\:row-start-7 {
    -ms-grid-row: 7;
        grid-row-start: 7;
  }
  .md\:row-end-7 {
    -ms-grid-row-span: 7;
    grid-row-end: 7;
  }
  .md\:row-span-7 {
    -ms-grid-row-span: 7;
    grid-row: span 7/span 7;
  }
  .md\:col-start-8 {
    -ms-grid-column: 8;
        grid-column-start: 8;
  }
  .md\:col-end-8 {
    -ms-grid-column-span: 8;
    grid-column-end: 8;
  }
  .md\:col-span-8 {
    -ms-grid-column-span: 8;
    grid-column: span 8/span 8;
  }
  .md\:col-span-full {
    grid-column: 1/-1;
  }
  .md\:row-start-8 {
    -ms-grid-row: 8;
        grid-row-start: 8;
  }
  .md\:row-end-8 {
    -ms-grid-row-span: 8;
    grid-row-end: 8;
  }
  .md\:row-span-8 {
    -ms-grid-row-span: 8;
    grid-row: span 8/span 8;
  }
  .md\:col-start-9 {
    -ms-grid-column: 9;
        grid-column-start: 9;
  }
  .md\:col-end-9 {
    -ms-grid-column-span: 9;
    grid-column-end: 9;
  }
  .md\:col-span-9 {
    -ms-grid-column-span: 9;
    grid-column: span 9/span 9;
  }
  .md\:col-span-full {
    grid-column: 1/-1;
  }
  .md\:row-start-9 {
    -ms-grid-row: 9;
        grid-row-start: 9;
  }
  .md\:row-end-9 {
    -ms-grid-row-span: 9;
    grid-row-end: 9;
  }
  .md\:row-span-9 {
    -ms-grid-row-span: 9;
    grid-row: span 9/span 9;
  }
  .md\:col-start-10 {
    -ms-grid-column: 10;
        grid-column-start: 10;
  }
  .md\:col-end-10 {
    -ms-grid-column-span: 10;
    grid-column-end: 10;
  }
  .md\:col-span-10 {
    -ms-grid-column-span: 10;
    grid-column: span 10/span 10;
  }
  .md\:col-span-full {
    grid-column: 1/-1;
  }
  .md\:row-start-10 {
    -ms-grid-row: 10;
        grid-row-start: 10;
  }
  .md\:row-end-10 {
    -ms-grid-row-span: 10;
    grid-row-end: 10;
  }
  .md\:row-span-10 {
    -ms-grid-row-span: 10;
    grid-row: span 10/span 10;
  }
  .md\:col-start-11 {
    -ms-grid-column: 11;
        grid-column-start: 11;
  }
  .md\:col-end-11 {
    -ms-grid-column-span: 11;
    grid-column-end: 11;
  }
  .md\:col-span-11 {
    -ms-grid-column-span: 11;
    grid-column: span 11/span 11;
  }
  .md\:col-span-full {
    grid-column: 1/-1;
  }
  .md\:row-start-11 {
    -ms-grid-row: 11;
        grid-row-start: 11;
  }
  .md\:row-end-11 {
    -ms-grid-row-span: 11;
    grid-row-end: 11;
  }
  .md\:row-span-11 {
    -ms-grid-row-span: 11;
    grid-row: span 11/span 11;
  }
  .md\:col-start-12 {
    -ms-grid-column: 12;
        grid-column-start: 12;
  }
  .md\:col-end-12 {
    -ms-grid-column-span: 12;
    grid-column-end: 12;
  }
  .md\:col-span-12 {
    -ms-grid-column-span: 12;
    grid-column: span 12/span 12;
  }
  .md\:col-span-full {
    grid-column: 1/-1;
  }
  .md\:row-start-12 {
    -ms-grid-row: 12;
        grid-row-start: 12;
  }
  .md\:row-end-12 {
    -ms-grid-row-span: 12;
    grid-row-end: 12;
  }
  .md\:row-span-12 {
    -ms-grid-row-span: 12;
    grid-row: span 12/span 12;
  }
}
@media (min-width: 1240px) {
  .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;
  }
  .lg\:col-start-7 {
    -ms-grid-column: 7;
        grid-column-start: 7;
  }
  .lg\:col-end-7 {
    -ms-grid-column-span: 7;
    grid-column-end: 7;
  }
  .lg\:col-span-7 {
    -ms-grid-column-span: 7;
    grid-column: span 7/span 7;
  }
  .lg\:col-span-full {
    grid-column: 1/-1;
  }
  .lg\:row-start-7 {
    -ms-grid-row: 7;
        grid-row-start: 7;
  }
  .lg\:row-end-7 {
    -ms-grid-row-span: 7;
    grid-row-end: 7;
  }
  .lg\:row-span-7 {
    -ms-grid-row-span: 7;
    grid-row: span 7/span 7;
  }
  .lg\:col-start-8 {
    -ms-grid-column: 8;
        grid-column-start: 8;
  }
  .lg\:col-end-8 {
    -ms-grid-column-span: 8;
    grid-column-end: 8;
  }
  .lg\:col-span-8 {
    -ms-grid-column-span: 8;
    grid-column: span 8/span 8;
  }
  .lg\:col-span-full {
    grid-column: 1/-1;
  }
  .lg\:row-start-8 {
    -ms-grid-row: 8;
        grid-row-start: 8;
  }
  .lg\:row-end-8 {
    -ms-grid-row-span: 8;
    grid-row-end: 8;
  }
  .lg\:row-span-8 {
    -ms-grid-row-span: 8;
    grid-row: span 8/span 8;
  }
  .lg\:col-start-9 {
    -ms-grid-column: 9;
        grid-column-start: 9;
  }
  .lg\:col-end-9 {
    -ms-grid-column-span: 9;
    grid-column-end: 9;
  }
  .lg\:col-span-9 {
    -ms-grid-column-span: 9;
    grid-column: span 9/span 9;
  }
  .lg\:col-span-full {
    grid-column: 1/-1;
  }
  .lg\:row-start-9 {
    -ms-grid-row: 9;
        grid-row-start: 9;
  }
  .lg\:row-end-9 {
    -ms-grid-row-span: 9;
    grid-row-end: 9;
  }
  .lg\:row-span-9 {
    -ms-grid-row-span: 9;
    grid-row: span 9/span 9;
  }
  .lg\:col-start-10 {
    -ms-grid-column: 10;
        grid-column-start: 10;
  }
  .lg\:col-end-10 {
    -ms-grid-column-span: 10;
    grid-column-end: 10;
  }
  .lg\:col-span-10 {
    -ms-grid-column-span: 10;
    grid-column: span 10/span 10;
  }
  .lg\:col-span-full {
    grid-column: 1/-1;
  }
  .lg\:row-start-10 {
    -ms-grid-row: 10;
        grid-row-start: 10;
  }
  .lg\:row-end-10 {
    -ms-grid-row-span: 10;
    grid-row-end: 10;
  }
  .lg\:row-span-10 {
    -ms-grid-row-span: 10;
    grid-row: span 10/span 10;
  }
  .lg\:col-start-11 {
    -ms-grid-column: 11;
        grid-column-start: 11;
  }
  .lg\:col-end-11 {
    -ms-grid-column-span: 11;
    grid-column-end: 11;
  }
  .lg\:col-span-11 {
    -ms-grid-column-span: 11;
    grid-column: span 11/span 11;
  }
  .lg\:col-span-full {
    grid-column: 1/-1;
  }
  .lg\:row-start-11 {
    -ms-grid-row: 11;
        grid-row-start: 11;
  }
  .lg\:row-end-11 {
    -ms-grid-row-span: 11;
    grid-row-end: 11;
  }
  .lg\:row-span-11 {
    -ms-grid-row-span: 11;
    grid-row: span 11/span 11;
  }
  .lg\:col-start-12 {
    -ms-grid-column: 12;
        grid-column-start: 12;
  }
  .lg\:col-end-12 {
    -ms-grid-column-span: 12;
    grid-column-end: 12;
  }
  .lg\:col-span-12 {
    -ms-grid-column-span: 12;
    grid-column: span 12/span 12;
  }
  .lg\:col-span-full {
    grid-column: 1/-1;
  }
  .lg\:row-start-12 {
    -ms-grid-row: 12;
        grid-row-start: 12;
  }
  .lg\:row-end-12 {
    -ms-grid-row-span: 12;
    grid-row-end: 12;
  }
  .lg\:row-span-12 {
    -ms-grid-row-span: 12;
    grid-row: span 12/span 12;
  }
}
/* ----------------------------  */
/* ==Layout classes              */
/* ----------------------------- */
/* Global container */
.layout-maxed {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(20px, 1fr) minmax(auto, 380px) minmax(20px, 1fr);
  grid-template-columns: minmax(20px, 1fr) minmax(auto, 380px) minmax(20px, 1fr);
}
@media (min-width: 576px) {
  .layout-maxed {
    -ms-grid-columns: minmax(20px, 1fr) minmax(auto, 576px) minmax(20px, 1fr);
    grid-template-columns: minmax(20px, 1fr) minmax(auto, 576px) minmax(20px, 1fr);
  }
}
@media (min-width: 992px) {
  .layout-maxed {
    -ms-grid-columns: minmax(35px, 1fr) minmax(auto, 992px) minmax(35px, 1fr);
    grid-template-columns: minmax(35px, 1fr) minmax(auto, 992px) minmax(35px, 1fr);
  }
}
@media (min-width: 1240px) {
  .layout-maxed {
    -ms-grid-columns: minmax(100px, 1fr) minmax(auto, 1240px) minmax(100px, 1fr);
    grid-template-columns: minmax(100px, 1fr) minmax(auto, 1240px) minmax(100px, 1fr);
  }
}

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

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

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

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

.layout-maxed-4col {
  display: -ms-grid;
  display: grid;
  overflow: hidden;
  -ms-grid-columns: minmax(20px, 1fr) minmax(auto, 288px) minmax(auto, 288px) minmax(20px, 1fr);
  grid-template-columns: minmax(20px, 1fr) minmax(auto, 288px) minmax(auto, 288px) minmax(20px, 1fr);
}
@media (min-width: 576px) {
  .layout-maxed-4col {
    -ms-grid-columns: minmax(20px, 1fr) minmax(auto, 288px) minmax(auto, 288px) minmax(20px, 1fr);
    grid-template-columns: minmax(20px, 1fr) minmax(auto, 288px) minmax(auto, 288px) minmax(20px, 1fr);
  }
}
@media (min-width: 992px) {
  .layout-maxed-4col {
    -ms-grid-columns: minmax(35px, 1fr) minmax(auto, 496px) minmax(auto, 496px) minmax(35px, 1fr);
    grid-template-columns: minmax(35px, 1fr) minmax(auto, 496px) minmax(auto, 496px) minmax(35px, 1fr);
  }
}
@media (min-width: 1240px) {
  .layout-maxed-4col {
    -ms-grid-columns: minmax(100px, 1fr) minmax(auto, 620px) minmax(auto, 620px) minmax(100px, 1fr);
    grid-template-columns: minmax(100px, 1fr) minmax(auto, 620px) minmax(auto, 620px) minmax(100px, 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: 3;
    grid-column: 2/5;
  }
}
.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: 1;
    -ms-grid-column-span: 3;
    grid-column: 1/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;
  }
}

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

.block {
  display: block !important;
}

.inline {
  display: inline !important;
}

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

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

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

.overflow-hidden {
  overflow: hidden;
}

.overflow-visible {
  overflow: visible;
}

.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 !important;
  }
}
@media (min-width: 992px) {
  .md\:hidden {
    display: none !important;
  }
}
@media (min-width: 1240px) {
  .lg\:hidden {
    display: none !important;
  }
}
@media (min-width: 576px) {
  .sm\:block {
    display: block !important;
  }
}
@media (min-width: 992px) {
  .md\:block {
    display: block !important;
  }
}
@media (min-width: 1240px) {
  .lg\:block {
    display: block !important;
  }
}
@media (min-width: 576px) {
  .sm\:inline {
    display: inline !important;
  }
}
@media (min-width: 992px) {
  .md\:inline {
    display: inline !important;
  }
}
@media (min-width: 1240px) {
  .lg\:inline {
    display: inline !important;
  }
}
@media (min-width: 576px) {
  .sm\:inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 992px) {
  .md\:inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 1240px) {
  .lg\:inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 576px) {
  .sm\:flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}
@media (min-width: 992px) {
  .md\:flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}
@media (min-width: 1240px) {
  .lg\:flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}
@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: 1240px) {
  .lg\: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: 1240px) {
  .lg\: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: 1240px) {
  .lg\: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: 1240px) {
  .lg\: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: 1240px) {
  .lg\: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: 1240px) {
  .lg\: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: 1240px) {
  .lg\: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: 1240px) {
  .lg\: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: 1240px) {
  .lg\: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: 1240px) {
  .lg\: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: 1240px) {
  .lg\:float-left {
    float: left;
  }
}
@media (min-width: 576px) {
  .sm\:float-right {
    float: right;
  }
}
@media (min-width: 992px) {
  .md\:float-right {
    float: right;
  }
}
@media (min-width: 1240px) {
  .lg\:float-right {
    float: right;
  }
}
@media (min-width: 576px) {
  .sm\:float-none {
    float: none;
  }
}
@media (min-width: 992px) {
  .md\:float-none {
    float: none;
  }
}
@media (min-width: 1240px) {
  .lg\:float-none {
    float: none;
  }
}
@media (min-width: 576px) {
  .sm\:text-bold {
    font-weight: bold;
  }
}
@media (min-width: 992px) {
  .md\:text-bold {
    font-weight: bold;
  }
}
@media (min-width: 1240px) {
  .lg\:text-bold {
    font-weight: bold;
  }
}
@media (min-width: 576px) {
  .sm\:text-italic {
    font-style: italic;
  }
}
@media (min-width: 992px) {
  .md\:text-italic {
    font-style: italic;
  }
}
@media (min-width: 1240px) {
  .lg\:text-italic {
    font-style: italic;
  }
}
@media (min-width: 576px) {
  .sm\:text-uppercase {
    text-transform: uppercase;
  }
}
@media (min-width: 992px) {
  .md\:text-uppercase {
    text-transform: uppercase;
  }
}
@media (min-width: 1240px) {
  .lg\:text-uppercase {
    text-transform: uppercase;
  }
}
@media (min-width: 576px) {
  .sm\:text-lowercase {
    text-transform: lowercase;
  }
}
@media (min-width: 992px) {
  .md\:text-lowercase {
    text-transform: lowercase;
  }
}
@media (min-width: 1240px) {
  .lg\:text-lowercase {
    text-transform: lowercase;
  }
}
@media (min-width: 576px) {
  .sm\:text-smaller {
    font-size: smaller;
  }
}
@media (min-width: 992px) {
  .md\:text-smaller {
    font-size: smaller;
  }
}
@media (min-width: 1240px) {
  .lg\:text-smaller {
    font-size: smaller;
  }
}
@media (min-width: 576px) {
  .sm\:text-larger {
    font-size: larger;
  }
}
@media (min-width: 992px) {
  .md\:text-larger {
    font-size: larger;
  }
}
@media (min-width: 1240px) {
  .lg\:text-larger {
    font-size: larger;
  }
}
@media (min-width: 576px) {
  .sm\:text-left {
    text-align: left;
  }
}
@media (min-width: 992px) {
  .md\:text-left {
    text-align: left;
  }
}
@media (min-width: 1240px) {
  .lg\:text-left {
    text-align: left;
  }
}
@media (min-width: 576px) {
  .sm\:text-center {
    text-align: center;
  }
}
@media (min-width: 992px) {
  .md\:text-center {
    text-align: center;
  }
}
@media (min-width: 1240px) {
  .lg\:text-center {
    text-align: center;
  }
}
@media (min-width: 576px) {
  .sm\:text-right {
    text-align: right;
  }
}
@media (min-width: 992px) {
  .md\:text-right {
    text-align: right;
  }
}
@media (min-width: 1240px) {
  .lg\:text-right {
    text-align: right;
  }
}
@media (min-width: 576px) {
  .sm\:text-justify {
    text-align: justify;
  }
}
@media (min-width: 992px) {
  .md\:text-justify {
    text-align: justify;
  }
}
@media (min-width: 1240px) {
  .lg\:text-justify {
    text-align: justify;
  }
}
@media (min-width: 576px) {
  .sm\:overflow-hidden {
    overflow: hidden;
  }
}
@media (min-width: 992px) {
  .md\:overflow-hidden {
    overflow: hidden;
  }
}
@media (min-width: 1240px) {
  .lg\:overflow-hidden {
    overflow: hidden;
  }
}
@media (min-width: 576px) {
  .sm\:overflow-visible {
    overflow: visible;
  }
}
@media (min-width: 992px) {
  .md\:overflow-visible {
    overflow: visible;
  }
}
@media (min-width: 1240px) {
  .lg\:overflow-visible {
    overflow: visible;
  }
}
@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: 1240px) {
  .lg\: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: 1240px) {
  .lg\: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: 1240px) {
  .lg\: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: 1240px) {
  .lg\: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: 1240px) {
  .lg\: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: 1240px) {
  .lg\: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: 1240px) {
  .lg\: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: 1240px) {
  .lg\:justify-items-start {
    justify-items: start;
  }
}
@media (min-width: 576px) {
  .sm\:justify-items-end {
    justify-items: end;
  }
}
@media (min-width: 992px) {
  .md\:justify-items-end {
    justify-items: end;
  }
}
@media (min-width: 1240px) {
  .lg\:justify-items-end {
    justify-items: end;
  }
}
@media (min-width: 576px) {
  .sm\:justify-items-center {
    justify-items: center;
  }
}
@media (min-width: 992px) {
  .md\:justify-items-center {
    justify-items: center;
  }
}
@media (min-width: 1240px) {
  .lg\: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: 1240px) {
  .lg\: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: 1240px) {
  .lg\: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: 1240px) {
  .lg\: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: 1240px) {
  .lg\: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: 1240px) {
  .lg\: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: 1240px) {
  .lg\: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: 1240px) {
  .lg\: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: 1240px) {
  .lg\: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: 1240px) {
  .lg\: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: 1240px) {
  .lg\: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: 1240px) {
  .lg\: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: 1240px) {
  .lg\: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: 1240px) {
  .lg\: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: 1240px) {
  .lg\: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: 1240px) {
  .lg\: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: 1240px) {
  .lg\: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: 1240px) {
  .lg\: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: 1240px) {
  .lg\: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: 1240px) {
  .lg\: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: 1240px) {
  .lg\: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: 1240px) {
  .lg\:align-top {
    vertical-align: top;
  }
}
@media (min-width: 576px) {
  .sm\:align-bottom {
    vertical-align: bottom;
  }
}
@media (min-width: 992px) {
  .md\:align-bottom {
    vertical-align: bottom;
  }
}
@media (min-width: 1240px) {
  .lg\:align-bottom {
    vertical-align: bottom;
  }
}
@media (min-width: 576px) {
  .sm\:align-middle {
    vertical-align: middle;
  }
}
@media (min-width: 992px) {
  .md\:align-middle {
    vertical-align: middle;
  }
}
@media (min-width: 1240px) {
  .lg\: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: 1240px) {
  .lg\: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: 1240px) {
  .lg\: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: 1240px) {
  .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;
  }
}
/* 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: 1240px) {
  .lg\:text-10 {
    font-size: 0.625rem;
  }
}
@media (min-width: 576px) {
  .sm\:text-11 {
    font-size: 0.6875rem;
  }
}
@media (min-width: 992px) {
  .md\:text-11 {
    font-size: 0.6875rem;
  }
}
@media (min-width: 1240px) {
  .lg\:text-11 {
    font-size: 0.6875rem;
  }
}
@media (min-width: 576px) {
  .sm\:text-12 {
    font-size: 0.75rem;
  }
}
@media (min-width: 992px) {
  .md\:text-12 {
    font-size: 0.75rem;
  }
}
@media (min-width: 1240px) {
  .lg\: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: 1240px) {
  .lg\: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: 1240px) {
  .lg\: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: 1240px) {
  .lg\:text-18 {
    font-size: 1.125rem;
  }
}
@media (min-width: 576px) {
  .sm\:text-20 {
    font-size: 1.25rem;
  }
}
@media (min-width: 992px) {
  .md\:text-20 {
    font-size: 1.25rem;
  }
}
@media (min-width: 1240px) {
  .lg\: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: 1240px) {
  .lg\: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: 1240px) {
  .lg\: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: 1240px) {
  .lg\: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: 1240px) {
  .lg\:text-base {
    font-size: 1rem;
  }
}
@media (min-width: 576px) {
  .sm\:text-inherit {
    font-size: inherit;
  }
}
@media (min-width: 992px) {
  .md\:text-inherit {
    font-size: inherit;
  }
}
@media (min-width: 1240px) {
  .lg\:text-inherit {
    font-size: inherit;
  }
}
/* Spacers utility classes */
@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: 1240px) {
  .lg\:p-0 {
    padding: 0;
  }
  .lg\:pt-0 {
    padding-top: 0;
  }
  .lg\:pr-0 {
    padding-right: 0;
  }
  .lg\:pb-0 {
    padding-bottom: 0;
  }
  .lg\:pl-0 {
    padding-left: 0;
  }
  .lg\:px-0 {
    padding-left: 0;
    padding-right: 0;
  }
  .lg\:py-0 {
    padding-top: 0;
    padding-bottom: 0;
  }
  .lg\:m-0 {
    margin: 0;
  }
  .lg\:mt-0 {
    margin-top: 0;
  }
  .lg\:mr-0 {
    margin-right: 0;
  }
  .lg\:mb-0 {
    margin-bottom: 0;
  }
  .lg\:ml-0 {
    margin-left: 0;
  }
  .lg\:mx-0 {
    margin-left: 0;
    margin-right: 0;
  }
  .lg\:my-0 {
    margin-top: 0;
    margin-bottom: 0;
  }
}
.p-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-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: 1240px) {
  .lg\:p-1 {
    padding: 1px;
  }
  .lg\:pt-1 {
    padding-top: 1px;
  }
  .lg\:pr-1 {
    padding-right: 1px;
  }
  .lg\:pb-1 {
    padding-bottom: 1px;
  }
  .lg\:pl-1 {
    padding-left: 1px;
  }
  .lg\:px-1 {
    padding-left: 1px;
    padding-right: 1px;
  }
  .lg\:py-1 {
    padding-top: 1px;
    padding-bottom: 1px;
  }
  .lg\:m-1 {
    margin: 1px;
  }
  .lg\:mt-1 {
    margin-top: 1px;
  }
  .lg\:mr-1 {
    margin-right: 1px;
  }
  .lg\:mb-1 {
    margin-bottom: 1px;
  }
  .lg\:ml-1 {
    margin-left: 1px;
  }
  .lg\:mx-1 {
    margin-left: 1px;
    margin-right: 1px;
  }
  .lg\:my-1 {
    margin-top: 1px;
    margin-bottom: 1px;
  }
}
.p-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-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: 1240px) {
  .lg\:p-2 {
    padding: 0.125rem;
  }
  .lg\:pt-2 {
    padding-top: 0.125rem;
  }
  .lg\:pr-2 {
    padding-right: 0.125rem;
  }
  .lg\:pb-2 {
    padding-bottom: 0.125rem;
  }
  .lg\:pl-2 {
    padding-left: 0.125rem;
  }
  .lg\:px-2 {
    padding-left: 0.125rem;
    padding-right: 0.125rem;
  }
  .lg\:py-2 {
    padding-top: 0.125rem;
    padding-bottom: 0.125rem;
  }
  .lg\:m-2 {
    margin: 0.125rem;
  }
  .lg\:mt-2 {
    margin-top: 0.125rem;
  }
  .lg\:mr-2 {
    margin-right: 0.125rem;
  }
  .lg\:mb-2 {
    margin-bottom: 0.125rem;
  }
  .lg\:ml-2 {
    margin-left: 0.125rem;
  }
  .lg\:mx-2 {
    margin-left: 0.125rem;
    margin-right: 0.125rem;
  }
  .lg\:my-2 {
    margin-top: 0.125rem;
    margin-bottom: 0.125rem;
  }
}
.p-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-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: 1240px) {
  .lg\:p-4 {
    padding: 0.25rem;
  }
  .lg\:pt-4 {
    padding-top: 0.25rem;
  }
  .lg\:pr-4 {
    padding-right: 0.25rem;
  }
  .lg\:pb-4 {
    padding-bottom: 0.25rem;
  }
  .lg\:pl-4 {
    padding-left: 0.25rem;
  }
  .lg\:px-4 {
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }
  .lg\:py-4 {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }
  .lg\:m-4 {
    margin: 0.25rem;
  }
  .lg\:mt-4 {
    margin-top: 0.25rem;
  }
  .lg\:mr-4 {
    margin-right: 0.25rem;
  }
  .lg\:mb-4 {
    margin-bottom: 0.25rem;
  }
  .lg\:ml-4 {
    margin-left: 0.25rem;
  }
  .lg\:mx-4 {
    margin-left: 0.25rem;
    margin-right: 0.25rem;
  }
  .lg\:my-4 {
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
  }
}
.p-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-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: 1240px) {
  .lg\:p-8 {
    padding: 0.5rem;
  }
  .lg\:pt-8 {
    padding-top: 0.5rem;
  }
  .lg\:pr-8 {
    padding-right: 0.5rem;
  }
  .lg\:pb-8 {
    padding-bottom: 0.5rem;
  }
  .lg\:pl-8 {
    padding-left: 0.5rem;
  }
  .lg\:px-8 {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  .lg\:py-8 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
  .lg\:m-8 {
    margin: 0.5rem;
  }
  .lg\:mt-8 {
    margin-top: 0.5rem;
  }
  .lg\:mr-8 {
    margin-right: 0.5rem;
  }
  .lg\:mb-8 {
    margin-bottom: 0.5rem;
  }
  .lg\:ml-8 {
    margin-left: 0.5rem;
  }
  .lg\:mx-8 {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }
  .lg\:my-8 {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }
}
.p-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-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: 1240px) {
  .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;
  }
}
.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-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: 1240px) {
  .lg\:p-12 {
    padding: 0.75rem;
  }
  .lg\:pt-12 {
    padding-top: 0.75rem;
  }
  .lg\:pr-12 {
    padding-right: 0.75rem;
  }
  .lg\:pb-12 {
    padding-bottom: 0.75rem;
  }
  .lg\:pl-12 {
    padding-left: 0.75rem;
  }
  .lg\:px-12 {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
  .lg\:py-12 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }
  .lg\:m-12 {
    margin: 0.75rem;
  }
  .lg\:mt-12 {
    margin-top: 0.75rem;
  }
  .lg\:mr-12 {
    margin-right: 0.75rem;
  }
  .lg\:mb-12 {
    margin-bottom: 0.75rem;
  }
  .lg\:ml-12 {
    margin-left: 0.75rem;
  }
  .lg\:mx-12 {
    margin-left: 0.75rem;
    margin-right: 0.75rem;
  }
  .lg\:my-12 {
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
  }
}
.p-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-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: 1240px) {
  .lg\:p-16 {
    padding: 1rem;
  }
  .lg\:pt-16 {
    padding-top: 1rem;
  }
  .lg\:pr-16 {
    padding-right: 1rem;
  }
  .lg\:pb-16 {
    padding-bottom: 1rem;
  }
  .lg\:pl-16 {
    padding-left: 1rem;
  }
  .lg\:px-16 {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .lg\:py-16 {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  .lg\:m-16 {
    margin: 1rem;
  }
  .lg\:mt-16 {
    margin-top: 1rem;
  }
  .lg\:mr-16 {
    margin-right: 1rem;
  }
  .lg\:mb-16 {
    margin-bottom: 1rem;
  }
  .lg\:ml-16 {
    margin-left: 1rem;
  }
  .lg\:mx-16 {
    margin-left: 1rem;
    margin-right: 1rem;
  }
  .lg\:my-16 {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
}
.p-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-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: 1240px) {
  .lg\:p-20 {
    padding: 1.25rem;
  }
  .lg\:pt-20 {
    padding-top: 1.25rem;
  }
  .lg\:pr-20 {
    padding-right: 1.25rem;
  }
  .lg\:pb-20 {
    padding-bottom: 1.25rem;
  }
  .lg\:pl-20 {
    padding-left: 1.25rem;
  }
  .lg\:px-20 {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .lg\:py-20 {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }
  .lg\:m-20 {
    margin: 1.25rem;
  }
  .lg\:mt-20 {
    margin-top: 1.25rem;
  }
  .lg\:mr-20 {
    margin-right: 1.25rem;
  }
  .lg\:mb-20 {
    margin-bottom: 1.25rem;
  }
  .lg\:ml-20 {
    margin-left: 1.25rem;
  }
  .lg\:mx-20 {
    margin-left: 1.25rem;
    margin-right: 1.25rem;
  }
  .lg\:my-20 {
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
  }
}
.p-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-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: 1240px) {
  .lg\:p-24 {
    padding: 1.5rem;
  }
  .lg\:pt-24 {
    padding-top: 1.5rem;
  }
  .lg\:pr-24 {
    padding-right: 1.5rem;
  }
  .lg\:pb-24 {
    padding-bottom: 1.5rem;
  }
  .lg\:pl-24 {
    padding-left: 1.5rem;
  }
  .lg\:px-24 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .lg\:py-24 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
  .lg\:m-24 {
    margin: 1.5rem;
  }
  .lg\:mt-24 {
    margin-top: 1.5rem;
  }
  .lg\:mr-24 {
    margin-right: 1.5rem;
  }
  .lg\:mb-24 {
    margin-bottom: 1.5rem;
  }
  .lg\:ml-24 {
    margin-left: 1.5rem;
  }
  .lg\:mx-24 {
    margin-left: 1.5rem;
    margin-right: 1.5rem;
  }
  .lg\:my-24 {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
.p-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-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: 1240px) {
  .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;
  }
}
.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-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: 1240px) {
  .lg\:p-36 {
    padding: 2.25rem;
  }
  .lg\:pt-36 {
    padding-top: 2.25rem;
  }
  .lg\:pr-36 {
    padding-right: 2.25rem;
  }
  .lg\:pb-36 {
    padding-bottom: 2.25rem;
  }
  .lg\:pl-36 {
    padding-left: 2.25rem;
  }
  .lg\:px-36 {
    padding-left: 2.25rem;
    padding-right: 2.25rem;
  }
  .lg\:py-36 {
    padding-top: 2.25rem;
    padding-bottom: 2.25rem;
  }
  .lg\:m-36 {
    margin: 2.25rem;
  }
  .lg\:mt-36 {
    margin-top: 2.25rem;
  }
  .lg\:mr-36 {
    margin-right: 2.25rem;
  }
  .lg\:mb-36 {
    margin-bottom: 2.25rem;
  }
  .lg\:ml-36 {
    margin-left: 2.25rem;
  }
  .lg\:mx-36 {
    margin-left: 2.25rem;
    margin-right: 2.25rem;
  }
  .lg\:my-36 {
    margin-top: 2.25rem;
    margin-bottom: 2.25rem;
  }
}
.p-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-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: 1240px) {
  .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;
  }
}
.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-50 {
    padding: 3rem;
  }
  .sm\:pt-50 {
    padding-top: 3rem;
  }
  .sm\:pr-50 {
    padding-right: 3rem;
  }
  .sm\:pb-50 {
    padding-bottom: 3rem;
  }
  .sm\:pl-50 {
    padding-left: 3rem;
  }
  .sm\:px-50 {
    padding-left: 3rem;
    padding-right: 3rem;
  }
  .sm\:py-50 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  .sm\:m-50 {
    margin: 3rem;
  }
  .sm\:mt-50 {
    margin-top: 3rem;
  }
  .sm\:mr-50 {
    margin-right: 3rem;
  }
  .sm\:mb-50 {
    margin-bottom: 3rem;
  }
  .sm\:ml-50 {
    margin-left: 3rem;
  }
  .sm\:mx-50 {
    margin-left: 3rem;
    margin-right: 3rem;
  }
  .sm\:my-50 {
    margin-top: 3rem;
    margin-bottom: 3rem;
  }
}
@media (min-width: 992px) {
  .md\:p-50 {
    padding: 3rem;
  }
  .md\:pt-50 {
    padding-top: 3rem;
  }
  .md\:pr-50 {
    padding-right: 3rem;
  }
  .md\:pb-50 {
    padding-bottom: 3rem;
  }
  .md\:pl-50 {
    padding-left: 3rem;
  }
  .md\:px-50 {
    padding-left: 3rem;
    padding-right: 3rem;
  }
  .md\:py-50 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  .md\:m-50 {
    margin: 3rem;
  }
  .md\:mt-50 {
    margin-top: 3rem;
  }
  .md\:mr-50 {
    margin-right: 3rem;
  }
  .md\:mb-50 {
    margin-bottom: 3rem;
  }
  .md\:ml-50 {
    margin-left: 3rem;
  }
  .md\:mx-50 {
    margin-left: 3rem;
    margin-right: 3rem;
  }
  .md\:my-50 {
    margin-top: 3rem;
    margin-bottom: 3rem;
  }
}
@media (min-width: 1240px) {
  .lg\:p-50 {
    padding: 3rem;
  }
  .lg\:pt-50 {
    padding-top: 3rem;
  }
  .lg\:pr-50 {
    padding-right: 3rem;
  }
  .lg\:pb-50 {
    padding-bottom: 3rem;
  }
  .lg\:pl-50 {
    padding-left: 3rem;
  }
  .lg\:px-50 {
    padding-left: 3rem;
    padding-right: 3rem;
  }
  .lg\:py-50 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  .lg\:m-50 {
    margin: 3rem;
  }
  .lg\:mt-50 {
    margin-top: 3rem;
  }
  .lg\:mr-50 {
    margin-right: 3rem;
  }
  .lg\:mb-50 {
    margin-bottom: 3rem;
  }
  .lg\:ml-50 {
    margin-left: 3rem;
  }
  .lg\:mx-50 {
    margin-left: 3rem;
    margin-right: 3rem;
  }
  .lg\:my-50 {
    margin-top: 3rem;
    margin-bottom: 3rem;
  }
}
.p-50 {
  padding: 3rem;
}

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

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

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

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

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

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

.m-50 {
  margin: 3rem;
}

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

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

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

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

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

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

@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: 1240px) {
  .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;
  }
}
.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-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: 1240px) {
  .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;
  }
}
.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-75 {
    padding: 4.688rem;
  }
  .sm\:pt-75 {
    padding-top: 4.688rem;
  }
  .sm\:pr-75 {
    padding-right: 4.688rem;
  }
  .sm\:pb-75 {
    padding-bottom: 4.688rem;
  }
  .sm\:pl-75 {
    padding-left: 4.688rem;
  }
  .sm\:px-75 {
    padding-left: 4.688rem;
    padding-right: 4.688rem;
  }
  .sm\:py-75 {
    padding-top: 4.688rem;
    padding-bottom: 4.688rem;
  }
  .sm\:m-75 {
    margin: 4.688rem;
  }
  .sm\:mt-75 {
    margin-top: 4.688rem;
  }
  .sm\:mr-75 {
    margin-right: 4.688rem;
  }
  .sm\:mb-75 {
    margin-bottom: 4.688rem;
  }
  .sm\:ml-75 {
    margin-left: 4.688rem;
  }
  .sm\:mx-75 {
    margin-left: 4.688rem;
    margin-right: 4.688rem;
  }
  .sm\:my-75 {
    margin-top: 4.688rem;
    margin-bottom: 4.688rem;
  }
}
@media (min-width: 992px) {
  .md\:p-75 {
    padding: 4.688rem;
  }
  .md\:pt-75 {
    padding-top: 4.688rem;
  }
  .md\:pr-75 {
    padding-right: 4.688rem;
  }
  .md\:pb-75 {
    padding-bottom: 4.688rem;
  }
  .md\:pl-75 {
    padding-left: 4.688rem;
  }
  .md\:px-75 {
    padding-left: 4.688rem;
    padding-right: 4.688rem;
  }
  .md\:py-75 {
    padding-top: 4.688rem;
    padding-bottom: 4.688rem;
  }
  .md\:m-75 {
    margin: 4.688rem;
  }
  .md\:mt-75 {
    margin-top: 4.688rem;
  }
  .md\:mr-75 {
    margin-right: 4.688rem;
  }
  .md\:mb-75 {
    margin-bottom: 4.688rem;
  }
  .md\:ml-75 {
    margin-left: 4.688rem;
  }
  .md\:mx-75 {
    margin-left: 4.688rem;
    margin-right: 4.688rem;
  }
  .md\:my-75 {
    margin-top: 4.688rem;
    margin-bottom: 4.688rem;
  }
}
@media (min-width: 1240px) {
  .lg\:p-75 {
    padding: 4.688rem;
  }
  .lg\:pt-75 {
    padding-top: 4.688rem;
  }
  .lg\:pr-75 {
    padding-right: 4.688rem;
  }
  .lg\:pb-75 {
    padding-bottom: 4.688rem;
  }
  .lg\:pl-75 {
    padding-left: 4.688rem;
  }
  .lg\:px-75 {
    padding-left: 4.688rem;
    padding-right: 4.688rem;
  }
  .lg\:py-75 {
    padding-top: 4.688rem;
    padding-bottom: 4.688rem;
  }
  .lg\:m-75 {
    margin: 4.688rem;
  }
  .lg\:mt-75 {
    margin-top: 4.688rem;
  }
  .lg\:mr-75 {
    margin-right: 4.688rem;
  }
  .lg\:mb-75 {
    margin-bottom: 4.688rem;
  }
  .lg\:ml-75 {
    margin-left: 4.688rem;
  }
  .lg\:mx-75 {
    margin-left: 4.688rem;
    margin-right: 4.688rem;
  }
  .lg\:my-75 {
    margin-top: 4.688rem;
    margin-bottom: 4.688rem;
  }
}
.p-75 {
  padding: 4.688rem;
}

.pt-75 {
  padding-top: 4.688rem;
}

.pr-75 {
  padding-right: 4.688rem;
}

.pb-75 {
  padding-bottom: 4.688rem;
}

.pl-75 {
  padding-left: 4.688rem;
}

.px-75 {
  padding-left: 4.688rem;
  padding-right: 4.688rem;
}

.py-75 {
  padding-top: 4.688rem;
  padding-bottom: 4.688rem;
}

.m-75 {
  margin: 4.688rem;
}

.mt-75 {
  margin-top: 4.688rem;
}

.mr-75 {
  margin-right: 4.688rem;
}

.mb-75 {
  margin-bottom: 4.688rem;
}

.ml-75 {
  margin-left: 4.688rem;
}

.mx-75 {
  margin-left: 4.688rem;
  margin-right: 4.688rem;
}

.my-75 {
  margin-top: 4.688rem;
  margin-bottom: 4.688rem;
}

@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: 1240px) {
  .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;
  }
}
.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-100 {
    padding: 6.25rem;
  }
  .sm\:pt-100 {
    padding-top: 6.25rem;
  }
  .sm\:pr-100 {
    padding-right: 6.25rem;
  }
  .sm\:pb-100 {
    padding-bottom: 6.25rem;
  }
  .sm\:pl-100 {
    padding-left: 6.25rem;
  }
  .sm\:px-100 {
    padding-left: 6.25rem;
    padding-right: 6.25rem;
  }
  .sm\:py-100 {
    padding-top: 6.25rem;
    padding-bottom: 6.25rem;
  }
  .sm\:m-100 {
    margin: 6.25rem;
  }
  .sm\:mt-100 {
    margin-top: 6.25rem;
  }
  .sm\:mr-100 {
    margin-right: 6.25rem;
  }
  .sm\:mb-100 {
    margin-bottom: 6.25rem;
  }
  .sm\:ml-100 {
    margin-left: 6.25rem;
  }
  .sm\:mx-100 {
    margin-left: 6.25rem;
    margin-right: 6.25rem;
  }
  .sm\:my-100 {
    margin-top: 6.25rem;
    margin-bottom: 6.25rem;
  }
}
@media (min-width: 992px) {
  .md\:p-100 {
    padding: 6.25rem;
  }
  .md\:pt-100 {
    padding-top: 6.25rem;
  }
  .md\:pr-100 {
    padding-right: 6.25rem;
  }
  .md\:pb-100 {
    padding-bottom: 6.25rem;
  }
  .md\:pl-100 {
    padding-left: 6.25rem;
  }
  .md\:px-100 {
    padding-left: 6.25rem;
    padding-right: 6.25rem;
  }
  .md\:py-100 {
    padding-top: 6.25rem;
    padding-bottom: 6.25rem;
  }
  .md\:m-100 {
    margin: 6.25rem;
  }
  .md\:mt-100 {
    margin-top: 6.25rem;
  }
  .md\:mr-100 {
    margin-right: 6.25rem;
  }
  .md\:mb-100 {
    margin-bottom: 6.25rem;
  }
  .md\:ml-100 {
    margin-left: 6.25rem;
  }
  .md\:mx-100 {
    margin-left: 6.25rem;
    margin-right: 6.25rem;
  }
  .md\:my-100 {
    margin-top: 6.25rem;
    margin-bottom: 6.25rem;
  }
}
@media (min-width: 1240px) {
  .lg\:p-100 {
    padding: 6.25rem;
  }
  .lg\:pt-100 {
    padding-top: 6.25rem;
  }
  .lg\:pr-100 {
    padding-right: 6.25rem;
  }
  .lg\:pb-100 {
    padding-bottom: 6.25rem;
  }
  .lg\:pl-100 {
    padding-left: 6.25rem;
  }
  .lg\:px-100 {
    padding-left: 6.25rem;
    padding-right: 6.25rem;
  }
  .lg\:py-100 {
    padding-top: 6.25rem;
    padding-bottom: 6.25rem;
  }
  .lg\:m-100 {
    margin: 6.25rem;
  }
  .lg\:mt-100 {
    margin-top: 6.25rem;
  }
  .lg\:mr-100 {
    margin-right: 6.25rem;
  }
  .lg\:mb-100 {
    margin-bottom: 6.25rem;
  }
  .lg\:ml-100 {
    margin-left: 6.25rem;
  }
  .lg\:mx-100 {
    margin-left: 6.25rem;
    margin-right: 6.25rem;
  }
  .lg\:my-100 {
    margin-top: 6.25rem;
    margin-bottom: 6.25rem;
  }
}
.p-100 {
  padding: 6.25rem;
}

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

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

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

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

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

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

.m-100 {
  margin: 6.25rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.m-130 {
  margin: 8.125rem;
}

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

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

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

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

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

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

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

.pt-150 {
  padding-top: 9.375rem;
}

.pr-150 {
  padding-right: 9.375rem;
}

.pb-150 {
  padding-bottom: 9.375rem;
}

.pl-150 {
  padding-left: 9.375rem;
}

.px-150 {
  padding-left: 9.375rem;
  padding-right: 9.375rem;
}

.py-150 {
  padding-top: 9.375rem;
  padding-bottom: 9.375rem;
}

.m-150 {
  margin: 9.375rem;
}

.mt-150 {
  margin-top: 9.375rem;
}

.mr-150 {
  margin-right: 9.375rem;
}

.mb-150 {
  margin-bottom: 9.375rem;
}

.ml-150 {
  margin-left: 9.375rem;
}

.mx-150 {
  margin-left: 9.375rem;
  margin-right: 9.375rem;
}

.my-150 {
  margin-top: 9.375rem;
  margin-bottom: 9.375rem;
}

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

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

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

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

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

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

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

.m-160 {
  margin: 10rem;
}

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

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

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

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

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

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

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

.pt-180 {
  padding-top: 11.25rem;
}

.pr-180 {
  padding-right: 11.25rem;
}

.pb-180 {
  padding-bottom: 11.25rem;
}

.pl-180 {
  padding-left: 11.25rem;
}

.px-180 {
  padding-left: 11.25rem;
  padding-right: 11.25rem;
}

.py-180 {
  padding-top: 11.25rem;
  padding-bottom: 11.25rem;
}

.m-180 {
  margin: 11.25rem;
}

.mt-180 {
  margin-top: 11.25rem;
}

.mr-180 {
  margin-right: 11.25rem;
}

.mb-180 {
  margin-bottom: 11.25rem;
}

.ml-180 {
  margin-left: 11.25rem;
}

.mx-180 {
  margin-left: 11.25rem;
  margin-right: 11.25rem;
}

.my-180 {
  margin-top: 11.25rem;
  margin-bottom: 11.25rem;
}

@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: 1240px) {
  .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;
  }
}
.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;
}

html, body {
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

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

#content {
  padding-top: 70px;
}
@media screen and (max-width: 992px) {
  #content {
    padding-top: 20px;
  }
}

.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: #F8ECE4;
  padding: 0 4px;
  color: white;
}

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

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

.square {
  width: 50px;
  height: 50px;
}

.hidden\! {
  display: none !important;
}

@media screen and (min-width: 992px) {
  .md\:block\! {
    display: block !important;
  }
}

.pb-40\! {
  padding-bottom: 40px !important;
}

.overflow-visible\! {
  overflow: visible !important;
}

.swiper-pagination {
  position: absolute !important;
  left: 50% !important;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 30px !important;
  width: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 10;
}
.swiper-pagination .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.25);
  opacity: 1;
}
.swiper-pagination .swiper-pagination-bullet-active {
  background: white;
}
.swiper-pagination.dark {
  bottom: 0 !important;
}
.swiper-pagination.dark .swiper-pagination-bullet {
  background: rgba(69, 17, 19, 0.25);
}
.swiper-pagination.dark .swiper-pagination-bullet-active {
  background: #451113;
}

.swiper-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
  z-index: 2;
  padding: 20px;
}
.swiper-btns .swiper-button {
  background-color: #F8ECE4;
  height: 42px;
  width: 42px;
  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%;
}
.swiper-btns .swiper-button::after, .swiper-btns .swiper-button svg {
  font-size: 10px;
  color: #891811;
}
.swiper-btns .swiper-button.js-swiper-prev {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.swiper-btns .swiper-button.js-swiper-next {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

input[type=checkbox] {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  padding: 0 !important;
  width: 20px !important;
  height: 20px !important;
  border: 1px solid rgba(137, 24, 17, 0.3);
  border-radius: 2px !important;
  background-color: transparent;
  cursor: pointer;
  position: relative;
  vertical-align: middle;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  background: transparent !important;
}
input[type=checkbox]:checked {
  background-color: #891811;
  border-color: transparent;
}
input[type=checkbox]:checked::after {
  opacity: 1;
}

.swiper {
  max-width: 100%;
  width: 100%;
}
.swiper .swiper-wrapper {
  max-width: 100%;
  width: 100%;
}
.swiper .swiper-wrapper .swiper-slide {
  height: auto;
}

.banner-header {
  padding: 14px;
}
.banner-header .titre {
  color: #FEFCF9;
  font-size: 12px;
  line-height: normal;
  font-weight: 600;
}
@media screen and (max-width: 992px) {
  .banner-header .titre {
    font-size: 10px;
  }
}

.header-site {
  position: sticky;
  z-index: 999999;
  top: 0;
  height: 112px;
}
.header-site .header-content {
  background: #F8ECE4;
}
@media screen and (min-width: 992px) {
  .header-site .header-content {
    padding-top: 17px;
  }
  .header-site .header-content .container-content-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .header-site .header-content .container-content-header .brand {
    position: relative;
    height: 50px;
    width: 130px;
    z-index: 21;
  }
  .header-site .header-content .container-content-header .brand .link {
    width: 187px;
    height: 187px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .header-site .header-content .container-content-header .brand .link img {
    width: 100%;
    height: 100%;
    z-index: 30;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .header-site .header-content .container-content-header .header-menu .site-titre {
    font-weight: 400;
    color: #891811;
    margin: 0;
    text-align: center;
    position: relative;
  }
  .header-site .header-content .container-content-header .header-menu .site-titre:after {
    content: "";
    position: absolute;
    bottom: -5px;
    width: 85px;
    height: 1px;
    background: rgba(137, 24, 17, 0.15);
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .header-site .header-content .container-content-header .header-utils {
    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;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    position: relative;
  }
  .header-site .header-content .container-content-header .header-utils .container-nav {
    margin-top: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 12px;
  }
  .header-site .header-content .container-content-header .header-utils .container-nav .icon {
    font-size: 20px;
    color: #891811;
  }
}
.header-site .header-content .container-content-header {
  z-index: 2;
}
.header-site .lang {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  font-family: inherit;
}
@media screen and (max-width: 992px) {
  .header-site .lang {
    margin-top: 40px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.header-site .lang svg {
  font-size: 12px !important;
}
.header-site .lang .lang-toggle {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 5px;
  color: #F8ECE4;
}
.header-site .lang .lang-toggle svg {
  -webkit-transition: -webkit-transform 0.25s ease;
  transition: -webkit-transform 0.25s ease;
  transition: transform 0.25s ease;
  transition: transform 0.25s ease, -webkit-transform 0.25s ease;
}
@media (min-width: 992px) {
  .header-site .lang .lang-toggle {
    color: #891811;
  }
}
.header-site .lang .lang-current {
  opacity: 1;
  text-transform: uppercase;
}
.header-site .lang .lang-menu {
  position: absolute;
  top: 100%;
  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;
  gap: 6px;
  padding: 8px 6px 6px;
  background: #F8ECE4;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  opacity: 0;
  pointer-events: none;
  -webkit-transform-origin: top right;
          transform-origin: top right;
  -webkit-transform: translateY(-6px);
          transform: translateY(-6px);
  -webkit-transition: opacity 0.18s ease, -webkit-transform 0.18s ease;
  transition: opacity 0.18s ease, -webkit-transform 0.18s ease;
  transition: opacity 0.18s ease, transform 0.18s ease;
  transition: opacity 0.18s ease, transform 0.18s ease, -webkit-transform 0.18s ease;
}
.header-site .lang:hover .lang-menu {
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.header-site .lang:hover .lang-toggle svg {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.header-site .lang .lang-menu .lang-item,
.header-site .lang .lang-menu .lang-option {
  width: 32px;
  height: 32px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-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: 2px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  cursor: pointer;
  opacity: 0.6;
  -webkit-transition: opacity 0.12s ease, -webkit-transform 0.12s ease, -webkit-box-shadow 0.12s ease;
  transition: opacity 0.12s ease, -webkit-transform 0.12s ease, -webkit-box-shadow 0.12s ease;
  transition: transform 0.12s ease, box-shadow 0.12s ease, opacity 0.12s ease;
  transition: transform 0.12s ease, box-shadow 0.12s ease, opacity 0.12s ease, -webkit-transform 0.12s ease, -webkit-box-shadow 0.12s ease;
  background: rgba(137, 24, 17, 0.08);
}
@media screen and (max-width: 992px) {
  .header-site .lang .lang-menu .lang-item,
  .header-site .lang .lang-menu .lang-option {
    color: #451113;
    opacity: 0.8;
  }
}
.header-site .lang .lang-menu .lang-item:hover,
.header-site .lang .lang-menu .lang-item.current-lang {
  -webkit-box-shadow: 0 8px 20px rgba(137, 24, 17, 0.06);
          box-shadow: 0 8px 20px rgba(137, 24, 17, 0.06);
  opacity: 1;
}

.header-content.mobile.burger-open .burger-version .left-content .burger span:nth-child(2) {
  display: none;
}
.header-content.mobile.burger-open .burger-version .left-content .burger span:first-child {
  -webkit-transform: translate(0, 3px) rotate(45deg);
          transform: translate(0, 3px) rotate(45deg);
}
.header-content.mobile.burger-open .burger-version .left-content .burger span:last-child {
  -webkit-transform: translate(0, -2px) rotate(-45deg);
          transform: translate(0, -2px) rotate(-45deg);
}
.header-content.mobile.burger-open .menu-burger {
  -webkit-transform: translateX(0) !important;
          transform: translateX(0) !important;
}
.header-content.mobile .burger-version {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 0;
}
.header-content.mobile .burger-version .left-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.header-content.mobile .burger-version .left-content .burger {
  cursor: pointer;
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
  font-size: 14px;
  row-gap: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-radius: 5px;
  width: 40px;
  height: 40px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: rgba(137, 24, 17, 0.2);
}
.header-content.mobile .burger-version .left-content .burger span {
  display: block;
  height: 1px;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
  width: 14px;
  background-color: #891811;
}
.header-content.mobile .burger-version .left-content .burger.active span {
  position: absolute;
  background-color: #891811;
}
.header-content.mobile .burger-version .left-content .burger.active span:nth-child(2) {
  display: none;
}
.header-content.mobile .burger-version .left-content .burger.active span:first-child {
  -webkit-transform: translate(0, 0) rotate(45deg);
          transform: translate(0, 0) rotate(45deg);
}
.header-content.mobile .burger-version .left-content .burger.active span:last-child {
  -webkit-transform: translate(0, 0) rotate(-45deg);
          transform: translate(0, 0) rotate(-45deg);
}
.header-content.mobile .burger-version .left-content .brand {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 40px;
  width: 180px;
}
.header-content.mobile .burger-version .left-content .brand img {
  -o-object-fit: contain;
     object-fit: contain;
  height: 100%;
}
.header-content.mobile .burger-version .icon {
  color: #891811;
  font-size: 22px;
}
.header-content.mobile .menu-burger {
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100vh;
  width: 100vw;
  position: absolute;
  z-index: 1;
}
.header-content.mobile .menu-burger .top-container {
  padding-top: 100px;
}
.header-content.mobile .menu-burger .menu-item {
  font-family: "Raleway", sans-serif;
  padding: 20px 0;
  border-bottom: 1px solid rgba(254, 252, 249, 0.2);
}
.header-content.mobile .menu-burger .menu-item .menu-title {
  color: #F8ECE4;
  font-weight: 600;
  font-size: 16px;
}
.header-content.mobile .menu-burger .menu-item .nav-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 20px;
  gap: 12px;
}
.header-content.mobile .menu-burger .menu-item .nav-content .nav-item {
  color: #FEFCF9;
  font-weight: 500;
  opacity: 0.8;
  font-size: 14px;
  line-height: 20px;
}

.mega-menu .nav {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
}
.mega-menu .nav .nav-item:hover .nav-link::after {
  opacity: 1 !important;
}
.mega-menu .nav .nav-item:hover .nav-link svg {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.mega-menu .nav .nav-item:hover .sub-nav {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.mega-menu .nav .nav-item .nav-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 7px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #891811;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  padding: 17px 0 23px;
  position: relative;
}
.mega-menu .nav .nav-item .nav-link::after {
  position: absolute;
  content: " ";
  width: 100%;
  height: 1px;
  background-color: #891811;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  bottom: 0;
}
.mega-menu .nav .nav-item .nav-link svg {
  font-size: 10px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.mega-menu .sub-nav {
  position: absolute;
  top: 112px;
  left: 0;
  z-index: 20;
  width: 100vw;
  background-color: #F8ECE4;
  border-top: 1px solid rgba(137, 24, 17, 0.4);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.mega-menu .sub-nav .container {
  margin: 70px 0 55px 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 3fr 2fr;
  grid-template-columns: 3fr 2fr;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
.mega-menu .sub-nav .container .left-container {
  margin-right: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}
.mega-menu .sub-nav .container .left-container .menu-content {
  display: -ms-grid;
  display: grid;
  -webkit-column-gap: 35px;
     -moz-column-gap: 35px;
          column-gap: 35px;
  row-gap: 20px;
  -ms-grid-columns: 1fr 35px 1fr;
  grid-template-columns: repeat(2, 1fr);
}
.mega-menu .sub-nav .container .left-container .menu-content.flex {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-line-pack: start;
      align-content: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: max-height 0.3s ease;
  transition: max-height 0.3s ease;
  overflow: hidden;
}
.mega-menu .sub-nav .container .left-container .menu-content.flex .link {
  width: calc(50% - 17.5px);
}
.mega-menu .sub-nav .container .left-container .menu-content .link, .mega-menu .sub-nav .container .left-container .menu-content .link-dropdown {
  padding: 0 0 8px 0;
  color: rgba(69, 17, 19, 0.8);
  border-bottom: 1px solid rgba(69, 17, 19, 0.4);
  font-size: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}
.mega-menu .sub-nav .container .left-container .menu-content .link.active, .mega-menu .sub-nav .container .left-container .menu-content .link-dropdown.active {
  color: #451113;
  border-bottom: 1px solid #451113;
  font-weight: 600;
}
.mega-menu .sub-nav .container .left-container .menu-content .link.active svg, .mega-menu .sub-nav .container .left-container .menu-content .link-dropdown.active svg {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.mega-menu .sub-nav .container .left-container .menu-content .link svg, .mega-menu .sub-nav .container .left-container .menu-content .link-dropdown svg {
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transform: translateX(-5px);
          transform: translateX(-5px);
}
.mega-menu .sub-nav .container .left-container .menu-content .link:hover svg, .mega-menu .sub-nav .container .left-container .menu-content .link-dropdown:hover svg {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.mega-menu .sub-nav .container .left-container .menu-content .sub-nav-item {
  width: calc(50% - 17.5px);
}
.mega-menu .sub-nav .container .left-container .menu-content .sub-nav-item[open] .sub-sub-menu, .mega-menu .sub-nav .container .left-container .menu-content .sub-nav-item.is-open .sub-sub-menu {
  opacity: 1;
  max-height: 100%;
  padding-top: 20px;
}
.mega-menu .sub-nav .container .left-container .menu-content .sub-nav-item .sub-sub-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  opacity: 0;
  max-height: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
  width: 100%;
  -webkit-transition: max-height 0.3s ease, opacity 0.2s ease;
  transition: max-height 0.3s ease, opacity 0.2s ease;
}
.mega-menu .sub-nav .container .left-container .menu-content .sub-nav-item .sub-sub-menu .sub-link {
  font-size: 14px;
  color: #451113;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.mega-menu .sub-nav .container .left-container .menu-content .sub-nav-item .sub-sub-menu .sub-link:hover svg {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.mega-menu .sub-nav .container .left-container .menu-content .sub-nav-item .sub-sub-menu .sub-link svg {
  opacity: 0;
  -webkit-transform: translateX(-5px);
          transform: translateX(-5px);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.mega-menu .sub-nav .container .left-container .menu-content .sub-nav-item .link-dropdown svg {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  height: 10px;
  width: 10px;
}
.mega-menu .sub-nav .container img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}
.mega-menu .sub-nav .container img.big-height {
  height: 300px;
}
.mega-menu .menu-opened .sub-nav {
  display: block;
}

.footer-site .bottom-container .legals .link, .footer-site .menu-item .nav .item {
  display: block;
  font-weight: 500;
  opacity: 0.8;
  font-size: 14px;
  color: white;
}
.footer-site .bottom-container .legals .link:hover, .footer-site .menu-item .nav .item:hover {
  opacity: 1;
}

.footer-site {
  padding: 60px 0 25px;
  background-color: #891811;
  color: #FEFCF9;
}
.footer-site .logo {
  height: 80px;
  margin-bottom: 42px;
}
.footer-site .top-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 992px) {
  .footer-site .menu-item {
    max-width: 165px;
  }
}
.footer-site .menu-item .header {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 20px;
  color: #F8ECE4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.footer-site .menu-item .nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 992px) {
  .footer-site .menu-item .nav {
    margin-bottom: 12px;
  }
}
.footer-site .menu-item .nav .item {
  line-height: 20px;
}
.footer-site .top-container-mobile .menu-item {
  padding: 30px 0 10px 0;
  border-top: solid 1px rgba(255, 255, 255, 0.25);
}
.footer-site .bottom-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid rgba(254, 252, 249, 0.15);
  margin-top: 45px;
}
.footer-site .bottom-container .legals {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
.footer-site .bottom-container .legals .point {
  background-color: #FEFCF9;
  border-radius: 50%;
  width: 3px;
  height: 3px;
}
@media screen and (max-width: 992px) {
  .footer-site .bottom-container .legals .point {
    display: none;
  }
}
.footer-site .bottom-container .legals .link {
  color: #FEFCF9;
  font-size: 12px;
  font-weight: 500;
}
.footer-site .bottom-container .socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
}
.footer-site .bottom-container .socials .item {
  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%;
  background-color: #FEFCF9;
  color: #891811;
  width: 25px;
  height: 25px;
  font-size: 14px;
}
@media screen and (max-width: 992px) {
  .footer-site {
    padding: 42px 0 25px;
  }
  .footer-site .logo {
    height: 42px;
  }
  .footer-site .bottom-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 0;
    padding-top: 30px;
  }
  .footer-site .bottom-container .point {
    display: none;
  }
  .footer-site .bottom-container .legals {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .footer-site .bottom-container .socials {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-bottom: 30px;
  }
}

.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: #891811;
  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(69, 17, 19, 0.2);
  background-color: transparent;
  border-radius: 5px;
  color: #451113;
  font-family: "Raleway", 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(69, 17, 19, 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(69, 17, 19, 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(69, 17, 19, 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(69, 17, 19, 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(69, 17, 19, 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: "Raleway", 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(137, 24, 17, 0.05);
  border-radius: 5px;
  color: rgba(137, 24, 17, 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(137, 24, 17, 0.1);
  color: #891811;
}
.gform_wrapper.gravity-theme form input[type=submit].active {
  color: #891811;
}
.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: #F8ECE4;
}
.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: #F8ECE4;
}
.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: #891811;
}
.gform_wrapper.gravity-theme form .gfield--type-consent .ginput_container label a {
  text-decoration: underline;
  color: #891811;
}
.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(137, 24, 17, 0.5);
  margin-bottom: 10px;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}

.form-contact {
  background-color: #F8ECE4;
  padding: 30px 30px 50px;
  border-radius: 10px;
  max-width: 900px;
  margin: auto auto 130px;
  width: 100%;
}
@media screen and (max-width: 992px) {
  .form-contact {
    margin: auto auto 100px;
    padding: 20px 30px 30px;
  }
}
.form-contact .gform_required_legend {
  display: none;
}
.form-contact .required {
  width: 100%;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(69, 17, 19, 0.2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 12px;
  color: rgba(69, 17, 19, 0.8);
}
.form-contact .gform_fields {
  row-gap: 35px !important;
  -webkit-column-gap: 30px !important;
     -moz-column-gap: 30px !important;
          column-gap: 30px !important;
}
@media screen and (max-width: 992px) {
  .form-contact .gform_fields {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
    row-gap: 20px !important;
  }
}
.form-contact .gform_fields textarea {
  height: 160px !important;
  min-block-size: 160px !important;
}
.form-contact .gform_fields input, .form-contact .gform_fields textarea {
  border: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  background-color: #FCF8F4 !important;
  font-size: 16px !important;
  color: rgba(69, 17, 19, 0.6) !important;
  font-weight: 500 !important;
}
@media screen and (max-width: 992px) {
  .form-contact .gform_fields input, .form-contact .gform_fields textarea {
    font-size: 14px !important;
  }
}
.form-contact .gform_fields input:focus, .form-contact .gform_fields input:focus-visible, .form-contact .gform_fields textarea:focus, .form-contact .gform_fields textarea:focus-visible {
  outline: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}
.form-contact .gform_fields input {
  height: 45px;
}
.form-contact .gform_fields .gfield_label {
  font-weight: 600;
  color: #451113;
  font-size: 16px;
  margin-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3px;
}
.form-contact .gform_fields .gfield_label .gfield_required {
  color: #451113;
  font-size: 25px;
  height: 25px;
}
.form-contact .gform_button {
  width: 100% !important;
  background: #ecd5cd !important;
  color: #451113 !important;
  font-size: 14px !important;
  line-height: 20px !important;
  font-family: "Raleway", sans-serif !important;
  font-weight: 700 !important;
  padding: 14px 24px !important;
  border-radius: 5px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}
.form-contact .gform_button:hover {
  color: #F8ECE4 !important;
  background: #451113 !important;
}
.form-contact .gfield_checkbox .gchoice,
.form-contact .ginput_container_consent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px !important;
}
@media screen and (max-width: 992px) {
  .form-contact .gfield_checkbox .gchoice,
  .form-contact .ginput_container_consent {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}
.form-contact .gfield_checkbox label,
.form-contact .ginput_container_consent .gform-field-label {
  cursor: pointer;
  color: #451113;
  margin: 0 !important;
  font-size: 16px !important;
}
@media screen and (max-width: 992px) {
  .form-contact .gfield_checkbox label,
  .form-contact .ginput_container_consent .gform-field-label {
    font-size: 14px !important;
  }
}
.form-contact input[type=checkbox] {
  accent-color: #451113;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 15px !important;
  height: 15px !important;
  margin: 0;
  padding: 0;
  border-radius: 50% !important;
  border: 1px solid #451113 !important;
  background: transparent !important;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* état coché */
}
.form-contact input[type=checkbox]::before {
  content: "" !important;
  position: absolute;
  border-radius: 50%;
  width: 9px !important;
  height: 9px !important;
  background-color: #451113;
}
.form-contact input[type=checkbox]:hover::before {
  border-color: #891811;
}
.form-contact input[type=checkbox]:focus-visible {
  outline: none;
  -webkit-box-shadow: 0 0 0 4px rgba(69, 17, 19, 0.12);
          box-shadow: 0 0 0 4px rgba(69, 17, 19, 0.12);
}
.form-contact input[type=checkbox]:checked {
  border-color: #891811;
}
.form-contact input[type=checkbox]:checked::before {
  border-color: #891811;
}
.form-contact input[type=checkbox]:checked::after {
  opacity: 1;
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
}
.form-contact .ginput_container_consent a {
  color: #451113;
  text-decoration: underline;
}
.form-contact .gchoice {
  top: -10px !important;
  position: relative;
}

.breadcrumbs {
  padding-bottom: 20px;
}
@media screen and (max-width: 992px) {
  .breadcrumbs {
    padding-bottom: 40px;
  }
}
.breadcrumbs nav a, .breadcrumbs nav span {
  padding: 0;
  margin: 0;
  color: #451113;
  font-size: 14px;
  font-family: "Raleway", sans-serif;
  line-height: 20px;
  font-weight: 400;
}
.breadcrumbs nav a.last, .breadcrumbs nav span.last {
  font-weight: 600;
  color: #891811;
}
.breadcrumbs nav a.separator, .breadcrumbs nav span.separator {
  margin: 0 9px;
}
.breadcrumbs nav span:nth-child(n-1) {
  color: #891811;
}

.user-container .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.user-container:hover .fake-space {
  display: block;
  opacity: 1;
}
.user-container.menu-cart .fake-space {
  right: -5px;
}
.user-container.menu-cart .fake-space .total {
  font-weight: 600;
}
.user-container.menu-cart .fake-space .user-block {
  width: 420px;
  padding: 15px 30px;
}
.user-container.menu-cart .fake-space .user-block .woocommerce-cart-form {
  margin-top: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.user-container.menu-cart .fake-space .user-block .woocommerce-cart-form .row-panier {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 14px;
}
.user-container.menu-cart .fake-space .user-block .woocommerce-cart-form .row-panier .thumb {
  width: 90px;
  height: 90px;
  border-radius: 15px;
  background-color: #F8ECE4;
  padding: 10px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.user-container.menu-cart .fake-space .user-block .woocommerce-cart-form .row-panier .thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.user-container.menu-cart .fake-space .user-block .woocommerce-cart-form .row-panier .right-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
}
.user-container.menu-cart .fake-space .user-block .woocommerce-cart-form .row-panier .right-content .availability {
  font-size: 12px;
  font-style: italic;
  font-weight: 500;
  color: black;
  line-height: normal;
}
.user-container.menu-cart .fake-space .user-block .woocommerce-cart-form .row-panier .right-content .top-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}
.user-container.menu-cart .fake-space .user-block .woocommerce-cart-form .row-panier .right-content .top-content .row-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.user-container.menu-cart .fake-space .user-block .woocommerce-cart-form .row-panier .right-content .top-content .row-body .product-title {
  font-size: 16px;
  line-height: normal;
}
.user-container.menu-cart .fake-space .user-block .woocommerce-cart-form .row-panier .right-content .top-content .row-body .product-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
  margin-top: 10px;
}
.user-container.menu-cart .fake-space .user-block .woocommerce-cart-form .row-panier .right-content .top-content .row-body .product-price {
  color: #891811;
  font-weight: 600;
  margin-top: 5px;
  font-size: 16px;
}
.user-container.menu-cart .cart-container {
  position: relative;
}
.user-container.menu-cart .cart-container .number-cart {
  position: absolute;
  top: -2px;
  right: -7px;
  background-color: #891811;
  color: #fff;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 14px;
  font-weight: 700;
}
.user-container .fake-space {
  position: absolute;
  right: 30px;
  padding-top: 30px;
  opacity: 0;
  display: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.user-container .fake-space .user-block {
  padding: 20px 30px;
  background-color: #FCF8F4;
  border: 1px solid rgba(69, 17, 19, 0.3019607843);
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
          box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.user-container .fake-space .user-block::before {
  content: " ";
  width: 10px;
  height: 10px;
  border-right: 1px solid rgba(69, 17, 19, 0.3019607843);
  border-top: 1px solid rgba(69, 17, 19, 0.3019607843);
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  background-color: #FCF8F4;
  position: absolute;
  top: 25px;
  right: 78px;
}
.user-container .fake-space .user-block .woocommerce-form .form-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 330px;
  margin-top: 20px;
  opacity: 1;
}
.user-container .fake-space .user-block .woocommerce-form .form-row label {
  font-weight: 700;
}
.user-container .fake-space .user-block .woocommerce-form .form-row input {
  border: 1px solid rgba(69, 17, 19, 0.3019607843);
  height: 40px;
  padding: 10px;
}
.user-container .fake-space .user-block .woocommerce-form .form-row .woocommerce-button {
  width: 100% !important;
}
.user-container .fake-space .user-block .woocommerce-form .lost_password {
  opacity: 1;
}
.user-container .fake-space .user-block .p-description, .user-container .fake-space .user-block .single-article .content-article p, .single-article .content-article .user-container .fake-space .user-block p, .user-container .fake-space .user-block .single-article .content-article ul li, .single-article .content-article ul .user-container .fake-space .user-block li {
  margin-top: 30px;
}
.user-container .fake-space .user-block .btn, .user-container .fake-space .user-block .produit .left-container .add-to-cart-area .button, .produit .left-container .add-to-cart-area .user-container .fake-space .user-block .button, .user-container .fake-space .user-block .my-account .well .woocommerce-Address .edit, .my-account .well .woocommerce-Address .user-container .fake-space .user-block .edit, .user-container .fake-space .user-block .my-account .well .woocommerce-customer-details .edit, .my-account .well .woocommerce-customer-details .user-container .fake-space .user-block .edit, .user-container .fake-space .user-block .my-account .well .button, .my-account .well .user-container .fake-space .user-block .button, .user-container .fake-space .user-block .woocommerce-form .form-row .woocommerce-button {
  margin: 20px 0;
  width: 100%;
}
.user-container .fake-space .user-block .btn svg, .user-container .fake-space .user-block .produit .left-container .add-to-cart-area .button svg, .produit .left-container .add-to-cart-area .user-container .fake-space .user-block .button svg, .user-container .fake-space .user-block .my-account .well .woocommerce-Address .edit svg, .my-account .well .woocommerce-Address .user-container .fake-space .user-block .edit svg, .user-container .fake-space .user-block .my-account .well .woocommerce-customer-details .edit svg, .my-account .well .woocommerce-customer-details .user-container .fake-space .user-block .edit svg, .user-container .fake-space .user-block .my-account .well .button svg, .my-account .well .user-container .fake-space .user-block .button svg, .user-container .fake-space .user-block .woocommerce-form .form-row .woocommerce-button svg {
  color: #F8ECE4 !important;
}
.user-container .fake-space .user-block .rappel {
  font-size: 12px;
  line-height: 16px;
}
.user-container .fake-space .user-block .disclaimer {
  font-size: 10px;
  margin-top: 30px;
  font-weight: 500;
  line-height: 14px;
}

.btn, .produit .left-container .add-to-cart-area .button, .my-account .well .woocommerce-Address .edit, .my-account .well .woocommerce-customer-details .edit, .my-account .well .button, .user-container .fake-space .user-block .woocommerce-form .form-row .woocommerce-button,
.button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 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;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 14px;
  line-height: normal;
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  padding: 14px 24px;
  border-radius: 5px;
  text-align: center;
}
@media screen and (max-width: 992px) {
  .btn, .produit .left-container .add-to-cart-area .button, .my-account .well .woocommerce-Address .edit, .my-account .well .woocommerce-customer-details .edit, .my-account .well .button, .user-container .fake-space .user-block .woocommerce-form .form-row .woocommerce-button,
  .button {
    width: 100%;
  }
}

.btn:focus, .produit .left-container .add-to-cart-area .button:focus, .my-account .well .woocommerce-Address .edit:focus, .my-account .well .woocommerce-customer-details .edit:focus, .my-account .well .button:focus, .user-container .fake-space .user-block .woocommerce-form .form-row .woocommerce-button:focus,
.button:focus {
  -webkit-tap-highlight-color: transparent;
}

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

.btn-primary-dark {
  color: #FEFCF9;
  background-color: #451113;
}
.btn-primary-dark:focus, .btn-primary-dark:active, .btn-primary-dark:hover {
  color: #FEFCF9;
  background-color: #0c0303;
}

.btn-primary, .produit .left-container .add-to-cart-area .button, .my-account .well .button, .user-container .fake-space .user-block .woocommerce-form .form-row .woocommerce-button {
  color: #FEFCF9;
  background-color: #891811;
}
.btn-primary:focus, .produit .left-container .add-to-cart-area .button:focus, .my-account .well .button:focus, .user-container .fake-space .user-block .woocommerce-form .form-row .woocommerce-button:focus, .btn-primary:active, .produit .left-container .add-to-cart-area .button:active, .my-account .well .button:active, .user-container .fake-space .user-block .woocommerce-form .form-row .woocommerce-button:active, .btn-primary:hover, .produit .left-container .add-to-cart-area .button:hover, .my-account .well .button:hover, .user-container .fake-space .user-block .woocommerce-form .form-row .woocommerce-button:hover {
  color: #FEFCF9;
  background-color: #490d09;
}

.btn-primary-light {
  color: #FEFCF9;
  background-color: #E75B54;
}
.btn-primary-light:focus, .btn-primary-light:active, .btn-primary-light:hover {
  color: #FEFCF9;
  background-color: #d6271e;
}

.btn-secondary, .my-account .well .woocommerce-Address .edit, .my-account .well .woocommerce-customer-details .edit {
  color: #891811;
  background-color: #F8ECE4;
}
.btn-secondary:focus, .my-account .well .woocommerce-Address .edit:focus, .my-account .well .woocommerce-customer-details .edit:focus, .btn-secondary:active, .my-account .well .woocommerce-Address .edit:active, .my-account .well .woocommerce-customer-details .edit:active, .btn-secondary:hover, .my-account .well .woocommerce-Address .edit:hover, .my-account .well .woocommerce-customer-details .edit:hover {
  color: #891811;
  background-color: #e9c4ab;
}

.btn-body-bg {
  color: #891811;
  background-color: #FCF8F4;
}
.btn-body-bg:focus, .btn-body-bg:active, .btn-body-bg:hover {
  color: #891811;
  background-color: #edd4bc;
}

.btn-white {
  color: #891811;
  background-color: #FEFCF9;
}
.btn-white:focus, .btn-white:active, .btn-white:hover {
  color: #891811;
  background-color: #f4ddbc;
}

.btn-red-light {
  color: #891811;
  background-color: #F0E6E0;
}
.btn-red-light:focus, .btn-red-light:active, .btn-red-light:hover {
  color: #891811;
  background-color: #d9bfb0;
}

.btn-secondary, .my-account .well .woocommerce-Address .edit, .my-account .well .woocommerce-customer-details .edit {
  color: #451113;
  background-color: rgba(137, 24, 17, 0.1);
}
.btn-secondary:hover, .my-account .well .woocommerce-Address .edit:hover, .my-account .well .woocommerce-customer-details .edit:hover {
  color: #F8ECE4;
  background: #451113;
}

.btn-white {
  color: #451113;
}

.underline-link, .user-container .fake-space .user-block .woocommerce-form .lost_password {
  padding-bottom: 1px;
  border-bottom: 1px solid #451113;
  color: #451113;
  cursor: pointer;
  font-weight: 600;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
}
@media screen and (max-width: 992px) {
  .underline-link, .user-container .fake-space .user-block .woocommerce-form .lost_password {
    font-size: 12px;
    font-weight: 500;
  }
  .underline-link.big, .user-container .fake-space .user-block .woocommerce-form .big.lost_password {
    font-size: 16px;
  }
}
.underline-link.small, .user-container .fake-space .user-block .woocommerce-form .small.lost_password {
  font-size: 14px;
}
.underline-link svg, .user-container .fake-space .user-block .woocommerce-form .lost_password svg {
  font-size: 10px;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
@media screen and (max-width: 992px) {
  .underline-link svg, .user-container .fake-space .user-block .woocommerce-form .lost_password svg {
    font-size: 8px;
  }
}

.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(137, 24, 17, 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 .produit .left-container .add-to-cart-area .button, .produit .left-container .add-to-cart-area dialog.modal .modal-header .button, dialog.modal .modal-header .my-account .well .woocommerce-Address .edit, .my-account .well .woocommerce-Address dialog.modal .modal-header .edit, dialog.modal .modal-header .my-account .well .woocommerce-customer-details .edit, .my-account .well .woocommerce-customer-details dialog.modal .modal-header .edit, dialog.modal .modal-header .my-account .well .button, .my-account .well dialog.modal .modal-header .button, dialog.modal .modal-header .user-container .fake-space .user-block .woocommerce-form .form-row .woocommerce-button, .user-container .fake-space .user-block .woocommerce-form .form-row dialog.modal .modal-header .woocommerce-button {
  background-color: rgba(137, 24, 17, 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(137, 24, 17, 0.7);
}
dialog.modal::-ms-backdrop {
  background-color: rgba(137, 24, 17, 0.3);
  backdrop-filter: blur(7px);
}
dialog.modal::backdrop {
  background-color: rgba(137, 24, 17, 0.3);
  backdrop-filter: blur(7px);
}

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

.tac {
  text-align: center;
}

.tar {
  text-align: right;
}

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

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

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

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

.text-body-bg {
  color: #FCF8F4 !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

.primary-title, h1 {
  font-size: 60px;
  line-height: 75px;
  margin: 0;
}
@media screen and (max-width: 992px) {
  .primary-title, h1 {
    font-size: 40px;
    line-height: 50px;
  }
}

.secondary-title, h2 {
  font-size: 40px;
  line-height: 50px;
  font-weight: 600;
}
@media screen and (max-width: 992px) {
  .secondary-title, h2 {
    font-size: 25px;
    line-height: 35px;
  }
}

.tertiary-title, .single-article .content-article h2, h3 {
  font-size: 25px;
  line-height: 35px;
  margin: 0;
}
@media screen and (max-width: 992px) {
  .tertiary-title, .single-article .content-article h2, h3 {
    font-size: 20px;
    line-height: 25px;
  }
}

.fourth-title, .my-account .well fieldset legend, .my-account .well .woocommerce-MyAccount-content h2, .single-article .content-article h3, h4 {
  font-size: 18px;
  line-height: 30px;
  margin: 0;
  font-weight: 600;
}

.p-description, .single-article .content-article p, .single-article .content-article ul li {
  font-size: 16px;
  line-height: 25px;
  margin: 0;
  opacity: 0.8;
}
@media screen and (max-width: 992px) {
  .p-description, .single-article .content-article p, .single-article .content-article ul li {
    font-size: 14px;
    line-height: 20px;
  }
}
.p-description.small, .single-article .content-article p.small, .single-article .content-article ul li.small {
  font-size: 14px;
  line-height: 20px;
}

p {
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  line-height: 25px;
  color: #451113;
}
@media screen and (max-width: 992px) {
  p {
    font-size: 14px;
    line-height: 20px;
  }
}
p.xs {
  font-size: 11px;
}
p.s {
  font-size: 14px;
  line-height: 20px;
}
p.xl {
  font-size: 18px;
  line-height: 30px;
}
@media screen and (max-width: 992px) {
  p.xl {
    font-size: 14px;
    line-height: 20px;
  }
}
p.full {
  opacity: 1;
}

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

.well-primary-dark {
  background-color: #451113;
  color: #FEFCF9;
  border: 1px solid #310c0d;
}

.well-primary {
  background-color: #891811;
  color: #FEFCF9;
  border: 1px solid #72140e;
}

.well-primary-light {
  background-color: #E75B54;
  color: #FEFCF9;
  border: 1px solid #e4463e;
}

.well-secondary {
  background-color: #F8ECE4;
  color: #891811;
  border: 1px solid #f3ded0;
}

.well-body-bg {
  background-color: #FCF8F4;
  color: #891811;
  border: 1px solid #f7ebe0;
}

.well-white {
  background-color: #FEFCF9;
  color: #891811;
  border: 1px solid #faf1e3;
}

.well-red-light {
  background-color: #F0E6E0;
  color: #891811;
  border: 1px solid #e8d8cf;
}

.bg-primary-dark {
  background-color: #451113;
  color: #FEFCF9;
}

.bg-primary {
  background-color: #891811;
  color: #FEFCF9;
}

.bg-primary-light {
  background-color: #E75B54;
  color: #FEFCF9;
}

.bg-secondary {
  background-color: #F8ECE4;
  color: #891811;
}

.bg-body-bg {
  background-color: #FCF8F4;
  color: #891811;
}

.bg-white {
  background-color: #FEFCF9;
  color: #891811;
}

.bg-red-light {
  background-color: #F0E6E0;
  color: #891811;
}

.bg-secondary {
  color: #451113 !important;
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  margin-top: 70px;
}
@media screen and (max-width: 992px) {
  .pagination {
    margin-top: 50px;
  }
}
.pagination .page a,
.pagination .current span {
  width: 50px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 600;
  font-size: 20px;
  line-height: 25px;
  color: #891811;
  opacity: 0.4;
}
.pagination .current span {
  opacity: 1;
}
.pagination .pagination-pages {
  gap: 5px;
}
.pagination .pagination-pages .pagination-page {
  font-family: "Montserrat", sans-serif;
  padding: 15px;
  font-size: 20px;
  font-weight: 600;
  opacity: 0.4;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 992px) {
  .pagination .pagination-pages .pagination-page {
    padding: 10px;
  }
}
.pagination .pagination-pages .pagination-page.is-current, .pagination .pagination-pages .pagination-page:hover {
  opacity: 1;
}
.pagination .pagination-next, .pagination .pagination-prev {
  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;
  background-color: #891811;
  border-radius: 50%;
  cursor: pointer;
}
@media screen and (max-width: 992px) {
  .pagination .pagination-next, .pagination .pagination-prev {
    width: 30px;
    height: 30px;
  }
}
.pagination .pagination-next.is-disabled, .pagination .pagination-prev.is-disabled {
  -webkit-filter: none;
          filter: none;
}
.pagination .pagination-next svg, .pagination .pagination-prev svg {
  color: white;
  font-size: 10px;
}
@media screen and (max-width: 992px) {
  .pagination .pagination-next svg, .pagination .pagination-prev svg {
    font-size: 7px;
  }
}
.pagination .pagination-next {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.pagination .pagination-prev {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.badge-container {
  position: absolute;
  left: 20px;
  top: 20px;
  z-index: 2;
  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;
}
.badge-container.right {
  left: auto;
  right: 20px;
}
@media screen and (max-width: 992px) {
  .badge-container:not(.extra) {
    top: 5px;
    left: 5px;
  }
  .badge-container .extra .badge {
    font-size: 12px;
  }
}

.badge {
  display: inline-block;
  padding: 7px 12px;
  white-space: nowrap;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  line-height: normal;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 992px) {
  .badge {
    font-size: 10px;
    padding: 5px 15px;
    gap: 3px;
  }
}
.badge:empty {
  display: none;
}
.badge .icon {
  font-size: 18px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 992px) {
  .badge .icon {
    font-size: 10px;
  }
}

.badge-primary-dark {
  background-color: #451113;
  color: white;
}

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

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

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

.badge-body-bg {
  background-color: #FCF8F4;
  color: white;
}

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

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

.badge-light {
  color: #891811;
}

.accordion-container .accordion {
  border-bottom: 1px solid #891811;
  padding: 30px 0;
}
.accordion-container .accordion:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.accordion-container .accordion:first-child {
  padding-top: 0;
}
.accordion-container .accordion .title {
  font-size: 18px;
  color: #451113;
  font-weight: 600;
}
.accordion-container .accordion .content {
  margin-top: 30px;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  max-height: 0;
  overflow: hidden;
}
.accordion-container .accordion[open] .title .icon {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.accordion-container .accordion[open] .content {
  opacity: 1;
  max-height: 100%;
}
@media screen and (max-width: 992px) {
  .accordion-container .accordion {
    padding: 20px 0;
  }
  .accordion-container .accordion .title {
    font-size: 14px;
    line-height: 20px;
  }
  .accordion-container .accordion .content {
    margin-top: 20px;
  }
}

.st_accordion .st_accordion-header {
  position: relative;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  cursor: pointer;
}
.st_accordion .st_accordion-header:not(.no-children):after {
  content: "";
  float: right;
  width: 10px;
  height: 18px;
  -webkit-mask: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABMAAAALCAYAAACd1bY6AAAABHNCSVQICAgIfAhkiAAAALRJREFUKFNjZCAAfrx+fIeBkVGJgYFxCoeIdB4+5Yz4JH++ebLgPwNDPEwNkJ3IKSKzAJcenIahG0SMgVgNQzGIkeEiw3/GWQwM/6cSMhDDMHSD2Jl+OzAKKn74/uZJAlDxfHwGohiGyyCYAYQMhBtGyCBiDAQbRqxBhAxkJNUgXAYyMjAFMv548+QDUAE/AzDWYIFNKCFjM/D///+NQJc9C/j3/68BB8ufCaBYI9YgmDpk/QCUOIFJqnA8WgAAAABJRU5ErkJggg==) no-repeat center/contain;
          mask: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABMAAAALCAYAAACd1bY6AAAABHNCSVQICAgIfAhkiAAAALRJREFUKFNjZCAAfrx+fIeBkVGJgYFxCoeIdB4+5Yz4JH++ebLgPwNDPEwNkJ3IKSKzAJcenIahG0SMgVgNQzGIkeEiw3/GWQwM/6cSMhDDMHSD2Jl+OzAKKn74/uZJAlDxfHwGohiGyyCYAYQMhBtGyCBiDAQbRqxBhAxkJNUgXAYyMjAFMv548+QDUAE/AzDWYIFNKCFjM/D///+NQJc9C/j3/68BB8ufCaBYI9YgmDpk/QCUOIFJqnA8WgAAAABJRU5ErkJggg==) no-repeat center/contain;
  background-size: contain;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  -webkit-transition: linear 0.2s;
  transition: linear 0.2s;
  background-color: #F8ECE4;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.st_accordion[open] .st_accordion-header:after {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: linear 0.2s;
  transition: linear 0.2s;
}
.st_accordion.dark .st_accordion-header::after {
  background-color: #451113;
  -webkit-mask: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABMAAAALCAYAAACd1bY6AAAABHNCSVQICAgIfAhkiAAAALRJREFUKFNjZCAAfrx+fIeBkVGJgYFxCoeIdB4+5Yz4JH++ebLgPwNDPEwNkJ3IKSKzAJcenIahG0SMgVgNQzGIkeEiw3/GWQwM/6cSMhDDMHSD2Jl+OzAKKn74/uZJAlDxfHwGohiGyyCYAYQMhBtGyCBiDAQbRqxBhAxkJNUgXAYyMjAFMv548+QDUAE/AzDWYIFNKCFjM/D///+NQJc9C/j3/68BB8ufCaBYI9YgmDpk/QCUOIFJqnA8WgAAAABJRU5ErkJggg==) no-repeat center/contain;
          mask: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABMAAAALCAYAAACd1bY6AAAABHNCSVQICAgIfAhkiAAAALRJREFUKFNjZCAAfrx+fIeBkVGJgYFxCoeIdB4+5Yz4JH++ebLgPwNDPEwNkJ3IKSKzAJcenIahG0SMgVgNQzGIkeEiw3/GWQwM/6cSMhDDMHSD2Jl+OzAKKn74/uZJAlDxfHwGohiGyyCYAYQMhBtGyCBiDAQbRqxBhAxkJNUgXAYyMjAFMv548+QDUAE/AzDWYIFNKCFjM/D///+NQJc9C/j3/68BB8ufCaBYI9YgmDpk/QCUOIFJqnA8WgAAAABJRU5ErkJggg==) no-repeat center/contain;
}

.caret {
  position: relative;
  display: inline-block;
  width: 8px;
  height: 2px;
}
.caret::before, .caret::after {
  content: "";
  position: absolute;
  border-radius: 9999px;
  background-color: #891811;
  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);
}

.filter-container {
  border: 1px solid rgba(69, 17, 19, 0.3);
  border-left: none;
  border-right: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  overflow: visible;
}
@media screen and (max-width: 992px) {
  .filter-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 40px;
    border: none;
  }
}
.filter-container .filter-toggle {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 992px) {
  .filter-container .filter-toggle {
    border: 1px solid rgba(69, 17, 19, 0.3);
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.filter-container .filter-toggle .filter-details .filter-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  cursor: pointer;
  list-style: none;
  font-weight: 500;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding: 20px 0;
}
@media screen and (max-width: 992px) {
  .filter-container .filter-toggle .filter-details .filter-button {
    padding: 15px 0;
  }
}
.filter-container .filter-toggle .filter-details .filter-button svg {
  -webkit-transition: -webkit-transform 0.18s ease;
  transition: -webkit-transform 0.18s ease;
  transition: transform 0.18s ease;
  transition: transform 0.18s ease, -webkit-transform 0.18s ease;
  font-size: 10px;
}
.filter-container .filter-toggle .filter-details .filter-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  pointer-events: none;
  position: absolute;
  visibility: hidden;
  right: 0;
  top: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 5px;
  opacity: 0;
  border: 1px solid rgba(69, 17, 19, 0.3);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 992px) {
  .filter-container .filter-toggle .filter-details .filter-content {
    width: 100%;
  }
}
.filter-container .filter-toggle .filter-details .filter-content .link {
  padding: 15px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  white-space: nowrap;
  -webkit-transition: all 250ms ease;
  transition: all 250ms ease;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}
.filter-container .filter-toggle .filter-details .filter-content .link span {
  background: #FEFCF9;
  border-radius: 100%;
  border: 1px solid rgba(69, 17, 19, 0.7);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 15px;
  height: 15px;
  position: relative;
  margin-right: 0.6em;
  text-align: center;
  -webkit-transition: all 250ms ease;
  transition: all 250ms ease;
}
.filter-container .filter-toggle .filter-details .filter-content .link.active span {
  background-color: #451113;
  -webkit-box-shadow: inset 0 0 0 2px #f4f4f4;
          box-shadow: inset 0 0 0 2px #f4f4f4;
}
.filter-container .filter-toggle .filter-details .filter-content .link:hover {
  background-color: rgba(137, 24, 17, 0.2);
}
.filter-container .filter-toggle .filter-details .filter-content .link:hover span {
  outline: none;
  border-color: #451113;
}
.filter-container .filter-toggle .filter-details:open .filter-button svg {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.filter-container .filter-toggle .filter-details:open .filter-content {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.filter-container .nav-pills {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0;
  width: auto;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.filter-container .nav-pills::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}
@media screen and (max-width: 992px) {
  .filter-container .nav-pills {
    gap: 10px;
    margin: -20px;
    padding: 20px;
  }
}
@media screen and (min-width: 992px) {
  .filter-container .nav-pills .link:nth-child(2) {
    padding-left: 30px;
  }
}
.filter-container .nav-pills .link {
  display: inline-block;
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
  padding: 22px 15px;
  font-size: 14px;
  color: #451113;
  font-weight: 500;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 992px) {
  .filter-container .nav-pills .link {
    border-radius: 18px;
    padding: 10px 15px;
    font-size: 14px;
    background-color: rgba(137, 24, 17, 0.2);
  }
}
.filter-container .nav-pills .link:hover, .filter-container .nav-pills .link.active {
  color: #fff;
  background-color: #891811;
}
@media screen and (min-width: 992px) {
  .filter-container .nav-pills .link.active {
    padding: 22px 25px;
  }
}

.card-post {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  position: relative;
  height: 100%;
}
.card-post .badge {
  color: rgba(69, 17, 19, 0.8);
}
.card-post:hover img {
  -webkit-transform: scale(1.1) !important;
          transform: scale(1.1) !important;
}
.card-post .container-image {
  height: 250px;
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
}
@media screen and (max-width: 992px) {
  .card-post .container-image {
    height: 200px;
  }
}
.card-post .container-image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.card-post .content {
  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;
}
.card-post .content .excerpt {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.card-post .link {
  font-weight: 500;
  padding-bottom: 3px;
  border-bottom: 1px solid #451113;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: auto;
}
.card-post .link .icon {
  font-size: 11px;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.card-boutique.closed .wrap-img::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(69, 17, 19, 0.6);
  top: 0;
  left: 0;
  border-radius: 10px;
}
.card-boutique.closed .wrap-img .tertiary-title, .card-boutique.closed .wrap-img .single-article .content-article h2, .single-article .content-article .card-boutique.closed .wrap-img h2 {
  color: #F8ECE4;
  z-index: 10;
  padding: 10px;
}
.card-boutique .wrap-img {
  position: relative;
  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;
}
.card-boutique .wrap-img img {
  height: 270px;
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
@media screen and (max-width: 992px) {
  .card-boutique .wrap-img img {
    height: 110px;
  }
}
.card-boutique .wrap-img svg {
  font-size: 38px;
}
@media screen and (max-width: 992px) {
  .card-boutique .wrap-img svg {
    display: none;
  }
}
.card-boutique .wrap-img .tertiary-title, .card-boutique .wrap-img .single-article .content-article h2, .single-article .content-article .card-boutique .wrap-img h2 {
  position: absolute;
  color: #F8ECE4;
  text-align: center;
}
.card-boutique .tertiary-title, .card-boutique .single-article .content-article h2, .single-article .content-article .card-boutique h2 {
  margin: 20px 0;
  z-index: 2;
}
@media screen and (max-width: 992px) {
  .card-boutique .tertiary-title, .card-boutique .single-article .content-article h2, .single-article .content-article .card-boutique h2 {
    font-size: 14px;
    margin: 15px 0;
    line-height: normal;
  }
}
.card-boutique .info-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  margin-bottom: 10px;
  color: #891811;
  font-weight: 600;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
@media screen and (max-width: 992px) {
  .card-boutique .info-item {
    font-size: 12px;
    gap: 7px;
  }
}
.card-boutique .info-item svg {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.card-boutique .badge {
  margin-top: 25px;
}
@media screen and (max-width: 992px) {
  .card-boutique .badge {
    margin-top: 15px;
  }
}
.card-boutique .underline-link, .card-boutique .user-container .fake-space .user-block .woocommerce-form .lost_password, .user-container .fake-space .user-block .woocommerce-form .card-boutique .lost_password {
  margin-top: 10px;
}

.card-recette:hover img {
  -webkit-transform: scale(1.1) !important;
          transform: scale(1.1) !important;
}
.card-recette .container-image {
  height: 375px;
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
}
@media screen and (max-width: 992px) {
  .card-recette .container-image {
    height: 200px;
  }
}
.card-recette .container-image img {
  height: 100%;
  width: 100%;
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.card-recette .tertiary-title, .card-recette .single-article .content-article h2, .single-article .content-article .card-recette h2 {
  margin-top: 20px;
}

.card-product {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: -webkit-fill-available;
}
.card-product .container-image {
  background-color: rgba(254, 252, 249, 0.45);
  border-radius: 10px;
  margin-bottom: 20px;
  height: 300px;
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
@media screen and (max-width: 992px) {
  .card-product .container-image {
    margin-bottom: 15px;
    height: 170px;
  }
}
.card-product .container-image .image {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.card-product .container-image .badge-primary-dark {
  color: #F8ECE4;
}
@media screen and (max-width: 992px) {
  .card-product .container-image .badge-primary-dark {
    font-size: 9px;
    padding: 5px 9px;
  }
}
.card-product .titre-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 15px;
  gap: 8px;
}
@media screen and (max-width: 992px) {
  .card-product .titre-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    margin-bottom: 10px;
  }
}
.card-product .titre-container .fourth-title, .card-product .titre-container .my-account .well fieldset legend, .my-account .well fieldset .card-product .titre-container legend, .card-product .titre-container .my-account .well .woocommerce-MyAccount-content h2, .my-account .well .woocommerce-MyAccount-content .card-product .titre-container h2, .card-product .titre-container .single-article .content-article h3, .single-article .content-article .card-product .titre-container h3 {
  line-height: 22px;
}
@media screen and (max-width: 992px) {
  .card-product .titre-container .fourth-title, .card-product .titre-container .my-account .well fieldset legend, .my-account .well fieldset .card-product .titre-container legend, .card-product .titre-container .my-account .well .woocommerce-MyAccount-content h2, .my-account .well .woocommerce-MyAccount-content .card-product .titre-container h2, .card-product .titre-container .single-article .content-article h3, .single-article .content-article .card-product .titre-container h3 {
    font-size: 14px;
    line-height: 18px;
  }
}
.card-product .titre-container .prix {
  font-weight: 600;
  color: #891811;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.card-product .livraison-box {
  padding-top: 10px;
  border-top: 1px solid rgba(137, 24, 17, 0.15);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 22px;
  margin-bottom: 25px;
}
@media screen and (max-width: 992px) {
  .card-product .livraison-box {
    border: none;
    padding: 0;
    gap: 7px;
    margin-bottom: 18px;
  }
}
.card-product .livraison-box .container-livraison {
  color: #451113;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}
.card-product .livraison-box .container-livraison.disabled {
  opacity: 0.25;
}
.card-product .livraison-box .container-livraison .icon {
  font-size: 20px;
}
.card-product .livraison-box .container-livraison .label {
  font-size: 11px;
  line-height: normal;
  margin: 0;
  font-weight: 600;
}
@media screen and (max-width: 992px) {
  .card-product .livraison-box .container-livraison .label {
    display: none;
  }
}
.card-product .btn, .card-product .produit .left-container .add-to-cart-area .button, .produit .left-container .add-to-cart-area .card-product .button, .card-product .my-account .well .woocommerce-Address .edit, .my-account .well .woocommerce-Address .card-product .edit, .card-product .my-account .well .woocommerce-customer-details .edit, .my-account .well .woocommerce-customer-details .card-product .edit, .card-product .my-account .well .button, .my-account .well .card-product .button, .card-product .user-container .fake-space .user-block .woocommerce-form .form-row .woocommerce-button, .user-container .fake-space .user-block .woocommerce-form .form-row .card-product .woocommerce-button {
  width: 100%;
}
@media screen and (max-width: 992px) {
  .card-product .btn, .card-product .produit .left-container .add-to-cart-area .button, .produit .left-container .add-to-cart-area .card-product .button, .card-product .my-account .well .woocommerce-Address .edit, .my-account .well .woocommerce-Address .card-product .edit, .card-product .my-account .well .woocommerce-customer-details .edit, .my-account .well .woocommerce-customer-details .card-product .edit, .card-product .my-account .well .button, .my-account .well .card-product .button, .card-product .user-container .fake-space .user-block .woocommerce-form .form-row .woocommerce-button, .user-container .fake-space .user-block .woocommerce-form .form-row .card-product .woocommerce-button {
    font-size: 12px;
  }
}

.section-newsletter {
  border-top: 1px solid rgba(69, 17, 19, 0.3);
  padding: 80px 0;
}
@media screen and (max-width: 992px) {
  .section-newsletter {
    padding: 70px 0;
  }
}
.section-newsletter .container-newsletter {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 992px) {
  .section-newsletter .container-newsletter {
    -ms-grid-columns: 1fr;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
  }
}
@media screen and (min-width: 992px) {
  .section-newsletter .container-newsletter .tertiary-title, .section-newsletter .container-newsletter .single-article .content-article h2, .single-article .content-article .section-newsletter .container-newsletter h2 {
    margin-right: 180px;
  }
}
.section-newsletter .container-newsletter .container-gravity .gform_heading {
  display: none !important;
}
.section-newsletter .container-newsletter .container-gravity .gform_footer {
  margin: 0 !important;
}
.section-newsletter .container-newsletter .container-gravity form {
  position: relative;
}
.section-newsletter .container-newsletter .container-gravity form .gform_fields {
  gap: 25px;
}
@media screen and (max-width: 992px) {
  .section-newsletter .container-newsletter .container-gravity form .gform_fields {
    gap: 30px;
  }
}
.section-newsletter .container-newsletter .container-gravity form .ginput_container_email label {
  display: none;
}
.section-newsletter .container-newsletter .container-gravity form .ginput_container_email input {
  border: 1px solid rgba(69, 17, 19, 0.3);
  border-radius: 5px;
  height: 50px;
  color: #451113;
  background: transparent;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}
.section-newsletter .container-newsletter .container-gravity form .ginput_container_email input::-webkit-input-placeholder {
  color: #451113;
  font-weight: 400;
  opacity: 1;
}
.section-newsletter .container-newsletter .container-gravity form .ginput_container_email input::-moz-placeholder {
  color: #451113;
  font-weight: 400;
  opacity: 1;
}
.section-newsletter .container-newsletter .container-gravity form .ginput_container_email input:-ms-input-placeholder {
  color: #451113;
  font-weight: 400;
  opacity: 1;
}
.section-newsletter .container-newsletter .container-gravity form .ginput_container_email input::-ms-input-placeholder {
  color: #451113;
  font-weight: 400;
  opacity: 1;
}
.section-newsletter .container-newsletter .container-gravity form .ginput_container_email input::placeholder {
  color: #451113;
  font-weight: 400;
  opacity: 1;
}
.section-newsletter .container-newsletter .container-gravity form .ginput_container_email input:focus {
  outline: none;
}
.section-newsletter .container-newsletter .container-gravity form .gfield--type-consent legend {
  display: none;
}
.section-newsletter .container-newsletter .container-gravity form .gfield--type-consent label {
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  line-height: 20px;
  opacity: 0.8;
  color: #451113;
  font-weight: 600;
}
.section-newsletter .container-newsletter .container-gravity form .gfield--type-consent input {
  border: 1px solid rgba(69, 17, 19, 0.3);
  color: #451113;
}
.section-newsletter .container-newsletter .container-gravity form .gfield--type-consent input:focus {
  outline: none;
}
.section-newsletter .container-newsletter .container-gravity form .gfield--type-consent input:before {
  color: #451113;
}
.section-newsletter .container-newsletter .container-gravity form .gform_button {
  position: absolute;
  top: 0;
  right: 0;
  height: 50px !important;
  border: 1px solid rgba(69, 17, 19, 0.3) !important;
  border-left: none !important;
  background: #F8ECE4 !important;
  color: #451113 !important;
  font-size: 14px;
  line-height: 20px;
  font-family: "Raleway", sans-serif;
  font-weight: 700 !important;
  padding: 14px 35px !important;
  border-radius: 0 5px 5px 0 !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

.text-image .container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 60px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.text-image .container.map {
  gap: 0;
}
@media screen and (max-width: 992px) {
  .text-image .container {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
  .text-image .container .btn, .text-image .container .produit .left-container .add-to-cart-area .button, .produit .left-container .add-to-cart-area .text-image .container .button, .text-image .container .my-account .well .woocommerce-Address .edit, .my-account .well .woocommerce-Address .text-image .container .edit, .text-image .container .my-account .well .woocommerce-customer-details .edit, .my-account .well .woocommerce-customer-details .text-image .container .edit, .text-image .container .my-account .well .button, .my-account .well .text-image .container .button, .text-image .container .user-container .fake-space .user-block .woocommerce-form .form-row .woocommerce-button, .user-container .fake-space .user-block .woocommerce-form .form-row .text-image .container .woocommerce-button {
    width: 100%;
  }
}
.text-image .container.reverse .element {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.text-image .container.reverse > .image {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.text-image .container.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.text-image .container .element {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.text-image .container .element .image {
  margin-bottom: 20px;
}
.text-image .container .element .secondary-title {
  margin-bottom: 30px;
}
.text-image .container .element .btn, .text-image .container .element .produit .left-container .add-to-cart-area .button, .produit .left-container .add-to-cart-area .text-image .container .element .button, .text-image .container .element .my-account .well .woocommerce-Address .edit, .my-account .well .woocommerce-Address .text-image .container .element .edit, .text-image .container .element .my-account .well .woocommerce-customer-details .edit, .my-account .well .woocommerce-customer-details .text-image .container .element .edit, .text-image .container .element .my-account .well .button, .my-account .well .text-image .container .element .button, .text-image .container .element .user-container .fake-space .user-block .woocommerce-form .form-row .woocommerce-button, .user-container .fake-space .user-block .woocommerce-form .form-row .text-image .container .element .woocommerce-button {
  margin-top: 30px;
}
.text-image .container .img-container {
  border: 1px solid rgba(69, 17, 19, 0.2);
  border-radius: 15px;
  padding: 50px;
}
@media screen and (max-width: 992px) {
  .text-image .container .img-container {
    padding: 35px 30px;
  }
  .text-image .container .img-container .image {
    margin: 0 !important;
  }
}
.text-image .container .image {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 100%;
  height: 450px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  max-height: 450px;
}
.text-image .container .image.map {
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 992px) {
  .text-image .container .image {
    height: 250px;
    max-height: 250px;
  }
}

.section-assurance .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 980px;
  margin: auto;
  gap: 20px;
}
@media screen and (max-width: 992px) {
  .section-assurance .container {
    gap: 0;
  }
}
.section-assurance .container .separator {
  margin-top: 50px;
  width: 100%;
  height: 2px;
  background: #F8ECE4;
}
@media screen and (max-width: 992px) {
  .section-assurance .container .separator {
    margin-top: 25px;
  }
}
.section-assurance .container .element {
  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;
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 992px) {
  .section-assurance .container .element:last-child::after {
    width: 50%;
    left: 0;
  }
  .section-assurance .container .element:first-child::after {
    width: 50%;
    right: 0;
  }
  .section-assurance .container .element::after {
    content: "";
    margin-top: 25px;
    width: 100%;
    height: 2px;
    background: #F8ECE4;
    position: absolute;
    top: 0;
    z-index: -1;
  }
}
@media screen and (max-width: 992px) {
  .section-assurance .container .element .tertiary-title, .section-assurance .container .element .single-article .content-article h2, .single-article .content-article .section-assurance .container .element h2 {
    font-size: 14px;
    line-height: 20px;
  }
}
.section-assurance .container .element .icon-container {
  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;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background-color: #F8ECE4;
  margin-bottom: 20px;
  position: relative;
}
@media screen and (max-width: 992px) {
  .section-assurance .container .element .icon-container {
    margin-bottom: 10px;
    width: 50px;
    height: 50px;
  }
}
.section-assurance .container .element .icon-container .icon {
  font-size: 30px;
  position: absolute;
}
@media screen and (max-width: 992px) {
  .section-assurance .container .element .icon-container .icon {
    font-size: 20px;
  }
}

.section-specialite {
  margin-bottom: 130px;
}
.section-specialite .specialite-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media screen and (max-width: 992px) {
  .section-specialite .specialite-container {
    -ms-grid-columns: 1fr;
    grid-template-columns: repeat(1, 1fr);
    gap: 0;
  }
}
.section-specialite .specialite-container .specialite-item {
  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;
  position: relative;
  padding-bottom: 25px;
}
@media screen and (max-width: 992px) {
  .section-specialite .specialite-container .specialite-item {
    padding-bottom: 30px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}
.section-specialite .specialite-container .specialite-item img {
  position: relative;
  left: -10px;
}
@media screen and (max-width: 992px) {
  .section-specialite .specialite-container .specialite-item img {
    left: -9%;
    width: 65%;
  }
}
.section-specialite .specialite-container .specialite-item::after {
  background-color: #F8ECE4;
  position: absolute;
  border-radius: 10px;
  content: " ";
  width: 100%;
  height: 60%;
  bottom: 0;
  z-index: -1;
}
@media screen and (max-width: 992px) {
  .section-specialite .specialite-container .specialite-item::after {
    height: 70%;
  }
}
.section-specialite .specialite-container .specialite-item:last-child img {
  top: 40px;
}
@media screen and (max-width: 992px) {
  .section-specialite .specialite-container .specialite-item:last-child img {
    top: 20px;
    left: -15%;
  }
}
.section-specialite .specialite-container .specialite-item:nth-child(2) img {
  top: 10px;
}
@media screen and (max-width: 992px) {
  .section-specialite .specialite-container .specialite-item:nth-child(2) img {
    top: 15px;
    left: -12%;
  }
}
.section-specialite .specialite-container .specialite-item .content {
  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;
  gap: 25px;
}
@media screen and (max-width: 992px) {
  .section-specialite .specialite-container .specialite-item .content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 0 30px;
    width: 100%;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}
.section-specialite .specialite-container .specialite-item .content .left-content {
  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;
  gap: 25px;
}
@media screen and (max-width: 992px) {
  .section-specialite .specialite-container .specialite-item .content .left-content {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    gap: 4px;
  }
}
.section-specialite .specialite-container .specialite-item .content .specialite-title {
  color: #451113;
  font-size: 20px;
  font-weight: 600;
  position: relative;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: normal;
}
@media screen and (min-width: 992px) {
  .section-specialite .specialite-container .specialite-item .content .specialite-title {
    padding-bottom: 15px;
    font-size: 25px;
  }
  .section-specialite .specialite-container .specialite-item .content .specialite-title::after {
    content: " ";
    width: 30px;
    background-color: rgba(69, 17, 19, 0.6);
    position: absolute;
    bottom: 0;
    height: 1px;
  }
}
.section-specialite .specialite-container .specialite-item .content .specialite-description {
  font-size: 16px;
  color: #451113;
}
@media screen and (max-width: 992px) {
  .section-specialite .specialite-container .specialite-item .content .specialite-description {
    font-size: 14px;
  }
}
.section-specialite .specialite-container .specialite-item .content .specialite-price {
  color: #451113;
  font-size: 25px;
  font-weight: 600;
  opacity: 0.8;
}
@media screen and (max-width: 992px) {
  .section-specialite .specialite-container .specialite-item .content .specialite-price {
    font-size: 20px;
  }
}

.section-faq {
  margin: 0 0 150px;
}
@media screen and (max-width: 992px) {
  .section-faq {
    margin: 0 0 100px;
  }
}
.section-faq.no-margin {
  margin: 0 !important;
}
.section-faq .content-faq {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  padding: 130px 0;
}
@media screen and (max-width: 992px) {
  .section-faq .content-faq {
    padding: 60px 0 70px;
    -ms-grid-columns: 1fr;
    grid-template-columns: repeat(1, 1fr);
    gap: 40px;
  }
}
.section-faq .left-container {
  margin-right: 90px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 992px) {
  .section-faq .left-container {
    margin-right: 0;
  }
}
.section-faq .left-container .secondary-title {
  margin-bottom: 30px;
}
.section-faq .left-container .btn, .section-faq .produit .left-container .add-to-cart-area .button, .produit .section-faq .left-container .add-to-cart-area .button, .section-faq .left-container .my-account .well .woocommerce-Address .edit, .my-account .well .woocommerce-Address .section-faq .left-container .edit, .section-faq .left-container .my-account .well .woocommerce-customer-details .edit, .my-account .well .woocommerce-customer-details .section-faq .left-container .edit, .section-faq .left-container .my-account .well .button, .my-account .well .section-faq .left-container .button, .section-faq .left-container .user-container .fake-space .user-block .woocommerce-form .form-row .woocommerce-button, .user-container .fake-space .user-block .woocommerce-form .form-row .section-faq .left-container .woocommerce-button {
  margin-top: 40px;
}
.section-faq .right-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.section-notre-histoire {
  overflow: hidden;
  margin: 0 0 150px 0;
}
@media screen and (max-width: 992px) {
  .section-notre-histoire {
    margin: 0 0 100px 0;
  }
}
.section-notre-histoire .swiper {
  max-width: 100%;
  width: 100%;
  overflow: visible;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 992px) {
  .section-notre-histoire .swiper {
    padding-right: 160px;
    padding-bottom: 40px;
  }
}
.section-notre-histoire .swiper .swiper-wrapper {
  max-width: 100%;
  width: 100%;
}
.section-notre-histoire .swiper .swiper-wrapper .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}
.section-notre-histoire .swiper .swiper-wrapper .swiper-slide:nth-child(4) .card-histoire .image, .section-notre-histoire .swiper .swiper-wrapper .swiper-slide:nth-child(2) .card-histoire .image {
  height: 215px;
}
.section-notre-histoire .swiper .swiper-wrapper .swiper-slide .card-histoire {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.section-notre-histoire .swiper .swiper-wrapper .swiper-slide .card-histoire .image {
  border-radius: 5px;
  height: 175px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 23px;
}
.section-notre-histoire .swiper .swiper-wrapper .swiper-slide .card-histoire .fourth-title, .section-notre-histoire .swiper .swiper-wrapper .swiper-slide .card-histoire .my-account .well fieldset legend, .my-account .well fieldset .section-notre-histoire .swiper .swiper-wrapper .swiper-slide .card-histoire legend, .section-notre-histoire .swiper .swiper-wrapper .swiper-slide .card-histoire .my-account .well .woocommerce-MyAccount-content h2, .my-account .well .woocommerce-MyAccount-content .section-notre-histoire .swiper .swiper-wrapper .swiper-slide .card-histoire h2, .section-notre-histoire .swiper .swiper-wrapper .swiper-slide .card-histoire .single-article .content-article h3, .single-article .content-article .section-notre-histoire .swiper .swiper-wrapper .swiper-slide .card-histoire h3 {
  line-height: normal;
}
.section-notre-histoire .swiper .swiper-wrapper .swiper-slide .card-histoire .p-description, .section-notre-histoire .swiper .swiper-wrapper .swiper-slide .card-histoire .single-article .content-article p, .single-article .content-article .section-notre-histoire .swiper .swiper-wrapper .swiper-slide .card-histoire p, .section-notre-histoire .swiper .swiper-wrapper .swiper-slide .card-histoire .single-article .content-article ul li, .single-article .content-article ul .section-notre-histoire .swiper .swiper-wrapper .swiper-slide .card-histoire li {
  margin-top: 15px;
}

.banner-content {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  margin: 0 auto 50px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 670px;
}
.banner-content.margin {
  margin: 0 auto 75px;
}
@media screen and (max-width: 992px) {
  .banner-content {
    margin: 0 auto 60px;
  }
  .banner-content.small {
    margin: 0 auto 30px;
  }
}

.content-les-bonnes-choses {
  padding: 0 !important;
}

.banner-lbc {
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding-top: 20px;
}
@media screen and (min-width: 992px) {
  .banner-lbc {
    padding-top: 70px;
  }
}
.banner-lbc::after {
  content: " ";
  position: absolute;
  inset: 0;
  background-color: rgba(69, 17, 19, 0.3);
  z-index: 1;
}
.banner-lbc .breadcrumbs {
  z-index: 2;
}
.banner-lbc .breadcrumbs a, .banner-lbc .breadcrumbs span, .banner-lbc .breadcrumbs .last {
  color: #F8ECE4 !important;
}
.banner-lbc .content {
  position: relative;
  gap: 20px;
  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;
  padding: 0 0 35px;
  z-index: 2;
}
.banner-lbc .content h1, .banner-lbc .content p, .banner-lbc .content a {
  color: #F8ECE4;
  opacity: 1;
}
.banner-lbc .content a {
  background-color: #F8ECE4;
  color: #451113;
}
.banner-lbc .content svg {
  font-size: 30px;
}
@media screen and (max-width: 992px) {
  .banner-lbc .content {
    padding: 0 25px 60px;
    gap: 30px;
  }
  .banner-lbc .content svg {
    font-size: 20px;
  }
  .banner-lbc .content a {
    margin-top: 5px;
  }
}

.section-last-post {
  margin: 100px 0;
}
@media screen and (min-width: 992px) {
  .section-last-post {
    margin: 0 0 150px;
  }
  .section-last-post.border-top {
    border-top: 1px solid rgba(137, 24, 17, 0.3);
    padding-top: 150px;
  }
}
.section-last-post.no-margin {
  margin: 0 !important;
}
.section-last-post .title-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 992px) {
  .section-last-post .title-block {
    margin-bottom: 30px;
  }
}
.section-last-post .title-block.small-marge {
  margin-bottom: 40px;
}
.section-last-post .post-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media screen and (max-width: 992px) {
  .section-last-post .post-container {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
}
@media screen and (max-width: 992px) {
  .section-last-post .btn, .section-last-post .produit .left-container .add-to-cart-area .button, .produit .left-container .add-to-cart-area .section-last-post .button, .section-last-post .my-account .well .woocommerce-Address .edit, .my-account .well .woocommerce-Address .section-last-post .edit, .section-last-post .my-account .well .woocommerce-customer-details .edit, .my-account .well .woocommerce-customer-details .section-last-post .edit, .section-last-post .my-account .well .button, .my-account .well .section-last-post .button, .section-last-post .user-container .fake-space .user-block .woocommerce-form .form-row .woocommerce-button, .user-container .fake-space .user-block .woocommerce-form .form-row .section-last-post .woocommerce-button {
    margin-top: 30px;
  }
}

.section-partenaire {
  margin-bottom: 100px;
}
.section-partenaire .secondary-title {
  margin-bottom: 30px;
}
.section-partenaire .partenaire-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr 30px 1fr;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  justify-items: center;
}
@media screen and (max-width: 992px) {
  .section-partenaire .partenaire-container {
    gap: 20px;
    -ms-grid-columns: 1fr 20px 1fr;
    grid-template-columns: repeat(2, 1fr);
  }
}
.section-partenaire .partenaire-container .partenaire-item {
  border: 1px solid rgba(137, 24, 17, 0.3);
  padding: 35px;
  border-radius: 10px;
}
@media screen and (max-width: 992px) {
  .section-partenaire .partenaire-container .partenaire-item {
    padding: 15px;
    height: 100px;
  }
}
.section-partenaire .partenaire-container .partenaire-item img {
  height: 100px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 992px) {
  .section-partenaire .partenaire-container .partenaire-item img {
    height: 100%;
  }
}

.section-ingredients {
  padding: 40px 40px 45px;
  border-radius: 10px;
}
@media screen and (max-width: 992px) {
  .section-ingredients {
    padding: 30px;
  }
}
.section-ingredients .fourth-title, .section-ingredients .my-account .well fieldset legend, .my-account .well fieldset .section-ingredients legend, .section-ingredients .my-account .well .woocommerce-MyAccount-content h2, .my-account .well .woocommerce-MyAccount-content .section-ingredients h2, .section-ingredients .single-article .content-article h3, .single-article .content-article .section-ingredients h3 {
  color: #F8ECE4;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  position: relative;
}
.section-ingredients .fourth-title::after, .section-ingredients .my-account .well fieldset legend::after, .my-account .well fieldset .section-ingredients legend::after, .section-ingredients .my-account .well .woocommerce-MyAccount-content h2::after, .my-account .well .woocommerce-MyAccount-content .section-ingredients h2::after, .section-ingredients .single-article .content-article h3::after, .single-article .content-article .section-ingredients h3::after {
  content: " ";
  width: 100%;
  height: 1px;
  background-color: rgba(248, 236, 228, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
}
.section-ingredients .fourth-title span, .section-ingredients .my-account .well fieldset legend span, .my-account .well fieldset .section-ingredients legend span, .section-ingredients .my-account .well .woocommerce-MyAccount-content h2 span, .my-account .well .woocommerce-MyAccount-content .section-ingredients h2 span, .section-ingredients .single-article .content-article h3 span, .single-article .content-article .section-ingredients h3 span {
  background-color: #891811;
  z-index: 1;
  padding-right: 10px;
}
.section-ingredients .list-items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 50px 1fr;
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 50px;
     -moz-column-gap: 50px;
          column-gap: 50px;
  row-gap: 15px;
  margin-top: 20px;
}
@media screen and (max-width: 992px) {
  .section-ingredients .list-items {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
}
.section-ingredients .list-items .p-description, .section-ingredients .list-items .single-article .content-article p, .single-article .content-article .section-ingredients .list-items p, .section-ingredients .list-items .single-article .content-article ul li, .single-article .content-article ul .section-ingredients .list-items li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  opacity: 1;
  color: rgba(248, 236, 228, 0.8);
}
.section-ingredients .list-items .p-description::before, .section-ingredients .list-items .single-article .content-article p::before, .single-article .content-article .section-ingredients .list-items p::before, .section-ingredients .list-items .single-article .content-article ul li::before, .single-article .content-article ul .section-ingredients .list-items li::before {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #F8ECE4;
  content: " ";
  color: #F8ECE4;
}

.contact-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 130px;
}
@media screen and (max-width: 992px) {
  .contact-container {
    -ms-grid-columns: 1fr;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    margin-bottom: 100px;
  }
}
.contact-container .contact-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 60px 50px;
  border-radius: 10px;
}
@media screen and (max-width: 992px) {
  .contact-container .contact-item {
    padding: 30px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}
.contact-container .contact-item p {
  margin-bottom: 30px;
  text-align: center;
}
@media screen and (max-width: 992px) {
  .contact-container .contact-item p {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    text-align: start;
    margin-bottom: 20px;
  }
}
.contact-container .contact-item h3 {
  line-height: normal;
}
.contact-container .contact-item .btn, .contact-container .contact-item .produit .left-container .add-to-cart-area .button, .produit .left-container .add-to-cart-area .contact-container .contact-item .button, .contact-container .contact-item .my-account .well .woocommerce-Address .edit, .my-account .well .woocommerce-Address .contact-container .contact-item .edit, .contact-container .contact-item .my-account .well .woocommerce-customer-details .edit, .my-account .well .woocommerce-customer-details .contact-container .contact-item .edit, .contact-container .contact-item .my-account .well .button, .my-account .well .contact-container .contact-item .button, .contact-container .contact-item .user-container .fake-space .user-block .woocommerce-form .form-row .woocommerce-button, .user-container .fake-space .user-block .woocommerce-form .form-row .contact-container .contact-item .woocommerce-button {
  width: 100%;
}
.contact-container .contact-item .top-content {
  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: 15px;
  margin-bottom: 25px;
}
@media screen and (max-width: 992px) {
  .contact-container .contact-item .top-content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-bottom: 15px;
  }
}
.contact-container .contact-item .red-icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background-color: #891811;
  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;
  position: relative;
}
@media screen and (max-width: 992px) {
  .contact-container .contact-item .red-icon {
    width: 50px;
    height: 50px;
  }
}
.contact-container .contact-item .red-icon svg {
  color: #F8ECE4;
  position: absolute;
  width: 30px;
  height: 30px;
}
@media screen and (max-width: 992px) {
  .contact-container .contact-item .red-icon svg {
    width: 20px;
    height: 20px;
  }
}

@media screen and (max-width: 992px) {
  .gallery-img {
    overflow: visible !important;
    padding-bottom: 40px !important;
    padding-right: 40px !important;
  }
}
.gallery-img img {
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 170px;
}
@media screen and (max-width: 992px) {
  .gallery-img img {
    height: 120px;
  }
}

.theme-page-accueil .home-swiper {
  height: 450px;
}
@media screen and (max-width: 992px) {
  .theme-page-accueil .home-swiper {
    height: 76vh;
  }
  .theme-page-accueil .home-swiper::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 8;
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.7)), color-stop(10%, rgba(0, 0, 0, 0)));
    background: linear-gradient(0, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 10%);
  }
}
.theme-page-accueil .home-swiper .swiper-wrapper {
  position: relative;
}
.theme-page-accueil .home-swiper .swiper-wrapper .swiper-slide {
  position: relative;
}
.theme-page-accueil .home-swiper .swiper-wrapper .swiper-slide img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.theme-page-accueil .home-swiper .see-all {
  position: absolute;
  bottom: 10%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 10;
}
@media screen and (max-width: 992px) {
  .theme-page-accueil .home-swiper .see-all {
    width: calc(100% - 60px);
    bottom: 75px;
  }
}
@media screen and (min-width: 992px) {
  .theme-page-accueil .home-swiper .swiper-pagination {
    display: none;
  }
}
.theme-page-accueil .section-canele-transition {
  background-image: url("../images/accueil/bg-canele.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.theme-page-accueil .section-canele-transition .container {
  width: 50%;
}
@media screen and (max-width: 992px) {
  .theme-page-accueil .section-canele-transition .container {
    width: 100%;
  }
}
@media screen and (max-width: 992px) {
  .theme-page-accueil .section-canele-transition .btn-white {
    width: 100%;
  }
}

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

.page-theme-archive-posts .posts-list {
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  row-gap: 65px;
}
.page-theme-archive-posts .post-content {
  margin-bottom: 130px;
}

.page-legal {
  max-width: 900px;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 50px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 150px;
}
@media screen and (max-width: 992px) {
  .page-legal {
    margin-bottom: 100px;
    gap: 40px;
  }
}
.page-legal .content-container {
  padding: 50px 65px 90px 65px;
  border-radius: 10px;
}
@media screen and (max-width: 992px) {
  .page-legal .content-container {
    padding: 30px;
  }
}
.page-legal .content-container h3 {
  margin-top: 40px;
  font-weight: 600;
  font-size: 18px;
  line-height: 30px;
}
@media screen and (max-width: 992px) {
  .page-legal .content-container h3 {
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 20px;
  }
}
.page-legal .content-container p, .page-legal .content-container ul {
  margin-top: 15px;
  opacity: 0.8;
  font-size: 16px;
  line-height: 25px;
  font-family: "Raleway", sans-serif;
}
@media screen and (max-width: 992px) {
  .page-legal .content-container p, .page-legal .content-container ul {
    font-size: 14px;
    line-height: 20px;
  }
}
.page-legal .content-container h2 {
  margin-top: 80px;
  font-size: 25px;
  line-height: 35px;
  font-weight: 600;
}
@media screen and (max-width: 992px) {
  .page-legal .content-container h2 {
    margin-top: 70px;
    font-size: 20px;
    line-height: 25px;
  }
}
.page-legal .content-container h2:first-child {
  margin: 0;
}
.page-legal .content-container h4 {
  margin-top: 30px;
  font-weight: 600;
  font-size: 18px;
}
@media screen and (max-width: 992px) {
  .page-legal .content-container h4 {
    margin-top: 20px;
    font-size: 16px;
  }
}

.faq {
  width: 900px;
  margin: 0 auto 150px auto;
}
@media screen and (max-width: 992px) {
  .faq {
    width: 100%;
    margin: 0 0 100px;
  }
  .faq .banner-content {
    margin-bottom: 40px;
  }
}
.faq .content-faq {
  padding: 10px 65px 50px 65px;
  border-radius: 10px;
  background-color: #F8ECE4;
}
.faq .content-faq .accordion {
  padding: 38px 0;
  border-bottom: 1px solid rgba(137, 24, 17, 0.3);
}
@media screen and (max-width: 992px) {
  .faq .content-faq .accordion {
    padding: 30px 0;
  }
}
.faq .content-faq .accordion:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
@media screen and (max-width: 992px) {
  .faq .content-faq {
    padding: 0 30px 30px 30px;
  }
}

.single-article {
  max-width: 900px;
  margin: 15px auto 150px;
}
@media screen and (max-width: 992px) {
  .single-article {
    margin: 10px 0 0;
  }
}
.single-article .secondary-title {
  margin: 0 auto 30px;
  max-width: 720px;
}
@media screen and (min-width: 992px) {
  .single-article .secondary-title {
    text-align: center;
  }
}
.single-article > .p-description, .single-article .content-article .single-article > p, .single-article .content-article ul .single-article > li {
  margin-bottom: 60px;
}
@media screen and (min-width: 992px) {
  .single-article > .p-description, .single-article .content-article .single-article > p, .single-article .content-article ul .single-article > li {
    text-align: center;
  }
}
.single-article > .p-description .read-more a, .single-article .content-article .single-article > p .read-more a, .single-article .content-article ul .single-article > li .read-more a {
  display: none;
}
.single-article .content-article {
  border-radius: 10px;
  padding: 30px 30px 50px;
}
@media screen and (min-width: 992px) {
  .single-article .content-article {
    padding: 10px 0 50px;
  }
}
.single-article .content-article .section-ingredients {
  margin: 40px 30px 50px;
}
@media screen and (max-width: 992px) {
  .single-article .content-article .section-ingredients {
    margin: 30px 0 60px;
  }
}
.single-article .content-article ul {
  padding: 0;
  margin: 0 30px;
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
}
@media screen and (max-width: 992px) {
  .single-article .content-article ul {
    margin: 0;
  }
}
.single-article .content-article .thumbnail {
  margin: 0 10px;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  height: 215px;
  overflow: hidden;
  width: -webkit-fill-available;
}
@media screen and (min-width: 992px) {
  .single-article .content-article .thumbnail {
    margin: 0 10px;
    height: 360px;
  }
}
.single-article .content-article img {
  height: 215px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  margin: 50px 0 30px;
  width: -webkit-fill-available;
  display: block;
}
@media screen and (min-width: 992px) {
  .single-article .content-article img {
    height: 360px;
    margin: 0 10px 50px;
  }
}
.single-article .content-article h2 {
  margin: 60px 0 30px;
}
@media screen and (min-width: 992px) {
  .single-article .content-article h2 {
    margin: 60px 30px 30px;
  }
  .single-article .content-article h2:first-child {
    margin: 30px 30px;
  }
}
.single-article .content-article h2:first-child {
  margin: 0 0 30px;
}
.single-article .content-article h3 {
  margin: 50px 0 15px;
}
@media screen and (min-width: 992px) {
  .single-article .content-article h3 {
    margin: 50px 30px 20px;
  }
}
.single-article .content-article p {
  margin: 20px 0 20px;
}
@media screen and (min-width: 992px) {
  .single-article .content-article p {
    margin: 20px 30px 20px;
  }
}
.single-article .content-article .author-name {
  margin: 50px 0 0;
}
@media screen and (min-width: 992px) {
  .single-article .content-article .author-name {
    margin: 70px 30px 0;
  }
}

.lost-password {
  border: 1px solid #F8ECE4;
  padding: 35px 30px 60px;
  border-radius: 10px;
  background-color: #FEFCF9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 900px;
  margin: 0 auto 85px;
}
@media screen and (max-width: 992px) {
  .lost-password {
    padding: 30px;
  }
}
.lost-password .email-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 25px 0 40px;
  font-weight: 700;
  gap: 10px;
}
@media screen and (max-width: 992px) {
  .lost-password .email-container {
    font-size: 14px;
    width: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.lost-password .email-container .edit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3px;
}
.lost-password .email-container .edit svg {
  border-bottom: 1px solid #891811;
}
.lost-password .btn, .lost-password .produit .left-container .add-to-cart-area .button, .produit .left-container .add-to-cart-area .lost-password .button, .lost-password .my-account .well .woocommerce-Address .edit, .my-account .well .woocommerce-Address .lost-password .edit, .lost-password .my-account .well .woocommerce-customer-details .edit, .my-account .well .woocommerce-customer-details .lost-password .edit, .lost-password .my-account .well .button, .my-account .well .lost-password .button, .lost-password .user-container .fake-space .user-block .woocommerce-form .form-row .woocommerce-button, .user-container .fake-space .user-block .woocommerce-form .form-row .lost-password .woocommerce-button {
  width: 100%;
  margin-top: 20px;
}
.lost-password label {
  font-weight: 700;
  color: #891811;
  margin-bottom: 10px;
}
@media screen and (max-width: 992px) {
  .lost-password label {
    font-size: 14px;
  }
}
.lost-password input {
  border: 1px solid rgba(69, 17, 19, 0.3019607843) !important;
  height: 40px;
}

.my-account {
  max-width: 990px;
  margin: 0 auto 150px;
  width: 100%;
}
@media screen and (max-width: 992px) {
  .my-account {
    margin: 0 auto 80px;
  }
}
.my-account .title-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 45px;
}
@media screen and (max-width: 992px) {
  .my-account .title-block {
    margin-bottom: 30px;
  }
}
.my-account .title-block .link {
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  font-size: 16px;
}
.my-account .title-block .link svg {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  font-size: 10px;
}
.my-account .account-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media screen and (max-width: 992px) {
  .my-account .account-container {
    -ms-grid-columns: 1fr;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}
.my-account .account-container .account-item {
  padding: 20px 20px 35px;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #F8ECE4;
  gap: 18px;
}
@media screen and (max-width: 992px) {
  .my-account .account-container .account-item {
    padding: 20px 30px;
    gap: 10px;
  }
}
.my-account .account-container .account-item .fourth-title, .my-account .account-container .account-item .well fieldset legend, .my-account .well fieldset .account-container .account-item legend, .my-account .account-container .account-item .well .woocommerce-MyAccount-content h2, .my-account .well .woocommerce-MyAccount-content .account-container .account-item h2, .my-account .account-container .account-item .single-article .content-article h3, .single-article .content-article .my-account .account-container .account-item h3 {
  line-height: normal;
}
.my-account .account-container .account-item .red-icon {
  background-color: #891811;
  border-radius: 4px;
  width: 55px;
  height: 55px;
  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;
}
@media screen and (max-width: 992px) {
  .my-account .account-container .account-item .red-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
  }
}
.my-account .account-container .account-item .red-icon svg {
  color: #FEFCF9;
  font-size: 25px;
}
@media screen and (max-width: 992px) {
  .my-account .account-container .account-item .red-icon svg {
    font-size: 20px;
  }
}
@media screen and (max-width: 992px) {
  .my-account .well {
    padding: 0;
    background-color: transparent;
    border: none;
    position: relative;
    padding-bottom: 65px;
  }
  .my-account .well:not(.endpoint-orders) > .content {
    padding: 30px;
    background-color: #F8ECE4;
    color: #891811;
    border: 1px solid #f3ded0;
    border-radius: 10px;
  }
}
.my-account .well .woocommerce-MyAccount-navigation {
  display: none;
}
.my-account .well .woocommerce-MyAccount-content {
  width: 100%;
  font-family: "Raleway", sans-serif;
}
.my-account .well .woocommerce-MyAccount-content > p {
  margin-bottom: 20px;
}
.my-account .well .woocommerce-MyAccount-content h2 {
  font-family: "Raleway", sans-serif;
  border-bottom: 1px solid rgba(69, 17, 19, 0.2);
  margin-bottom: 20px;
}
@media screen and (max-width: 992px) {
  .my-account .well .woocommerce-MyAccount-content h2 {
    margin-bottom: 10px;
  }
}
.my-account .well .woocommerce-MyAccount-content .woocommerce-info {
  margin: 0;
}
.my-account .well .woocommerce-MyAccount-content .woocommerce-info .button {
  position: relative;
}
.my-account .well .woocommerce-MyAccount-content table {
  border: none;
  color: #451113;
  border-collapse: collapse;
  font-family: "Raleway", sans-serif;
  table-layout: auto;
}
.my-account .well .woocommerce-MyAccount-content table thead {
  display: table-header-group;
}
.my-account .well .woocommerce-MyAccount-content table thead tr {
  display: contents;
}
.my-account .well .woocommerce-MyAccount-content table thead tr th {
  font-weight: 400;
  font-size: 12px;
  text-transform: uppercase;
}
@media screen and (max-width: 992px) {
  .my-account .well .woocommerce-MyAccount-content table thead tr th {
    font-size: 10px;
    padding-bottom: 12px;
  }
}
.my-account .well .woocommerce-MyAccount-content table tbody {
  border: none;
}
.my-account .well .woocommerce-MyAccount-content table tbody th, .my-account .well .woocommerce-MyAccount-content table tbody td, .my-account .well .woocommerce-MyAccount-content table tbody a {
  border: none;
  font-size: 16px;
  font-family: "Raleway", sans-serif;
  text-transform: capitalize;
  color: rgba(69, 17, 19, 0.8);
  display: table-cell;
  background-color: transparent;
}
@media screen and (max-width: 992px) {
  .my-account .well .woocommerce-MyAccount-content table tbody th, .my-account .well .woocommerce-MyAccount-content table tbody td, .my-account .well .woocommerce-MyAccount-content table tbody a {
    font-size: 12px;
  }
  .my-account .well .woocommerce-MyAccount-content table tbody th::before, .my-account .well .woocommerce-MyAccount-content table tbody td::before, .my-account .well .woocommerce-MyAccount-content table tbody a::before {
    content: none;
  }
}
.my-account .well .woocommerce-MyAccount-content table tbody td:nth-child(3), .my-account .well .woocommerce-MyAccount-content table tbody th a {
  font-weight: 700;
  color: #451113;
}
.my-account .well .woocommerce-MyAccount-content table tbody tr:nth-child(odd) {
  background-color: rgba(69, 17, 19, 0.04);
}
@media screen and (max-width: 992px) {
  .my-account .well .woocommerce-MyAccount-content table tbody tr {
    display: table-row;
  }
  .my-account .well .woocommerce-MyAccount-content table tbody tr .button {
    position: relative;
  }
}
.my-account .well .woocommerce-MyAccount-content table tbody .button {
  margin: 0;
  background-color: transparent;
  color: #451113;
  padding: 15px 0;
  text-align: start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 992px) {
  .my-account .well .woocommerce-MyAccount-content table tbody .button {
    font-size: 0px;
  }
}
.my-account .well .woocommerce-MyAccount-content table tbody .button::after {
  content: "";
  float: right;
  width: 9px;
  height: 18px;
  background-color: #451113;
  -webkit-mask: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABMAAAALCAYAAACd1bY6AAAABHNCSVQICAgIfAhkiAAAALRJREFUKFNjZCAAfrx+fIeBkVGJgYFxCoeIdB4+5Yz4JH++ebLgPwNDPEwNkJ3IKSKzAJcenIahG0SMgVgNQzGIkeEiw3/GWQwM/6cSMhDDMHSD2Jl+OzAKKn74/uZJAlDxfHwGohiGyyCYAYQMhBtGyCBiDAQbRqxBhAxkJNUgXAYyMjAFMv548+QDUAE/AzDWYIFNKCFjM/D///+NQJc9C/j3/68BB8ufCaBYI9YgmDpk/QCUOIFJqnA8WgAAAABJRU5ErkJggg==) no-repeat center/contain;
          mask: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABMAAAALCAYAAACd1bY6AAAABHNCSVQICAgIfAhkiAAAALRJREFUKFNjZCAAfrx+fIeBkVGJgYFxCoeIdB4+5Yz4JH++ebLgPwNDPEwNkJ3IKSKzAJcenIahG0SMgVgNQzGIkeEiw3/GWQwM/6cSMhDDMHSD2Jl+OzAKKn74/uZJAlDxfHwGohiGyyCYAYQMhBtGyCBiDAQbRqxBhAxkJNUgXAYyMjAFMv548+QDUAE/AzDWYIFNKCFjM/D///+NQJc9C/j3/68BB8ufCaBYI9YgmDpk/QCUOIFJqnA8WgAAAABJRU5ErkJggg==) no-repeat center/contain;
  background-size: contain;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transition: linear 0.2s;
  transition: linear 0.2s;
}
@media screen and (max-width: 992px) {
  .my-account .well .woocommerce-MyAccount-content table tbody .button::after {
    -webkit-transform: rotate(0);
            transform: rotate(0);
    background-color: #891811;
    width: 20px;
    -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">%3Cpath fill="black" d="M0.106 11.553c-0.136 0.274-0.146 0.603 0 0.894 0 0 0.396 0.789 1.12 1.843 0.451 0.656 1.038 1.432 1.757 2.218 0.894 0.979 2.004 1.987 3.319 2.8 1.595 0.986 3.506 1.692 5.698 1.692s4.103-0.706 5.698-1.692c1.315-0.813 2.425-1.821 3.319-2.8 0.718-0.786 1.306-1.562 1.757-2.218 0.724-1.054 1.12-1.843 1.12-1.843 0.136-0.274 0.146-0.603 0-0.894 0 0-0.396-0.789-1.12-1.843-0.451-0.656-1.038-1.432-1.757-2.218-0.894-0.979-2.004-1.987-3.319-2.8-1.595-0.986-3.506-1.692-5.698-1.692s-4.103 0.706-5.698 1.692c-1.315 0.813-2.425 1.821-3.319 2.8-0.719 0.786-1.306 1.561-1.757 2.218-0.724 1.054-1.12 1.843-1.12 1.843zM2.14 12c0.163-0.281 0.407-0.681 0.734-1.158 0.41-0.596 0.94-1.296 1.585-2.001 0.805-0.881 1.775-1.756 2.894-2.448 1.35-0.834 2.901-1.393 4.647-1.393s3.297 0.559 4.646 1.393c1.119 0.692 2.089 1.567 2.894 2.448 0.644 0.705 1.175 1.405 1.585 2.001 0.328 0.477 0.572 0.876 0.734 1.158-0.163 0.281-0.407 0.681-0.734 1.158-0.41 0.596-0.94 1.296-1.585 2.001-0.805 0.881-1.775 1.756-2.894 2.448-1.349 0.834-2.9 1.393-4.646 1.393s-3.297-0.559-4.646-1.393c-1.119-0.692-2.089-1.567-2.894-2.448-0.644-0.705-1.175-1.405-1.585-2.001-0.328-0.477-0.572-0.877-0.735-1.158zM16 12c0-1.104-0.449-2.106-1.172-2.828s-1.724-1.172-2.828-1.172-2.106 0.449-2.828 1.172-1.172 1.724-1.172 2.828 0.449 2.106 1.172 2.828 1.724 1.172 2.828 1.172 2.106-0.449 2.828-1.172 1.172-1.724 1.172-2.828zM14 12c0 0.553-0.223 1.051-0.586 1.414s-0.861 0.586-1.414 0.586-1.051-0.223-1.414-0.586-0.586-0.861-0.586-1.414 0.223-1.051 0.586-1.414 0.861-0.586 1.414-0.586 1.051 0.223 1.414 0.586 0.586 0.861 0.586 1.414z"%3E%3C/path%3E</svg>') no-repeat center/contain;
    mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">%3Cpath fill="black" d="M0.106 11.553c-0.136 0.274-0.146 0.603 0 0.894 0 0 0.396 0.789 1.12 1.843 0.451 0.656 1.038 1.432 1.757 2.218 0.894 0.979 2.004 1.987 3.319 2.8 1.595 0.986 3.506 1.692 5.698 1.692s4.103-0.706 5.698-1.692c1.315-0.813 2.425-1.821 3.319-2.8 0.718-0.786 1.306-1.562 1.757-2.218 0.724-1.054 1.12-1.843 1.12-1.843 0.136-0.274 0.146-0.603 0-0.894 0 0-0.396-0.789-1.12-1.843-0.451-0.656-1.038-1.432-1.757-2.218-0.894-0.979-2.004-1.987-3.319-2.8-1.595-0.986-3.506-1.692-5.698-1.692s-4.103 0.706-5.698 1.692c-1.315 0.813-2.425 1.821-3.319 2.8-0.719 0.786-1.306 1.561-1.757 2.218-0.724 1.054-1.12 1.843-1.12 1.843zM2.14 12c0.163-0.281 0.407-0.681 0.734-1.158 0.41-0.596 0.94-1.296 1.585-2.001 0.805-0.881 1.775-1.756 2.894-2.448 1.35-0.834 2.901-1.393 4.647-1.393s3.297 0.559 4.646 1.393c1.119 0.692 2.089 1.567 2.894 2.448 0.644 0.705 1.175 1.405 1.585 2.001 0.328 0.477 0.572 0.876 0.734 1.158-0.163 0.281-0.407 0.681-0.734 1.158-0.41 0.596-0.94 1.296-1.585 2.001-0.805 0.881-1.775 1.756-2.894 2.448-1.349 0.834-2.9 1.393-4.646 1.393s-3.297-0.559-4.646-1.393c-1.119-0.692-2.089-1.567-2.894-2.448-0.644-0.705-1.175-1.405-1.585-2.001-0.328-0.477-0.572-0.877-0.735-1.158zM16 12c0-1.104-0.449-2.106-1.172-2.828s-1.724-1.172-2.828-1.172-2.106 0.449-2.828 1.172-1.172 1.724-1.172 2.828 0.449 2.106 1.172 2.828 1.724 1.172 2.828 1.172 2.106-0.449 2.828-1.172 1.172-1.724 1.172-2.828zM14 12c0 0.553-0.223 1.051-0.586 1.414s-0.861 0.586-1.414 0.586-1.051-0.223-1.414-0.586-0.586-0.861-0.586-1.414 0.223-1.051 0.586-1.414 0.861-0.586 1.414-0.586 1.051 0.223 1.414 0.586 0.586 0.861 0.586 1.414z"%3E%3C/path%3E</svg>') no-repeat center/contain;
  }
}
.my-account .well .tertiary-title, .my-account .well .single-article .content-article h2, .single-article .content-article .my-account .well h2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  padding-bottom: 30px;
  font-size: 25px;
}
@media screen and (min-width: 992px) {
  .my-account .well .tertiary-title, .my-account .well .single-article .content-article h2, .single-article .content-article .my-account .well h2 {
    border-bottom: 1px solid rgba(69, 17, 19, 0.2);
    margin-bottom: 30px;
  }
}
.my-account .well .tertiary-title svg, .my-account .well .single-article .content-article h2 svg, .single-article .content-article .my-account .well h2 svg {
  font-size: 15px;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.my-account .well .button {
  width: 100%;
}
@media screen and (max-width: 992px) {
  .my-account .well .button {
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.my-account .well .woocommerce-Address, .my-account .well .woocommerce-customer-details {
  background-color: #FCF8F4;
  padding: 30px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  border-radius: 10px;
  font-family: "Raleway", sans-serif;
}
@media screen and (max-width: 992px) {
  .my-account .well .woocommerce-Address, .my-account .well .woocommerce-customer-details {
    gap: 10px;
  }
}
.my-account .well .woocommerce-Address header, .my-account .well .woocommerce-customer-details header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.my-account .well .woocommerce-Address address, .my-account .well .woocommerce-customer-details address {
  color: rgba(69, 17, 19, 0.8);
  font-style: normal;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
.my-account .well .woocommerce-Address address p, .my-account .well .woocommerce-customer-details address p {
  color: rgba(69, 17, 19, 0.8);
}
.my-account .well .woocommerce-Address .edit, .my-account .well .woocommerce-customer-details .edit {
  margin: 0 !important;
}
.my-account .well .woocommerce-Addresses {
  margin-top: 20px;
}
@media screen and (max-width: 992px) {
  .my-account .well .woocommerce-Addresses {
    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;
  }
}
.my-account .well .form-row {
  margin-bottom: 30px;
}
@media screen and (max-width: 992px) {
  .my-account .well .form-row {
    width: 100%;
    margin-bottom: 20px;
  }
}
.my-account .well .form-row label {
  font-weight: 700;
  color: #451113;
  margin-bottom: 10px;
  line-height: normal !important;
}
@media screen and (max-width: 992px) {
  .my-account .well .form-row label {
    font-size: 14px;
  }
}
.my-account .well .form-row label .required {
  color: #451113;
}
.my-account .well .form-row input, .my-account .well .form-row .select2-selection {
  height: 40px !important;
  border: none !important;
  background-color: rgba(254, 252, 249, 0.7) !important;
}
.my-account .well .form-row input.woocommerce-form__input-checkbox, .my-account .well .form-row .select2-selection.woocommerce-form__input-checkbox {
  height: 20px !important;
}
.my-account .well .lost_reset_password p:first-child {
  margin-bottom: 20px;
}
.my-account .well .lost_reset_password .form-row {
  margin: 0;
}
.my-account .well fieldset {
  padding: 0;
}
.my-account .well fieldset legend {
  color: #451113;
}
.my-account .well fieldset .form-row {
  margin-bottom: 15px;
}
.my-account .well .btn, .my-account .well .produit .left-container .add-to-cart-area .button, .produit .left-container .add-to-cart-area .my-account .well .button, .my-account .well .user-container .fake-space .user-block .woocommerce-form .form-row .woocommerce-button, .user-container .fake-space .user-block .woocommerce-form .form-row .my-account .well .woocommerce-button, .my-account .well .button, .my-account .well .woocommerce-Address .edit, .my-account .well .woocommerce-customer-details .edit {
  margin-top: 30px;
}

.content-inscription {
  padding: 0 !important;
}

.produit {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 150px;
}
@media screen and (max-width: 992px) {
  .produit {
    margin-bottom: 100px;
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
}
.produit .disabled {
  opacity: 0.6;
}
.produit .left-container {
  padding-right: 55px;
  display: block;
}
@media screen and (max-width: 992px) {
  .produit .left-container {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    padding: 0;
  }
}
.produit .left-container .primary-title {
  margin-bottom: 20px;
}
@media screen and (max-width: 992px) {
  .produit .left-container .primary-title {
    margin: 30px 0;
  }
}
.produit .left-container .badge-container-fix {
  position: relative;
  margin-bottom: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.produit .left-container .badge-container-fix svg {
  font-size: 12px;
}
.produit .left-container .weight {
  margin: 28px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  color: #451113;
  opacity: 1;
}
.produit .left-container .product-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.produit .left-container .disclaimer {
  color: #FF000A;
  font-size: 12px;
  margin-top: 20px;
  font-style: italic;
}
.produit .left-container .add-to-cart-area .button {
  width: 100%;
  margin-top: 25px;
}
@media screen and (max-width: 992px) {
  .produit .left-container .add-to-cart-area .button {
    margin-top: 40px;
  }
}
.produit .left-container .underline-link, .produit .left-container .user-container .fake-space .user-block .woocommerce-form .lost_password, .user-container .fake-space .user-block .woocommerce-form .produit .left-container .lost_password {
  margin-top: 40px;
}
.produit .left-container .delivery-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 50px;
}
.produit .left-container .delivery-box .container-livraison {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 992px) {
  .produit .left-container .delivery-box .container-livraison {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}
.produit .left-container .delivery-box .container-livraison .right-content {
  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: end;
      -ms-flex-align: end;
          align-items: end;
}
@media screen and (max-width: 992px) {
  .produit .left-container .delivery-box .container-livraison .right-content {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    margin-left: 30px;
  }
}
.produit .left-container .delivery-box .container-livraison .left-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.produit .left-container .delivery-box .container-livraison svg {
  font-size: 30px;
}
@media screen and (max-width: 992px) {
  .produit .left-container .delivery-box .container-livraison svg {
    font-size: 20px;
  }
}
.produit .left-container .delivery-box .line {
  width: 100%;
  height: 1px;
  background-color: rgba(69, 17, 19, 0.5);
  margin: 20px 0 10px;
}
.produit .left-container .info-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border: 1px solid rgba(69, 17, 19, 0.3);
  border-radius: 5px;
  gap: 25px;
  margin-top: 40px;
  padding: 20px;
}
.produit .left-container .info-box .content {
  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;
}
.produit .left-container .info-box .p-description, .produit .left-container .info-box .single-article .content-article ul li, .single-article .content-article ul .produit .left-container .info-box li, .produit .left-container .info-box .single-article .content-article p, .single-article .content-article .produit .left-container .info-box p {
  opacity: 1;
}
.produit .left-container .info-box .p-description.strong, .produit .left-container .info-box .single-article .content-article ul li.strong, .single-article .content-article ul .produit .left-container .info-box li.strong, .produit .left-container .info-box .single-article .content-article p.strong, .single-article .content-article .produit .left-container .info-box p.strong {
  font-weight: 700;
}
.produit .sticky {
  height: 100%;
  position: relative;
}
@media screen and (max-width: 992px) {
  .produit .sticky {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.produit .sticky .right-container {
  background-color: #FEFCF9;
  padding: 0 30px 45px;
  height: 500px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: sticky;
  top: 180px;
}
@media screen and (max-width: 992px) {
  .produit .sticky .right-container {
    height: 300px;
  }
}
.produit .sticky .right-container .swiper {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 80%;
}
.produit .sticky .right-container .swiper .swiper-slide {
  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;
}
.produit .sticky .right-container .swiper .swiper-slide img {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.quantity-box {
  border-radius: 5px;
  border: 1px solid rgba(69, 17, 19, 0.5);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.quantity-box.small button {
  font-size: 20px;
}
.quantity-box.small button, .quantity-box.small .qty {
  width: 30px;
  height: 30px;
}
.quantity-box.small .qty {
  font-size: 15px;
}
.quantity-box button, .quantity-box .qty {
  width: 55px;
  height: 55px;
  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;
}
.quantity-box button {
  font-size: 25px;
}
.quantity-box .qty {
  border-left: 1px solid rgba(69, 17, 19, 0.5) !important;
  border-right: 1px solid rgba(69, 17, 19, 0.5) !important;
  font-size: 20px;
  text-align: center;
}
.quantity-box input[type=number]::-webkit-inner-spin-button,
.quantity-box input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.single-boutique .img-container {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.single-boutique .img-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
@media screen and (max-width: 992px) {
  .single-boutique .img-container img {
    height: 280px;
  }
}
.single-boutique .img-container .legend {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  border-radius: 5px;
  color: #891811;
  padding: 8px 15px;
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  font-size: 14px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 992px) {
  .single-boutique .img-container .legend {
    bottom: 10px;
    left: 10px;
    right: 10px;
    font-size: 12px;
  }
}
.single-boutique .img-container .legend svg {
  font-size: 38px;
}
.single-boutique .left-container {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin: 0 50px 0 0;
}
@media screen and (max-width: 992px) {
  .single-boutique .left-container {
    margin: 30px 0 0;
  }
}
.single-boutique .left-container .badge-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.single-boutique .left-container .info-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: 20px;
  margin: 30px 0 35px;
}
.single-boutique .left-container .info-container .info-item {
  color: #891811;
  font-size: 16px;
  font-family: "Raleway", sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 13px;
  font-weight: 600;
}
.single-boutique .left-container .info-container .info-item svg {
  font-size: 16px;
}
.single-boutique .map-section .map-container {
  border-radius: 10px;
}
.single-boutique .map-section .map-container iframe {
  width: 100%;
  height: 500px;
  border: none;
  border-radius: 10px;
}

.post-type-archive-product {
  background-color: #F8ECE4;
}

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