@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Gabarito:wght@400,600,900&display=swap");
@font-face {
  font-family: ppradiogrotesk;
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/ppradiogrotesk-bold-webfont.woff2") format("woff2");
}
@font-face {
  font-family: ppradiogrotesk;
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/ppradiogrotesk-medium-webfont.woff2") format("woff2");
}
@font-face {
  font-family: ppradiogrotesk;
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/ppradiogrotesk-regular-webfont.woff2") format("woff2");
}
/* ----------------------------- */
/* ==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: ppradiogrotesk, sans-serif;
  font-size: 1rem;
  line-height: 1.1;
  background-color: #fff;
  color: #1f242c;
}

/*
 * Headings
 */
h1,
.h1-like,
h2,
.h2-like,
h3,
.h3-like,
h4,
.h4-like,
h5,
.h5-like,
h6,
.h6-like {
  color: #212529;
  font-weight: 500;
}

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

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

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

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

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

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

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

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

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

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

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

img {
  border-style: none;
}

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

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

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

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

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

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

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

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

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

/*
 * Change the cursor on disabled, not-editable, or otherwise
 * inoperable elements in all browsers.
 */
[aria-disabled=true],
[disabled] {
  cursor: not-allowed;
}

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

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

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

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

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

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

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

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

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

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

form,
fieldset {
  border: none;
}

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

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

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

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

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

output {
  display: inline-block;
}

summary {
  display: list-item;
}

