@charset "UTF-8";
/*
Theme Name: Thème FSE Novatics 🤖
Theme URI: 
Author: B17 Communication
Author URI: https://www.b17.fr
Description: Thème Novatics pour le Full Site Editing
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;
}

/****************************************************************************/
/* UTILS
/****************************************************************************/
h1, h2, h3, h4, h5, h6, p {
  margin: 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%;
}

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

/* ==========================================================================
    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: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
@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-width-xxl {
  max-width: 1920px;
}

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

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

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

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

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

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

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

[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: 991px) {
  [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--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--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;
  }
}
.wp-block-columns {
  align-items: normal !important;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap !important;
}

@media (min-width: 768px) {
  .wp-block-columns {
    flex-wrap: nowrap !important;
  }
}
.wp-block-columns.are-vertically-aligned-top {
  align-items: flex-start;
}

.wp-block-columns.are-vertically-aligned-center {
  align-items: center;
}

.wp-block-columns.are-vertically-aligned-bottom {
  align-items: flex-end;
}

@media (max-width: 767px) {
  .wp-block-columns:not(.is-not-stacked-on-mobile) > .wp-block-column {
    flex-basis: 100% !important;
  }
}
@media (min-width: 768px) {
  .wp-block-columns:not(.is-not-stacked-on-mobile) > .wp-block-column {
    flex-basis: 0;
    flex-grow: 1;
  }
  .wp-block-columns:not(.is-not-stacked-on-mobile) > .wp-block-column[style*=flex-basis] {
    flex-grow: 0;
  }
}
.wp-block-columns.is-not-stacked-on-mobile {
  flex-wrap: nowrap !important;
}

.wp-block-columns.is-not-stacked-on-mobile > .wp-block-column {
  flex-basis: 0;
  flex-grow: 1;
}

.wp-block-columns.is-not-stacked-on-mobile > .wp-block-column[style*=flex-basis] {
  flex-grow: 0;
}

:where(.wp-block-columns) {
  margin-bottom: 1.75em;
}

:where(.wp-block-columns.has-background) {
  padding: 1.25em 2.375em;
}

.wp-block-column {
  flex-grow: 1;
  min-width: 0;
  overflow-wrap: break-word;
  word-break: break-word;
}

.wp-block-column.is-vertically-aligned-top {
  align-self: flex-start;
}

.wp-block-column.is-vertically-aligned-center {
  align-self: center;
}

.wp-block-column.is-vertically-aligned-bottom {
  align-self: flex-end;
}

.wp-block-column.is-vertically-aligned-stretch {
  align-self: stretch;
}

.wp-block-column.is-vertically-aligned-bottom,
.wp-block-column.is-vertically-aligned-center,
.wp-block-column.is-vertically-aligned-top {
  width: 100%;
}

.visually-hidden {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.overflow-hidden {
  overflow: hidden;
}

h3.wp-block-heading > span.title-line, p.meta-post > span.title-line {
  background-color: var(--wp--preset--color--accent);
}

.fw-bold {
  font-weight: var(--wp--custom--font-weight--bold);
  color: var(--wp--preset--color--secondary);
}

p strong {
  color: var(--wp--preset--color--secondary);
}

/****************************************************************************/
/* TEMPLATE PARTS
/****************************************************************************/
header {
  box-shadow: var(--wp--preset--shadow--neat);
}

@media (min-width: 1120px) {
  .wp-block-navigation__responsive-container:not(.hidden-by-default):not(.is-menu-open) {
    display: block;
  }
}
@media (max-width: 1120px) {
  .wp-block-navigation__responsive-container:not(.hidden-by-default):not(.is-menu-open) {
    display: none;
  }
  .wp-block-navigation__responsive-container-open:not(.always-shown) {
    display: block;
  }
  .wp-block-navigation__responsive-container.is-menu-open .wp-block-ollie-mega-menu__menu-container {
    overflow: visible !important;
  }
  .wp-block-navigation__responsive-container.is-menu-open .wp-block-ollie-mega-menu__menu-container > .wp-block-group {
    height: 100%;
  }
  .wp-block-ollie-mega-menu__menu-container .is-layout-grid {
    grid-template-columns: 1fr;
    -moz-column-gap: 0;
         column-gap: 0;
  }
}
.wp-block-navigation__responsive-container-content > .wp-block-navigation > .wp-block-navigation-item > .wp-block-navigation-item__content:hover {
  background-color: var(--wp--preset--color--accent);
}
.wp-block-navigation__responsive-container-content > .wp-block-navigation > .wp-block-navigation-item > .wp-block-navigation-item__content[aria-expanded=true] {
  background-color: var(--wp--preset--color--accent);
}

.wp-block-ollie-mega-menu__menu-container > .wp-block-group {
  border-bottom-left-radius: var(--wp--custom--radius--l);
  border-bottom-right-radius: var(--wp--custom--radius--l);
  box-shadow: var(--wp--preset--shadow--neat);
  overflow: hidden;
}
.wp-block-ollie-mega-menu__menu-container .wp-block-column .wp-block-group.is-style-secondary-background {
  height: 100%;
}
.wp-block-ollie-mega-menu__menu-container .wp-block-group.is-linked p {
  position: relative;
  transition: all 0.3s ease-in-out;
}
.wp-block-ollie-mega-menu__menu-container .wp-block-group.is-linked p > a {
  display: inline-block;
  padding-right: 2em;
}
.wp-block-ollie-mega-menu__menu-container .wp-block-group.is-linked p > a:after {
  display: inline-block;
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: url("./assets/svg/link-arrow.svg") no-repeat center;
  transition: opacity 0.3s ease-in-out;
  opacity: 0;
}
.wp-block-ollie-mega-menu__menu-container .wp-block-group.is-linked:hover p {
  color: var(--wp--preset--color--secondary);
  text-decoration: underline;
  text-shadow: 0.65px 0 0 currentColor;
}
.wp-block-ollie-mega-menu__menu-container .wp-block-group.is-linked:hover p > a:after {
  opacity: 1;
}
.wp-block-ollie-mega-menu__menu-container .wp-block-navigation .wp-block-navigation-link .wp-block-navigation-item__content {
  position: relative;
  transition: all 0.3s ease-in-out;
  padding-right: 2em;
}
.wp-block-ollie-mega-menu__menu-container .wp-block-navigation .wp-block-navigation-link .wp-block-navigation-item__content:after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: url("./assets/svg/link-arrow.svg") no-repeat center;
  transition: opacity 0.3s ease-in-out;
  opacity: 0;
}
.wp-block-ollie-mega-menu__menu-container .wp-block-navigation .wp-block-navigation-link .wp-block-navigation-item__content:hover {
  color: var(--wp--preset--color--secondary);
  text-decoration: underline;
  text-shadow: 0.65px 0 0 currentColor;
}
.wp-block-ollie-mega-menu__menu-container .wp-block-navigation .wp-block-navigation-link .wp-block-navigation-item__content:hover:after {
  opacity: 1;
}

