@charset "UTF-8";
/*!
* KNACSS Reborn: Just keep it simple!
* @author: Alsacreations
* v8.0.4 2021/04
* Licence WTFPL http://www.wtfpl.net/
*/
/* ----------------------------- */
/* ==Reset (base)                */
/* ----------------------------- */
/*
 * 1. Switch to border-box model for all elements
 * 2. Avoid min-width: auto and min-height: auto on flex and grid children
 */
*,
*::before,
*::after {
  box-sizing: border-box; /* 1 */
  min-width: 0; /* 2 */
  min-height: 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: 62.5%;
  -webkit-tap-highlight-color: transparent; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  overflow-wrap: break-word; /* 3 */
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 2.2rem;
  line-height: 1.5;
  background-color: #ffffff;
  color: #212529;
}

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

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

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

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

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

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

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

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

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

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

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

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

img {
  border-style: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

form,
fieldset {
  border: none;
}

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

legend {
  display: table;
  max-width: 100%;
  padding: 0 2rem;
  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;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  body {
    width: auto;
    margin: auto;
    font-family: serif;
    font-size: 12pt;
  }
  p,
  .p-like,
  h1,
  .h1-like,
  h2,
  .h2-like,
  h3,
  .h3-like,
  h4,
  .h4-like,
  h5,
  .h5-like,
  h6,
  .h6-like,
  blockquote,
  label,
  ul,
  ol {
    color: #000;
    margin: auto;
  }
  .print {
    display: block;
  }
  .no-print {
    display: none;
  }
  /* no orphans, no widows */
  p,
  .p-like,
  blockquote {
    orphans: 3;
    widows: 3;
  }
  /* no breaks inside these elements */
  blockquote,
  ul,
  ol {
    page-break-inside: avoid;
  }
  /* page break before main headers
  h1,
  .h1-like {
    page-break-before: always;
  }
  */
  /* no breaks after these elements */
  h1,
  .h1-like,
  h2,
  .h2-like,
  h3,
  .h3-like,
  caption {
    page-break-after: avoid;
  }
  a {
    color: #000;
  }
  /* displaying URLs
  a[href]::after {
    content: " (" attr(href) ")";
  }
  */
  a[href^="javascript:"]::after,
  a[href^="#"]::after {
    content: "";
  }
}
/* ----------------------------  */
/* ==Layout classes              */
/* ----------------------------- */
/* Global container */
.layout-maxed {
  display: grid;
}
@media (min-width: 576px) {
  .layout-maxed {
    grid-template-columns: minmax(0.5rem, 1fr) minmax(auto, 576px) minmax(0.5rem, 1fr);
  }
}
@media (min-width: 992px) {
  .layout-maxed {
    grid-template-columns: minmax(0.5rem, 1fr) minmax(auto, 992px) minmax(0.5rem, 1fr);
  }
}
@media (min-width: 1330px) {
  .layout-maxed {
    grid-template-columns: minmax(0.5rem, 1fr) minmax(auto, 1330px) minmax(0.5rem, 1fr);
  }
}
@media (min-width: 1580px) {
  .layout-maxed {
    grid-template-columns: minmax(0.5rem, 1fr) minmax(auto, 1580px) minmax(0.5rem, 1fr);
  }
}

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

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

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

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

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

.block {
  display: block;
}

.inline {
  display: inline;
}

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

.flex {
  display: flex;
}

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

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

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

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

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

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

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

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

.float-left {
  float: left;
}

.float-right {
  float: right;
}

.float-none {
  float: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.item-first {
  order: -100;
}

.item-last {
  order: 100;
}

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

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

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

@media (min-width: 576px) {
  .sm\:visually-hidden {
    position: absolute !important;
    border: 0 !important;
    height: 1px !important;
    width: 1px !important;
    padding: 0 !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
  }
  .sm\:is-unstyled {
    list-style: none;
    padding-left: 0;
  }
  .sm\:is-disabled {
    opacity: 0.6;
    cursor: not-allowed !important;
    filter: grayscale(1);
  }
  .sm\:text-normal {
    font-weight: normal;
    font-style: normal;
    text-transform: none;
  }
}
@media (min-width: 992px) {
  .md\:visually-hidden {
    position: absolute !important;
    border: 0 !important;
    height: 1px !important;
    width: 1px !important;
    padding: 0 !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
  }
  .md\:is-unstyled {
    list-style: none;
    padding-left: 0;
  }
  .md\:is-disabled {
    opacity: 0.6;
    cursor: not-allowed !important;
    filter: grayscale(1);
  }
  .md\:text-normal {
    font-weight: normal;
    font-style: normal;
    text-transform: none;
  }
}
@media (min-width: 1330px) {
  .lg\:visually-hidden {
    position: absolute !important;
    border: 0 !important;
    height: 1px !important;
    width: 1px !important;
    padding: 0 !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
  }
  .lg\:is-unstyled {
    list-style: none;
    padding-left: 0;
  }
  .lg\:is-disabled {
    opacity: 0.6;
    cursor: not-allowed !important;
    filter: grayscale(1);
  }
  .lg\:text-normal {
    font-weight: normal;
    font-style: normal;
    text-transform: none;
  }
}
@media (min-width: 1580px) {
  .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;
    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: 1330px) {
  .lg\:text-10 {
    font-size: 0.625rem;
  }
}
@media (min-width: 1580px) {
  .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: 1330px) {
  .lg\:text-11 {
    font-size: 0.6875rem;
  }
}
@media (min-width: 1580px) {
  .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: 1330px) {
  .lg\:text-12 {
    font-size: 0.75rem;
  }
}
@media (min-width: 1580px) {
  .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: 1330px) {
  .lg\:text-14 {
    font-size: 0.875rem;
  }
}
@media (min-width: 1580px) {
  .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: 1330px) {
  .lg\:text-16 {
    font-size: 1rem;
  }
}
@media (min-width: 1580px) {
  .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: 1330px) {
  .lg\:text-18 {
    font-size: 1.125rem;
  }
}
@media (min-width: 1580px) {
  .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: 1330px) {
  .lg\:text-20 {
    font-size: 1.25rem;
  }
}
@media (min-width: 1580px) {
  .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: 1330px) {
  .lg\:text-24 {
    font-size: 1.5rem;
  }
}
@media (min-width: 1580px) {
  .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: 1330px) {
  .lg\:text-30 {
    font-size: 1.875rem;
  }
}
@media (min-width: 1580px) {
  .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: 1330px) {
  .lg\:text-36 {
    font-size: 2.25rem;
  }
}
@media (min-width: 1580px) {
  .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: 1330px) {
  .lg\:text-base {
    font-size: 1rem;
  }
}
@media (min-width: 1580px) {
  .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: 1330px) {
  .lg\:text-inherit {
    font-size: "inherit";
  }
}
@media (min-width: 1580px) {
  .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: 1330px) {
  .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: 1580px) {
  .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: 1rem;
}

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

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

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

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

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

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

.m-1 {
  margin: 1rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.m-2 {
  margin: 2rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.m-3 {
  margin: 3rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.m-4 {
  margin: 4rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.m-5 {
  margin: 5rem;
}

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

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

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

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

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

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

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

.pt-6 {
  padding-top: 6rem;
}

.pr-6 {
  padding-right: 6rem;
}

.pb-6 {
  padding-bottom: 6rem;
}

.pl-6 {
  padding-left: 6rem;
}

.px-6 {
  padding-left: 6rem;
  padding-right: 6rem;
}

.py-6 {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.m-6 {
  margin: 6rem;
}

.mt-6 {
  margin-top: 6rem;
}

.mr-6 {
  margin-right: 6rem;
}

.mb-6 {
  margin-bottom: 6rem;
}

.ml-6 {
  margin-left: 6rem;
}

.mx-6 {
  margin-left: 6rem;
  margin-right: 6rem;
}

.my-6 {
  margin-top: 6rem;
  margin-bottom: 6rem;
}

@media (min-width: 576px) {
  .sm\:p-6 {
    padding: 6rem;
  }
  .sm\:pt-6 {
    padding-top: 6rem;
  }
  .sm\:pr-6 {
    padding-right: 6rem;
  }
  .sm\:pb-6 {
    padding-bottom: 6rem;
  }
  .sm\:pl-6 {
    padding-left: 6rem;
  }
  .sm\:px-6 {
    padding-left: 6rem;
    padding-right: 6rem;
  }
  .sm\:py-6 {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
  .sm\:m-6 {
    margin: 6rem;
  }
  .sm\:mt-6 {
    margin-top: 6rem;
  }
  .sm\:mr-6 {
    margin-right: 6rem;
  }
  .sm\:mb-6 {
    margin-bottom: 6rem;
  }
  .sm\:ml-6 {
    margin-left: 6rem;
  }
  .sm\:mx-6 {
    margin-left: 6rem;
    margin-right: 6rem;
  }
  .sm\:my-6 {
    margin-top: 6rem;
    margin-bottom: 6rem;
  }
}
@media (min-width: 992px) {
  .md\:p-6 {
    padding: 6rem;
  }
  .md\:pt-6 {
    padding-top: 6rem;
  }
  .md\:pr-6 {
    padding-right: 6rem;
  }
  .md\:pb-6 {
    padding-bottom: 6rem;
  }
  .md\:pl-6 {
    padding-left: 6rem;
  }
  .md\:px-6 {
    padding-left: 6rem;
    padding-right: 6rem;
  }
  .md\:py-6 {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
  .md\:m-6 {
    margin: 6rem;
  }
  .md\:mt-6 {
    margin-top: 6rem;
  }
  .md\:mr-6 {
    margin-right: 6rem;
  }
  .md\:mb-6 {
    margin-bottom: 6rem;
  }
  .md\:ml-6 {
    margin-left: 6rem;
  }
  .md\:mx-6 {
    margin-left: 6rem;
    margin-right: 6rem;
  }
  .md\:my-6 {
    margin-top: 6rem;
    margin-bottom: 6rem;
  }
}
@media (min-width: 1330px) {
  .lg\:p-6 {
    padding: 6rem;
  }
  .lg\:pt-6 {
    padding-top: 6rem;
  }
  .lg\:pr-6 {
    padding-right: 6rem;
  }
  .lg\:pb-6 {
    padding-bottom: 6rem;
  }
  .lg\:pl-6 {
    padding-left: 6rem;
  }
  .lg\:px-6 {
    padding-left: 6rem;
    padding-right: 6rem;
  }
  .lg\:py-6 {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
  .lg\:m-6 {
    margin: 6rem;
  }
  .lg\:mt-6 {
    margin-top: 6rem;
  }
  .lg\:mr-6 {
    margin-right: 6rem;
  }
  .lg\:mb-6 {
    margin-bottom: 6rem;
  }
  .lg\:ml-6 {
    margin-left: 6rem;
  }
  .lg\:mx-6 {
    margin-left: 6rem;
    margin-right: 6rem;
  }
  .lg\:my-6 {
    margin-top: 6rem;
    margin-bottom: 6rem;
  }
}
@media (min-width: 1580px) {
  .xl\:p-6 {
    padding: 6rem;
  }
  .xl\:pt-6 {
    padding-top: 6rem;
  }
  .xl\:pr-6 {
    padding-right: 6rem;
  }
  .xl\:pb-6 {
    padding-bottom: 6rem;
  }
  .xl\:pl-6 {
    padding-left: 6rem;
  }
  .xl\:px-6 {
    padding-left: 6rem;
    padding-right: 6rem;
  }
  .xl\:py-6 {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
  .xl\:m-6 {
    margin: 6rem;
  }
  .xl\:mt-6 {
    margin-top: 6rem;
  }
  .xl\:mr-6 {
    margin-right: 6rem;
  }
  .xl\:mb-6 {
    margin-bottom: 6rem;
  }
  .xl\:ml-6 {
    margin-left: 6rem;
  }
  .xl\:mx-6 {
    margin-left: 6rem;
    margin-right: 6rem;
  }
  .xl\:my-6 {
    margin-top: 6rem;
    margin-bottom: 6rem;
  }
}
.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: 1330px) {
  .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: 1580px) {
  .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: 1330px) {
  .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: 1580px) {
  .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-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: 1330px) {
  .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: 1580px) {
  .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: 1330px) {
  .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: 1580px) {
  .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: 1330px) {
  .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: 1580px) {
  .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-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: 1330px) {
  .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: 1580px) {
  .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-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: 1330px) {
  .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: 1580px) {
  .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;
  }
}
/* -------------------------------------------------- */
/* ==Grillade : système de micro-grille  de KNACSS   */
/* ------------------------------------------------ */
.grid {
  display: grid;
}

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

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

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

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

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

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

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

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

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

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

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

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

/* grid-template-columns au sein des breakpoints */
@media (min-width: 576px) {
  .sm\:grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .sm\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .sm\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .sm\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .sm\:grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .sm\:grid-cols-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
  .sm\:grid-cols-7 {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }
  .sm\:grid-cols-8 {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }
  .sm\:grid-cols-9 {
    grid-template-columns: repeat(9, minmax(0, 1fr));
  }
  .sm\:grid-cols-10 {
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }
  .sm\:grid-cols-11 {
    grid-template-columns: repeat(11, minmax(0, 1fr));
  }
  .sm\:grid-cols-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
}
@media (min-width: 992px) {
  .md\:grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .md\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .md\:grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .md\:grid-cols-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
  .md\:grid-cols-7 {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }
  .md\:grid-cols-8 {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }
  .md\:grid-cols-9 {
    grid-template-columns: repeat(9, minmax(0, 1fr));
  }
  .md\:grid-cols-10 {
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }
  .md\:grid-cols-11 {
    grid-template-columns: repeat(11, minmax(0, 1fr));
  }
  .md\:grid-cols-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
}
@media (min-width: 1330px) {
  .lg\:grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .lg\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .lg\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .lg\:grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .lg\:grid-cols-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
  .lg\:grid-cols-7 {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }
  .lg\:grid-cols-8 {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }
  .lg\:grid-cols-9 {
    grid-template-columns: repeat(9, minmax(0, 1fr));
  }
  .lg\:grid-cols-10 {
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }
  .lg\:grid-cols-11 {
    grid-template-columns: repeat(11, minmax(0, 1fr));
  }
  .lg\:grid-cols-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
}
@media (min-width: 1580px) {
  .xl\:grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .xl\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .xl\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .xl\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .xl\:grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .xl\:grid-cols-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
  .xl\:grid-cols-7 {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }
  .xl\:grid-cols-8 {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }
  .xl\:grid-cols-9 {
    grid-template-columns: repeat(9, minmax(0, 1fr));
  }
  .xl\:grid-cols-10 {
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }
  .xl\:grid-cols-11 {
    grid-template-columns: repeat(11, minmax(0, 1fr));
  }
  .xl\:grid-cols-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
}
/* gap initialisation */
.gap-0 {
  gap: 0;
}

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

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

.gap-1 {
  gap: 1rem;
}

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

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

.gap-2 {
  gap: 2rem;
}

.gap-x-2 {
  -moz-column-gap: 2rem;
       column-gap: 2rem;
}

.gap-y-2 {
  row-gap: 2rem;
}

.gap-3 {
  gap: 3rem;
}

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

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

.gap-4 {
  gap: 4rem;
}

.gap-x-4 {
  -moz-column-gap: 4rem;
       column-gap: 4rem;
}

.gap-y-4 {
  row-gap: 4rem;
}

.gap-5 {
  gap: 5rem;
}

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

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

.gap-6 {
  gap: 6rem;
}

.gap-x-6 {
  -moz-column-gap: 6rem;
       column-gap: 6rem;
}

.gap-y-6 {
  row-gap: 6rem;
}

.gap-8 {
  gap: 8rem;
}

.gap-x-8 {
  -moz-column-gap: 8rem;
       column-gap: 8rem;
}

.gap-y-8 {
  row-gap: 8rem;
}

.gap-10 {
  gap: 10rem;
}

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

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

.gap-16 {
  gap: 1rem;
}

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

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

.gap-20 {
  gap: 1.25rem;
}

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

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

.gap-36 {
  gap: 2.25rem;
}

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

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

/* gap au sein des breakpoints */
@media (min-width: 576px) {
  .sm\:gap-0 {
    gap: 0;
  }
  .sm\:gap-x-0 {
    -moz-column-gap: 0;
         column-gap: 0;
  }
  .sm\:gap-y-0 {
    row-gap: 0;
  }
  .sm\:gap-1 {
    gap: 1rem;
  }
  .sm\:gap-x-1 {
    -moz-column-gap: 1rem;
         column-gap: 1rem;
  }
  .sm\:gap-y-1 {
    row-gap: 1rem;
  }
  .sm\:gap-2 {
    gap: 2rem;
  }
  .sm\:gap-x-2 {
    -moz-column-gap: 2rem;
         column-gap: 2rem;
  }
  .sm\:gap-y-2 {
    row-gap: 2rem;
  }
  .sm\:gap-3 {
    gap: 3rem;
  }
  .sm\:gap-x-3 {
    -moz-column-gap: 3rem;
         column-gap: 3rem;
  }
  .sm\:gap-y-3 {
    row-gap: 3rem;
  }
  .sm\:gap-4 {
    gap: 4rem;
  }
  .sm\:gap-x-4 {
    -moz-column-gap: 4rem;
         column-gap: 4rem;
  }
  .sm\:gap-y-4 {
    row-gap: 4rem;
  }
  .sm\:gap-5 {
    gap: 5rem;
  }
  .sm\:gap-x-5 {
    -moz-column-gap: 5rem;
         column-gap: 5rem;
  }
  .sm\:gap-y-5 {
    row-gap: 5rem;
  }
  .sm\:gap-6 {
    gap: 6rem;
  }
  .sm\:gap-x-6 {
    -moz-column-gap: 6rem;
         column-gap: 6rem;
  }
  .sm\:gap-y-6 {
    row-gap: 6rem;
  }
  .sm\:gap-8 {
    gap: 8rem;
  }
  .sm\:gap-x-8 {
    -moz-column-gap: 8rem;
         column-gap: 8rem;
  }
  .sm\:gap-y-8 {
    row-gap: 8rem;
  }
  .sm\:gap-10 {
    gap: 10rem;
  }
  .sm\:gap-x-10 {
    -moz-column-gap: 10rem;
         column-gap: 10rem;
  }
  .sm\:gap-y-10 {
    row-gap: 10rem;
  }
  .sm\:gap-16 {
    gap: 1rem;
  }
  .sm\:gap-x-16 {
    -moz-column-gap: 1rem;
         column-gap: 1rem;
  }
  .sm\:gap-y-16 {
    row-gap: 1rem;
  }
  .sm\:gap-20 {
    gap: 1.25rem;
  }
  .sm\:gap-x-20 {
    -moz-column-gap: 1.25rem;
         column-gap: 1.25rem;
  }
  .sm\:gap-y-20 {
    row-gap: 1.25rem;
  }
  .sm\:gap-36 {
    gap: 2.25rem;
  }
  .sm\:gap-x-36 {
    -moz-column-gap: 2.25rem;
         column-gap: 2.25rem;
  }
  .sm\:gap-y-36 {
    row-gap: 2.25rem;
  }
}
@media (min-width: 992px) {
  .md\:gap-0 {
    gap: 0;
  }
  .md\:gap-x-0 {
    -moz-column-gap: 0;
         column-gap: 0;
  }
  .md\:gap-y-0 {
    row-gap: 0;
  }
  .md\:gap-1 {
    gap: 1rem;
  }
  .md\:gap-x-1 {
    -moz-column-gap: 1rem;
         column-gap: 1rem;
  }
  .md\:gap-y-1 {
    row-gap: 1rem;
  }
  .md\:gap-2 {
    gap: 2rem;
  }
  .md\:gap-x-2 {
    -moz-column-gap: 2rem;
         column-gap: 2rem;
  }
  .md\:gap-y-2 {
    row-gap: 2rem;
  }
  .md\:gap-3 {
    gap: 3rem;
  }
  .md\:gap-x-3 {
    -moz-column-gap: 3rem;
         column-gap: 3rem;
  }
  .md\:gap-y-3 {
    row-gap: 3rem;
  }
  .md\:gap-4 {
    gap: 4rem;
  }
  .md\:gap-x-4 {
    -moz-column-gap: 4rem;
         column-gap: 4rem;
  }
  .md\:gap-y-4 {
    row-gap: 4rem;
  }
  .md\:gap-5 {
    gap: 5rem;
  }
  .md\:gap-x-5 {
    -moz-column-gap: 5rem;
         column-gap: 5rem;
  }
  .md\:gap-y-5 {
    row-gap: 5rem;
  }
  .md\:gap-6 {
    gap: 6rem;
  }
  .md\:gap-x-6 {
    -moz-column-gap: 6rem;
         column-gap: 6rem;
  }
  .md\:gap-y-6 {
    row-gap: 6rem;
  }
  .md\:gap-8 {
    gap: 8rem;
  }
  .md\:gap-x-8 {
    -moz-column-gap: 8rem;
         column-gap: 8rem;
  }
  .md\:gap-y-8 {
    row-gap: 8rem;
  }
  .md\:gap-10 {
    gap: 10rem;
  }
  .md\:gap-x-10 {
    -moz-column-gap: 10rem;
         column-gap: 10rem;
  }
  .md\:gap-y-10 {
    row-gap: 10rem;
  }
  .md\:gap-16 {
    gap: 1rem;
  }
  .md\:gap-x-16 {
    -moz-column-gap: 1rem;
         column-gap: 1rem;
  }
  .md\:gap-y-16 {
    row-gap: 1rem;
  }
  .md\:gap-20 {
    gap: 1.25rem;
  }
  .md\:gap-x-20 {
    -moz-column-gap: 1.25rem;
         column-gap: 1.25rem;
  }
  .md\:gap-y-20 {
    row-gap: 1.25rem;
  }
  .md\:gap-36 {
    gap: 2.25rem;
  }
  .md\:gap-x-36 {
    -moz-column-gap: 2.25rem;
         column-gap: 2.25rem;
  }
  .md\:gap-y-36 {
    row-gap: 2.25rem;
  }
}
@media (min-width: 1330px) {
  .lg\:gap-0 {
    gap: 0;
  }
  .lg\:gap-x-0 {
    -moz-column-gap: 0;
         column-gap: 0;
  }
  .lg\:gap-y-0 {
    row-gap: 0;
  }
  .lg\:gap-1 {
    gap: 1rem;
  }
  .lg\:gap-x-1 {
    -moz-column-gap: 1rem;
         column-gap: 1rem;
  }
  .lg\:gap-y-1 {
    row-gap: 1rem;
  }
  .lg\:gap-2 {
    gap: 2rem;
  }
  .lg\:gap-x-2 {
    -moz-column-gap: 2rem;
         column-gap: 2rem;
  }
  .lg\:gap-y-2 {
    row-gap: 2rem;
  }
  .lg\:gap-3 {
    gap: 3rem;
  }
  .lg\:gap-x-3 {
    -moz-column-gap: 3rem;
         column-gap: 3rem;
  }
  .lg\:gap-y-3 {
    row-gap: 3rem;
  }
  .lg\:gap-4 {
    gap: 4rem;
  }
  .lg\:gap-x-4 {
    -moz-column-gap: 4rem;
         column-gap: 4rem;
  }
  .lg\:gap-y-4 {
    row-gap: 4rem;
  }
  .lg\:gap-5 {
    gap: 5rem;
  }
  .lg\:gap-x-5 {
    -moz-column-gap: 5rem;
         column-gap: 5rem;
  }
  .lg\:gap-y-5 {
    row-gap: 5rem;
  }
  .lg\:gap-6 {
    gap: 6rem;
  }
  .lg\:gap-x-6 {
    -moz-column-gap: 6rem;
         column-gap: 6rem;
  }
  .lg\:gap-y-6 {
    row-gap: 6rem;
  }
  .lg\:gap-8 {
    gap: 8rem;
  }
  .lg\:gap-x-8 {
    -moz-column-gap: 8rem;
         column-gap: 8rem;
  }
  .lg\:gap-y-8 {
    row-gap: 8rem;
  }
  .lg\:gap-10 {
    gap: 10rem;
  }
  .lg\:gap-x-10 {
    -moz-column-gap: 10rem;
         column-gap: 10rem;
  }
  .lg\:gap-y-10 {
    row-gap: 10rem;
  }
  .lg\:gap-16 {
    gap: 1rem;
  }
  .lg\:gap-x-16 {
    -moz-column-gap: 1rem;
         column-gap: 1rem;
  }
  .lg\:gap-y-16 {
    row-gap: 1rem;
  }
  .lg\:gap-20 {
    gap: 1.25rem;
  }
  .lg\:gap-x-20 {
    -moz-column-gap: 1.25rem;
         column-gap: 1.25rem;
  }
  .lg\:gap-y-20 {
    row-gap: 1.25rem;
  }
  .lg\:gap-36 {
    gap: 2.25rem;
  }
  .lg\:gap-x-36 {
    -moz-column-gap: 2.25rem;
         column-gap: 2.25rem;
  }
  .lg\:gap-y-36 {
    row-gap: 2.25rem;
  }
}
@media (min-width: 1580px) {
  .xl\:gap-0 {
    gap: 0;
  }
  .xl\:gap-x-0 {
    -moz-column-gap: 0;
         column-gap: 0;
  }
  .xl\:gap-y-0 {
    row-gap: 0;
  }
  .xl\:gap-1 {
    gap: 1rem;
  }
  .xl\:gap-x-1 {
    -moz-column-gap: 1rem;
         column-gap: 1rem;
  }
  .xl\:gap-y-1 {
    row-gap: 1rem;
  }
  .xl\:gap-2 {
    gap: 2rem;
  }
  .xl\:gap-x-2 {
    -moz-column-gap: 2rem;
         column-gap: 2rem;
  }
  .xl\:gap-y-2 {
    row-gap: 2rem;
  }
  .xl\:gap-3 {
    gap: 3rem;
  }
  .xl\:gap-x-3 {
    -moz-column-gap: 3rem;
         column-gap: 3rem;
  }
  .xl\:gap-y-3 {
    row-gap: 3rem;
  }
  .xl\:gap-4 {
    gap: 4rem;
  }
  .xl\:gap-x-4 {
    -moz-column-gap: 4rem;
         column-gap: 4rem;
  }
  .xl\:gap-y-4 {
    row-gap: 4rem;
  }
  .xl\:gap-5 {
    gap: 5rem;
  }
  .xl\:gap-x-5 {
    -moz-column-gap: 5rem;
         column-gap: 5rem;
  }
  .xl\:gap-y-5 {
    row-gap: 5rem;
  }
  .xl\:gap-6 {
    gap: 6rem;
  }
  .xl\:gap-x-6 {
    -moz-column-gap: 6rem;
         column-gap: 6rem;
  }
  .xl\:gap-y-6 {
    row-gap: 6rem;
  }
  .xl\:gap-8 {
    gap: 8rem;
  }
  .xl\:gap-x-8 {
    -moz-column-gap: 8rem;
         column-gap: 8rem;
  }
  .xl\:gap-y-8 {
    row-gap: 8rem;
  }
  .xl\:gap-10 {
    gap: 10rem;
  }
  .xl\:gap-x-10 {
    -moz-column-gap: 10rem;
         column-gap: 10rem;
  }
  .xl\:gap-y-10 {
    row-gap: 10rem;
  }
  .xl\:gap-16 {
    gap: 1rem;
  }
  .xl\:gap-x-16 {
    -moz-column-gap: 1rem;
         column-gap: 1rem;
  }
  .xl\:gap-y-16 {
    row-gap: 1rem;
  }
  .xl\:gap-20 {
    gap: 1.25rem;
  }
  .xl\:gap-x-20 {
    -moz-column-gap: 1.25rem;
         column-gap: 1.25rem;
  }
  .xl\:gap-y-20 {
    row-gap: 1.25rem;
  }
  .xl\:gap-36 {
    gap: 2.25rem;
  }
  .xl\:gap-x-36 {
    -moz-column-gap: 2.25rem;
         column-gap: 2.25rem;
  }
  .xl\:gap-y-36 {
    row-gap: 2.25rem;
  }
}
/* grid-items initialisation */
.col-start-1 {
  grid-column-start: 1;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* grid-items au sein des breakpoints */
@media (min-width: 576px) {
  .sm\:col-start-1 {
    grid-column-start: 1;
  }
  .sm\:col-end-1 {
    grid-column-end: 1;
  }
  .sm\:col-span-1 {
    grid-column: span 1/span 1;
  }
  .sm\:col-span-full {
    grid-column: 1/-1;
  }
  .sm\:row-start-1 {
    grid-row-start: 1;
  }
  .sm\:row-end-1 {
    grid-row-end: 1;
  }
  .sm\:row-span-1 {
    grid-row: span 1/span 1;
  }
  .sm\:col-start-2 {
    grid-column-start: 2;
  }
  .sm\:col-end-2 {
    grid-column-end: 2;
  }
  .sm\:col-span-2 {
    grid-column: span 2/span 2;
  }
  .sm\:col-span-full {
    grid-column: 1/-1;
  }
  .sm\:row-start-2 {
    grid-row-start: 2;
  }
  .sm\:row-end-2 {
    grid-row-end: 2;
  }
  .sm\:row-span-2 {
    grid-row: span 2/span 2;
  }
  .sm\:col-start-3 {
    grid-column-start: 3;
  }
  .sm\:col-end-3 {
    grid-column-end: 3;
  }
  .sm\:col-span-3 {
    grid-column: span 3/span 3;
  }
  .sm\:col-span-full {
    grid-column: 1/-1;
  }
  .sm\:row-start-3 {
    grid-row-start: 3;
  }
  .sm\:row-end-3 {
    grid-row-end: 3;
  }
  .sm\:row-span-3 {
    grid-row: span 3/span 3;
  }
  .sm\:col-start-4 {
    grid-column-start: 4;
  }
  .sm\:col-end-4 {
    grid-column-end: 4;
  }
  .sm\:col-span-4 {
    grid-column: span 4/span 4;
  }
  .sm\:col-span-full {
    grid-column: 1/-1;
  }
  .sm\:row-start-4 {
    grid-row-start: 4;
  }
  .sm\:row-end-4 {
    grid-row-end: 4;
  }
  .sm\:row-span-4 {
    grid-row: span 4/span 4;
  }
  .sm\:col-start-5 {
    grid-column-start: 5;
  }
  .sm\:col-end-5 {
    grid-column-end: 5;
  }
  .sm\:col-span-5 {
    grid-column: span 5/span 5;
  }
  .sm\:col-span-full {
    grid-column: 1/-1;
  }
  .sm\:row-start-5 {
    grid-row-start: 5;
  }
  .sm\:row-end-5 {
    grid-row-end: 5;
  }
  .sm\:row-span-5 {
    grid-row: span 5/span 5;
  }
  .sm\:col-start-6 {
    grid-column-start: 6;
  }
  .sm\:col-end-6 {
    grid-column-end: 6;
  }
  .sm\:col-span-6 {
    grid-column: span 6/span 6;
  }
  .sm\:col-span-full {
    grid-column: 1/-1;
  }
  .sm\:row-start-6 {
    grid-row-start: 6;
  }
  .sm\:row-end-6 {
    grid-row-end: 6;
  }
  .sm\:row-span-6 {
    grid-row: span 6/span 6;
  }
  .sm\:col-start-7 {
    grid-column-start: 7;
  }
  .sm\:col-end-7 {
    grid-column-end: 7;
  }
  .sm\:col-span-7 {
    grid-column: span 7/span 7;
  }
  .sm\:col-span-full {
    grid-column: 1/-1;
  }
  .sm\:row-start-7 {
    grid-row-start: 7;
  }
  .sm\:row-end-7 {
    grid-row-end: 7;
  }
  .sm\:row-span-7 {
    grid-row: span 7/span 7;
  }
  .sm\:col-start-8 {
    grid-column-start: 8;
  }
  .sm\:col-end-8 {
    grid-column-end: 8;
  }
  .sm\:col-span-8 {
    grid-column: span 8/span 8;
  }
  .sm\:col-span-full {
    grid-column: 1/-1;
  }
  .sm\:row-start-8 {
    grid-row-start: 8;
  }
  .sm\:row-end-8 {
    grid-row-end: 8;
  }
  .sm\:row-span-8 {
    grid-row: span 8/span 8;
  }
  .sm\:col-start-9 {
    grid-column-start: 9;
  }
  .sm\:col-end-9 {
    grid-column-end: 9;
  }
  .sm\:col-span-9 {
    grid-column: span 9/span 9;
  }
  .sm\:col-span-full {
    grid-column: 1/-1;
  }
  .sm\:row-start-9 {
    grid-row-start: 9;
  }
  .sm\:row-end-9 {
    grid-row-end: 9;
  }
  .sm\:row-span-9 {
    grid-row: span 9/span 9;
  }
  .sm\:col-start-10 {
    grid-column-start: 10;
  }
  .sm\:col-end-10 {
    grid-column-end: 10;
  }
  .sm\:col-span-10 {
    grid-column: span 10/span 10;
  }
  .sm\:col-span-full {
    grid-column: 1/-1;
  }
  .sm\:row-start-10 {
    grid-row-start: 10;
  }
  .sm\:row-end-10 {
    grid-row-end: 10;
  }
  .sm\:row-span-10 {
    grid-row: span 10/span 10;
  }
  .sm\:col-start-11 {
    grid-column-start: 11;
  }
  .sm\:col-end-11 {
    grid-column-end: 11;
  }
  .sm\:col-span-11 {
    grid-column: span 11/span 11;
  }
  .sm\:col-span-full {
    grid-column: 1/-1;
  }
  .sm\:row-start-11 {
    grid-row-start: 11;
  }
  .sm\:row-end-11 {
    grid-row-end: 11;
  }
  .sm\:row-span-11 {
    grid-row: span 11/span 11;
  }
  .sm\:col-start-12 {
    grid-column-start: 12;
  }
  .sm\:col-end-12 {
    grid-column-end: 12;
  }
  .sm\:col-span-12 {
    grid-column: span 12/span 12;
  }
  .sm\:col-span-full {
    grid-column: 1/-1;
  }
  .sm\:row-start-12 {
    grid-row-start: 12;
  }
  .sm\:row-end-12 {
    grid-row-end: 12;
  }
  .sm\:row-span-12 {
    grid-row: span 12/span 12;
  }
}
@media (min-width: 992px) {
  .md\:col-start-1 {
    grid-column-start: 1;
  }
  .md\:col-end-1 {
    grid-column-end: 1;
  }
  .md\:col-span-1 {
    grid-column: span 1/span 1;
  }
  .md\:col-span-full {
    grid-column: 1/-1;
  }
  .md\:row-start-1 {
    grid-row-start: 1;
  }
  .md\:row-end-1 {
    grid-row-end: 1;
  }
  .md\:row-span-1 {
    grid-row: span 1/span 1;
  }
  .md\:col-start-2 {
    grid-column-start: 2;
  }
  .md\:col-end-2 {
    grid-column-end: 2;
  }
  .md\:col-span-2 {
    grid-column: span 2/span 2;
  }
  .md\:col-span-full {
    grid-column: 1/-1;
  }
  .md\:row-start-2 {
    grid-row-start: 2;
  }
  .md\:row-end-2 {
    grid-row-end: 2;
  }
  .md\:row-span-2 {
    grid-row: span 2/span 2;
  }
  .md\:col-start-3 {
    grid-column-start: 3;
  }
  .md\:col-end-3 {
    grid-column-end: 3;
  }
  .md\:col-span-3 {
    grid-column: span 3/span 3;
  }
  .md\:col-span-full {
    grid-column: 1/-1;
  }
  .md\:row-start-3 {
    grid-row-start: 3;
  }
  .md\:row-end-3 {
    grid-row-end: 3;
  }
  .md\:row-span-3 {
    grid-row: span 3/span 3;
  }
  .md\:col-start-4 {
    grid-column-start: 4;
  }
  .md\:col-end-4 {
    grid-column-end: 4;
  }
  .md\:col-span-4 {
    grid-column: span 4/span 4;
  }
  .md\:col-span-full {
    grid-column: 1/-1;
  }
  .md\:row-start-4 {
    grid-row-start: 4;
  }
  .md\:row-end-4 {
    grid-row-end: 4;
  }
  .md\:row-span-4 {
    grid-row: span 4/span 4;
  }
  .md\:col-start-5 {
    grid-column-start: 5;
  }
  .md\:col-end-5 {
    grid-column-end: 5;
  }
  .md\:col-span-5 {
    grid-column: span 5/span 5;
  }
  .md\:col-span-full {
    grid-column: 1/-1;
  }
  .md\:row-start-5 {
    grid-row-start: 5;
  }
  .md\:row-end-5 {
    grid-row-end: 5;
  }
  .md\:row-span-5 {
    grid-row: span 5/span 5;
  }
  .md\:col-start-6 {
    grid-column-start: 6;
  }
  .md\:col-end-6 {
    grid-column-end: 6;
  }
  .md\:col-span-6 {
    grid-column: span 6/span 6;
  }
  .md\:col-span-full {
    grid-column: 1/-1;
  }
  .md\:row-start-6 {
    grid-row-start: 6;
  }
  .md\:row-end-6 {
    grid-row-end: 6;
  }
  .md\:row-span-6 {
    grid-row: span 6/span 6;
  }
  .md\:col-start-7 {
    grid-column-start: 7;
  }
  .md\:col-end-7 {
    grid-column-end: 7;
  }
  .md\:col-span-7 {
    grid-column: span 7/span 7;
  }
  .md\:col-span-full {
    grid-column: 1/-1;
  }
  .md\:row-start-7 {
    grid-row-start: 7;
  }
  .md\:row-end-7 {
    grid-row-end: 7;
  }
  .md\:row-span-7 {
    grid-row: span 7/span 7;
  }
  .md\:col-start-8 {
    grid-column-start: 8;
  }
  .md\:col-end-8 {
    grid-column-end: 8;
  }
  .md\:col-span-8 {
    grid-column: span 8/span 8;
  }
  .md\:col-span-full {
    grid-column: 1/-1;
  }
  .md\:row-start-8 {
    grid-row-start: 8;
  }
  .md\:row-end-8 {
    grid-row-end: 8;
  }
  .md\:row-span-8 {
    grid-row: span 8/span 8;
  }
  .md\:col-start-9 {
    grid-column-start: 9;
  }
  .md\:col-end-9 {
    grid-column-end: 9;
  }
  .md\:col-span-9 {
    grid-column: span 9/span 9;
  }
  .md\:col-span-full {
    grid-column: 1/-1;
  }
  .md\:row-start-9 {
    grid-row-start: 9;
  }
  .md\:row-end-9 {
    grid-row-end: 9;
  }
  .md\:row-span-9 {
    grid-row: span 9/span 9;
  }
  .md\:col-start-10 {
    grid-column-start: 10;
  }
  .md\:col-end-10 {
    grid-column-end: 10;
  }
  .md\:col-span-10 {
    grid-column: span 10/span 10;
  }
  .md\:col-span-full {
    grid-column: 1/-1;
  }
  .md\:row-start-10 {
    grid-row-start: 10;
  }
  .md\:row-end-10 {
    grid-row-end: 10;
  }
  .md\:row-span-10 {
    grid-row: span 10/span 10;
  }
  .md\:col-start-11 {
    grid-column-start: 11;
  }
  .md\:col-end-11 {
    grid-column-end: 11;
  }
  .md\:col-span-11 {
    grid-column: span 11/span 11;
  }
  .md\:col-span-full {
    grid-column: 1/-1;
  }
  .md\:row-start-11 {
    grid-row-start: 11;
  }
  .md\:row-end-11 {
    grid-row-end: 11;
  }
  .md\:row-span-11 {
    grid-row: span 11/span 11;
  }
  .md\:col-start-12 {
    grid-column-start: 12;
  }
  .md\:col-end-12 {
    grid-column-end: 12;
  }
  .md\:col-span-12 {
    grid-column: span 12/span 12;
  }
  .md\:col-span-full {
    grid-column: 1/-1;
  }
  .md\:row-start-12 {
    grid-row-start: 12;
  }
  .md\:row-end-12 {
    grid-row-end: 12;
  }
  .md\:row-span-12 {
    grid-row: span 12/span 12;
  }
}
@media (min-width: 1330px) {
  .lg\:col-start-1 {
    grid-column-start: 1;
  }
  .lg\:col-end-1 {
    grid-column-end: 1;
  }
  .lg\:col-span-1 {
    grid-column: span 1/span 1;
  }
  .lg\:col-span-full {
    grid-column: 1/-1;
  }
  .lg\:row-start-1 {
    grid-row-start: 1;
  }
  .lg\:row-end-1 {
    grid-row-end: 1;
  }
  .lg\:row-span-1 {
    grid-row: span 1/span 1;
  }
  .lg\:col-start-2 {
    grid-column-start: 2;
  }
  .lg\:col-end-2 {
    grid-column-end: 2;
  }
  .lg\:col-span-2 {
    grid-column: span 2/span 2;
  }
  .lg\:col-span-full {
    grid-column: 1/-1;
  }
  .lg\:row-start-2 {
    grid-row-start: 2;
  }
  .lg\:row-end-2 {
    grid-row-end: 2;
  }
  .lg\:row-span-2 {
    grid-row: span 2/span 2;
  }
  .lg\:col-start-3 {
    grid-column-start: 3;
  }
  .lg\:col-end-3 {
    grid-column-end: 3;
  }
  .lg\:col-span-3 {
    grid-column: span 3/span 3;
  }
  .lg\:col-span-full {
    grid-column: 1/-1;
  }
  .lg\:row-start-3 {
    grid-row-start: 3;
  }
  .lg\:row-end-3 {
    grid-row-end: 3;
  }
  .lg\:row-span-3 {
    grid-row: span 3/span 3;
  }
  .lg\:col-start-4 {
    grid-column-start: 4;
  }
  .lg\:col-end-4 {
    grid-column-end: 4;
  }
  .lg\:col-span-4 {
    grid-column: span 4/span 4;
  }
  .lg\:col-span-full {
    grid-column: 1/-1;
  }
  .lg\:row-start-4 {
    grid-row-start: 4;
  }
  .lg\:row-end-4 {
    grid-row-end: 4;
  }
  .lg\:row-span-4 {
    grid-row: span 4/span 4;
  }
  .lg\:col-start-5 {
    grid-column-start: 5;
  }
  .lg\:col-end-5 {
    grid-column-end: 5;
  }
  .lg\:col-span-5 {
    grid-column: span 5/span 5;
  }
  .lg\:col-span-full {
    grid-column: 1/-1;
  }
  .lg\:row-start-5 {
    grid-row-start: 5;
  }
  .lg\:row-end-5 {
    grid-row-end: 5;
  }
  .lg\:row-span-5 {
    grid-row: span 5/span 5;
  }
  .lg\:col-start-6 {
    grid-column-start: 6;
  }
  .lg\:col-end-6 {
    grid-column-end: 6;
  }
  .lg\:col-span-6 {
    grid-column: span 6/span 6;
  }
  .lg\:col-span-full {
    grid-column: 1/-1;
  }
  .lg\:row-start-6 {
    grid-row-start: 6;
  }
  .lg\:row-end-6 {
    grid-row-end: 6;
  }
  .lg\:row-span-6 {
    grid-row: span 6/span 6;
  }
  .lg\:col-start-7 {
    grid-column-start: 7;
  }
  .lg\:col-end-7 {
    grid-column-end: 7;
  }
  .lg\:col-span-7 {
    grid-column: span 7/span 7;
  }
  .lg\:col-span-full {
    grid-column: 1/-1;
  }
  .lg\:row-start-7 {
    grid-row-start: 7;
  }
  .lg\:row-end-7 {
    grid-row-end: 7;
  }
  .lg\:row-span-7 {
    grid-row: span 7/span 7;
  }
  .lg\:col-start-8 {
    grid-column-start: 8;
  }
  .lg\:col-end-8 {
    grid-column-end: 8;
  }
  .lg\:col-span-8 {
    grid-column: span 8/span 8;
  }
  .lg\:col-span-full {
    grid-column: 1/-1;
  }
  .lg\:row-start-8 {
    grid-row-start: 8;
  }
  .lg\:row-end-8 {
    grid-row-end: 8;
  }
  .lg\:row-span-8 {
    grid-row: span 8/span 8;
  }
  .lg\:col-start-9 {
    grid-column-start: 9;
  }
  .lg\:col-end-9 {
    grid-column-end: 9;
  }
  .lg\:col-span-9 {
    grid-column: span 9/span 9;
  }
  .lg\:col-span-full {
    grid-column: 1/-1;
  }
  .lg\:row-start-9 {
    grid-row-start: 9;
  }
  .lg\:row-end-9 {
    grid-row-end: 9;
  }
  .lg\:row-span-9 {
    grid-row: span 9/span 9;
  }
  .lg\:col-start-10 {
    grid-column-start: 10;
  }
  .lg\:col-end-10 {
    grid-column-end: 10;
  }
  .lg\:col-span-10 {
    grid-column: span 10/span 10;
  }
  .lg\:col-span-full {
    grid-column: 1/-1;
  }
  .lg\:row-start-10 {
    grid-row-start: 10;
  }
  .lg\:row-end-10 {
    grid-row-end: 10;
  }
  .lg\:row-span-10 {
    grid-row: span 10/span 10;
  }
  .lg\:col-start-11 {
    grid-column-start: 11;
  }
  .lg\:col-end-11 {
    grid-column-end: 11;
  }
  .lg\:col-span-11 {
    grid-column: span 11/span 11;
  }
  .lg\:col-span-full {
    grid-column: 1/-1;
  }
  .lg\:row-start-11 {
    grid-row-start: 11;
  }
  .lg\:row-end-11 {
    grid-row-end: 11;
  }
  .lg\:row-span-11 {
    grid-row: span 11/span 11;
  }
  .lg\:col-start-12 {
    grid-column-start: 12;
  }
  .lg\:col-end-12 {
    grid-column-end: 12;
  }
  .lg\:col-span-12 {
    grid-column: span 12/span 12;
  }
  .lg\:col-span-full {
    grid-column: 1/-1;
  }
  .lg\:row-start-12 {
    grid-row-start: 12;
  }
  .lg\:row-end-12 {
    grid-row-end: 12;
  }
  .lg\:row-span-12 {
    grid-row: span 12/span 12;
  }
}
@media (min-width: 1580px) {
  .xl\:col-start-1 {
    grid-column-start: 1;
  }
  .xl\:col-end-1 {
    grid-column-end: 1;
  }
  .xl\:col-span-1 {
    grid-column: span 1/span 1;
  }
  .xl\:col-span-full {
    grid-column: 1/-1;
  }
  .xl\:row-start-1 {
    grid-row-start: 1;
  }
  .xl\:row-end-1 {
    grid-row-end: 1;
  }
  .xl\:row-span-1 {
    grid-row: span 1/span 1;
  }
  .xl\:col-start-2 {
    grid-column-start: 2;
  }
  .xl\:col-end-2 {
    grid-column-end: 2;
  }
  .xl\:col-span-2 {
    grid-column: span 2/span 2;
  }
  .xl\:col-span-full {
    grid-column: 1/-1;
  }
  .xl\:row-start-2 {
    grid-row-start: 2;
  }
  .xl\:row-end-2 {
    grid-row-end: 2;
  }
  .xl\:row-span-2 {
    grid-row: span 2/span 2;
  }
  .xl\:col-start-3 {
    grid-column-start: 3;
  }
  .xl\:col-end-3 {
    grid-column-end: 3;
  }
  .xl\:col-span-3 {
    grid-column: span 3/span 3;
  }
  .xl\:col-span-full {
    grid-column: 1/-1;
  }
  .xl\:row-start-3 {
    grid-row-start: 3;
  }
  .xl\:row-end-3 {
    grid-row-end: 3;
  }
  .xl\:row-span-3 {
    grid-row: span 3/span 3;
  }
  .xl\:col-start-4 {
    grid-column-start: 4;
  }
  .xl\:col-end-4 {
    grid-column-end: 4;
  }
  .xl\:col-span-4 {
    grid-column: span 4/span 4;
  }
  .xl\:col-span-full {
    grid-column: 1/-1;
  }
  .xl\:row-start-4 {
    grid-row-start: 4;
  }
  .xl\:row-end-4 {
    grid-row-end: 4;
  }
  .xl\:row-span-4 {
    grid-row: span 4/span 4;
  }
  .xl\:col-start-5 {
    grid-column-start: 5;
  }
  .xl\:col-end-5 {
    grid-column-end: 5;
  }
  .xl\:col-span-5 {
    grid-column: span 5/span 5;
  }
  .xl\:col-span-full {
    grid-column: 1/-1;
  }
  .xl\:row-start-5 {
    grid-row-start: 5;
  }
  .xl\:row-end-5 {
    grid-row-end: 5;
  }
  .xl\:row-span-5 {
    grid-row: span 5/span 5;
  }
  .xl\:col-start-6 {
    grid-column-start: 6;
  }
  .xl\:col-end-6 {
    grid-column-end: 6;
  }
  .xl\:col-span-6 {
    grid-column: span 6/span 6;
  }
  .xl\:col-span-full {
    grid-column: 1/-1;
  }
  .xl\:row-start-6 {
    grid-row-start: 6;
  }
  .xl\:row-end-6 {
    grid-row-end: 6;
  }
  .xl\:row-span-6 {
    grid-row: span 6/span 6;
  }
  .xl\:col-start-7 {
    grid-column-start: 7;
  }
  .xl\:col-end-7 {
    grid-column-end: 7;
  }
  .xl\:col-span-7 {
    grid-column: span 7/span 7;
  }
  .xl\:col-span-full {
    grid-column: 1/-1;
  }
  .xl\:row-start-7 {
    grid-row-start: 7;
  }
  .xl\:row-end-7 {
    grid-row-end: 7;
  }
  .xl\:row-span-7 {
    grid-row: span 7/span 7;
  }
  .xl\:col-start-8 {
    grid-column-start: 8;
  }
  .xl\:col-end-8 {
    grid-column-end: 8;
  }
  .xl\:col-span-8 {
    grid-column: span 8/span 8;
  }
  .xl\:col-span-full {
    grid-column: 1/-1;
  }
  .xl\:row-start-8 {
    grid-row-start: 8;
  }
  .xl\:row-end-8 {
    grid-row-end: 8;
  }
  .xl\:row-span-8 {
    grid-row: span 8/span 8;
  }
  .xl\:col-start-9 {
    grid-column-start: 9;
  }
  .xl\:col-end-9 {
    grid-column-end: 9;
  }
  .xl\:col-span-9 {
    grid-column: span 9/span 9;
  }
  .xl\:col-span-full {
    grid-column: 1/-1;
  }
  .xl\:row-start-9 {
    grid-row-start: 9;
  }
  .xl\:row-end-9 {
    grid-row-end: 9;
  }
  .xl\:row-span-9 {
    grid-row: span 9/span 9;
  }
  .xl\:col-start-10 {
    grid-column-start: 10;
  }
  .xl\:col-end-10 {
    grid-column-end: 10;
  }
  .xl\:col-span-10 {
    grid-column: span 10/span 10;
  }
  .xl\:col-span-full {
    grid-column: 1/-1;
  }
  .xl\:row-start-10 {
    grid-row-start: 10;
  }
  .xl\:row-end-10 {
    grid-row-end: 10;
  }
  .xl\:row-span-10 {
    grid-row: span 10/span 10;
  }
  .xl\:col-start-11 {
    grid-column-start: 11;
  }
  .xl\:col-end-11 {
    grid-column-end: 11;
  }
  .xl\:col-span-11 {
    grid-column: span 11/span 11;
  }
  .xl\:col-span-full {
    grid-column: 1/-1;
  }
  .xl\:row-start-11 {
    grid-row-start: 11;
  }
  .xl\:row-end-11 {
    grid-row-end: 11;
  }
  .xl\:row-span-11 {
    grid-row: span 11/span 11;
  }
  .xl\:col-start-12 {
    grid-column-start: 12;
  }
  .xl\:col-end-12 {
    grid-column-end: 12;
  }
  .xl\:col-span-12 {
    grid-column: span 12/span 12;
  }
  .xl\:col-span-full {
    grid-column: 1/-1;
  }
  .xl\:row-start-12 {
    grid-row-start: 12;
  }
  .xl\:row-end-12 {
    grid-row-end: 12;
  }
  .xl\:row-span-12 {
    grid-row: span 12/span 12;
  }
}
/*
 * basic button component
 */
/*
 * HTML template example:
 * preferably use <button> for buttons !
 * use .button or .btn (for structure) and .btn-- (for variants) (see appearance mixin)
 */
/*
 * button reset
 */
.btn,
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 1.5rem 2.5rem;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: 0.25s;
  transition-property: box-shadow, background-color, color, border;
  text-decoration: none;
  border: none;
  box-shadow: none;
}

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

.btn,
.button {
  font-size: 1.8rem;
}
.btn--small,
.button--small {
  padding: 1rem 1.75rem !important;
  font-size: 1.4rem !important;
}
.btn--small i,
.button--small i {
  font-size: 1.4rem !important;
}
.btn--small span,
.button--small span {
  font-size: 1.4rem !important;
}
.btn--big,
.button--big {
  padding: 2.5rem 3.5rem !important;
  font-size: 1.8rem !important;
}
.btn--big span,
.button--big span {
  font-size: 1.8rem !important;
}
.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;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.btn--unstyled:focus,
.button--unstyled:focus {
  box-shadow: none;
  outline: none;
}

/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  padding: 0.5rem 0.5rem;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}
.hamburger:hover {
  opacity: 1;
}
.hamburger.is-active:hover {
  opacity: 1;
}
.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
  background-color: #1746AF;
}

.hamburger-box {
  width: 3rem;
  height: 2.2rem;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -0.1rem;
}
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 3rem;
  height: 0.2rem;
  background-color: #051028;
  border-radius: 0.4rem;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}
.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block;
}
.hamburger-inner::before {
  top: -1rem;
}
.hamburger-inner::after {
  bottom: -1rem;
}

/*
 * Spring Reverse
 */
.hamburger--spring-r .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring-r .hamburger-inner::after {
  top: -2rem;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0s linear;
}
.hamburger--spring-r .hamburger-inner::before {
  transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring-r.is-active .hamburger-inner {
  transform: translate3d(0, -1rem, 0) rotate(-45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--spring-r.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0s 0.22s linear;
}
.hamburger--spring-r.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(90deg);
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/**
 * Swiper 12.0.1
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2025 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: September 11, 2025
 */
:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}

:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-horizontal {
  touch-action: pan-y;
}

.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d {
  perspective: 1200px;
}
.swiper-3d .swiper-slide,
.swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}

/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none; /* For Firefox */
  -ms-overflow-style: none; /* For Internet Explorer and Edge */
}
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}
.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}
.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  scroll-snap-type: none;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

/* Slide styles start */
/* 3D Shadows */
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}
.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Slide styles end */
.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}

