@charset "UTF-8";
/*
Theme Name: Thème Adapeila
Theme URI: 
Author: B17
Author URI: https://b17.fr
Description: Thème Adapeila
Requires at least: 6.5
Tested up to: 6.5
Requires PHP: 8.0
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: q-base
*/
/****************************************************************************/
/* BASE
/****************************************************************************/
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  scroll-behavior: smooth;
}

/****************************************************************************/
/* UTILS
/****************************************************************************/
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
}

/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* 2. Remove default margin */
* {
  margin: 0;
}

body {
  /* 3. Add accessible line-height */
  line-height: 1.5;
  /* 4. Improve text rendering */
  -webkit-font-smoothing: antialiased;
}

/* 5. Improve media defaults */
img,
picture,
video,
canvas,
svg {
  max-width: 100%;
  vertical-align: middle;
}

/* 6. Inherit fonts for form controls */
input,
button,
textarea,
select {
  font: inherit;
}

/* 7. Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

/* 8. Improve line wrapping */
p {
  text-wrap: pretty;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  text-wrap: balance;
}

/* ==========================================================================
    Grid System Variables
   ========================================================================== */
:root {
  --grid-gutter: 15px;
  --grid-max-width: 1352px;
  --grid-breakpoint-sm: 576px;
  --grid-breakpoint-md: 768px;
  --grid-breakpoint-lg: 992px;
  --grid-breakpoint-xl: 1200px;
}

/* ==========================================================================
    Container Styles
   ========================================================================== */
.container,
.container-fluid {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 var(--grid-gutter);
}

/* Container Breakpoints */
@media (min-width: 1400px) {
  .container {
    max-width: 1352px;
  }
}
.container-sm {
  max-width: 740px;
}

.container-lg {
  max-width: 1400px;
}

.container-full {
  max-width: none;
  padding: 0;
}

.max-w-xxl {
  max-width: 1920px;
}

.max-w-xl {
  max-width: var(--wp--style--global--wide-size);
}

.max-w-lg {
  max-width: var(--wp--style--global--content-size);
}

.max-w-md {
  max-width: 960px;
}

.max-w-sm {
  max-width: 720px;
}

.w-100 {
  width: 100%;
}

/* ==========================================================================
    Row Layout System
   ========================================================================== */
.u--flex {
  display: flex;
}

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

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

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

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

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

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

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

.u--flex-direction--column,
.u--flex-column {
  flex-direction: column;
}

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

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

[data-row] {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: calc(100% + 30px);
  margin-left: calc(var(--grid-gutter) * -1);
  margin-right: calc(var(--grid-gutter) * -1);
}

/* Row Gap Variations */
[data-row*=gap-sm] {
  gap: 15px;
}

[data-row*=gap-lg] {
  gap: 45px;
}

[data-row*=gap-none] {
  gap: 0;
}

/* Horizontal Alignment */
[data-row=right] {
  justify-content: flex-end;
}

[data-row=center] {
  justify-content: center;
}

[data-row=space-between] {
  justify-content: space-between;
}

[data-row=space-evenly] {
  justify-content: space-evenly;
}

[data-row=space-around] {
  justify-content: space-around;
}

/* Vertical Alignment */
[data-row=top] {
  align-items: flex-start;
}

[data-row=middle] {
  align-items: center;
  height: 100%;
}

[data-row=bottom] {
  align-items: flex-end;
  height: 100%;
}

/* Combined Alignments */
[data-row="center middle"],
[data-row="right middle"],
[data-row="space-evenly middle"],
[data-row="space-between middle"] {
  align-items: center;
  height: 100%;
}

[data-row="center middle"] {
  justify-content: center;
}

[data-row="right middle"] {
  justify-content: flex-end;
}

[data-row="space-evenly middle"] {
  justify-content: space-evenly;
}

[data-row="space-between middle"] {
  justify-content: space-between;
}

[data-row="space-between bottom"] {
  align-items: flex-end;
  justify-content: space-between;
  height: 100%;
}

/* Direction Control */
[data-row=reverse],
[data-row="reverse middle"] {
  flex-direction: row-reverse;
}

[data-row="reverse middle"] {
  align-items: center;
  height: 100%;
}

/* Nested Rows */
[data-row] [data-row] {
  margin-left: calc(var(--grid-gutter) * -1);
  margin-right: calc(var(--grid-gutter) * -1);
  width: calc(100% + var(--grid-gutter) * 2);
}

/* ==========================================================================
   Column System
   ========================================================================== */
[data-col] {
  box-sizing: border-box;
  flex: 0 1 auto;
  align-self: auto;
  position: relative;
  min-width: 0;
  padding: 0 var(--grid-gutter);
}

/* Column Sizing Utilities */
[data-col=auto] {
  flex: 0 0 auto;
  width: auto;
}

[data-col=grow] {
  flex: 1 1 0;
  width: auto;
}

/* ==========================================================================
   Grid System
   ========================================================================== */
[data-grid] {
  display: grid;
  gap: 30px;
  padding: 0 var(--grid-gutter);
}