.wp-block-ollie-mega-menu .wp-block-ollie-mega-menu__toggle .wp-block-ollie-mega-menu__toggle-icon {
  height: 0.75em;
  width: 0.75em;
}

.wp-block-ollie-mega-menu__menu-container .menu-container__close-button {
  right: var(--wp--preset--spacing--m);
  top: var(--wp--preset--spacing--m);
}

.wp-block-novatics-reassurance {
  max-width: 1920px;
  padding: 0 var(--wp--preset--spacing--xxl);
  display: flex;
  position: relative;
  align-items: center;
  height: 338px;
}
.wp-block-novatics-reassurance .wp-block-cover__image-wrapper {
  position: absolute;
  left: 0;
  top: 0;
  height: 338px;
}
.wp-block-novatics-reassurance .wp-block-cover__image-wrapper img {
  max-width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.wp-block-novatics-reassurance .wp-block-cover__image-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  right: -198px;
  width: 100%;
  height: 100%;
  background: url("./assets/svg/slash-medium-blue.svg") no-repeat;
  background-size: contain;
  z-index: 1;
}

.section__reassurance__content {
  max-width: 980px;
  width: 100%;
  margin-left: auto;
  padding: var(--wp--preset--spacing--xl) 0;
}
.section__reassurance__content .grid-reassurance {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: var(--wp--preset--spacing--xl) 0;
}
.section__reassurance__content .grid-reassurance .item {
  text-align: center;
}

@container (width >= 1696px) {
  .section__reassurance__content {
    max-width: 90rem;
  }
}
@container (width <= 1320px) {
  .wp-block-novatics-reassurance {
    height: auto;
  }
  .wp-block-novatics-reassurance .wp-block-cover__image-wrapper {
    display: none;
  }
  .section__reassurance__content {
    padding-bottom: 0;
    max-width: 100%;
  }
}
@container (width <= 992px) {
  .wp-block-novatics-reassurance {
    padding: var(--wp--preset--spacing--s);
  }
  .section__reassurance__content {
    padding-bottom: 0;
  }
  .section__reassurance__content .grid-reassurance {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--wp--preset--spacing--s);
  }
}
footer a {
  color: var(--wp--preset--color--white);
  text-decoration: none;
}
footer a:hover {
  text-decoration: underline;
  text-shadow: 0.65px 0 0 currentColor;
}
footer .footer__logo {
  max-width: 210px;
}
footer .footer__inner {
  padding-top: var(--wp--preset--spacing--xl);
}
footer span.underline {
  font-weight: var(--wp--custom--font-weight--bold);
  position: relative;
  left: -2px;
  width: 100%;
  color: var(--wp--preset--color--secondary);
  background: var(--wp--preset--color--white);
  padding: 0 5px;
}
footer .social {
  padding-left: var(--wp--custom--spacing--l);
}
footer p mark {
  padding-left: 0.35em;
  padding-right: 0.35em;
}
footer p + nav {
  padding-left: 0.35em;
}
footer .footer_menu > .has-children > .nav-label.disabled, footer .footer_menu > .no-children > .nav-link {
  color: var(--wp--preset--color--secondary);
  background: var(--wp--preset--color--white);
  font-weight: var(--wp--custom--font-weight--bold);
  padding: 0 5px;
}
footer .footer_menu > li + li {
  padding-top: var(--wp--preset--spacing--xl);
}
footer .footer_menu .sub-menu {
  padding-left: var(--wp--preset--spacing--xxs);
}
footer .copyright {
  padding-top: var(--wp--preset--spacing--l);
  font-size: var(--wp--preset--font-size--xxs);
}
footer .copyright a {
  color: var(--wp--preset--color--white);
}

/****************************************************************************/
/* ELEMENTS
/****************************************************************************/
.wp-block-group.is-style-vertical-border > .is-vertical {
  position: relative;
  padding-left: var(--wp--preset--spacing--s);
}
.wp-block-group.is-style-vertical-border > .is-vertical:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  border-left: 3px dotted var(--wp--preset--color--accent);
}

.wp-block-group.is-style-vertical-border > .is-linked:not(:nth-of-type(4n)) {
  position: relative;
}
.wp-block-group.is-style-vertical-border > .is-linked:not(:nth-of-type(4n)):before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 3px;
  height: 100%;
  border-left: 3px dotted var(--wp--preset--color--accent);
}

@container (width <= 1200px) {
  .wp-block-group.is-style-vertical-border {
    gap: var(--wp--preset--spacing--l);
  }
}
@container (width <= 992px) {
  .wp-block-group.is-style-vertical-border {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--wp--preset--spacing--m);
  }
  .wp-block-group.is-style-vertical-border > .is-linked:nth-of-type(2n):before {
    display: none;
  }
}
@container (width <= 576px) {
  .wp-block-group.is-style-vertical-border {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .wp-block-group.is-style-vertical-border > .is-linked:before {
    display: none;
  }
}
.wp-block-group.is-style-slash-green > .is-vertical {
  position: relative;
}
.wp-block-group.is-style-slash-green > .is-vertical:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 34px;
  height: 55px;
  background: url("./assets/svg/slash-small-green.svg") no-repeat;
}