.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
  height: 1px;
  width: var(--swiper-virtual-size);
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
  width: 1px;
  height: var(--swiper-virtual-size);
}

:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-top-offset: 50%;
  --swiper-navigation-sides-offset: 4px;
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  width: var(--swiper-navigation-size);
  height: var(--swiper-navigation-size);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}
.swiper-button-prev.swiper-button-hidden,
.swiper-button-next.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}
.swiper-navigation-disabled .swiper-button-prev,
.swiper-navigation-disabled .swiper-button-next {
  display: none !important;
}
.swiper-button-prev svg,
.swiper-button-next svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transform-origin: center;
  fill: currentColor;
  pointer-events: none;
}

.swiper-button-lock {
  display: none;
}

.swiper-horizontal .swiper-button-prev,
.swiper-horizontal .swiper-button-next,
.swiper-horizontal ~ .swiper-button-prev,
.swiper-horizontal ~ .swiper-button-next {
  top: var(--swiper-navigation-top-offset, 50%);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
}
.swiper-horizontal .swiper-button-prev, .swiper-horizontal ~ .swiper-button-prev, .swiper-horizontal.swiper-rtl .swiper-button-next, .swiper-horizontal.swiper-rtl ~ .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 4px);
  right: auto;
}
.swiper-horizontal .swiper-button-next, .swiper-horizontal ~ .swiper-button-next, .swiper-horizontal.swiper-rtl .swiper-button-prev, .swiper-horizontal.swiper-rtl ~ .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 4px);
  left: auto;
}
.swiper-horizontal .swiper-button-prev .swiper-navigation-icon, .swiper-horizontal ~ .swiper-button-prev .swiper-navigation-icon, .swiper-horizontal.swiper-rtl .swiper-button-next .swiper-navigation-icon, .swiper-horizontal.swiper-rtl ~ .swiper-button-next .swiper-navigation-icon {
  transform: rotate(180deg);
}
.swiper-horizontal.swiper-rtl .swiper-button-prev .swiper-navigation-icon, .swiper-horizontal.swiper-rtl ~ .swiper-button-prev .swiper-navigation-icon {
  transform: rotate(0deg);
}