[data-grid=auto-fit] {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

[data-grid=auto-fill] {
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}

/* ==========================================================================
   Responsive Utilities
   ========================================================================== */
@media screen and (max-width: 992px) {
  [data-hide=mobile] {
    display: none;
  }
}

@media screen and (min-width: 992px) {
  [data-hide=desktop] {
    display: none;
  }
}

/* ==========================================================================
   Column Fractions
   ========================================================================== */
/* Generate 12-column grid */
[data-col="1/12"] {
  flex-basis: 8.3333333333%;
}

.ie [data-col="1/12"] {
  max-width: 8.3333333333%;
}

[data-col-offset="1/12"] {
  margin-left: 8.3333333333%;
}

[data-col="2/12"] {
  flex-basis: 16.6666666667%;
}

.ie [data-col="2/12"] {
  max-width: 16.6666666667%;
}

[data-col-offset="2/12"] {
  margin-left: 16.6666666667%;
}

[data-col="3/12"] {
  flex-basis: 25%;
}

.ie [data-col="3/12"] {
  max-width: 25%;
}

[data-col-offset="3/12"] {
  margin-left: 25%;
}

[data-col="4/12"] {
  flex-basis: 33.3333333333%;
}

.ie [data-col="4/12"] {
  max-width: 33.3333333333%;
}

[data-col-offset="4/12"] {
  margin-left: 33.3333333333%;
}

[data-col="5/12"] {
  flex-basis: 41.6666666667%;
}

.ie [data-col="5/12"] {
  max-width: 41.6666666667%;
}

[data-col-offset="5/12"] {
  margin-left: 41.6666666667%;
}

[data-col="6/12"] {
  flex-basis: 50%;
}

.ie [data-col="6/12"] {
  max-width: 50%;
}

[data-col-offset="6/12"] {
  margin-left: 50%;
}

[data-col="7/12"] {
  flex-basis: 58.3333333333%;
}

.ie [data-col="7/12"] {
  max-width: 58.3333333333%;
}

[data-col-offset="7/12"] {
  margin-left: 58.3333333333%;
}

[data-col="8/12"] {
  flex-basis: 66.6666666667%;
}

.ie [data-col="8/12"] {
  max-width: 66.6666666667%;
}

[data-col-offset="8/12"] {
  margin-left: 66.6666666667%;
}

[data-col="9/12"] {
  flex-basis: 75%;
}

.ie [data-col="9/12"] {
  max-width: 75%;
}

[data-col-offset="9/12"] {
  margin-left: 75%;
}

[data-col="10/12"] {
  flex-basis: 83.3333333333%;
}

.ie [data-col="10/12"] {
  max-width: 83.3333333333%;
}

[data-col-offset="10/12"] {
  margin-left: 83.3333333333%;
}

[data-col="11/12"] {
  flex-basis: 91.6666666667%;
}

.ie [data-col="11/12"] {
  max-width: 91.6666666667%;
}

[data-col-offset="11/12"] {
  margin-left: 91.6666666667%;
}

[data-col="12/12"] {
  flex-basis: 100%;
}

.ie [data-col="12/12"] {
  max-width: 100%;
}

[data-col-offset="12/12"] {
  margin-left: 100%;
}

/* Common Fractions */
[data-col="1/2"] {
  flex-basis: 50%;
}

[data-col="1/3"] {
  flex-basis: 33.33333%;
}

[data-col="2/3"] {
  flex-basis: 66.66667%;
}

[data-col="1/4"] {
  flex-basis: 25%;
}

[data-col="3/4"] {
  flex-basis: 75%;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media screen and (min-width: 768px) {
  [data-row=nowrap] {
    flex-wrap: nowrap;
  }
  [data-row=nowrap] [data-col] {
    flex: 1;
  }
}
@media screen and (max-width: 991px) {
  [data-col-offset] {
    margin-left: 0;
  }
  /* Tablet-specific columns */
  [data-tab-col="1/12"] {
    flex-basis: 8.3333333333%;
  }
  [data-tab-col-offset="1/12"] {
    margin-left: 8.3333333333%;
  }
  [data-tab-col="2/12"] {
    flex-basis: 16.6666666667%;
  }
  [data-tab-col-offset="2/12"] {
    margin-left: 16.6666666667%;
  }
  [data-tab-col="3/12"] {
    flex-basis: 25%;
  }
  [data-tab-col-offset="3/12"] {
    margin-left: 25%;
  }
  [data-tab-col="4/12"] {
    flex-basis: 33.3333333333%;
  }
  [data-tab-col-offset="4/12"] {
    margin-left: 33.3333333333%;
  }
  [data-tab-col="5/12"] {
    flex-basis: 41.6666666667%;
  }
  [data-tab-col-offset="5/12"] {
    margin-left: 41.6666666667%;
  }
  [data-tab-col="6/12"] {
    flex-basis: 50%;
  }
  [data-tab-col-offset="6/12"] {
    margin-left: 50%;
  }
  [data-tab-col="7/12"] {
    flex-basis: 58.3333333333%;
  }
  [data-tab-col-offset="7/12"] {
    margin-left: 58.3333333333%;
  }
  [data-tab-col="8/12"] {
    flex-basis: 66.6666666667%;
  }
  [data-tab-col-offset="8/12"] {
    margin-left: 66.6666666667%;
  }
  [data-tab-col="9/12"] {
    flex-basis: 75%;
  }
  [data-tab-col-offset="9/12"] {
    margin-left: 75%;
  }
  [data-tab-col="10/12"] {
    flex-basis: 83.3333333333%;
  }
  [data-tab-col-offset="10/12"] {
    margin-left: 83.3333333333%;
  }
  [data-tab-col="11/12"] {
    flex-basis: 91.6666666667%;
  }
  [data-tab-col-offset="11/12"] {
    margin-left: 91.6666666667%;
  }
  [data-tab-col="12/12"] {
    flex-basis: 100%;
  }
  [data-tab-col-offset="12/12"] {
    margin-left: 100%;
  }
}
/* Tablet-specific styles */
@media screen and (min-width: 768px) and (max-width: 991px) {
  /* ... existing tablet styles ... */
}
@media screen and (max-width: 767px) {
  /* Tablet-specific columns */
  [data-mobile-col="1/12"] {
    flex-basis: 8.3333333333%;
  }
  [data-mobile-col-offset="1/12"] {
    margin-left: 8.3333333333%;
  }
  [data-mobile-col="2/12"] {
    flex-basis: 16.6666666667%;
  }
  [data-mobile-col-offset="2/12"] {
    margin-left: 16.6666666667%;
  }
  [data-mobile-col="3/12"] {
    flex-basis: 25%;
  }
  [data-mobile-col-offset="3/12"] {
    margin-left: 25%;
  }
  [data-mobile-col="4/12"] {
    flex-basis: 33.3333333333%;
  }
  [data-mobile-col-offset="4/12"] {
    margin-left: 33.3333333333%;
  }
  [data-mobile-col="5/12"] {
    flex-basis: 41.6666666667%;
  }
  [data-mobile-col-offset="5/12"] {
    margin-left: 41.6666666667%;
  }
  [data-mobile-col="6/12"] {
    flex-basis: 50%;
  }
  [data-mobile-col-offset="6/12"] {
    margin-left: 50%;
  }
  [data-mobile-col="7/12"] {
    flex-basis: 58.3333333333%;
  }
  [data-mobile-col-offset="7/12"] {
    margin-left: 58.3333333333%;
  }
  [data-mobile-col="8/12"] {
    flex-basis: 66.6666666667%;
  }
  [data-mobile-col-offset="8/12"] {
    margin-left: 66.6666666667%;
  }
  [data-mobile-col="9/12"] {
    flex-basis: 75%;
  }
  [data-mobile-col-offset="9/12"] {
    margin-left: 75%;
  }
  [data-mobile-col="10/12"] {
    flex-basis: 83.3333333333%;
  }
  [data-mobile-col-offset="10/12"] {
    margin-left: 83.3333333333%;
  }
  [data-mobile-col="11/12"] {
    flex-basis: 91.6666666667%;
  }
  [data-mobile-col-offset="11/12"] {
    margin-left: 91.6666666667%;
  }
  [data-mobile-col="12/12"] {
    flex-basis: 100%;
  }
  [data-mobile-col-offset="12/12"] {
    margin-left: 100%;
  }
}
.m--0 {
  margin: 0;
}

.m--tb-0 {
  margin-top: 0;
  margin-bottom: 0;
}

.m--lr-0 {
  margin-left: 0;
  margin-right: 0;
}

.m--t-0 {
  margin-top: 0;
}

.m--b-0 {
  margin-bottom: 0;
}

.m--l-0 {
  margin-left: 0;
}

.m--r-0 {
  margin-right: 0;
}

.m--5 {
  margin: 5px;
}

.m--tb-5 {
  margin-top: 5px;
  margin-bottom: 5px;
}

.m--lr-5 {
  margin-left: 5px;
  margin-right: 5px;
}

.m--t-5 {
  margin-top: 5px;
}

.m--b-5 {
  margin-bottom: 5px;
}

.m--l-5 {
  margin-left: 5px;
}

.m--r-5 {
  margin-right: 5px;
}

.m--10 {
  margin: 10px;
}

.m--tb-10 {
  margin-top: 10px;
  margin-bottom: 10px;
}

.m--lr-10 {
  margin-left: 10px;
  margin-right: 10px;
}

.m--t-10 {
  margin-top: 10px;
}

.m--b-10 {
  margin-bottom: 10px;
}

.m--l-10 {
  margin-left: 10px;
}

.m--r-10 {
  margin-right: 10px;
}

.m--15 {
  margin: 15px;
}

.m--tb-15 {
  margin-top: 15px;
  margin-bottom: 15px;
}

.m--lr-15 {
  margin-left: 15px;
  margin-right: 15px;
}

.m--t-15 {
  margin-top: 15px;
}

.m--b-15 {
  margin-bottom: 15px;
}

.m--l-15 {
  margin-left: 15px;
}

.m--r-15 {
  margin-right: 15px;
}

.m--20 {
  margin: 20px;
}

.m--tb-20 {
  margin-top: 20px;
  margin-bottom: 20px;
}

.m--lr-20 {
  margin-left: 20px;
  margin-right: 20px;
}

.m--t-20 {
  margin-top: 20px;
}

.m--b-20 {
  margin-bottom: 20px;
}

.m--l-20 {
  margin-left: 20px;
}

.m--r-20 {
  margin-right: 20px;
}

.m--25 {
  margin: 25px;
}

.m--tb-25 {
  margin-top: 25px;
  margin-bottom: 25px;
}

.m--lr-25 {
  margin-left: 25px;
  margin-right: 25px;
}

.m--t-25 {
  margin-top: 25px;
}

.m--b-25 {
  margin-bottom: 25px;
}

.m--l-25 {
  margin-left: 25px;
}

.m--r-25 {
  margin-right: 25px;
}

.m--30 {
  margin: 30px;
}

.m--tb-30 {
  margin-top: 30px;
  margin-bottom: 30px;
}

.m--lr-30 {
  margin-left: 30px;
  margin-right: 30px;
}

.m--t-30 {
  margin-top: 30px;
}

.m--b-30 {
  margin-bottom: 30px;
}

.m--l-30 {
  margin-left: 30px;
}

.m--r-30 {
  margin-right: 30px;
}

.m--35 {
  margin: 35px;
}

.m--tb-35 {
  margin-top: 35px;
  margin-bottom: 35px;
}

.m--lr-35 {
  margin-left: 35px;
  margin-right: 35px;
}

.m--t-35 {
  margin-top: 35px;
}

.m--b-35 {
  margin-bottom: 35px;
}

.m--l-35 {
  margin-left: 35px;
}

.m--r-35 {
  margin-right: 35px;
}

.m--40 {
  margin: 40px;
}

.m--tb-40 {
  margin-top: 40px;
  margin-bottom: 40px;
}

.m--lr-40 {
  margin-left: 40px;
  margin-right: 40px;
}

.m--t-40 {
  margin-top: 40px;
}

.m--b-40 {
  margin-bottom: 40px;
}

.m--l-40 {
  margin-left: 40px;
}

.m--r-40 {
  margin-right: 40px;
}

.m--45 {
  margin: 45px;
}

.m--tb-45 {
  margin-top: 45px;
  margin-bottom: 45px;
}

.m--lr-45 {
  margin-left: 45px;
  margin-right: 45px;
}

.m--t-45 {
  margin-top: 45px;
}

.m--b-45 {
  margin-bottom: 45px;
}

.m--l-45 {
  margin-left: 45px;
}

.m--r-45 {
  margin-right: 45px;
}

.m--50 {
  margin: 50px;
}

.m--tb-50 {
  margin-top: 50px;
  margin-bottom: 50px;
}

.m--lr-50 {
  margin-left: 50px;
  margin-right: 50px;
}

.m--t-50 {
  margin-top: 50px;
}

.m--b-50 {
  margin-bottom: 50px;
}

.m--l-50 {
  margin-left: 50px;
}

.m--r-50 {
  margin-right: 50px;
}

.m--55 {
  margin: 55px;
}

.m--tb-55 {
  margin-top: 55px;
  margin-bottom: 55px;
}

.m--lr-55 {
  margin-left: 55px;
  margin-right: 55px;
}

.m--t-55 {
  margin-top: 55px;
}

.m--b-55 {
  margin-bottom: 55px;
}

.m--l-55 {
  margin-left: 55px;
}

.m--r-55 {
  margin-right: 55px;
}

.m--60 {
  margin: 60px;
}

.m--tb-60 {
  margin-top: 60px;
  margin-bottom: 60px;
}

.m--lr-60 {
  margin-left: 60px;
  margin-right: 60px;
}

.m--t-60 {
  margin-top: 60px;
}

.m--b-60 {
  margin-bottom: 60px;
}

.m--l-60 {
  margin-left: 60px;
}

.m--r-60 {
  margin-right: 60px;
}

.m--65 {
  margin: 65px;
}

.m--tb-65 {
  margin-top: 65px;
  margin-bottom: 65px;
}

.m--lr-65 {
  margin-left: 65px;
  margin-right: 65px;
}

.m--t-65 {
  margin-top: 65px;
}

.m--b-65 {
  margin-bottom: 65px;
}

.m--l-65 {
  margin-left: 65px;
}

.m--r-65 {
  margin-right: 65px;
}

.m--70 {
  margin: 70px;
}

.m--tb-70 {
  margin-top: 70px;
  margin-bottom: 70px;
}

.m--lr-70 {
  margin-left: 70px;
  margin-right: 70px;
}

.m--t-70 {
  margin-top: 70px;
}

.m--b-70 {
  margin-bottom: 70px;
}

.m--l-70 {
  margin-left: 70px;
}

.m--r-70 {
  margin-right: 70px;
}

.m--75 {
  margin: 75px;
}

.m--tb-75 {
  margin-top: 75px;
  margin-bottom: 75px;
}

.m--lr-75 {
  margin-left: 75px;
  margin-right: 75px;
}

.m--t-75 {
  margin-top: 75px;
}

.m--b-75 {
  margin-bottom: 75px;
}

.m--l-75 {
  margin-left: 75px;
}

.m--r-75 {
  margin-right: 75px;
}

.m--80 {
  margin: 80px;
}

.m--tb-80 {
  margin-top: 80px;
  margin-bottom: 80px;
}

.m--lr-80 {
  margin-left: 80px;
  margin-right: 80px;
}

.m--t-80 {
  margin-top: 80px;
}

.m--b-80 {
  margin-bottom: 80px;
}

.m--l-80 {
  margin-left: 80px;
}

.m--r-80 {
  margin-right: 80px;
}

.m--85 {
  margin: 85px;
}

.m--tb-85 {
  margin-top: 85px;
  margin-bottom: 85px;
}

.m--lr-85 {
  margin-left: 85px;
  margin-right: 85px;
}

.m--t-85 {
  margin-top: 85px;
}

.m--b-85 {
  margin-bottom: 85px;
}

.m--l-85 {
  margin-left: 85px;
}

.m--r-85 {
  margin-right: 85px;
}

.m--90 {
  margin: 90px;
}

.m--tb-90 {
  margin-top: 90px;
  margin-bottom: 90px;
}

.m--lr-90 {
  margin-left: 90px;
  margin-right: 90px;
}

.m--t-90 {
  margin-top: 90px;
}

.m--b-90 {
  margin-bottom: 90px;
}

.m--l-90 {
  margin-left: 90px;
}

.m--r-90 {
  margin-right: 90px;
}

.m--95 {
  margin: 95px;
}

.m--tb-95 {
  margin-top: 95px;
  margin-bottom: 95px;
}

.m--lr-95 {
  margin-left: 95px;
  margin-right: 95px;
}

.m--t-95 {
  margin-top: 95px;
}

.m--b-95 {
  margin-bottom: 95px;
}

.m--l-95 {
  margin-left: 95px;
}

.m--r-95 {
  margin-right: 95px;
}

.m--100 {
  margin: 100px;
}

.m--tb-100 {
  margin-top: 100px;
  margin-bottom: 100px;
}

.m--lr-100 {
  margin-left: 100px;
  margin-right: 100px;
}

.m--t-100 {
  margin-top: 100px;
}

.m--b-100 {
  margin-bottom: 100px;
}

.m--l-100 {
  margin-left: 100px;
}

.m--r-100 {
  margin-right: 100px;
}

.m--105 {
  margin: 105px;
}

.m--tb-105 {
  margin-top: 105px;
  margin-bottom: 105px;
}

.m--lr-105 {
  margin-left: 105px;
  margin-right: 105px;
}

.m--t-105 {
  margin-top: 105px;
}

.m--b-105 {
  margin-bottom: 105px;
}

.m--l-105 {
  margin-left: 105px;
}

.m--r-105 {
  margin-right: 105px;
}

.m--110 {
  margin: 110px;
}

.m--tb-110 {
  margin-top: 110px;
  margin-bottom: 110px;
}

.m--lr-110 {
  margin-left: 110px;
  margin-right: 110px;
}

.m--t-110 {
  margin-top: 110px;
}

.m--b-110 {
  margin-bottom: 110px;
}

.m--l-110 {
  margin-left: 110px;
}

.m--r-110 {
  margin-right: 110px;
}

.m--115 {
  margin: 115px;
}

.m--tb-115 {
  margin-top: 115px;
  margin-bottom: 115px;
}

.m--lr-115 {
  margin-left: 115px;
  margin-right: 115px;
}

.m--t-115 {
  margin-top: 115px;
}

.m--b-115 {
  margin-bottom: 115px;
}

.m--l-115 {
  margin-left: 115px;
}

.m--r-115 {
  margin-right: 115px;
}

.m--120 {
  margin: 120px;
}

.m--tb-120 {
  margin-top: 120px;
  margin-bottom: 120px;
}

.m--lr-120 {
  margin-left: 120px;
  margin-right: 120px;
}

.m--t-120 {
  margin-top: 120px;
}

.m--b-120 {
  margin-bottom: 120px;
}

.m--l-120 {
  margin-left: 120px;
}

.m--r-120 {
  margin-right: 120px;
}

.m--125 {
  margin: 125px;
}

.m--tb-125 {
  margin-top: 125px;
  margin-bottom: 125px;
}

.m--lr-125 {
  margin-left: 125px;
  margin-right: 125px;
}

.m--t-125 {
  margin-top: 125px;
}

.m--b-125 {
  margin-bottom: 125px;
}

.m--l-125 {
  margin-left: 125px;
}

.m--r-125 {
  margin-right: 125px;
}

.m--130 {
  margin: 130px;
}

.m--tb-130 {
  margin-top: 130px;
  margin-bottom: 130px;
}

.m--lr-130 {
  margin-left: 130px;
  margin-right: 130px;
}

.m--t-130 {
  margin-top: 130px;
}

.m--b-130 {
  margin-bottom: 130px;
}

.m--l-130 {
  margin-left: 130px;
}

.m--r-130 {
  margin-right: 130px;
}

.m--135 {
  margin: 135px;
}

.m--tb-135 {
  margin-top: 135px;
  margin-bottom: 135px;
}

.m--lr-135 {
  margin-left: 135px;
  margin-right: 135px;
}

.m--t-135 {
  margin-top: 135px;
}

.m--b-135 {
  margin-bottom: 135px;
}

.m--l-135 {
  margin-left: 135px;
}

.m--r-135 {
  margin-right: 135px;
}

.m--140 {
  margin: 140px;
}

.m--tb-140 {
  margin-top: 140px;
  margin-bottom: 140px;
}

.m--lr-140 {
  margin-left: 140px;
  margin-right: 140px;
}

.m--t-140 {
  margin-top: 140px;
}

.m--b-140 {
  margin-bottom: 140px;
}

.m--l-140 {
  margin-left: 140px;
}

.m--r-140 {
  margin-right: 140px;
}

.m--145 {
  margin: 145px;
}

.m--tb-145 {
  margin-top: 145px;
  margin-bottom: 145px;
}

.m--lr-145 {
  margin-left: 145px;
  margin-right: 145px;
}

.m--t-145 {
  margin-top: 145px;
}

.m--b-145 {
  margin-bottom: 145px;
}

.m--l-145 {
  margin-left: 145px;
}

.m--r-145 {
  margin-right: 145px;
}

.m--150 {
  margin: 150px;
}

.m--tb-150 {
  margin-top: 150px;
  margin-bottom: 150px;
}

.m--lr-150 {
  margin-left: 150px;
  margin-right: 150px;
}

.m--t-150 {
  margin-top: 150px;
}

.m--b-150 {
  margin-bottom: 150px;
}

.m--l-150 {
  margin-left: 150px;
}

.m--r-150 {
  margin-right: 150px;
}

.m--lr-auto {
  margin-right: auto;
}

.m--l-auto, .m--lr-auto {
  margin-left: auto;
}

.m--r-auto {
  margin-right: auto;
}

.m--t-auto {
  margin-top: auto;
}

.m--b-auto {
  margin-bottom: auto;
}

@media screen and (max-width: 991px) {
  .m-xs--0 {
    margin: 0;
  }
  .m-xs--tb-0 {
    margin-top: 0;
    margin-bottom: 0;
  }
  .m-xs--lr-0 {
    margin-left: 0;
    margin-right: 0;
  }
  .m-xs--t-0 {
    margin-top: 0;
  }
  .m-xs--b-0 {
    margin-bottom: 0;
  }
  .m-xs--l-0 {
    margin-left: 0;
  }
  .m-xs--r-0 {
    margin-right: 0;
  }
  .m-xs--5 {
    margin: 5px;
  }
  .m-xs--tb-5 {
    margin-top: 5px;
    margin-bottom: 5px;
  }
  .m-xs--lr-5 {
    margin-left: 5px;
    margin-right: 5px;
  }
  .m-xs--t-5 {
    margin-top: 5px;
  }
  .m-xs--b-5 {
    margin-bottom: 5px;
  }
  .m-xs--l-5 {
    margin-left: 5px;
  }
  .m-xs--r-5 {
    margin-right: 5px;
  }
  .m-xs--10 {
    margin: 10px;
  }
  .m-xs--tb-10 {
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .m-xs--lr-10 {
    margin-left: 10px;
    margin-right: 10px;
  }
  .m-xs--t-10 {
    margin-top: 10px;
  }
  .m-xs--b-10 {
    margin-bottom: 10px;
  }
  .m-xs--l-10 {
    margin-left: 10px;
  }
  .m-xs--r-10 {
    margin-right: 10px;
  }
  .m-xs--15 {
    margin: 15px;
  }
  .m-xs--tb-15 {
    margin-top: 15px;
    margin-bottom: 15px;
  }
  .m-xs--lr-15 {
    margin-left: 15px;
    margin-right: 15px;
  }
  .m-xs--t-15 {
    margin-top: 15px;
  }
  .m-xs--b-15 {
    margin-bottom: 15px;
  }
  .m-xs--l-15 {
    margin-left: 15px;
  }
  .m-xs--r-15 {
    margin-right: 15px;
  }
  .m-xs--20 {
    margin: 20px;
  }
  .m-xs--tb-20 {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .m-xs--lr-20 {
    margin-left: 20px;
    margin-right: 20px;
  }
  .m-xs--t-20 {
    margin-top: 20px;
  }
  .m-xs--b-20 {
    margin-bottom: 20px;
  }
  .m-xs--l-20 {
    margin-left: 20px;
  }
  .m-xs--r-20 {
    margin-right: 20px;
  }
  .m-xs--25 {
    margin: 25px;
  }
  .m-xs--tb-25 {
    margin-top: 25px;
    margin-bottom: 25px;
  }
  .m-xs--lr-25 {
    margin-left: 25px;
    margin-right: 25px;
  }
  .m-xs--t-25 {
    margin-top: 25px;
  }
  .m-xs--b-25 {
    margin-bottom: 25px;
  }
  .m-xs--l-25 {
    margin-left: 25px;
  }
  .m-xs--r-25 {
    margin-right: 25px;
  }
  .m-xs--30 {
    margin: 30px;
  }
  .m-xs--tb-30 {
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .m-xs--lr-30 {
    margin-left: 30px;
    margin-right: 30px;
  }
  .m-xs--t-30 {
    margin-top: 30px;
  }
  .m-xs--b-30 {
    margin-bottom: 30px;
  }
  .m-xs--l-30 {
    margin-left: 30px;
  }
  .m-xs--r-30 {
    margin-right: 30px;
  }
  .m-xs--35 {
    margin: 35px;
  }
  .m-xs--tb-35 {
    margin-top: 35px;
    margin-bottom: 35px;
  }
  .m-xs--lr-35 {
    margin-left: 35px;
    margin-right: 35px;
  }
  .m-xs--t-35 {
    margin-top: 35px;
  }
  .m-xs--b-35 {
    margin-bottom: 35px;
  }
  .m-xs--l-35 {
    margin-left: 35px;
  }
  .m-xs--r-35 {
    margin-right: 35px;
  }
  .m-xs--40 {
    margin: 40px;
  }
  .m-xs--tb-40 {
    margin-top: 40px;
    margin-bottom: 40px;
  }
  .m-xs--lr-40 {
    margin-left: 40px;
    margin-right: 40px;
  }
  .m-xs--t-40 {
    margin-top: 40px;
  }
  .m-xs--b-40 {
    margin-bottom: 40px;
  }
  .m-xs--l-40 {
    margin-left: 40px;
  }
  .m-xs--r-40 {
    margin-right: 40px;
  }
  .m-xs--45 {
    margin: 45px;
  }
  .m-xs--tb-45 {
    margin-top: 45px;
    margin-bottom: 45px;
  }
  .m-xs--lr-45 {
    margin-left: 45px;
    margin-right: 45px;
  }
  .m-xs--t-45 {
    margin-top: 45px;
  }
  .m-xs--b-45 {
    margin-bottom: 45px;
  }
  .m-xs--l-45 {
    margin-left: 45px;
  }
  .m-xs--r-45 {
    margin-right: 45px;
  }
  .m-xs--50 {
    margin: 50px;
  }
  .m-xs--tb-50 {
    margin-top: 50px;
    margin-bottom: 50px;
  }
  .m-xs--lr-50 {
    margin-left: 50px;
    margin-right: 50px;
  }
  .m-xs--t-50 {
    margin-top: 50px;
  }
  .m-xs--b-50 {
    margin-bottom: 50px;
  }
  .m-xs--l-50 {
    margin-left: 50px;
  }
  .m-xs--r-50 {
    margin-right: 50px;
  }
  .m-xs--55 {
    margin: 55px;
  }
  .m-xs--tb-55 {
    margin-top: 55px;
    margin-bottom: 55px;
  }
  .m-xs--lr-55 {
    margin-left: 55px;
    margin-right: 55px;
  }
  .m-xs--t-55 {
    margin-top: 55px;
  }
  .m-xs--b-55 {
    margin-bottom: 55px;
  }
  .m-xs--l-55 {
    margin-left: 55px;
  }
  .m-xs--r-55 {
    margin-right: 55px;
  }
  .m-xs--60 {
    margin: 60px;
  }
  .m-xs--tb-60 {
    margin-top: 60px;
    margin-bottom: 60px;
  }
  .m-xs--lr-60 {
    margin-left: 60px;
    margin-right: 60px;
  }
  .m-xs--t-60 {
    margin-top: 60px;
  }
  .m-xs--b-60 {
    margin-bottom: 60px;
  }
  .m-xs--l-60 {
    margin-left: 60px;
  }
  .m-xs--r-60 {
    margin-right: 60px;
  }
  .m-xs--65 {
    margin: 65px;
  }
  .m-xs--tb-65 {
    margin-top: 65px;
    margin-bottom: 65px;
  }
  .m-xs--lr-65 {
    margin-left: 65px;
    margin-right: 65px;
  }
  .m-xs--t-65 {
    margin-top: 65px;
  }
  .m-xs--b-65 {
    margin-bottom: 65px;
  }
  .m-xs--l-65 {
    margin-left: 65px;
  }
  .m-xs--r-65 {
    margin-right: 65px;
  }
  .m-xs--70 {
    margin: 70px;
  }
  .m-xs--tb-70 {
    margin-top: 70px;
    margin-bottom: 70px;
  }
  .m-xs--lr-70 {
    margin-left: 70px;
    margin-right: 70px;
  }
  .m-xs--t-70 {
    margin-top: 70px;
  }
  .m-xs--b-70 {
    margin-bottom: 70px;
  }
  .m-xs--l-70 {
    margin-left: 70px;
  }
  .m-xs--r-70 {
    margin-right: 70px;
  }
  .m-xs--75 {
    margin: 75px;
  }
  .m-xs--tb-75 {
    margin-top: 75px;
    margin-bottom: 75px;
  }
  .m-xs--lr-75 {
    margin-left: 75px;
    margin-right: 75px;
  }
  .m-xs--t-75 {
    margin-top: 75px;
  }
  .m-xs--b-75 {
    margin-bottom: 75px;
  }
  .m-xs--l-75 {
    margin-left: 75px;
  }
  .m-xs--r-75 {
    margin-right: 75px;
  }
  .m-xs--80 {
    margin: 80px;
  }
  .m-xs--tb-80 {
    margin-top: 80px;
    margin-bottom: 80px;
  }
  .m-xs--lr-80 {
    margin-left: 80px;
    margin-right: 80px;
  }
  .m-xs--t-80 {
    margin-top: 80px;
  }
  .m-xs--b-80 {
    margin-bottom: 80px;
  }
  .m-xs--l-80 {
    margin-left: 80px;
  }
  .m-xs--r-80 {
    margin-right: 80px;
  }
  .m-xs--85 {
    margin: 85px;
  }
  .m-xs--tb-85 {
    margin-top: 85px;
    margin-bottom: 85px;
  }
  .m-xs--lr-85 {
    margin-left: 85px;
    margin-right: 85px;
  }
  .m-xs--t-85 {
    margin-top: 85px;
  }
  .m-xs--b-85 {
    margin-bottom: 85px;
  }
  .m-xs--l-85 {
    margin-left: 85px;
  }
  .m-xs--r-85 {
    margin-right: 85px;
  }
  .m-xs--90 {
    margin: 90px;
  }
  .m-xs--tb-90 {
    margin-top: 90px;
    margin-bottom: 90px;
  }
  .m-xs--lr-90 {
    margin-left: 90px;
    margin-right: 90px;
  }
  .m-xs--t-90 {
    margin-top: 90px;
  }
  .m-xs--b-90 {
    margin-bottom: 90px;
  }
  .m-xs--l-90 {
    margin-left: 90px;
  }
  .m-xs--r-90 {
    margin-right: 90px;
  }
  .m-xs--95 {
    margin: 95px;
  }
  .m-xs--tb-95 {
    margin-top: 95px;
    margin-bottom: 95px;
  }
  .m-xs--lr-95 {
    margin-left: 95px;
    margin-right: 95px;
  }
  .m-xs--t-95 {
    margin-top: 95px;
  }
  .m-xs--b-95 {
    margin-bottom: 95px;
  }
  .m-xs--l-95 {
    margin-left: 95px;
  }
  .m-xs--r-95 {
    margin-right: 95px;
  }
  .m-xs--100 {
    margin: 100px;
  }
  .m-xs--tb-100 {
    margin-top: 100px;
    margin-bottom: 100px;
  }
  .m-xs--lr-100 {
    margin-left: 100px;
    margin-right: 100px;
  }
  .m-xs--t-100 {
    margin-top: 100px;
  }
  .m-xs--b-100 {
    margin-bottom: 100px;
  }
  .m-xs--l-100 {
    margin-left: 100px;
  }
  .m-xs--r-100 {
    margin-right: 100px;
  }
  .m-xs--105 {
    margin: 105px;
  }
  .m-xs--tb-105 {
    margin-top: 105px;
    margin-bottom: 105px;
  }
  .m-xs--lr-105 {
    margin-left: 105px;
    margin-right: 105px;
  }
  .m-xs--t-105 {
    margin-top: 105px;
  }
  .m-xs--b-105 {
    margin-bottom: 105px;
  }
  .m-xs--l-105 {
    margin-left: 105px;
  }
  .m-xs--r-105 {
    margin-right: 105px;
  }
  .m-xs--110 {
    margin: 110px;
  }
  .m-xs--tb-110 {
    margin-top: 110px;
    margin-bottom: 110px;
  }
  .m-xs--lr-110 {
    margin-left: 110px;
    margin-right: 110px;
  }
  .m-xs--t-110 {
    margin-top: 110px;
  }
  .m-xs--b-110 {
    margin-bottom: 110px;
  }
  .m-xs--l-110 {
    margin-left: 110px;
  }
  .m-xs--r-110 {
    margin-right: 110px;
  }
  .m-xs--115 {
    margin: 115px;
  }
  .m-xs--tb-115 {
    margin-top: 115px;
    margin-bottom: 115px;
  }
  .m-xs--lr-115 {
    margin-left: 115px;
    margin-right: 115px;
  }
  .m-xs--t-115 {
    margin-top: 115px;
  }
  .m-xs--b-115 {
    margin-bottom: 115px;
  }
  .m-xs--l-115 {
    margin-left: 115px;
  }
  .m-xs--r-115 {
    margin-right: 115px;
  }
  .m-xs--120 {
    margin: 120px;
  }
  .m-xs--tb-120 {
    margin-top: 120px;
    margin-bottom: 120px;
  }
  .m-xs--lr-120 {
    margin-left: 120px;
    margin-right: 120px;
  }
  .m-xs--t-120 {
    margin-top: 120px;
  }
  .m-xs--b-120 {
    margin-bottom: 120px;
  }
  .m-xs--l-120 {
    margin-left: 120px;
  }
  .m-xs--r-120 {
    margin-right: 120px;
  }
  .m-xs--125 {
    margin: 125px;
  }
  .m-xs--tb-125 {
    margin-top: 125px;
    margin-bottom: 125px;
  }
  .m-xs--lr-125 {
    margin-left: 125px;
    margin-right: 125px;
  }
  .m-xs--t-125 {
    margin-top: 125px;
  }
  .m-xs--b-125 {
    margin-bottom: 125px;
  }
  .m-xs--l-125 {
    margin-left: 125px;
  }
  .m-xs--r-125 {
    margin-right: 125px;
  }
  .m-xs--130 {
    margin: 130px;
  }
  .m-xs--tb-130 {
    margin-top: 130px;
    margin-bottom: 130px;
  }
  .m-xs--lr-130 {
    margin-left: 130px;
    margin-right: 130px;
  }
  .m-xs--t-130 {
    margin-top: 130px;
  }
  .m-xs--b-130 {
    margin-bottom: 130px;
  }
  .m-xs--l-130 {
    margin-left: 130px;
  }
  .m-xs--r-130 {
    margin-right: 130px;
  }
  .m-xs--135 {
    margin: 135px;
  }
  .m-xs--tb-135 {
    margin-top: 135px;
    margin-bottom: 135px;
  }
  .m-xs--lr-135 {
    margin-left: 135px;
    margin-right: 135px;
  }
  .m-xs--t-135 {
    margin-top: 135px;
  }
  .m-xs--b-135 {
    margin-bottom: 135px;
  }
  .m-xs--l-135 {
    margin-left: 135px;
  }
  .m-xs--r-135 {
    margin-right: 135px;
  }
  .m-xs--140 {
    margin: 140px;
  }
  .m-xs--tb-140 {
    margin-top: 140px;
    margin-bottom: 140px;
  }
  .m-xs--lr-140 {
    margin-left: 140px;
    margin-right: 140px;
  }
  .m-xs--t-140 {
    margin-top: 140px;
  }
  .m-xs--b-140 {
    margin-bottom: 140px;
  }
  .m-xs--l-140 {
    margin-left: 140px;
  }
  .m-xs--r-140 {
    margin-right: 140px;
  }
  .m-xs--145 {
    margin: 145px;
  }
  .m-xs--tb-145 {
    margin-top: 145px;
    margin-bottom: 145px;
  }
  .m-xs--lr-145 {
    margin-left: 145px;
    margin-right: 145px;
  }
  .m-xs--t-145 {
    margin-top: 145px;
  }
  .m-xs--b-145 {
    margin-bottom: 145px;
  }
  .m-xs--l-145 {
    margin-left: 145px;
  }
  .m-xs--r-145 {
    margin-right: 145px;
  }
  .m-xs--150 {
    margin: 150px;
  }
  .m-xs--tb-150 {
    margin-top: 150px;
    margin-bottom: 150px;
  }
  .m-xs--lr-150 {
    margin-left: 150px;
    margin-right: 150px;
  }
  .m-xs--t-150 {
    margin-top: 150px;
  }
  .m-xs--b-150 {
    margin-bottom: 150px;
  }
  .m-xs--l-150 {
    margin-left: 150px;
  }
  .m-xs--r-150 {
    margin-right: 150px;
  }
  .m-xs--lr-auto {
    margin-right: auto;
  }
  .m-xs--l-auto, .m-xs--lr-auto {
    margin-left: auto;
  }
  .m-xs--r-auto {
    margin-right: auto;
  }
}
.mw--0 {
  max-width: 0;
}

.mw--5 {
  max-width: 5px;
}

.mw--10 {
  max-width: 10px;
}

.mw--15 {
  max-width: 15px;
}

.mw--20 {
  max-width: 20px;
}

.mw--25 {
  max-width: 25px;
}

.mw--30 {
  max-width: 30px;
}

.mw--35 {
  max-width: 35px;
}

.mw--40 {
  max-width: 40px;
}

.mw--45 {
  max-width: 45px;
}

.mw--50 {
  max-width: 50px;
}

.mw--55 {
  max-width: 55px;
}

.mw--60 {
  max-width: 60px;
}

.mw--65 {
  max-width: 65px;
}

.mw--70 {
  max-width: 70px;
}

.mw--75 {
  max-width: 75px;
}

.mw--80 {
  max-width: 80px;
}

.mw--85 {
  max-width: 85px;
}

.mw--90 {
  max-width: 90px;
}

.mw--95 {
  max-width: 95px;
}

.mw--100 {
  max-width: 100px;
}

.mw--105 {
  max-width: 105px;
}

.mw--110 {
  max-width: 110px;
}

.mw--115 {
  max-width: 115px;
}

.mw--120 {
  max-width: 120px;
}

.mw--125 {
  max-width: 125px;
}

.mw--130 {
  max-width: 130px;
}

.mw--135 {
  max-width: 135px;
}

.mw--140 {
  max-width: 140px;
}

.mw--145 {
  max-width: 145px;
}

.mw--150 {
  max-width: 150px;
}

.mw--155 {
  max-width: 155px;
}

.mw--160 {
  max-width: 160px;
}

.mw--165 {
  max-width: 165px;
}

.mw--170 {
  max-width: 170px;
}

.mw--175 {
  max-width: 175px;
}

.mw--180 {
  max-width: 180px;
}

.mw--185 {
  max-width: 185px;
}

.mw--190 {
  max-width: 190px;
}

.mw--195 {
  max-width: 195px;
}

.mw--200 {
  max-width: 200px;
}

.mw--205 {
  max-width: 205px;
}

.mw--210 {
  max-width: 210px;
}

.mw--215 {
  max-width: 215px;
}

.mw--220 {
  max-width: 220px;
}

.mw--225 {
  max-width: 225px;
}

.mw--230 {
  max-width: 230px;
}

.mw--235 {
  max-width: 235px;
}

.mw--240 {
  max-width: 240px;
}

.mw--245 {
  max-width: 245px;
}

.mw--250 {
  max-width: 250px;
}

.mw--255 {
  max-width: 255px;
}

.mw--260 {
  max-width: 260px;
}

.mw--265 {
  max-width: 265px;
}

.mw--270 {
  max-width: 270px;
}

.mw--275 {
  max-width: 275px;
}

.mw--280 {
  max-width: 280px;
}

.mw--285 {
  max-width: 285px;
}

.mw--290 {
  max-width: 290px;
}

.mw--295 {
  max-width: 295px;
}

.mw--300 {
  max-width: 300px;
}

.mw--305 {
  max-width: 305px;
}

.mw--310 {
  max-width: 310px;
}

.mw--315 {
  max-width: 315px;
}

.mw--320 {
  max-width: 320px;
}

.mw--325 {
  max-width: 325px;
}

.mw--330 {
  max-width: 330px;
}

.mw--335 {
  max-width: 335px;
}

.mw--340 {
  max-width: 340px;
}

.mw--345 {
  max-width: 345px;
}

.mw--350 {
  max-width: 350px;
}

.mw--355 {
  max-width: 355px;
}

.mw--360 {
  max-width: 360px;
}

.mw--365 {
  max-width: 365px;
}

.mw--370 {
  max-width: 370px;
}

.mw--375 {
  max-width: 375px;
}

.mw--380 {
  max-width: 380px;
}

.mw--385 {
  max-width: 385px;
}

.mw--390 {
  max-width: 390px;
}

.mw--395 {
  max-width: 395px;
}

.mw--400 {
  max-width: 400px;
}

.mw--405 {
  max-width: 405px;
}

.mw--410 {
  max-width: 410px;
}

.mw--415 {
  max-width: 415px;
}

.mw--420 {
  max-width: 420px;
}

.mw--425 {
  max-width: 425px;
}

.mw--430 {
  max-width: 430px;
}

.mw--435 {
  max-width: 435px;
}

.mw--440 {
  max-width: 440px;
}

.mw--445 {
  max-width: 445px;
}

.mw--450 {
  max-width: 450px;
}

.mw--455 {
  max-width: 455px;
}

.mw--460 {
  max-width: 460px;
}

.mw--465 {
  max-width: 465px;
}

.mw--470 {
  max-width: 470px;
}

.mw--475 {
  max-width: 475px;
}

.mw--480 {
  max-width: 480px;
}

.mw--485 {
  max-width: 485px;
}

.mw--490 {
  max-width: 490px;
}

.mw--495 {
  max-width: 495px;
}

.mw--500 {
  max-width: 500px;
}

.mw--505 {
  max-width: 505px;
}

.mw--510 {
  max-width: 510px;
}

.mw--515 {
  max-width: 515px;
}

.mw--520 {
  max-width: 520px;
}

.mw--525 {
  max-width: 525px;
}

.mw--530 {
  max-width: 530px;
}

.mw--535 {
  max-width: 535px;
}

.mw--540 {
  max-width: 540px;
}

.mw--545 {
  max-width: 545px;
}

.mw--550 {
  max-width: 550px;
}

.mw--555 {
  max-width: 555px;
}

.mw--560 {
  max-width: 560px;
}

.mw--565 {
  max-width: 565px;
}

.mw--570 {
  max-width: 570px;
}

.mw--575 {
  max-width: 575px;
}

.mw--580 {
  max-width: 580px;
}

.mw--585 {
  max-width: 585px;
}

.mw--590 {
  max-width: 590px;
}

.mw--595 {
  max-width: 595px;
}

.mw--600 {
  max-width: 600px;
}

.mw--605 {
  max-width: 605px;
}

.mw--610 {
  max-width: 610px;
}

.mw--615 {
  max-width: 615px;
}

.mw--620 {
  max-width: 620px;
}

.mw--625 {
  max-width: 625px;
}

.mw--630 {
  max-width: 630px;
}

.mw--635 {
  max-width: 635px;
}

.mw--640 {
  max-width: 640px;
}

.mw--645 {
  max-width: 645px;
}

.mw--650 {
  max-width: 650px;
}

.mw--655 {
  max-width: 655px;
}

.mw--660 {
  max-width: 660px;
}

.mw--665 {
  max-width: 665px;
}

.mw--670 {
  max-width: 670px;
}

.mw--675 {
  max-width: 675px;
}

.mw--680 {
  max-width: 680px;
}

.mw--685 {
  max-width: 685px;
}

.mw--690 {
  max-width: 690px;
}

.mw--695 {
  max-width: 695px;
}

.mw--700 {
  max-width: 700px;
}

.mw--705 {
  max-width: 705px;
}

.mw--710 {
  max-width: 710px;
}

.mw--715 {
  max-width: 715px;
}

.mw--720 {
  max-width: 720px;
}

.mw--725 {
  max-width: 725px;
}

.mw--730 {
  max-width: 730px;
}

.mw--735 {
  max-width: 735px;
}

.mw--740 {
  max-width: 740px;
}

.mw--745 {
  max-width: 745px;
}

.mw--750 {
  max-width: 750px;
}

.mw--755 {
  max-width: 755px;
}

.mw--760 {
  max-width: 760px;
}

.mw--765 {
  max-width: 765px;
}

.mw--770 {
  max-width: 770px;
}

.mw--775 {
  max-width: 775px;
}

.mw--780 {
  max-width: 780px;
}

.mw--785 {
  max-width: 785px;
}

.mw--790 {
  max-width: 790px;
}

.mw--795 {
  max-width: 795px;
}

.mw--800 {
  max-width: 800px;
}

@media screen and (max-width: 767px) {
  .mw-xs--0 {
    max-width: 0 !important;
  }
  .mw-xs--5 {
    max-width: 5px !important;
  }
  .mw-xs--10 {
    max-width: 10px !important;
  }
  .mw-xs--15 {
    max-width: 15px !important;
  }
  .mw-xs--20 {
    max-width: 20px !important;
  }
  .mw-xs--25 {
    max-width: 25px !important;
  }
  .mw-xs--30 {
    max-width: 30px !important;
  }
  .mw-xs--35 {
    max-width: 35px !important;
  }
  .mw-xs--40 {
    max-width: 40px !important;
  }
  .mw-xs--45 {
    max-width: 45px !important;
  }
  .mw-xs--50 {
    max-width: 50px !important;
  }
  .mw-xs--55 {
    max-width: 55px !important;
  }
  .mw-xs--60 {
    max-width: 60px !important;
  }
  .mw-xs--65 {
    max-width: 65px !important;
  }
  .mw-xs--70 {
    max-width: 70px !important;
  }
  .mw-xs--75 {
    max-width: 75px !important;
  }
  .mw-xs--80 {
    max-width: 80px !important;
  }
  .mw-xs--85 {
    max-width: 85px !important;
  }
  .mw-xs--90 {
    max-width: 90px !important;
  }
  .mw-xs--95 {
    max-width: 95px !important;
  }
  .mw-xs--100 {
    max-width: 100px !important;
  }
  .mw-xs--105 {
    max-width: 105px !important;
  }
  .mw-xs--110 {
    max-width: 110px !important;
  }
  .mw-xs--115 {
    max-width: 115px !important;
  }
  .mw-xs--120 {
    max-width: 120px !important;
  }
  .mw-xs--125 {
    max-width: 125px !important;
  }
  .mw-xs--130 {
    max-width: 130px !important;
  }
  .mw-xs--135 {
    max-width: 135px !important;
  }
  .mw-xs--140 {
    max-width: 140px !important;
  }
  .mw-xs--145 {
    max-width: 145px !important;
  }
  .mw-xs--150 {
    max-width: 150px !important;
  }
  .mw-xs--155 {
    max-width: 155px !important;
  }
  .mw-xs--160 {
    max-width: 160px !important;
  }
  .mw-xs--165 {
    max-width: 165px !important;
  }
  .mw-xs--170 {
    max-width: 170px !important;
  }
  .mw-xs--175 {
    max-width: 175px !important;
  }
  .mw-xs--180 {
    max-width: 180px !important;
  }
  .mw-xs--185 {
    max-width: 185px !important;
  }
  .mw-xs--190 {
    max-width: 190px !important;
  }
  .mw-xs--195 {
    max-width: 195px !important;
  }
  .mw-xs--200 {
    max-width: 200px !important;
  }
  .mw-xs--205 {
    max-width: 205px !important;
  }
  .mw-xs--210 {
    max-width: 210px !important;
  }
  .mw-xs--215 {
    max-width: 215px !important;
  }
  .mw-xs--220 {
    max-width: 220px !important;
  }
  .mw-xs--225 {
    max-width: 225px !important;
  }
  .mw-xs--230 {
    max-width: 230px !important;
  }
  .mw-xs--235 {
    max-width: 235px !important;
  }
  .mw-xs--240 {
    max-width: 240px !important;
  }
  .mw-xs--245 {
    max-width: 245px !important;
  }
  .mw-xs--250 {
    max-width: 250px !important;
  }
  .mw-xs--255 {
    max-width: 255px !important;
  }
  .mw-xs--260 {
    max-width: 260px !important;
  }
  .mw-xs--265 {
    max-width: 265px !important;
  }
  .mw-xs--270 {
    max-width: 270px !important;
  }
  .mw-xs--275 {
    max-width: 275px !important;
  }
  .mw-xs--280 {
    max-width: 280px !important;
  }
  .mw-xs--285 {
    max-width: 285px !important;
  }
  .mw-xs--290 {
    max-width: 290px !important;
  }
  .mw-xs--295 {
    max-width: 295px !important;
  }
  .mw-xs--300 {
    max-width: 300px !important;
  }
  .mw-xs--305 {
    max-width: 305px !important;
  }
  .mw-xs--310 {
    max-width: 310px !important;
  }
  .mw-xs--315 {
    max-width: 315px !important;
  }
  .mw-xs--320 {
    max-width: 320px !important;
  }
  .mw-xs--325 {
    max-width: 325px !important;
  }
  .mw-xs--330 {
    max-width: 330px !important;
  }
  .mw-xs--335 {
    max-width: 335px !important;
  }
  .mw-xs--340 {
    max-width: 340px !important;
  }
  .mw-xs--345 {
    max-width: 345px !important;
  }
  .mw-xs--350 {
    max-width: 350px !important;
  }
  .mw-xs--355 {
    max-width: 355px !important;
  }
  .mw-xs--360 {
    max-width: 360px !important;
  }
  .mw-xs--365 {
    max-width: 365px !important;
  }
  .mw-xs--370 {
    max-width: 370px !important;
  }
  .mw-xs--375 {
    max-width: 375px !important;
  }
  .mw-xs--380 {
    max-width: 380px !important;
  }
  .mw-xs--385 {
    max-width: 385px !important;
  }
  .mw-xs--390 {
    max-width: 390px !important;
  }
  .mw-xs--395 {
    max-width: 395px !important;
  }
  .mw-xs--400 {
    max-width: 400px !important;
  }
  .mw-xs--405 {
    max-width: 405px !important;
  }
  .mw-xs--410 {
    max-width: 410px !important;
  }
  .mw-xs--415 {
    max-width: 415px !important;
  }
  .mw-xs--420 {
    max-width: 420px !important;
  }
  .mw-xs--425 {
    max-width: 425px !important;
  }
  .mw-xs--430 {
    max-width: 430px !important;
  }
  .mw-xs--435 {
    max-width: 435px !important;
  }
  .mw-xs--440 {
    max-width: 440px !important;
  }
  .mw-xs--445 {
    max-width: 445px !important;
  }
  .mw-xs--450 {
    max-width: 450px !important;
  }
  .mw-xs--455 {
    max-width: 455px !important;
  }
  .mw-xs--460 {
    max-width: 460px !important;
  }
  .mw-xs--465 {
    max-width: 465px !important;
  }
  .mw-xs--470 {
    max-width: 470px !important;
  }
  .mw-xs--475 {
    max-width: 475px !important;
  }
  .mw-xs--480 {
    max-width: 480px !important;
  }
  .mw-xs--485 {
    max-width: 485px !important;
  }
  .mw-xs--490 {
    max-width: 490px !important;
  }
  .mw-xs--495 {
    max-width: 495px !important;
  }
  .mw-xs--500 {
    max-width: 500px !important;
  }
  .mw-xs--505 {
    max-width: 505px !important;
  }
  .mw-xs--510 {
    max-width: 510px !important;
  }
  .mw-xs--515 {
    max-width: 515px !important;
  }
  .mw-xs--520 {
    max-width: 520px !important;
  }
  .mw-xs--525 {
    max-width: 525px !important;
  }
  .mw-xs--530 {
    max-width: 530px !important;
  }
  .mw-xs--535 {
    max-width: 535px !important;
  }
  .mw-xs--540 {
    max-width: 540px !important;
  }
  .mw-xs--545 {
    max-width: 545px !important;
  }
  .mw-xs--550 {
    max-width: 550px !important;
  }
  .mw-xs--555 {
    max-width: 555px !important;
  }
  .mw-xs--560 {
    max-width: 560px !important;
  }
  .mw-xs--565 {
    max-width: 565px !important;
  }
  .mw-xs--570 {
    max-width: 570px !important;
  }
  .mw-xs--575 {
    max-width: 575px !important;
  }
  .mw-xs--580 {
    max-width: 580px !important;
  }
  .mw-xs--585 {
    max-width: 585px !important;
  }
  .mw-xs--590 {
    max-width: 590px !important;
  }
  .mw-xs--595 {
    max-width: 595px !important;
  }
  .mw-xs--600 {
    max-width: 600px !important;
  }
  .mw-xs--none {
    max-width: 100%;
  }
}
.mnw--0 {
  min-width: 0;
}

.mnw--5 {
  min-width: 5px;
}

.mnw--10 {
  min-width: 10px;
}

.mnw--15 {
  min-width: 15px;
}

.mnw--20 {
  min-width: 20px;
}

.mnw--25 {
  min-width: 25px;
}

.mnw--30 {
  min-width: 30px;
}

.mnw--35 {
  min-width: 35px;
}

.mnw--40 {
  min-width: 40px;
}

.mnw--45 {
  min-width: 45px;
}

.mnw--50 {
  min-width: 50px;
}

.mnw--55 {
  min-width: 55px;
}

.mnw--60 {
  min-width: 60px;
}

.mnw--65 {
  min-width: 65px;
}

.mnw--70 {
  min-width: 70px;
}

.mnw--75 {
  min-width: 75px;
}

.mnw--80 {
  min-width: 80px;
}

.mnw--85 {
  min-width: 85px;
}

.mnw--90 {
  min-width: 90px;
}

.mnw--95 {
  min-width: 95px;
}

.mnw--100 {
  min-width: 100px;
}

.mnw--105 {
  min-width: 105px;
}

.mnw--110 {
  min-width: 110px;
}

.mnw--115 {
  min-width: 115px;
}

.mnw--120 {
  min-width: 120px;
}

.mnw--125 {
  min-width: 125px;
}

.mnw--130 {
  min-width: 130px;
}

.mnw--135 {
  min-width: 135px;
}

.mnw--140 {
  min-width: 140px;
}

.mnw--145 {
  min-width: 145px;
}

.mnw--150 {
  min-width: 150px;
}

.mnw--155 {
  min-width: 155px;
}

.mnw--160 {
  min-width: 160px;
}

.mnw--165 {
  min-width: 165px;
}

.mnw--170 {
  min-width: 170px;
}

.mnw--175 {
  min-width: 175px;
}

.mnw--180 {
  min-width: 180px;
}

.mnw--185 {
  min-width: 185px;
}

.mnw--190 {
  min-width: 190px;
}

.mnw--195 {
  min-width: 195px;
}

.mnw--200 {
  min-width: 200px;
}

.mnw--205 {
  min-width: 205px;
}

.mnw--210 {
  min-width: 210px;
}

.mnw--215 {
  min-width: 215px;
}

.mnw--220 {
  min-width: 220px;
}

.mnw--225 {
  min-width: 225px;
}

.mnw--230 {
  min-width: 230px;
}

.mnw--235 {
  min-width: 235px;
}

.mnw--240 {
  min-width: 240px;
}

.mnw--245 {
  min-width: 245px;
}

.mnw--250 {
  min-width: 250px;
}

.mnw--255 {
  min-width: 255px;
}

.mnw--260 {
  min-width: 260px;
}

.mnw--265 {
  min-width: 265px;
}

.mnw--270 {
  min-width: 270px;
}

.mnw--275 {
  min-width: 275px;
}

.mnw--280 {
  min-width: 280px;
}

.mnw--285 {
  min-width: 285px;
}

.mnw--290 {
  min-width: 290px;
}

.mnw--295 {
  min-width: 295px;
}

.mnw--300 {
  min-width: 300px;
}

.mnw--305 {
  min-width: 305px;
}

.mnw--310 {
  min-width: 310px;
}

.mnw--315 {
  min-width: 315px;
}

.mnw--320 {
  min-width: 320px;
}

.mnw--325 {
  min-width: 325px;
}

.mnw--330 {
  min-width: 330px;
}

.mnw--335 {
  min-width: 335px;
}

.mnw--340 {
  min-width: 340px;
}

.mnw--345 {
  min-width: 345px;
}

.mnw--350 {
  min-width: 350px;
}

.mnw--355 {
  min-width: 355px;
}

.mnw--360 {
  min-width: 360px;
}

.mnw--365 {
  min-width: 365px;
}

.mnw--370 {
  min-width: 370px;
}

.mnw--375 {
  min-width: 375px;
}

.mnw--380 {
  min-width: 380px;
}

.mnw--385 {
  min-width: 385px;
}

.mnw--390 {
  min-width: 390px;
}

.mnw--395 {
  min-width: 395px;
}

.mnw--400 {
  min-width: 400px;
}

.mnw--405 {
  min-width: 405px;
}

.mnw--410 {
  min-width: 410px;
}

.mnw--415 {
  min-width: 415px;
}

.mnw--420 {
  min-width: 420px;
}

.mnw--425 {
  min-width: 425px;
}

.mnw--430 {
  min-width: 430px;
}

.mnw--435 {
  min-width: 435px;
}

.mnw--440 {
  min-width: 440px;
}

.mnw--445 {
  min-width: 445px;
}

.mnw--450 {
  min-width: 450px;
}

.mnw--455 {
  min-width: 455px;
}

.mnw--460 {
  min-width: 460px;
}

.mnw--465 {
  min-width: 465px;
}

.mnw--470 {
  min-width: 470px;
}

.mnw--475 {
  min-width: 475px;
}

.mnw--480 {
  min-width: 480px;
}

.mnw--485 {
  min-width: 485px;
}

.mnw--490 {
  min-width: 490px;
}

.mnw--495 {
  min-width: 495px;
}

.mnw--500 {
  min-width: 500px;
}

@media screen and (max-width: 767px) {
  .mnw-xs--0 {
    min-width: 0 !important;
  }
  .mnw-xs--5 {
    min-width: 5px !important;
  }
  .mnw-xs--10 {
    min-width: 10px !important;
  }
  .mnw-xs--15 {
    min-width: 15px !important;
  }
  .mnw-xs--20 {
    min-width: 20px !important;
  }
  .mnw-xs--25 {
    min-width: 25px !important;
  }
  .mnw-xs--30 {
    min-width: 30px !important;
  }
  .mnw-xs--35 {
    min-width: 35px !important;
  }
  .mnw-xs--40 {
    min-width: 40px !important;
  }
  .mnw-xs--45 {
    min-width: 45px !important;
  }
  .mnw-xs--50 {
    min-width: 50px !important;
  }
  .mnw-xs--55 {
    min-width: 55px !important;
  }
  .mnw-xs--60 {
    min-width: 60px !important;
  }
  .mnw-xs--65 {
    min-width: 65px !important;
  }
  .mnw-xs--70 {
    min-width: 70px !important;
  }
  .mnw-xs--75 {
    min-width: 75px !important;
  }
  .mnw-xs--80 {
    min-width: 80px !important;
  }
  .mnw-xs--85 {
    min-width: 85px !important;
  }
  .mnw-xs--90 {
    min-width: 90px !important;
  }
  .mnw-xs--95 {
    min-width: 95px !important;
  }
  .mnw-xs--100 {
    min-width: 100px !important;
  }
  .mnw-xs--105 {
    min-width: 105px !important;
  }
  .mnw-xs--110 {
    min-width: 110px !important;
  }
  .mnw-xs--115 {
    min-width: 115px !important;
  }
  .mnw-xs--120 {
    min-width: 120px !important;
  }
  .mnw-xs--125 {
    min-width: 125px !important;
  }
  .mnw-xs--130 {
    min-width: 130px !important;
  }
  .mnw-xs--135 {
    min-width: 135px !important;
  }
  .mnw-xs--140 {
    min-width: 140px !important;
  }
  .mnw-xs--145 {
    min-width: 145px !important;
  }
  .mnw-xs--150 {
    min-width: 150px !important;
  }
  .mnw-xs--155 {
    min-width: 155px !important;
  }
  .mnw-xs--160 {
    min-width: 160px !important;
  }
  .mnw-xs--165 {
    min-width: 165px !important;
  }
  .mnw-xs--170 {
    min-width: 170px !important;
  }
  .mnw-xs--175 {
    min-width: 175px !important;
  }
  .mnw-xs--180 {
    min-width: 180px !important;
  }
  .mnw-xs--185 {
    min-width: 185px !important;
  }
  .mnw-xs--190 {
    min-width: 190px !important;
  }
  .mnw-xs--195 {
    min-width: 195px !important;
  }
  .mnw-xs--200 {
    min-width: 200px !important;
  }
  .mnw-xs--205 {
    min-width: 205px !important;
  }
  .mnw-xs--210 {
    min-width: 210px !important;
  }
  .mnw-xs--215 {
    min-width: 215px !important;
  }
  .mnw-xs--220 {
    min-width: 220px !important;
  }
  .mnw-xs--225 {
    min-width: 225px !important;
  }
  .mnw-xs--230 {
    min-width: 230px !important;
  }
  .mnw-xs--235 {
    min-width: 235px !important;
  }
  .mnw-xs--240 {
    min-width: 240px !important;
  }
  .mnw-xs--245 {
    min-width: 245px !important;
  }
  .mnw-xs--250 {
    min-width: 250px !important;
  }
  .mnw-xs--255 {
    min-width: 255px !important;
  }
  .mnw-xs--260 {
    min-width: 260px !important;
  }
  .mnw-xs--265 {
    min-width: 265px !important;
  }
  .mnw-xs--270 {
    min-width: 270px !important;
  }
  .mnw-xs--275 {
    min-width: 275px !important;
  }
  .mnw-xs--280 {
    min-width: 280px !important;
  }
  .mnw-xs--285 {
    min-width: 285px !important;
  }
  .mnw-xs--290 {
    min-width: 290px !important;
  }
  .mnw-xs--295 {
    min-width: 295px !important;
  }
  .mnw-xs--300 {
    min-width: 300px !important;
  }
}
.p--0 {
  padding: 0;
}

.p--tb-0 {
  padding-top: 0;
  padding-bottom: 0;
}

.p--lr-0 {
  padding-left: 0;
  padding-right: 0;
}

.p--t-0 {
  padding-top: 0;
}

.p--b-0 {
  padding-bottom: 0;
}

.p--l-0 {
  padding-left: 0;
}

.p--r-0 {
  padding-right: 0;
}

.p--5 {
  padding: 5px;
}

.p--tb-5 {
  padding-top: 5px;
  padding-bottom: 5px;
}

.p--lr-5 {
  padding-left: 5px;
  padding-right: 5px;
}

.p--lr-8 {
  padding-left: 8px;
  padding-right: 8px;
}

.p--t-5 {
  padding-top: 5px;
}

.p--b-5 {
  padding-bottom: 5px;
}

.p--l-5 {
  padding-left: 5px;
}

.p--r-5 {
  padding-right: 5px;
}

.p--10 {
  padding: 10px;
}

.p--tb-10 {
  padding-top: 10px;
  padding-bottom: 10px;
}

.p--lr-10 {
  padding-left: 10px;
  padding-right: 10px;
}

.p--t-10 {
  padding-top: 10px;
}

.p--b-10 {
  padding-bottom: 10px;
}

.p--l-10 {
  padding-left: 10px;
}

.p--r-10 {
  padding-right: 10px;
}

.p--15 {
  padding: 15px;
}

.p--tb-15 {
  padding-top: 15px;
  padding-bottom: 15px;
}

.p--lr-15 {
  padding-left: 15px;
  padding-right: 15px;
}

.p--t-15 {
  padding-top: 15px;
}

.p--b-15 {
  padding-bottom: 15px;
}

.p--l-15 {
  padding-left: 15px;
}

.p--r-15 {
  padding-right: 15px;
}

.p--20 {
  padding: 20px;
}

.p--tb-20 {
  padding-top: 20px;
  padding-bottom: 20px;
}

.p--lr-20 {
  padding-left: 20px;
  padding-right: 20px;
}

.p--t-20 {
  padding-top: 20px;
}

.p--b-20 {
  padding-bottom: 20px;
}

.p--l-20 {
  padding-left: 20px;
}

.p--r-20 {
  padding-right: 20px;
}

.p--25 {
  padding: 25px;
}

.p--tb-25 {
  padding-top: 25px;
  padding-bottom: 25px;
}

.p--lr-25 {
  padding-left: 25px;
  padding-right: 25px;
}

.p--t-25 {
  padding-top: 25px;
}

.p--b-25 {
  padding-bottom: 25px;
}

.p--l-25 {
  padding-left: 25px;
}

.p--r-25 {
  padding-right: 25px;
}

.p--30 {
  padding: 30px;
}

.p--tb-30 {
  padding-top: 30px;
  padding-bottom: 30px;
}

.p--lr-30 {
  padding-left: 30px;
  padding-right: 30px;
}

.p--t-30 {
  padding-top: 30px;
}

.p--b-30 {
  padding-bottom: 30px;
}

.p--l-30 {
  padding-left: 30px;
}

.p--r-30 {
  padding-right: 30px;
}

.p--35 {
  padding: 35px;
}

.p--tb-35 {
  padding-top: 35px;
  padding-bottom: 35px;
}

.p--lr-35 {
  padding-left: 35px;
  padding-right: 35px;
}

.p--t-35 {
  padding-top: 35px;
}

.p--b-35 {
  padding-bottom: 35px;
}

.p--l-35 {
  padding-left: 35px;
}

.p--r-35 {
  padding-right: 35px;
}

.p--40 {
  padding: 40px;
}

.p--tb-40 {
  padding-top: 40px;
  padding-bottom: 40px;
}

.p--lr-40 {
  padding-left: 40px;
  padding-right: 40px;
}

.p--t-40 {
  padding-top: 40px;
}

.p--b-40 {
  padding-bottom: 40px;
}

.p--l-40 {
  padding-left: 40px;
}

.p--r-40 {
  padding-right: 40px;
}

.p--45 {
  padding: 45px;
}

.p--tb-45 {
  padding-top: 45px;
  padding-bottom: 45px;
}

.p--lr-45 {
  padding-left: 45px;
  padding-right: 45px;
}

.p--t-45 {
  padding-top: 45px;
}

.p--b-45 {
  padding-bottom: 45px;
}

.p--l-45 {
  padding-left: 45px;
}

.p--r-45 {
  padding-right: 45px;
}

.p--50 {
  padding: 50px;
}

.p--tb-50 {
  padding-top: 50px;
  padding-bottom: 50px;
}

.p--lr-50 {
  padding-left: 50px;
  padding-right: 50px;
}

.p--t-50 {
  padding-top: 50px;
}

.p--b-50 {
  padding-bottom: 50px;
}

.p--l-50 {
  padding-left: 50px;
}

.p--r-50 {
  padding-right: 50px;
}

.p--55 {
  padding: 55px;
}

.p--tb-55 {
  padding-top: 55px;
  padding-bottom: 55px;
}

.p--lr-55 {
  padding-left: 55px;
  padding-right: 55px;
}

.p--t-55 {
  padding-top: 55px;
}

.p--b-55 {
  padding-bottom: 55px;
}

.p--l-55 {
  padding-left: 55px;
}

.p--r-55 {
  padding-right: 55px;
}

.p--60 {
  padding: 60px;
}

.p--tb-60 {
  padding-top: 60px;
  padding-bottom: 60px;
}

.p--lr-60 {
  padding-left: 60px;
  padding-right: 60px;
}

.p--t-60 {
  padding-top: 60px;
}

.p--b-60 {
  padding-bottom: 60px;
}

.p--l-60 {
  padding-left: 60px;
}

.p--r-60 {
  padding-right: 60px;
}

.p--65 {
  padding: 65px;
}

.p--tb-65 {
  padding-top: 65px;
  padding-bottom: 65px;
}

.p--lr-65 {
  padding-left: 65px;
  padding-right: 65px;
}

.p--t-65 {
  padding-top: 65px;
}

.p--b-65 {
  padding-bottom: 65px;
}

.p--l-65 {
  padding-left: 65px;
}

.p--r-65 {
  padding-right: 65px;
}

.p--70 {
  padding: 70px;
}

.p--tb-70 {
  padding-top: 70px;
  padding-bottom: 70px;
}

.p--lr-70 {
  padding-left: 70px;
  padding-right: 70px;
}

.p--t-70 {
  padding-top: 70px;
}

.p--b-70 {
  padding-bottom: 70px;
}

.p--l-70 {
  padding-left: 70px;
}

.p--r-70 {
  padding-right: 70px;
}

.p--75 {
  padding: 75px;
}

.p--tb-75 {
  padding-top: 75px;
  padding-bottom: 75px;
}

.p--lr-75 {
  padding-left: 75px;
  padding-right: 75px;
}

.p--t-75 {
  padding-top: 75px;
}

.p--b-75 {
  padding-bottom: 75px;
}

.p--l-75 {
  padding-left: 75px;
}

.p--r-75 {
  padding-right: 75px;
}

.p--80 {
  padding: 80px;
}

.p--tb-80 {
  padding-top: 80px;
  padding-bottom: 80px;
}

.p--lr-80 {
  padding-left: 80px;
  padding-right: 80px;
}

.p--t-80 {
  padding-top: 80px;
}

.p--b-80 {
  padding-bottom: 80px;
}

.p--l-80 {
  padding-left: 80px;
}

.p--r-80 {
  padding-right: 80px;
}

.p--85 {
  padding: 85px;
}

.p--tb-85 {
  padding-top: 85px;
  padding-bottom: 85px;
}

.p--lr-85 {
  padding-left: 85px;
  padding-right: 85px;
}

.p--t-85 {
  padding-top: 85px;
}

.p--b-85 {
  padding-bottom: 85px;
}

.p--l-85 {
  padding-left: 85px;
}

.p--r-85 {
  padding-right: 85px;
}

.p--90 {
  padding: 90px;
}

.p--tb-90 {
  padding-top: 90px;
  padding-bottom: 90px;
}

.p--lr-90 {
  padding-left: 90px;
  padding-right: 90px;
}

.p--t-90 {
  padding-top: 90px;
}

.p--b-90 {
  padding-bottom: 90px;
}

.p--l-90 {
  padding-left: 90px;
}

.p--r-90 {
  padding-right: 90px;
}

.p--95 {
  padding: 95px;
}

.p--tb-95 {
  padding-top: 95px;
  padding-bottom: 95px;
}

.p--lr-95 {
  padding-left: 95px;
  padding-right: 95px;
}

.p--t-95 {
  padding-top: 95px;
}

.p--b-95 {
  padding-bottom: 95px;
}

.p--l-95 {
  padding-left: 95px;
}

.p--r-95 {
  padding-right: 95px;
}

.p--100 {
  padding: 100px;
}

.p--tb-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.p--lr-100 {
  padding-left: 100px;
  padding-right: 100px;
}

.p--t-100 {
  padding-top: 100px;
}

.p--b-100 {
  padding-bottom: 100px;
}

.p--l-100 {
  padding-left: 100px;
}

.p--r-100 {
  padding-right: 100px;
}

.p--105 {
  padding: 105px;
}

.p--tb-105 {
  padding-top: 105px;
  padding-bottom: 105px;
}

.p--lr-105 {
  padding-left: 105px;
  padding-right: 105px;
}

.p--t-105 {
  padding-top: 105px;
}

.p--b-105 {
  padding-bottom: 105px;
}

.p--l-105 {
  padding-left: 105px;
}

.p--r-105 {
  padding-right: 105px;
}

.p--110 {
  padding: 110px;
}

.p--tb-110 {
  padding-top: 110px;
  padding-bottom: 110px;
}

.p--lr-110 {
  padding-left: 110px;
  padding-right: 110px;
}

.p--t-110 {
  padding-top: 110px;
}

.p--b-110 {
  padding-bottom: 110px;
}

.p--l-110 {
  padding-left: 110px;
}

.p--r-110 {
  padding-right: 110px;
}

.p--115 {
  padding: 115px;
}

.p--tb-115 {
  padding-top: 115px;
  padding-bottom: 115px;
}

.p--lr-115 {
  padding-left: 115px;
  padding-right: 115px;
}

.p--t-115 {
  padding-top: 115px;
}

.p--b-115 {
  padding-bottom: 115px;
}

.p--l-115 {
  padding-left: 115px;
}

.p--r-115 {
  padding-right: 115px;
}

.p--120 {
  padding: 120px;
}

.p--tb-120 {
  padding-top: 120px;
  padding-bottom: 120px;
}

.p--lr-120 {
  padding-left: 120px;
  padding-right: 120px;
}

.p--t-120 {
  padding-top: 120px;
}

.p--b-120 {
  padding-bottom: 120px;
}

.p--l-120 {
  padding-left: 120px;
}

.p--r-120 {
  padding-right: 120px;
}

.p--125 {
  padding: 125px;
}

.p--tb-125 {
  padding-top: 125px;
  padding-bottom: 125px;
}

.p--lr-125 {
  padding-left: 125px;
  padding-right: 125px;
}

.p--t-125 {
  padding-top: 125px;
}

.p--b-125 {
  padding-bottom: 125px;
}

.p--l-125 {
  padding-left: 125px;
}

.p--r-125 {
  padding-right: 125px;
}

.p--130 {
  padding: 130px;
}

.p--tb-130 {
  padding-top: 130px;
  padding-bottom: 130px;
}

.p--lr-130 {
  padding-left: 130px;
  padding-right: 130px;
}

.p--t-130 {
  padding-top: 130px;
}

.p--b-130 {
  padding-bottom: 130px;
}

.p--l-130 {
  padding-left: 130px;
}

.p--r-130 {
  padding-right: 130px;
}

.p--135 {
  padding: 135px;
}

.p--tb-135 {
  padding-top: 135px;
  padding-bottom: 135px;
}

.p--lr-135 {
  padding-left: 135px;
  padding-right: 135px;
}

.p--t-135 {
  padding-top: 135px;
}

.p--b-135 {
  padding-bottom: 135px;
}

.p--l-135 {
  padding-left: 135px;
}

.p--r-135 {
  padding-right: 135px;
}

.p--140 {
  padding: 140px;
}

.p--tb-140 {
  padding-top: 140px;
  padding-bottom: 140px;
}

.p--lr-140 {
  padding-left: 140px;
  padding-right: 140px;
}

.p--t-140 {
  padding-top: 140px;
}

.p--b-140 {
  padding-bottom: 140px;
}

.p--l-140 {
  padding-left: 140px;
}

.p--r-140 {
  padding-right: 140px;
}

.p--145 {
  padding: 145px;
}

.p--tb-145 {
  padding-top: 145px;
  padding-bottom: 145px;
}

.p--lr-145 {
  padding-left: 145px;
  padding-right: 145px;
}

.p--t-145 {
  padding-top: 145px;
}

.p--b-145 {
  padding-bottom: 145px;
}

.p--l-145 {
  padding-left: 145px;
}

.p--r-145 {
  padding-right: 145px;
}

.p--150 {
  padding: 150px;
}

.p--tb-150 {
  padding-top: 150px;
  padding-bottom: 150px;
}

.p--lr-150 {
  padding-left: 150px;
  padding-right: 150px;
}

.p--t-150 {
  padding-top: 150px;
}

.p--b-150 {
  padding-bottom: 150px;
}

.p--l-150 {
  padding-left: 150px;
}

.p--r-150 {
  padding-right: 150px;
}

.p--155 {
  padding: 155px;
}

.p--tb-155 {
  padding-top: 155px;
  padding-bottom: 155px;
}

.p--lr-155 {
  padding-left: 155px;
  padding-right: 155px;
}

.p--t-155 {
  padding-top: 155px;
}

.p--b-155 {
  padding-bottom: 155px;
}

.p--l-155 {
  padding-left: 155px;
}

.p--r-155 {
  padding-right: 155px;
}

.p--160 {
  padding: 160px;
}

.p--tb-160 {
  padding-top: 160px;
  padding-bottom: 160px;
}

.p--lr-160 {
  padding-left: 160px;
  padding-right: 160px;
}

.p--t-160 {
  padding-top: 160px;
}

.p--b-160 {
  padding-bottom: 160px;
}

.p--l-160 {
  padding-left: 160px;
}

.p--r-160 {
  padding-right: 160px;
}

.p--165 {
  padding: 165px;
}

.p--tb-165 {
  padding-top: 165px;
  padding-bottom: 165px;
}

.p--lr-165 {
  padding-left: 165px;
  padding-right: 165px;
}

.p--t-165 {
  padding-top: 165px;
}

.p--b-165 {
  padding-bottom: 165px;
}

.p--l-165 {
  padding-left: 165px;
}

.p--r-165 {
  padding-right: 165px;
}

.p--170 {
  padding: 170px;
}

.p--tb-170 {
  padding-top: 170px;
  padding-bottom: 170px;
}

.p--lr-170 {
  padding-left: 170px;
  padding-right: 170px;
}

.p--t-170 {
  padding-top: 170px;
}

.p--b-170 {
  padding-bottom: 170px;
}

.p--l-170 {
  padding-left: 170px;
}

.p--r-170 {
  padding-right: 170px;
}

.p--175 {
  padding: 175px;
}

.p--tb-175 {
  padding-top: 175px;
  padding-bottom: 175px;
}

.p--lr-175 {
  padding-left: 175px;
  padding-right: 175px;
}

.p--t-175 {
  padding-top: 175px;
}

.p--b-175 {
  padding-bottom: 175px;
}

.p--l-175 {
  padding-left: 175px;
}

.p--r-175 {
  padding-right: 175px;
}

.p--180 {
  padding: 180px;
}

.p--tb-180 {
  padding-top: 180px;
  padding-bottom: 180px;
}

.p--lr-180 {
  padding-left: 180px;
  padding-right: 180px;
}

.p--t-180 {
  padding-top: 180px;
}

.p--b-180 {
  padding-bottom: 180px;
}

.p--l-180 {
  padding-left: 180px;
}

.p--r-180 {
  padding-right: 180px;
}

.p--185 {
  padding: 185px;
}

.p--tb-185 {
  padding-top: 185px;
  padding-bottom: 185px;
}

.p--lr-185 {
  padding-left: 185px;
  padding-right: 185px;
}

.p--t-185 {
  padding-top: 185px;
}

.p--b-185 {
  padding-bottom: 185px;
}

.p--l-185 {
  padding-left: 185px;
}

.p--r-185 {
  padding-right: 185px;
}

.p--190 {
  padding: 190px;
}

.p--tb-190 {
  padding-top: 190px;
  padding-bottom: 190px;
}

.p--lr-190 {
  padding-left: 190px;
  padding-right: 190px;
}

.p--t-190 {
  padding-top: 190px;
}

.p--b-190 {
  padding-bottom: 190px;
}

.p--l-190 {
  padding-left: 190px;
}

.p--r-190 {
  padding-right: 190px;
}

.p--195 {
  padding: 195px;
}

.p--tb-195 {
  padding-top: 195px;
  padding-bottom: 195px;
}

.p--lr-195 {
  padding-left: 195px;
  padding-right: 195px;
}

.p--t-195 {
  padding-top: 195px;
}

.p--b-195 {
  padding-bottom: 195px;
}

.p--l-195 {
  padding-left: 195px;
}

.p--r-195 {
  padding-right: 195px;
}

.p--200 {
  padding: 200px;
}

.p--tb-200 {
  padding-top: 200px;
  padding-bottom: 200px;
}

.p--lr-200 {
  padding-left: 200px;
  padding-right: 200px;
}

.p--t-200 {
  padding-top: 200px;
}

.p--b-200 {
  padding-bottom: 200px;
}

.p--l-200 {
  padding-left: 200px;
}

.p--r-200 {
  padding-right: 200px;
}

.p--205 {
  padding: 205px;
}

.p--tb-205 {
  padding-top: 205px;
  padding-bottom: 205px;
}

.p--lr-205 {
  padding-left: 205px;
  padding-right: 205px;
}

.p--t-205 {
  padding-top: 205px;
}

.p--b-205 {
  padding-bottom: 205px;
}

.p--l-205 {
  padding-left: 205px;
}

.p--r-205 {
  padding-right: 205px;
}

.p--210 {
  padding: 210px;
}

.p--tb-210 {
  padding-top: 210px;
  padding-bottom: 210px;
}

.p--lr-210 {
  padding-left: 210px;
  padding-right: 210px;
}

.p--t-210 {
  padding-top: 210px;
}

.p--b-210 {
  padding-bottom: 210px;
}

.p--l-210 {
  padding-left: 210px;
}

.p--r-210 {
  padding-right: 210px;
}

.p--215 {
  padding: 215px;
}

.p--tb-215 {
  padding-top: 215px;
  padding-bottom: 215px;
}

.p--lr-215 {
  padding-left: 215px;
  padding-right: 215px;
}

.p--t-215 {
  padding-top: 215px;
}

.p--b-215 {
  padding-bottom: 215px;
}

.p--l-215 {
  padding-left: 215px;
}

.p--r-215 {
  padding-right: 215px;
}

.p--220 {
  padding: 220px;
}

.p--tb-220 {
  padding-top: 220px;
  padding-bottom: 220px;
}

.p--lr-220 {
  padding-left: 220px;
  padding-right: 220px;
}

.p--t-220 {
  padding-top: 220px;
}

.p--b-220 {
  padding-bottom: 220px;
}

.p--l-220 {
  padding-left: 220px;
}

.p--r-220 {
  padding-right: 220px;
}

.p--225 {
  padding: 225px;
}

.p--tb-225 {
  padding-top: 225px;
  padding-bottom: 225px;
}

.p--lr-225 {
  padding-left: 225px;
  padding-right: 225px;
}

.p--t-225 {
  padding-top: 225px;
}

.p--b-225 {
  padding-bottom: 225px;
}

.p--l-225 {
  padding-left: 225px;
}

.p--r-225 {
  padding-right: 225px;
}

.p--230 {
  padding: 230px;
}

.p--tb-230 {
  padding-top: 230px;
  padding-bottom: 230px;
}

.p--lr-230 {
  padding-left: 230px;
  padding-right: 230px;
}

.p--t-230 {
  padding-top: 230px;
}

.p--b-230 {
  padding-bottom: 230px;
}

.p--l-230 {
  padding-left: 230px;
}

.p--r-230 {
  padding-right: 230px;
}

.p--235 {
  padding: 235px;
}

.p--tb-235 {
  padding-top: 235px;
  padding-bottom: 235px;
}

.p--lr-235 {
  padding-left: 235px;
  padding-right: 235px;
}

.p--t-235 {
  padding-top: 235px;
}

.p--b-235 {
  padding-bottom: 235px;
}

.p--l-235 {
  padding-left: 235px;
}

.p--r-235 {
  padding-right: 235px;
}

.p--240 {
  padding: 240px;
}

.p--tb-240 {
  padding-top: 240px;
  padding-bottom: 240px;
}

.p--lr-240 {
  padding-left: 240px;
  padding-right: 240px;
}

.p--t-240 {
  padding-top: 240px;
}

.p--b-240 {
  padding-bottom: 240px;
}

.p--l-240 {
  padding-left: 240px;
}

.p--r-240 {
  padding-right: 240px;
}

.p--245 {
  padding: 245px;
}

.p--tb-245 {
  padding-top: 245px;
  padding-bottom: 245px;
}

.p--lr-245 {
  padding-left: 245px;
  padding-right: 245px;
}

.p--t-245 {
  padding-top: 245px;
}

.p--b-245 {
  padding-bottom: 245px;
}

.p--l-245 {
  padding-left: 245px;
}

.p--r-245 {
  padding-right: 245px;
}

.p--250 {
  padding: 250px;
}

.p--tb-250 {
  padding-top: 250px;
  padding-bottom: 250px;
}

.p--lr-250 {
  padding-left: 250px;
  padding-right: 250px;
}

.p--t-250 {
  padding-top: 250px;
}

.p--b-250 {
  padding-bottom: 250px;
}

.p--l-250 {
  padding-left: 250px;
}

.p--r-250 {
  padding-right: 250px;
}

.p--255 {
  padding: 255px;
}

.p--tb-255 {
  padding-top: 255px;
  padding-bottom: 255px;
}

.p--lr-255 {
  padding-left: 255px;
  padding-right: 255px;
}

.p--t-255 {
  padding-top: 255px;
}

.p--b-255 {
  padding-bottom: 255px;
}

.p--l-255 {
  padding-left: 255px;
}

.p--r-255 {
  padding-right: 255px;
}

.p--260 {
  padding: 260px;
}

.p--tb-260 {
  padding-top: 260px;
  padding-bottom: 260px;
}

.p--lr-260 {
  padding-left: 260px;
  padding-right: 260px;
}

.p--t-260 {
  padding-top: 260px;
}

.p--b-260 {
  padding-bottom: 260px;
}

.p--l-260 {
  padding-left: 260px;
}

.p--r-260 {
  padding-right: 260px;
}

.p--265 {
  padding: 265px;
}

.p--tb-265 {
  padding-top: 265px;
  padding-bottom: 265px;
}

.p--lr-265 {
  padding-left: 265px;
  padding-right: 265px;
}

.p--t-265 {
  padding-top: 265px;
}

.p--b-265 {
  padding-bottom: 265px;
}

.p--l-265 {
  padding-left: 265px;
}

.p--r-265 {
  padding-right: 265px;
}

.p--270 {
  padding: 270px;
}

.p--tb-270 {
  padding-top: 270px;
  padding-bottom: 270px;
}

.p--lr-270 {
  padding-left: 270px;
  padding-right: 270px;
}

.p--t-270 {
  padding-top: 270px;
}

.p--b-270 {
  padding-bottom: 270px;
}

.p--l-270 {
  padding-left: 270px;
}

.p--r-270 {
  padding-right: 270px;
}

.p--275 {
  padding: 275px;
}

.p--tb-275 {
  padding-top: 275px;
  padding-bottom: 275px;
}

.p--lr-275 {
  padding-left: 275px;
  padding-right: 275px;
}

.p--t-275 {
  padding-top: 275px;
}

.p--b-275 {
  padding-bottom: 275px;
}

.p--l-275 {
  padding-left: 275px;
}

.p--r-275 {
  padding-right: 275px;
}

.p--280 {
  padding: 280px;
}

.p--tb-280 {
  padding-top: 280px;
  padding-bottom: 280px;
}

.p--lr-280 {
  padding-left: 280px;
  padding-right: 280px;
}

.p--t-280 {
  padding-top: 280px;
}

.p--b-280 {
  padding-bottom: 280px;
}

.p--l-280 {
  padding-left: 280px;
}

.p--r-280 {
  padding-right: 280px;
}

.p--285 {
  padding: 285px;
}

.p--tb-285 {
  padding-top: 285px;
  padding-bottom: 285px;
}

.p--lr-285 {
  padding-left: 285px;
  padding-right: 285px;
}

.p--t-285 {
  padding-top: 285px;
}

.p--b-285 {
  padding-bottom: 285px;
}

.p--l-285 {
  padding-left: 285px;
}

.p--r-285 {
  padding-right: 285px;
}

.p--290 {
  padding: 290px;
}

.p--tb-290 {
  padding-top: 290px;
  padding-bottom: 290px;
}

.p--lr-290 {
  padding-left: 290px;
  padding-right: 290px;
}

.p--t-290 {
  padding-top: 290px;
}

.p--b-290 {
  padding-bottom: 290px;
}

.p--l-290 {
  padding-left: 290px;
}

.p--r-290 {
  padding-right: 290px;
}

.p--295 {
  padding: 295px;
}

.p--tb-295 {
  padding-top: 295px;
  padding-bottom: 295px;
}

.p--lr-295 {
  padding-left: 295px;
  padding-right: 295px;
}

.p--t-295 {
  padding-top: 295px;
}

.p--b-295 {
  padding-bottom: 295px;
}

.p--l-295 {
  padding-left: 295px;
}

.p--r-295 {
  padding-right: 295px;
}

.p--300 {
  padding: 300px;
}

.p--tb-300 {
  padding-top: 300px;
  padding-bottom: 300px;
}

.p--lr-300 {
  padding-left: 300px;
  padding-right: 300px;
}

.p--t-300 {
  padding-top: 300px;
}

.p--b-300 {
  padding-bottom: 300px;
}

.p--l-300 {
  padding-left: 300px;
}

.p--r-300 {
  padding-right: 300px;
}

@media screen and (max-width: 991px) {
  .p-xs--0 {
    padding: 0;
  }
  .p-xs--tb-0 {
    padding-top: 0;
    padding-bottom: 0;
  }
  .p-xs--lr-0 {
    padding-left: 0;
    padding-right: 0;
  }
  .p-xs--t-0 {
    padding-top: 0;
  }
  .p-xs--b-0 {
    padding-bottom: 0;
  }
  .p-xs--l-0 {
    padding-left: 0;
  }
  .p-xs--r-0 {
    padding-right: 0;
  }
  .p-xs--5 {
    padding: 5px;
  }
  .p-xs--tb-5 {
    padding-top: 5px;
    padding-bottom: 5px;
  }
  .p-xs--lr-5 {
    padding-left: 5px;
    padding-right: 5px;
  }
  .p-xs--t-5 {
    padding-top: 5px;
  }
  .p-xs--b-5 {
    padding-bottom: 5px;
  }
  .p-xs--l-5 {
    padding-left: 5px;
  }
  .p-xs--r-5 {
    padding-right: 5px;
  }
  .p-xs--10 {
    padding: 10px;
  }
  .p-xs--tb-10 {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .p-xs--lr-10 {
    padding-left: 10px;
    padding-right: 10px;
  }
  .p-xs--t-10 {
    padding-top: 10px;
  }
  .p-xs--b-10 {
    padding-bottom: 10px;
  }
  .p-xs--l-10 {
    padding-left: 10px;
  }
  .p-xs--r-10 {
    padding-right: 10px;
  }
  .p-xs--15 {
    padding: 15px;
  }
  .p-xs--tb-15 {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .p-xs--lr-15 {
    padding-left: 15px;
    padding-right: 15px;
  }
  .p-xs--t-15 {
    padding-top: 15px;
  }
  .p-xs--b-15 {
    padding-bottom: 15px;
  }
  .p-xs--l-15 {
    padding-left: 15px;
  }
  .p-xs--r-15 {
    padding-right: 15px;
  }
  .p-xs--20 {
    padding: 20px;
  }
  .p-xs--tb-20 {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .p-xs--lr-20 {
    padding-left: 20px;
    padding-right: 20px;
  }
  .p-xs--t-20 {
    padding-top: 20px;
  }
  .p-xs--b-20 {
    padding-bottom: 20px;
  }
  .p-xs--l-20 {
    padding-left: 20px;
  }
  .p-xs--r-20 {
    padding-right: 20px;
  }
  .p-xs--25 {
    padding: 25px;
  }
  .p-xs--tb-25 {
    padding-top: 25px;
    padding-bottom: 25px;
  }
  .p-xs--lr-25 {
    padding-left: 25px;
    padding-right: 25px;
  }
  .p-xs--t-25 {
    padding-top: 25px;
  }
  .p-xs--b-25 {
    padding-bottom: 25px;
  }
  .p-xs--l-25 {
    padding-left: 25px;
  }
  .p-xs--r-25 {
    padding-right: 25px;
  }
  .p-xs--30 {
    padding: 30px;
  }
  .p-xs--tb-30 {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .p-xs--lr-30 {
    padding-left: 30px;
    padding-right: 30px;
  }
  .p-xs--t-30 {
    padding-top: 30px;
  }
  .p-xs--b-30 {
    padding-bottom: 30px;
  }
  .p-xs--l-30 {
    padding-left: 30px;
  }
  .p-xs--r-30 {
    padding-right: 30px;
  }
  .p-xs--35 {
    padding: 35px;
  }
  .p-xs--tb-35 {
    padding-top: 35px;
    padding-bottom: 35px;
  }
  .p-xs--lr-35 {
    padding-left: 35px;
    padding-right: 35px;
  }
  .p-xs--t-35 {
    padding-top: 35px;
  }
  .p-xs--b-35 {
    padding-bottom: 35px;
  }
  .p-xs--l-35 {
    padding-left: 35px;
  }
  .p-xs--r-35 {
    padding-right: 35px;
  }
  .p-xs--40 {
    padding: 40px;
  }
  .p-xs--tb-40 {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .p-xs--lr-40 {
    padding-left: 40px;
    padding-right: 40px;
  }
  .p-xs--t-40 {
    padding-top: 40px;
  }
  .p-xs--b-40 {
    padding-bottom: 40px;
  }
  .p-xs--l-40 {
    padding-left: 40px;
  }
  .p-xs--r-40 {
    padding-right: 40px;
  }
  .p-xs--45 {
    padding: 45px;
  }
  .p-xs--tb-45 {
    padding-top: 45px;
    padding-bottom: 45px;
  }
  .p-xs--lr-45 {
    padding-left: 45px;
    padding-right: 45px;
  }
  .p-xs--t-45 {
    padding-top: 45px;
  }
  .p-xs--b-45 {
    padding-bottom: 45px;
  }
  .p-xs--l-45 {
    padding-left: 45px;
  }
  .p-xs--r-45 {
    padding-right: 45px;
  }
  .p-xs--50 {
    padding: 50px;
  }
  .p-xs--tb-50 {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .p-xs--lr-50 {
    padding-left: 50px;
    padding-right: 50px;
  }
  .p-xs--t-50 {
    padding-top: 50px;
  }
  .p-xs--b-50 {
    padding-bottom: 50px;
  }
  .p-xs--l-50 {
    padding-left: 50px;
  }
  .p-xs--r-50 {
    padding-right: 50px;
  }
  .p-xs--55 {
    padding: 55px;
  }
  .p-xs--tb-55 {
    padding-top: 55px;
    padding-bottom: 55px;
  }
  .p-xs--lr-55 {
    padding-left: 55px;
    padding-right: 55px;
  }
  .p-xs--t-55 {
    padding-top: 55px;
  }
  .p-xs--b-55 {
    padding-bottom: 55px;
  }
  .p-xs--l-55 {
    padding-left: 55px;
  }
  .p-xs--r-55 {
    padding-right: 55px;
  }
  .p-xs--60 {
    padding: 60px;
  }
  .p-xs--tb-60 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .p-xs--lr-60 {
    padding-left: 60px;
    padding-right: 60px;
  }
  .p-xs--t-60 {
    padding-top: 60px;
  }
  .p-xs--b-60 {
    padding-bottom: 60px;
  }
  .p-xs--l-60 {
    padding-left: 60px;
  }
  .p-xs--r-60 {
    padding-right: 60px;
  }
  .p-xs--65 {
    padding: 65px;
  }
  .p-xs--tb-65 {
    padding-top: 65px;
    padding-bottom: 65px;
  }
  .p-xs--lr-65 {
    padding-left: 65px;
    padding-right: 65px;
  }
  .p-xs--t-65 {
    padding-top: 65px;
  }
  .p-xs--b-65 {
    padding-bottom: 65px;
  }
  .p-xs--l-65 {
    padding-left: 65px;
  }
  .p-xs--r-65 {
    padding-right: 65px;
  }
  .p-xs--70 {
    padding: 70px;
  }
  .p-xs--tb-70 {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .p-xs--lr-70 {
    padding-left: 70px;
    padding-right: 70px;
  }
  .p-xs--t-70 {
    padding-top: 70px;
  }
  .p-xs--b-70 {
    padding-bottom: 70px;
  }
  .p-xs--l-70 {
    padding-left: 70px;
  }
  .p-xs--r-70 {
    padding-right: 70px;
  }
  .p-xs--75 {
    padding: 75px;
  }
  .p-xs--tb-75 {
    padding-top: 75px;
    padding-bottom: 75px;
  }
  .p-xs--lr-75 {
    padding-left: 75px;
    padding-right: 75px;
  }
  .p-xs--t-75 {
    padding-top: 75px;
  }
  .p-xs--b-75 {
    padding-bottom: 75px;
  }
  .p-xs--l-75 {
    padding-left: 75px;
  }
  .p-xs--r-75 {
    padding-right: 75px;
  }
  .p-xs--80 {
    padding: 80px;
  }
  .p-xs--tb-80 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .p-xs--lr-80 {
    padding-left: 80px;
    padding-right: 80px;
  }
  .p-xs--t-80 {
    padding-top: 80px;
  }
  .p-xs--b-80 {
    padding-bottom: 80px;
  }
  .p-xs--l-80 {
    padding-left: 80px;
  }
  .p-xs--r-80 {
    padding-right: 80px;
  }
  .p-xs--85 {
    padding: 85px;
  }
  .p-xs--tb-85 {
    padding-top: 85px;
    padding-bottom: 85px;
  }
  .p-xs--lr-85 {
    padding-left: 85px;
    padding-right: 85px;
  }
  .p-xs--t-85 {
    padding-top: 85px;
  }
  .p-xs--b-85 {
    padding-bottom: 85px;
  }
  .p-xs--l-85 {
    padding-left: 85px;
  }
  .p-xs--r-85 {
    padding-right: 85px;
  }
  .p-xs--90 {
    padding: 90px;
  }
  .p-xs--tb-90 {
    padding-top: 90px;
    padding-bottom: 90px;
  }
  .p-xs--lr-90 {
    padding-left: 90px;
    padding-right: 90px;
  }
  .p-xs--t-90 {
    padding-top: 90px;
  }
  .p-xs--b-90 {
    padding-bottom: 90px;
  }
  .p-xs--l-90 {
    padding-left: 90px;
  }
  .p-xs--r-90 {
    padding-right: 90px;
  }
  .p-xs--95 {
    padding: 95px;
  }
  .p-xs--tb-95 {
    padding-top: 95px;
    padding-bottom: 95px;
  }
  .p-xs--lr-95 {
    padding-left: 95px;
    padding-right: 95px;
  }
  .p-xs--t-95 {
    padding-top: 95px;
  }
  .p-xs--b-95 {
    padding-bottom: 95px;
  }
  .p-xs--l-95 {
    padding-left: 95px;
  }
  .p-xs--r-95 {
    padding-right: 95px;
  }
  .p-xs--100 {
    padding: 100px;
  }
  .p-xs--tb-100 {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .p-xs--lr-100 {
    padding-left: 100px;
    padding-right: 100px;
  }
  .p-xs--t-100 {
    padding-top: 100px;
  }
  .p-xs--b-100 {
    padding-bottom: 100px;
  }
  .p-xs--l-100 {
    padding-left: 100px;
  }
  .p-xs--r-100 {
    padding-right: 100px;
  }
  .p-xs--105 {
    padding: 105px;
  }
  .p-xs--tb-105 {
    padding-top: 105px;
    padding-bottom: 105px;
  }
  .p-xs--lr-105 {
    padding-left: 105px;
    padding-right: 105px;
  }
  .p-xs--t-105 {
    padding-top: 105px;
  }
  .p-xs--b-105 {
    padding-bottom: 105px;
  }
  .p-xs--l-105 {
    padding-left: 105px;
  }
  .p-xs--r-105 {
    padding-right: 105px;
  }
  .p-xs--110 {
    padding: 110px;
  }
  .p-xs--tb-110 {
    padding-top: 110px;
    padding-bottom: 110px;
  }
  .p-xs--lr-110 {
    padding-left: 110px;
    padding-right: 110px;
  }
  .p-xs--t-110 {
    padding-top: 110px;
  }
  .p-xs--b-110 {
    padding-bottom: 110px;
  }
  .p-xs--l-110 {
    padding-left: 110px;
  }
  .p-xs--r-110 {
    padding-right: 110px;
  }
  .p-xs--115 {
    padding: 115px;
  }
  .p-xs--tb-115 {
    padding-top: 115px;
    padding-bottom: 115px;
  }
  .p-xs--lr-115 {
    padding-left: 115px;
    padding-right: 115px;
  }
  .p-xs--t-115 {
    padding-top: 115px;
  }
  .p-xs--b-115 {
    padding-bottom: 115px;
  }
  .p-xs--l-115 {
    padding-left: 115px;
  }
  .p-xs--r-115 {
    padding-right: 115px;
  }
  .p-xs--120 {
    padding: 120px;
  }
  .p-xs--tb-120 {
    padding-top: 120px;
    padding-bottom: 120px;
  }
  .p-xs--lr-120 {
    padding-left: 120px;
    padding-right: 120px;
  }
  .p-xs--t-120 {
    padding-top: 120px;
  }
  .p-xs--b-120 {
    padding-bottom: 120px;
  }
  .p-xs--l-120 {
    padding-left: 120px;
  }
  .p-xs--r-120 {
    padding-right: 120px;
  }
  .p-xs--125 {
    padding: 125px;
  }
  .p-xs--tb-125 {
    padding-top: 125px;
    padding-bottom: 125px;
  }
  .p-xs--lr-125 {
    padding-left: 125px;
    padding-right: 125px;
  }
  .p-xs--t-125 {
    padding-top: 125px;
  }
  .p-xs--b-125 {
    padding-bottom: 125px;
  }
  .p-xs--l-125 {
    padding-left: 125px;
  }
  .p-xs--r-125 {
    padding-right: 125px;
  }
  .p-xs--130 {
    padding: 130px;
  }
  .p-xs--tb-130 {
    padding-top: 130px;
    padding-bottom: 130px;
  }
  .p-xs--lr-130 {
    padding-left: 130px;
    padding-right: 130px;
  }
  .p-xs--t-130 {
    padding-top: 130px;
  }
  .p-xs--b-130 {
    padding-bottom: 130px;
  }
  .p-xs--l-130 {
    padding-left: 130px;
  }
  .p-xs--r-130 {
    padding-right: 130px;
  }
  .p-xs--135 {
    padding: 135px;
  }
  .p-xs--tb-135 {
    padding-top: 135px;
    padding-bottom: 135px;
  }
  .p-xs--lr-135 {
    padding-left: 135px;
    padding-right: 135px;
  }
  .p-xs--t-135 {
    padding-top: 135px;
  }
  .p-xs--b-135 {
    padding-bottom: 135px;
  }
  .p-xs--l-135 {
    padding-left: 135px;
  }
  .p-xs--r-135 {
    padding-right: 135px;
  }
  .p-xs--140 {
    padding: 140px;
  }
  .p-xs--tb-140 {
    padding-top: 140px;
    padding-bottom: 140px;
  }
  .p-xs--lr-140 {
    padding-left: 140px;
    padding-right: 140px;
  }
  .p-xs--t-140 {
    padding-top: 140px;
  }
  .p-xs--b-140 {
    padding-bottom: 140px;
  }
  .p-xs--l-140 {
    padding-left: 140px;
  }
  .p-xs--r-140 {
    padding-right: 140px;
  }
  .p-xs--145 {
    padding: 145px;
  }
  .p-xs--tb-145 {
    padding-top: 145px;
    padding-bottom: 145px;
  }
  .p-xs--lr-145 {
    padding-left: 145px;
    padding-right: 145px;
  }
  .p-xs--t-145 {
    padding-top: 145px;
  }
  .p-xs--b-145 {
    padding-bottom: 145px;
  }
  .p-xs--l-145 {
    padding-left: 145px;
  }
  .p-xs--r-145 {
    padding-right: 145px;
  }
  .p-xs--150 {
    padding: 150px;
  }
  .p-xs--tb-150 {
    padding-top: 150px;
    padding-bottom: 150px;
  }
  .p-xs--lr-150 {
    padding-left: 150px;
    padding-right: 150px;
  }
  .p-xs--t-150 {
    padding-top: 150px;
  }
  .p-xs--b-150 {
    padding-bottom: 150px;
  }
  .p-xs--l-150 {
    padding-left: 150px;
  }
  .p-xs--r-150 {
    padding-right: 150px;
  }
}
.gap--0 {
  gap: 0;
}

.gap--lr-0, .gap--tb-0 {
  gap: 0 0;
}

.gap--5 {
  gap: 5px;
}

.gap--tb-5 {
  gap: 5px 0;
}

.gap--lr-5 {
  gap: 0 5px;
}

.gap--10 {
  gap: 10px;
}

.gap--tb-10 {
  gap: 10px 0;
}

.gap--lr-10 {
  gap: 0 10px;
}

.gap--12 {
  gap: 12px;
}

.gap--tb-12 {
  gap: 12px 0;
}

.gap--lr-12 {
  gap: 0 12px;
}

.gap--15 {
  gap: 15px;
}

.gap--tb-15 {
  gap: 15px 0;
}

.gap--lr-15 {
  gap: 0 15px;
}

.gap--20 {
  gap: 20px;
}

.gap--tb-20 {
  gap: 20px 0;
}

.gap--lr-20 {
  gap: 0 20px;
}

.gap--25 {
  gap: 25px;
}

.gap--tb-25 {
  gap: 25px 0;
}

.gap--lr-25 {
  gap: 0 25px;
}

.gap--30 {
  gap: 30px;
}

.gap--tb-30 {
  gap: 30px 0;
}

.gap--lr-30 {
  gap: 0 30px;
}

.gap--35 {
  gap: 35px;
}

.gap--tb-35 {
  gap: 35px 0;
}

.gap--lr-35 {
  gap: 0 35px;
}

.gap--40 {
  gap: 40px;
}

.gap--tb-40 {
  gap: 40px 0;
}

.gap--lr-40 {
  gap: 0 40px;
}

.gap--45 {
  gap: 45px;
}

.gap--tb-45 {
  gap: 45px 0;
}

.gap--lr-45 {
  gap: 0 45px;
}

.gap--50 {
  gap: 50px;
}

.gap--tb-50 {
  gap: 50px 0;
}

.gap--lr-50 {
  gap: 0 50px;
}

.gap--55 {
  gap: 55px;
}

.gap--tb-55 {
  gap: 55px 0;
}

.gap--lr-55 {
  gap: 0 55px;
}

.gap--60 {
  gap: 60px;
}

.gap--tb-60 {
  gap: 60px 0;
}

.gap--lr-60 {
  gap: 0 60px;
}

.gap--65 {
  gap: 65px;
}

.gap--tb-65 {
  gap: 65px 0;
}

.gap--lr-65 {
  gap: 0 65px;
}

.gap--70 {
  gap: 70px;
}

.gap--tb-70 {
  gap: 70px 0;
}

.gap--lr-70 {
  gap: 0 70px;
}

.gap--75 {
  gap: 75px;
}

.gap--tb-75 {
  gap: 75px 0;
}

.gap--lr-75 {
  gap: 0 75px;
}

.gap--80 {
  gap: 80px;
}

.gap--tb-80 {
  gap: 80px 0;
}

.gap--lr-80 {
  gap: 0 80px;
}

.gap--85 {
  gap: 85px;
}

.gap--tb-85 {
  gap: 85px 0;
}

.gap--lr-85 {
  gap: 0 85px;
}

.gap--90 {
  gap: 90px;
}

.gap--tb-90 {
  gap: 90px 0;
}

.gap--lr-90 {
  gap: 0 90px;
}

.gap--95 {
  gap: 95px;
}

.gap--tb-95 {
  gap: 95px 0;
}

.gap--lr-95 {
  gap: 0 95px;
}

.gap--100 {
  gap: 100px;
}

.gap--tb-100 {
  gap: 100px 0;
}

.gap--lr-100 {
  gap: 0 100px;
}

.gap--105 {
  gap: 105px;
}

.gap--tb-105 {
  gap: 105px 0;
}

.gap--lr-105 {
  gap: 0 105px;
}

.gap--110 {
  gap: 110px;
}

.gap--tb-110 {
  gap: 110px 0;
}

.gap--lr-110 {
  gap: 0 110px;
}

.gap--115 {
  gap: 115px;
}

.gap--tb-115 {
  gap: 115px 0;
}

.gap--lr-115 {
  gap: 0 115px;
}

.gap--120 {
  gap: 120px;
}

.gap--tb-120 {
  gap: 120px 0;
}

.gap--lr-120 {
  gap: 0 120px;
}

.gap--125 {
  gap: 125px;
}

.gap--tb-125 {
  gap: 125px 0;
}

.gap--lr-125 {
  gap: 0 125px;
}

.gap--130 {
  gap: 130px;
}

.gap--tb-130 {
  gap: 130px 0;
}

.gap--lr-130 {
  gap: 0 130px;
}

.gap--135 {
  gap: 135px;
}

.gap--tb-135 {
  gap: 135px 0;
}

.gap--lr-135 {
  gap: 0 135px;
}

.gap--140 {
  gap: 140px;
}

.gap--tb-140 {
  gap: 140px 0;
}

.gap--lr-140 {
  gap: 0 140px;
}

.gap--145 {
  gap: 145px;
}

.gap--tb-145 {
  gap: 145px 0;
}

.gap--lr-145 {
  gap: 0 145px;
}

.gap--150 {
  gap: 150px;
}

.gap--tb-150 {
  gap: 150px 0;
}

.gap--lr-150 {
  gap: 0 150px;
}

@media screen and (max-width: 767px) {
  .gap-xs--0 {
    gap: 0;
  }
  .gap-xs--lr-0, .gap-xs--tb-0 {
    gap: 0 0;
  }
  .gap-xs--5 {
    gap: 5px;
  }
  .gap-xs--tb-5 {
    gap: 5px 0;
  }
  .gap-xs--lr-5 {
    gap: 0 5px;
  }
  .gap-xs--10 {
    gap: 10px;
  }
  .gap-xs--tb-10 {
    gap: 10px 0;
  }
  .gap-xs--lr-10 {
    gap: 0 10px;
  }
  .gap-xs--15 {
    gap: 15px;
  }
  .gap-xs--tb-15 {
    gap: 15px 0;
  }
  .gap-xs--lr-15 {
    gap: 0 15px;
  }
  .gap-xs--20 {
    gap: 20px;
  }
  .gap-xs--tb-20 {
    gap: 20px 0;
  }
  .gap-xs--lr-20 {
    gap: 0 20px;
  }
  .gap-xs--25 {
    gap: 25px;
  }
  .gap-xs--tb-25 {
    gap: 25px 0;
  }
  .gap-xs--lr-25 {
    gap: 0 25px;
  }
  .gap-xs--30 {
    gap: 30px;
  }
  .gap-xs--tb-30 {
    gap: 30px 0;
  }
  .gap-xs--lr-30 {
    gap: 0 30px;
  }
  .gap-xs--35 {
    gap: 35px;
  }
  .gap-xs--tb-35 {
    gap: 35px 0;
  }
  .gap-xs--lr-35 {
    gap: 0 35px;
  }
  .gap-xs--40 {
    gap: 40px;
  }
  .gap-xs--tb-40 {
    gap: 40px 0;
  }
  .gap-xs--lr-40 {
    gap: 0 40px;
  }
  .gap-xs--45 {
    gap: 45px;
  }
  .gap-xs--tb-45 {
    gap: 45px 0;
  }
  .gap-xs--lr-45 {
    gap: 0 45px;
  }
  .gap-xs--50 {
    gap: 50px;
  }
  .gap-xs--tb-50 {
    gap: 50px 0;
  }
  .gap-xs--lr-50 {
    gap: 0 50px;
  }
  .gap-xs--55 {
    gap: 55px;
  }
  .gap-xs--tb-55 {
    gap: 55px 0;
  }
  .gap-xs--lr-55 {
    gap: 0 55px;
  }
  .gap-xs--60 {
    gap: 60px;
  }
  .gap-xs--tb-60 {
    gap: 60px 0;
  }
  .gap-xs--lr-60 {
    gap: 0 60px;
  }
  .gap-xs--65 {
    gap: 65px;
  }
  .gap-xs--tb-65 {
    gap: 65px 0;
  }
  .gap-xs--lr-65 {
    gap: 0 65px;
  }
  .gap-xs--70 {
    gap: 70px;
  }
  .gap-xs--tb-70 {
    gap: 70px 0;
  }
  .gap-xs--lr-70 {
    gap: 0 70px;
  }
  .gap-xs--75 {
    gap: 75px;
  }
  .gap-xs--tb-75 {
    gap: 75px 0;
  }
  .gap-xs--lr-75 {
    gap: 0 75px;
  }
  .gap-xs--80 {
    gap: 80px;
  }
  .gap-xs--tb-80 {
    gap: 80px 0;
  }
  .gap-xs--lr-80 {
    gap: 0 80px;
  }
  .gap-xs--85 {
    gap: 85px;
  }
  .gap-xs--tb-85 {
    gap: 85px 0;
  }
  .gap-xs--lr-85 {
    gap: 0 85px;
  }
  .gap-xs--90 {
    gap: 90px;
  }
  .gap-xs--tb-90 {
    gap: 90px 0;
  }
  .gap-xs--lr-90 {
    gap: 0 90px;
  }
  .gap-xs--95 {
    gap: 95px;
  }
  .gap-xs--tb-95 {
    gap: 95px 0;
  }
  .gap-xs--lr-95 {
    gap: 0 95px;
  }
  .gap-xs--100 {
    gap: 100px;
  }
  .gap-xs--tb-100 {
    gap: 100px 0;
  }
  .gap-xs--lr-100 {
    gap: 0 100px;
  }
  .gap-xs--105 {
    gap: 105px;
  }
  .gap-xs--tb-105 {
    gap: 105px 0;
  }
  .gap-xs--lr-105 {
    gap: 0 105px;
  }
  .gap-xs--110 {
    gap: 110px;
  }
  .gap-xs--tb-110 {
    gap: 110px 0;
  }
  .gap-xs--lr-110 {
    gap: 0 110px;
  }
  .gap-xs--115 {
    gap: 115px;
  }
  .gap-xs--tb-115 {
    gap: 115px 0;
  }
  .gap-xs--lr-115 {
    gap: 0 115px;
  }
  .gap-xs--120 {
    gap: 120px;
  }
  .gap-xs--tb-120 {
    gap: 120px 0;
  }
  .gap-xs--lr-120 {
    gap: 0 120px;
  }
  .gap-xs--125 {
    gap: 125px;
  }
  .gap-xs--tb-125 {
    gap: 125px 0;
  }
  .gap-xs--lr-125 {
    gap: 0 125px;
  }
  .gap-xs--130 {
    gap: 130px;
  }
  .gap-xs--tb-130 {
    gap: 130px 0;
  }
  .gap-xs--lr-130 {
    gap: 0 130px;
  }
  .gap-xs--135 {
    gap: 135px;
  }
  .gap-xs--tb-135 {
    gap: 135px 0;
  }
  .gap-xs--lr-135 {
    gap: 0 135px;
  }
  .gap-xs--140 {
    gap: 140px;
  }
  .gap-xs--tb-140 {
    gap: 140px 0;
  }
  .gap-xs--lr-140 {
    gap: 0 140px;
  }
  .gap-xs--145 {
    gap: 145px;
  }
  .gap-xs--tb-145 {
    gap: 145px 0;
  }
  .gap-xs--lr-145 {
    gap: 0 145px;
  }
  .gap-xs--150 {
    gap: 150px;
  }
  .gap-xs--tb-150 {
    gap: 150px 0;
  }
  .gap-xs--lr-150 {
    gap: 0 150px;
  }
}
.visually-hidden {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.no-style {
  list-style: none;
  padding: 0;
  margin: 0;
}

ul, ol {
  padding-left: 40px;
}
ul li::marker, ol li::marker {
  color: var(--wp--preset--color--tertiary);
  font-weight: var(--wp--custom--font-weight--bold);
}

ul li::marker {
  font-size: var(--wp--preset--font-size--l);
}

ol li::marker {
  font-size: var(--wp--preset--font-size--m);
}

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

.t--end {
  text-align: end;
}

.t--white {
  color: var(--wp--preset--color--white);
}

.t--primary {
  color: var(--wp--preset--color--primary);
}

.t--tertiary {
  color: var(--wp--preset--color--tertiary);
}

.bg--primary {
  background-color: var(--wp--preset--color--primary);
}

.bg--secondary {
  background-color: var(--wp--preset--color--secondary);
}

.bg--tertiary {
  background-color: var(--wp--preset--color--tertiary);
}

.bg--fourth {
  background-color: var(--wp--preset--color--fourth);
}

.bg--white {
  background-color: var(--wp--preset--color--white);
}

.bg--gray {
  background-color: var(--wp--preset--color--gray);
}

.br--m {
  border-radius: var(--wp--custom--radius--m);
}

.br--l {
  border-radius: var(--wp--custom--radius--l);
}

.t--underline {
  text-decoration: underline;
}

.overflow-hidden {
  overflow: hidden;
}

.text-s {
  font-size: var(--wp--preset--font-size--s);
}

.text-m {
  font-size: clamp(1.125rem, 1.036rem + 0.238vw, 1.25rem);
}

.text-l {
  font-size: clamp(1.25rem, 1.116rem + 0.357vw, 1.438rem);
}

.fw-bold {
  font-weight: var(--wp--custom--font-weight--bold);
}

.fw-semibold {
  font-weight: var(--wp--custom--font-weight--semibold);
}

/****************************************************************************/
/* TEMPLATE PARTS
/****************************************************************************/
header {
  padding: var(--wp--preset--spacing--m) 0;
  position: relative;
  z-index: 1000;
}
header .header__logo svg {
  width: 200px;
}
header.is-search-open {
  background: var(--wp--preset--color--primary);
}
header.is-search-open .header__logo svg path {
  fill: var(--wp--preset--color--white);
}
header.is-search-open .header__nav-top nav > ul > li > a {
  color: var(--wp--preset--color--white);
}
header.is-search-open .header__nav-top nav > ul > li:last-child a {
  background-color: var(--wp--preset--color--white);
  color: var(--wp--preset--color--primary);
  background-image: url("./assets/svg/icon-heart-mini-blue.svg");
  box-shadow: 0px 0px 16px 2px var(--wp--preset--color--white);
}
@media screen and (min-width: 576px) {
  header .header__logo svg {
    width: 256px;
  }
}

h1:has(strong) {
  font-weight: var(--wp--custom--font-weight--regular);
}
h1:has(strong) strong {
  font-weight: 700;
}

.footer__top {
  background-image: url("./assets/svg/adapeila-footer-shape.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left center;
}

.footer__nav a {
  color: var(--wp--preset--color--white);
  position: relative;
}
.footer__nav a:before {
  content: "";
  width: 0;
  height: 2px;
  background: var(--wp--preset--color--white);
  position: absolute;
  bottom: -2px;
  left: 0;
  z-index: 100;
  transition: all 0.3s ease-in-out;
}
.footer__nav a:hover:before {
  width: 100%;
}

.button--sm {
  font-size: var(--wp--preset--font-size--s);
}

.footer__bottom .footer__logo img {
  -o-object-fit: contain;
     object-fit: contain;
}
.footer__bottom .list-inline-item {
  font-weight: var(--wp--custom--font-weight--regular);
}
.footer__bottom .list-inline-item a {
  position: relative;
}
.footer__bottom .list-inline-item a:before {
  content: "";
  width: 0;
  height: 2px;
  background: var(--wp--preset--color--primary);
  position: absolute;
  bottom: -2px;
  left: 0;
  z-index: 100;
  transition: all 0.3s ease-in-out;
}
.footer__bottom .list-inline-item a:hover:before {
  width: 100%;
}

@media screen and (min-width: 992px) {
  .footer__col:not(:last-child) {
    position: relative;
  }
  .footer__col:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--wp--preset--color--white);
    opacity: 0.2;
  }
}
.section--events {
  padding: var(--wp--preset--spacing--l) 0;
}

.swiper-events {
  overflow: visible;
}
.swiper-events .swiper-slide {
  height: auto;
}

.event-card {
  height: 100%;
  background: var(--wp--preset--color--white);
  box-shadow: var(--wp--preset--shadow--neat);
  padding: var(--wp--preset--spacing--l) var(--wp--preset--spacing--m);
  border-radius: var(--wp--custom--radius--l);
}
.event-card__date {
  font-weight: var(--wp--custom--font-weight--bold);
  background-color: var(--wp--preset--color--secondary);
  color: var(--wp--preset--color--white);
  padding: 4px 8px;
  display: inline-block;
  transform: skew(-10deg);
}
.event-card__date span {
  display: inline-block;
  transform: skew(10deg);
}
.event-card__title {
  font-size: var(--wp--preset--font-size--m);
  font-weight: var(--wp--preset--font-weight--medium);
}

.map-container {
  background-color: var(--wp--preset--color--gray);
}
.map-container .map-wrapper {
  height: 740px;
}
.map-container .map-wrapper #map {
  width: 100%;
  height: 100%;
}
.map-container .map-wrapper #map.is-loaded {
  opacity: 1;
}
.map-container .marker {
  width: 24px;
  height: 26px;
  background: url("./assets/svg/map-marker.svg") no-repeat center center;
  cursor: pointer;
}
.map-container .mapboxgl-popup {
  max-width: 375px !important;
  font-family: var(--wp--preset--font--primary);
}
.map-container .mapboxgl-popup-anchor-top .mapboxgl-popup-tip {
  border-bottom-color: var(--wp--preset--color--primary);
}
.map-container .mapboxgl-popup-anchor-bottom .mapboxgl-popup-tip {
  border-top-color: var(--wp--preset--color--primary);
}
.map-container .mapboxgl-popup-anchor-left .mapboxgl-popup-tip {
  border-right-color: var(--wp--preset--color--primary);
}
.map-container .mapboxgl-popup-anchor-right .mapboxgl-popup-tip {
  border-left-color: var(--wp--preset--color--primary);
}
.map-container .mapboxgl-popup .mapboxgl-popup-content {
  background: var(--wp--preset--color--primary);
  color: var(--wp--preset--color--white);
  padding: var(--wp--preset--spacing--l) var(--wp--preset--spacing--m);
  border-radius: var(--wp--custom--radius--l);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.map-container .mapboxgl-popup .mapboxgl-popup-content .mapboxgl-popup-title {
  font-size: var(--wp--preset--font-size--m);
  font-weight: var(--wp--custom--font-weight--bold);
}
.map-container .mapboxgl-popup .mapboxgl-popup-content a {
  font-size: var(--wp--preset--font-size--s);
  outline: 0;
}
.map-container .mapboxgl-popup .mapboxgl-popup-content p {
  margin: 5px 0;
}
.map-container .mapboxgl-popup .mapboxgl-popup-content .mapboxgl-popup-close-button {
  font-size: 24px;
  color: var(--wp--preset--color--white);
  top: 10px;
  right: 10px;
}
@media screen and (max-width: 576px) {
  .map-container .map-wrapper {
    height: 520px;
  }
}

#map-etablissement .filters {
  margin-bottom: 2rem;
}
#map-etablissement .filters .filter-group {
  position: relative;
  background: var(--wp--preset--color--primary);
  padding: var(--wp--preset--spacing--s) var(--wp--preset--spacing--l) var(--wp--preset--spacing--s) 0;
  border-top-right-radius: var(--wp--custom--radius--full);
  border-bottom-right-radius: var(--wp--custom--radius--full);
}
#map-etablissement .filters .filter-group:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--wp--preset--color--primary);
}
#map-etablissement .filters .filter-group .filter-select {
  color: var(--wp--preset--color--white);
  font-weight: var(--wp--custom--font-weight--semibold);
  padding-right: var(--wp--preset--spacing--s);
  border: 0;
  background-color: transparent;
}
#map-etablissement .filters .filter-group .filter-select:focus {
  outline: none;
}
#map-etablissement .filters .btn--reset {
  display: none;
}
#map-etablissement .filters .btn--reset.is-visible {
  display: block;
}
#map-etablissement .filters .results-count {
  margin: var(--wp--preset--spacing--s) 0;
}
@media screen and (max-width: 1400px) {
  #map-etablissement .filters {
    padding-left: var(--wp--style--root--padding-left);
    padding-right: var(--wp--style--root--padding-right);
  }
}
@media screen and (min-width: 768px) {
  #map-etablissement .filters .filter-group {
    width: -moz-max-content;
    width: max-content;
  }
}

.establishments-list {
  padding: var(--wp--preset--spacing--l);
  max-height: 740px;
  overflow: auto;
}
.establishments-list .establishment-item {
  min-width: 300px;
  max-width: 400px;
  flex: 1;
  padding: var(--wp--preset--spacing--m);
  background-color: var(--wp--preset--color--white);
  border-radius: var(--wp--custom--radius--l);
}
.establishments-list .establishment-item hr {
  border: 2px solid var(--wp--preset--color--gray);
}
.establishments-list .establishment-item .item__title {
  font-size: clamp(1.25rem, 0.982rem + 0.714vw, 1.625rem);
  line-height: var(--wp--custom--line-height--narrow);
  font-weight: var(--wp--custom--font-weight--semibold);
}
.establishments-list .establishment-item p {
  margin: 5px 0;
}

/****************************************************************************/
/* ELEMENTS
/****************************************************************************/
@media screen and (max-width: 992px) {
  .is-card .wp-block-columns {
    flex-wrap: wrap !important;
  }
  .is-card .wp-block-columns .wp-block-column {
    flex-basis: 48% !important;
  }
}

@media (max-width: 768px) {
  .wp-block-group:not(.is-style-wide):not(.is-card) .wp-block-columns .wp-block-column:has(figure) {
    order: 1;
  }
  .wp-block-group:not(.is-style-wide):not(.is-card) .wp-block-columns .wp-block-column:has(p) {
    order: 2;
  }
}
.is-style-wide {
  position: relative;
}
@media screen and (max-width: 992px) {
  .is-style-wide .wp-block-columns > .wp-block-column {
    flex-basis: 100% !important;
  }
}

@media screen and (min-width: 1200px) {
  .is-style-full {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%) translateX(0%);
  }
}

.is-style-card {
  height: 100%;
}

.is-style-outline .wp-block-button__link.wp-element-button:hover {
  background-color: var(--wp--preset--color--primary);
  color: var(--wp--preset--color--white);
}

.is-style-transparent .wp-block-button__link.wp-element-button:hover {
  background-color: var(--wp--preset--color--white);
  color: var(--wp--preset--color--primary);
}

.wp-block-button:not(.is-style-external-link) a[href*="//"]:not([href*=adapeila]) {
  background-image: url("./assets/svg/icon-external-white.svg");
  background-size: inherit;
  background-repeat: no-repeat;
  background-position: calc(100% - 20px) center;
  padding-right: 2.8em;
}

.wp-block-button__link.wp-element-button {
  transition: all 0.3s ease-in-out;
}

.wp-block-button:not([class*=is-style-]) .wp-block-button__link.wp-element-button:hover {
  box-shadow: var(--wp--preset--shadow--bluelight);
}

.is-style-icon-heart .wp-block-button__link.wp-element-button {
  background-image: url("./assets/svg/icon-heart.svg");
  background-size: inherit;
  background-repeat: no-repeat;
  background-position: calc(100% - 30px) center;
  padding: var(--wp--preset--spacing--s) var(--wp--preset--spacing--l);
  padding-right: 3.8em;
}

.is-style-primary .is-style-icon-heart .wp-block-button__link.wp-element-button {
  background-color: var(--wp--preset--color--white);
  color: var(--wp--preset--color--primary);
  background-image: url("./assets/svg/icon-heart-blue.svg");
  box-shadow: var(--wp--preset--shadow--bright);
  transition: all 0.3s ease-in-out;
}
.is-style-primary .is-style-icon-heart .wp-block-button__link.wp-element-button:hover {
  box-shadow: none;
}

.is-style-simple-arrow .wp-block-button__link.wp-element-button {
  position: relative;
  background-image: url("./assets/svg/icon-arrow.svg");
  background-size: inherit;
  background-repeat: no-repeat;
  background-position: calc(100% - 20px) center;
  padding-right: 2.8em;
}
.is-style-simple-arrow .wp-block-button__link.wp-element-button:before {
  content: "";
  width: 0;
  height: 2px;
  background: var(--wp--preset--color--primary);
  position: absolute;
  bottom: 10px;
  left: 0;
  z-index: 100;
  transition: all 0.3s ease-in-out;
}
.is-style-simple-arrow .wp-block-button__link.wp-element-button:hover {
  background-position: calc(100% - 12px) center;
}
.is-style-simple-arrow .wp-block-button__link.wp-element-button:hover:before {
  width: calc(100% - 48px);
}

.is-style-external-link .wp-block-button__link.wp-element-button {
  position: relative;
  background-image: url("./assets/svg/icon-external.svg");
  background-size: inherit;
  background-repeat: no-repeat;
  background-position: calc(100% - 20px) center;
  padding-right: 2.8em;
}
.is-style-external-link .wp-block-button__link.wp-element-button:before {
  content: "";
  width: 0;
  height: 2px;
  background: var(--wp--preset--color--primary);
  position: absolute;
  bottom: 10px;
  left: 0;
  z-index: 100;
  transition: all 0.3s ease-in-out;
}
.is-style-external-link .wp-block-button__link.wp-element-button:hover {
  background-position: calc(100% - 12px) center;
}
.is-style-external-link .wp-block-button__link.wp-element-button:hover:before {
  width: calc(100% - 48px);
}

.btn--location {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  background-color: transparent;
  color: var(--wp--preset--color--primary);
  font-weight: var(--wp--custom--font-weight--bold);
  background-image: url("./assets/svg/map-marker.svg");
  background-size: inherit;
  background-repeat: no-repeat;
  background-position: calc(100% - 12px) center;
  padding-right: 2.8em;
  transition: all 0.3s ease-in-out;
}
.btn--location:hover {
  background-position: calc(100% - 6px) center;
}

.btn--arrow, .btn--external {
  position: relative;
}
.btn--arrow:before, .btn--external:before {
  content: "";
  width: 0;
  height: 2px;
  background: var(--wp--preset--color--primary);
  position: absolute;
  bottom: -2px;
  left: 0;
  z-index: 100;
  transition: all 0.3s ease-in-out;
}
.btn--arrow:hover:before, .btn--external:hover:before {
  width: calc(100% - 48px);
}

.btn--arrow {
  font-weight: var(--wp--custom--font-weight--bold);
  background-image: url("./assets/svg/icon-arrow.svg");
  background-size: inherit;
  background-repeat: no-repeat;
  background-position: calc(100% - 20px) center;
  padding-right: 2.8em;
  transition: all 0.3s ease-in-out;
}
.btn--arrow:hover {
  background-position: calc(100% - 12px) center;
}

.btn--arrow-white {
  color: var(--wp--preset--color--white);
  font-weight: var(--wp--custom--font-weight--bold);
  background-image: url("./assets/svg/icon-arrow-white.svg");
  background-size: inherit;
  background-repeat: no-repeat;
  background-position: calc(100% - 20px) center;
  padding-right: 2.8em;
  transition: all 0.3s ease-in-out;
}
.btn--arrow-white:hover {
  background-position: calc(100% - 12px) center;
}

.btn--external {
  font-weight: var(--wp--custom--font-weight--bold);
  background-image: url("./assets/svg/icon-external.svg");
  background-size: inherit;
  background-repeat: no-repeat;
  background-position: calc(100% - 20px) center;
  padding-right: 2.8em;
  transition: all 0.3s ease-in-out;
}
.btn--external:hover {
  background-position: calc(100% - 12px) center;
}

.is-style-search .wp-block-button__link.wp-element-button {
  background-image: url("./assets/svg/icon-search.svg");
  background-size: inherit;
  background-repeat: no-repeat;
  background-position: calc(100% - 12px) center;
  padding-right: 2.4em;
}

.btn {
  display: inline-block;
  cursor: pointer;
  padding: var(--wp--preset--spacing--s) var(--wp--preset--spacing--m);
  border-radius: var(--wp--custom--radius--full);
  font-weight: var(--wp--custom--font-weight--bold);
  transition: all 0.3s ease-in-out;
}

.btn--white {
  border: 0;
  color: var(--wp--preset--color--primary);
}
.btn--white:hover {
  box-shadow: 0px 0px 16px 2px var(--wp--preset--color--white);
}

.btn--primary {
  border: 0;
  color: var(--wp--preset--color--white);
  background-color: var(--wp--preset--color--primary);
}
.btn--primary:hover {
  box-shadow: 0px 0px 16px 2px var(--wp--preset--color--primary);
}

.btn--light {
  border: 2px solid var(--wp--preset--color--white);
  color: var(--wp--preset--color--white);
}
.btn--light:hover {
  background-color: var(--wp--preset--color--white);
  color: var(--wp--preset--color--primary);
}

.btn--fifth {
  background-color: #C9CFE9;
  color: var(--wp--preset--color--primary);
}
.btn--fifth:hover {
  background-color: var(--wp--preset--color--white);
  color: var(--wp--preset--color--primary);
}

.btn--user {
  font-weight: var(--wp--custom--font-weight--bold);
  background-image: url("./assets/svg/icon-user.svg");
  background-size: inherit;
  background-repeat: no-repeat;
  background-position: calc(100% - 20px) center;
  padding-right: 3.5em;
  transition: all 0.3s ease-in-out;
}

.has-shape {
  position: relative;
}
.has-shape strong {
  font-size: clamp(1.25rem, 0.982rem + 0.714vw, 1.625rem);
  font-weight: var(--wp--custom--font-weight--semibold);
}
.has-shape:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: url("./assets/svg/blob.svg") no-repeat center center;
  background-size: cover;
  width: 142px;
  height: 144px;
  z-index: -1;
}
@media screen and (max-width: 576px) {
  .has-shape:after {
    width: 100px;
    height: 100px;
  }
}