template {
  display: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.gap-5 {
  gap: 0.313rem;
}

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

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

.gap-10 {
  gap: 0.625rem;
}

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

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

.gap-16 {
  gap: 1rem;
}

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

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

.gap-20 {
  gap: 1.25rem;
}

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

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

.gap-30 {
  gap: 1.875rem;
}

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

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

.gap-36 {
  gap: 2.25rem;
}

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

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

.gap-40 {
  gap: 2.5rem;
}

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

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

.gap-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-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-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: 1200px) {
  .lg\:gap-0 {
    gap: 0;
  }
  .lg\:gap-x-0 {
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
  }
  .lg\:gap-y-0 {
    row-gap: 0;
  }
  .lg\:gap-5 {
    gap: 0.313rem;
  }
  .lg\:gap-x-5 {
    -webkit-column-gap: 0.313rem;
       -moz-column-gap: 0.313rem;
            column-gap: 0.313rem;
  }
  .lg\:gap-y-5 {
    row-gap: 0.313rem;
  }
  .lg\:gap-10 {
    gap: 0.625rem;
  }
  .lg\:gap-x-10 {
    -webkit-column-gap: 0.625rem;
       -moz-column-gap: 0.625rem;
            column-gap: 0.625rem;
  }
  .lg\:gap-y-10 {
    row-gap: 0.625rem;
  }
  .lg\:gap-16 {
    gap: 1rem;
  }
  .lg\:gap-x-16 {
    -webkit-column-gap: 1rem;
       -moz-column-gap: 1rem;
            column-gap: 1rem;
  }
  .lg\:gap-y-16 {
    row-gap: 1rem;
  }
  .lg\:gap-20 {
    gap: 1.25rem;
  }
  .lg\:gap-x-20 {
    -webkit-column-gap: 1.25rem;
       -moz-column-gap: 1.25rem;
            column-gap: 1.25rem;
  }
  .lg\:gap-y-20 {
    row-gap: 1.25rem;
  }
  .lg\:gap-30 {
    gap: 1.875rem;
  }
  .lg\:gap-x-30 {
    -webkit-column-gap: 1.875rem;
       -moz-column-gap: 1.875rem;
            column-gap: 1.875rem;
  }
  .lg\:gap-y-30 {
    row-gap: 1.875rem;
  }
  .lg\:gap-36 {
    gap: 2.25rem;
  }
  .lg\:gap-x-36 {
    -webkit-column-gap: 2.25rem;
       -moz-column-gap: 2.25rem;
            column-gap: 2.25rem;
  }
  .lg\:gap-y-36 {
    row-gap: 2.25rem;
  }
  .lg\:gap-40 {
    gap: 2.5rem;
  }
  .lg\:gap-x-40 {
    -webkit-column-gap: 2.5rem;
       -moz-column-gap: 2.5rem;
            column-gap: 2.5rem;
  }
  .lg\:gap-y-40 {
    row-gap: 2.5rem;
  }
  .lg\:gap-70 {
    gap: 4.375rem;
  }
  .lg\:gap-x-70 {
    -webkit-column-gap: 4.375rem;
       -moz-column-gap: 4.375rem;
            column-gap: 4.375rem;
  }
  .lg\:gap-y-70 {
    row-gap: 4.375rem;
  }
}
@media (min-width: 1400px) {
  .xl\:gap-0 {
    gap: 0;
  }
  .xl\:gap-x-0 {
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
  }
  .xl\:gap-y-0 {
    row-gap: 0;
  }
  .xl\:gap-5 {
    gap: 0.313rem;
  }
  .xl\:gap-x-5 {
    -webkit-column-gap: 0.313rem;
       -moz-column-gap: 0.313rem;
            column-gap: 0.313rem;
  }
  .xl\:gap-y-5 {
    row-gap: 0.313rem;
  }
  .xl\:gap-10 {
    gap: 0.625rem;
  }
  .xl\:gap-x-10 {
    -webkit-column-gap: 0.625rem;
       -moz-column-gap: 0.625rem;
            column-gap: 0.625rem;
  }
  .xl\:gap-y-10 {
    row-gap: 0.625rem;
  }
  .xl\:gap-16 {
    gap: 1rem;
  }
  .xl\:gap-x-16 {
    -webkit-column-gap: 1rem;
       -moz-column-gap: 1rem;
            column-gap: 1rem;
  }
  .xl\:gap-y-16 {
    row-gap: 1rem;
  }
  .xl\:gap-20 {
    gap: 1.25rem;
  }
  .xl\:gap-x-20 {
    -webkit-column-gap: 1.25rem;
       -moz-column-gap: 1.25rem;
            column-gap: 1.25rem;
  }
  .xl\:gap-y-20 {
    row-gap: 1.25rem;
  }
  .xl\:gap-30 {
    gap: 1.875rem;
  }
  .xl\:gap-x-30 {
    -webkit-column-gap: 1.875rem;
       -moz-column-gap: 1.875rem;
            column-gap: 1.875rem;
  }
  .xl\:gap-y-30 {
    row-gap: 1.875rem;
  }
  .xl\:gap-36 {
    gap: 2.25rem;
  }
  .xl\:gap-x-36 {
    -webkit-column-gap: 2.25rem;
       -moz-column-gap: 2.25rem;
            column-gap: 2.25rem;
  }
  .xl\:gap-y-36 {
    row-gap: 2.25rem;
  }
  .xl\:gap-40 {
    gap: 2.5rem;
  }
  .xl\:gap-x-40 {
    -webkit-column-gap: 2.5rem;
       -moz-column-gap: 2.5rem;
            column-gap: 2.5rem;
  }
  .xl\:gap-y-40 {
    row-gap: 2.5rem;
  }
  .xl\:gap-70 {
    gap: 4.375rem;
  }
  .xl\:gap-x-70 {
    -webkit-column-gap: 4.375rem;
       -moz-column-gap: 4.375rem;
            column-gap: 4.375rem;
  }
  .xl\:gap-y-70 {
    row-gap: 4.375rem;
  }
}
/* grid-items initialisation */
.col-start-1 {
  -ms-grid-column: 1;
      grid-column-start: 1;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* grid-items au sein des breakpoints */
@media (min-width: 576px) {
  .sm\:col-start-1 {
    -ms-grid-column: 1;
        grid-column-start: 1;
  }
  .sm\:col-end-1 {
    -ms-grid-column-span: 1;
    grid-column-end: 1;
  }
  .sm\:col-span-1 {
    -ms-grid-column-span: 1;
    grid-column: span 1/span 1;
  }
  .sm\:col-span-full {
    grid-column: 1/-1;
  }
  .sm\:row-start-1 {
    -ms-grid-row: 1;
        grid-row-start: 1;
  }
  .sm\:row-end-1 {
    -ms-grid-row-span: 1;
    grid-row-end: 1;
  }
  .sm\:row-span-1 {
    -ms-grid-row-span: 1;
    grid-row: span 1/span 1;
  }
  .sm\:col-start-2 {
    -ms-grid-column: 2;
        grid-column-start: 2;
  }
  .sm\:col-end-2 {
    -ms-grid-column-span: 2;
    grid-column-end: 2;
  }
  .sm\:col-span-2 {
    -ms-grid-column-span: 2;
    grid-column: span 2/span 2;
  }
  .sm\:col-span-full {
    grid-column: 1/-1;
  }
  .sm\:row-start-2 {
    -ms-grid-row: 2;
        grid-row-start: 2;
  }
  .sm\:row-end-2 {
    -ms-grid-row-span: 2;
    grid-row-end: 2;
  }
  .sm\:row-span-2 {
    -ms-grid-row-span: 2;
    grid-row: span 2/span 2;
  }
  .sm\:col-start-3 {
    -ms-grid-column: 3;
        grid-column-start: 3;
  }
  .sm\:col-end-3 {
    -ms-grid-column-span: 3;
    grid-column-end: 3;
  }
  .sm\:col-span-3 {
    -ms-grid-column-span: 3;
    grid-column: span 3/span 3;
  }
  .sm\:col-span-full {
    grid-column: 1/-1;
  }
  .sm\:row-start-3 {
    -ms-grid-row: 3;
        grid-row-start: 3;
  }
  .sm\:row-end-3 {
    -ms-grid-row-span: 3;
    grid-row-end: 3;
  }
  .sm\:row-span-3 {
    -ms-grid-row-span: 3;
    grid-row: span 3/span 3;
  }
  .sm\:col-start-4 {
    -ms-grid-column: 4;
        grid-column-start: 4;
  }
  .sm\:col-end-4 {
    -ms-grid-column-span: 4;
    grid-column-end: 4;
  }
  .sm\:col-span-4 {
    -ms-grid-column-span: 4;
    grid-column: span 4/span 4;
  }
  .sm\:col-span-full {
    grid-column: 1/-1;
  }
  .sm\:row-start-4 {
    -ms-grid-row: 4;
        grid-row-start: 4;
  }
  .sm\:row-end-4 {
    -ms-grid-row-span: 4;
    grid-row-end: 4;
  }
  .sm\:row-span-4 {
    -ms-grid-row-span: 4;
    grid-row: span 4/span 4;
  }
  .sm\:col-start-5 {
    -ms-grid-column: 5;
        grid-column-start: 5;
  }
  .sm\:col-end-5 {
    -ms-grid-column-span: 5;
    grid-column-end: 5;
  }
  .sm\:col-span-5 {
    -ms-grid-column-span: 5;
    grid-column: span 5/span 5;
  }
  .sm\:col-span-full {
    grid-column: 1/-1;
  }
  .sm\:row-start-5 {
    -ms-grid-row: 5;
        grid-row-start: 5;
  }
  .sm\:row-end-5 {
    -ms-grid-row-span: 5;
    grid-row-end: 5;
  }
  .sm\:row-span-5 {
    -ms-grid-row-span: 5;
    grid-row: span 5/span 5;
  }
  .sm\:col-start-6 {
    -ms-grid-column: 6;
        grid-column-start: 6;
  }
  .sm\:col-end-6 {
    -ms-grid-column-span: 6;
    grid-column-end: 6;
  }
  .sm\:col-span-6 {
    -ms-grid-column-span: 6;
    grid-column: span 6/span 6;
  }
  .sm\:col-span-full {
    grid-column: 1/-1;
  }
  .sm\:row-start-6 {
    -ms-grid-row: 6;
        grid-row-start: 6;
  }
  .sm\:row-end-6 {
    -ms-grid-row-span: 6;
    grid-row-end: 6;
  }
  .sm\:row-span-6 {
    -ms-grid-row-span: 6;
    grid-row: span 6/span 6;
  }
}
@media (min-width: 992px) {
  .md\:col-start-1 {
    -ms-grid-column: 1;
        grid-column-start: 1;
  }
  .md\:col-end-1 {
    -ms-grid-column-span: 1;
    grid-column-end: 1;
  }
  .md\:col-span-1 {
    -ms-grid-column-span: 1;
    grid-column: span 1/span 1;
  }
  .md\:col-span-full {
    grid-column: 1/-1;
  }
  .md\:row-start-1 {
    -ms-grid-row: 1;
        grid-row-start: 1;
  }
  .md\:row-end-1 {
    -ms-grid-row-span: 1;
    grid-row-end: 1;
  }
  .md\:row-span-1 {
    -ms-grid-row-span: 1;
    grid-row: span 1/span 1;
  }
  .md\:col-start-2 {
    -ms-grid-column: 2;
        grid-column-start: 2;
  }
  .md\:col-end-2 {
    -ms-grid-column-span: 2;
    grid-column-end: 2;
  }
  .md\:col-span-2 {
    -ms-grid-column-span: 2;
    grid-column: span 2/span 2;
  }
  .md\:col-span-full {
    grid-column: 1/-1;
  }
  .md\:row-start-2 {
    -ms-grid-row: 2;
        grid-row-start: 2;
  }
  .md\:row-end-2 {
    -ms-grid-row-span: 2;
    grid-row-end: 2;
  }
  .md\:row-span-2 {
    -ms-grid-row-span: 2;
    grid-row: span 2/span 2;
  }
  .md\:col-start-3 {
    -ms-grid-column: 3;
        grid-column-start: 3;
  }
  .md\:col-end-3 {
    -ms-grid-column-span: 3;
    grid-column-end: 3;
  }
  .md\:col-span-3 {
    -ms-grid-column-span: 3;
    grid-column: span 3/span 3;
  }
  .md\:col-span-full {
    grid-column: 1/-1;
  }
  .md\:row-start-3 {
    -ms-grid-row: 3;
        grid-row-start: 3;
  }
  .md\:row-end-3 {
    -ms-grid-row-span: 3;
    grid-row-end: 3;
  }
  .md\:row-span-3 {
    -ms-grid-row-span: 3;
    grid-row: span 3/span 3;
  }
  .md\:col-start-4 {
    -ms-grid-column: 4;
        grid-column-start: 4;
  }
  .md\:col-end-4 {
    -ms-grid-column-span: 4;
    grid-column-end: 4;
  }
  .md\:col-span-4 {
    -ms-grid-column-span: 4;
    grid-column: span 4/span 4;
  }
  .md\:col-span-full {
    grid-column: 1/-1;
  }
  .md\:row-start-4 {
    -ms-grid-row: 4;
        grid-row-start: 4;
  }
  .md\:row-end-4 {
    -ms-grid-row-span: 4;
    grid-row-end: 4;
  }
  .md\:row-span-4 {
    -ms-grid-row-span: 4;
    grid-row: span 4/span 4;
  }
  .md\:col-start-5 {
    -ms-grid-column: 5;
        grid-column-start: 5;
  }
  .md\:col-end-5 {
    -ms-grid-column-span: 5;
    grid-column-end: 5;
  }
  .md\:col-span-5 {
    -ms-grid-column-span: 5;
    grid-column: span 5/span 5;
  }
  .md\:col-span-full {
    grid-column: 1/-1;
  }
  .md\:row-start-5 {
    -ms-grid-row: 5;
        grid-row-start: 5;
  }
  .md\:row-end-5 {
    -ms-grid-row-span: 5;
    grid-row-end: 5;
  }
  .md\:row-span-5 {
    -ms-grid-row-span: 5;
    grid-row: span 5/span 5;
  }
  .md\:col-start-6 {
    -ms-grid-column: 6;
        grid-column-start: 6;
  }
  .md\:col-end-6 {
    -ms-grid-column-span: 6;
    grid-column-end: 6;
  }
  .md\:col-span-6 {
    -ms-grid-column-span: 6;
    grid-column: span 6/span 6;
  }
  .md\:col-span-full {
    grid-column: 1/-1;
  }
  .md\:row-start-6 {
    -ms-grid-row: 6;
        grid-row-start: 6;
  }
  .md\:row-end-6 {
    -ms-grid-row-span: 6;
    grid-row-end: 6;
  }
  .md\:row-span-6 {
    -ms-grid-row-span: 6;
    grid-row: span 6/span 6;
  }
}
@media (min-width: 1200px) {
  .lg\:col-start-1 {
    -ms-grid-column: 1;
        grid-column-start: 1;
  }
  .lg\:col-end-1 {
    -ms-grid-column-span: 1;
    grid-column-end: 1;
  }
  .lg\:col-span-1 {
    -ms-grid-column-span: 1;
    grid-column: span 1/span 1;
  }
  .lg\:col-span-full {
    grid-column: 1/-1;
  }
  .lg\:row-start-1 {
    -ms-grid-row: 1;
        grid-row-start: 1;
  }
  .lg\:row-end-1 {
    -ms-grid-row-span: 1;
    grid-row-end: 1;
  }
  .lg\:row-span-1 {
    -ms-grid-row-span: 1;
    grid-row: span 1/span 1;
  }
  .lg\:col-start-2 {
    -ms-grid-column: 2;
        grid-column-start: 2;
  }
  .lg\:col-end-2 {
    -ms-grid-column-span: 2;
    grid-column-end: 2;
  }
  .lg\:col-span-2 {
    -ms-grid-column-span: 2;
    grid-column: span 2/span 2;
  }
  .lg\:col-span-full {
    grid-column: 1/-1;
  }
  .lg\:row-start-2 {
    -ms-grid-row: 2;
        grid-row-start: 2;
  }
  .lg\:row-end-2 {
    -ms-grid-row-span: 2;
    grid-row-end: 2;
  }
  .lg\:row-span-2 {
    -ms-grid-row-span: 2;
    grid-row: span 2/span 2;
  }
  .lg\:col-start-3 {
    -ms-grid-column: 3;
        grid-column-start: 3;
  }
  .lg\:col-end-3 {
    -ms-grid-column-span: 3;
    grid-column-end: 3;
  }
  .lg\:col-span-3 {
    -ms-grid-column-span: 3;
    grid-column: span 3/span 3;
  }
  .lg\:col-span-full {
    grid-column: 1/-1;
  }
  .lg\:row-start-3 {
    -ms-grid-row: 3;
        grid-row-start: 3;
  }
  .lg\:row-end-3 {
    -ms-grid-row-span: 3;
    grid-row-end: 3;
  }
  .lg\:row-span-3 {
    -ms-grid-row-span: 3;
    grid-row: span 3/span 3;
  }
  .lg\:col-start-4 {
    -ms-grid-column: 4;
        grid-column-start: 4;
  }
  .lg\:col-end-4 {
    -ms-grid-column-span: 4;
    grid-column-end: 4;
  }
  .lg\:col-span-4 {
    -ms-grid-column-span: 4;
    grid-column: span 4/span 4;
  }
  .lg\:col-span-full {
    grid-column: 1/-1;
  }
  .lg\:row-start-4 {
    -ms-grid-row: 4;
        grid-row-start: 4;
  }
  .lg\:row-end-4 {
    -ms-grid-row-span: 4;
    grid-row-end: 4;
  }
  .lg\:row-span-4 {
    -ms-grid-row-span: 4;
    grid-row: span 4/span 4;
  }
  .lg\:col-start-5 {
    -ms-grid-column: 5;
        grid-column-start: 5;
  }
  .lg\:col-end-5 {
    -ms-grid-column-span: 5;
    grid-column-end: 5;
  }
  .lg\:col-span-5 {
    -ms-grid-column-span: 5;
    grid-column: span 5/span 5;
  }
  .lg\:col-span-full {
    grid-column: 1/-1;
  }
  .lg\:row-start-5 {
    -ms-grid-row: 5;
        grid-row-start: 5;
  }
  .lg\:row-end-5 {
    -ms-grid-row-span: 5;
    grid-row-end: 5;
  }
  .lg\:row-span-5 {
    -ms-grid-row-span: 5;
    grid-row: span 5/span 5;
  }
  .lg\:col-start-6 {
    -ms-grid-column: 6;
        grid-column-start: 6;
  }
  .lg\:col-end-6 {
    -ms-grid-column-span: 6;
    grid-column-end: 6;
  }
  .lg\:col-span-6 {
    -ms-grid-column-span: 6;
    grid-column: span 6/span 6;
  }
  .lg\:col-span-full {
    grid-column: 1/-1;
  }
  .lg\:row-start-6 {
    -ms-grid-row: 6;
        grid-row-start: 6;
  }
  .lg\:row-end-6 {
    -ms-grid-row-span: 6;
    grid-row-end: 6;
  }
  .lg\:row-span-6 {
    -ms-grid-row-span: 6;
    grid-row: span 6/span 6;
  }
}
@media (min-width: 1400px) {
  .xl\:col-start-1 {
    -ms-grid-column: 1;
        grid-column-start: 1;
  }
  .xl\:col-end-1 {
    -ms-grid-column-span: 1;
    grid-column-end: 1;
  }
  .xl\:col-span-1 {
    -ms-grid-column-span: 1;
    grid-column: span 1/span 1;
  }
  .xl\:col-span-full {
    grid-column: 1/-1;
  }
  .xl\:row-start-1 {
    -ms-grid-row: 1;
        grid-row-start: 1;
  }
  .xl\:row-end-1 {
    -ms-grid-row-span: 1;
    grid-row-end: 1;
  }
  .xl\:row-span-1 {
    -ms-grid-row-span: 1;
    grid-row: span 1/span 1;
  }
  .xl\:col-start-2 {
    -ms-grid-column: 2;
        grid-column-start: 2;
  }
  .xl\:col-end-2 {
    -ms-grid-column-span: 2;
    grid-column-end: 2;
  }
  .xl\:col-span-2 {
    -ms-grid-column-span: 2;
    grid-column: span 2/span 2;
  }
  .xl\:col-span-full {
    grid-column: 1/-1;
  }
  .xl\:row-start-2 {
    -ms-grid-row: 2;
        grid-row-start: 2;
  }
  .xl\:row-end-2 {
    -ms-grid-row-span: 2;
    grid-row-end: 2;
  }
  .xl\:row-span-2 {
    -ms-grid-row-span: 2;
    grid-row: span 2/span 2;
  }
  .xl\:col-start-3 {
    -ms-grid-column: 3;
        grid-column-start: 3;
  }
  .xl\:col-end-3 {
    -ms-grid-column-span: 3;
    grid-column-end: 3;
  }
  .xl\:col-span-3 {
    -ms-grid-column-span: 3;
    grid-column: span 3/span 3;
  }
  .xl\:col-span-full {
    grid-column: 1/-1;
  }
  .xl\:row-start-3 {
    -ms-grid-row: 3;
        grid-row-start: 3;
  }
  .xl\:row-end-3 {
    -ms-grid-row-span: 3;
    grid-row-end: 3;
  }
  .xl\:row-span-3 {
    -ms-grid-row-span: 3;
    grid-row: span 3/span 3;
  }
  .xl\:col-start-4 {
    -ms-grid-column: 4;
        grid-column-start: 4;
  }
  .xl\:col-end-4 {
    -ms-grid-column-span: 4;
    grid-column-end: 4;
  }
  .xl\:col-span-4 {
    -ms-grid-column-span: 4;
    grid-column: span 4/span 4;
  }
  .xl\:col-span-full {
    grid-column: 1/-1;
  }
  .xl\:row-start-4 {
    -ms-grid-row: 4;
        grid-row-start: 4;
  }
  .xl\:row-end-4 {
    -ms-grid-row-span: 4;
    grid-row-end: 4;
  }
  .xl\:row-span-4 {
    -ms-grid-row-span: 4;
    grid-row: span 4/span 4;
  }
  .xl\:col-start-5 {
    -ms-grid-column: 5;
        grid-column-start: 5;
  }
  .xl\:col-end-5 {
    -ms-grid-column-span: 5;
    grid-column-end: 5;
  }
  .xl\:col-span-5 {
    -ms-grid-column-span: 5;
    grid-column: span 5/span 5;
  }
  .xl\:col-span-full {
    grid-column: 1/-1;
  }
  .xl\:row-start-5 {
    -ms-grid-row: 5;
        grid-row-start: 5;
  }
  .xl\:row-end-5 {
    -ms-grid-row-span: 5;
    grid-row-end: 5;
  }
  .xl\:row-span-5 {
    -ms-grid-row-span: 5;
    grid-row: span 5/span 5;
  }
  .xl\:col-start-6 {
    -ms-grid-column: 6;
        grid-column-start: 6;
  }
  .xl\:col-end-6 {
    -ms-grid-column-span: 6;
    grid-column-end: 6;
  }
  .xl\:col-span-6 {
    -ms-grid-column-span: 6;
    grid-column: span 6/span 6;
  }
  .xl\:col-span-full {
    grid-column: 1/-1;
  }
  .xl\:row-start-6 {
    -ms-grid-row: 6;
        grid-row-start: 6;
  }
  .xl\:row-end-6 {
    -ms-grid-row-span: 6;
    grid-row-end: 6;
  }
  .xl\:row-span-6 {
    -ms-grid-row-span: 6;
    grid-row: span 6/span 6;
  }
}
/* ----------------------------  */
/* ==Layout classes              */
/* ----------------------------- */
/* Global container */
.layout-maxed {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(20px, 1fr) minmax(auto, 576px) minmax(20px, 1fr);
  grid-template-columns: minmax(20px, 1fr) minmax(auto, 576px) minmax(20px, 1fr);
  /* Center all children */
}
@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(20px, 1fr) minmax(auto, 992px) minmax(20px, 1fr);
    grid-template-columns: minmax(20px, 1fr) minmax(auto, 992px) minmax(20px, 1fr);
  }
}
@media (min-width: 1200px) {
  .layout-maxed {
    -ms-grid-columns: minmax(20px, 1fr) minmax(auto, 1200px) minmax(20px, 1fr);
    grid-template-columns: minmax(20px, 1fr) minmax(auto, 1200px) minmax(20px, 1fr);
  }
}
@media (min-width: 1400px) {
  .layout-maxed {
    -ms-grid-columns: minmax(20px, 1fr) minmax(auto, 1400px) minmax(20px, 1fr);
    grid-template-columns: minmax(20px, 1fr) minmax(auto, 1400px) minmax(20px, 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;
  position: relative;
}
.layout-hero > * {
  -ms-grid-column: 2;
  grid-column: 2;
}

.layout-maxed-4col {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(20px, 1fr) minmax(auto, 288px) minmax(auto, 288px) minmax(20px, 1fr);
  grid-template-columns: minmax(20px, 1fr) minmax(auto, 288px) minmax(auto, 288px) minmax(20px, 1fr);
}
@media (min-width: 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(20px, 1fr) minmax(auto, 496px) minmax(auto, 496px) minmax(20px, 1fr);
    grid-template-columns: minmax(20px, 1fr) minmax(auto, 496px) minmax(auto, 496px) minmax(20px, 1fr);
  }
}
@media (min-width: 1200px) {
  .layout-maxed-4col {
    -ms-grid-columns: minmax(20px, 1fr) minmax(auto, 600px) minmax(auto, 600px) minmax(20px, 1fr);
    grid-template-columns: minmax(20px, 1fr) minmax(auto, 600px) minmax(auto, 600px) minmax(20px, 1fr);
  }
}
@media (min-width: 1400px) {
  .layout-maxed-4col {
    -ms-grid-columns: minmax(20px, 1fr) minmax(auto, 700px) minmax(auto, 700px) minmax(20px, 1fr);
    grid-template-columns: minmax(20px, 1fr) minmax(auto, 700px) minmax(auto, 700px) minmax(20px, 1fr);
  }
}
.layout-maxed-4col > * {
  -ms-grid-column: 2;
  -ms-grid-column-span: 2;
  grid-column: 2/4;
}

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

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

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

.w-100 {
  width: 100%;
}

.h-100 {
  height: 100%;
}

.w-75 {
  width: 75%;
}

.h-75 {
  height: 75%;
}

.w-50 {
  width: 50%;
}

.h-50 {
  height: 50%;
}

.w-25 {
  width: 25%;
}

.h-25 {
  height: 25%;
}

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

.hidden {
  display: none;
}

.block {
  display: block;
}

.inline {
  display: inline;
}

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

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

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

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

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

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

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

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

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

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

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

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

.float-left {
  float: left;
}

.float-right {
  float: right;
}

.float-none {
  float: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 576px) {
  .sm\:text-10 {
    font-size: 0.625rem;
  }
}
@media (min-width: 992px) {
  .md\:text-10 {
    font-size: 0.625rem;
  }
}
@media (min-width: 1200px) {
  .lg\:text-10 {
    font-size: 0.625rem;
  }
}
@media (min-width: 1400px) {
  .xl\:text-10 {
    font-size: 0.625rem;
  }
}
@media (min-width: 576px) {
  .sm\:text-11 {
    font-size: 0.6875rem;
  }
}
@media (min-width: 992px) {
  .md\:text-11 {
    font-size: 0.6875rem;
  }
}
@media (min-width: 1200px) {
  .lg\:text-11 {
    font-size: 0.6875rem;
  }
}
@media (min-width: 1400px) {
  .xl\:text-11 {
    font-size: 0.6875rem;
  }
}
@media (min-width: 576px) {
  .sm\:text-12 {
    font-size: 0.75rem;
  }
}
@media (min-width: 992px) {
  .md\:text-12 {
    font-size: 0.75rem;
  }
}
@media (min-width: 1200px) {
  .lg\:text-12 {
    font-size: 0.75rem;
  }
}
@media (min-width: 1400px) {
  .xl\:text-12 {
    font-size: 0.75rem;
  }
}
@media (min-width: 576px) {
  .sm\:text-14 {
    font-size: 0.875rem;
  }
}
@media (min-width: 992px) {
  .md\:text-14 {
    font-size: 0.875rem;
  }
}
@media (min-width: 1200px) {
  .lg\:text-14 {
    font-size: 0.875rem;
  }
}
@media (min-width: 1400px) {
  .xl\:text-14 {
    font-size: 0.875rem;
  }
}
@media (min-width: 576px) {
  .sm\:text-16 {
    font-size: 1rem;
  }
}
@media (min-width: 992px) {
  .md\:text-16 {
    font-size: 1rem;
  }
}
@media (min-width: 1200px) {
  .lg\:text-16 {
    font-size: 1rem;
  }
}
@media (min-width: 1400px) {
  .xl\:text-16 {
    font-size: 1rem;
  }
}
@media (min-width: 576px) {
  .sm\:text-18 {
    font-size: 1.125rem;
  }
}
@media (min-width: 992px) {
  .md\:text-18 {
    font-size: 1.125rem;
  }
}
@media (min-width: 1200px) {
  .lg\:text-18 {
    font-size: 1.125rem;
  }
}
@media (min-width: 1400px) {
  .xl\:text-18 {
    font-size: 1.125rem;
  }
}
@media (min-width: 576px) {
  .sm\:text-20 {
    font-size: 1.25rem;
  }
}
@media (min-width: 992px) {
  .md\:text-20 {
    font-size: 1.25rem;
  }
}
@media (min-width: 1200px) {
  .lg\:text-20 {
    font-size: 1.25rem;
  }
}
@media (min-width: 1400px) {
  .xl\:text-20 {
    font-size: 1.25rem;
  }
}
@media (min-width: 576px) {
  .sm\:text-24 {
    font-size: 1.5rem;
  }
}
@media (min-width: 992px) {
  .md\:text-24 {
    font-size: 1.5rem;
  }
}
@media (min-width: 1200px) {
  .lg\:text-24 {
    font-size: 1.5rem;
  }
}
@media (min-width: 1400px) {
  .xl\:text-24 {
    font-size: 1.5rem;
  }
}
@media (min-width: 576px) {
  .sm\:text-30 {
    font-size: 1.875rem;
  }
}
@media (min-width: 992px) {
  .md\:text-30 {
    font-size: 1.875rem;
  }
}
@media (min-width: 1200px) {
  .lg\:text-30 {
    font-size: 1.875rem;
  }
}
@media (min-width: 1400px) {
  .xl\:text-30 {
    font-size: 1.875rem;
  }
}
@media (min-width: 576px) {
  .sm\:text-36 {
    font-size: 2.25rem;
  }
}
@media (min-width: 992px) {
  .md\:text-36 {
    font-size: 2.25rem;
  }
}
@media (min-width: 1200px) {
  .lg\:text-36 {
    font-size: 2.25rem;
  }
}
@media (min-width: 1400px) {
  .xl\:text-36 {
    font-size: 2.25rem;
  }
}
@media (min-width: 576px) {
  .sm\:text-base {
    font-size: 1rem;
  }
}
@media (min-width: 992px) {
  .md\:text-base {
    font-size: 1rem;
  }
}
@media (min-width: 1200px) {
  .lg\:text-base {
    font-size: 1rem;
  }
}
@media (min-width: 1400px) {
  .xl\:text-base {
    font-size: 1rem;
  }
}
@media (min-width: 576px) {
  .sm\:text-inherit {
    font-size: inherit;
  }
}
@media (min-width: 992px) {
  .md\:text-inherit {
    font-size: inherit;
  }
}
@media (min-width: 1200px) {
  .lg\:text-inherit {
    font-size: inherit;
  }
}
@media (min-width: 1400px) {
  .xl\:text-inherit {
    font-size: inherit;
  }
}
/* Spacers utility classes */
.p-0 {
  padding: 0;
}

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

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

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

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

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

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

.m-0 {
  margin: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.m-1 {
  margin: 1px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.m-2 {
  margin: 0.125rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.m-4 {
  margin: 0.25rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.m-8 {
  margin: 0.5rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.m-10 {
  margin: 0.625rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.m-12 {
  margin: 0.75rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.m-16 {
  margin: 1rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.m-20 {
  margin: 1.25rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.m-24 {
  margin: 1.5rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.m-30 {
  margin: 1.875rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.m-36 {
  margin: 2.25rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.m-40 {
  margin: 2.5rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.m-70 {
  margin: 4.375rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.m-auto {
  margin: auto;
}

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

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

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

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

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

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

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

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

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

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

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

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

.background-container {
  grid-column: 1/-1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.background-container video,
.background-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.background-container:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, color-stop(32.85%, rgba(31, 36, 44, 0.64)), to(rgba(31, 36, 44, 0)));
  background: linear-gradient(90deg, rgba(31, 36, 44, 0.64) 32.85%, rgba(31, 36, 44, 0));
}

.post-content {
  margin: 52px;
}
.post-content h2 {
  font-size: 50px;
  line-height: 56px;
  margin-bottom: 20px;
  color: rgb(33, 37, 41);
}
.post-content h2 span {
  background-color: rgb(100, 255, 175);
}
.post-content h3 {
  font-size: 38px;
  line-height: 40px;
  margin-bottom: 20px;
}
.post-content h3 span {
  background-color: rgb(100, 255, 175);
}
.post-content h4 {
  font-size: 28px;
  line-height: 34px;
  margin-bottom: 20px;
}
.post-content h5 {
  font-size: 24px;
  line-height: 28px;
  margin-bottom: 20px;
}
.post-content p,
.post-content td {
  font-size: 21px;
  line-height: 32px;
  color: #1f242c;
  font-weight: 400;
  margin-bottom: 20px;
}
.post-content a {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  text-decoration: underline;
  color: #1f242c;
}
.post-content a:hover {
  color: #797c80;
  outline: none;
}
.post-content blockquote {
  border-left: solid 5px #64ffaf;
  font-size: 28px;
  line-height: 34px;
  margin: 25px 0 40px 0;
  padding-left: 24px;
}
.post-content blockquote p {
  font-size: 28px;
  line-height: 34px;
}
.post-content img {
  width: 100%;
  height: auto;
}
.post-content table {
  border-collapse: collapse;
  margin: 0 0 20px 0;
  caption-side: bottom;
}
.post-content table tbody, .post-content table td, .post-content table tfoot, .post-content table th, .post-content table thead, .post-content table tr {
  border: 0 solid;
  border-color: inherit;
}
.post-content table td,
.post-content table th {
  border-bottom: 1px solid #b8b9ba;
  padding: 5px;
}
.post-content table td {
  padding: 10px 0 20px 0;
}
.post-content table img {
  width: 80px;
}
.post-content ul,
.post-content ol {
  list-style-type: disc;
  padding: 0 0 0 20px;
  margin-bottom: 20px;
}
.post-content ul li,
.post-content ol li {
  font-size: 21px;
  line-height: 32px;
}
.post-content ol {
  list-style-type: decimal;
}
.post-content mark {
  background-color: #64ffaf;
}
@media screen and (max-width: 992px) {
  .post-content h2 {
    font-size: 38px;
    line-height: 42px;
  }
  .post-content h3 {
    font-size: 32px;
    line-height: 34px;
  }
  .post-content h4 {
    font-size: 24px;
    line-height: 28px;
  }
  .post-content h5 {
    font-size: 20px;
    line-height: 24px;
  }
  .post-content p,
  .post-content td {
    font-size: 19px;
    line-height: 27px;
  }
}

.rotate-arrow .icon {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.header-site {
  position: sticky;
  z-index: 999999;
  top: 0;
  padding: 18px 0;
  background-color: transparent;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.header-site .burger-open {
  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;
  cursor: pointer;
}
.header-site .burger-open .bar {
  background-color: #fff;
  width: 30px;
  height: 2px;
  display: inline-block;
  -webkit-transition: background-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
}
.header-site .brand {
  margin-right: auto;
  margin-left: 32px;
}
.header-site .brand .icon {
  margin-right: 14px;
  font-size: 100px;
  height: 20px;
  color: #64ffaf;
}
.header-site .header {
  color: #fff;
}
.header-site .link:not(.btn-white),
.header-site .nav-link {
  color: #fff;
}
.header-site .ppl-switcher {
  padding: 16px 15px;
  margin-right: 5px;
  position: relative;
}
.header-site .ppl-switcher .lang-displayed {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
  color: #fff;
}
.header-site .ppl-switcher .lang-displayed .icon {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  font-size: 20px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.header-site .ppl-switcher .lang-selector {
  padding: 6px 4px;
  list-style: none;
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #1f242c;
  backdrop-filter: blur(30px);
}
.header-site .ppl-switcher .lang-item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 6px;
  color: #fff;
  text-transform: uppercase;
  font-size: 14px;
  white-space: nowrap;
  padding: 7px 12.5px 4px 8.2px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.header-site .ppl-switcher .lang-item a:hover {
  background-color: rgba(255, 255, 255, 0.24);
}
.header-site .ppl-switcher .current-lang {
  background-color: rgba(255, 255, 255, 0.24);
}
.header-site .ppl-switcher .current-lang a:before {
  opacity: 1;
}
.header-site .ppl-switcher .lang-displayed {
  text-transform: uppercase;
}
.header-site .ppl-switcher:has(input:checked) {
  background-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(30px);
}
.header-site .ppl-switcher:has(input:checked) .lang-displayed .icon {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.header-site .ppl-switcher:has(input:checked) .lang-selector {
  display: block;
}
.header-site .btn-white {
  line-height: 24px;
}
@media screen and (max-width: 992px) {
  .header-site .offcanvas-container {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-left: 16px;
  }
  .header-site .brand {
    margin-left: 0;
  }
}

.header-site.header-light,
body:has(.default-header-white) .header-site {
  background-color: #fff;
}
.header-site.header-light .header,
body:has(.default-header-white) .header-site .header {
  color: #1f242c;
  padding: 12px 0 8px 0;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.08);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.08);
}
.header-site.header-light .link,
.header-site.header-light .nav-link,
body:has(.default-header-white) .header-site .link,
body:has(.default-header-white) .header-site .nav-link {
  color: #1f242c;
}
.header-site.header-light .link:hover:after,
.header-site.header-light .nav-link:hover:after,
body:has(.default-header-white) .header-site .link:hover:after,
body:has(.default-header-white) .header-site .nav-link:hover:after {
  background-color: #1f242c;
}
.header-site.header-light .burger-open .bar,
body:has(.default-header-white) .header-site .burger-open .bar {
  background-color: #1f242c;
}
.header-site.header-light .brand .icon,
body:has(.default-header-white) .header-site .brand .icon {
  color: #1f242c;
}
.header-site.header-light .ppl-switcher .lang-displayed,
body:has(.default-header-white) .header-site .ppl-switcher .lang-displayed {
  color: #1f242c;
}
.header-site.header-light .btn-white,
body:has(.default-header-white) .header-site .btn-white {
  background-color: #1f242c;
  color: #fff;
}

.back-to-top-container {
  position: sticky;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  bottom: 0;
  z-index: 1000;
  text-align: center;
  padding: 16px 0 50px 0;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
}
.back-to-top-container .btn {
  pointer-events: auto;
  -webkit-user-select: auto;
     -moz-user-select: auto;
      -ms-user-select: auto;
          user-select: auto;
  top: 0px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.back-to-top-container .btn .icon {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.back-to-top-container .btn:hover {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
}

.footer-site {
  position: relative;
  background-color: #1f242c;
  color: #fff;
  padding: 0 0 56px 0;
}
.footer-site:before {
  content: "";
  width: 100%;
  height: 115px;
  background-color: #1f242c;
  position: absolute;
  bottom: 100%;
  left: 0;
}
.footer-site .link {
  display: block;
  color: #C5DBD3;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.footer-site .link:hover {
  color: #92a8a0;
}
.footer-site .top .cat-container {
  gap: 40px;
}
.footer-site .top .cat-container .cat {
  min-width: 16%;
}
.footer-site .top .cat-container .cat .icon-arrow-down {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  margin-right: 10px;
  font-size: 8px;
  color: #64ffaf;
}
.footer-site .top .cat-container .cat-title {
  text-align: start;
  margin-bottom: 32px;
  font-size: 28px;
  line-height: 34px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.footer-site .top .cat-container .link:not(.hidden) {
  margin-bottom: 15px;
}
.footer-site .top .cat-container .link-icon {
  color: #fff;
}
.footer-site .icon-site-logo {
  width: 100%;
  height: auto;
  aspect-ratio: 100/20;
  margin-top: 80px;
  margin-bottom: 48px;
  color: #64ffaf;
}
.footer-site .bottom .link,
.footer-site .bottom .text {
  color: #C5DBD3;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.footer-site .bottom .link:hover {
  color: #92a8a0;
}
@media screen and (max-width: 992px) {
  .footer-site .top .cat-container {
    gap: 0;
  }
  .footer-site .top .cat-container [data-controller=reveal] {
    border-top: solid 1px #C5DBD3;
    padding: 16px 0;
  }
  .footer-site .top .cat-container [data-controller=reveal] .cat-title {
    padding: 0;
    position: relative;
    width: 100%;
  }
  .footer-site .top .cat-container [data-controller=reveal] .cat-title:after {
    content: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTMuNTE2IDEyaDE2Ljk3TTEyIDMuNTE1djE2Ljk3IiBzdHJva2U9IiMwMDAiIHN0cm9rZS13aWR0aD0iMS41IiBzdHJva2UtbGluZWNhcD0ic3F1YXJlIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+PC9zdmc+");
    -webkit-filter: invert(95%) sepia(11%) saturate(269%) hue-rotate(104deg) brightness(90%) contrast(91%);
            filter: invert(95%) sepia(11%) saturate(269%) hue-rotate(104deg) brightness(90%) contrast(91%);
    position: absolute;
    top: 6px;
    right: 0;
  }
  .footer-site .top .cat-container [data-controller=reveal] .link:not(.hidden):last-child {
    margin-bottom: 20px;
  }
  .footer-site .top .cat-container [data-controller=reveal]:has(.hidden) .cat-title {
    margin: 0;
  }
  .footer-site .top .cat-container [data-controller=reveal]:has(.hidden) .cat-title:after {
    content: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTMuNTE2IDEyaDE2Ljk3IiBzdHJva2U9IiMwMDAiIHN0cm9rZS13aWR0aD0iMS41IiBzdHJva2UtbGluZWNhcD0ic3F1YXJlIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+PC9zdmc+");
  }
  .footer-site .top .cat-container [data-controller=reveal].last {
    border-bottom: solid 1px #C5DBD3;
  }
  .footer-site .top .cat-container .cat:last-child {
    margin-top: 64px;
    margin-bottom: 64px;
  }
  .footer-site .top .cat-container .cat:last-child .flex {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .footer-site .top .cat-container .cat:last-child .link-icon {
    font-size: 24px;
  }
  .footer-site .bottom .link,
  .footer-site .bottom .text {
    line-height: 42px;
  }
}

.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: #1f242c;
  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(31, 36, 44, 0.2);
  background-color: transparent;
  border-radius: 5px;
  color: #1f242c;
  font-family: ppradiogrotesk, 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(31, 36, 44, 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(31, 36, 44, 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(31, 36, 44, 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(31, 36, 44, 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(31, 36, 44, 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: ppradiogrotesk, 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(31, 36, 44, 0.05);
  border-radius: 5px;
  color: rgba(31, 36, 44, 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(31, 36, 44, 0.1);
  color: #1f242c;
}
.gform_wrapper.gravity-theme form input[type=submit].active {
  color: #1f242c;
}
.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: #64ffaf;
}
.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: #64ffaf;
}
.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: #1f242c;
}
.gform_wrapper.gravity-theme form .gfield--type-consent .ginput_container label a {
  text-decoration: underline;
  color: #1f242c;
}
.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(31, 36, 44, 0.5);
  margin-bottom: 10px;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}

.breadcrumbs {
  padding: 40px 0;
}
.breadcrumbs > span span:nth-child(1) a {
  margin-left: 0;
}
.breadcrumbs a {
  margin: 0 8px;
}
.breadcrumbs .breadcrumb_last {
  margin-left: 8px;
}
.breadcrumbs-white .breadcrumbs {
  padding: 50px 0;
}
.breadcrumbs-white .breadcrumbs span, .breadcrumbs-white .breadcrumbs a {
  color: white;
}
.breadcrumbs-white .breadcrumbs a {
  opacity: 0.5;
}

.dialog-menu {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 48px;
}
.dialog-menu[open] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.dialog-menu .heading {
  margin-bottom: 64px;
}
.dialog-menu .heading .icon-site-logo {
  font-size: 100px;
  height: 20px;
}
.dialog-menu .close {
  cursor: pointer;
  padding: 10px;
  border-radius: 50px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  width: 48px;
  height: 48px;
}
.dialog-menu .close .icon {
  font-size: 12px;
  opacity: 0.5;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.dialog-menu .close:hover {
  background-color: #d2d3d5;
}
.dialog-menu .close:hover .icon {
  opacity: 1;
}
.dialog-menu .close-button {
  cursor: pointer;
}
.dialog-menu .close-button .icon {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.dialog-menu .sub-menu {
  display: none;
}
.dialog-menu .menu-link {
  font-size: 22px;
  white-space: nowrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 60px;
  padding: 24px 0;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.dialog-menu .menu-link:first-child {
  padding-top: 0;
}
.dialog-menu .menu-link:last-child {
  padding-bottom: 16px;
}
.dialog-menu .menu-link.small {
  font-size: 16px;
}
.dialog-menu .menu-link .icon {
  font-size: 24px;
}
.dialog-menu .menu-sub-link {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.dialog-menu .main-menu {
  list-style: none;
  padding-left: 0;
}
.dialog-menu .main-menu:hover li:not(:has(img), .col-title) {
  opacity: 0.5;
}
.dialog-menu .main-menu:hover li:not(:has(img), .col-title):hover {
  opacity: 1;
}
.dialog-menu .content,
.dialog-menu .sub-menu {
  -ms-grid-columns: auto auto;
  grid-template-columns: auto auto;
}
.dialog-menu .sub-menu.active {
  display: -ms-grid;
  display: grid;
}
.dialog-menu .sub-menu {
  gap: 100px;
}
.dialog-menu .sub-menu ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 32px;
}
.dialog-menu .sub-menu .col-title {
  color: #1f242c;
  font-weight: 700;
  font-size: 20px;
  font-weight: 500;
}
.dialog-menu .sub-menu li:not(.card-img) {
  padding: 10px 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.dialog-menu .sub-menu li:not(.card-img) .menu-sub-link {
  white-space: nowrap;
  color: #1F242C;
  opacity: 0.7;
  font-size: 18px;
  font-weight: 400;
  line-height: 31.5px;
}
.dialog-menu .sub-menu li:not(.card-img) .menu-sub-link:hover {
  opacity: 1;
  color: #1f242c;
}
.dialog-menu .sub-menu li:not(.card-img):first-child {
  padding-top: 0;
}
.dialog-menu .sub-menu li:not(.card-img):last-child {
  padding-bottom: 0;
}
.dialog-menu .footer {
  margin-top: 44px;
}
.dialog-menu .footer .btn {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  line-height: 24px;
}
.dialog-menu .current-lang {
  display: none;
}
@media screen and (max-width: 992px) {
  .dialog-menu {
    padding: 32px 38px 32px 24px;
  }
  .dialog-menu .current-lang {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .dialog-menu .close-button,
  .dialog-menu .sub-menu-container {
    display: none;
  }
  .dialog-menu .sub-menu-container .sub-menu > .title {
    font-size: 22px;
    margin-bottom: 54px;
    color: #212529;
  }
  .dialog-menu:has(.sub-menu.active) .main-menu,
  .dialog-menu:has(.sub-menu.active) .footer,
  .dialog-menu:has(.sub-menu.active) .icon.icon-site-logo {
    display: none;
  }
  .dialog-menu:has(.sub-menu.active) .close-button,
  .dialog-menu:has(.sub-menu.active) .sub-menu-container {
    display: block;
  }
  .dialog-menu:has(.sub-menu.active) .close-button .icon {
    font-size: 24px;
  }
  .dialog-menu:has(.sub-menu.active) .heading {
    margin-bottom: 40px;
  }
  .dialog-menu .sub-menu.active {
    display: block;
  }
  .dialog-menu .footer .btn {
    width: 100%;
    padding: 8px 16px;
  }
  .dialog-menu .langs li:not(.lang-item) {
    display: none;
  }
  .dialog-menu .lang-item {
    margin-bottom: 20px;
    padding: 0;
  }
  .dialog-menu .lang-item span {
    font-size: 22px;
    font-weight: 600;
    color: #212529;
  }
  .dialog-menu .lang-item img {
    margin-right: 8px;
    width: 24px !important;
    height: 24px !important;
    border-radius: 50px;
  }
}

.dialog-langs {
  width: 100%;
  min-width: 100%;
}
.dialog-langs .continent {
  margin-bottom: 20px;
  position: relative;
}
.dialog-langs .continent::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
  height: 1px;
  background-color: #1f242c;
  z-index: -1;
}
.dialog-langs .continent span {
  background: #fff;
  padding-right: 24px;
  font-size: 21px;
  font-weight: 500;
  line-height: 27px;
}
.dialog-langs .list-languages {
  margin-bottom: 20px;
}
.dialog-langs .list-languages li {
  list-style: none;
  margin-bottom: 20px;
}
.dialog-langs .list-languages li a {
  font-family: ppradiogrotesk, sans-serif !important;
  color: #1f242c;
  font-size: 21px;
  font-weight: 700;
  line-height: 27px;
}
.dialog-langs .list-languages li a img {
  width: 24px !important;
  height: 24px !important;
  margin-right: 8px;
  border-radius: 50px;
}

.page-assistance .post-content a, .ev-chargers-troniq-template .accordion .row.my-6 a, .btn,
.button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 12px 24px;
  line-height: 1.5;
  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;
  border-radius: 200px;
}

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

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

.btn-primary {
  color: #fff;
  background-color: #1f242c;
}
.btn-primary:focus, .btn-primary:active, .btn-primary:hover {
  color: #fff;
  background-color: #010202;
}

.btn-secondary {
  color: #1f242c;
  background-color: #64ffaf;
}
.btn-secondary:focus, .btn-secondary:active, .btn-secondary:hover {
  color: #1f242c;
  background-color: #1dff8a;
}

.btn-tertiary {
  color: #1f242c;
  background-color: #C5DBD3;
}
.btn-tertiary:focus, .btn-tertiary:active, .btn-tertiary:hover {
  color: #1f242c;
  background-color: #99c0b2;
}

.btn-success {
  color: #1f242c;
  background-color: #64ffaf;
}
.btn-success:focus, .btn-success:active, .btn-success:hover {
  color: #1f242c;
  background-color: #1dff8a;
}

.btn-danger {
  color: #fff;
  background-color: #ef6869;
}
.btn-danger:focus, .btn-danger:active, .btn-danger:hover {
  color: #fff;
  background-color: #e82729;
}

.btn-warning {
  color: #1f242c;
  background-color: #F49A54;
}
.btn-warning:focus, .btn-warning:active, .btn-warning:hover {
  color: #1f242c;
  background-color: #f07211;
}

.btn-info {
  color: #fff;
  background-color: #17a2b8;
}
.btn-info:focus, .btn-info:active, .btn-info:hover {
  color: #fff;
  background-color: #0f6a79;
}

.btn-gray {
  color: #1f242c;
  background-color: #F3F4F5;
}
.btn-gray:focus, .btn-gray:active, .btn-gray:hover {
  color: #1f242c;
  background-color: #ccd0d5;
}

.btn-white {
  color: #1f242c;
  background-color: #fff;
}
.btn-white:focus, .btn-white:active, .btn-white:hover {
  color: #1f242c;
  background-color: #dbdbdb;
}

.btn-dark {
  color: #fff;
  background-color: #212529;
}
.btn-dark:focus, .btn-dark:active, .btn-dark:hover {
  color: #fff;
  background-color: #010101;
}

.btn-light {
  color: #1f242c;
  background-color: #f4f4f6;
}
.btn-light:focus, .btn-light:active, .btn-light:hover {
  color: #1f242c;
  background-color: #cdcdd6;
}

.btn-text {
  color: #fff;
  background-color: #212529;
}
.btn-text:focus, .btn-text:active, .btn-text:hover {
  color: #fff;
  background-color: #010101;
}

.btn-blue {
  color: #fff;
  background-color: #1f242c;
}
.btn-blue:focus, .btn-blue:active, .btn-blue:hover {
  color: #fff;
  background-color: #010202;
}

.btn-lblue {
  color: #1f242c;
  background-color: #F0F6F4;
}
.btn-lblue:focus, .btn-lblue:active, .btn-lblue:hover {
  color: #1f242c;
  background-color: #c3dbd3;
}

.btn-outline-primary, .page-assistance .post-content a,
.ev-chargers-troniq-template .accordion .row.my-6 a {
  color: #1f242c;
  background-color: transparent;
  border: 2px solid #1f242c;
  padding: 10px 24px;
}
.btn-outline-primary .icon, .page-assistance .post-content a .icon,
.ev-chargers-troniq-template .accordion .row.my-6 a .icon {
  color: #1f242c;
}
.btn-outline-primary:focus, .page-assistance .post-content a:focus, .btn-outline-primary:active, .page-assistance .post-content a:active, .btn-outline-primary:hover, .page-assistance .post-content a:hover,
.ev-chargers-troniq-template .accordion .row.my-6 a:focus,
.ev-chargers-troniq-template .accordion .row.my-6 a:active,
.ev-chargers-troniq-template .accordion .row.my-6 a:hover {
  color: #fff;
  background-color: #1f242c;
}
.btn-outline-primary:focus .icon, .page-assistance .post-content a:focus .icon, .btn-outline-primary:active .icon, .page-assistance .post-content a:active .icon, .btn-outline-primary:hover .icon, .page-assistance .post-content a:hover .icon,
.ev-chargers-troniq-template .accordion .row.my-6 a:focus .icon,
.ev-chargers-troniq-template .accordion .row.my-6 a:active .icon,
.ev-chargers-troniq-template .accordion .row.my-6 a:hover .icon {
  color: #fff;
}

.btn-outline-secondary {
  color: #64ffaf;
  background-color: transparent;
  border: 2px solid #64ffaf;
  padding: 10px 24px;
}
.btn-outline-secondary .icon {
  color: #64ffaf;
}
.btn-outline-secondary:focus, .btn-outline-secondary:active, .btn-outline-secondary:hover {
  color: #fff;
  background-color: #64ffaf;
}
.btn-outline-secondary:focus .icon, .btn-outline-secondary:active .icon, .btn-outline-secondary:hover .icon {
  color: #fff;
}

.btn-outline-tertiary {
  color: #C5DBD3;
  background-color: transparent;
  border: 2px solid #C5DBD3;
  padding: 10px 24px;
}
.btn-outline-tertiary .icon {
  color: #C5DBD3;
}
.btn-outline-tertiary:focus, .btn-outline-tertiary:active, .btn-outline-tertiary:hover {
  color: #fff;
  background-color: #C5DBD3;
}
.btn-outline-tertiary:focus .icon, .btn-outline-tertiary:active .icon, .btn-outline-tertiary:hover .icon {
  color: #fff;
}

.btn-outline-success {
  color: #64ffaf;
  background-color: transparent;
  border: 2px solid #64ffaf;
  padding: 10px 24px;
}
.btn-outline-success .icon {
  color: #64ffaf;
}
.btn-outline-success:focus, .btn-outline-success:active, .btn-outline-success:hover {
  color: #fff;
  background-color: #64ffaf;
}
.btn-outline-success:focus .icon, .btn-outline-success:active .icon, .btn-outline-success:hover .icon {
  color: #fff;
}

.btn-outline-danger {
  color: #ef6869;
  background-color: transparent;
  border: 2px solid #ef6869;
  padding: 10px 24px;
}
.btn-outline-danger .icon {
  color: #ef6869;
}
.btn-outline-danger:focus, .btn-outline-danger:active, .btn-outline-danger:hover {
  color: #fff;
  background-color: #ef6869;
}
.btn-outline-danger:focus .icon, .btn-outline-danger:active .icon, .btn-outline-danger:hover .icon {
  color: #fff;
}

.btn-outline-warning {
  color: #F49A54;
  background-color: transparent;
  border: 2px solid #F49A54;
  padding: 10px 24px;
}
.btn-outline-warning .icon {
  color: #F49A54;
}
.btn-outline-warning:focus, .btn-outline-warning:active, .btn-outline-warning:hover {
  color: #fff;
  background-color: #F49A54;
}
.btn-outline-warning:focus .icon, .btn-outline-warning:active .icon, .btn-outline-warning:hover .icon {
  color: #fff;
}

.btn-outline-info {
  color: #17a2b8;
  background-color: transparent;
  border: 2px solid #17a2b8;
  padding: 10px 24px;
}
.btn-outline-info .icon {
  color: #17a2b8;
}
.btn-outline-info:focus, .btn-outline-info:active, .btn-outline-info:hover {
  color: #fff;
  background-color: #17a2b8;
}
.btn-outline-info:focus .icon, .btn-outline-info:active .icon, .btn-outline-info:hover .icon {
  color: #fff;
}

.btn-outline-gray {
  color: #F3F4F5;
  background-color: transparent;
  border: 2px solid #F3F4F5;
  padding: 10px 24px;
}
.btn-outline-gray .icon {
  color: #F3F4F5;
}
.btn-outline-gray:focus, .btn-outline-gray:active, .btn-outline-gray:hover {
  color: #fff;
  background-color: #F3F4F5;
}
.btn-outline-gray:focus .icon, .btn-outline-gray:active .icon, .btn-outline-gray:hover .icon {
  color: #fff;
}

.btn-outline-white {
  color: #fff;
  background-color: transparent;
  border: 2px solid #fff;
  padding: 10px 24px;
}
.btn-outline-white .icon {
  color: #fff;
}
.btn-outline-white:focus, .btn-outline-white:active, .btn-outline-white:hover {
  color: #fff;
  background-color: #fff;
}
.btn-outline-white:focus .icon, .btn-outline-white:active .icon, .btn-outline-white:hover .icon {
  color: #fff;
}

.btn-outline-dark {
  color: #212529;
  background-color: transparent;
  border: 2px solid #212529;
  padding: 10px 24px;
}
.btn-outline-dark .icon {
  color: #212529;
}
.btn-outline-dark:focus, .btn-outline-dark:active, .btn-outline-dark:hover {
  color: #fff;
  background-color: #212529;
}
.btn-outline-dark:focus .icon, .btn-outline-dark:active .icon, .btn-outline-dark:hover .icon {
  color: #fff;
}

.btn-outline-light {
  color: #f4f4f6;
  background-color: transparent;
  border: 2px solid #f4f4f6;
  padding: 10px 24px;
}
.btn-outline-light .icon {
  color: #f4f4f6;
}
.btn-outline-light:focus, .btn-outline-light:active, .btn-outline-light:hover {
  color: #fff;
  background-color: #f4f4f6;
}
.btn-outline-light:focus .icon, .btn-outline-light:active .icon, .btn-outline-light:hover .icon {
  color: #fff;
}

.btn-outline-text {
  color: #212529;
  background-color: transparent;
  border: 2px solid #212529;
  padding: 10px 24px;
}
.btn-outline-text .icon {
  color: #212529;
}
.btn-outline-text:focus, .btn-outline-text:active, .btn-outline-text:hover {
  color: #fff;
  background-color: #212529;
}
.btn-outline-text:focus .icon, .btn-outline-text:active .icon, .btn-outline-text:hover .icon {
  color: #fff;
}

.btn-outline-blue {
  color: #1f242c;
  background-color: transparent;
  border: 2px solid #1f242c;
  padding: 10px 24px;
}
.btn-outline-blue .icon {
  color: #1f242c;
}
.btn-outline-blue:focus, .btn-outline-blue:active, .btn-outline-blue:hover {
  color: #fff;
  background-color: #1f242c;
}
.btn-outline-blue:focus .icon, .btn-outline-blue:active .icon, .btn-outline-blue:hover .icon {
  color: #fff;
}

.btn-outline-lblue {
  color: #F0F6F4;
  background-color: transparent;
  border: 2px solid #F0F6F4;
  padding: 10px 24px;
}
.btn-outline-lblue .icon {
  color: #F0F6F4;
}
.btn-outline-lblue:focus, .btn-outline-lblue:active, .btn-outline-lblue:hover {
  color: #fff;
  background-color: #F0F6F4;
}
.btn-outline-lblue:focus .icon, .btn-outline-lblue:active .icon, .btn-outline-lblue:hover .icon {
  color: #fff;
}

.btn-outline-white:focus, .btn-outline-white:active, .btn-outline-white:hover {
  color: #1f242c;
}
.btn-outline-white:focus .icon, .btn-outline-white:active .icon, .btn-outline-white:hover .icon {
  color: #1f242c;
}

.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(31, 36, 44, 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 {
  background-color: rgba(31, 36, 44, 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(31, 36, 44, 0.7);
}
dialog.modal::-ms-backdrop {
  background-color: rgba(31, 36, 44, 0.3);
  backdrop-filter: blur(7px);
}
dialog.modal::backdrop {
  background-color: rgba(31, 36, 44, 0.3);
  backdrop-filter: blur(7px);
}

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

.off-canvas {
  position: fixed;
  width: 100%;
  max-width: 100%;
  min-height: 100vh;
  margin: 0;
  border: none;
  overflow: visible auto;
  -webkit-animation: translate-in 0.3s linear forwards;
          animation: translate-in 0.3s linear forwards;
}
.off-canvas .close .icon {
  color: #1f242c;
}
.off-canvas[open] {
  margin-right: auto;
}
.off-canvas::-ms-backdrop {
  background: #1f242c;
  opacity: 0;
  animation: opacity-in 0.3s linear forwards;
}
.off-canvas::backdrop {
  background: #1f242c;
  opacity: 0;
  -webkit-animation: opacity-in 0.3s linear forwards;
          animation: opacity-in 0.3s linear forwards;
}
@media screen and (min-width: 992px) {
  .off-canvas {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}

@-webkit-keyframes translate-in {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes translate-in {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes translate-out {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@keyframes translate-out {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@-webkit-keyframes opacity-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 0.5;
  }
}
@keyframes opacity-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 0.5;
  }
}
@-webkit-keyframes opacity-out {
  0% {
    opacity: 0.5;
  }
  100% {
    opacity: 0;
  }
}
@keyframes opacity-out {
  0% {
    opacity: 0.5;
  }
  100% {
    opacity: 0;
  }
}
.tac {
  text-align: center;
}

.tar {
  text-align: right;
}

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

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

.text-tertiary {
  color: #C5DBD3 !important;
}

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

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

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

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

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

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

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

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

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

.text-blue {
  color: #1f242c !important;
}

.text-lblue {
  color: #F0F6F4 !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;
}

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

.well-primary {
  background-color: #1f242c;
  color: #fff;
  border: 1px solid #14181d;
}

.well-secondary {
  background-color: #64ffaf;
  color: #1f242c;
  border: 1px solid #4bffa2;
}

.well-tertiary {
  background-color: #C5DBD3;
  color: #1f242c;
  border: 1px solid #b5d1c7;
}

.well-success {
  background-color: #64ffaf;
  color: #1f242c;
  border: 1px solid #4bffa2;
}

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

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

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

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

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

.well-dark {
  background-color: #212529;
  color: #fff;
  border: 1px solid #16181b;
}

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

.well-text {
  background-color: #212529;
  color: #fff;
  border: 1px solid #16181b;
}

.well-blue {
  background-color: #1f242c;
  color: #fff;
  border: 1px solid #14181d;
}

.well-lblue {
  background-color: #F0F6F4;
  color: #1f242c;
  border: 1px solid #e0ece8;
}

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

.bg-secondary {
  background-color: #64ffaf;
  color: #1f242c;
}

.bg-tertiary {
  background-color: #C5DBD3;
  color: #1f242c;
}

.bg-success {
  background-color: #64ffaf;
  color: #1f242c;
}

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

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

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

.bg-gray {
  background-color: #F3F4F5;
  color: #1f242c;
}

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

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

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

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

.bg-blue {
  background-color: #1f242c;
  color: #fff;
}

.bg-lblue {
  background-color: #F0F6F4;
  color: #1f242c;
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  margin-top: 50px;
}
.pagination .page-number,
.pagination span {
  font-size: 16px;
  border-radius: 50px;
  font-weight: 400;
  width: 48px;
  height: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.pagination .current span,
.pagination .page-number:hover {
  background: #C5DBD3;
}
.pagination .prev .icon {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.pagination .next .icon,
.pagination .prev .icon {
  font-size: 20px;
}
@media screen and (max-width: 992px) {
  .pagination {
    gap: 8px;
  }
}

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

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

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

.badge-tertiary {
  background-color: #C5DBD3;
  color: white;
}

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

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

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

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

.badge-gray {
  background-color: #F3F4F5;
  color: white;
}

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

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

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

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

.badge-blue {
  background-color: #1f242c;
  color: white;
}

.badge-lblue {
  background-color: #F0F6F4;
  color: white;
}

.badge-light {
  color: #1f242c;
}

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

.st-accordion__content {
  display: none;
}

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

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

[data-controller=reveal] [data-reveal-target=item] {
  max-height: 100px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
[data-controller=reveal] [data-reveal-target=item].hidden {
  max-height: 0;
  opacity: 0;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  margin: 0;
  padding: 0;
}

.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;
  height: auto;
  padding: 20px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.card-post .link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}
.card-post .card-img-container {
  overflow: hidden;
}
.card-post .card-img {
  width: 100%;
  height: auto;
  aspect-ratio: 861/720;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.card-post .card-cats {
  margin: 20px 0 0 0;
}
.card-post .card-cats .cat {
  font-size: 14.5px;
  font-weight: 500;
  padding: 8px 12px;
}
.card-post .card-reading-time {
  margin-top: 16px;
  font-size: 14.375px;
  font-weight: 400;
}
.card-post .card-title {
  font-size: 24px;
  line-height: 1;
  font-weight: 500;
  margin: 16px 0;
}
.card-post .card-content {
  margin-bottom: 30px;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
}
.card-post .card-link {
  margin-top: auto;
  font-size: 14.5px;
  font-weight: 500;
}
.card-post .card-link .icon {
  margin-left: 6px;
  font-size: 12px;
}
.card-post:hover {
  background-color: #F0F6F4;
}

.card-story {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: auto;
  padding: 20px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.card-story .link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}
.card-story .card-img-container {
  overflow: hidden;
}
.card-story .card-img {
  width: 100%;
  height: auto;
  aspect-ratio: 861/720;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.card-story .card-cats {
  margin: 20px 0 0 0;
}
.card-story .card-cats .cat {
  font-size: 14.5px;
  font-weight: 500;
  padding: 8px 12px;
}
.card-story .subtitle {
  font-size: 18px;
  font-weight: 300;
  margin: 16px 0 0 0;
  line-height: 24px;
}
.card-story .card-title {
  font-size: 24px;
  line-height: 1;
  font-weight: 500;
  margin: 16px 0;
}
.card-story .card-content {
  margin-bottom: 30px;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
}
.card-story .card-link {
  margin-top: auto;
  font-size: 14.5px;
  font-weight: 500;
}
.card-story .card-link .icon {
  margin-left: 6px;
  font-size: 12px;
}
.card-story:hover {
  background-color: #F0F6F4;
}

.ev-charger-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  padding: 24px 20px;
  margin-bottom: 16px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.ev-charger-card-content {
  padding: 16px 20px;
  width: 100%;
}
.ev-charger-card-title {
  font-size: 50px;
  line-height: 56px;
  margin-bottom: 12px;
  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;
}
.ev-charger-card-title .icon {
  font-size: 16px;
}
.ev-charger-card-description {
  font-size: 28px;
  line-height: 34px;
  padding-bottom: 32px;
  margin-bottom: 32px;
  border-bottom: solid 1px #1f242c;
}
.ev-charger-card .list-item {
  list-style: none;
  position: relative;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 16px;
}
.ev-charger-card .list-item span {
  margin-left: 16px;
}
.ev-charger-card .list-item:before {
  content: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTciIGhlaWdodD0iMTMiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0ibTE0LjY4NCAwIDEuMzczIDEuMjItOS43OSAxMS4wMTNMNS41OCAxM2MwLS4wMTQtLjY4Ni0uNzY3LS42ODYtLjc2N0wwIDYuNzI2bDEuMzcyLTEuMjIgNC4yMDkgNC43MzZMMTQuNjg1IDBaIiBmaWxsPSIjMDAwIi8+PC9zdmc+");
  position: absolute;
  right: 100%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: inline-block;
}
.ev-charger-card .img-container {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.ev-charger-card .img {
  width: 280px;
}
.ev-charger-card:hover {
  background: #f0f6f4;
}
@media screen and (max-width: 992px) {
  .ev-charger-card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 24px 0;
  }
  .ev-charger-card-content {
    padding: 16px 0;
  }
  .ev-charger-card-title {
    font-size: 40px;
    line-height: 42px;
  }
  .ev-charger-card-description {
    font-size: 24px;
    line-height: 28px;
    border-bottom: solid 1px #1f242c;
  }
  .ev-charger-card .img {
    width: 100%;
  }
}

.customers {
  padding: 48px 0;
  text-align: center;
}
.customers .title {
  font-size: 38px;
  margin-bottom: 40px;
}
.customers .swiper {
  width: 100%;
}
.customers .swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
  transition-timing-function: linear !important;
}
@media screen and (min-width: 1440px) {
  .customers {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: minmax(20px, 1fr) minmax(auto, 576px) minmax(20px, 1fr);
    grid-template-columns: minmax(20px, 1fr) minmax(auto, 576px) minmax(20px, 1fr);
    /* Center all children */
  }
}
@media screen and (min-width: 1440px) and (min-width: 576px) {
  .customers {
    -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 screen and (min-width: 1440px) and (min-width: 992px) {
  .customers {
    -ms-grid-columns: minmax(20px, 1fr) minmax(auto, 992px) minmax(20px, 1fr);
    grid-template-columns: minmax(20px, 1fr) minmax(auto, 992px) minmax(20px, 1fr);
  }
}
@media screen and (min-width: 1440px) and (min-width: 1200px) {
  .customers {
    -ms-grid-columns: minmax(20px, 1fr) minmax(auto, 1200px) minmax(20px, 1fr);
    grid-template-columns: minmax(20px, 1fr) minmax(auto, 1200px) minmax(20px, 1fr);
  }
}
@media screen and (min-width: 1440px) and (min-width: 1400px) {
  .customers {
    -ms-grid-columns: minmax(20px, 1fr) minmax(auto, 1400px) minmax(20px, 1fr);
    grid-template-columns: minmax(20px, 1fr) minmax(auto, 1400px) minmax(20px, 1fr);
  }
}
@media screen and (min-width: 1440px) {
  .customers > * {
    -ms-grid-column: 2;
    grid-column: 2;
  }
}
@media screen and (max-width: 1440px) {
  .customers .swiper-slide {
    width: -webkit-fit-content !important;
    width: -moz-fit-content !important;
    width: fit-content !important;
  }
}

.chiffres-cles .block-chiffre {
  font-size: 90px;
  line-height: 110px;
}
.chiffres-cles .title {
  font-size: 21px;
  line-height: 32px;
}
@media screen and (max-width: 992px) {
  .chiffres-cles .block-chiffre {
    font-size: 60px;
    line-height: 70px;
  }
  .chiffres-cles .title {
    font-size: 18px;
    line-height: 28px;
  }
}

.stories {
  color: #212529;
}
.stories .title {
  font-size: 50px;
  margin-bottom: 40px;
}
.stories .left-img {
  width: 100%;
  min-height: 440px;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.stories .description {
  font-size: 21px;
  line-height: 32px;
  margin-bottom: 32px;
}
.stories .autho-role,
.stories .autho {
  line-height: 32px;
}
.stories .autho-role {
  margin-bottom: 40px;
}
.stories .bottom {
  margin-top: auto;
}
.stories .bottom .img {
  margin-bottom: 20px;
  height: 44px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -o-object-fit: contain;
     object-fit: contain;
}
.stories .btn {
  line-height: 32px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.stories .navigation {
  position: absolute;
  bottom: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}
.stories .navigation .swiper-button-prev,
.stories .navigation .swiper-button-next {
  position: initial;
  width: 48px;
  height: 48px;
  background-color: #c1cccb;
  border-radius: 50px;
  color: #1f242c;
}
.stories .navigation .swiper-button-prev:focus,
.stories .navigation .swiper-button-next:focus {
  background-color: #c1cccb;
  border: 2px solid #fff;
  -webkit-box-shadow: 0 0 1px 4px rgba(224, 255, 239, 0.92);
          box-shadow: 0 0 1px 4px rgba(224, 255, 239, 0.92);
}
.stories .navigation .swiper-button-prev:after,
.stories .navigation .swiper-button-next:after {
  display: none;
}
.stories .navigation .swiper-button-prev .icon,
.stories .navigation .swiper-button-next .icon {
  font-size: 13px;
  width: 1em;
  height: 1em;
}
.stories .navigation .swiper-button-prev {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.stories .navigation .swiper-button-next {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
@media screen and (max-width: 992px) {
  .stories .swiper-slide {
    height: auto;
  }
  .stories .content {
    min-height: 410px;
  }
  .stories .img {
    height: auto;
    margin-bottom: 24px;
  }
  .stories .title {
    font-size: 40px;
    line-height: 43px;
  }
  .stories .description {
    font-size: 21px;
    line-height: 32px;
  }
}
@media screen and (min-width: 992px) {
  .stories .swiper-slide {
    height: auto;
  }
  .stories .swiper-slide .content-container {
    height: 100%;
  }
}

.landing {
  position: relative;
  margin-top: -200px;
  min-height: 814px;
  padding-bottom: 96px;
}
.landing .page-title {
  font-size: 68px;
  padding: 0 0 16px 0;
  font-weight: 500;
}
.landing .description {
  color: white;
  font-size: 21px;
  line-height: 32px;
  margin-bottom: 20px;
  max-width: 655px;
}
.landing .btn {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  line-height: 24px;
}
.landing .icon {
  font-size: 12px;
  margin-left: 7px;
}
.landing .rotate-arrow .icon {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
@media screen and (max-width: 576px) {
  .landing .page-title {
    font-size: 52px;
  }
  .landing .btn .icon {
    display: none;
  }
}

.accordion {
  padding: 80px 0;
}
.accordion .title {
  font-size: 50px;
  font-weight: 500;
}
.accordion .accordion-wrapper {
  border-bottom: 1px solid #000;
}
.accordion .st-accordion__content:not(.st-accordion__content--visible) {
  height: 0;
  opacity: 0;
  overflow: hidden;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  visibility: hidden;
}
.accordion .st-accordion__content.st-accordion__content--visible {
  opacity: 1;
  overflow: hidden;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  visibility: visible;
}
.accordion .accordion-title-wrapper {
  border-top: 1px solid #000;
}
.accordion .accordion-title-wrapper.first {
  border-top: none;
}
.accordion .accordion-title {
  position: relative;
  font-weight: 500;
  font-size: 28px;
  line-height: 56px;
  padding: 8px 20px 8px 0;
  margin: 0;
}
.accordion .accordion-title .chevron {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.accordion .accordion-title .chevron:after {
  content: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-plus-lg"><path fill-rule="evenodd" d="M8 2a.5.5 0 0 1 .5.5v5h5a.5.5 0 0 1 0 1h-5v5a.5.5 0 0 1-1 0v-5h-5a.5.5 0 0 1 0-1h5v-5A.5.5 0 0 1 8 2Z"/></svg>');
}
.accordion .st-accordion__icon--opened .accordion-title .chevron:after {
  content: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-dash-lg"><path fill-rule="evenodd" d="M2 8a.5.5 0 0 1 .5-.5h11a.5.5 0 0 1 0 1h-11A.5.5 0 0 1 2 8Z"/></svg>');
}
.accordion .accordion-description p,
.accordion .accordion-description li {
  font-size: 21px;
  line-height: 32px;
}
.accordion .accordion-description p,
.accordion .accordion-description li:last-child {
  margin-bottom: 20px;
}
.accordion .accordion-description ul {
  padding-left: 20px;
}
.accordion .accordion-description a {
  text-decoration: underline;
}
@media screen and (max-width: 992px) {
  .accordion .accordion-title-wrapper.first {
    border-top: solid 1px #000;
  }
  .accordion .title {
    font-size: 42px;
    margin-bottom: 20px;
  }
  .accordion .accordion-title {
    font-size: 22px;
    line-height: 48px;
  }
  .accordion .accordion-description p,
  .accordion .accordion-description li {
    font-size: 18px;
    line-height: 28px;
  }
}
.accordion.small .accordion-title {
  font-size: 28px;
  line-height: 54px;
}
@media screen and (max-width: 992px) {
  .accordion.small .accordion-title {
    font-size: 21px;
    line-height: 42px;
  }
}

.split .content {
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2/3;
  margin-right: 80px;
  padding: 20px 0;
}
.split .image-container {
  -ms-grid-column: 3;
  -ms-grid-column-span: 2;
  grid-column: 3/5;
  height: 100%;
}
.split .image-container .img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.split .title {
  margin-bottom: 20px;
  font-size: 38px;
}
.split .sub-title {
  margin-bottom: 16px;
  font-size: 21.2px;
  font-weight: 400;
}
.split .description {
  margin-bottom: 32px;
  line-height: 28px;
  font-size: 21px;
  font-weight: 400;
}
.split .list,
.split .description ul {
  font-size: 16px;
}
.split .list .list-element,
.split .list li,
.split .description ul .list-element,
.split .description ul li {
  list-style: none;
  position: relative;
  margin-bottom: 16px;
}
.split .list .list-element span,
.split .list li span,
.split .description ul .list-element span,
.split .description ul li span {
  margin-left: 16px;
}
.split .list .list-element:before,
.split .list li:before,
.split .description ul .list-element:before,
.split .description ul li:before {
  content: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTciIGhlaWdodD0iMTMiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0ibTE0LjY4NCAwIDEuMzczIDEuMjItOS43OSAxMS4wMTNMNS41OCAxM2MwLS4wMTQtLjY4Ni0uNzY3LS42ODYtLjc2N0wwIDYuNzI2bDEuMzcyLTEuMjIgNC4yMDkgNC43MzZMMTQuNjg1IDBaIiBmaWxsPSIjMDAwIi8+PC9zdmc+");
  position: absolute;
  right: 100%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: inline-block;
}
.split .btn {
  margin-top: 32px;
  line-height: 24px;
}
@media screen and (max-width: 992px) {
  .split .image-container {
    grid-column: 1/-1;
  }
  .split .content {
    grid-column: 2/-2;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .split .content {
    margin-bottom: 32px;
    margin-right: 0;
  }
  .split .image-container {
    margin-bottom: 32px;
  }
  .split .title {
    font-size: 32px;
  }
  .split .sub-title {
    font-size: 18px;
  }
  .split .description {
    font-size: 18px;
  }
  .split .list {
    font-size: 14px;
  }
}
@media screen and (min-width: 992px) {
  .split.odd .image-container {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1/3;
  }
  .split.odd .content {
    -ms-grid-column: 3;
    grid-column: 3/3;
    margin-left: 80px;
    margin-right: 0px;
  }
}

.curious {
  background-color: rgb(37, 60, 68);
}
.curious .title {
  font-size: 68px;
  line-height: 72px;
}
.curious .sub-title {
  font-size: 28px;
  font-weight: 500;
}
.curious .card {
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.curious .card-img-container {
  overflow: hidden;
}
.curious .card-img-container:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.curious .card-img-container img {
  width: 100%;
  aspect-ratio: 41/26;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.curious .card-title {
  color: #fff;
  font-size: 28px;
  margin: 16px 0;
  line-height: 34px;
}
.curious .card-description {
  font-size: 21px;
  line-height: 32px;
  margin-bottom: 24px;
}
.curious .card .btn {
  margin-top: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 992px) {
  .curious .title {
    max-width: 60%;
  }
}
@media screen and (max-width: 992px) {
  .curious .sub-title {
    margin-bottom: 24px;
  }
}

.banner {
  min-height: 500px;
  padding: 80px 0 32px 0;
}
.banner .btn {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.banner .title {
  font-size: 48px;
  margin-bottom: 16px;
}
.banner .description {
  font-size: 21px;
  margin-bottom: 32px;
  margin-bottom: 20px;
}
.banner .icon {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  font-size: 14px;
  margin-left: 10px;
}
.banner .background {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 992px) {
  .banner {
    min-height: 720px;
    padding: 80px 0 96px 0;
  }
  .banner .title {
    max-width: 980px;
    font-size: 68px;
  }
}

.last-posts {
  background-color: rgb(37, 60, 68);
}
.last-posts .title {
  font-size: 68px;
  line-height: 72px;
}
.last-posts .sub-title {
  font-size: 28px;
  font-weight: 500;
}
.last-posts .card {
  color: #fff;
}
.last-posts .card-img-container {
  overflow: hidden;
}
.last-posts .card-img-container:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.last-posts .card-img-container img {
  width: 100%;
  aspect-ratio: 41/26;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.last-posts .card-title {
  color: #fff;
  font-size: 28px;
  margin: 16px 0;
  line-height: 34px;
}
.last-posts .card-description {
  font-size: 21px;
  line-height: 32px;
  margin-bottom: 24px;
}
.last-posts .card .btn {
  margin-top: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 992px) {
  .last-posts .title {
    max-width: 60%;
  }
}
@media screen and (max-width: 992px) {
  .last-posts .sub-title {
    margin-bottom: 24px;
  }
}

.simple-banner {
  padding: 120px 0;
  background: #253c44;
}
.simple-banner .title,
.simple-banner .description {
  color: #C5DBD3;
}
.simple-banner .title {
  font-size: 50px;
  line-height: 56px;
}
.simple-banner .description {
  font-size: 21px;
  line-height: 32px;
  max-width: 523px;
}
@media screen and (max-width: 992px) {
  .simple-banner {
    padding: 80px 0;
  }
  .simple-banner .title {
    font-size: 40px;
    line-height: 45px;
  }
  .simple-banner .description {
    font-size: 16px;
    line-height: 24px;
    max-width: 100%;
  }
}

.thumbs {
  grid-column: -1/1;
  background-color: #1f242c;
  padding-bottom: 128px;
  overflow: hidden;
  position: relative;
}
.thumbs .thumbs-swiper .swiper-wrapper {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.thumbs .thumbs-swiper .swiper-slide {
  position: relative;
  opacity: 0.6;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.thumbs .thumbs-swiper .swiper-slide:after {
  content: "";
  border: 2px transparent;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.thumbs .thumbs-swiper .swiper-slide-thumb-active:after, .thumbs .thumbs-swiper .swiper-slide-thumb-active:hover:after {
  border: solid 2px #64ffaf;
}
.thumbs .thumbs-swiper .swiper-slide:hover, .thumbs .thumbs-swiper .swiper-slide-thumb-active {
  opacity: 1;
}
.thumbs .main-swiper {
  overflow: visible;
  position: initial;
}
.thumbs .main-swiper .swiper-slide .img {
  width: 100%;
  height: auto;
}
.thumbs .navigation-container {
  position: absolute;
  bottom: 40px;
  right: 0;
  width: 100%;
}
.thumbs .navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}
.thumbs .navigation .swiper-button-prev,
.thumbs .navigation .swiper-button-next {
  position: initial;
  width: 48px;
  height: 48px;
  background-color: #c1cccb;
  border-radius: 50px;
  color: #1f242c;
}
.thumbs .navigation .swiper-button-prev:focus,
.thumbs .navigation .swiper-button-next:focus {
  background-color: #c1cccb;
  border: 2px solid #fff;
  -webkit-box-shadow: 0 0 1px 4px rgba(224, 255, 239, 0.92);
          box-shadow: 0 0 1px 4px rgba(224, 255, 239, 0.92);
}
.thumbs .navigation .swiper-button-prev:after,
.thumbs .navigation .swiper-button-next:after {
  display: none;
}
.thumbs .navigation .swiper-button-prev .icon,
.thumbs .navigation .swiper-button-next .icon {
  font-size: 13px;
  width: 1em;
  height: 1em;
}
.thumbs .navigation .swiper-button-prev {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.thumbs .navigation .swiper-button-next {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.ev-chargers {
  margin-top: 40px;
}
.ev-chargers .title {
  font-size: 50px;
  line-height: 56px;
  padding-bottom: 32px;
  margin-bottom: 32px;
  border-bottom: solid 1px #1f242c;
}
@media screen and (max-width: 992px) {
  .ev-chargers:has(.ev-charger-card:hover) {
    background: #f0f6f4;
  }
}

.default-template .split {
  margin-top: 50px;
  margin-bottom: 120px;
}
.default-template .chiffres-cles {
  margin-bottom: 120px;
}
.default-template .post-content {
  max-width: 920px;
  margin: 50px auto 50px auto;
}
.default-template .post-content .chiffres-cles {
  margin: 120px 0;
}
.default-template .post-content .wp-block-embed iframe {
  width: 100%;
  aspect-ratio: 16/9;
}
.default-template .post-content-container {
  position: relative;
}
.default-template .menu-ancres-container {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
}
.default-template .menu-ancres {
  pointer-events: auto;
  -webkit-user-select: auto;
     -moz-user-select: auto;
      -ms-user-select: auto;
          user-select: auto;
  position: sticky;
  top: 50px;
  left: 0;
  background: #fff;
  padding: 40px 27px 30px 40px;
  margin: 0 0 20px 0;
  max-width: 400px;
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  list-style: none;
}
.default-template .menu-ancres .menu-toggle {
  background: #1f242c;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
}
.default-template .menu-ancres .menu-toggle-desktop {
  width: 40px;
  height: 40px;
  margin-bottom: 24px;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0ibTYgNiAxMiAxMk0xOCA2IDYgMTgiIHN0cm9rZT0iIzAwMCIgc3Ryb2tlLXdpZHRoPSIxLjUiIHN0cm9rZS1saW5lY2FwPSJzcXVhcmUiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz48L3N2Zz4=");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-filter: invert(100%) sepia(3%) saturate(0) hue-rotate(198deg) brightness(104%) contrast(104%);
          filter: invert(100%) sepia(3%) saturate(0) hue-rotate(198deg) brightness(104%) contrast(104%);
}
.default-template .menu-ancres .menu-toggle-mobile {
  margin-bottom: 24px;
  color: #212529;
  border: solid 2px #64ffaf;
  padding: 4px;
  width: 100%;
  font-size: 16px;
  line-height: 31px;
  font-weight: 700;
  position: relative;
}
.default-template .menu-ancres .menu-toggle-mobile:after {
  content: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0ibTYgOSA2IDYgNi02IiBzdHJva2U9IiMwMDAiIHN0cm9rZS13aWR0aD0iMS41IiBzdHJva2UtbWl0ZXJsaW1pdD0iMTAiIHN0cm9rZS1saW5lY2FwPSJzcXVhcmUiLz48L3N2Zz4=");
  position: absolute;
  right: 10px;
  top: 50%;
  width: 24px;
  height: 24px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.default-template .menu-ancres .menu-toggle .title {
  font-size: 24px;
  line-height: 28px;
  font-weight: 500;
}
.default-template .menu-ancres .menu-item {
  margin-bottom: 24px;
}
.default-template .menu-ancres .menu-item a {
  background: transparent;
  font-size: 16px;
  line-height: 25px;
  padding: 10px 0;
}
.default-template .menu-ancres .menu-item a:hover {
  background: #64ffaf;
}
.default-template .menu-ancres .menu-item.active a {
  background: #64ffaf;
}
.default-template .menu-ancres:has(input[type=checkbox]:checked) {
  background: transparent;
}
.default-template .menu-ancres:has(input[type=checkbox]:checked) .menu-item {
  display: none;
}
.default-template .menu-ancres:has(input[type=checkbox]:checked) .menu-toggle-desktop {
  margin-bottom: 0;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTMuNTE2IDEyaDE2Ljk3TTEyIDMuNTE1djE2Ljk3IiBzdHJva2U9IiMwMDAiIHN0cm9rZS13aWR0aD0iMS41IiBzdHJva2UtbGluZWNhcD0ic3F1YXJlIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+PC9zdmc+");
}
.default-template .menu-ancres:has(input[type=checkbox]:checked) .menu-toggle-mobile:after {
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}
@media screen and (max-width: 992px) {
  .default-template .menu-ancres {
    z-index: 999999;
    top: 0;
    padding: 40px 0 24px 0;
    max-width: 100%;
    background: #fff;
  }
  .default-template .menu-ancres .menu-toggle {
    background: transparent;
    width: 100%;
  }
  .default-template .menu-ancres .menu-item:last-of-type {
    margin-bottom: 0;
  }
  .default-template .menu-ancres:has(input[type=checkbox]:checked) {
    background: #fff;
  }
  .default-template .menu-ancres:has(input[type=checkbox]:checked) .menu-toggle-mobile {
    margin-bottom: 0;
  }
  .default-template .menu-ancres-container {
    width: 100%;
  }
}

body:has(.home-template) .home-swiper {
  width: 100%;
  height: 540px;
  margin: 30px 0;
}
body:has(.home-template) .home-swiper .swiper-slide .cover {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
body:has(.home-template) .welcome {
  min-height: 720px;
  margin-bottom: 64px;
}
body:has(.home-template) .welcome .content {
  margin-bottom: 116px;
  max-width: 425px;
}
body:has(.home-template) .welcome .title {
  font-size: 50px;
}
body:has(.home-template) .welcome .text {
  font-size: 21px;
}
@media screen and (max-width: 992px) {
  body:has(.home-template) .welcome {
    min-height: 560px;
  }
  body:has(.home-template) .welcome .content {
    margin-bottom: 60px;
    max-width: 100%;
  }
  body:has(.home-template) .welcome .title {
    font-size: 40px;
  }
}
body:has(.home-template) .buisness-charging {
  margin-bottom: 184px;
}
body:has(.home-template) .buisness-charging .text {
  font-size: 21px;
}
body:has(.home-template) .buisness-charging .title {
  font-size: 38px;
}
body:has(.home-template) .buisness-charging .left {
  background: rgb(197, 219, 211);
  padding: 32px;
}
body:has(.home-template) .buisness-charging .left .sub-title {
  font-size: 28px;
}
body:has(.home-template) .buisness-charging .right {
  position: relative;
  min-height: 672px;
}
@media screen and (max-width: 992px) {
  body:has(.home-template) .buisness-charging {
    margin-bottom: 80px;
  }
  body:has(.home-template) .buisness-charging .right {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    min-height: 440px;
  }
  body:has(.home-template) .buisness-charging .left,
  body:has(.home-template) .buisness-charging .right {
    min-height: 440px;
  }
}
body:has(.home-template) .chiffres-cles {
  margin-bottom: 326px;
}
@media screen and (max-width: 992px) {
  body:has(.home-template) .chiffres-cles {
    margin-bottom: 80px;
  }
  body:has(.home-template) .chiffres-cles .title {
    margin: 20px 0;
  }
}
body:has(.home-template) .big-text {
  margin-bottom: 186px;
  font-size: 90px;
  font-weight: 500;
  line-height: 110px;
  max-width: 1200px;
}
body:has(.home-template) .big-text .bg-highlight {
  color: #1f242c;
}
@media screen and (max-width: 992px) {
  body:has(.home-template) .big-text {
    margin-bottom: 80px;
    font-size: 60px;
    line-height: 72px;
  }
}
body:has(.home-template) .split {
  margin-bottom: 80px;
}
body:has(.home-template) .stories {
  margin-bottom: 80px;
}

body:has(.partners-template) .landing .description {
  max-width: 100%;
}
body:has(.partners-template) .landing .quote .icon {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
@media screen and (max-width: 576px) {
  body:has(.partners-template) .landing .quote {
    margin-bottom: 10px;
  }
}
body:has(.partners-template) .big-text {
  margin-top: 80px;
  margin-bottom: 148px;
}
body:has(.partners-template) .big-text .title {
  font-size: 68px;
  line-height: 80px;
}
body:has(.partners-template) .big-text .title .bg-highlight {
  color: #1f242c;
}
body:has(.partners-template) .big-text .description {
  font-size: 21px;
  line-height: 32px;
  max-width: 730px;
}
@media screen and (max-width: 992px) {
  body:has(.partners-template) .big-text {
    margin-bottom: 70px;
  }
  body:has(.partners-template) .big-text .title {
    font-size: 40px;
    line-height: 50px;
  }
  body:has(.partners-template) .big-text .description {
    font-size: 16px;
    line-height: 24px;
    max-width: 100%;
  }
}
body:has(.partners-template) .curious .title,
body:has(.partners-template) .curious .description,
body:has(.partners-template) .curious .card-title,
body:has(.partners-template) .curious .card-description,
body:has(.partners-template) .curious .card .btn {
  color: #C5DBD3;
}
body:has(.partners-template) .curious .card .btn {
  border-color: #C5DBD3;
}
body:has(.partners-template) .curious .card .btn:hover {
  color: black;
  background-color: #C5DBD3;
}
body:has(.partners-template) .welcome {
  min-height: 720px;
  margin-bottom: 80px;
}
body:has(.partners-template) .welcome .content {
  max-width: 425px;
  margin-left: auto;
}
body:has(.partners-template) .welcome .title {
  font-size: 50px;
}
body:has(.partners-template) .welcome .text {
  font-size: 21px;
  line-height: 32px;
  font-weight: 400;
}
body:has(.partners-template) .welcome .background-container:before {
  background: -webkit-gradient(linear, right top, left top, color-stop(32.85%, rgba(31, 36, 44, 0.64)), to(rgba(31, 36, 44, 0)));
  background: linear-gradient(270deg, rgba(31, 36, 44, 0.64) 32.85%, rgba(31, 36, 44, 0));
}
@media screen and (max-width: 992px) {
  body:has(.partners-template) .welcome {
    min-height: 560px;
  }
  body:has(.partners-template) .welcome .content {
    margin-bottom: 60px;
    max-width: 100%;
    width: 100%;
  }
  body:has(.partners-template) .welcome .title {
    font-size: 40px;
  }
  body:has(.partners-template) .welcome .background-container:before {
    background: linear-gradient(1turn, rgba(31, 36, 44, 0.64) 32.85%, rgba(31, 36, 44, 0));
  }
}
body:has(.partners-template) .stories {
  margin-bottom: 80px;
}
body:has(.partners-template) .certified {
  background: #253c44;
  color: #C5DBD3;
  padding: 120px 0;
}
body:has(.partners-template) .certified .btn {
  background-color: #C5DBD3;
}
body:has(.partners-template) .certified .btn:hover {
  background-color: #92a8a0;
  border-color: #92a8a0;
}
body:has(.partners-template) .certified .title {
  color: #C5DBD3;
  font-size: 50px;
  line-height: 56px;
}
body:has(.partners-template) .certified .description {
  font-size: 21px;
  line-height: 24px;
  margin-bottom: 24px;
  max-width: 400px;
}
@media screen and (max-width: 992px) {
  body:has(.partners-template) .certified .title {
    font-size: 40px;
    line-height: 44px;
  }
  body:has(.partners-template) .certified .description {
    font-size: 19px;
    line-height: 27px;
    max-width: 100%;
  }
}
body:has(.partners-template) .simple-list {
  margin-bottom: 160px;
  margin-top: 80px;
}
body:has(.partners-template) .simple-list .mb-180 {
  margin-bottom: 180px;
}
body:has(.partners-template) .simple-list .title {
  width: 100%;
  border-bottom: solid 1px black;
  font-size: 50px;
  line-height: 56px;
  padding-bottom: 24px;
  margin-bottom: 48px;
}
body:has(.partners-template) .simple-list .card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
body:has(.partners-template) .simple-list .card-link {
  margin-top: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
body:has(.partners-template) .simple-list .card-link .icon {
  font-size: 24px;
}
body:has(.partners-template) .simple-list .card-title {
  font-size: 28px;
  line-height: 34px;
  margin-bottom: 8px;
}
body:has(.partners-template) .simple-list .card-content {
  font-size: 21px;
  line-height: 32px;
  margin-bottom: 20px;
}
@media screen and (max-width: 992px) {
  body:has(.partners-template) .simple-list .title {
    font-size: 40px;
    line-height: 44px;
  }
  body:has(.partners-template) .simple-list .card:not(.card:last-child) {
    margin-bottom: 48px;
  }
  body:has(.partners-template) .simple-list .mb-180 {
    margin-bottom: 120px;
  }
}

.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(31, 36, 44, 0.1);
          box-shadow: 0px 2px 3px rgba(31, 36, 44, 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%;
  }
}

body:has(.evbox-care-template) .landing .quote .icon {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
@media screen and (max-width: 576px) {
  body:has(.evbox-care-template) .landing .quote {
    margin-bottom: 10px;
  }
}

body:has(.about-template) .big-text {
  margin-top: 80px;
  margin-bottom: 148px;
}
body:has(.about-template) .big-text .title {
  font-size: 68px;
  line-height: 80px;
}
body:has(.about-template) .big-text .title .bg-highlight {
  color: #1f242c;
}
body:has(.about-template) .big-text .description {
  font-size: 21px;
  line-height: 32px;
  max-width: 730px;
}
@media screen and (max-width: 992px) {
  body:has(.about-template) .big-text {
    margin-bottom: 70px;
  }
  body:has(.about-template) .big-text .title {
    font-size: 40px;
    line-height: 50px;
  }
  body:has(.about-template) .big-text .description {
    font-size: 16px;
    line-height: 24px;
    max-width: 100%;
  }
}
body:has(.about-template) .yt-video .iframe {
  aspect-ratio: 16/9;
  margin-bottom: 100px;
}
body:has(.about-template) .chiffres-cles {
  padding: 120px 0;
}
body:has(.about-template) .big-description {
  margin: 276px auto;
  font-size: 50px;
  line-height: 56px;
  font-weight: 500;
  max-width: 870px;
}
body:has(.about-template) .big-description span {
  color: inherit;
}
@media screen and (max-width: 992px) {
  body:has(.about-template) .big-description {
    font-size: 40px;
    line-height: 45px;
    max-width: 100%;
  }
}
body:has(.about-template) .four-points {
  padding: 80px 0;
}
body:has(.about-template) .four-points .title {
  font-size: 50px;
  line-height: 56px;
  margin-bottom: 24px;
}
body:has(.about-template) .four-points .right {
  font-weight: 200;
}
body:has(.about-template) .four-points .right,
body:has(.about-template) .four-points .item-title {
  list-style: decimal-leading-zero;
  font-size: 28px;
  line-height: 34px;
  margin-bottom: 8px;
}
body:has(.about-template) .four-points .item-title {
  font-weight: 500;
}
body:has(.about-template) .four-points .item-description {
  font-size: 21px;
  line-height: 32px;
  margin-bottom: 32px;
  font-weight: 200;
}
body:has(.about-template) .four-points .item-description,
body:has(.about-template) .four-points .item-title {
  margin-left: 20px;
}
@media screen and (min-width: 992px) {
  body:has(.about-template) .four-points .right {
    gap: 30px 98px;
  }
}
body:has(.about-template) .curious .title,
body:has(.about-template) .curious .description,
body:has(.about-template) .curious .card-title,
body:has(.about-template) .curious .card-description,
body:has(.about-template) .curious .card .btn {
  color: #C5DBD3;
}
body:has(.about-template) .curious .card .btn {
  border-color: #C5DBD3;
}
body:has(.about-template) .curious .card .btn:hover {
  color: black;
  background-color: #C5DBD3;
}
body:has(.about-template) .split .description {
  line-height: 32px;
}

body:has(.supplier-resource-template) .the-content {
  padding: 80px 200px;
}
body:has(.supplier-resource-template) .the-content h3 {
  font-size: 38px;
  line-height: 40px;
  margin-bottom: 20px;
}
body:has(.supplier-resource-template) .the-content h3:not(first-of-type) {
  margin-top: 40px;
}
body:has(.supplier-resource-template) .the-content p,
body:has(.supplier-resource-template) .the-content a,
body:has(.supplier-resource-template) .the-content li,
body:has(.supplier-resource-template) .the-content h5 {
  font-size: 21px;
  line-height: 32px;
}
body:has(.supplier-resource-template) .the-content a {
  text-decoration: underline;
}
@media screen and (max-width: 992px) {
  body:has(.supplier-resource-template) .the-content {
    padding: 80px 0;
  }
  body:has(.supplier-resource-template) .the-content h3 {
    font-size: 33px;
    line-height: 36px;
  }
  body:has(.supplier-resource-template) .the-content p,
  body:has(.supplier-resource-template) .the-content a,
  body:has(.supplier-resource-template) .the-content li,
  body:has(.supplier-resource-template) .the-content h5 {
    font-size: 20px;
    line-height: 26px;
  }
}
body:has(.supplier-resource-template) .simple-banner {
  padding: 120px 0;
  background: #253c44;
}
body:has(.supplier-resource-template) .simple-banner .title,
body:has(.supplier-resource-template) .simple-banner .description {
  color: #C5DBD3;
}
body:has(.supplier-resource-template) .simple-banner .title {
  font-size: 50px;
  line-height: 56px;
}
body:has(.supplier-resource-template) .simple-banner .description {
  font-size: 21px;
  line-height: 32px;
  max-width: 523px;
}
@media screen and (max-width: 992px) {
  body:has(.supplier-resource-template) .simple-banner {
    padding: 80px 0;
  }
  body:has(.supplier-resource-template) .simple-banner .title {
    font-size: 40px;
    line-height: 45px;
  }
  body:has(.supplier-resource-template) .simple-banner .description {
    font-size: 16px;
    line-height: 24px;
    max-width: 100%;
  }
}

body:has(.eichrecht-template) .the-content {
  padding: 80px 0;
}
body:has(.eichrecht-template) .the-content .title {
  border-bottom: 1px solid black;
  padding-bottom: 24px;
  margin-bottom: 48px;
  font-size: 50px;
  line-height: 54px;
}
body:has(.eichrecht-template) .the-content .item-title {
  font-size: 28px;
  line-height: 34px;
  margin-bottom: 20px;
  font-weight: 500;
}
body:has(.eichrecht-template) .the-content .item .btn .icon {
  font-size: 16px;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
@media screen and (max-width: 992px) {
  body:has(.eichrecht-template) .the-content .title {
    font-size: 40px;
    line-height: 45px;
  }
  body:has(.eichrecht-template) .the-content .item-title {
    font-size: 24px;
    line-height: 30px;
  }
}

body:has(.locations-template) .the-content {
  padding: 80px 0;
}
body:has(.locations-template) .the-content .warpper {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
body:has(.locations-template) .the-content .title {
  border-bottom: 1px solid black;
  padding-bottom: 24px;
  margin-bottom: 48px;
  font-size: 50px;
  line-height: 54px;
}
body:has(.locations-template) .the-content .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
body:has(.locations-template) .the-content .item-title {
  font-size: 28px;
  line-height: 34px;
  margin-bottom: 20px;
  font-weight: 500;
}
body:has(.locations-template) .the-content .item-description {
  font-size: 21px;
  line-height: 32px;
}
body:has(.locations-template) .the-content .item-description:last-of-type {
  margin-bottom: 20px;
}
body:has(.locations-template) .the-content .item .btn {
  margin-top: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
body:has(.locations-template) .the-content .item .btn .icon {
  font-size: 16px;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
@media screen and (max-width: 992px) {
  body:has(.locations-template) .the-content .title {
    font-size: 40px;
    line-height: 45px;
  }
  body:has(.locations-template) .the-content .item {
    margin-bottom: 40px;
  }
  body:has(.locations-template) .the-content .item-title {
    font-size: 24px;
    line-height: 30px;
  }
  body:has(.locations-template) .the-content.offices {
    padding: 80px 0 0 0;
  }
  body:has(.locations-template) .the-content.presence .item-description:last-of-type {
    margin-bottom: 0px;
  }
}

.sustainability-template .the-content {
  padding: 80px 0;
}
.sustainability-template .the-content .warpper {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.sustainability-template .the-content .title {
  border-bottom: 1px solid black;
  padding-bottom: 24px;
  margin-bottom: 48px;
  font-size: 50px;
  line-height: 54px;
}
.sustainability-template .the-content .title .bg-highlight {
  color: inherit;
}
.sustainability-template .the-content .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.sustainability-template .the-content .item-title {
  font-size: 28px;
  line-height: 34px;
  margin-bottom: 20px;
  font-weight: 500;
}
.sustainability-template .the-content .item-description {
  font-size: 21px;
  line-height: 32px;
}
.sustainability-template .the-content .item-description:last-of-type {
  margin-bottom: 20px;
}
.sustainability-template .the-content .item .btn {
  margin-top: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.sustainability-template .the-content .item .btn .icon {
  font-size: 16px;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
@media screen and (max-width: 992px) {
  .sustainability-template .the-content .title {
    font-size: 40px;
    line-height: 45px;
  }
  .sustainability-template .the-content .item {
    margin-bottom: 40px;
  }
  .sustainability-template .the-content .item-title {
    font-size: 24px;
    line-height: 30px;
  }
}
.sustainability-template .post-content-container.small p {
  font-size: 18.375px;
  line-height: 32px;
  color: #1f242c;
}

.post-type-archive-story .title {
  font-size: 90px;
  line-height: 1.2;
  margin-bottom: 24px;
}
.post-type-archive-story .description {
  font-size: 21px;
  line-height: 32px;
  margin-bottom: 40px;
  max-width: 600px;
  margin: 0 auto 176px auto;
}
.post-type-archive-story .pre-footer {
  padding: 120px 0;
  background-color: #C5DBD3;
}
.post-type-archive-story .pre-footer .title {
  font-size: 50px;
  line-height: 54px;
}
.post-type-archive-story .pre-footer .description {
  font-size: 21px;
  line-height: 32px;
  margin-bottom: 24px;
}
@media screen and (max-width: 992px) {
  .post-type-archive-story .title {
    font-size: 60px;
    line-height: 1.2;
    margin-bottom: 16px;
  }
  .post-type-archive-story .description {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 40px;
    max-width: 100%;
  }
  .post-type-archive-story .pre-footer {
    padding: 60px 0;
  }
  .post-type-archive-story .pre-footer .title {
    font-size: 38px;
    line-height: 42px;
  }
  .post-type-archive-story .pre-footer .description {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 40px;
  }
}

.post-archive-template .page-title {
  font-size: 80px;
  font-weight: 400;
  line-height: 80px;
}
.post-archive-template .page-description {
  max-width: 600px;
  margin: 0 auto;
  font-size: 18px;
  font-weight: 400;
  line-height: 31.5px;
}
.post-archive-template .subtitle {
  font-size: 34px;
  font-weight: 500;
  line-height: 44px;
  margin-bottom: 35px;
}
.post-archive-template .cats {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  overflow-x: auto;
  gap: 33px;
  margin-bottom: 64px;
  margin-top: 75px;
}
.post-archive-template .cats .cat {
  font-size: 18px;
  font-weight: 400;
  line-height: 31.5px;
  padding-bottom: 16px;
  white-space: nowrap;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.post-archive-template .cats .cat.active {
  border-bottom: 2px solid #64ffaf;
}
.post-archive-template .cards {
  margin-bottom: 80px;
}
.post-archive-template .pagination {
  margin-bottom: 64px;
  margin-top: 0;
}
@media screen and (max-width: 992px) {
  .post-archive-template .page-title {
    font-size: 42px;
    font-weight: 500;
    line-height: 53px;
  }
  .post-archive-template .page-description {
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
  }
  .post-archive-template .cats {
    margin-top: 70px;
    margin-bottom: 50px;
  }
  .post-archive-template .cats .cat {
    font-size: 16px;
    line-height: 24px;
  }
  .post-archive-template .subtitle {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 35px;
  }
}

.career-archive-template .grid-title-underlined {
  padding: 80px 0;
}
.career-archive-template .grid-title-underlined .title {
  border-bottom: 1px solid black;
  padding-bottom: 24px;
  margin-bottom: 48px;
  font-size: 50px;
  line-height: 54px;
}
.career-archive-template .grid-title-underlined .item-title {
  font-size: 28px;
  line-height: 34px;
  margin-bottom: 20px;
  font-weight: 500;
}
.career-archive-template .grid-title-underlined .item-description {
  font-size: 21px;
  line-height: 32px;
  margin-bottom: 0;
}
.career-archive-template .grid-title-underlined .item .btn .icon {
  font-size: 16px;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
@media screen and (max-width: 992px) {
  .career-archive-template .grid-title-underlined .title {
    font-size: 40px;
    line-height: 45px;
  }
  .career-archive-template .grid-title-underlined .item-title {
    font-size: 24px;
    line-height: 30px;
  }
  .career-archive-template .grid-title-underlined .item-description {
    font-size: 16px;
    line-height: 28px;
  }
}
.career-archive-template .big-section {
  margin-top: 20px;
}
.career-archive-template .big-section .big-title {
  font-size: 67px;
  line-height: 80px;
  margin-bottom: 20px;
  font-weight: 300;
}
.career-archive-template .big-section .big-title span {
  color: #1f242c;
}
.career-archive-template .big-section .description {
  font-size: 21px;
  line-height: 32px;
  max-width: 50%;
}
@media screen and (max-width: 992px) {
  .career-archive-template .big-section .big-title {
    font-size: 40px;
    line-height: 45px;
  }
  .career-archive-template .big-section .description {
    max-width: 100%;
    font-size: 16px;
    line-height: 28px;
  }
}
.career-archive-template .curious {
  background-color: #C5DBD3;
}
.career-archive-template .faq {
  background-color: #253c44;
  padding: 80px 0;
}
.career-archive-template .faq .first {
  margin-bottom: 160px;
}
.career-archive-template .faq .title {
  font-size: 50px;
  line-height: 56px;
  margin-bottom: 24px;
}
.career-archive-template .faq .content {
  gap: 40px;
}
.career-archive-template .faq .list {
  gap: 32px 111px;
}
.career-archive-template .faq .list-item {
  color: #fff;
}
.career-archive-template .faq .list-item .list-title {
  margin-bottom: 8px;
}
.career-archive-template .faq .list-item .list-title {
  font-size: 28px;
  line-height: 31px;
}
.career-archive-template .faq .list-item .list-description {
  font-size: 21px;
  line-height: 32px;
  color: #C5DBD3;
}
@media screen and (max-width: 992px) {
  .career-archive-template .faq {
    padding: 48px 0;
  }
  .career-archive-template .faq .first {
    margin-bottom: 96px;
  }
  .career-archive-template .faq .title {
    font-size: 42px;
    line-height: 46px;
  }
  .career-archive-template .faq .list {
    gap: 24px;
  }
  .career-archive-template .faq .list-item .list-title {
    font-size: 24px;
    line-height: 28px;
  }
  .career-archive-template .faq .list-item .list-description {
    font-size: 21px;
    line-height: 32px;
  }
}
.career-archive-template .solo-img .img {
  grid-column: 1/-1;
  margin-bottom: 48px;
  width: 100%;
  height: auto;
}
.career-archive-template .banner .title {
  max-width: 700px;
}
@media screen and (max-width: 992px) {
  .career-archive-template .banner .title {
    max-width: 100%;
  }
}

.ev-chargers-template .top {
  padding-top: 50px;
}
.ev-chargers-template .page-sub-title {
  font-size: 28px;
  line-height: 34px;
  margin-bottom: 16px;
  font-weight: 500;
}
.ev-chargers-template .page-title {
  font-size: 90px;
  line-height: 102px;
  font-weight: 500;
  max-width: 990px;
  margin: 0 auto 24px auto;
  padding: 0;
}
.ev-chargers-template .page-description {
  font-size: 21px;
  line-height: 32px;
  max-width: 600px;
  margin: 0 auto 136px auto;
}
@media screen and (max-width: 992px) {
  .ev-chargers-template .page-title {
    font-size: 50px;
    line-height: 56px;
    margin-bottom: 16px;
  }
  .ev-chargers-template .page-description {
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 80px;
  }
  .ev-chargers-template .page-sub-title {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 8px;
  }
}

.story-template-default .landing .sub-title {
  font-size: 28px;
}
.story-template-default .landing .page-title,
.story-template-default .landing .page-description {
  max-width: 540px;
}
.story-template-default .landing .page-description {
  font-size: 21px;
  line-height: 32px;
}
@media screen and (max-width: 992px) {
  .story-template-default .landing .sub-title {
    font-size: 24px;
  }
  .story-template-default .landing .page-title,
  .story-template-default .landing .page-description {
    max-width: 100%;
  }
  .story-template-default .landing .page-description {
    font-size: 18px;
    line-height: 28px;
  }
}

.single-post-template .landing .cats .cat {
  font-size: 14.5px;
  font-weight: 500;
  padding: 8px 12px;
}
.single-post-template .landing .reading-time {
  margin: 16px 0;
}
.single-post-template .landing .reading-time .site-link {
  text-decoration: underline;
  color: #fff;
}
.single-post-template .landing .page-title {
  font-size: 80px;
  line-height: 1;
}
.single-post-template .post-content-container {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.single-post-template .post-content-container .share {
  min-width: 297px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: sticky;
  top: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  padding: 48px 0;
  border-top: 8px solid #64ffaf;
  -webkit-transition: top 0.3s ease;
  transition: top 0.3s ease;
}
.single-post-template .post-content-container .share .title {
  font-size: 18px;
  margin-bottom: 32px;
}
.single-post-template .post-content-container .share .icon {
  font-size: 24px;
  margin-bottom: 26px;
  cursor: pointer;
}
.single-post-template .post-content-container .post-content {
  margin: 54px auto 0 auto;
  max-width: 840px;
}
.single-post-template .post-content-container .post-content .back-button {
  display: block;
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 500;
  margin-bottom: 40px;
}
.single-post-template .post-content-container .post-content .back-button .icon {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  font-size: 12px;
  font-weight: 500;
  margin-right: 6px;
}
.single-post-template .post-content-container .post-content mark.has-inline-color {
  background-color: #64ffaf !important;
  color: inherit;
}
.single-post-template .post-content-container .post-content h2 {
  font-size: 34px;
  font-weight: 500;
  line-height: 44px;
}
.single-post-template .post-content-container .post-content h3 {
  font-size: 24px;
}
.single-post-template .post-content-container .post-content p,
.single-post-template .post-content-container .post-content li,
.single-post-template .post-content-container .post-content td {
  font-size: 18px;
  line-height: 31px;
}
.single-post-template .post-content-container .post-content p {
  margin-bottom: 40px;
}
.single-post-template .post-content-container .post-content figure {
  margin-bottom: 20px;
}
.single-post-template .other-posts {
  margin-top: 130px;
}
.single-post-template .other-posts .title {
  font-size: 34px;
  font-weight: 500;
  line-height: 44px;
}
@media screen and (max-width: 992px) {
  .single-post-template .landing .reading-time {
    margin: 16px 0;
    color: #F0F6F4;
    font-size: 18px;
    font-weight: 500;
  }
  .single-post-template .landing .page-title {
    font-size: 42px;
  }
  .single-post-template .post-content-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .single-post-template .post-content-container .share {
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-top: 0;
    text-align: start;
  }
  .single-post-template .post-content-container .share .title {
    margin-bottom: 20px;
  }
  .single-post-template .other-posts {
    margin-top: 100px;
  }
  .single-post-template .other-posts .title {
    margin-left: 0;
  }
  .single-post-template .other-posts .card-post {
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 992px) {
  .single-post-template .post-content-container {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1/3;
  }
}

body:has(.header-visible) .single-post-template .post-content-container .share {
  top: 84px;
}

.ev-chargers-troniq-template {
  position: relative;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
.ev-chargers-troniq-template.header-negation {
  margin-top: -84px;
}
.ev-chargers-troniq-template .hero-animation {
  position: static;
}
.ev-chargers-troniq-template .hero-animation-promo {
  color: #fff;
  opacity: 1;
  padding-bottom: 80px;
  height: 100vh;
  position: fixed;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 0;
  width: 100%;
}
.ev-chargers-troniq-template .hero-animation-promo .hero-animation-tagline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 50%;
  color: #fff;
}
.ev-chargers-troniq-template .hero-animation-promo .hero-animation-tagline .is-h2 {
  font-size: 2.369rem;
  line-height: 3.5rem;
  margin-bottom: 0;
  color: #fff;
}
.ev-chargers-troniq-template .hero-animation-promo .hero-animation-product {
  padding: 0 4px 36px;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  height: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #fff;
}
.ev-chargers-troniq-template .hero-animation-promo .hero-animation-product .hero__content .subtitle {
  font-size: 28px;
}
.ev-chargers-troniq-template .hero-animation-promo .hero-animation-product .hero__content .title {
  font-size: 3.157rem;
  line-height: 4.5rem;
  color: #fff;
  font-weight: 500;
  margin: 0 0 20px;
}
.ev-chargers-troniq-template .hero-animation-promo .hero-animation-product .hero__content .hero__button-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
}
.ev-chargers-troniq-template .banner-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-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  height: 720px;
  max-width: 450px;
  margin-left: auto;
  padding-bottom: 96px;
}
.ev-chargers-troniq-template .banner-top .content .title {
  font-size: 50px;
  line-height: 56px;
  margin-bottom: 16px;
}
.ev-chargers-troniq-template .banner-top .content .description {
  font-size: 21px;
  line-height: 1.4;
}
@media screen and (max-width: 992px) {
  .ev-chargers-troniq-template .banner-top .background-container::before {
    background: linear-gradient(1turn, rgba(31, 36, 44, 0.64) 32.85%, rgba(31, 36, 44, 0));
  }
  .ev-chargers-troniq-template .banner-top .content {
    max-width: 100%;
    width: 100%;
  }
}
.ev-chargers-troniq-template .split .description {
  line-height: 1.4;
}
.ev-chargers-troniq-template .big-text {
  margin: 276px auto;
  font-size: 50px;
  font-weight: 500;
  line-height: 56px;
  max-width: 1200px;
}
.ev-chargers-troniq-template .big-text .bg-highlight {
  color: #1f242c;
}
@media screen and (max-width: 992px) {
  .ev-chargers-troniq-template .big-text {
    margin: 80px auto;
    font-size: 36px;
    line-height: 40px;
  }
}
.ev-chargers-troniq-template .faq {
  background-color: #253c44;
  padding: 80px 0;
}
.ev-chargers-troniq-template .faq .title {
  font-size: 50px;
  line-height: 56px;
  margin-bottom: 24px;
}
.ev-chargers-troniq-template .faq .content {
  gap: 40px;
}
.ev-chargers-troniq-template .faq .list {
  list-style-type: decimal-leading-zero;
  counter-reset: list-counter;
  padding-left: 37px;
  gap: 32px 111px;
}
.ev-chargers-troniq-template .faq .list-item {
  color: #fff;
}
.ev-chargers-troniq-template .faq .list-item::marker {
  color: #64ffaf;
}
.ev-chargers-troniq-template .faq .list-item .list-title {
  margin-bottom: 8px;
}
.ev-chargers-troniq-template .faq .list-item::marker,
.ev-chargers-troniq-template .faq .list-item .list-title {
  font-size: 28px;
  line-height: 31px;
}
.ev-chargers-troniq-template .faq .list-item .list-description {
  font-size: 21px;
  line-height: 32px;
  color: #C5DBD3;
}
@media screen and (max-width: 992px) {
  .ev-chargers-troniq-template .faq {
    padding: 48px 0;
  }
  .ev-chargers-troniq-template .faq .title {
    font-size: 42px;
    line-height: 46px;
  }
  .ev-chargers-troniq-template .faq .list {
    gap: 24px;
  }
  .ev-chargers-troniq-template .faq .list-item::marker,
  .ev-chargers-troniq-template .faq .list-item .list-title {
    font-size: 24px;
    line-height: 28px;
  }
  .ev-chargers-troniq-template .faq .list-item .list-description {
    font-size: 21px;
    line-height: 32px;
  }
}
.ev-chargers-troniq-template .stories {
  margin: 80px 0;
}
.ev-chargers-troniq-template .split-w-swiper {
  margin-top: 80px;
  margin-bottom: 48px;
}
.ev-chargers-troniq-template .split-w-swiper .image-container {
  height: 100%;
}
.ev-chargers-troniq-template .split-w-swiper .chargers-swiper {
  position: relative;
  height: 100%;
}
.ev-chargers-troniq-template .split-w-swiper .chargers-swiper .navigation {
  position: absolute;
  bottom: 15px;
  right: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}
.ev-chargers-troniq-template .split-w-swiper .chargers-swiper .navigation .swiper-button-prev,
.ev-chargers-troniq-template .split-w-swiper .chargers-swiper .navigation .swiper-button-next {
  position: initial;
  width: 48px;
  height: 48px;
  background-color: #c1cccb;
  border-radius: 50px;
  color: #1f242c;
}
.ev-chargers-troniq-template .split-w-swiper .chargers-swiper .navigation .swiper-button-prev:focus,
.ev-chargers-troniq-template .split-w-swiper .chargers-swiper .navigation .swiper-button-next:focus {
  background-color: #c1cccb;
  border: 2px solid #fff;
  -webkit-box-shadow: 0 0 1px 4px rgba(224, 255, 239, 0.92);
          box-shadow: 0 0 1px 4px rgba(224, 255, 239, 0.92);
}
.ev-chargers-troniq-template .split-w-swiper .chargers-swiper .navigation .swiper-button-prev:after,
.ev-chargers-troniq-template .split-w-swiper .chargers-swiper .navigation .swiper-button-next:after {
  display: none;
}
.ev-chargers-troniq-template .split-w-swiper .chargers-swiper .navigation .swiper-button-prev .icon,
.ev-chargers-troniq-template .split-w-swiper .chargers-swiper .navigation .swiper-button-next .icon {
  font-size: 13px;
  width: 1em;
  height: 1em;
}
.ev-chargers-troniq-template .split-w-swiper .chargers-swiper .navigation .swiper-button-prev {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.ev-chargers-troniq-template .split-w-swiper .chargers-swiper .navigation .swiper-button-next {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.ev-chargers-troniq-template .split-w-swiper .chargers-swiper .swiper-slide .img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.ev-chargers-troniq-template .split-w-swiper .bottom {
  padding: 48px;
}
.ev-chargers-troniq-template .split-w-swiper .bottom .bottom-title {
  color: #C5DBD3;
  font-size: 28px;
  line-height: 34px;
}
.ev-chargers-troniq-template .split-w-swiper .bottom .tooltip-container {
  color: #C5DBD3;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.ev-chargers-troniq-template .split-w-swiper .bottom .tooltip-container .icon {
  margin-left: 8px;
}
.ev-chargers-troniq-template .split-w-swiper .bottom .tooltip-container .tooltip {
  background: #C5DBD3;
  color: #1f242c;
  padding: 16px;
  font-size: 14px;
  line-height: 20px;
  width: 200px;
}
.ev-chargers-troniq-template .split-w-swiper .bottom .data-value {
  font-size: 40px;
  line-height: 60px;
}
.ev-chargers-troniq-template .split-w-swiper .bottom .data-label,
.ev-chargers-troniq-template .split-w-swiper .bottom .power-unit {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}
.ev-chargers-troniq-template .split-w-swiper .bottom .form-range {
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
          text-size-adjust: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-font-kerning: auto;
          font-kerning: auto;
  text-rendering: optimizelegibility;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  margin: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: transparent;
  height: 2.5rem;
  padding: 0;
  width: 100%;
}
.ev-chargers-troniq-template .split-w-swiper .bottom .form-range::-webkit-slider-thumb {
  -webkit-appearance: none;
          appearance: none;
  background-color: #fff;
  background-image: var(--bs-gradient);
  border: 0;
  border-radius: 1rem;
  -webkit-box-shadow: 0 0.1rem 0.25rem rgba(0, 0, 0, 0.1);
          box-shadow: 0 0.1rem 0.25rem rgba(0, 0, 0, 0.1);
  height: 2rem;
  margin-top: -0.5rem;
  -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  width: 2rem;
}
.ev-chargers-troniq-template .split-w-swiper .bottom .form-range::-webkit-slider-thumb:active {
  background-color: #64ffaf;
  -webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15);
}
.ev-chargers-troniq-template .split-w-swiper .bottom .form-range::-webkit-slider-runnable-track {
  background-color: #000;
  border-color: transparent;
  border-radius: 1rem;
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075);
          box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075);
  color: transparent;
  cursor: pointer;
  height: 1rem;
  width: 100%;
}
.ev-chargers-troniq-template .split-w-swiper .bottom .form-range::-webkit-slider-runnable-track {
  background: -webkit-gradient(linear, left top, right top, from(#64ffaf), color-stop(#64ffaf), color-stop(#000), to(#000));
  background: linear-gradient(90deg, #64ffaf 0%, #64ffaf var(--slider-progress, 0%), #000 var(--slider-progress, 0%), #000 100%);
}
.ev-chargers-troniq-template .split-w-swiper .bottom .power {
  font-size: 16px;
  line-height: 32px;
  font-weight: 400;
}
.ev-chargers-troniq-template .split-w-swiper .bottom .tae {
  text-align: end;
}
@media screen and (max-width: 992px) {
  .ev-chargers-troniq-template .split-w-swiper .bottom {
    padding: 24px;
  }
  .ev-chargers-troniq-template .split-w-swiper .bottom .bottom-title {
    font-size: 24px;
    line-height: 28px;
  }
}
.ev-chargers-troniq-template .accordion .accordion {
  padding: 0;
}
.ev-chargers-troniq-template .accordion .accordion-wrapper {
  border-bottom: 1px solid transparent;
}
.ev-chargers-troniq-template .accordion .accordion-title-wrapper {
  border-top: 1px solid transparent;
  border-bottom: 1px solid black;
}
.ev-chargers-troniq-template .accordion .st-accordion__content--visible {
  padding-top: 32px;
}
.ev-chargers-troniq-template .accordion .accordion-title {
  font-size: 50px;
  line-height: 86px;
}
.ev-chargers-troniq-template .accordion .specifications-container {
  border-top: 1px solid #1f242c;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 56px 0 32px;
}
.ev-chargers-troniq-template .accordion .specifications-container:first-of-type {
  border-top: 0;
}
.ev-chargers-troniq-template .accordion .specifications-container .title {
  font-size: 28px;
  line-height: 34px;
  margin-bottom: 32px;
  width: 100%;
}
.ev-chargers-troniq-template .accordion .specifications-container .specifications-item {
  margin: 8px 0;
  width: 50%;
  font-size: 21px;
  line-height: 32px;
}
.ev-chargers-troniq-template .accordion .specifications-container .specifications-item .item-title {
  font-weight: 700;
  margin-bottom: 16px;
}
.ev-chargers-troniq-template .accordion .row.my-6 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr 30px 1fr;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin: 0 0 32px;
}
.ev-chargers-troniq-template .accordion .row.my-6 h4 {
  font-size: 28px;
  line-height: 34px;
  font-weight: 500;
  margin-bottom: 20px;
}
.ev-chargers-troniq-template .accordion .accordion-description:has(.col-sm-12.col-lg-4.pb-5) {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.ev-chargers-troniq-template .accordion .accordion-description:has(.col-sm-12.col-lg-4.pb-5) .col-sm-12.col-lg-4.pb-5 h4 {
  font-size: 28px;
  line-height: 34px;
  margin-bottom: 20px;
}
.ev-chargers-troniq-template .accordion .accordion-description:has(.col-sm-12.col-lg-4.pb-5) .col-sm-12.col-lg-4.pb-5 p {
  font-size: 21px;
  line-height: 32px;
}
.ev-chargers-troniq-template .accordion .description.description {
  font-size: 21px;
  line-height: 32px;
  margin-bottom: 64px;
  font-weight: 500;
}
.ev-chargers-troniq-template .accordion .comparison-row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.ev-chargers-troniq-template .accordion .comparison-row .specifications-container {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.ev-chargers-troniq-template .accordion .comparison-row .specifications-container .item-title {
  margin-bottom: 0;
}
@media screen and (max-width: 992px) {
  .ev-chargers-troniq-template .accordion .accordion-title {
    font-size: 36px;
    line-height: 76px;
  }
  .ev-chargers-troniq-template .accordion .specifications-container {
    padding: 32px 0 16px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .ev-chargers-troniq-template .accordion .specifications-container .title {
    font-size: 24px;
    line-height: 28px;
    margin-bottom: 24px;
  }
  .ev-chargers-troniq-template .accordion .specifications-container .specifications-item {
    width: 100%;
    font-size: 21px;
    line-height: 32px;
  }
  .ev-chargers-troniq-template .accordion .row.my-6 {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
  .ev-chargers-troniq-template .accordion .accordion-description:has(.col-sm-12.col-lg-4.pb-5) {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
  .ev-chargers-troniq-template .accordion .comparison-row {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
}
.ev-chargers-troniq-template .split-faq {
  background-color: #C5DBD3;
  margin-bottom: 48px;
}
.ev-chargers-troniq-template .split-faq .image-container {
  -ms-flex-item-align: start;
      -ms-grid-row-align: start;
      align-self: start;
}
.ev-chargers-troniq-template .split-faq .content {
  padding: 64px 80px;
}
.ev-chargers-troniq-template .split-faq .title {
  margin-bottom: 20px;
  font-size: 50px;
}
.ev-chargers-troniq-template .split-faq .description {
  margin-bottom: 32px;
  line-height: 28px;
  font-size: 21px;
  font-weight: 400;
}
.ev-chargers-troniq-template .split-faq .btn {
  margin-top: 32px;
  line-height: 24px;
  text-align: center;
}
.ev-chargers-troniq-template .split-faq .accordion {
  padding: 0;
}
.ev-chargers-troniq-template .split-faq .accordion-title {
  line-height: 28px;
  font-size: 21px;
}
.ev-chargers-troniq-template .split-faq .accordion-description p {
  line-height: 24px;
  font-size: 16px;
}
@media screen and (max-width: 992px) {
  .ev-chargers-troniq-template .split-faq {
    grid-column: 1/-1;
    margin-bottom: 32px;
  }
  .ev-chargers-troniq-template .split-faq .content {
    margin-bottom: 32px;
    margin-right: 0;
  }
  .ev-chargers-troniq-template .split-faq .title {
    font-size: 32px;
  }
  .ev-chargers-troniq-template .split-faq .description {
    font-size: 18px;
  }
}
.ev-chargers-troniq-template.modular .banner-top .content {
  margin-left: initial;
}
.ev-chargers-troniq-template.modular .banner .title {
  max-width: 930px;
}

.career-single-template .top {
  margin-top: 96px;
  max-width: 990px;
  margin: 96px auto 0 auto;
}
.career-single-template .top .location {
  margin-bottom: 16px;
  font-size: 28px;
  line-height: 34px;
}
.career-single-template .top .page-title {
  margin-bottom: 24px;
  font-size: 90px;
  line-height: 102px;
  font-weight: 500;
  padding: 0;
}
.career-single-template .top .page-description {
  font-size: 21px;
  line-height: 32px;
  margin: 0;
}
.career-single-template .top .btn {
  margin-top: 32px;
}
@media screen and (max-width: 992px) {
  .career-single-template .top {
    margin-top: 80px;
  }
  .career-single-template .top .location {
    font-size: 24px;
    line-height: 30px;
  }
  .career-single-template .top .page-title {
    margin-bottom: 16px;
    font-size: 50px;
    line-height: 56px;
  }
  .career-single-template .top .page-description {
    font-size: 20px;
    line-height: 24px;
  }
  .career-single-template .top .btn {
    margin-top: 24px;
  }
}
.career-single-template .post-content-container {
  max-width: 920px;
  margin: 96px auto;
}
@media screen and (max-width: 992px) {
  .career-single-template .post-content-container {
    margin: 50px auto;
  }
  .career-single-template .post-content-container .post-content {
    margin: 32px 0;
  }
}
.career-single-template .pre-footer {
  background-color: #C5DBD3;
  padding: 120px 0;
}
.career-single-template .pre-footer .title {
  font-size: 50px;
  line-height: 54px;
}
.career-single-template .pre-footer .btn {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
@media screen and (max-width: 992px) {
  .career-single-template .pre-footer {
    padding: 80px 0;
  }
  .career-single-template .pre-footer .title {
    font-size: 40px;
    line-height: 45px;
  }
}

.page-assistance .wp-block-columns-is-layout-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.page-assistance .post-content {
  margin-top: 160px;
  margin-bottom: 160px;
}
@media screen and (max-width: 992px) {
  .page-assistance .wp-block-columns-is-layout-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.fast-charger-template .faq {
  background-color: transparent;
}
.fast-charger-template .faq .list-item::marker,
.fast-charger-template .faq .list-item .list-description {
  color: #1f242c;
}
.fast-charger-template .logos-swiper .title {
  font-size: 50px;
  line-height: 56px;
  margin-bottom: 24px;
  max-width: 545px;
}
@media screen and (max-width: 992px) {
  .fast-charger-template .logos-swiper .title {
    font-size: 32px;
    line-height: 34px;
    margin-bottom: 16px;
  }
}
.fast-charger-template .logos-swiper .navigation {
  position: initial;
  height: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 16px;
  margin: 24px 0;
}
.fast-charger-template .logos-swiper .navigation .swiper-button-prev,
.fast-charger-template .logos-swiper .navigation .swiper-button-next {
  position: initial;
  margin-top: 0;
  width: 48px;
  height: 48px;
  background-color: #c1cccb;
  border-radius: 50px;
  color: #1f242c;
}
.fast-charger-template .logos-swiper .navigation .swiper-button-prev:focus,
.fast-charger-template .logos-swiper .navigation .swiper-button-next:focus {
  background-color: #c1cccb;
  border: 2px solid #fff;
  -webkit-box-shadow: 0 0 1px 4px rgba(224, 255, 239, 0.92);
          box-shadow: 0 0 1px 4px rgba(224, 255, 239, 0.92);
}
.fast-charger-template .logos-swiper .navigation .swiper-button-prev:after,
.fast-charger-template .logos-swiper .navigation .swiper-button-next:after {
  display: none;
}
.fast-charger-template .logos-swiper .navigation .swiper-button-prev .icon,
.fast-charger-template .logos-swiper .navigation .swiper-button-next .icon {
  font-size: 13px;
  width: 1em;
  height: 1em;
}
.fast-charger-template .logos-swiper .navigation .swiper-button-prev {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.fast-charger-template .logos-swiper .navigation .swiper-button-next {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.fast-charger-template .logos-swiper .swiper-grid-column > .swiper-wrapper {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.certifications-template .banner .description,
.certifications-template .banner .title {
  max-width: 700px;
}
@media screen and (max-width: 992px) {
  .certifications-template .banner .description,
  .certifications-template .banner .title {
    max-width: 100%;
  }
}

.advenir-template .landing .page-title {
  max-width: 530px;
}
.advenir-template .faq {
  background-color: #253c44;
  padding: 80px 0;
}
.advenir-template .faq .title {
  font-size: 50px;
  line-height: 56px;
  margin-bottom: 24px;
  color: #C5DBD3;
}
.advenir-template .faq .content {
  gap: 40px;
}
.advenir-template .faq .list {
  list-style-type: decimal-leading-zero;
  counter-reset: list-counter;
  padding-left: 37px;
  gap: 32px 111px;
}
.advenir-template .faq .list-item {
  color: #fff;
}
.advenir-template .faq .list-item::marker {
  color: #64ffaf;
}
.advenir-template .faq .list-item .list-title {
  margin-bottom: 8px;
}
.advenir-template .faq .list-item::marker,
.advenir-template .faq .list-item .list-title {
  font-size: 28px;
  line-height: 31px;
  color: #64ffaf;
}
.advenir-template .faq .list-item .list-description {
  font-size: 21px;
  line-height: 32px;
  color: #C5DBD3;
}
.advenir-template .faq.light {
  background-color: transparent;
}
.advenir-template .faq.light .title,
.advenir-template .faq.light .list-item .list-title,
.advenir-template .faq.light .list-item .list-description {
  color: #1f242c;
}
@media screen and (max-width: 992px) {
  .advenir-template .faq {
    padding: 48px 0;
  }
  .advenir-template .faq .title {
    font-size: 42px;
    line-height: 46px;
  }
  .advenir-template .faq .list {
    gap: 24px;
  }
  .advenir-template .faq .list-item::marker,
  .advenir-template .faq .list-item .list-title {
    font-size: 24px;
    line-height: 28px;
  }
  .advenir-template .faq .list-item .list-description {
    font-size: 21px;
    line-height: 32px;
  }
}
@media screen and (max-width: 992px) {
  .advenir-template .landing .page-title {
    max-width: 100%;
  }
}

.support-template .the-content {
  padding: 80px 0;
}
.support-template .the-content .title {
  border-bottom: 1px solid black;
  padding-bottom: 24px;
  margin-bottom: 48px;
  font-size: 50px;
  line-height: 54px;
}
.support-template .the-content .item-title {
  font-size: 28px;
  line-height: 34px;
  margin-bottom: 20px;
  font-weight: 500;
}
.support-template .the-content .item .btn .icon {
  font-size: 16px;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
@media screen and (max-width: 992px) {
  .support-template .the-content .title {
    font-size: 40px;
    line-height: 45px;
  }
  .support-template .the-content .item-title {
    font-size: 24px;
    line-height: 30px;
  }
}

/* - - - -    Z-index Element Priority    - - - -  */
/*# sourceMappingURL=main.css.map */