.swiper-vertical .swiper-button-prev,
.swiper-vertical .swiper-button-next,
.swiper-vertical ~ .swiper-button-prev,
.swiper-vertical ~ .swiper-button-next {
  left: var(--swiper-navigation-top-offset, 50%);
  margin-left: calc(0px - var(--swiper-navigation-size) / 2);
}
.swiper-vertical .swiper-button-prev,
.swiper-vertical ~ .swiper-button-prev {
  top: var(--swiper-navigation-sides-offset, 4px);
  bottom: auto;
  transform: rotate(-90deg);
}
.swiper-vertical .swiper-button-next,
.swiper-vertical ~ .swiper-button-next {
  bottom: var(--swiper-navigation-sides-offset, 4px);
  top: auto;
  transform: rotate(90deg);
}

:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  --swiper-pagination-left: auto;
  --swiper-pagination-right: 8px;
  --swiper-pagination-bottom: 8px;
  --swiper-pagination-top: auto;
  --swiper-pagination-fraction-color: inherit;
  --swiper-pagination-progressbar-bg-color: rgba(0,0,0,0.25);
  --swiper-pagination-progressbar-size: 4px;
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-bullet-width: 8px;
  --swiper-pagination-bullet-height: 8px;
  --swiper-pagination-bullet-border-radius: 50%;
  --swiper-pagination-bullet-inactive-color: #000;
  --swiper-pagination-bullet-inactive-opacity: 0.2;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 4px;
  --swiper-pagination-bullet-vertical-gap: 6px;
  */
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}
.swiper-pagination-disabled > .swiper-pagination, .swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}

/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}
.swiper-pagination-bullet button {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}
.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-vertical > .swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}
.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 200ms transform, 200ms top;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}
.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms left;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms right;
}

/* Fraction */
.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}

/* Progress */
.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}
.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}
.swiper-horizontal > .swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-horizontal, .swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: var(--swiper-pagination-progressbar-size, 4px);
  left: 0;
  top: 0;
}
.swiper-vertical > .swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-vertical, .swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
  width: var(--swiper-pagination-progressbar-size, 4px);
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-lock {
  display: none;
}

:root {
  /*
  --swiper-scrollbar-border-radius: 10px;
  --swiper-scrollbar-top: auto;
  --swiper-scrollbar-bottom: 4px;
  --swiper-scrollbar-left: auto;
  --swiper-scrollbar-right: 4px;
  --swiper-scrollbar-sides-offset: 1%;
  --swiper-scrollbar-bg-color: rgba(0, 0, 0, 0.1);
  --swiper-scrollbar-drag-bg-color: rgba(0, 0, 0, 0.5);
  --swiper-scrollbar-size: 4px;
  */
}