@container (width <= 992px) {
  .wp-block-group.is-style-slash-green {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@container (width <= 576px) {
  .wp-block-group.is-style-slash-green {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
.wp-block-group.is-style-secondary-bordered > .wp-block-group.alignwide {
  max-width: 1098px;
}

.wp-block-group.is-style-group-featured {
  box-shadow: var(--wp--preset--shadow--neat);
  font-weight: var(--wp--custom--font-weight--bold);
  font-size: var(--wp--preset--font-size--l);
}

.wp-block-group.is-block-problematiques {
  box-shadow: var(--wp--preset--shadow--neat);
  border-radius: var(--wp--custom--radius--m);
  overflow: hidden;
}

@container (width <= 992px) {
  .wp-block-group.is-block-problematiques .is-layout-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@container (width <= 576px) {
  .wp-block-group.is-block-problematiques .is-layout-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
a:where(:not(.wp-element-button):not(.wp-block-navigation-item__content)), a:not[href^="tel:"] {
  font-weight: var(--wp--custom--font-weight--bold);
}
a:where(:not(.wp-element-button):not(.wp-block-navigation-item__content)):hover, a:not[href^="tel:"]:hover {
  color: var(--wp--preset--color--primary);
}

a[href^="tel:"] {
  text-decoration: none;
}

.wp-block-button.is-style-fill {
  z-index: 1;
}
.wp-block-button.is-style-fill .wp-block-button__link {
  position: relative;
  transition: all 0.3s ease-in-out;
}
.wp-block-button.is-style-fill .wp-block-button__link:after {
  content: "";
  position: absolute;
  top: 5px;
  left: -5px;
  width: 100%;
  height: 100%;
  background: var(--wp--preset--color--accent);
  border-radius: var(--wp--custom--radius--m);
  z-index: -1;
}
.wp-block-button.is-style-fill .wp-block-button__link:hover {
  color: var(--wp--preset--color--secondary);
  background: var(--wp--preset--color--white);
}
.wp-block-button.is-style-fill .wp-block-button__link[href*=".pdf"] {
  padding-right: var(--wp--preset--spacing--l);
}
.wp-block-button.is-style-fill .wp-block-button__link[href*=".pdf"]:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  width: 13px;
  height: 16px;
  background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMy4zMzMiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxMy4zMzMgMTYiPgogIDxwYXRoIGlkPSJJY29uX2lvbi1tZC1kb3dubG9hZCIgZGF0YS1uYW1lPSJJY29uIGlvbi1tZC1kb3dubG9hZCIgZD0iTTIwLjA4MywxMC4xNDZIMTYuMjc1VjQuNUgxMC41NTh2NS42NDZINi43NWw2LjY2Nyw2LjU4OCw2LjY2Ny02LjU4OFpNNi43NSwxOC42MTdWMjAuNUgyMC4wODNWMTguNjE3WiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTYuNzUgLTQuNSkiIGZpbGw9IiNmZmYiLz4KPC9zdmc+Cg==") no-repeat center;
  background-size: contain;
}
.wp-block-button.is-style-fill .wp-block-button__link[href*=".pdf"]:hover:before {
  background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMy4zMzMiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxMy4zMzMgMTYiPgogIDxwYXRoIGlkPSJJY29uX2lvbi1tZC1kb3dubG9hZCIgZGF0YS1uYW1lPSJJY29uIGlvbi1tZC1kb3dubG9hZCIgZD0iTTIwLjA4MywxMC4xNDZIMTYuMjc1VjQuNUgxMC41NTh2NS42NDZINi43NWw2LjY2Nyw2LjU4OCw2LjY2Ny02LjU4OFpNNi43NSwxOC42MTdWMjAuNUgyMC4wODNWMTguNjE3WiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTYuNzUgLTQuNSkiIGZpbGw9IiM0MTJkZTAiLz4KPC9zdmc+Cg==") no-repeat center;
}

.wp-block-button.is-style-white {
  z-index: 1;
}
.wp-block-button.is-style-white .wp-block-button__link {
  position: relative;
  background: var(--wp--preset--color--white);
  color: var(--wp--preset--color--secondary);
  border: 1px solid var(--wp--preset--color--white);
  transition: all 0.3s ease-in-out;
}
.wp-block-button.is-style-white .wp-block-button__link:after {
  content: "";
  position: absolute;
  top: 5px;
  left: -5px;
  width: 100%;
  height: 100%;
  background: var(--wp--preset--color--accent);
  border-radius: var(--wp--custom--radius--m);
  z-index: -1;
}
.wp-block-button.is-style-white .wp-block-button__link:hover {
  background: var(--wp--preset--color--accent);
  border-color: var(--wp--preset--color--accent);
  color: var(--wp--preset--color--secondary);
}
.wp-block-button.is-style-white .wp-block-button__link:hover:after {
  background: var(--wp--preset--color--white);
}

.is-style-secondary-background .wp-block-button.is-style-fill .wp-block-button__link:hover, .is-style-secondary-bordered .wp-block-button.is-style-fill .wp-block-button__link:hover {
  background: var(--wp--preset--color--accent);
  border-color: var(--wp--preset--color--accent);
  color: var(--wp--preset--color--secondary);
}
.is-style-secondary-background .wp-block-button.is-style-fill .wp-block-button__link:hover:after, .is-style-secondary-bordered .wp-block-button.is-style-fill .wp-block-button__link:hover:after {
  background: var(--wp--preset--color--white);
}

.wp-block-button.is-style-link-arrow .wp-block-button__link {
  position: relative;
  transition: all 0.3s ease-in-out;
}
.wp-block-button.is-style-link-arrow .wp-block-button__link:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0%;
  background: var(--wp--preset--color--secondary);
  transition: all 0.3s ease-in-out;
}
.wp-block-button.is-style-link-arrow .wp-block-button__link:after {
  content: "";
  position: absolute;
  right: -35px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: url("./assets/svg/link-arrow.svg") no-repeat center;
  transition: all 0.3s ease-in-out;
}
.wp-block-button.is-style-link-arrow .wp-block-button__link:hover:before {
  width: 100%;
}
.wp-block-button.is-style-link-arrow .wp-block-button__link:hover:after {
  transform: translateY(-50%) rotate(90deg);
}

.wp-block-button.is-style-circle-arrow .wp-block-button__link {
  transition: all 0.3s ease-in-out;
  text-indent: -9999px;
  position: relative;
  width: 40px;
  height: 40px;
}
.wp-block-button.is-style-circle-arrow .wp-block-button__link:before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid var(--wp--preset--color--secondary);
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
}
.wp-block-button.is-style-circle-arrow .wp-block-button__link:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 14px;
  background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOC4zNzEiIGhlaWdodD0iMTcuMTUzIiB2aWV3Qm94PSIwIDAgMTguMzcxIDE3LjE1MyI+CiAgPHBhdGggaWQ9Ikljb25fYWthci1hcnJvdy1yaWdodCIgZGF0YS1uYW1lPSJJY29uIGFrYXItYXJyb3ctcmlnaHQiIGQ9Ik02LDE0LjY2MkgyMi4zNzFNMTUuMjA4LDcuNWw3LjE2Miw3LjE2Mi03LjE2Miw3LjE2MiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTUgLTYuMDg2KSIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjNDEyZGUwIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIHN0cm9rZS13aWR0aD0iMiIvPgo8L3N2Zz4K") no-repeat center;
  background-size: contain;
  transition: all 0.3s ease-in-out;
}
.wp-block-button.is-style-circle-arrow .wp-block-button__link:hover:before {
  background: var(--wp--preset--color--secondary);
}

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

ul.wp-block-list li, ol.wp-block-list li {
  position: relative;
  margin-bottom: 0.625rem;
}

ul.wp-block-list {
  padding-left: 0.5em;
}
ul.wp-block-list li {
  padding-left: 18px;
}
ul.wp-block-list li::before {
  content: "\\";
  position: absolute;
  color: var(--wp--preset--color--accent);
  font-weight: var(--wp--custom--font-weight--black);
  left: 4px;
  top: 50%;
  transform: translateY(-50%);
}

ol.wp-block-list {
  padding-left: 0.5em;
  counter-reset: section;
}
ol.wp-block-list li {
  padding-left: 32px;
}
ol.wp-block-list li:before {
  font-weight: 700;
  position: absolute;
  left: 0;
  width: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  counter-increment: section;
  color: var(--wp--preset--color--secondary);
  background: var(--wp--preset--color--accent);
  content: counter(section, decimal-leading-zero);
}

.rank-math-breadcrumb {
  max-width: 550px;
  margin-bottom: var(--wp--preset--spacing--m);
}
.rank-math-breadcrumb p, .rank-math-breadcrumb a {
  font-size: clamp(0.813rem, 0.795rem + 0.089vw, 0.875rem);
  font-weight: var(--wp--custom--font-weight--light);
  color: var(--wp--preset--color--primary);
}
.rank-math-breadcrumb a {
  text-decoration: none;
}

figure.is-style-gradient-background, .wp-block-gallery {
  position: relative;
}
figure.is-style-gradient-background:before, .wp-block-gallery:before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%) translateX(-50%);
  left: 50%;
  width: 100cqw;
  height: 140px;
  background: linear-gradient(to right, var(--wp--preset--color--secondary), var(--wp--custom--color--secondary-light));
  z-index: -1;
}
@container (width <= 992px) {
  figure.is-style-gradient-background:before, .wp-block-gallery:before {
    height: 60px;
  }
}