.wp-block-group p a, .wp-block-group ul a {
  font-weight: var(--wp--custom--font-weight--bold);
  text-decoration: underline;
}

.big__title {
  font-family: var(--wp--preset--font-family--primary);
  font-size: clamp(2rem, -0.277rem + 6.071vw, 5.188rem);
  font-weight: var(--wp--custom--font-weight--extrabold);
}

.header__nav .link {
  display: inline-block;
  font-weight: var(--wp--custom--font-weight--bold);
}

@media screen and (min-width: 1024px) {
  .header__nav-main {
    background-color: var(--wp--preset--color--white);
    box-shadow: var(--wp--preset--shadow--light);
    border-radius: var(--wp--custom--radius--full);
    padding: var(--wp--preset--spacing--xs) var(--wp--preset--spacing--s);
  }
  .header__nav-main nav > ul > li {
    position: relative;
  }
  .header__nav-main nav > ul > li > a {
    padding: var(--wp--preset--spacing--xs) var(--wp--preset--spacing--s);
    border-radius: var(--wp--custom--radius--full);
  }
  .header__nav-main nav > ul > li:not(.search-item) > a:hover {
    background-color: var(--wp--preset--color--fifth);
  }
  .header__nav-main nav > ul > li:not(.search-item):hover .children {
    display: block;
  }
  .header__nav-main nav .children {
    position: absolute;
    z-index: 10;
    width: 480px;
    top: 60px;
    left: -100px;
    background-color: var(--wp--preset--color--primary);
    border-radius: var(--wp--custom--radius--l);
    display: none;
    padding: var(--wp--preset--spacing--m) var(--wp--preset--spacing--m);
  }
  .header__nav-main nav .children:before {
    content: "";
    width: 100%;
    height: 20px;
    top: -20px;
    left: 0;
    position: absolute;
  }
  .header__nav-main nav .children .sub-menu {
    display: flex;
    flex-direction: column;
    gap: var(--wp--preset--spacing--xs);
  }
  .header__nav-main nav .children a {
    position: relative;
    color: var(--wp--preset--color--white);
    background-image: url("./assets/svg/icon-arrow-white.svg");
    background-size: inherit;
    background-repeat: no-repeat;
    background-position: calc(100% - 20px) center;
    padding: 4px 0;
    padding-right: 2.8em;
    transition: all 0.3s ease-in-out;
  }
  .header__nav-main nav .children a:before {
    content: "";
    width: 0;
    height: 2px;
    background: var(--wp--preset--color--white);
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 100;
    transition: all 0.3s ease-in-out;
  }
  .header__nav-main nav .children a:hover {
    background-position: calc(100% - 12px) center;
  }
  .header__nav-main nav .children a:hover:before {
    width: calc(100% - 48px);
  }
  .header__nav-main .search-item:before {
    content: "";
    width: 1.5px;
    height: 22px;
    background-color: var(--wp--preset--color--primary);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  .header__nav-main .search-item .search-toggle {
    position: relative;
    display: flex;
    align-items: center;
    gap: var(--wp--preset--spacing--xs);
  }
  .header__nav-main .search-item .search-toggle__icon {
    width: 20px;
    height: 20px;
  }
  .header__nav-main .search-item .search-toggle__icon .search-icon,
  .header__nav-main .search-item .search-toggle__icon .close-icon {
    transition: all 0.3s ease-out;
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translate(0%, -50%);
  }
  .header__nav-main .search-item .search-toggle__icon .close-icon {
    opacity: 0;
    top: 0;
  }
  .header__nav-main .search-item .search-toggle[aria-expanded=true] .search-toggle__icon .search-icon {
    opacity: 0;
  }
  .header__nav-main .search-item .search-toggle[aria-expanded=true] .search-toggle__icon .close-icon {
    opacity: 1;
    top: 50%;
  }
  .header__nav-top:not(.nav__logged) nav > ul > li:not(:last-child) {
    padding: var(--wp--preset--spacing--xs) var(--wp--preset--spacing--m);
  }
  .header__nav-top:not(.nav__logged) nav > ul > li:not(:last-child) > a {
    position: relative;
  }
  .header__nav-top:not(.nav__logged) nav > ul > li:not(:last-child) > a:before {
    content: "";
    width: 0;
    height: 2px;
    background: var(--wp--preset--color--primary);
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 100;
    transition: all 0.3s ease-in-out;
  }
  .header__nav-top:not(.nav__logged) nav > ul > li:not(:last-child) > a:hover:before {
    width: 100%;
  }
  .header__nav-top:not(.nav__logged) nav > ul > li:last-child a {
    background-color: var(--wp--preset--color--primary);
    color: var(--wp--preset--color--white);
    border-radius: var(--wp--custom--radius--full);
    background-image: url("./assets/svg/icon-heart.svg");
    background-size: inherit;
    background-repeat: no-repeat;
    background-position: calc(100% - 20px) center;
    padding: var(--wp--preset--spacing--s) var(--wp--preset--spacing--m);
    padding-right: 2.8em;
    transition: all 0.3s ease-in-out;
  }
  .header__nav-top:not(.nav__logged) nav > ul > li:last-child a:hover {
    box-shadow: 0px 0px 16px 2px var(--wp--preset--color--primary);
  }
  .header__nav-top .menu-item-has-children {
    position: relative;
  }
  .header__nav-top .menu-item-has-children > .link:after {
    content: "";
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    transform-origin: center;
    width: 14px;
    height: 10px;
    background: url("./assets/svg/icon-dropdown.svg") no-repeat center;
    transition: all 0.3s ease-in-out;
  }
  .header__nav-top .menu-item-has-children:hover > .link:after {
    transform: rotate(180deg) translateY(50%);
  }
  .header__nav-top .menu-item-has-children:hover .children {
    display: block;
  }
  .header__nav-top .children {
    position: absolute;
    background-color: var(--wp--preset--color--white);
    border-radius: var(--wp--custom--radius--l);
    padding: var(--wp--preset--spacing--m) var(--wp--preset--spacing--m);
    border: 1px solid var(--wp--preset--color--gray);
    display: none;
    z-index: 100;
    width: 260px;
    left: -30px;
  }
  .header__nav-top .children .sub-menu {
    display: flex;
    flex-direction: column;
    gap: var(--wp--preset--spacing--s);
  }
  .header__nav-top .children .sub-link {
    position: relative;
  }
  .header__nav-top .children .sub-link:before {
    content: "";
    width: 0;
    height: 2px;
    background: var(--wp--preset--color--primary);
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 100;
    transition: all 0.3s ease-in-out;
  }
  .header__nav-top .children .sub-link:hover:before {
    width: 100%;
  }
  .header__nav-top.nav__logged li span {
    font-family: var(--wp--preset--font-family--secondary);
    font-size: clamp(1rem, 0.688rem + 0.833vw, 1.438rem);
    font-weight: var(--wp--custom--font-weight--bold);
  }
}
.header__nav-top:not(.nav__logged) nav > ul > li:last-child a {
  background-color: var(--wp--preset--color--primary);
  color: var(--wp--preset--color--white);
  border-radius: var(--wp--custom--radius--full);
  background-image: url("./assets/svg/icon-heart.svg");
  background-size: inherit;
  background-repeat: no-repeat;
  background-position: calc(100% - 30px) center;
  padding: var(--wp--preset--spacing--s) var(--wp--preset--spacing--l);
  padding-right: 3.8em;
}

@media screen and (max-width: 1200px) {
  .header__nav-main nav > ul > li > a {
    font-size: 15px;
    padding: var(--wp--preset--spacing--xs) var(--wp--preset--spacing--xs);
  }
}
.is-card-solo {
  position: relative;
  height: 100%;
  transition: box-shadow 0.3s ease-in-out;
}
.is-card-solo > .wp-block-group {
  height: 100%;
  justify-content: space-between;
}
.is-card-solo .wp-block-heading {
  font-family: var(--wp--preset--font-family--primary);
  font-weight: var(--wp--custom--font-weight--semibold);
  font-size: clamp(1.25rem, 0.982rem + 0.714vw, 1.625rem);
}
.is-card-solo:hover {
  box-shadow: 0px 0px 16px 2px var(--wp--preset--color--white);
}

nav.rank-math-breadcrumb {
  font-size: clamp(0.875rem, 0.83rem + 0.119vw, 0.938rem);
}
nav.rank-math-breadcrumb .separator {
  margin: 0 4px;
}
nav.rank-math-breadcrumb .last {
  font-weight: var(--wp--custom--font-weight--bold);
}

.search__block {
  display: flex;
  align-items: center;
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--wp--preset--color--primary);
  padding: var(--wp--preset--spacing--l) var(--wp--preset--spacing--m);
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.search__block.is-active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.search__form {
  padding: 0 var(--wp--preset--spacing--m);
  font-size: var(--wp--preset--font-size--m);
}
.search__form input[type=search] {
  flex: 1;
  padding: var(--wp--preset--spacing--m) var(--wp--preset--spacing--m);
  border-bottom-left-radius: var(--wp--custom--radius--full);
  border-top-left-radius: var(--wp--custom--radius--full);
  border: none;
  background: var(--wp--preset--color--white);
  color: var(--wp--preset--color--primary);
}
.search__form input[type=search]::-moz-placeholder {
  color: var(--wp--preset--color--primary);
}
.search__form input[type=search]::placeholder {
  color: var(--wp--preset--color--primary);
}
.search__form .search-submit {
  background: var(--wp--preset--color--secondary);
  color: var(--wp--preset--color--white);
  box-shadow: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  padding: var(--wp--preset--spacing--m) var(--wp--preset--spacing--xl);
  border-bottom-right-radius: var(--wp--custom--radius--full);
  border-top-right-radius: var(--wp--custom--radius--full);
  cursor: pointer;
  transition: all 0.3s ease;
}
.search__form .search-submit:hover {
  background: var(--wp--preset--color--fifth);
  color: var(--wp--preset--color--primary);
}
.search__form .search-submit:hover svg {
  stroke: var(--wp--preset--color--primary);
}

.post__search {
  padding: var(--wp--preset--spacing--m) var(--wp--preset--spacing--l);
  box-shadow: var(--wp--preset--shadow--neat);
  border-radius: var(--wp--custom--radius--full);
}
.post__search__title {
  font-size: clamp(1.25rem, 1.116rem + 0.357vw, 1.438rem);
  color: var(--wp--preset--color--primary);
}
.post__search .post__type {
  display: inline-block;
  font-weight: var(--wp--custom--font-weight--semibold);
  color: var(--wp--preset--color--tertiary);
  font-size: var(--wp--preset--font-size--m);
}

.wp-block-embed {
  border-radius: var(--wp--custom--radius--l);
  overflow: hidden;
}

.is-section-iframe iframe {
  margin: 0 auto;
}

.header__burger {
  position: absolute;
  top: 38px;
  right: 18px;
  z-index: 100;
  display: none;
}
@media screen and (min-width: 768px) {
  .header__burger {
    right: 48px;
  }
}

.header__burger--icon {
  width: 48px;
  height: 48px;
  position: relative;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer;
}

.header__burger--icon span {
  display: block;
  position: absolute;
  height: 6px;
  width: 100%;
  background: var(--wp--preset--color--primary);
  border-radius: var(--wp--custom--radius--s);
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}

.header__burger--icon span:nth-child(1) {
  top: 0px;
}

.header__burger--icon span:nth-child(2) {
  top: 16px;
}

.header__burger--icon span:nth-child(3) {
  top: 32px;
}

.header__burger--icon.open span {
  background: var(--wp--preset--color--white);
}

.header__burger--icon.open span:nth-child(1) {
  top: 18px;
  transform: rotate(135deg);
}

.header__burger--icon.open span:nth-child(2) {
  opacity: 0;
  left: -60px;
}

.header__burger--icon.open span:nth-child(3) {
  top: 18px;
  transform: rotate(-135deg);
}

@media screen and (max-width: 1024px) {
  .header__burger {
    display: block;
  }
  .header__nav {
    position: absolute;
    display: none;
    overflow: auto;
    height: 100vh;
    width: 100%;
    max-width: 600px;
    background: var(--wp--preset--color--primary);
    right: 0;
    top: 0;
    z-index: 10;
    transform: translateX(100%);
    padding: var(--wp--preset--spacing--xxl) var(--wp--preset--spacing--l);
    transition: all 0.3s ease-in-out;
  }
  .header__nav.menu-open {
    display: flex;
    align-items: flex-start;
    transform: translateX(0);
  }
  .header__nav-main {
    order: 1;
  }
  .header__nav-top {
    order: 2;
  }
  .header__nav-top ul {
    align-items: flex-start;
  }
  .header__nav-top:not(.nav__logged) > nav > ul > li:last-child a {
    background-color: var(--wp--preset--color--white);
    color: var(--wp--preset--color--primary);
    border-radius: var(--wp--custom--radius--full);
    background-image: url("./assets/svg/icon-heart-blue.svg");
  }
  .header__nav-main > nav > ul, .header__nav-top > nav > ul {
    flex-direction: column;
    gap: var(--wp--preset--spacing--s);
  }
  .header__nav-main > nav > ul .link:not(.sub-link), .header__nav-top > nav > ul .link:not(.sub-link) {
    font-size: var(--wp--preset--font-size--m);
  }
  .header__nav-main > nav > ul .children, .header__nav-top > nav > ul .children {
    padding-left: var(--wp--preset--spacing--s);
  }
  .header__nav-main a, .header__nav-top a {
    color: var(--wp--preset--color--white);
    padding-bottom: var(--wp--preset--spacing--xs);
  }
  .search-item {
    display: none;
  }
}
.links--anchors {
  gap: 1rem 50px;
}
.links--anchors__link {
  color: var(--wp--preset--color--tertiary);
  font-size: var(--wp--preset--font-size--m);
  font-weight: var(--wp--custom--font-weight--semibold);
  transition: all 0.3s ease-in-out;
}
.links--anchors__link__title {
  flex: 1;
  line-height: 1;
}
.links--anchors__link:hover {
  color: var(--wp--preset--color--primary);
}

/****************************************************************************/
/* COOKIES / RGPD
/****************************************************************************/
body.gdpr-infobar-visible {
  position: relative;
}
body.gdpr-infobar-visible::after {
  content: "";
  position: absolute;
  background: rgba(0, 0, 0, 0.5);
  height: 100%;
  width: 100%;
  top: -150px;
  left: 0;
  z-index: 9980;
}
body.gdpr-infobar-visible .mgbutton {
  border-radius: 24px !important;
}
body.gdpr-infobar-visible .change-settings-button:hover {
  color: var(--wp--preset--color--fifth) !important;
}
body.gdpr-infobar-visible aside#moove_gdpr_cookie_info_bar {
  z-index: 9990;
}
@media all and (max-width: 576px) {
  body.gdpr-infobar-visible aside#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container {
    padding-top: 60px;
  }
}
body.gdpr-infobar-visible aside#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content .moove-gdpr-infobar-allow-all {
  order: 2 !important;
}
body.gdpr-infobar-visible aside#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content .moove-gdpr-infobar-reject-btn {
  order: 1 !important;
}
@media all and (max-width: 576px) {
  body.gdpr-infobar-visible aside#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-button-holder {
    position: absolute;
    top: 30px;
    right: 10px;
  }
}