.swiper-scrollbar {
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  position: relative;
  touch-action: none;
  background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1));
}
.swiper-scrollbar-disabled > .swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-disabled {
  display: none !important;
}
.swiper-horizontal > .swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-horizontal {
  position: absolute;
  left: var(--swiper-scrollbar-sides-offset, 1%);
  bottom: var(--swiper-scrollbar-bottom, 4px);
  top: var(--swiper-scrollbar-top, auto);
  z-index: 50;
  height: var(--swiper-scrollbar-size, 4px);
  width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}
.swiper-vertical > .swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-vertical {
  position: absolute;
  left: var(--swiper-scrollbar-left, auto);
  right: var(--swiper-scrollbar-right, 4px);
  top: var(--swiper-scrollbar-sides-offset, 1%);
  z-index: 50;
  width: var(--swiper-scrollbar-size, 4px);
  height: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, 0.5));
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

/* Zoom container styles start */
.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

/* Zoom container styles end */
.swiper-slide-zoomed {
  cursor: move;
  touch-action: none;
}

/* a11y */
.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-thumbs .swiper-slide-thumb-active {
  /* Styles for active thumb slide */
}

.swiper-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-grid > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-grid-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}

.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}
.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}
.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-fade .swiper-slide-active {
  pointer-events: auto;
}
.swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper.swiper-cube {
  overflow: visible;
}

.swiper-cube .swiper-slide {
  pointer-events: none;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}
.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-cube.swiper-rtl .swiper-slide {
  transform-origin: 100% 0;
}
.swiper-cube .swiper-slide-active, .swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-next,
.swiper-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}
.swiper-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}
.swiper-cube .swiper-cube-shadow:before {
  content: "";
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  filter: blur(50px);
}

.swiper-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

/* Cube slide shadows start */
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-top,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-bottom,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-left,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-right {
  z-index: 0;
  backface-visibility: hidden;
}

/* Cube slide shadows end */
.swiper.swiper-flip {
  overflow: visible;
}

.swiper-flip .swiper-slide {
  pointer-events: none;
  backface-visibility: hidden;
  z-index: 1;
}
.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-flip .swiper-slide-active, .swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

/* Flip slide shadows start */
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-top,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-bottom,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-left,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-right {
  z-index: 0;
  backface-visibility: hidden;
}

/* Flip slide shadows end */
.swiper-creative .swiper-slide {
  backface-visibility: hidden;
  overflow: hidden;
  transition-property: transform, opacity, height;
}

.swiper.swiper-cards {
  overflow: visible;
}

.swiper-cards .swiper-slide {
  transform-origin: center bottom;
  backface-visibility: hidden;
  overflow: hidden;
}

@custom-media --small-viewport (width >=576px);
@custom-media --medium-small-viewport (width > 768px);
@custom-media --medium-viewport (width >=992px);
@custom-media --large-viewport (width >=1200px);
.glightbox-container {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999 !important;
  overflow: hidden;
  touch-action: none;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
  backface-visibility: hidden;
  outline: none;
}
.glightbox-container.inactive {
  display: none;
}
.glightbox-container .gcontainer {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 9999;
  overflow: hidden;
}
.glightbox-container .gslider {
  transition: transform 0.4s ease;
  height: 100%;
  left: 0;
  top: 0;
  width: 100%;
  position: relative;
  overflow: hidden;
  display: flex !important;
  justify-content: center;
  align-items: center;
  transform: translate3d(0, 0, 0);
}
.glightbox-container .gslide {
  width: 100%;
  position: absolute;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
}
.glightbox-container .gslide.current {
  opacity: 1;
  z-index: 99999;
  position: relative;
}
.glightbox-container .gslide.prev {
  opacity: 1;
  z-index: 9999;
}
.glightbox-container .gslide-inner-content {
  width: 100%;
}
.glightbox-container .ginner-container {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  max-width: 100%;
  margin: auto;
}
.glightbox-container .ginner-container.gvideo-container {
  width: 100%;
}
@media (--medium-small-viewport) {
  .glightbox-container .ginner-container {
    width: auto;
    height: auto;
    flex-direction: row;
  }
}
.glightbox-container .ginner-container.desc-bottom, .glightbox-container .ginner-container.desc-top {
  flex-direction: column;
}
.glightbox-container .ginner-container.desc-left, .glightbox-container .ginner-container.desc-right {
  max-width: 100% !important;
}
@media (--medium-small-viewport) {
  .glightbox-container .ginner-container.desc-top .gslide-description {
    order: 0;
  }
  .glightbox-container .ginner-container.desc-top .gslide-image,
  .glightbox-container .ginner-container.desc-top .gslide-image img {
    order: 1;
  }
}
@media (--medium-small-viewport) {
  .glightbox-container .ginner-container.desc-left .gslide-description {
    order: 0;
  }
  .glightbox-container .ginner-container.desc-left .gslide-image {
    order: 1;
  }
}

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

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

.gslide-image {
  align-items: center;
}
.gslide-image img {
  max-height: 100vh;
  display: block;
  padding: 0;
  float: none;
  outline: none;
  border: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  max-width: 100vw;
  width: auto;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  touch-action: none;
  margin: auto;
  padding: 2rem;
  min-width: 200px;
  border-radius: 1rem;
}
@media (--medium-small-viewport) {
  .gslide-image img {
    max-height: 97vh;
    max-width: 100%;
  }
}
.desc-top .gslide-image img, .desc-bottom .gslide-image img {
  width: auto;
}
.desc-left .gslide-image img, .desc-right .gslide-image img {
  width: auto;
  max-width: 100%;
}
.gslide-image img.zoomable {
  position: relative;
}
@media (--medium-small-viewport) {
  .gslide-image img.zoomable {
    cursor: zoom-in;
  }
  .zoomed .gslide-image img.zoomable {
    cursor: grab;
  }
}
.gslide-image img.dragging {
  cursor: grabbing !important;
  transition: none;
}

.gslide-video {
  position: relative;
  max-width: 100vh;
  width: 100% !important;
}
.gslide-video .plyr__poster-enabled.plyr--loading .plyr__poster {
  display: none;
}
.gslide-video .gvideo-wrapper {
  width: 100%;
  /* max-width: 160vmin; */
  margin: auto;
}
.gslide-video::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(255, 0, 0, 0.34);
  display: none;
}
.gslide-video.playing::before {
  display: none;
}
.gslide-video.fullscreen {
  max-width: 100% !important;
  min-width: 100%;
  height: 75vh;
}
.gslide-video.fullscreen video {
  max-width: 100% !important;
  width: 100% !important;
}

.gslide-inline {
  background: #fff;
  text-align: left;
  max-height: calc(100vh - 40px);
  overflow: auto;
  max-width: 100%;
  margin: auto;
}
@media (--medium-small-viewport) {
  .gslide-inline {
    max-height: 95vh;
  }
}
.gslide-inline .ginlined-content {
  padding: 20px;
  width: 100%;
}
.gslide-inline .dragging {
  cursor: grabbing !important;
  transition: none;
}

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

.gslide-external {
  display: flex;
  width: 100%;
  min-width: 100%;
  background: #fff;
  padding: 0;
  overflow: auto;
  max-height: 75vh;
  height: 100%;
}
@media (--medium-small-viewport) {
  .gslide-external {
    max-height: 100vh;
  }
}

.gslide-media {
  display: flex;
  width: auto;
}
.zoomed .gslide-media {
  box-shadow: none !important;
}
.desc-top .gslide-media, .desc-bottom .gslide-media {
  margin: 0 auto;
  flex-direction: column;
}

.gslide-description {
  position: relative;
  flex: 1 0 100%;
}
.gslide-description.description-left, .gslide-description.description-right {
  max-width: 100%;
}
@media (--medium-small-viewport) {
  .gslide-description.description-left, .gslide-description.description-right {
    max-width: 275px;
  }
}
.gslide-description.description-bottom, .gslide-description.description-top {
  margin: 0 auto;
  width: 100%;
}
.gslide-description p {
  margin-bottom: 12px;
}
.gslide-description p:last-child {
  margin-bottom: 0;
}
.zoomed .gslide-description {
  display: none;
}

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

/*
 * Description for mobiles
 * something like facebook does the description
 * for the photos
*/
.glightbox-mobile .glightbox-container .gslide-description {
  height: auto !important;
  width: 100%;
  position: absolute;
  bottom: 0;
  padding: 19px 11px;
  max-width: 100vw !important;
  order: 2 !important;
  max-height: 78vh;
  overflow: auto !important;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.75) 100%);
  transition: opacity 0.3s linear;
  padding-bottom: 50px;
}
.glightbox-mobile .glightbox-container .gslide-title {
  color: #fff;
  font-size: 1em;
}
.glightbox-mobile .glightbox-container .gslide-desc {
  color: #a1a1a1;
}
.glightbox-mobile .glightbox-container .gslide-desc a {
  color: #fff;
  font-weight: bold;
}
.glightbox-mobile .glightbox-container .gslide-desc * {
  color: inherit;
}
.glightbox-mobile .glightbox-container .gslide-desc .desc-more {
  color: #fff;
  opacity: 0.4;
}

.gdesc-open .gslide-media {
  transition: opacity 0.5s ease;
  opacity: 0.4;
}
.gdesc-open .gdesc-inner {
  padding-bottom: 30px;
}

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

.greset {
  transition: all 0.3s ease;
}

.gabsolute {
  position: absolute;
}

.grelative {
  position: relative;
}

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

.glightbox-open {
  overflow: hidden;
}
@media (--medium-small-viewport) {
  .glightbox-open {
    height: auto;
  }
}

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

.goverlay {
  width: 100%;
  height: calc(100vh + 1px);
  position: fixed;
  top: -1px;
  left: 0;
  background: rgba(5, 16, 40, 0.85);
  will-change: opacity;
}
.glightbox-mobile .goverlay {
  background: rgba(5, 16, 40, 0.85);
}
@media (--medium-small-viewport) {
  .goverlay {
    background: rgba(5, 16, 40, 0.85);
  }
}
@media screen and (max-height: 420px) {
  .goverlay {
    background: rgba(5, 16, 40, 0.85);
  }
}