.wp-block-group-is-layout-flex > figure {
  flex-shrink: 0;
}

/****************************************************************************/
/* COOKIES / RGPD
/****************************************************************************/
.block__rgpd {
  margin-top: var(--wp--preset--spacing--l);
}
.block__rgpd__title {
  font-weight: var(--wp--custom--font-weight--black);
  margin-bottom: var(--wp--preset--spacing--s);
}
.block__rgpd__content {
  color: #000;
  font-size: var(--wp--preset--font-size--xs);
  max-height: 128px;
  overflow: auto;
}

/****************************************************************************/
/* COOKIES / RGPD
/****************************************************************************/
body.gdpr-infobar-visible {
  position: relative;
  container-type: inline-size;
}
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: var(--grid-breakpoint-sm)) {
  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;
}
@container (width <= 782px) {
  body.gdpr-infobar-visible aside#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content {
    display: flex;
    flex-direction: column-reverse;
  }
  body.gdpr-infobar-visible aside#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content .moove-gdpr-button-holder {
    align-self: flex-end;
  }
}

.gdpr_lightbox {
  z-index: 99970;
}

.grecaptcha-badge {
  visibility: hidden;
}

/****************************************************************************/
/* TEMPLATE
/****************************************************************************/
html {
  scroll-behavior: smooth;
}

main,
.wp-block-template-part,
.entry-content {
  margin-top: 0;
}

#content + .wp-block-group,
main + .wp-block-group {
  margin-top: var(--wp--preset--spacing--xl);
}

.wp-site-blocks, .page-content.is-layout-constrained {
  container-type: inline-size;
}

/****************************************************************************/
/* PATTERNS
/****************************************************************************/
:where(:not(.block__related)) > .wp-block-query .wp-block-post-template .wp-block-post.post, :where(:not(.block__related)) > .wp-block-query .wp-block-post-template .wp-block-post.metiers, :where(:not(.block__related)) > .wp-block-query .wp-block-post-template .wp-block-post.machines {
  box-shadow: var(--wp--preset--shadow--neat);
  border-radius: var(--wp--custom--radius--m);
  overflow: hidden;
}
:where(:not(.block__related)) > .wp-block-query .wp-block-post-template .wp-block-post.post .wp-block-buttons.is-content-justification-right, :where(:not(.block__related)) > .wp-block-query .wp-block-post-template .wp-block-post.metiers .wp-block-buttons.is-content-justification-right, :where(:not(.block__related)) > .wp-block-query .wp-block-post-template .wp-block-post.machines .wp-block-buttons.is-content-justification-right {
  align-self: end;
}
:where(:not(.block__related)) > .wp-block-query .wp-block-post-template .wp-block-post.post {
  display: flex;
  flex-direction: column;
}
:where(:not(.block__related)) > .wp-block-query .wp-block-post-template .wp-block-post.post .wp-block-post-featured-image img {
  height: 240px;
}
:where(:not(.block__related)) > .wp-block-query .wp-block-post-template .wp-block-post.post .wp-block-post-featured-image, :where(:not(.block__related)) > .wp-block-query .wp-block-post-template .wp-block-post.metiers .wp-block-post-featured-image {
  flex-shrink: 0;
  overflow: hidden;
}
:where(:not(.block__related)) > .wp-block-query .wp-block-post-template .wp-block-post.post .wp-block-post-featured-image img, :where(:not(.block__related)) > .wp-block-query .wp-block-post-template .wp-block-post.metiers .wp-block-post-featured-image img {
  transition: transform 0.3s ease-in-out;
}
:where(:not(.block__related)) > .wp-block-query .wp-block-post-template .wp-block-post.post .wp-block-group.is-linked, :where(:not(.block__related)) > .wp-block-query .wp-block-post-template .wp-block-post.metiers .wp-block-group.is-linked {
  color: var(--wp--preset--color--secondary);
  height: 100%;
  justify-content: space-between;
  transition: all 0.3s ease-in-out;
}
:where(:not(.block__related)) > .wp-block-query .wp-block-post-template .wp-block-post.post .wp-block-post-terms, :where(:not(.block__related)) > .wp-block-query .wp-block-post-template .wp-block-post.metiers .wp-block-post-terms {
  padding: 0 4px;
}
:where(:not(.block__related)) > .wp-block-query .wp-block-post-template .wp-block-post.post .wp-block-post-terms a, :where(:not(.block__related)) > .wp-block-query .wp-block-post-template .wp-block-post.metiers .wp-block-post-terms a {
  font-weight: var(--wp--custom--font-weight--medium);
  pointer-events: none;
  text-decoration: none;
}
:where(:not(.block__related)) > .wp-block-query .wp-block-post-template .wp-block-post.post:hover img, :where(:not(.block__related)) > .wp-block-query .wp-block-post-template .wp-block-post.metiers:hover img {
  transform: scale(1.05);
}
:where(:not(.block__related)) > .wp-block-query .wp-block-post-template .wp-block-post.post:hover .wp-block-group.is-linked, :where(:not(.block__related)) > .wp-block-query .wp-block-post-template .wp-block-post.metiers:hover .wp-block-group.is-linked {
  background: var(--wp--preset--color--secondary);
  color: var(--wp--preset--color--white);
}
:where(:not(.block__related)) > .wp-block-query .wp-block-post-template .wp-block-post.post:hover .wp-block-post-title, :where(:not(.block__related)) > .wp-block-query .wp-block-post-template .wp-block-post.metiers:hover .wp-block-post-title {
  color: var(--wp--preset--color--white) !important;
}
:where(:not(.block__related)) > .wp-block-query .wp-block-post-template .wp-block-post.post:hover .is-style-circle-arrow .wp-block-button__link:before, :where(:not(.block__related)) > .wp-block-query .wp-block-post-template .wp-block-post.metiers:hover .is-style-circle-arrow .wp-block-button__link:before {
  background: var(--wp--preset--color--accent);
}
:where(:not(.block__related)) > .wp-block-query .wp-block-post-template .wp-block-post.job-offer {
  position: relative;
}
:where(:not(.block__related)) > .wp-block-query .wp-block-post-template .wp-block-post.job-offer:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 68px;
  height: 112px;
  background: url("./assets/svg/slash-job-blue.svg") no-repeat;
}
:where(:not(.block__related)) > .wp-block-query .wp-block-post-template .wp-block-post.job-offer:hover span.title-line {
  background-color: var(--wp--preset--color--accent);
}
:where(:not(.block__related)) > .wp-block-query .wp-block-post-template .wp-block-post.job-offer:hover .is-style-circle-arrow .wp-block-button__link {
  transform: translateX(10px);
}
:where(:not(.block__related)) > .wp-block-query .wp-block-post-template .wp-block-post.job-offer:hover .is-style-circle-arrow .wp-block-button__link:before {
  background: var(--wp--preset--color--secondary);
}
:where(:not(.block__related)) > .wp-block-query .wp-block-post-template .wp-block-post.job-offer:hover .is-style-circle-arrow .wp-block-button__link:after {
  filter: invert(99%) sepia(99%) saturate(0%) hue-rotate(17deg) brightness(117%) contrast(100%);
}
:where(:not(.block__related)) > .wp-block-query .wp-block-post-template .wp-block-post.machines {
  transition: transform 0.3s ease-in-out;
}
:where(:not(.block__related)) > .wp-block-query .wp-block-post-template .wp-block-post.machines .wp-block-post-title span.title-line {
  transition: background-color 0.3s ease-in-out;
}
:where(:not(.block__related)) > .wp-block-query .wp-block-post-template .wp-block-post.machines:hover {
  transform: translateY(-24px);
}
:where(:not(.block__related)) > .wp-block-query .wp-block-post-template .wp-block-post.machines:hover .wp-block-post-title span.title-line {
  background: var(--wp--preset--color--accent);
}
:where(:not(.block__related)) > .wp-block-query .wp-block-post-template .wp-block-post.machines:hover .is-style-circle-arrow .wp-block-button__link:before {
  background: var(--wp--preset--color--secondary);
}
:where(:not(.block__related)) > .wp-block-query .wp-block-post-template .wp-block-post.machines:hover .is-style-circle-arrow .wp-block-button__link:after {
  background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOC4zNzEiIGhlaWdodD0iMTcuMTUzIiB2aWV3Qm94PSIwIDAgMTguMzcxIDE3LjE1MyI+CiAgPHBhdGggaWQ9Ikljb25fYWthci1hcnJvdy1yaWdodCIgZGF0YS1uYW1lPSJJY29uIGFrYXItYXJyb3ctcmlnaHQiIGQ9Ik02LDE0LjY2MkgyMi4zNzFNMTUuMjA4LDcuNWw3LjE2Miw3LjE2Mi03LjE2Miw3LjE2MiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTUgLTYuMDg2KSIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjRkZGRkZGIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIHN0cm9rZS13aWR0aD0iMiIvPgo8L3N2Zz4K") no-repeat center;
  background-size: contain;
}