.gdpr_lightbox {
  z-index: 99970;
}

.grecaptcha-badge {
  visibility: hidden;
}

/****************************************************************************/
/* TEMPLATE
/****************************************************************************/
main,
.wp-block-template-part,
.entry-content {
  margin-top: 0;
}

.post__item {
  background-color: var(--wp--preset--color--gray);
  height: 100%;
  position: relative;
}
.post__item > a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.post__item .post__category {
  text-transform: uppercase;
  font-weight: var(--wp--custom--font-weight--bold);
  color: var(--wp--preset--color--tertiary);
}
.post__item .post__image {
  border-radius: var(--wp--custom--radius--m);
  overflow: hidden;
}
.post__item .post__image img {
  width: 100%;
  height: 313px;
  -o-object-fit: cover;
     object-fit: cover;
}
.post__item .post__content {
  flex: 1;
}
.post__item .post__title {
  font-size: var(--wp--preset--font-size--m);
  font-weight: var(--wp--custom--font-weight--medium);
  font-family: var(--wp--preset--font-family--primary);
  margin-bottom: var(--wp--preset--spacing--s);
  color: var(--wp--preset--color--primary);
}
.post__item .post__link {
  position: relative;
  z-index: 10;
}
.post__item:hover {
  box-shadow: 0px 0px 16px 2px var(--wp--preset--color--tertiary);
}