.gprev,
.gnext,
.gclose {
  z-index: 99999;
  cursor: pointer;
  width: 26px;
  height: 44px;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.gprev svg,
.gnext svg,
.gclose svg {
  display: block;
  width: 25px;
  height: auto;
  margin: 0;
  padding: 0;
}
.gprev.disabled,
.gnext.disabled,
.gclose.disabled {
  opacity: 0.1;
}
.gprev .garrow,
.gnext .garrow,
.gclose .garrow {
  stroke: #fff;
}

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

iframe.wait-autoplay {
  opacity: 0;
}

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

/*Skin */
@media (--medium-small-viewport) {
  .glightbox-clean .gslide-media {
    box-shadow: 1px 2px 9px 0px rgba(0, 0, 0, 0.65);
  }
}
.glightbox-clean .gslide-description {
  background: #fff;
}
.glightbox-clean .gdesc-inner {
  padding: 22px 20px;
}
@media (--medium-small-viewport) {
  .glightbox-clean .description-left .gdesc-inner,
  .glightbox-clean .description-right .gdesc-inner {
    position: absolute;
    height: 100%;
    overflow-y: auto;
  }
}
.glightbox-clean .gslide-title {
  font-size: 1em;
  font-weight: normal;
  color: #000;
  margin-bottom: 19px;
  line-height: 1.4em;
}
.glightbox-clean .gslide-desc {
  font-size: 0.86em;
  margin-bottom: 0;
  line-height: 1.4em;
}
.glightbox-clean .gslide-video {
  background: #000;
}
.glightbox-clean .gprev,
.glightbox-clean .gnext,
.glightbox-clean .gclose {
  border-radius: 4px;
}
@media (--medium-small-viewport) {
  .glightbox-clean .gprev:hover path,
  .glightbox-clean .gnext:hover path,
  .glightbox-clean .gclose:hover path {
    fill: #1746AF;
  }
}
.glightbox-clean .gprev path,
.glightbox-clean .gnext path,
.glightbox-clean .gclose path {
  fill: #fff;
  transition: all 0.3s ease;
}
.glightbox-clean .gprev:hover path,
.glightbox-clean .gnext:hover path,
.glightbox-clean .gclose:hover path {
  fill: #1746AF;
}
.glightbox-clean .gprev {
  position: absolute;
  top: 90%;
  left: 30px;
  width: 40px;
  height: 50px;
}
@media (min-width: 992px) {
  .glightbox-clean .gprev {
    top: 50%;
  }
}
.glightbox-clean .gnext {
  position: absolute;
  top: 90%;
  right: 30px;
  width: 40px;
  height: 50px;
}
@media (min-width: 992px) {
  .glightbox-clean .gnext {
    top: 50%;
  }
}
.glightbox-clean .gclose {
  width: 35px;
  height: 35px;
  top: 15px;
  right: 10px;
  position: absolute;
}
.glightbox-clean .gclose svg {
  width: 18px;
  height: auto;
}
@media (--medium-viewport) {
  .glightbox-clean .gclose {
    opacity: 0.7;
    right: 20px;
  }
}
.glightbox-clean .gclose:hover {
  opacity: 1;
}

/*CSS Animations*/
.gfadeIn {
  animation: gfadeIn 0.5s ease;
}

.gfadeOut {
  animation: gfadeOut 0.5s ease;
}

.gslideOutLeft {
  animation: gslideOutLeft 0.3s ease;
}

.gslideInLeft {
  animation: gslideInLeft 0.3s ease;
}

.gslideOutRight {
  animation: gslideOutRight 0.3s ease;
}

.gslideInRight {
  animation: gslideInRight 0.3s ease;
}

.gzoomIn {
  animation: gzoomIn 0.5s ease;
}

.gzoomOut {
  animation: gzoomOut 0.5s ease;
}

@keyframes lightboxLoader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes gfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes gfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes gslideInLeft {
  from {
    opacity: 0;
    transform: translate3d(-60%, 0, 0);
  }
  to {
    visibility: visible;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes gslideOutLeft {
  from {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-60%, 0, 0);
    opacity: 0;
    visibility: hidden;
  }
}
@keyframes gslideInRight {
  from {
    opacity: 0;
    visibility: visible;
    transform: translate3d(60%, 0, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes gslideOutRight {
  from {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(60%, 0, 0);
    opacity: 0;
  }
}
@keyframes gzoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 1;
  }
}
@keyframes gzoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
@font-face {
  font-family: "Rethink Sans";
  src: url("../fonts/rethink-sans/RethinkSans-Regular.woff2") format("woff2"), url("../fonts/rethink-sans/RethinkSans-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Rethink Sans";
  src: url("../fonts/rethink-sans/RethinkSans-Italic.woff2") format("woff2"), url("../fonts/rethink-sans/RethinkSans-Italic.woff") format("woff");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Rethink Sans";
  src: url("../fonts/rethink-sans/RethinkSans-SemiBold.woff2") format("woff2"), url("../fonts/rethink-sans/RethinkSans-SemiBold.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("../fonts/plusjarkatasans/PlusJakartaSans-Light.woff2") format("woff2"), url("../fonts/plusjarkatasans/PlusJakartaSans-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("../fonts/plusjarkatasans/PlusJakartaSans-Medium.woff2") format("woff2"), url("../fonts/plusjarkatasans/PlusJakartaSans-Medium.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("../fonts/plusjarkatasans/PlusJakartaSans-Italic.woff2") format("woff2"), url("../fonts/plusjarkatasans/PlusJakartaSans-Italic.woff") format("woff");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("../fonts/plusjarkatasans/PlusJakartaSans-Bold.woff2") format("woff2"), url("../fonts/plusjarkatasans/PlusJakartaSans-Bold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
.container-extralarge, .container-large, .container, .container-small, .container-tiny {
  width: 100%;
  position: relative;
  margin: 0 auto;
  padding: 0 3rem;
}
@media (min-width: 992px) {
  .container-extralarge, .container-large, .container, .container-small, .container-tiny {
    padding: 0 4rem;
  }
}

.container-tiny {
  max-width: 84rem;
}

.container-small {
  max-width: 105rem;
}

.container {
  max-width: 117rem;
}

.container-large {
  max-width: 144rem;
}

.container-extralarge {
  max-width: 168rem;
}

.is-fixed {
  width: 100%;
  height: 100%;
  position: fixed;
  overflow: hidden;
}

.link {
  cursor: pointer;
}

html {
  display: flex;
  flex-direction: column;
  scrollbar-gutter: stable;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  font-weight: 400;
  color: #262121;
  font-size: clamp(1.7rem, 1.8vw, 2rem);
  line-height: clamp(2.8rem, 3.3vw, 3.5rem);
  letter-spacing: -0.035rem;
}

.main {
  flex: 1 1 auto;
  overflow: hidden;
}

h1, .h1-like {
  font: 500 clamp(4rem, 5vw, 5.5rem) "Rethink Sans", Arial, sans-serif;
  line-height: clamp(5rem, 6.5vw, 6.5rem);
  color: #262121;
  margin-bottom: clamp(3rem, 4vw, 4rem);
  letter-spacing: -0.2rem;
}

h2, .h2-like {
  font: 500 clamp(4rem, 4vw, 5rem) "Rethink Sans", Arial, sans-serif;
  line-height: clamp(5rem, 5vw, 6rem);
  color: #262121;
  letter-spacing: -0.2rem;
  margin-bottom: clamp(2rem, 2vw, 2.5rem);
}

h3, .h3-like {
  font: 400 clamp(2rem, 2.5vw, 3rem) "Rethink Sans", Arial, sans-serif;
  line-height: clamp(3rem, 3.5vw, 4rem);
  letter-spacing: -0.1rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  color: #051028;
}

h4, .h4-like {
  font: 400 1.8rem "Rethink Sans", Arial, sans-serif;
  color: #262121;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
@media (min-width: 992px) {
  h4, .h4-like {
    font-size: 2.3rem;
  }
}

h5, .h5-like {
  font: 400 1.8rem "Rethink Sans", Arial, sans-serif;
  color: #262121;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  h5, .h5-like {
    font-size: 2.3rem;
  }
}

h6, .h6-like {
  font: 400 1.8rem "Rethink Sans", Arial, sans-serif;
  color: #262121;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  h6, .h6-like {
    font-size: 2.3rem;
  }
}

@media (min-width: 576px) {
  .has--double {
    display: flex;
    flex-direction: column;
  }
}
.has--double span:nth-child(2) {
  font-weight: 400;
}

.subtitle {
  position: relative;
  color: #1746AF;
  text-transform: uppercase;
  font-size: 1.2rem;
  line-height: 2rem;
  letter-spacing: 0.3rem;
  display: inline-flex;
  align-items: center;
  border-radius: 3rem;
  padding: 0.5rem 0;
}
.subtitle:before {
  content: "";
  width: 1.75rem;
  height: 0.1rem;
  background: #1746AF;
  display: block;
  margin-right: 1.25rem;
  margin-top: 0.2rem;
}
@media (min-width: 992px) {
  .subtitle {
    margin-bottom: 1rem;
    padding-left: 2rem;
  }
}

b, strong {
  font-weight: 600;
}

ul, ol {
  padding-left: 4rem;
}
ul li, ol li {
  margin-bottom: 0.95rem;
}

figure {
  margin: 3rem 0;
}

figcaption {
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 2.5rem;
  font-size: 1.5rem;
  text-align: center;
  color: rgba(38, 33, 33, 0.75);
  transition: opacity 0.5s ease-in-out;
}

hr {
  width: 100%;
  margin: 3rem 0;
  background-color: #262121;
}

p a:not([class*=btn]),
p .link:not([class*=btn]), ul a:not([class*=btn]),
ul .link:not([class*=btn]), ol a:not([class*=btn]),
ol .link:not([class*=btn]), label a:not([class*=btn]),
label .link:not([class*=btn]) {
  color: #165aed;
  transition: all 0.3s ease;
}
p a:not([class*=btn]):hover, p a:not([class*=btn]):focus, p a:not([class*=btn]):active,
p .link:not([class*=btn]):hover,
p .link:not([class*=btn]):focus,
p .link:not([class*=btn]):active, ul a:not([class*=btn]):hover, ul a:not([class*=btn]):focus, ul a:not([class*=btn]):active,
ul .link:not([class*=btn]):hover,
ul .link:not([class*=btn]):focus,
ul .link:not([class*=btn]):active, ol a:not([class*=btn]):hover, ol a:not([class*=btn]):focus, ol a:not([class*=btn]):active,
ol .link:not([class*=btn]):hover,
ol .link:not([class*=btn]):focus,
ol .link:not([class*=btn]):active, label a:not([class*=btn]):hover, label a:not([class*=btn]):focus, label a:not([class*=btn]):active,
label .link:not([class*=btn]):hover,
label .link:not([class*=btn]):focus,
label .link:not([class*=btn]):active {
  color: rgb(22.9468525896, 90.6705179283, 237.0731474104);
}

blockquote {
  margin: 3rem 0;
  font: 300 2.5rem "Plus Jakarta Sans", Arial, sans-serif;
  line-height: 1.6;
  color: #051028;
}
blockquote:before {
  color: #051028;
}

::-moz-selection {
  background-color: #1746AF;
  color: #ffffff;
}

::selection {
  background-color: #1746AF;
  color: #ffffff;
}

.grecaptcha-badge {
  display: none;
}

.global--cta {
  margin-top: clamp(3rem, 3vw, 4rem);
}

.contact__buttons {
  margin-top: 3rem;
}
@media (min-width: 992px) {
  .contact__buttons {
    margin-top: 4rem;
  }
}

.btn {
  position: relative;
  font-family: "Rethink Sans", Arial, sans-serif;
  border-radius: 3rem;
  padding: 0.75rem 2.5rem;
}
.btn:hover, .btn:focus, .btn:active {
  text-decoration: none;
}
.btn span {
  font-size: 1.6rem;
  font-weight: 600;
}

.btn--sm {
  padding: 0.5rem 2rem;
}
.btn--sm span {
  font-size: 1.4rem;
}

[class*=btn--gradient] {
  overflow: hidden;
  background-size: 200% 100%;
  background-position: 0 0;
  transition: all 0.3s ease;
}
[class*=btn--gradient]:hover, [class*=btn--gradient]:focus, [class*=btn--gradient]:active {
  background-position: 100% 0;
}

.btn--gradient-blue {
  color: #ffffff;
  background-color: #5B6768;
  background-image: linear-gradient(90deg, #1746AF 0%, #165aed 50%, #165aed 100%);
}
.btn--gradient-blue:hover, .btn--gradient-blue:focus, .btn--gradient-blue:active {
  color: #ffffff;
}

[class*=btn--ghost] {
  background-color: transparent;
}

.btn--ghost {
  color: #ffffff;
}
.btn--ghost:hover, .btn--ghost:focus, .btn--ghost:active {
  color: #1746AF;
  background-color: #ffffff;
}

.btn--ghost-blue {
  color: #1746AF;
  border: 0.1rem solid #1746AF;
}
.btn--ghost-blue:hover, .btn--ghost-blue:focus, .btn--ghost-blue:active {
  color: #ffffff;
  background-color: #1746AF;
  border-color: #1746AF;
}
.btn--ghost-blue .icon--wrapper {
  background-color: #1746AF;
}

.animate-in {
  animation: fadeIn 0.75s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.section--home-hero {
  position: relative;
  padding: 10rem 0;
}
@media (min-width: 992px) {
  .section--home-hero {
    height: calc(100vh - 12vw);
    min-height: 80rem;
  }
}
.section--home-hero .container {
  height: 100%;
}

.home-hero--image {
  pointer-events: none;
  position: absolute;
  inset: 0;
}
.home-hero--image::before {
  content: "";
  background-image: linear-gradient(0, #051028 40%, #ffffff 95%, #ffffff);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.75;
  background-position: 0 0;
  background-size: 150% 100%;
  pointer-events: none;
  z-index: 1;
}
.home-hero--image::after {
  content: "";
  position: absolute;
  bottom: -0.05rem;
  left: -15rem;
  right: -15rem;
  height: 20rem;
  background-image: url("../images/ora-groupe-decoration-hero.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 2;
  pointer-events: none;
}
.home-hero--image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  position: relative;
  z-index: 0;
}

.home-hero--content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.home-hero--content__top {
  margin-top: auto;
}

.home-hero--content__subtitle {
  text-transform: uppercase;
  color: #1746AF;
  font: 700 clamp(1.1rem, 1.2vw, 1.4rem) "Rethink Sans", Arial, sans-serif;
  margin-bottom: clamp(1.5rem, 2vw, 3rem);
  letter-spacing: 0.2rem;
  visibility: hidden;
}
@media (min-width: 576px) {
  .home-hero--content__subtitle {
    text-align: center;
  }
}

.home-hero--content__title {
  font: 600 clamp(5rem, 6vw, 8rem) "Rethink Sans", Arial, sans-serif;
  line-height: clamp(5rem, 5vw, 7rem);
  color: #ffffff;
  letter-spacing: -0.3rem;
  visibility: hidden;
}
@media (min-width: 576px) {
  .home-hero--content__title {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

.home-hero--content__description {
  margin-top: 2.5rem;
  visibility: hidden;
  margin-bottom: 2.5rem;
}
@media (min-width: 576px) {
  .home-hero--content__description {
    text-align: center;
    margin: 2.5rem auto 5rem;
  }
}
@media (min-width: 1330px) {
  .home-hero--content__description {
    margin-bottom: 0;
  }
}
.home-hero--content__description h1 {
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1.8rem, 1.6vw, 2.2rem);
  line-height: clamp(2.8rem, 2.6vw, 3.6rem);
  margin-bottom: 0;
  font-style: italic;
  letter-spacing: -0.1rem;
}

.home-hero--content__scroll-indicator {
  display: flex;
  margin-left: auto;
  margin-right: auto;
  margin-top: auto;
  visibility: hidden;
  position: relative;
}
.home-hero--content__scroll-indicator a {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: flex;
}

.home-hero--content__scroll-indicator--wrapper {
  position: relative;
  width: 16rem;
  height: 16rem;
}

.home-hero--content__scroll-indicator--svg {
  width: 100%;
  height: 100%;
}

.home-hero--content__scroll-indicator--bg {
  fill: #ffffff;
}

.home-hero--content__scroll-indicator--text {
  transform-origin: 50% 50%;
  animation: rotateText 12s linear infinite;
  will-change: transform;
}
.home-hero--content__scroll-indicator--text text {
  font-family: inherit;
  font-size: 12.5px;
  text-transform: uppercase;
  fill: #ffffff;
  letter-spacing: 2px;
}

/* Safari: améliore le rendu et évite certains glitches */
@supports (-webkit-touch-callout: none) {
  .home-hero--content__scroll-indicator--text text {
    text-rendering: geometricPrecision;
  }
}
@keyframes rotateText {
  to {
    transform: rotate(360deg);
  }
}
.home-hero--content__scroll-indicator--icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-hero--content__scroll-indicator--dot {
  width: 1.8rem;
  height: 3rem;
  border-radius: 99.9rem;
  border: 0.2rem solid #1746AF;
  position: relative;
}
.home-hero--content__scroll-indicator--dot::before {
  content: "";
  position: absolute;
  top: 0.4rem;
  left: 50%;
  width: 0.4rem;
  height: 0.8rem;
  border-radius: 99.9rem;
  background: #1746AF;
  transform: translateX(-50%);
  animation: dotScroll 1.4s ease-in-out infinite;
}

@keyframes dotScroll {
  0% {
    transform: translate(-50%, 0);
    opacity: 1;
  }
  70% {
    transform: translate(-50%, 8px);
    opacity: 0;
  }
  100% {
    transform: translate(-50%, 0);
    opacity: 0;
  }
}
.home-hero--content__csr {
  z-index: 1;
}
@media (max-width: 991px) {
  .home-hero--content__csr {
    width: 100%;
    position: relative;
    max-width: 26.5rem;
    margin: 5rem auto;
  }
}
@media (min-width: 992px) {
  .home-hero--content__csr {
    position: absolute;
    bottom: 14.5rem;
    right: 2.5rem;
  }
}
@media (min-width: 1580px) {
  .home-hero--content__csr {
    bottom: 17.5rem;
    right: 5rem;
  }
}

.home-hero--content__csr--left {
  width: 26.5rem;
  padding: 2.5rem;
  border-radius: 1rem;
  color: #ffffff;
  background: rgba(5, 16, 40, 0.4);
  backdrop-filter: blur(2rem);
  transition: all 0.5s ease;
}

.home-hero--content__csr--numbers {
  display: flex;
  flex-direction: column;
}
.home-hero--content__csr--numbers span:nth-child(1) {
  font-size: 2.8rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.home-hero--content__csr--numbers span:nth-child(2) {
  font-size: 1.3rem;
  line-height: 2.3rem;
  color: rgba(255, 255, 255, 0.8);
}

.home-hero--content__csr--list {
  display: flex;
  flex-direction: column;
  margin-top: 2rem;
}
@media (max-width: 991px) {
  .home-hero--content__csr--list {
    display: none;
  }
}
.home-hero--content__csr--list span {
  font-size: 1.4rem;
  line-height: 2.4rem;
}
.home-hero--content__csr--list svg {
  height: 1.5rem;
  width: 1.5rem;
  margin-right: 0.5rem;
  color: #0e9e0e;
}

.home-hero--content__csr--right {
  position: absolute;
  top: -3rem;
  width: 11rem;
  right: -1rem;
}

.section--home-introduction {
  padding: 5rem 0;
}
@media (min-width: 992px) {
  .section--home-introduction {
    padding: 10rem 0;
  }
}

.home-introduction--content__description p {
  font: 400 clamp(3rem, 4vw, 4.5rem) "Rethink Sans", Arial, sans-serif;
  line-height: clamp(4.5rem, 6vw, 6.5rem);
  letter-spacing: -0.2rem;
  margin-bottom: clamp(5rem, 6vw, 10rem);
}

.home-introduction--expertise {
  padding: 4rem 0;
  border-top: 0.1rem solid rgba(5, 16, 40, 0.2);
}
.home-introduction--expertise:last-of-type {
  border-bottom: 0.1rem solid rgba(5, 16, 40, 0.2);
}

.home-introduction--expertise__number {
  font-size: 5rem;
}

@media (max-width: 991px) {
  .home-introduction--expertise__right {
    padding-top: 3rem;
  }
}
@media (min-width: 992px) {
  .home-introduction--expertise__right {
    padding-left: 6rem;
    border-left: 0.1rem solid rgba(5, 16, 40, 0.2);
  }
}

.home-introduction--expertise__title {
  margin-bottom: 2rem;
  font: 600 5rem "Rethink Sans", Arial, sans-serif;
  font-style: italic;
  letter-spacing: -0.2rem;
  color: #1746AF;
}

.home-introduction--expertise__description {
  color: rgba(38, 33, 33, 0.7);
  font-size: clamp(2rem, 2vw, 2.4rem);
  line-height: clamp(3.4rem, 3vw, 3.4rem);
  margin-bottom: clamp(3rem, 3vw, 6rem);
  font-style: italic;
}
@media (min-width: 992px) {
  .home-introduction--expertise__description {
    padding-right: 6rem;
  }
}

.home-introduction--expertise-expertises {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.home-introduction--expertise-expertise {
  align-self: flex-start;
}

.home-introduction--expertise-expertise__title {
  font: 400 clamp(2.75rem, 3vw, 3.25rem) "Rethink Sans", Arial, sans-serif;
  letter-spacing: -0.1rem;
  padding: 1rem;
}
@media (min-width: 992px) {
  .home-introduction--expertise-expertise__title {
    padding: 1rem 4rem;
    transition: padding-left ease 0.5s;
  }
  .home-introduction--expertise-expertise__title:hover {
    padding-left: 6rem;
  }
}
.home-introduction--expertise-expertise__title.is-active {
  position: relative;
  z-index: 100;
  mix-blend-mode: exclusion;
  color: #ffffff;
}

.home-introduction--expertise-expertise__image {
  position: fixed;
  top: 0;
  left: 0;
  width: 45rem;
  height: 35rem;
  pointer-events: none;
  background-size: cover;
  background-position: center;
  border-radius: 1rem;
  opacity: 0;
  transform: translate3d(0, 0, 0) scale(0.96);
  z-index: 50;
  overflow: hidden;
}
@media (max-width: 991px) {
  .home-introduction--expertise-expertise__image {
    display: none;
  }
}

.section--home-keyfigures {
  padding: 0 0 5rem;
  background-color: #E3EBFB;
}

.section--home-logos {
  padding: 5rem 0;
}
@media (min-width: 992px) {
  .section--home-logos {
    padding: 10rem 0;
  }
}

.home-logos__content {
  text-align: center;
  margin-bottom: 5rem;
}
@media (min-width: 992px) {
  .home-logos__content {
    margin-bottom: 10rem;
  }
}

.home-logos__marquee::before,
.home-logos__marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 8rem;
  z-index: 2;
  pointer-events: none;
}

.home-logos__marquee::before {
  left: 0;
  background: linear-gradient(to right, #ffffff, transparent);
}

.home-logos__marquee::after {
  right: 0;
  background: linear-gradient(to left, #ffffff, transparent);
}

.home-logos__item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 5rem;
  width: 15rem;
  padding-right: 2rem;
}
@media (min-width: 992px) {
  .home-logos__item {
    height: 8rem;
    width: 25rem;
    padding-right: 8rem;
  }
}

.home-logos__item img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.section--home-agencies {
  position: relative;
  padding: 5rem 0 10rem;
}
@media (min-width: 992px) {
  .section--home-agencies {
    padding: 15rem 0 20rem;
  }
}

.home-agencies--image {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.home-agencies--image:before {
  content: "";
  background-color: #051028;
  background-image: linear-gradient(-210deg, #051028 40%, rgba(23, 70, 175, 0.75) 80%, #1746AF);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.9;
  background-position: 0 0;
  background-size: 150% 100%;
}
.home-agencies--image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom;
     object-position: bottom;
  opacity: 1;
}

.home-agencies--content {
  margin-bottom: 5rem;
}
@media (min-width: 992px) {
  .home-agencies--content {
    margin-bottom: 10rem;
  }
}

.home-agencies--content__subtitle {
  color: #165aed;
}

.home-agencies--content__title {
  color: #ffffff;
}

.home-agencies--content__description {
  color: #ffffff;
}
.home-agencies--content__description h3 {
  color: #ffffff;
}

@media (min-width: 992px) {
  .home-agencies--content__right {
    display: flex;
    align-items: end;
    justify-content: flex-end;
  }
}

.home-agencies--list {
  padding: 0 3rem;
}
@media (min-width: 992px) {
  .home-agencies--list {
    padding: 0 5rem;
  }
}

.home-agencies--slider {
  overflow: visible;
  clip-path: inset(-100% -100% -100% 0);
}

.home-agencies--slider__navigation {
  display: flex;
  margin-top: 4rem;
}

.home-agencies--slider__navigation--button.slider--navigation__button {
  color: #ffffff;
  border: 0.1rem solid #ffffff;
}
.home-agencies--slider__navigation--button.slider--navigation__button:hover {
  color: #1746AF;
  border-color: #1746AF;
}
.home-agencies--slider__navigation--button.slider--navigation__button.swiper-button-disabled:hover {
  color: #ffffff;
  border-color: #ffffff;
  opacity: 0.3;
}

.home-agencies--slider__pagination.swiper-pagination-horizontal.swiper-pagination-bullets {
  bottom: 4rem;
}
@media (min-width: 992px) {
  .home-agencies--slider__pagination.swiper-pagination-horizontal.swiper-pagination-bullets {
    bottom: 10rem;
  }
}
.home-agencies--slider__pagination.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  width: 1rem;
  height: 1rem;
  background: #ffffff;
  opacity: 0.5;
  margin: 0 1rem;
  transition: opacity 0.15s ease;
}
.home-agencies--slider__pagination.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet:hover {
  opacity: 0.75;
}
.home-agencies--slider__pagination.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet-active {
  opacity: 1;
  background: #165aed;
}

.section--home-channels {
  position: relative;
  padding: 5rem 0;
  background-color: #E3EBFB;
}
@media (min-width: 992px) {
  .section--home-channels {
    padding: 10rem 0;
  }
}

.home-channels__content {
  text-align: center;
  margin-bottom: 5rem;
}

@media (min-width: 992px) {
  .home-channels__description {
    margin: 0 auto;
    max-width: 70%;
  }
}

.home-channels__items--wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: 0 auto;
}

.home-channels__items {
  position: relative;
  overflow: hidden;
}
.home-channels__items::before, .home-channels__items::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 7.5rem;
  z-index: 2;
  pointer-events: none;
}
.home-channels__items::before {
  left: 0;
  background: linear-gradient(to right, #E3EBFB 0%, rgba(227, 235, 251, 0) 100%);
}
.home-channels__items::after {
  right: 0;
  background: linear-gradient(to left, #E3EBFB 0%, rgba(227, 235, 251, 0) 100%);
}

.home-channels__track {
  position: relative;
  display: inline-flex;
  gap: 2rem;
  white-space: nowrap;
  overflow-x: visible;
  flex-wrap: nowrap;
}
.home-channels__track:first-of-type {
  margin-left: -25rem;
}

.home-channels__item {
  display: inline-flex;
  align-items: center;
  padding: 1rem 1.5rem;
  border-radius: 10rem;
  border: 0.1rem solid rgba(22, 90, 237, 0.2);
  background-color: rgba(255, 255, 255, 0.6);
}
@media (min-width: 992px) {
  .home-channels__item {
    padding: 1.5rem 2.5rem;
  }
}

.home-channels__item-icon {
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.5rem;
  flex-shrink: 0;
}
@media (min-width: 992px) {
  .home-channels__item-icon {
    width: 3.2rem;
    height: 3.2rem;
  }
}
.home-channels__item-icon img {
  max-width: 100%;
  max-height: 100%;
  display: block;
}

.home-channels__item-text {
  font: 400 clamp(1.6rem, 2vw, 2.2rem) "Rethink Sans", Arial, sans-serif;
  font-style: italic;
  white-space: nowrap;
}

.home-channels__image {
  margin-top: 5rem;
  text-align: center;
}
.home-channels__image picture img {
  border-radius: 2rem;
}

.section--home-about {
  padding: 5rem 0;
}
@media (min-width: 992px) {
  .section--home-about {
    padding: 10rem 0;
  }
}

.home-about--content {
  margin-bottom: 3rem;
}
@media (min-width: 992px) {
  .home-about--content {
    margin-bottom: 4rem;
  }
}

.home-about--content__description {
  margin-bottom: 2.5rem;
}

.home-about--content__benefits {
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 992px) {
  .home-about--content__benefits {
    padding-left: 2rem;
  }
}
.home-about--content__benefits li {
  margin-bottom: 1.5rem;
}
.home-about--content__benefits li:last-of-type {
  margin-bottom: 0;
}
.home-about--content__benefits li span:nth-child(1) {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0.25rem;
  color: #165aed;
  border-radius: 50%;
  border: 0.2rem solid #165aed;
  margin-right: 1rem;
}
.home-about--content__benefits li span:nth-child(1) svg {
  width: 1.5rem;
  height: 1.5rem;
}
.home-about--content__benefits li span:nth-child(2) {
  font-family: "Rethink Sans", Arial, sans-serif;
  font-size: clamp(1.6rem, 2vw, 1.8rem);
  line-height: clamp(2.6rem, 3vw, 2.8rem);
}

.home-about--content__cta {
  margin-top: 3.5rem;
}

.home-about--content__right--sub {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 65rem;
}
@media (min-width: 992px) {
  .home-about--content__right--sub {
    max-width: 45rem;
  }
}

.home-about--content__right--focus {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  bottom: 2.5rem;
  right: -2.5rem;
}
@media (min-width: 992px) {
  .home-about--content__right--focus {
    right: -2.5rem;
    bottom: 5rem;
  }
}
@media (min-width: 1330px) {
  .home-about--content__right--focus {
    right: -7.5rem;
  }
}

.home-about--content__right--focus--item:not(.is--image) {
  padding: 1.5rem;
  border-radius: 1rem;
  background-color: #ffffff;
  box-shadow: 0 0.2rem 2rem 0 rgba(0, 0, 0, 0.3);
  font-size: 1.8rem;
  font-weight: 600;
}
.home-about--content__right--focus--item.is--image {
  max-width: 12.5rem;
  position: relative;
  right: -7.5rem;
}

.home-about--content__image-1 {
  border-radius: 1rem;
  display: flex;
  overflow: hidden;
  width: 100%;
  height: 50rem;
  position: relative;
}
@media (min-width: 992px) {
  .home-about--content__image-1 {
    height: 100%;
  }
}
.home-about--content__image-1 img {
  border-radius: 1rem;
  height: 100%;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  width: 100%;
}

.home-about--content__image-2 {
  border-radius: 1rem;
  display: flex;
  overflow: hidden;
  padding-top: 70%;
  position: relative;
}
.home-about--content__image-2 img {
  border-radius: 1rem;
  height: 100%;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  width: 100%;
}

.home-about--content__image-3 {
  border-radius: 1rem;
  display: flex;
  overflow: hidden;
  padding-top: 80%;
  position: relative;
}
.home-about--content__image-3 img {
  border-radius: 1rem;
  height: 100%;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  width: 100%;
}

@media (max-width: 1329px) {
  .home-about--content__images--bottom-spacer {
    display: none;
  }
}

.section--home-video {
  position: relative;
  padding: 5rem 0;
  margin: 5rem 3rem;
}
@media (min-width: 992px) {
  .section--home-video {
    padding: 10rem 0;
    margin: 5rem 5vw;
  }
}

.home-video--image {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.home-video--image:before {
  content: "";
  background-color: #051028;
  background-image: linear-gradient(-210deg, #051028 40%, rgba(23, 70, 175, 0.75) 80%, #1746AF);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.85;
  background-position: 0 0;
  background-size: 150% 100%;
  border-radius: 2rem;
}
.home-video--image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  border-radius: 2rem;
}

.home-video--button {
  position: relative;
  margin: 5rem auto 15rem;
  width: 15rem;
  height: 15rem;
  background-color: rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  cursor: pointer;
  z-index: 2;
  border: 0.1rem solid #ffffff;
  transition: all 0.25s ease;
}
@media (min-width: 992px) {
  .home-video--button {
    margin: 15rem auto 5rem;
  }
}
.home-video--button:before, .home-video--button:after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  animation: pulse-ring 4s cubic-bezier(0.22, 1, 0.36, 1) infinite;
  z-index: -1;
  opacity: 0.6;
  transition: all 0.25s ease;
}
.home-video--button:after {
  animation-delay: 2s;
}
.home-video--button:hover, .home-video--button:focus {
  background-color: rgba(22, 90, 237, 0.35);
  border-color: #165aed;
}
.home-video--button:hover svg, .home-video--button:focus svg {
  stroke: #165aed;
}
.home-video--button:hover:before, .home-video--button:hover:after, .home-video--button:focus:before, .home-video--button:focus:after {
  background-color: rgba(22, 90, 237, 0.5);
}
.home-video--button svg {
  width: 3rem;
  height: 3rem;
  transition: stroke 0.25s ease;
}

@keyframes pulse-ring {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  70% {
    opacity: 0;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}
.home-video--text {
  margin: 5rem 0;
  color: #ffffff;
  font: 400 clamp(3rem, 5vw, 6rem) "Rethink Sans", Arial, sans-serif;
  line-height: clamp(4rem, 6vw, 7rem);
  letter-spacing: -0.2rem;
  position: relative;
}
@media (min-width: 992px) {
  .home-video--text {
    margin: 10rem 0 5rem;
    padding: 0 5rem;
    letter-spacing: -0.3rem;
  }
}
.home-video--text:before {
  content: "";
  position: absolute;
  top: -7rem;
  left: 0;
  width: 7rem;
  height: 7rem;
  background-repeat: no-repeat;
  background-size: contain;
  transform: scaleX(-1);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231746AF' stroke-width='1' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M16 3a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2 1 1 0 0 1 1 1v1a2 2 0 0 1-2 2 1 1 0 0 0-1 1v2a1 1 0 0 0 1 1 6 6 0 0 0 6-6V5a2 2 0 0 0-2-2z'/%3E%3Cpath d='M5 3a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2 1 1 0 0 1 1 1v1a2 2 0 0 1-2 2 1 1 0 0 0-1 1v2a1 1 0 0 0 1 1 6 6 0 0 0 6-6V5a2 2 0 0 0-2-2z'/%3E%3C/svg%3E");
}
@media (min-width: 992px) {
  .home-video--text:before {
    left: -2.5rem;
  }
}

.home-video--text-personn {
  display: flex;
  align-items: center;
}
@media (min-width: 992px) {
  .home-video--text-personn {
    margin-left: 20vw;
  }
}

.home-video--text-avatar {
  margin-right: 2rem;
  height: 6.5rem;
  width: 6.5rem;
}
.home-video--text-avatar img {
  border-radius: 50%;
}

.home-video--text-role {
  display: flex;
  flex-direction: column;
  color: #ffffff;
}
.home-video--text-role span {
  font-size: 1.8rem;
}
.home-video--text-role span:nth-child(1) {
  font-weight: 600;
}
.home-video--text-role span:nth-child(2) {
  font-size: 1.6rem;
  color: rgba(255, 255, 255, 0.7);
}

.section--home-awards {
  padding: 5rem 0;
}
@media (min-width: 992px) {
  .section--home-awards {
    padding: 10rem 0;
  }
}

.home-awards__content {
  margin-bottom: 5rem;
  text-align: center;
}

.home-awards__items {
  display: flex;
  align-items: center;
}

.home-awards__item {
  width: 100%;
  padding: clamp(1.5rem, 1.5vw, 3.5rem) 0;
  border-top: 0.1rem solid rgba(5, 16, 40, 0.2);
  border-bottom: 0.1rem solid rgba(5, 16, 40, 0.2);
  transition: background-color 0.25s ease, transform 0.25s ease;
}
@media (max-width: 991px) {
  .home-awards__item {
    display: flex;
    flex-direction: column;
  }
}
@media (min-width: 992px) {
  .home-awards__item {
    display: grid;
    grid-template-columns: 15rem 1fr;
    grid-template-rows: auto auto;
    gap: 1rem;
    align-items: center;
  }
}
@media (min-width: 1330px) {
  .home-awards__item {
    grid-template-columns: 15rem 1fr auto;
    grid-template-rows: none;
    gap: 3rem;
  }
}
.home-awards__item:first-of-type {
  border-bottom: 0;
}
.home-awards__item:last-of-type {
  border-top: 0;
}
.home-awards__item:hover .home-awards__item-title, .home-awards__item.is-active .home-awards__item-title {
  color: #1746AF;
}

.home-awards__items-inner {
  width: 100%;
}

.home-awards__item-year {
  font-weight: 300;
  font-size: clamp(1.2rem, 1.4vw, 1.4rem);
  white-space: nowrap;
}
@media (max-width: 991px) {
  .home-awards__item-year {
    margin-bottom: 0.5rem;
  }
}
@media (min-width: 992px) {
  .home-awards__item-year {
    padding-left: 2rem;
    grid-column: 1;
    grid-row: 1/span 2;
    align-self: start;
  }
}
@media (min-width: 1330px) {
  .home-awards__item-year {
    grid-column: auto;
    grid-row: auto;
  }
}

.home-awards__item-title {
  font: 600 clamp(2.2rem, 2vw, 2.4rem) "Rethink Sans", Arial, sans-serif;
  transition: color 0.25s ease;
}
@media (min-width: 992px) {
  .home-awards__item-title {
    grid-column: 2;
    grid-row: 1;
  }
}
@media (min-width: 1330px) {
  .home-awards__item-title {
    grid-column: auto;
    grid-row: auto;
  }
}

.home-awards__item-type {
  font-size: clamp(1.6rem, 1.7vw, 1.8rem);
  font-style: italic;
  white-space: nowrap;
}
@media (min-width: 992px) {
  .home-awards__item-type {
    grid-column: 2;
    grid-row: 2;
    padding-right: 0;
  }
}
@media (min-width: 1330px) {
  .home-awards__item-type {
    grid-column: auto;
    grid-row: auto;
    text-align: right;
    padding-right: 2rem;
  }
}

.home-awards__media {
  position: relative;
}
@media (max-width: 991px) {
  .home-awards__media {
    order: 1;
  }
}

.home-awards__media-inner {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
}
@media (max-width: 991px) {
  .home-awards__media-inner {
    aspect-ratio: 1.75/1;
  }
}
@media (min-width: 992px) {
  .home-awards__media-inner {
    aspect-ratio: 1.2/1;
  }
}
@media (min-width: 1330px) {
  .home-awards__media-inner {
    aspect-ratio: 1.5/1;
  }
}

.home-awards__media-item {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translate3d(-5rem, 0, 0);
  pointer-events: none;
  will-change: opacity, transform;
}

.home-awards__media-item.is-active {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  z-index: 2;
}

.home-awards__media-item.is-enter {
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-awards__media-item.is-leave {
  opacity: 0;
  transform: translate3d(2rem, 0, 0);
  z-index: 1;
  transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1), transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-awards__media-img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.section--home-events {
  position: relative;
  padding: 5rem 0;
  background-color: #E3EBFB;
}
@media (min-width: 992px) {
  .section--home-events {
    padding: 10rem 0;
  }
}

.home-events__content-top {
  margin-bottom: 5rem;
}

@media (min-width: 992px) {
  .home-events__content-top__right {
    padding-top: 5rem;
  }
}

.home-events__images a:nth-child(1) picture, .home-events__images a:nth-child(4) picture {
  padding-top: 60%;
}
.home-events__images picture {
  border-radius: 1rem;
  display: flex;
  overflow: hidden;
  padding-top: 70%;
  position: relative;
}
.home-events__images picture img {
  border-radius: 1rem;
  height: 100%;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  width: 100%;
}

.home-events__content-bottom {
  margin-top: 10rem;
}
.home-events__content-bottom p {
  font-size: clamp(2rem, 2vw, 3rem);
  line-height: clamp(3.5rem, 3.5vw, 4.5rem);
}

.section--home-csr {
  position: relative;
  padding: 5rem 0;
  background-color: #E3EBFB;
}
@media (min-width: 992px) {
  .section--home-csr {
    padding: 10rem 0;
  }
}

@media (min-width: 992px) {
  .home-csr__content-top__right {
    padding-top: 5rem;
  }
}

.home-csr__title {
  margin-bottom: 0;
}

.home-csr__items {
  margin-top: 5rem;
}

.home-csr__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
}
@media (min-width: 1330px) {
  .home-csr__item {
    padding: 3rem;
  }
}

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

.section--home-recruitment {
  position: relative;
  padding: 15rem 0;
}
@media (min-width: 992px) {
  .section--home-recruitment {
    padding: 15rem 0;
  }
}

.home-recruitment--image {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.home-recruitment--image:before {
  content: "";
  background-color: #051028;
  background-image: linear-gradient(-210deg, #051028 40%, rgba(23, 70, 175, 0.75) 80%, #1746AF);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.6;
  background-position: 0 0;
  background-size: 150% 100%;
}
.home-recruitment--image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom;
     object-position: bottom;
  opacity: 1;
}

.home-recruitment--wrapper {
  margin-top: 10rem;
  margin-bottom: 5rem;
}
@media (min-width: 992px) {
  .home-recruitment--wrapper {
    margin-top: 40rem;
    margin-bottom: 10rem;
  }
}

.home-recruitment--left {
  background-color: rgba(255, 255, 255, 0.9);
  padding: 3rem;
  border-radius: 1rem;
  margin-bottom: -15rem;
}
@media (min-width: 992px) {
  .home-recruitment--left {
    margin-left: 5rem;
    padding: 4rem;
  }
}

.section--home-digital-tools {
  position: relative;
  padding: 5rem 0;
}
@media (min-width: 992px) {
  .section--home-digital-tools {
    padding: 10rem 0;
  }
}

.home-digital-tools--top__description p {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .home-digital-tools--top__description {
    max-width: 80%;
  }
}

.home-digital-tools--wrapper {
  padding: 5rem 3rem 0;
}
@media (min-width: 992px) {
  .home-digital-tools--wrapper {
    padding: 10rem 3vw 0;
  }
}

.home-digital-tools--content__item {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 3rem;
  border-radius: 1rem;
  min-height: 35rem;
}
.home-digital-tools--content__item.has--image {
  padding: 0;
}
@media (max-width: 991px) {
  .home-digital-tools--content__item.has--image {
    height: 35rem;
  }
}
.home-digital-tools--content__item h3 {
  display: flex;
  width: 100%;
  position: relative;
  color: #1746AF;
  margin-bottom: 4rem;
}
.home-digital-tools--content__item h3:after {
  background-color: rgba(23, 70, 175, 0.5);
  bottom: -2rem;
  content: "";
  display: block;
  height: 0.1rem;
  left: -0.1rem;
  position: absolute;
  width: 100%;
}
.home-digital-tools--content__item p {
  font-size: 1.6rem;
  line-height: 2.8rem;
  color: rgba(38, 33, 33, 0.8);
}
.home-digital-tools--content__item p:first-of-type {
  margin-top: auto;
}
.home-digital-tools--content__item p:last-of-type {
  margin-bottom: 0;
}

.home-digital-tools--content__picture {
  inset: 0;
  position: absolute;
}
.home-digital-tools--content__picture img {
  border-radius: 1rem;
  height: 100%;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  width: 100%;
}

.home-digital-tools--content-1 .home-digital-tools--content__item:nth-child(1) {
  background-color: rgba(22, 90, 237, 0.1);
}
@media (min-width: 1330px) {
  .home-digital-tools--content-1 .home-digital-tools--content__item:nth-child(1) {
    order: 1;
  }
}
@media (min-width: 1330px) {
  .home-digital-tools--content-1 .home-digital-tools--content__item:nth-child(2) {
    order: 2;
  }
}
.home-digital-tools--content-1 .home-digital-tools--content__item:nth-child(3) {
  background-color: rgba(22, 90, 237, 0.2);
}
@media (max-width: 991px) {
  .home-digital-tools--content-1 .home-digital-tools--content__item:nth-child(3) {
    order: 3;
  }
}
@media (min-width: 992px) {
  .home-digital-tools--content-1 .home-digital-tools--content__item:nth-child(3) {
    order: 4;
  }
}
@media (min-width: 1330px) {
  .home-digital-tools--content-1 .home-digital-tools--content__item:nth-child(3) {
    order: 3;
  }
}
@media (max-width: 991px) {
  .home-digital-tools--content-1 .home-digital-tools--content__item:nth-child(4) {
    order: 4;
  }
}
@media (min-width: 992px) {
  .home-digital-tools--content-1 .home-digital-tools--content__item:nth-child(4) {
    order: 3;
  }
}
@media (min-width: 1330px) {
  .home-digital-tools--content-1 .home-digital-tools--content__item:nth-child(4) {
    order: 4;
  }
}

.home-digital-tools--content-2 {
  margin-top: 3rem;
}
@media (min-width: 992px) {
  .home-digital-tools--content-2 {
    margin-top: 4rem;
  }
}
.home-digital-tools--content-2 .home-digital-tools--content__item:nth-child(1) {
  order: 2;
}
.home-digital-tools--content-2 .home-digital-tools--content__item:nth-child(2) {
  background-color: rgba(22, 90, 237, 0.3);
  order: 1;
}
.home-digital-tools--content-2 .home-digital-tools--content__item:nth-child(3) {
  background-color: rgba(22, 90, 237, 0.3);
}
@media (max-width: 991px) {
  .home-digital-tools--content-2 .home-digital-tools--content__item:nth-child(3) {
    order: 4;
  }
}
@media (min-width: 992px) {
  .home-digital-tools--content-2 .home-digital-tools--content__item:nth-child(3) {
    order: 3;
  }
}
@media (min-width: 1330px) {
  .home-digital-tools--content-2 .home-digital-tools--content__item:nth-child(3) {
    order: 4;
  }
}
.home-digital-tools--content-2 .home-digital-tools--content__item:nth-child(4) {
  background-color: #1746AF;
}
@media (max-width: 991px) {
  .home-digital-tools--content-2 .home-digital-tools--content__item:nth-child(4) {
    order: 3;
  }
}
@media (min-width: 992px) {
  .home-digital-tools--content-2 .home-digital-tools--content__item:nth-child(4) {
    order: 4;
  }
}
@media (min-width: 1330px) {
  .home-digital-tools--content-2 .home-digital-tools--content__item:nth-child(4) {
    order: 3;
  }
}
.home-digital-tools--content-2 .home-digital-tools--content__item:nth-child(4) h3, .home-digital-tools--content-2 .home-digital-tools--content__item:nth-child(4) p {
  color: #ffffff;
}
.home-digital-tools--content-2 .home-digital-tools--content__item:nth-child(4) h3:after {
  background-color: rgba(255, 255, 255, 0.75);
}

.section--home-partnerships {
  position: relative;
  padding: 5rem 0;
}
@media (min-width: 992px) {
  .section--home-partnerships {
    padding: 10rem 0;
  }
}

.home-partnerships--top__description p {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .home-partnerships--top__description {
    max-width: 80%;
  }
}

.home-partnerships--wrapper {
  padding: 5rem 3rem;
}
@media (min-width: 992px) {
  .home-partnerships--wrapper {
    padding: 10rem 3vw;
  }
}

@media (min-width: 992px) {
  .home-partnerships__content__right {
    padding-left: 5rem;
    margin-top: 5rem;
  }
}

.home-partnerships__item {
  border-bottom: 0.1rem solid rgba(5, 16, 40, 0.2);
}
.home-partnerships__item:first-child {
  border-top: 0.1rem solid rgba(5, 16, 40, 0.2);
}
.home-partnerships__item:hover .home-partnerships__label, .home-partnerships__item.is-open .home-partnerships__label {
  color: #165aed;
}

.home-partnerships__trigger {
  width: 100%;
  padding: clamp(1.5rem, 1.5vw, 3.5rem) 0;
  text-align: left;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  transition: transform 0.25s ease;
}

.home-partnerships__label {
  margin: 0;
  font-weight: 600;
  transition: color 0.25s ease;
}
@media (min-width: 992px) {
  .home-partnerships__label {
    padding-left: 3rem;
  }
}

.home-partnerships__icon {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 3.6rem;
  height: 3.6rem;
  flex: 0 0 auto;
}
@media (min-width: 992px) {
  .home-partnerships__icon {
    justify-content: center;
  }
}

.home-partnerships__icon-plus,
.home-partnerships__icon-minus {
  display: inline-block;
  font-size: 3rem;
}

.home-partnerships__icon-minus {
  display: none;
}

.home-partnerships__panel-inner {
  padding-right: 5rem;
  opacity: 0.8;
  font-size: 1.8rem;
  padding-left: 3rem;
  padding-bottom: clamp(1.5rem, 1.5vw, 3rem);
}
.home-partnerships__panel-inner p:last-child {
  margin-bottom: 0;
}

.home-partnerships__item.is-open .home-partnerships__icon-plus {
  display: none;
}
.home-partnerships__item.is-open .home-partnerships__icon-minus {
  display: inline-block;
}
.home-partnerships__item.is-open .home-partnerships__trigger {
  transform: none;
}

.section--home-contact {
  position: relative;
  padding: 5rem 0;
}
@media (min-width: 992px) {
  .section--home-contact {
    padding: 10rem 0;
  }
}

.home-contact--image {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.home-contact--image:before {
  content: "";
  background-color: #051028;
  background-image: linear-gradient(-210deg, #051028 40%, rgba(23, 70, 175, 0.75) 80%, #1746AF);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.7;
  background-position: 0 0;
  background-size: 150% 100%;
}
.home-contact--image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom;
     object-position: bottom;
  opacity: 1;
}

.home-contact--content__title {
  color: #ffffff;
}

.home-contact--content__description {
  margin-bottom: 5rem;
  color: #ffffff;
}

@media (max-width: 991px) {
  .home-contact--contact {
    margin-bottom: 3rem;
  }
}

.home-contact--contact__title {
  font-size: 1.8rem;
  line-height: 2.8rem;
  margin-bottom: 2rem;
  font-weight: 600;
  letter-spacing: -0.1rem;
}

.home-contact--contact__content {
  font-size: 1.8rem;
  color: rgba(255, 255, 255, 0.7);
}
.home-contact--contact__content p {
  margin-bottom: 0;
}
.home-contact--contact__content p:last-of-type a {
  color: #ffffff;
}
.home-contact--contact__content p a {
  font-weight: 600;
  font-size: 2.2rem;
  text-decoration: none;
}

.home-contact--content__information {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}
@media (min-width: 992px) {
  .home-contact--content__information {
    padding-left: 2.5rem;
    margin-bottom: 2.5rem;
  }
}
.home-contact--content__information svg {
  margin-right: 1rem;
  stroke: #1746AF;
  width: 2rem;
  height: 2rem;
  flex: 0 0 2rem;
}
@media (min-width: 992px) {
  .home-contact--content__information svg {
    margin-right: 2rem;
    width: 3rem;
    height: 3rem;
    flex: 0 0 3rem;
  }
}
.home-contact--content__information a {
  flex: 1 1 auto;
  color: #ffffff;
  text-decoration: none;
  transition: color ease 0.25s;
}
.home-contact--content__information a:hover {
  color: #165aed;
}

@media (max-width: 991px) {
  .home-contact--content__email a {
    font-size: 1.6rem;
  }
}

.home-contact--content__address--sub {
  font-size: 1.6rem;
  color: #ffffff;
}

.home-contact--form label {
  color: #ffffff;
}
.home-contact--form .form--field__checkbox-list > .form--label {
  color: #ffffff;
}
.home-contact--form .form--checkbox-list__label,
.home-contact--form .form--field__recaptcha {
  color: rgba(255, 255, 255, 0.8);
}
.home-contact--form textarea,
.home-contact--form input[type=text],
.home-contact--form input[type=tel],
.home-contact--form input[type=url],
.home-contact--form input[type=file],
.home-contact--form input[type=date],
.home-contact--form input[type=email],
.home-contact--form input[type=password] {
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 0 0.1rem rgba(255, 255, 255, 0.2) inset;
}
.home-contact--form ::-webkit-input-placeholder {
  color: #ffffff;
}
.home-contact--form ::-moz-placeholder {
  color: #ffffff;
}
.home-contact--form :-ms-input-placeholder {
  color: #ffffff;
}
.home-contact--form :-moz-placeholder {
  color: #ffffff;
}

.section--blog {
  padding: 5rem 0;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .section--blog {
    padding: 10rem 0;
  }
}

.blog--content-top {
  margin-bottom: 5rem;
}

.blog--content__description p:last-of-type {
  margin-bottom: 0;
}

@media (min-width: 992px) {
  .blog--content-right {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
  }
}

.blog--slider {
  overflow: hidden;
}

.blog--slider__navigation {
  display: flex;
  margin-top: 4rem;
}

.blog--slider__navigation--btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  color: #ffffff;
  padding: 0.75rem;
  text-align: center;
  border: 0.1rem solid #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
}
.blog--slider__navigation--btn:first-of-type {
  margin-right: 2rem;
}
.blog--slider__navigation--btn:hover, .blog--slider__navigation--btn:active, .blog--slider__navigation--btn:focus {
  color: #1746AF;
  border-color: #1746AF;
}
.blog--slider__navigation--btn.swiper-button-disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}
.blog--slider__navigation--btn.swiper-button-disabled:hover, .blog--slider__navigation--btn.swiper-button-disabled:active, .blog--slider__navigation--btn.swiper-button-disabled:focus {
  color: #ffffff;
  border-color: #ffffff;
  opacity: 0.3;
}

.section--blog-list {
  padding: 3rem 0;
}
@media (min-width: 992px) {
  .section--blog-list {
    padding: 4rem 0;
  }
}
.section--single-article-content {
  padding: 3rem 0;
  margin-top: -10rem;
}
@media (min-width: 992px) {
  .section--single-article-content {
    padding: 5rem 0;
    margin-top: -17.5rem;
  }
}

.single-article-content--featured-image {
  position: relative;
  overflow: hidden;
  padding-top: 70%;
  display: flex;
  border-radius: 1rem;
}
@media (min-width: 992px) {
  .single-article-content--featured-image {
    padding-top: 50%;
  }
}
.single-article-content--featured-image img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1rem;
}

.single-article-content--meta {
  display: flex;
  padding: 0 0 2rem;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.single-article-content--tag {
  align-self: flex-start;
  padding: 0.2rem 1rem;
  font-size: 1.1rem;
  letter-spacing: 0.05rem;
  line-height: 2rem;
  font-family: "Rethink Sans", Arial, sans-serif;
  color: #165aed;
  border: 0.1rem solid #165aed;
  border-radius: 3rem;
}

.single-article-content--dates {
  display: flex;
  align-items: center;
  opacity: 0.8;
  font-size: 1.6rem;
  font-style: italic;
}
@media (max-width: 991px) {
  .single-article-content--dates {
    flex-direction: column;
    align-items: center;
  }
}

.single-article-content--introduction {
  margin: 3rem 0;
}
@media (min-width: 992px) {
  .single-article-content--introduction {
    margin: 6rem 0;
  }
}
.single-article-content--introduction p:first-of-type {
  font-size: clamp(2rem, 2.2vw, 2.4rem);
  line-height: clamp(3.6rem, 3.8vw, 4rem);
}
.single-article-content--introduction p.disclaimer {
  padding: 2rem 4rem;
  border-radius: 1rem;
  background: #fbe0b7;
  font-family: "Rethink Sans", Arial, sans-serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.8rem;
  letter-spacing: -0.1rem;
  margin: 4rem 0;
}

@media (min-width: 992px) {
  .single-article-content--content p img {
    --img-scale: 1.15;
    margin: 8rem 0;
    transform: scale(var(--img-scale));
    will-change: transform;
  }
}
.single-article-content--content iframe {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  border: 0;
  margin: 6rem 0;
}
@media (min-width: 992px) {
  .single-article-content--content iframe {
    --img-scale: 1.15;
    margin: 8rem 0;
    transform: scale(var(--img-scale));
    will-change: transform;
  }
}

.section--single-items-list {
  background-color: #E3EBFB;
  padding: 6rem 0;
}
@media (min-width: 992px) {
  .section--single-items-list {
    padding: 12rem 0;
  }
}

.single-items-list--content {
  margin-bottom: 4rem;
}
@media (min-width: 992px) {
  .single-items-list--content {
    margin-bottom: 8rem;
    text-align: center;
  }
}

@media (min-width: 992px) {
  .single-items-list--description {
    max-width: 70%;
    margin: 0 auto;
  }
}

.single-items-list--slider {
  margin: 0 3rem;
}
@media (min-width: 992px) {
  .single-items-list--slider {
    margin: 0 4rem;
  }
}
.single-items-list--slider .achievement--item {
  box-shadow: 0 0.2rem 1.2rem 0 rgba(38, 33, 33, 0.2);
}
.single-items-list--slider .achievement--item:hover, .single-items-list--slider .achievement--item:focus, .single-items-list--slider .achievement--item:active {
  box-shadow: 0 0.2rem 1.2rem 0 rgba(23, 70, 175, 0.2);
}

.section--page-hero {
  padding: 10rem 0 3rem;
  position: relative;
  overflow: hidden;
  background: #E3EBFB;
}
@media (min-width: 992px) {
  .section--page-hero {
    padding: 20rem 0 5rem;
  }
}

.page-hero--wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
}

.page-hero--title {
  color: #262121;
  text-align: center;
  margin-bottom: 0;
}

.page-hero--description {
  margin-top: 2rem;
  font-size: clamp(1.6rem, 1.7vw, 1.8rem);
  line-height: clamp(2.6rem, 2.7vw, 2.8rem);
  color: rgba(38, 33, 33, 0.8);
  font-style: italic;
  text-align: center;
}

.single-post .section--page-hero {
  padding: 10rem 0;
}
@media (min-width: 992px) {
  .single-post .section--page-hero {
    padding: 20rem 0;
  }
}

.section--page {
  padding: 5rem 0;
}
@media (min-width: 992px) {
  .section--page {
    padding: 10rem 0;
  }
}

.section--page-content h2 {
  font-size: clamp(3rem, 3.5vw, 4rem);
  line-height: clamp(4rem, 4.5vw, 5rem);
  margin: 3rem 0;
}
.section--page-content p img {
  border-radius: 1rem;
  margin: 4rem 0;
}
.section--page-content table {
  border-radius: 1rem;
  margin: 4rem 0;
  font-size: 1.6rem;
}
.section--page-content table th, .section--page-content table td {
  border: 0.1rem solid rgba(91, 103, 104, 0.15);
  padding: 1rem 1.2rem;
  text-align: left;
}
.section--page-content table thead th {
  background: rgba(5, 16, 40, 0.05);
  font-weight: 600;
}
.section--page-content table tbody tr {
  transition: all 0.3s ease;
}
.section--page-content table tbody tr:hover {
  background: #ffffff;
}

.navigation {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 3vw;
  right: 3vw;
  transition: all ease-in-out 0.4s;
}
@media (min-width: 1330px) {
  .navigation {
    left: 6vw;
    right: 6vw;
  }
}
.navigation.is-scrolled {
  transform: translateY(-100%);
}
@media (max-width: 991px) {
  .navigation.is-scrolled .navigation--middle.is-open-mobile {
    top: -1rem;
    left: -6vw;
    right: -6vw;
  }
}
.navigation.is-scrolled-up {
  top: 1rem;
}
@media (min-width: 992px) {
  .navigation.is-scrolled-up {
    top: 2rem;
  }
}
.navigation.is-scrolled-up .navigation--main {
  background-color: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(2rem) saturate(120%);
  -webkit-backdrop-filter: blur(2rem) saturate(120%);
  box-shadow: 0 0.2rem 2rem rgba(0, 0, 0, 0.2);
  border-radius: 1rem;
}
.navigation.is-scrolled-up .navigation--middle.is-open-mobile {
  height: calc(100vh - 2rem);
  border-radius: 1rem;
}
.navigation.is-open-mobile {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.navigation.is-open-mobile .navigation--bottom__nav {
  -webkit-overflow-scrolling: touch;
}
.navigation.is-open-mobile .navigation--bottom__nav .navigation--list {
  width: 100%;
  flex-direction: column;
}
.navigation.is-open-mobile .navigation--bottom__nav .navigation--list li:last-child {
  display: flex;
}

body:not(.page-template-front-page) .navigation {
  top: 1rem;
}
@media (min-width: 992px) {
  body:not(.page-template-front-page) .navigation {
    top: 2rem;
  }
}
body:not(.page-template-front-page) .navigation.is-scrolled {
  top: 0;
}
body:not(.page-template-front-page) .navigation--main {
  background-color: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(2rem) saturate(120%);
  -webkit-backdrop-filter: blur(2rem) saturate(120%);
  box-shadow: 0 0.2rem 2rem rgba(0, 0, 0, 0.2);
  border-radius: 1rem;
}

.navigation--main {
  display: flex;
  padding: 1rem;
  transition: all ease-in-out 0.2s;
}
@media (min-width: 992px) {
  .navigation--main {
    padding: 2rem 3rem;
  }
}

.navigation--logo {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 12;
  padding-right: 1rem;
}
.navigation--logo img {
  width: 6rem;
}
@media (min-width: 992px) {
  .navigation--logo img {
    width: 12rem;
  }
}

.navigation--middle {
  display: none;
}
@media (min-width: 992px) {
  .navigation--middle {
    display: flex;
    flex: 1 1 0%;
    justify-content: center;
  }
}
.navigation--middle.is-open-mobile {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100vh;
  background: #ffffff;
  z-index: 11;
  display: flex;
  box-shadow: 0 0.2rem 2rem rgba(0, 0, 0, 0.2);
}
@media screen and (orientation: landscape) {
  .navigation--middle.is-open-mobile {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
  }
}
.navigation--middle.is-open-mobile.is-visible {
  opacity: 1;
  visibility: visible;
}

.navigation--middle__list {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media screen and (orientation: portrait) {
  .navigation--middle.is-open-mobile .navigation--middle__list {
    width: 100%;
    justify-content: center;
    flex-direction: column;
    padding: 1rem;
  }
}
@media screen and (orientation: landscape) {
  .navigation--middle.is-open-mobile .navigation--middle__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-items: center;
    padding: 10vw;
  }
}
.navigation--middle__list li {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .navigation--middle__list li {
    width: 100%;
    border-bottom: 0.1rem dashed rgba(23, 70, 175, 0.4);
  }
}
.navigation--middle__list li:hover > a span, .navigation--middle__list li:active > a span, .navigation--middle__list li:focus > a span {
  color: #1746AF;
}
@media (min-width: 992px) and (max-width: 1400px) {
  .navigation--middle__list li.menu-item-1920 {
    display: none;
  }
}
@media (min-width: 992px) {
  .navigation--middle__list li.menu-item-2475 {
    display: none;
  }
}
@media (max-width: 991px) {
  .navigation--middle__list li.menu-item-has-children {
    flex-direction: column;
  }
}
@media (min-width: 992px) {
  .navigation--middle__list li.menu-item-has-children:hover .sub-menu, .navigation--middle__list li.menu-item-has-children:active .sub-menu, .navigation--middle__list li.menu-item-has-children:focus .sub-menu {
    opacity: 1;
    pointer-events: unset;
  }
  .navigation--middle__list li.menu-item-has-children:hover a:after, .navigation--middle__list li.menu-item-has-children:active a:after, .navigation--middle__list li.menu-item-has-children:focus a:after {
    background-color: #1746AF;
  }
  .navigation--middle__list li.menu-item-has-children > a:after {
    content: "";
    display: inline-block;
    width: 1.75rem;
    height: 1.75rem;
    margin-left: 0.5rem;
    vertical-align: middle;
    transition: transform 0.3s ease, background-color 0.3s ease;
    background-color: #262121;
    -webkit-mask: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9ImN1cnJlbnRDb2xvciIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiPjxwYXRoIGQ9Im02IDkgNiA2IDYtNiIvPjwvc3ZnPg==") no-repeat center;
            mask: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9ImN1cnJlbnRDb2xvciIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiPjxwYXRoIGQ9Im02IDkgNiA2IDYtNiIvPjwvc3ZnPg==") no-repeat center;
    -webkit-mask-size: contain;
            mask-size: contain;
  }
}
.navigation--middle__list a {
  text-decoration: none;
  padding: 0.75rem 2rem;
  transition: all 0.3s ease;
}
@media (min-width: 992px) {
  .navigation--middle__list a {
    padding: 1.5rem 0.9rem;
  }
}
@media (min-width: 1330px) {
  .navigation--middle__list a {
    padding: 1.5rem 2rem;
  }
}
.navigation--middle__list a span {
  position: relative;
  overflow: hidden;
  font: 500 3.2rem "Rethink Sans", Arial, sans-serif;
  color: #051028;
  border-bottom: 0;
  transition: all ease 0.3s;
}
@media (min-width: 992px) {
  .navigation--middle__list a span {
    font-size: 2rem;
  }
}
@media (min-width: 992px) {
  .navigation--middle__list .sub-menu {
    position: absolute;
    left: 1.5rem;
    top: 90%;
    opacity: 0;
    width: 27.5rem;
    padding: 1.5rem;
    box-shadow: 0 1.5rem 3rem rgba(38, 33, 33, 0.2);
    background: #ffffff;
    border-radius: 1rem;
    transition: all ease 0.3s;
    pointer-events: none;
  }
  .navigation--middle__list .sub-menu li {
    width: 100%;
    justify-content: unset;
    align-items: unset;
  }
  .navigation--middle__list .sub-menu a {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 1rem 2rem;
  }
  .navigation--middle__list .sub-menu a span {
    font-size: 1.7rem;
    color: #262121;
  }
}

.navigation--right {
  position: relative;
  align-items: center;
  display: none;
}
@media (min-width: 992px) {
  .navigation--right {
    display: flex;
  }
}

.navigation--right__language_switcher {
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  .navigation--right__language_switcher {
    margin-left: auto;
    margin-right: 2rem;
  }
}

.hamburger {
  position: relative;
  z-index: 12;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #262121;
}
.hamburger:focus {
  outline: none;
}
.hamburger.is-active {
  color: #1746AF;
}
@media (min-width: 992px) {
  .hamburger {
    display: none;
  }
}

.footer {
  position: relative;
  overflow: hidden;
  margin: 2rem;
  border-radius: 2rem;
  background-color: #051028;
}
.footer:before {
  content: "";
  position: absolute;
  top: -5rem;
  left: -5rem;
  width: 35rem;
  height: 60rem;
  z-index: 0;
  background-image: url("../images/pattern-footer.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
}
.footer:after {
  content: "";
  position: absolute;
  bottom: -5rem;
  right: 0;
  width: 35rem;
  height: 60rem;
  z-index: 0;
  background-image: url("../images/pattern-footer.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
  transform: scale(-1, -1);
  transform-origin: center;
}

.footer--top {
  padding: 5rem 0;
}
@media (min-width: 1330px) {
  .footer--top {
    padding: 15rem 0 10rem;
  }
}

.footer--logo {
  display: inline-flex;
  margin-bottom: 3rem;
}
.footer--logo img {
  width: 17.5rem;
}

.footer--description {
  font-size: clamp(1.4rem, 1.8vw, 1.6rem);
  line-height: clamp(3rem, 3vw, 2.8rem);
  color: rgba(255, 255, 255, 0.8);
  font-weight: 300;
}

.footer--slogan {
  position: relative;
  color: #ffffff;
  padding-left: 4rem;
  margin-top: 5rem;
}
@media (max-width: 1329px) {
  .footer--slogan {
    margin-bottom: 5rem;
  }
}
.footer--slogan:before {
  content: "";
  position: absolute;
  top: -2rem;
  left: 0;
  width: 3.5rem;
  height: 3.5rem;
  background-repeat: no-repeat;
  background-size: contain;
  transform: scaleX(-1);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231746AF' stroke-width='1' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M16 3a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2 1 1 0 0 1 1 1v1a2 2 0 0 1-2 2 1 1 0 0 0-1 1v2a1 1 0 0 0 1 1 6 6 0 0 0 6-6V5a2 2 0 0 0-2-2z'/%3E%3Cpath d='M5 3a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2 1 1 0 0 1 1 1v1a2 2 0 0 1-2 2 1 1 0 0 0-1 1v2a1 1 0 0 0 1 1 6 6 0 0 0 6-6V5a2 2 0 0 0-2-2z'/%3E%3C/svg%3E");
}

.footer--top__left {
  position: relative;
}
.footer--top__left:after {
  content: "";
  position: absolute;
  bottom: -4rem;
  inset-inline-start: -5rem;
  width: 35rem;
  height: 30rem;
  border-radius: 50%;
  background: #1746AF;
  filter: blur(5rem);
  opacity: 0.15;
  pointer-events: none;
}

@media (min-width: 1330px) {
  .footer--top__nav--services {
    padding-left: 3rem;
  }
}

.footer--title {
  color: #ffffff;
}

.footer--navigation__nav {
  padding-left: 2.5rem;
}
.footer--navigation__nav li {
  margin-bottom: 0.5rem;
}
@media (min-width: 992px) {
  .footer--navigation__nav li:last-of-type {
    margin-bottom: 0;
  }
}
.footer--navigation__nav li a {
  display: inline-block;
  text-decoration: none;
  transition: transform 0.3s ease;
  will-change: transform;
}
.footer--navigation__nav li a:hover, .footer--navigation__nav li a:focus, .footer--navigation__nav li a:active {
  transform: translateX(1rem);
}
.footer--navigation__nav li a:hover span, .footer--navigation__nav li a:focus span, .footer--navigation__nav li a:active span {
  color: #165aed;
}
.footer--navigation__nav li a span {
  position: relative;
  font-size: clamp(1.6rem, 1.6vw, 1.8rem);
  line-height: clamp(3.4rem, 3.4vw, 3rem);
  font-family: "Rethink Sans", Arial, sans-serif;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s;
}
.footer--navigation__nav li a span:before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: #165aed;
  position: absolute;
  left: -2rem;
  top: 50%;
  transform: translateY(-50%);
}

.footer--top__right .socials li:not(:last-of-type) {
  margin-right: 2rem;
}
.footer--top__right .socials li svg {
  width: 3.5rem;
  height: 3.5rem;
  fill: #1746AF;
}

.footer--contact__phone,
.footer--contact__email {
  display: flex;
  font-size: 2.8rem;
  font-family: "Rethink Sans", Arial, sans-serif;
  transition: all 0.3s ease;
  text-decoration: none;
}
.footer--contact__phone:hover, .footer--contact__phone:active, .footer--contact__phone:focus,
.footer--contact__email:hover,
.footer--contact__email:active,
.footer--contact__email:focus {
  text-decoration: none;
}

.footer--contact__phone {
  color: #165aed;
  margin-bottom: 1rem;
}
.footer--contact__phone:hover, .footer--contact__phone:active, .footer--contact__phone:focus {
  color: rgb(93.0139442231, 140.2888446215, 242.4860557769);
}

.footer--contact__email {
  color: #ffffff;
  text-decoration: none;
  font-size: 1.6rem;
}
.footer--contact__email:hover, .footer--contact__email:active, .footer--contact__email:focus {
  color: rgba(255, 255, 255, 0.8);
}

.footer--adress {
  font-size: 1.6rem;
  line-height: 2.6rem;
  color: #ffffff;
  margin-bottom: 3rem;
}

.footer-marquee--container {
  padding: 2.5rem 0;
  border-top: 0.1rem dashed rgba(255, 255, 255, 0.15);
  border-bottom: 0.1rem dashed rgba(255, 255, 255, 0.15);
}

.footer-marquee--taglines__tagline {
  display: flex;
  align-items: center;
}
.footer-marquee--taglines__tagline:hover span {
  opacity: 0.8;
}
.footer-marquee--taglines__tagline span {
  -webkit-font-smoothing: antialiased;
  color: rgba(255, 255, 255, 0.4);
  -webkit-text-fill-color: rgba(255, 255, 255, 0.01);
  -webkit-text-stroke: 0.1rem rgba(255, 255, 255, 0.5);
  line-height: 6rem;
  font-size: 5rem;
  font-weight: 600;
  font-family: "Rethink Sans", Arial, sans-serif;
  opacity: 1;
  transition: opacity 0.25s ease;
}
@media (min-width: 1330px) {
  .footer-marquee--taglines__tagline span {
    font-size: 10rem;
    line-height: 12rem;
  }
}
.footer-marquee--taglines__tagline picture {
  display: inline-block;
  position: relative;
  overflow: hidden;
  width: 100%;
  width: 15rem;
  height: 7.5rem;
  margin-right: 2rem;
}
@media (min-width: 1330px) {
  .footer-marquee--taglines__tagline picture {
    width: 20rem;
    height: 10rem;
  }
}
.footer-marquee--taglines__tagline img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1rem;
}

@supports (-moz-appearance: none) {
  .footer-marquee--taglines__tagline span {
    -webkit-text-fill-color: initial;
    -webkit-text-stroke: 0;
    opacity: 0.35;
    color: rgba(255, 255, 255, 0.22);
    text-shadow: 1px 0 0 rgba(255, 255, 255, 0.55), -1px 0 0 rgba(255, 255, 255, 0.55), 0 1px 0 rgba(255, 255, 255, 0.55), 0 -1px 0 rgba(255, 255, 255, 0.55);
  }
}
.footer--bottom {
  padding: 4rem 0;
  background: #051028;
}

.footer--bottom__content {
  display: flex;
  font-size: 1.4rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .footer--bottom__content {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
}
@media (min-width: 992px) {
  .footer--bottom__content {
    justify-content: space-between;
  }
}

.footer--bottom__content--left {
  opacity: 0.7;
}
.footer--bottom__content--left a {
  color: #165aed;
  font-weight: 600;
  text-decoration: none;
}

@media (max-width: 575px) {
  .footer--bottom__content--right {
    display: flex;
    flex-direction: column;
    margin-top: 2rem;
  }
}
.footer--bottom__content--right a {
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.25s ease;
  opacity: 0.7;
}
.footer--bottom__content--right a:hover, .footer--bottom__content--right a:active, .footer--bottom__content--right a:focus {
  opacity: 1;
}
.footer--bottom__content--right a:not(:last-of-type) {
  margin-right: 1rem;
}

.footer--to-top {
  position: fixed;
  z-index: 11;
  right: 2rem;
  bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 5rem;
  padding: 0;
  text-align: center;
  font-size: 2rem;
  border-radius: 50%;
  color: #ffffff;
  background-color: #1746AF;
  transform: scale(0);
  transition: all 0.5s ease;
  cursor: pointer;
  box-shadow: 0 0.2rem 1.2rem 0 rgba(255, 255, 255, 0.75);
}
.footer--to-top:hover {
  background-color: #165aed;
}
@media (max-width: 991px) {
  .footer--to-top {
    display: none;
  }
}
.footer--to-top.is-scrolled {
  transform: scale(1);
}
.footer--to-top:focus {
  outline: none;
}

.footer--decoration__title {
  padding-top: 4rem;
  text-align: center;
  margin-bottom: -1rem;
}
@media (min-width: 992px) {
  .footer--decoration__title {
    padding-top: 6rem;
  }
}
.footer--decoration__title img {
  max-width: 80rem;
  opacity: 0.15;
  margin: 0 3rem;
}
@media (max-width: 575px) {
  .footer--decoration__title img {
    margin-bottom: 3rem;
  }
}

.socials {
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0;
  list-style: none;
}
.socials li {
  margin-bottom: 0;
}
.socials li:not(:last-of-type) {
  margin-right: 1rem;
}
.socials li a {
  display: flex;
  align-items: center;
}
.socials li svg {
  width: 2rem;
  height: 2rem;
  fill: #262121;
}

.sitemap-section:not(:last-of-type) {
  margin-bottom: 4rem;
}

.sitemap-list {
  font-size: clamp(1.6rem, 1.7vw, 1.8rem);
  line-height: clamp(2.6rem, 2.7vw, 2.8rem);
}

.sitemap-list-children {
  margin: 2rem 0;
}

.agency--item {
  position: relative;
  height: auto;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  border-radius: 1rem;
  border-top-right-radius: 10rem;
  background-color: #ffffff;
  transition: all 0.45s;
}
@media (min-width: 992px) {
  .agency--item {
    padding: 4rem;
  }
}
.agency--item:hover .agency--item__button, .agency--item:focus .agency--item__button, .agency--item:active .agency--item__button {
  color: #ffffff;
  background-color: #1746AF;
  border-color: #1746AF;
}

.agency--item__logo {
  width: 100%;
  max-width: 20rem;
  height: 8rem;
  display: flex;
  align-items: center;
}
.agency--item__logo img {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.agency--item__content {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.agency--item__title {
  margin-bottom: 1rem;
  margin-top: clamp(3rem, 4vw, 5rem);
  font-size: clamp(3rem, 1.7vw, 3.5rem);
  line-height: clamp(3.5rem, 4vw, 4.5rem);
  transition: color 0.45s;
  color: #1746AF;
}

.agency--item__tag {
  font-style: italic;
  font-size: clamp(1.6rem, 1.5vw, 1.8rem);
  font-weight: 600;
}

.agency--item__description {
  font-size: clamp(1.4rem, 1.5vw, 1.4rem);
  line-height: clamp(2.4rem, 2.5vw, 2.6rem);
  margin-bottom: 3rem;
  color: rgba(38, 33, 33, 0.8);
}

.agency--item__link {
  position: absolute;
  inset: 0;
  z-index: 3;
}

.agency--item__button {
  margin-top: auto;
  align-self: flex-start;
}
.agency--item__button span {
  font-size: 1.6rem;
}

.keyfigure--item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.keyfigure--item__number {
  font-family: "Rethink Sans", Arial, sans-serif;
  font-size: clamp(4rem, 4vw, 5rem);
  line-height: clamp(5rem, 5vw, 6rem);
  color: #051028;
  white-space: nowrap;
  letter-spacing: normal;
  color: #1746AF;
}

.keyfigure--item__label {
  font-size: 1.7rem;
  line-height: 2.7rem;
  font-family: "Rethink Sans", Arial, sans-serif;
  color: #5B6768;
  position: relative;
}
@media (max-width: 575px) {
  .keyfigure--item__label {
    text-align: center;
  }
}

.blog--item {
  position: relative;
}
.blog--item:hover .blog--item__title, .blog--item:focus .blog--item__title, .blog--item:active .blog--item__title {
  color: #1746AF;
}
.blog--item:hover img, .blog--item:focus img, .blog--item:active img {
  transform: scale(1);
}

.blog--item__top {
  position: relative;
  height: auto;
  display: flex;
}

.blog--item__image {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 65%;
  border-radius: 1rem;
}
.blog--item__image img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1.07);
  transition: transform 0.45s;
  border-radius: 1rem;
}

.blog--item__category {
  position: absolute;
  left: 1.75rem;
  bottom: 1.75rem;
  z-index: 1;
}

.blog--item__category--tag {
  padding: 0.8rem 1.5rem;
  font-size: 1.4rem;
  font-family: "Rethink Sans", Arial, sans-serif;
  color: #ffffff;
  background: #1746AF;
  border-radius: 5rem;
}

.blog--item__title {
  margin: 2rem 0 1rem;
  font: 600 clamp(2.25rem, 2.5vw, 2.75rem) "Rethink Sans", Arial, sans-serif;
  line-height: clamp(3.25rem, 3.5vw, 3.75rem);
  letter-spacing: -0.1rem;
  transition: color 0.45s;
}

.blog--item__date {
  font-size: 1.6rem;
  line-height: 2.6rem;
  opacity: 0.8;
}

.blog--item__link {
  position: absolute;
  inset: 0;
  z-index: 3;
}

.breadcrumbs {
  margin-top: 2rem;
}
.breadcrumbs ol {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.breadcrumbs ol li {
  margin-bottom: 0;
  display: flex;
  align-items: center;
}
.breadcrumbs ol li a {
  color: #262121;
  font-size: 1rem;
  line-height: 2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  text-decoration: none;
  transition: color 0.3s;
}
.breadcrumbs ol li a:hover, .breadcrumbs ol li a:active, .breadcrumbs ol li a:focus {
  color: #1746AF;
}
.breadcrumbs ol li span {
  color: rgba(38, 33, 33, 0.8);
  font-size: 1.2rem;
  line-height: 1.75rem;
  text-align: center;
}

.breadcrumb-separator {
  color: #262121;
}
.breadcrumb-separator svg {
  width: 1.15rem;
  height: 1.15rem;
}

.pagination {
  margin: 6rem 0 0;
  display: flex;
  justify-content: center;
}

.page-numbers {
  min-width: 4rem;
  min-height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.6rem;
  text-decoration: none;
  margin: 0 0.5rem;
  transition: all ease 0.3s;
}
.page-numbers:hover, .page-numbers:active, .page-numbers:focus {
  color: #ffffff;
  background: #1746AF;
  text-decoration: none;
}
.page-numbers:hover.next svg, .page-numbers:active.next svg, .page-numbers:focus.next svg {
  transform: rotateZ(45deg);
}
.page-numbers:hover.prev svg, .page-numbers:active.prev svg, .page-numbers:focus.prev svg {
  transform: rotateZ(-45deg);
}
.page-numbers.current {
  color: #ffffff;
  background: #1746AF;
}
.page-numbers.next svg, .page-numbers.prev svg {
  width: 2rem;
  height: 2rem;
  transition: all ease 0.3s;
}

.slider--navigation {
  display: flex;
  margin-top: 4rem;
}

.slider--navigation__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  color: rgba(38, 33, 33, 0.7);
  padding: 0.75rem;
  text-align: center;
  border: 0.1rem solid rgba(38, 33, 33, 0.7);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}
.slider--navigation__button:first-of-type {
  margin-right: 2rem;
}
.slider--navigation__button:hover {
  color: #1746AF;
  border-color: #1746AF;
}
.slider--navigation__button.swiper-button-disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}
.slider--navigation__button.swiper-button-disabled:hover {
  color: rgba(38, 33, 33, 0.7);
  border-color: rgba(38, 33, 33, 0.7);
  opacity: 0.3;
}

input[type=number] {
  -moz-appearance: textfield;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 3rem #ffffff inset;
  color: #000000;
}

::-ms-clear {
  display: none;
}

::-ms-reveal {
  display: none;
}

input[type=text], textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

::-webkit-input-placeholder {
  color: rgab(#000000, 0.7);
}

::-moz-placeholder {
  color: rgab(#000000, 0.7);
}

:-ms-input-placeholder {
  color: rgab(#000000, 0.7);
}

:-moz-placeholder {
  color: rgab(#000000, 0.7);
}

textarea,
input[type=text],
input[type=tel],
input[type=url],
input[type=file],
input[type=date],
input[type=email],
input[type=password] {
  display: inline-block;
  width: 100%;
  padding: 0.8rem 2.25rem;
  font-size: 1.6rem;
  color: rgba(38, 33, 33, 0.8);
  line-height: inherit;
  vertical-align: middle;
  box-shadow: 0 0 0 0.1rem rgba(38, 33, 33, 0.2) inset;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #ffffff;
  border-radius: 3rem;
  transition: box-shadow 0.2s ease-in-out;
}
textarea:hover, textarea:focus, textarea:active,
input[type=text]:hover,
input[type=text]:focus,
input[type=text]:active,
input[type=tel]:hover,
input[type=tel]:focus,
input[type=tel]:active,
input[type=url]:hover,
input[type=url]:focus,
input[type=url]:active,
input[type=file]:hover,
input[type=file]:focus,
input[type=file]:active,
input[type=date]:hover,
input[type=date]:focus,
input[type=date]:active,
input[type=email]:hover,
input[type=email]:focus,
input[type=email]:active,
input[type=password]:hover,
input[type=password]:focus,
input[type=password]:active {
  outline: none;
  box-shadow: 0 0 0 0.1rem #1746AF inset;
}
textarea.just-validate-error-field,
input[type=text].just-validate-error-field,
input[type=tel].just-validate-error-field,
input[type=url].just-validate-error-field,
input[type=file].just-validate-error-field,
input[type=date].just-validate-error-field,
input[type=email].just-validate-error-field,
input[type=password].just-validate-error-field {
  box-shadow: 0 0 0 0.1rem #b91919 inset;
}

input[type=checkbox] {
  height: 2rem;
  width: 2rem;
  margin-right: 1rem;
  cursor: pointer;
  padding: 0;
  position: relative;
  border-radius: 0.4rem;
  outline: 0;
}
input[type=checkbox].just-validate-error-field {
  box-shadow: 0 0 0 0.1rem #b91919 inset;
}

label {
  color: #262121;
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  font-weight: bold;
}

.required {
  color: #b91919;
}

textarea {
  height: 20rem;
  overflow: hidden;
  resize: none;
}

.form--label {
  margin-left: 1.5rem;
  margin-bottom: 0.75rem;
  font-size: 1.8rem;
}

.form--label__checkbox-single {
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.form--field__checkbox-list {
  padding: 0;
}
.form--field__checkbox-list > .form--label {
  color: #262121;
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  font-weight: bold;
  margin-bottom: 0;
  padding: 0;
}
.form--field__checkbox-list .form--input {
  margin-bottom: 1rem;
}

.form--checkbox-list__label {
  font-weight: normal;
  font-size: 1.6rem;
  line-height: 2.2rem;
  margin-left: 1.5rem;
}

.form--field__recaptcha p {
  margin-bottom: 0;
  font-size: 1.2rem;
  line-height: 2rem;
  font-style: italic;
  margin-left: 1.5rem;
}

.just-validate-error-label {
  font-size: 1.4rem;
  line-height: 2.4rem;
  margin-left: 1.5rem;
  color: #b91919;
}

.form--error__consent {
  margin-left: 0;
}

.form--notice {
  margin-bottom: 3rem;
  padding: 1.5rem;
  font-size: 1.8rem;
  color: #ffffff;
  border-radius: 1rem;
}
.form--notice__error {
  background-color: #b91919;
}
.form--notice__success {
  background-color: #0e9e0e;
}

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

select {
  display: inline-block;
  width: 100%;
  padding: 0.8rem 4rem 0.8rem 2.25rem;
  font-size: 1.6rem;
  color: rgba(38, 33, 33, 0.8);
  line-height: inherit;
  vertical-align: middle;
  box-shadow: 0 0 0 0.1rem rgba(38, 33, 33, 0.2) inset;
  background-color: #ffffff;
  border-radius: 3rem;
  transition: box-shadow 0.2s ease-in-out;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  position: relative;
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='8' viewBox='0 0 14 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%23aaa' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.75rem center;
  background-size: 1.4rem auto;
}
select:hover, select:focus, select:active {
  outline: none;
  box-shadow: 0 0 0 0.1rem #1746AF inset;
}
select.just-validate-error-field {
  box-shadow: 0 0 0 0.1rem #b91919 inset;
}
select option {
  color: #262121;
  background: #ffffff;
}

.marquee--container {
  position: relative;
  overflow: hidden;
}

.marquee--track {
  display: flex;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  flex-wrap: nowrap;
  gap: 3rem;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}
@media (min-width: 992px) {
  .marquee--track {
    gap: 4rem;
  }
}

.marquee--track > * {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}

.country-selector.weglot-dropdown {
  margin-left: 2rem;
  background-color: transparent !important;
}

.country-selector.weglot-dropdown .wgcurrent {
  border-radius: 1rem;
  border-color: rgba(38, 33, 33, 0.3);
}

.country-selector.weglot-dropdown .wgcurrent a,
.country-selector.weglot-dropdown .wgcurrent span,
.country-selector.weglot-dropdown a,
.country-selector.weglot-dropdown span {
  padding-right: 20px !important;
  font-size: 10px !important;
  letter-spacing: 1px;
  color: #262121;
  height: 28px !important;
  display: flex !important;
  align-items: center !important;
}

.country-selector.weglot-dropdown ul {
  border-radius: 1rem;
}

.country-selector.weglot-dropdown .wgcurrent:after {
  right: 5px !important;
  background-size: cover;
  width: 10px !important;
  height: 5px !important;
  top: 13px !important;
}

.weglot-flags > a:before, .weglot-flags > span.wglanguage-name:before,
.weglot-flags.flag-0.wg-en > a:before, .weglot-flags.flag-0.wg-en > span:before,
.weglot-flags.flag-0.wg-fr > a:before, .weglot-flags.flag-0.wg-fr > span:before {
  width: 20px !important;
  background-size: contain !important;
  height: 15px !important;
  background-repeat: no-repeat;
}

.country-selector.weglot-dropdown a:hover,
.country-selector.weglot-dropdown a:active,
.country-selector.weglot-dropdown a:focus,
.country-selector.weglot-dropdown span:hover,
.country-selector.weglot-dropdown span:active,
.country-selector.weglot-dropdown span:focus {
  text-decoration: none;
}

.page--maintenance {
  position: relative;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.page--maintenance_sub {
  max-width: 50rem;
  position: relative;
  z-index: 2;
  padding: 2rem;
  background-color: #ffffff;
  box-shadow: 0 0.2rem 1.2rem 0 rgba(0, 0, 0, 0.1);
}
.page--maintenance img {
  max-width: 35rem;
  margin-bottom: 1rem;
  padding: 1.5rem 2rem;
}
.page--maintenance h1 {
  margin-bottom: 1rem;
}
.page--maintenance [class*=btn] {
  width: 100%;
}

.page-template-page-about .section--about-presentation + .section--text {
  background-color: #7298ED;
}
/*# sourceMappingURL=styles.css.map */