@container (width <= 768px) {
  .wp-block-post-template:has(.wp-block-post.post), .wp-block-post-template:has(.wp-block-post.metiers) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@container (width <= 576px) {
  .wp-block-post-template:has(.wp-block-post.post), .wp-block-post-template:has(.wp-block-post.metiers) {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
/**
*
* Filter query loop
*
*/
.wp-block-twentybellows-taxonomy-query-filter {
  display: flex;
  gap: var(--wp--preset--spacing--s);
}
.wp-block-twentybellows-taxonomy-query-filter input {
  position: absolute !important;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  width: 1px;
  border: 0;
  overflow: hidden;
}
.wp-block-twentybellows-taxonomy-query-filter label {
  background-color: var(--wp--preset--color--white);
  color: var(--wp--preset--color--secondary);
  font-size: var(--wp--preset--font-size--default);
  font-weight: var(--wp--custom--font-weight--bold);
  text-align: center;
  padding: var(--wp--preset--spacing--xs) var(--wp--preset--spacing--s);
  border: 1px solid var(--wp--preset--color--secondary);
  border-radius: var(--wp--custom--radius--m);
  transition: all 0.1s ease-in-out;
}
.wp-block-twentybellows-taxonomy-query-filter label:hover {
  cursor: pointer;
}
.wp-block-twentybellows-taxonomy-query-filter input:checked + label {
  background-color: var(--wp--preset--color--secondary);
  color: var(--wp--preset--color--white);
  box-shadow: none;
}

/*
* Pagination
*
*/
.wp-block-query-pagination {
  gap: 0;
}
.wp-block-query-pagination .is-arrow-arrow {
  background: var(--wp--preset--color--accent);
  color: var(--wp--preset--color--secondary);
  border-radius: 50%;
  width: 20px;
  height: 20px;
  font-size: 1.2em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wp-block-query-pagination-numbers {
  display: flex;
  gap: var(--wp--preset--spacing--s);
}

/*
*
*
*/
@container (width <= 992px) {
  .is-style-split-background-50-50 .wp-block-post-template {
    gap: var(--wp--preset--spacing--l);
  }
}
@container (width <= 676px) {
  .is-style-split-background-50-50 .wp-block-post-template {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@container (width <= 576px) {
  .is-style-split-background-50-50 .wp-block-post-template {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

@container (width <= 1200px) {
  .is-style-products-showcase > .is-layout-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .is-style-products-showcase > .is-layout-grid .product-with-sidebar__content {
    grid-column: span 2;
  }
}
@container (width <= 992px) {
  .is-style-products-showcase > .is-layout-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .is-style-products-showcase > .is-layout-grid .product-with-sidebar__sidebar {
    overflow: auto;
  }
  .is-style-products-showcase > .is-layout-grid .product-with-sidebar__sidebar::-webkit-scrollbar {
    display: none;
  }
  .is-style-products-showcase > .is-layout-grid .product-with-sidebar__sidebar-item {
    flex-shrink: 0;
  }
  .is-style-products-showcase > .is-layout-grid .product-with-sidebar__content {
    grid-column: span 1;
  }
}

.wp-block-acf-product-with-sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--wp--preset--spacing--xl);
}

.product-with-sidebar__sidebar {
  position: sticky;
  top: 40px;
  display: flex;
}
.product-with-sidebar__sidebar .block-icon {
  flex-shrink: 0;
}
.product-with-sidebar__sidebar svg path {
  transition: all 0.3s ease-out;
}

@container (width >= 992px) {
  .product-with-sidebar__sidebar {
    flex-wrap: wrap;
  }
  .product-with-sidebar__sidebar-item {
    width: 100%;
  }
}
.product-with-sidebar__sidebar-item p {
  color: var(--wp--preset--color--secondary);
  font-size: var(--wp--preset--font-size--s);
  font-weight: var(--wp--custom--font-weight--bold);
  position: relative;
  padding-right: 2rem;
  transition: all 0.3s ease-in-out;
}
.product-with-sidebar__sidebar-item p:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0%;
  background: var(--wp--preset--color--secondary);
  transition: all 0.3s ease-in-out;
}
.product-with-sidebar__sidebar-item p:after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: url("./assets/svg/link-arrow.svg") no-repeat center;
  transition: all 0.3s ease-in-out;
}
.product-with-sidebar__sidebar-item p:hover:before {
  width: 100%;
}
.product-with-sidebar__sidebar-item p:hover:after {
  transform: translateY(-50%) rotate(90deg);
}

.product-with-sidebar__sidebar-item:not(.active) {
  border: 2px solid;
  border-image-slice: 1;
  border-image-source: linear-gradient(to right, var(--wp--preset--color--secondary), transparent);
  border-top: 0;
  border-left: 0;
  border-right: 0;
}

.product-with-sidebar__sidebar-item.active {
  background: var(--wp--preset--color--secondary);
}
.product-with-sidebar__sidebar-item.active p {
  color: var(--wp--preset--color--white);
}
.product-with-sidebar__sidebar-item.active p:after {
  display: none;
}
.product-with-sidebar__sidebar-item.active svg g#colored path {
  fill: var(--wp--preset--color--white);
}

.product-with-sidebar__content {
  display: flex;
  flex-direction: column;
  gap: var(--wp--preset--spacing--xl);
}

.product-with-sidebar__header {
  display: flex;
  flex-direction: column;
  gap: var(--wp--preset--spacing--s);
}

.product-with-sidebar__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--wp--preset--spacing--l);
}

.product-item__card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--wp--preset--color--white);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}
.product-item__card .product-item__link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.product-item__card:hover {
  transform: translateY(-20px);
}
.product-item__card:hover .product-item__title span {
  background: var(--wp--preset--color--accent);
}
.product-item__card:hover .is-style-circle-arrow .wp-block-button__link:before {
  background: var(--wp--preset--color--accent);
  border-color: var(--wp--preset--color--accent);
}