.lastest__articles {
  padding: var(--wp--preset--spacing--xl) 0;
  background-color: var(--wp--preset--color--fifth);
}
.lastest__articles .post__item {
  background-color: var(--wp--preset--color--white);
}
.lastest__articles--title {
  font-size: var(--wp--preset--font-size--xl);
  font-weight: var(--wp--custom--font-weight--bold);
  font-family: var(--wp--preset--font-family--secondary);
  color: var(--wp--preset--color--primary);
}
.lastest__articles .docutheque__item .post__title {
  color: var(--wp--preset--color--primary);
}

.docutheque__item {
  overflow: hidden;
  height: 100%;
}
.docutheque__item .post__image {
  overflow: hidden;
}
.docutheque__item .post__image img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.docutheque__item .post__title {
  font-size: var(--wp--preset--font-size--m);
  font-weight: var(--wp--custom--font-weight--medium);
  font-family: var(--wp--preset--font-family--primary);
}
.docutheque__item .post__date {
  font-size: var(--wp--preset--font-size--s);
  font-weight: var(--wp--custom--font-weight--medium);
  color: var(--wp--preset--color--tertiary);
}
.docutheque__item:hover {
  box-shadow: 0px 0px 16px 2px var(--wp--preset--color--tertiary);
}

.box--login {
  border-radius: var(--wp--custom--radius--l);
  padding: var(--wp--preset--spacing--xl) var(--wp--preset--spacing--l);
  color: var(--wp--preset--color--white);
}
.box--login h2 {
  font-size: var(--wp--preset--font-size--l);
}
.box--login h2 span {
  display: block;
  font-size: var(--wp--preset--font-size--m);
}
.box--login .form-group {
  width: 100%;
}
.box--login input {
  width: 100%;
  border-radius: var(--wp--custom--radius--xl);
  border: 2px solid var(--wp--preset--color--white);
  padding: var(--wp--preset--spacing--s);
  font-weight: var(--wp--custom--font-weight--bold);
  color: var(--wp--preset--color--white);
  background: transparent;
}
.box--login input::-moz-placeholder {
  color: var(--wp--preset--color--white);
}
.box--login input::placeholder {
  color: var(--wp--preset--color--white);
}
.box--login .forgot-password {
  display: inline-block;
  color: var(--wp--preset--color--white);
  text-decoration: underline;
  font-weight: var(--wp--custom--font-weight--bold);
}