.product-item__image {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.product-item__content {
  padding: var(--wp--preset--spacing--m);
  display: flex;
  flex-direction: column;
  gap: var(--wp--preset--spacing--s);
  flex: 1;
}

.product-item__title {
  color: var(--wp--preset--color--secondary);
  background: none;
  font-size: var(--wp--preset--font-size--l);
  font-weight: var(--wp--custom--font-weight--bold);
  margin: 0;
  line-height: 1.3;
}
.product-item__title span {
  transition: background 0.3s ease-in-out;
}

.product-item__description {
  color: var(--wp--preset--color--foreground, #333);
  margin: 0;
  font-size: var(--wp--preset--font-size--sm);
  line-height: 1.6;
}

/* Bloc CTA */
.product-item__cta {
  background: var(--wp--preset--color--secondary);
  border-radius: 8px;
  padding: var(--wp--preset--spacing--xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: var(--wp--preset--spacing--m);
  color: var(--wp--preset--color--white);
}

.product-item__cta-title {
  color: var(--wp--preset--color--white);
  font-size: var(--wp--preset--font-size--l);
  font-weight: var(--wp--custom--font-weight--bold);
  margin: 0;
  line-height: 1.3;
}

.product-item__cta-text {
  color: var(--wp--preset--color--white);
  font-size: var(--wp--preset--font-size--base);
  text-align: center;
}

.product-item__cta-button {
  display: inline-block;
  padding: var(--wp--preset--spacing--s) var(--wp--preset--spacing--l);
  background: #fff;
  color: var(--wp--preset--color--secondary);
  border: 2px solid var(--wp--preset--color--primary);
  border-radius: 4px;
  text-decoration: none;
  font-weight: var(--wp--custom--font-weight--bold);
  text-align: center;
  transition: background-color 0.2s ease, color 0.2s ease;
  margin-top: var(--wp--preset--spacing--s);
}

.product-item__cta-button:hover {
  background: var(--wp--preset--color--primary);
  color: var(--wp--preset--color--white);
}

/* Responsive adjustments */
@container (width <= 1200px) {
  .product-with-sidebar__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@container (width <= 768px) {
  .product-with-sidebar__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--wp--preset--spacing--s);
  }
  .product-item__cta {
    grid-column: span 2;
  }
}
@container (width <= 480px) {
  .product-with-sidebar__grid {
    grid-template-columns: 1fr;
  }
  .product-item__cta {
    grid-column: span 1;
  }
}
/****************************************************************************/
/* BLOCKS
/****************************************************************************/
.wp-block-cover.is-style-cover-homepage .wp-block-cover__image-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  width: 606px;
  height: 565px;
}
.wp-block-cover.is-style-cover-homepage .wp-block-cover__image-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: -108px;
  width: 241px;
  height: 100%;
  background: linear-gradient(to bottom, var(--wp--preset--color--secondary), var(--wp--preset--color--white));
  clip-path: polygon(0% 0%, 50% 0, 100% 100%, 50% 100%);
  z-index: 2;
}
.wp-block-cover.is-style-cover-homepage .wp-block-cover__image-background {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 20% 100%);
}
.wp-block-cover.is-style-cover-homepage .wp-block-cover__inner-container {
  z-index: 3;
}
.wp-block-cover.is-style-cover-homepage .wp-block-cover__inner-container .wp-block-group > .wp-block-group {
  max-width: 550px;
}
@container (width > 1920px) {
  .wp-block-cover.is-style-cover-homepage {
    min-height: 69vh !important;
  }
  .wp-block-cover.is-style-cover-homepage .wp-block-cover__image-wrapper {
    width: 100%;
    height: 100%;
    max-width: 960px;
  }
}
@container (width <= 1200px) {
  .wp-block-cover.is-style-cover-homepage .wp-block-cover__image-wrapper {
    opacity: 0.3;
  }
}
@container (width <= 992px) {
  .wp-block-cover.is-style-cover-homepage .wp-block-cover__image-wrapper {
    display: none;
  }
}
@container (width <= 576px) {
  .wp-block-cover.is-style-cover-homepage .wp-block-cover__image-wrapper {
    right: -50%;
  }
}

.wp-block-cover.is-style-cover-homepage h1 .mark-word, .wp-block-cover.is-style-cover-page h1 .mark-word, .wp-block-cover.is-style-cover-video h1 .mark-word {
  position: relative;
  z-index: 5;
  --mark-width: 0%;
}
.wp-block-cover.is-style-cover-homepage h1 .mark-word:before, .wp-block-cover.is-style-cover-page h1 .mark-word:before, .wp-block-cover.is-style-cover-video h1 .mark-word:before {
  content: "";
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: var(--mark-width);
  height: 100%;
  background: var(--wp--preset--color--accent);
  transition: width 0.6s ease-out;
}

.wp-block-cover.is-style-cover-page .wp-block-cover__image-wrapper, .wp-block-cover.is-style-cover-video .wp-block-cover__image-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  width: 550px;
  height: 350px;
}
.wp-block-cover.is-style-cover-page .wp-block-cover__image-wrapper::before, .wp-block-cover.is-style-cover-video .wp-block-cover__image-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: -108px;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, var(--wp--preset--color--secondary), var(--wp--preset--color--white));
  clip-path: polygon(0% 0%, 20% 0, 40% 100%, 20% 100%);
  z-index: 2;
}
.wp-block-cover.is-style-cover-page .wp-block-cover__image-background, .wp-block-cover.is-style-cover-video .wp-block-cover__image-background {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 20% 100%);
}
.wp-block-cover.is-style-cover-page .wp-block-cover__inner-container .wp-block-group > .wp-block-group, .wp-block-cover.is-style-cover-video .wp-block-cover__inner-container .wp-block-group > .wp-block-group {
  max-width: 550px;
}
@container (width <= 1200px) {
  .wp-block-cover.is-style-cover-page .wp-block-cover__image-wrapper, .wp-block-cover.is-style-cover-video .wp-block-cover__image-wrapper {
    opacity: 0.3;
  }
}
@container (width <= 768px) {
  .wp-block-cover.is-style-cover-page, .wp-block-cover.is-style-cover-video {
    display: flex;
    flex-direction: column-reverse;
    gap: var(--wp--preset--spacing--l);
  }
  .wp-block-cover.is-style-cover-page .wp-block-cover__image-wrapper, .wp-block-cover.is-style-cover-page .wp-block-cover__image-background, .wp-block-cover.is-style-cover-video .wp-block-cover__image-wrapper, .wp-block-cover.is-style-cover-video .wp-block-cover__image-background {
    position: relative;
    right: auto;
    left: auto;
  }
  .wp-block-cover.is-style-cover-page .wp-block-cover__image-wrapper, .wp-block-cover.is-style-cover-video .wp-block-cover__image-wrapper {
    width: 100%;
    opacity: 1;
  }
  .wp-block-cover.is-style-cover-page .wp-block-cover__image-wrapper::before, .wp-block-cover.is-style-cover-video .wp-block-cover__image-wrapper::before {
    top: auto;
    left: 0;
    width: 100%;
    background: linear-gradient(to bottom, var(--wp--preset--color--secondary), var(--wp--preset--color--white));
    clip-path: polygon(0% 0%, 20% 0, 40% 100%, 20% 100%);
  }
  .wp-block-cover.is-style-cover-page .wp-block-cover__image-background, .wp-block-cover.is-style-cover-video .wp-block-cover__image-background {
    clip-path: polygon(20% 0%, 100% 0, 100% 100%, 40% 100%);
  }
}
@container (width <= 576px) {
  .wp-block-cover.is-style-cover-page .wp-block-cover__image-wrapper, .wp-block-cover.is-style-cover-video .wp-block-cover__image-wrapper {
    height: 260px;
  }
}

/* Variation Cover Video */
.wp-block-cover.is-style-cover-video {
  position: relative;
}
.wp-block-cover.is-style-cover-video.has-video .cover-video__play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.wp-block-cover.is-style-cover-video.has-video .cover-video__play-button:hover {
  transform: translate(-50%, -50%) scale(1.1);
  opacity: 0.9;
}
.wp-block-cover.is-style-cover-video.has-video .cover-video__play-button:focus {
  outline: 2px solid var(--wp--preset--color--accent);
  outline-offset: 4px;
  border-radius: 50%;
}
.wp-block-cover.is-style-cover-video.has-video .cover-video__play-button svg {
  display: block;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}
.wp-block-cover.is-style-cover-video .wp-block-button {
  margin-top: var(--wp--preset--spacing--m);
}

/* Popup vidéo */
.cover-video__popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
}
.cover-video__popup.is-open {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cover-video__popup-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
}

.cover-video__popup-content {
  position: relative;
  z-index: 1;
  width: 90%;
  max-width: 1200px;
  max-height: 90vh;
  background: #000;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.cover-video__popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  line-height: 1;
  color: #000;
  transition: background 0.2s ease, transform 0.2s ease;
}
.cover-video__popup-close:hover {
  background: #fff;
  transform: scale(1.1);
}
.cover-video__popup-close:focus {
  outline: 2px solid var(--wp--preset--color--accent);
  outline-offset: 2px;
}
.cover-video__popup-close span {
  display: block;
}

.cover-video__popup-video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
}

.cover-video__popup-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

/* Responsive */
@media (max-width: 768px) {
  .cover-video__play-button svg {
    width: 60px;
    height: 60px;
  }
  .cover-video__popup-content {
    width: 95%;
  }
}
.wp-block-media-text .wp-block-media-text__media {
  padding-right: 1.5rem;
}
.wp-block-media-text .wp-block-media-text__content {
  padding-left: rem;
  padding-right: 0;
}

.hero-form .wp-block-group:has(.fluentform) {
  max-width: 654px;
  position: sticky;
  top: 120px;
}

.wp-block-group.has-form {
  box-shadow: var(--wp--preset--shadow--neat);
  border-radius: var(--wp--custom--radius--m);
}
.wp-block-group.has-form > .wp-block-group.has-background {
  border-top-left-radius: var(--wp--custom--radius--m);
  border-top-right-radius: var(--wp--custom--radius--m);
}

.fluentform {
  font-family: var(--wp--preset--font-family--secondary);
  padding-left: var(--wp--preset--spacing--l);
  padding-right: var(--wp--preset--spacing--l);
}
.fluentform form .ff-el-input--label {
  color: var(--wp--preset--color--primary);
}
.fluentform form .ff-el-input--label.ff-el-is-required.asterisk-right label:after {
  color: var(--wp--preset--color--primary);
}
.fluentform form .ff-dropzone {
  margin-top: 24px;
  margin-bottom: 0;
}
.fluentform form .ff-dropzone .ff_upload_btn.ff-btn {
  border: 1px solid var(--wp--preset--color--secondary);
  padding: 12px;
  border-radius: var(--wp--custom--radius--m);
  color: var(--wp--preset--color--primary);
}
.fluentform form .ff-dropzone .ff_upload_btn.ff-btn > span {
  text-decoration: underline;
}
.fluentform form .ff-dropzone .ff_upload_btn.ff-btn span.green {
  color: var(--wp--preset--color--secondary);
  font-weight: var(--wp--custom--font-weight--bold);
}
.fluentform form .ff-dropzone .ff-uploaded-list {
  margin-top: 5px !important;
}
.fluentform form .ff-dropzone + .ff-custom_html {
  margin-top: 0;
  margin-bottom: 0;
}
.fluentform form .ff-dropzone + .ff-custom_html p {
  margin-top: 0;
  font-size: clamp(0.813rem, 0.768rem + 0.119vw, 0.875rem);
}
.fluentform select {
  font-family: var(--wp--preset--font-family--secondary);
  margin-top: 24px;
  color: var(--wp--preset--color--primary);
  background: var(--wp--preset--color--white);
  border: 0;
  outline: 0;
  font-size: var(--wp--preset--font-size--xs);
}
.fluentform .ff-el-form-control:not(textarea) {
  padding: 12px 0 0 0;
  height: 32px;
  outline: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}