.box--member {
  padding: var(--wp--preset--spacing--xl) var(--wp--preset--spacing--l);
  text-align: center;
}
.box--member p {
  font-family: var(--wp--preset--font-family--secondary);
  font-size: var(--wp--preset--font-size--m);
  font-weight: var(--wp--custom--font-weight--bold);
}

.section--ressources {
  padding: var(--wp--preset--spacing--l) 0;
}
.section--ressources .wrapper {
  display: flex;
}
.section--ressources .sidebar {
  width: 460px;
  background: var(--wp--preset--color--fifth);
  padding: var(--wp--preset--spacing--m) var(--wp--preset--spacing--l);
}
.section--ressources .sidebar .facetwp-facet {
  padding-left: var(--wp--preset--spacing--s);
}
.section--ressources .sidebar .facetwp-checkbox,
.section--ressources .sidebar .theme-item {
  cursor: pointer;
  color: var(--wp--preset--color--tertiary);
  background: url("./assets/svg/icon-folder.svg") no-repeat left center;
  background-size: 28px 24px;
  padding-left: 48px;
  margin-bottom: var(--wp--preset--spacing--s);
}
.section--ressources .sidebar .facetwp-checkbox.checked,
.section--ressources .sidebar .theme-item.checked {
  color: var(--wp--preset--color--primary);
  font-weight: var(--wp--custom--font-weight--bold);
}
.section--ressources .sidebar .facetwp-checkbox .facetwp-counter,
.section--ressources .sidebar .theme-item .facetwp-counter {
  display: none;
}
.section--ressources .sidebar .facetwp-checkbox .facetwp-expand,
.section--ressources .sidebar .theme-item .facetwp-expand {
  font-weight: var(--wp--custom--font-weight--bold);
}
.section--ressources .sidebar .facetwp-depth .facetwp-checkbox {
  background-size: 20px 16px;
  padding-left: 32px;
}
.section--ressources .content {
  flex: 1;
  width: 100%;
  max-width: 1200px;
  padding: var(--wp--preset--spacing--m) var(--wp--preset--spacing--l);
}
.section--ressources .filters {
  display: flex;
  gap: 1rem;
  margin-bottom: var(--wp--preset--spacing--m);
}
.section--ressources .filters .facetwp-facet {
  margin-bottom: 0;
}
.section--ressources .filters input,
.section--ressources .filters .fs-label-wrap {
  border-radius: var(--wp--custom--radius--xl);
  border: 2px solid var(--wp--preset--color--primary);
  padding: var(--wp--preset--spacing--s);
  font-weight: var(--wp--custom--font-weight--bold);
  color: var(--wp--preset--color--primary);
  cursor: pointer;
}
.section--ressources .filters .fs-wrap {
  width: 164px;
}
.section--ressources .filters .facetwp-reset {
  font-weight: var(--wp--custom--font-weight--bold);
}
.section--ressources .resources-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
@media (max-width: 768px) {
  .section--ressources .resources-list {
    grid-template-columns: 1fr;
  }
}
.section--ressources .resource-item {
  width: 100%;
  border-radius: var(--wp--custom--radius--xl);
  box-shadow: var(--wp--preset--shadow--neat);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 4px 4px var(--wp--preset--spacing--m);
  position: relative;
  margin-bottom: 1rem;
  transition: all 0.3s ease-in-out;
}
.section--ressources .resource-item a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.section--ressources .resource-item .resource-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.section--ressources .resource-item .file-name {
  flex: 1;
}
.section--ressources .resource-item .icon {
  width: 18px;
}
.section--ressources .resource-item .download-icon {
  width: 50px;
}
.section--ressources .resource-item span {
  display: inline-block;
}
.section--ressources .resource-item:hover {
  box-shadow: 0px 0px 16px 2px var(--wp--preset--color--primary);
}
.section--ressources .resource-item:active {
  transform: scale(0.98);
}