.fluentform .ff-el-form-control:not(textarea)::-moz-placeholder {
  visibility: hidden;
}
.fluentform .ff-el-form-control:not(textarea)::placeholder {
  visibility: hidden;
}
.fluentform .ff-el-form-control:not(textarea):focus {
  border-color: var(--wp--preset--color--secondary);
}
.fluentform select, .fluentform textarea, .fluentform .ff-el-form-control:not(textarea) {
  border-bottom: 1px solid var(--wp--preset--color--secondary);
}
.fluentform textarea {
  border: 1px solid var(--wp--preset--color--secondary);
  padding: var(--wp--preset--spacing--xxs);
  border-radius: var(--wp--custom--radius--m);
  outline-color: var(--wp--preset--color--secondary);
}
.fluentform .ff-el-group {
  margin-top: 15px;
}
.fluentform .ff-btn-submit {
  position: relative;
  border-radius: var(--wp--custom--radius--m);
  cursor: pointer;
  background: var(--wp--preset--color--secondary);
  color: var(--wp--preset--color--white);
  border: 1px solid transparent;
  padding-top: calc(var(--wp--preset--spacing--xs) - 1px);
  padding-right: var(--wp--preset--spacing--xs);
  padding-bottom: calc(var(--wp--preset--spacing--xs) - 1px);
  padding-left: var(--wp--preset--spacing--xs);
  font-size: var(--wp--preset--font-size--default);
  font-weight: var(--wp--custom--font-weight--bold);
  transition: all 0.3s ease-in-out;
}
.fluentform .ff-btn-submit:after {
  content: "";
  position: absolute;
  top: 5px;
  left: -5px;
  width: 100%;
  height: 100%;
  background: var(--wp--preset--color--accent);
  border-radius: var(--wp--custom--radius--m);
  z-index: -1;
}
.fluentform .ff-t-container .ff-el-group:not(.ff-el-form-hide_label):not(.ff-dropzone):not(.ff-custom_html) {
  margin-top: 15px;
  margin-bottom: 15px;
  position: relative;
}
.fluentform .ff-t-container .ff-el-group:not(.ff-el-form-hide_label):not(.ff-dropzone):not(.ff-custom_html) .ff-el-input--label {
  position: absolute;
  top: 4px;
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
}
.fluentform .ff-t-container .ff-el-group:not(.ff-el-form-hide_label):not(.ff-dropzone):not(.ff-custom_html) .ff-el-input--label.active {
  color: var(--wp--preset--color--secondary);
  background: var(--wp--preset--color--accent);
  padding-left: 4px;
  padding-right: 4px;
  font-size: clamp(0.813rem, 0.768rem + 0.119vw, 0.875rem);
  font-weight: var(--wp--custom--font-weight--bold);
  top: -12px;
  left: -2px;
}
.fluentform .ff-t-container .ff-el-group:not(.ff-el-form-hide_label):not(.ff-dropzone):not(.ff-custom_html) .ff-el-input--label.active.ff-el-is-required.asterisk-right label:after {
  color: var(--wp--preset--color--secondary);
}
.fluentform .ff-t-container .ff-el-group:not(.ff-el-form-hide_label):not(.ff-dropzone):not(.ff-custom_html):is(.ff-el-is-error) .ff-el-form-control:not(textarea) {
  border-color: var(--fluentform-danger);
}

.wp-rgpd-block {
  font-size: clamp(0.813rem, 0.813rem + 0vw, 0.813rem);
}
.wp-rgpd-block > p {
  font-weight: var(--wp--custom--font-weight--bold);
}
.wp-rgpd-block p {
  margin: 0;
  color: var(--wp--preset--color--primary);
}
.wp-rgpd-block .wp-rgpd-block__content {
  height: 50px;
  overflow-y: auto;
}

@media (min-width: 1200px) {
  .frm-fluent-form .ff-t-container {
    gap: var(--wp--preset--spacing--m);
  }
}
.entry-content .wp-block-group:not(.product-with-sidebar__sidebar) > .wp-block-group.is-linked > .block-icon + p {
  height: 100%;
  display: flex;
  align-items: center;
  flex: 1;
  position: relative;
}
.entry-content .wp-block-group:not(.product-with-sidebar__sidebar) > .wp-block-group.is-linked > .block-icon + p:before, .entry-content .wp-block-group:not(.product-with-sidebar__sidebar) > .wp-block-group.is-linked > .block-icon + p:after {
  content: "";
  position: absolute;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--wp--preset--color--secondary);
  transition: all 0.3s ease;
}
.entry-content .wp-block-group:not(.product-with-sidebar__sidebar) > .wp-block-group.is-linked > .block-icon + p:before {
  top: 0;
}
.entry-content .wp-block-group:not(.product-with-sidebar__sidebar) > .wp-block-group.is-linked > .block-icon + p:after {
  bottom: 0;
}
.entry-content .wp-block-group:not(.product-with-sidebar__sidebar) > .wp-block-group.is-linked > .block-icon .icon-block-svg {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.entry-content .wp-block-group:not(.product-with-sidebar__sidebar) > .wp-block-group.is-linked > .block-icon .icon-block-svg svg {
  transition: all 0.3s ease;
}
.entry-content .wp-block-group:not(.product-with-sidebar__sidebar) > .wp-block-group.is-linked:hover .block-icon + p:before, .entry-content .wp-block-group:not(.product-with-sidebar__sidebar) > .wp-block-group.is-linked:hover .block-icon + p:after {
  width: 100%;
}
.entry-content .wp-block-group:not(.product-with-sidebar__sidebar) > .wp-block-group.is-linked:hover .icon-block-svg svg path {
  fill: var(--wp--preset--color--secondary);
}
.entry-content .wp-block-group:not(.product-with-sidebar__sidebar) > .wp-block-group.is-linked:hover .icon-block-svg svg rect {
  fill: var(--wp--preset--color--accent);
}