.search-filter .facetwp-icon {
  right: 24px;
  opacity: 1;
}
.search-filter .facetwp-icon:before {
  background: url("./assets/svg/icon-search.svg") no-repeat;
  background-position: center center;
}

.facetwp-search {
  width: 100%;
  min-width: 260px;
}
.facetwp-search::-moz-placeholder {
  color: var(--wp--preset--color--primary);
}
.facetwp-search::placeholder {
  color: var(--wp--preset--color--primary);
}

.date-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.date-filters .facetwp-type-fselect .fs-arrow {
  right: 24px;
  border: 0;
  background: url("./assets/svg/icon-dropdown.svg") no-repeat center center;
  width: 14px;
  height: 100%;
}

.facetwp-pager {
  margin-top: var(--wp--preset--spacing--l);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.facetwp-pager .facetwp-page {
  display: flex;
  justify-content: center;
  align-items: center;
}
.facetwp-pager .facetwp-page.active {
  background: var(--wp--preset--color--primary);
  color: var(--wp--preset--color--white);
  box-shadow: 0px 0px 16px 2px rgba(54, 32, 114, 0.4);
  width: 64px;
  height: 64px;
  border-radius: 50%;
}
.facetwp-pager .facetwp-page.prev, .facetwp-pager .facetwp-page.next {
  font-size: 0;
}
.facetwp-pager .facetwp-page.prev:before {
  content: "";
  position: absolute;
  background-image: url("./assets/svg/icon-arrow.svg");
  background-size: inherit;
  background-repeat: no-repeat;
  width: 17px;
  height: 14px;
  transform: rotate(180deg);
}
.facetwp-pager .facetwp-page.next:before {
  content: "";
  position: absolute;
  background-image: url("./assets/svg/icon-arrow.svg");
  background-size: inherit;
  background-repeat: no-repeat;
  width: 17px;
  height: 14px;
}

@media screen and (max-width: 1200px) {
  .section--ressources .sidebar {
    width: 320px;
  }
}
@media screen and (max-width: 992px) {
  .section--ressources .sidebar {
    position: fixed;
    overflow: auto;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0s linear 0.3s;
    padding: var(--wp--preset--spacing--l) var(--wp--preset--spacing--m);
  }
  .section--ressources .sidebar.active {
    opacity: 1;
    visibility: visible;
    transition-delay: 0s;
  }
  .section--ressources .sidebar .close__button {
    cursor: pointer;
    padding: var(--wp--preset--spacing--m) var(--wp--preset--spacing--s);
    text-align: right;
  }
  .section--ressources .content {
    padding: var(--wp--preset--spacing--m) var(--wp--preset--spacing--s);
  }
  .section--ressources .filters .fs-wrap {
    width: 124px;
  }
  .search-filter {
    flex: 1;
  }
  .search-filter .facetwp-input-wrap {
    width: 100%;
  }
}
/****************************************************************************/
/* PATTERNS
/****************************************************************************/
.section-newsletter {
  max-width: 987px;
  margin: 0 auto;
}
.section-newsletter .is-style-vertical {
  height: 150px;
  border: 1px solid var(--wp--preset--color--primary);
  opacity: 0.2;
}
.section-newsletter .wp-block-social-links .wp-social-link a {
  width: 52px;
  height: 52px;
}
.section-newsletter .wp-block-social-links .wp-social-link svg {
  display: none;
}
.section-newsletter .wp-block-social-links .wp-social-link.wp-social-link-facebook a {
  background: url("./assets/svg/icon-facebook.svg") no-repeat center center;
}
.section-newsletter .wp-block-social-links .wp-social-link.wp-social-link-linkedin a {
  background: url("./assets/svg/icon-linkedin.svg") no-repeat center center;
}
.section-newsletter .wp-block-social-links .wp-social-link.wp-social-link-instagram a {
  background: url("./assets/svg/icon-instagram.svg") no-repeat center center;
}
.section-newsletter .wp-block-social-links .wp-social-link.wp-social-link-youtube a {
  background: url("./assets/svg/icon-youtube.svg") no-repeat center center;
}
@media screen and (max-width: 992px) {
  .section-newsletter > .wp-block-group {
    gap: 2em;
    text-align: center;
    justify-content: center;
  }
  .section-newsletter > .wp-block-group .wp-block-buttons {
    justify-content: center;
  }
  .section-newsletter .is-style-vertical {
    display: none;
  }
}

.is-testimonial > .wp-block-group:before {
  content: "";
  position: absolute;
  top: 18px;
  left: 18px;
  width: 84px;
  height: 84px;
  background: url("./assets/svg/icon-quote.svg") no-repeat center;
  background-size: 60px;
  background-color: var(--wp--preset--color--white);
  border-radius: var(--wp--custom--radius--full);
  box-shadow: 0px 0px 12px 2px var(--wp--preset--color--white);
}
@media screen and (max-width: 992px) {
  .is-testimonial > .wp-block-group:before {
    background-size: 32px;
    width: 48px;
    height: 48px;
  }
}
.is-testimonial > .wp-block-group > p {
  font-size: clamp(1.125rem, 0.902rem + 0.595vw, 1.438rem);
  line-height: var(--wp--custom--line-height--narrow);
}
.is-testimonial > .wp-block-group > .wp-block-group p {
  font-style: italic;
}

.is-section-service .is-block-service:not(:last-child) {
  border-bottom: 2px solid rgba(201, 207, 233, 0.25);
}
.is-section-service .is-block-service {
  padding-bottom: var(--wp--preset--spacing--xl);
}
.is-section-service .is-card-service {
  max-width: 340px;
  margin: 0 auto;
}

/****************************************************************************/
/* BLOCKS
/****************************************************************************/
.heading--classic__text {
  font-size: var(--wp--preset--font-size--medium);
  font-weight: var(--wp--custom--font-weight--semibold);
}
.heading--classic hr {
  border-color: var(--wp--custom--color--primary);
  border-width: 2px;
  opacity: 0.2;
}
.heading--classic .post__meta {
  font-size: var(--wp--preset--font-size--m);
}
.heading--classic .post__meta .post__category, .heading--classic .post__meta .post__date {
  line-height: 1;
}
.heading--classic .filters {
  padding: var(--wp--preset--spacing--l) 0;
}
.heading--classic .filters .facetwp-facet {
  margin-bottom: 0;
}
.heading--classic .filters .has-blob {
  position: relative;
}
.heading--classic .filters .has-blob:before {
  content: "";
  position: absolute;
  background: url("./assets/svg/blob-white.svg") no-repeat center center;
  width: 94px;
  height: 94px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.heading--classic .filters label {
  position: relative;
  border-bottom: 2px solid var(--wp--preset--color--primary);
  font-size: var(--wp--preset--font-size--m);
  margin-left: var(--wp--preset--spacing--l);
}
.heading--classic .filters .facetwp-dropdown {
  background: transparent;
  border: none;
  color: var(--wp--preset--color--tertiary);
  font-weight: var(--wp--custom--font-weight--semibold);
  font-size: var(--wp--preset--font-size--m);
  outline: 0;
  padding-right: 24px;
  background: url("./assets/svg/icon-dropdown-blue.svg") no-repeat right center;
  -webkit-user-select: none;
  -moz-user-select: -moz-none;
  user-select: none;
  -webkit-appearance: none;
  -moz-appearance: radio-container;
  appearance: none;
}
.heading--classic .filters .fs-label-wrap {
  background: transparent;
  border: none;
  color: var(--wp--preset--color--tertiary);
  font-weight: var(--wp--custom--font-weight--bold);
  font-size: var(--wp--preset--font-size--m);
}
.heading--classic .filters .facetwp-type-fselect .fs-arrow {
  border: 0;
  background: url("./assets/svg/icon-dropdown-blue.svg") no-repeat center center;
  width: 14px;
  height: 100%;
}

.heading--plaidoyer {
  min-height: 500px;
  display: flex;
  align-items: center;
}
.heading--plaidoyer__title h1 {
  font-size: var(--wp--preset--font-size--xl);
  line-height: 1.4;
}

.block--plaidoyer__subtitle {
  font-family: var(--wp--preset--font-family--primary);
  font-size: clamp(1.25rem, 0.982rem + 0.714vw, 1.625rem);
  color: var(--wp--preset--color--secondary);
}
.block--plaidoyer .post-item:first-child {
  border-radius: 40px;
  border-top-right-radius: 0;
}
.block--plaidoyer .post-item:first-child .post-item__image {
  border-top-left-radius: 32px;
}
.block--plaidoyer .post-item:last-child {
  border-radius: 40px;
  border-top-left-radius: 0;
}
.block--plaidoyer .post-item:last-child .post-item__image {
  border-top-right-radius: 32px;
}
.block--plaidoyer .post-item {
  padding: 6px;
  transition: all 0.3s ease-in-out;
}
.block--plaidoyer .post-item__image {
  overflow: hidden;
}
.block--plaidoyer .post-item__image img {
  width: 100%;
  height: 240px;
  -o-object-fit: cover;
     object-fit: cover;
}
.block--plaidoyer .post-item__content {
  padding: 24px var(--wp--preset--spacing--s);
}
.block--plaidoyer .post-item__hashtag {
  display: inline-block;
  font-weight: var(--wp--custom--font-weight--bold);
  background-color: var(--wp--preset--color--secondary);
  color: var(--wp--preset--color--white);
  padding: 4px 8px;
  margin-bottom: 18px;
  transform: skewX(-10deg);
}
.block--plaidoyer .post-item__hashtag span {
  display: inline-block;
  transform: skewX(10deg);
}
.block--plaidoyer .post-item__title {
  font-size: var(--wp--preset--font-size--s);
  font-weight: var(--wp--preset--font-weight--medium);
  color: var(--wp--preset--color--white);
}
.block--plaidoyer .post-item:hover {
  box-shadow: 0px 0px 16px 2px var(--wp--preset--color--primary);
}

.heading--image .post__image {
  overflow: hidden;
}
.heading--image .post__image img {
  width: 100%;
  height: 412px;
  -o-object-fit: cover;
     object-fit: cover;
}
.heading--image .post__content {
  font-size: var(--wp--preset--font-size--m);
}
.heading--image .post__content h2 {
  font-size: var(--wp--preset--font-size--xl);
}
.heading--image .post__content p {
  font-weight: var(--wp--custom--font-weight--semibold);
}
.heading--image .post__content .subheading {
  font-size: clamp(1.125rem, 0.991rem + 0.357vw, 1.313rem);
  font-weight: var(--wp--custom--font-weight--regular);
  color: var(--wp--preset--color--tertiary);
  margin-bottom: 6px;
}
@media screen and (max-width: 768px) {
  .heading--image .post__image img {
    height: auto;
    aspect-ratio: 16/9;
  }
}

.card__etablissement, .is-card-service {
  max-width: 340px;
  margin: 0 auto;
}
.card__etablissement .post__image, .is-card-service .post__image {
  height: 220px;
}
.card__etablissement .post__image img, .is-card-service .post__image img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.card__etablissement .swiper-pager, .is-card-service .swiper-pager {
  text-align: center;
  margin-top: var(--wp--preset--spacing--xs);
}
.card__etablissement .swiper-pager .swiper-pagination-bullet, .is-card-service .swiper-pager .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: var(--wp--preset--color--fourth);
}
.card__etablissement .swiper-pager .swiper-pagination-bullet-active, .is-card-service .swiper-pager .swiper-pagination-bullet-active {
  background-color: var(--wp--preset--color--primary);
}

/****************************************************************************/
/* FAQ
/****************************************************************************/
.accordion .accordion-item {
  background-color: var(--wp--preset--color--white);
  border-radius: 48px;
  box-shadow: var(--wp--preset--shadow--neat);
  padding: var(--wp--preset--spacing--m) var(--wp--preset--spacing--l);
}
.accordion .accordion-item:hover, .accordion .accordion-item:has(button[aria-expanded=true]) {
  background-color: var(--wp--preset--color--gray);
  box-shadow: 0px 0px 16px 2px rgba(54, 32, 114, 0.4);
}
.accordion button {
  padding: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  width: 100%;
  color: var(--wp--preset--color--primary);
  font-weight: 400;
  border: none;
  background: none;
  outline: none;
  gap: 1em;
}
.accordion button:hover, .accordion button:focus {
  cursor: pointer;
  color: var(--wp--preset--color--primary);
}
.accordion button:hover::after, .accordion button:focus::after {
  cursor: pointer;
  color: var(--wp--preset--color--primary);
  border: 1px solid var(--wp--preset--color--primary);
}
.accordion button .accordion-title {
  margin-bottom: 0;
  font-size: clamp(1.125rem, 0.902rem + 0.595vw, 1.438rem);
  color: var(--wp--preset--color--tertiary);
  font-weight: var(--wp--custom--font-weight--bold);
  flex: 1;
}
.accordion button .accordion-title span {
  font-weight: var(--wp--custom--font-weight--regular);
}
.accordion button .icon {
  display: inline-block;
  position: relative;
  padding-right: 2em;
}
.accordion button .icon:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background-image: url("./assets/svg/arrow-accordeon.svg");
  background-size: inherit;
  background-repeat: no-repeat;
  width: 14px;
  height: 16px;
  transition: all 0.3s ease-out;
}
.accordion button[aria-expanded=true] {
  color: var(--wp--preset--color--primary);
}
.accordion button[aria-expanded=true] .icon::after {
  transform: translateY(-50%) rotate(180deg);
}
.accordion button[aria-expanded=true] + .accordion-content {
  display: block;
  opacity: 1;
  height: auto;
  transition: all 200ms linear;
  will-change: opacity;
}
.accordion .accordion-content {
  display: none;
  opacity: 0;
  height: 0;
  overflow: hidden;
  transition: opacity 200ms linear, max-height 200ms linear;
  will-change: opacity, max-height;
}
.accordion .accordion-content p {
  font-size: var(--wp--preset--font-size--xs);
}
.accordion .accordion-content h3 {
  font-size: var(--wp--preset--font-size--m);
}
@media screen and (max-width: 768px) {
  .accordion button {
    flex-direction: column;
    align-items: stretch;
  }
  .accordion button .icon {
    text-align: right;
  }
}

#falc {
  color: var(--wp--preset--color--fourth);
  padding: 0 var(--wp--preset--spacing--s);
}
#falc .falc__wrapper {
  position: relative;
  border: 3px solid var(--wp--preset--color--fourth);
  border-radius: var(--wp--custom--radius--l);
  padding: var(--wp--preset--spacing--xl);
}
#falc .falc__icon {
  position: absolute;
  top: 0;
  right: 18px;
  width: 56px;
}
#falc .falc__content {
  font-size: clamp(1.125rem, 0.857rem + 0.714vw, 1.5rem);
}
@media screen and (min-width: 768px) {
  #falc .falc__icon {
    right: 64px;
    width: 96px;
  }
}
@media screen and (min-width: 992px) {
  #falc .falc__icon {
    width: 120px;
  }
}

.featured__links {
  position: relative;
  overflow: hidden;
  padding: var(--wp--preset--spacing--xxl) 0 0 0;
}
.featured__links .big__title {
  color: var(--wp--preset--color--tertiary);
  position: relative;
  padding-left: 6rem;
}
.featured__links .big__title:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 64px;
  height: 64px;
  background: url("./assets/svg/icon-question.svg") no-repeat center;
  background-size: 100%;
}
.featured__links .big__title:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%) translateX(-100%);
  width: 100%;
  height: 35px;
  background-color: var(--wp--preset--color--tertiary);
}
.featured__links-list {
  margin-top: var(--wp--preset--spacing--xl);
  padding-left: var(--wp--preset--spacing--l);
}
.featured__links .big--hr {
  margin-top: var(--wp--preset--spacing--xxl);
  margin-left: var(--wp--preset--spacing--l);
  width: 100vw;
  height: 35px;
  background-color: var(--wp--preset--color--tertiary);
}
@media screen and (min-width: 992px) {
  .featured__links .big__title {
    padding-left: 11.5rem;
  }
  .featured__links .big__title:before {
    width: 150px;
    height: 150px;
  }
}
.featured__links + .wp-block-group:not(.alignwide) {
  margin-top: var(--wp--preset--spacing--l);
}