@charset "UTF-8";
.shadow {
  -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25); }

@font-face {
  font-family: 'D-din';
  src: url("../font-family/d-din-webfont.woff2") format("woff2"), url("../font-family/d-din-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: 'D-din';
  src: url("../font-family/d-din-bold-webfont.woff2") format("woff2"), url("../font-family/d-din-bold-webfont.woff") format("woff");
  font-weight: 700;
  font-style: normal; }
/*
$breakpoint argument choices
- phone
- tab-port
- tab-land
- small-desktop
- big-desktop
*/
:root {
  --primary:#1238FF;
  --secondary:#128DFF;
  --secondary-300:#56AEFF;
  --light-grey:#F5F5F5;
  --grey:#B5B5B5;
  --dark-grey:#5D5E65;
  --primary-filter:invert(12%) sepia(96%) saturate(6736%) hue-rotate(239deg) brightness(101%) contrast(101%);
  --focus-color:rgba(72, 95, 199, 0.25);
  --default:D-din, Arial, sans-serif;
  --font-mod:1rem; }

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 62.5%;
  scroll-behavior: smooth; }
  @media only screen and (max-width: 90em) {
    html {
      font-size: 56.25%; } }
  @media only screen and (max-width: 75em) {
    html {
      font-size: 53.125%; } }
  @media only screen and (max-width: 56.25em) {
    html {
      font-size: 50%; } }

*
*::after,
*::before {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: inherit;
          box-sizing: inherit; }

body {
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0; }
  @media only screen and (max-width: 37.5em) {
    body {
      overflow-x: hidden; } }
  @media print {
    body #fb-root {
      display: none; } }

h1, h2, h3, h4, h5, h6, p, ul, figure {
  margin: 0;
  padding: 0; }

p {
  margin: 0; }
  @media only screen and (max-width: 75em) {
    p {
      font-size: Calc( 1.8rem * var(--font-mod) );
      line-height: 1.3; } }
  @media only screen and (max-width: 56.25em) {
    p {
      font-size: Calc( 2rem * var(--font-mod) ); } }

ul, li {
  list-style: none; }

.container {
  width: 95%;
  max-width: 156rem;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  .container-col {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }
  @media only screen and (max-width: 75em) {
    .container {
      width: 90%; } }

.u-margin-top-small {
  margin-top: 1.5rem; }

.u-margin-top-medium {
  margin-top: 4rem; }

.u-margin-top-big {
  margin-top: 8rem; }

.u-margin-top-huge {
  margin-top: 10rem; }

.u-margin-bottom-small {
  margin-bottom: 1.5rem; }

.u-margin-bottom-medium {
  margin-bottom: 4rem; }

.u-margin-bottom-big {
  margin-bottom: 8rem; }

.u-margin-bottom-huge {
  margin-bottom: 10rem; }

.btn {
  font-family: "D-din", Arial, sans-serif;
  font-family: var(--default);
  font-size: 1.6rem;
  font-weight: 700;
  padding: 0.7rem 1.6rem;
  background-color: #1238FF;
  background-color: var(--primary);
  text-decoration: none;
  cursor: pointer;
  color: #fff;
  border: none;
  text-align: center;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all .6s ease-in-out;
  transition: all .6s ease-in-out;
  border-radius: 0px; }
  .btn:hover {
    -webkit-transition: all .6s ease-in-out;
    transition: all .6s ease-in-out;
    background-color: #0A0A0A; }
  .btn__uppercase {
    text-transform: uppercase; }
  .btn__large {
    font-size: Calc( 2.4rem * var(--font-mod) );
    height: 5rem;
    padding: 1.1rem 2.4rem; }
  .btn__medium {
    font-size: Calc( 2rem * var(--font-mod) );
    height: 4.2rem;
    padding: 0.9rem 2rem; }
  .btn__small {
    font-size: 1.2rem;
    height: 2.4rem;
    padding: 0.5rem 1.2rem; }
  .btn__line {
    background-color: #fff;
    color: #0A0A0A;
    border: 1px solid; }
    .btn__line:hover {
      background-color: #0A0A0A;
      color: #fff; }
  .btn__light {
    background-color: #F5F5F5;
    background-color: var(--light-grey);
    color: #5D5E65;
    color: var(--dark-grey); }
    .btn__light:hover {
      background-color: #5D5E65;
      background-color: var(--dark-grey);
      color: #fff; }
  .btn__dark {
    background-color: #5D5E65;
    background-color: var(--dark-grey); }
    .btn__dark:hover {
      background-color: #F5F5F5;
      background-color: var(--light-grey);
      color: #5D5E65;
      color: var(--dark-grey); }
  .btn__black {
    background-color: #0A0A0A;
    border: 1px #fff solid; }
    .btn__black:hover {
      background-color: #fff;
      color: #0A0A0A;
      border: 1px #0A0A0A solid; }
  .btn__text {
    background-color: transparent;
    color: #0A0A0A; }
  .btn__link {
    background-color: #128DFF;
    background-color: var(--secondary); }
    .btn__link:hover {
      background-color: #1238FF;
      background-color: var(--primary); }
  .btn__info {
    background-color: #56AEFF;
    background-color: var(--secondary-300); }
    .btn__info:hover {
      background-color: #1238FF;
      background-color: var(--primary); }
  .btn__success {
    background-color: #35ED69; }
  .btn__warning {
    background-color: #FFDD29;
    color: #0A0A0A; }
  .btn__red {
    background-color: #F20707; }

.minus-btn {
  position: relative;
  display: inline-block;
  cursor: pointer;
  width: 1.6rem;
  height: 2px;
  background-color: #1238FF;
  background-color: var(--primary);
  border: none; }

.plus-btn {
  position: relative;
  display: inline-block;
  cursor: pointer;
  width: 1.6rem;
  height: 2px;
  background-color: #1238FF;
  background-color: var(--primary);
  border: none; }
  .plus-btn::after {
    position: absolute;
    content: " ";
    display: block;
    width: 1.6rem;
    height: 2px;
    background-color: #1238FF;
    background-color: var(--primary);
    border: none;
    top: 0;
    left: 0;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg); }

body {
  font-family: "D-din", Arial, sans-serif;
  font-family: var(--default);
  font-weight: 400;
  /*font-size: 16px;*/
  font-size: 1.6rem;
  line-height: 1.1;
  color: #0A0A0A; }

h1, h2, h3, h4, h5, h6 {
  line-height: 1.2; }

h1 {
  font-size: Calc( 5.4rem * var(--font-mod) );
  font-weight: 700; }

h2 {
  font-size: Calc( 4.4rem * var(--font-mod) );
  letter-spacing: -0.05em;
  font-weight: 700; }

h3 {
  font-size: Calc( 3.6rem * var(--font-mod) );
  font-weight: 700; }

h4 {
  font-size: Calc( 2.8rem * var(--font-mod) );
  font-weight: 700; }

h5 {
  font-size: Calc( 2.4rem * var(--font-mod) );
  font-weight: 700; }

h6 {
  font-size: Calc( 2rem * var(--font-mod) );
  font-weight: 700; }

a,
a:link,
a:visited {
  cursor: pointer;
  text-decoration: none;
  -webkit-transition: all .25s ease;
  transition: all .25s ease; }

.special-link {
  position: relative;
  font-size: Calc( 2.8rem * var(--font-mod) );
  cursor: pointer;
  font-weight: 700;
  color: #1238FF;
  color: var(--primary); }
  .special-link::after, .special-link::before {
    content: "";
    display: block;
    position: absolute;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out; }
  .special-link::before {
    width: 15px;
    height: 15px;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    border: solid #1238FF;
    border: solid var(--primary);
    border-width: 2px 2px 0 0; }
  .special-link::after {
    width: 1.8rem;
    height: 0.2rem;
    background-color: #1238FF;
    background-color: var(--primary); }
  .special-link:hover:before {
    border-color: #0A0A0A; }
  .special-link:hover:after {
    background-color: #0A0A0A; }

.align__center {
  text-align: center; }
.align__end {
  text-align: end; }

.underline {
  position: relative;
  display: inline-block; }
  .underline::after {
    content: '';
    position: absolute;
    display: inline-block;
    width: 12rem;
    height: 3px;
    left: 0;
    bottom: -1.5rem; }
    @media only screen and (max-width: 37.5em) {
      .underline::after {
        width: 9rem;
        height: 2px; } }
  .underline__grey::after {
    background-color: #B5B5B5;
    background-color: var(--grey);
    bottom: -1.25rem; }
  .underline__primary::after {
    background-color: #1238FF;
    background-color: var(--primary); }
  .underline__right::after {
    left: unset;
    right: 0; }
  .underline__center::after {
    left: 0;
    right: 0;
    margin: 0 auto; }

.weight__bold {
  font-weight: 700; }
.weight__medium {
  font-weight: 500; }
.weight__default {
  font-weight: 400; }

.size__h1 {
  font-size: Calc( 5.4rem * var(--font-mod) );
  line-height: 1.2; }
.size__h2 {
  font-size: Calc( 4.4rem * var(--font-mod) );
  line-height: 1.2;
  letter-spacing: -0.05em; }
.size__h3 {
  font-size: Calc( 3.6rem * var(--font-mod) );
  line-height: 1.2; }
.size__h4 {
  font-size: Calc( 2.8rem * var(--font-mod) );
  line-height: 1.2; }
.size__h5 {
  font-size: Calc( 2.4rem * var(--font-mod) );
  line-height: 1.2; }
.size__h6 {
  font-size: Calc( 2rem * var(--font-mod) );
  line-height: 1.2; }

.color__white {
  color: #fff; }
.color__black {
  color: #0A0A0A; }
.color__light-grey {
  color: #F5F5F5;
  color: var(--light-grey); }
.color__dark-grey {
  color: #5D5E65;
  color: var(--dark-grey); }
.color__primary {
  color: #1238FF;
  color: var(--primary); }
.color__secondary {
  color: #128DFF;
  color: var(--secondary); }
.color__secondary-light {
  color: #56AEFF;
  color: var(--secondary-300); }
.color__green {
  color: #35ED69; }
.color__red {
  color: #F20707; }
.color__yellow {
  color: #FFDD29; }

.rond {
  margin: 1rem;
  width: 5rem;
  height: 5rem;
  border-radius: 50%; }
  .rond__white {
    background-color: #fff; }
  .rond__black {
    background-color: #0A0A0A; }
  .rond__light-grey {
    background-color: #F5F5F5;
    background-color: var(--light-grey); }
  .rond__dark-grey {
    background-color: #5D5E65;
    background-color: var(--dark-grey); }
  .rond__primary {
    background-color: #1238FF;
    background-color: var(--primary); }
  .rond__secondary {
    background-color: #128DFF;
    background-color: var(--secondary); }
  .rond__secondary-light {
    background-color: #56AEFF;
    background-color: var(--secondary-300); }
  .rond__green {
    background-color: #35ED69; }
  .rond__red {
    background-color: #F20707; }
  .rond__yellow {
    background-color: #FFDD29; }

[name="Prix du véhicule"] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row; }
  [name="Prix du véhicule"] span:nth-of-type(2) {
    margin: 0 0 0 0.75rem; }

[name="Vehicle Price"],
[name="Retail Price"] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse; }
  [name="Vehicle Price"] span:nth-of-type(2),
  [name="Retail Price"] span:nth-of-type(2) {
    margin: 0; }

.form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  .form__col {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.5em; }

form .legal {
  margin: 0.5em 0;
  font-size: 1.5rem; }
  form .legal a {
    color: #1238FF !important;
    color: var(--primary) !important;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out; }
    form .legal a:hover {
      color: #0A0A0A !important; }

label,
.frm_primary_label {
  color: #0A0A0A;
  color: var(--black); }

input[type=text],
input[type=email],
input[type=number],
input[type=money],
input[type=tel],
textarea {
  width: 99.5%;
  max-width: 45rem;
  height: 4.8rem;
  padding: 0;
  margin: 0;
  border: 1px solid #0A0A0A;
  font-family: "D-din", Arial, sans-serif;
  font-family: var(--default);
  font-size: 1.6rem;
  text-indent: 1.2rem;
  border-radius: 0px; }
  input[type=text][aria-invalid=true],
  input[type=email][aria-invalid=true],
  input[type=number][aria-invalid=true],
  input[type=money][aria-invalid=true],
  input[type=tel][aria-invalid=true],
  textarea[aria-invalid=true] {
    border-color: #F20707; }

input[type=submit] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none; }

input[type=text],
input[type=email],
input[type=tel],
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none; }

input[type=number],
input[type=money] {
  -moz-appearance: textfield; }

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button,
input[type=money]::-webkit-inner-spin-button,
input[type=money]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  appearance: none; }

.size__small {
  font-size: 1.2rem;
  height: 2.8rem !important; }
.size__medium {
  font-size: Calc( 2rem * var(--font-mod) );
  height: 5.3rem !important; }
.size__large {
  font-size: Calc( 2rem * var(--font-mod) );
  font-weight: 700;
  line-height: 1.2;
  height: 5.8rem !important; }

.select {
  width: 100%;
  max-width: 21.5rem;
  position: relative;
  cursor: pointer; }
  .select__small {
    max-width: 13.7rem; }
    .select__small select, .select__small option {
      font-size: 1.4rem;
      height: 3rem; }
  .select__medium {
    max-width: 25rem; }
    .select__medium select, .select__medium option {
      font-size: Calc( 2rem * var(--font-mod) );
      height: 5rem; }
  .select__large {
    max-width: 28rem; }
    .select__large select, .select__large option {
      font-size: Calc( 2rem * var(--font-mod) );
      line-height: 1.2;
      height: 6rem; }
  .select__arrow {
    position: absolute;
    top: 25%;
    right: 1px;
    display: inline-block;
    height: 50%;
    background-color: #fff;
    width: 3.25rem;
    pointer-events: none; }
    .select__arrow::after {
      content: " ";
      position: absolute;
      top: 25%;
      left: 25%;
      width: 7.25px;
      height: 7.25px;
      -webkit-transform: rotate(135deg);
              transform: rotate(135deg);
      border: solid #1238FF;
      border: solid var(--primary);
      border-width: 2px 2px 0 0; }
    .select__arrow-disabled {
      background-color: #F5F5F5;
      background-color: var(--light-grey); }
      .select__arrow-disabled::after {
        content: " ";
        position: absolute;
        top: 25%;
        width: 7.25px;
        height: 7.25px;
        -webkit-transform: rotate(135deg);
                transform: rotate(135deg);
        border: solid #B5B5B5;
        border: solid var(--grey);
        border-width: 2px 2px 0 0; }

.range {
  position: relative; }
  .range i {
    position: absolute;
    height: 1.3rem;
    width: 1.3rem;
    right: 0;
    top: 12%; }
    .range i::after, .range i::before {
      position: absolute;
      content: " ";
      display: inline-block;
      cursor: pointer;
      width: 1.5rem;
      height: 2px;
      background-color: #0A0A0A;
      border: none;
      right: 0;
      top: 5px; }
    .range i::after {
      -webkit-transform: rotate(45deg);
              transform: rotate(45deg); }
    .range i::before {
      -webkit-transform: rotate(135deg);
              transform: rotate(135deg); }
  .range__values {
    background-color: transparent;
    width: 70%;
    height: 100%;
    max-height: 2rem;
    position: relative;
    margin: 0 auto;
    border: 1px solid #B5B5B5;
    border: 1px solid var(--grey);
    padding: 1rem 0;
    text-align: center; }
    .range__values::before {
      content: "";
      display: block;
      position: absolute; }
    .range__values::before {
      bottom: -21%;
      left: 47%;
      width: 15px;
      height: 15px;
      -webkit-transform: rotate(45deg);
              transform: rotate(45deg);
      border: solid #B5B5B5;
      border: solid var(--grey);
      background-color: #fff;
      border-width: 0 1px 1px 0; }
    .range__values input[type=number],
    .range__values input[type=money] {
      height: auto;
      border: 0;
      text-align: center;
      z-index: -1; }
      .range__values input[type=number]:active
      .range__values input[type=number]:focus, .range__values input[type=number]:focus-visible,
      .range__values input[type=money]:active
      .range__values input[type=number]:focus,
      .range__values input[type=money]:focus-visible, .range__values input[type=number]:active
      .range__values input[type=money]:focus,
      .range__values input[type=money]:active
      .range__values input[type=money]:focus {
        border: none;
        outline: none; }
  .range__position {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly; }
  .range__container {
    position: relative;
    width: 100%;
    height: 8rem; }
  .range__track {
    width: 100%;
    height: 1rem;
    background-color: #B5B5B5;
    background-color: var(--grey);
    position: absolute;
    margin: auto;
    top: 1px;
    bottom: 0; }
    .range__track-set {
      background-color: #1238FF;
      background-color: var(--primary); }

select {
  width: 100%;
  height: 5rem;
  padding: 0 0 0 1.2rem;
  font-size: "D-din", Arial, sans-serif;
  font-size: var(--default);
  font-family: "D-din", Arial, sans-serif;
  font-family: var(--default);
  cursor: pointer;
  background-color: #fff;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: #0A0A0A 1px solid;
  border-radius: 0px;
  color: #0A0A0A; }
  select[aria-invalid=true] {
    border-color: #F20707; }
  select:focus {
    outline: 2px solid #1238FF;
    outline: 2px solid var(--primary); }

option {
  font-size: "D-din", Arial, sans-serif;
  font-size: var(--default);
  height: 5rem; }

.round {
  border-radius: 50px; }

textarea {
  padding: 1rem 0;
  height: 11.2rem; }
  textarea[aria-invalid=true] {
    border-color: #F20707; }
  textarea::-webkit-input-placeholder {
    color: #0A0A0A; }
  textarea:-ms-input-placeholder {
    color: #0A0A0A; }
  textarea::-ms-input-placeholder {
    color: #0A0A0A; }
  textarea::placeholder {
    color: #0A0A0A; }
  textarea::-webkit-input-placeholder {
    color: #0A0A0A; }
  textarea:-ms-input-placeholder {
    color: #0A0A0A; }

input[type=text]:active
input[type=text]:focus, input[type=text]:focus-visible,
input[type=email]:active
input[type=text]:focus,
input[type=email]:focus-visible,
input[type=number]:active
input[type=text]:focus,
input[type=number]:focus-visible,
input[type=money]:active
input[type=text]:focus,
input[type=money]:focus-visible,
input[type=tel]:active
input[type=text]:focus,
input[type=tel]:focus-visible,
select:active
input[type=text]:focus,
select:focus-visible,
textarea:active
input[type=text]:focus,
textarea:focus-visible, input[type=text]:active
input[type=email]:focus,
input[type=email]:active
input[type=email]:focus,
input[type=number]:active
input[type=email]:focus,
input[type=money]:active
input[type=email]:focus,
input[type=tel]:active
input[type=email]:focus,
select:active
input[type=email]:focus,
textarea:active
input[type=email]:focus, input[type=text]:active
input[type=number]:focus,
input[type=email]:active
input[type=number]:focus,
input[type=number]:active
input[type=number]:focus,
input[type=money]:active
input[type=number]:focus,
input[type=tel]:active
input[type=number]:focus,
select:active
input[type=number]:focus,
textarea:active
input[type=number]:focus, input[type=text]:active
input[type=money]:focus,
input[type=email]:active
input[type=money]:focus,
input[type=number]:active
input[type=money]:focus,
input[type=money]:active
input[type=money]:focus,
input[type=tel]:active
input[type=money]:focus,
select:active
input[type=money]:focus,
textarea:active
input[type=money]:focus, input[type=text]:active
input[type=tel]:focus,
input[type=email]:active
input[type=tel]:focus,
input[type=number]:active
input[type=tel]:focus,
input[type=money]:active
input[type=tel]:focus,
input[type=tel]:active
input[type=tel]:focus,
select:active
input[type=tel]:focus,
textarea:active
input[type=tel]:focus, input[type=text]:active
select:focus,
input[type=email]:active
select:focus,
input[type=number]:active
select:focus,
input[type=money]:active
select:focus,
input[type=tel]:active
select:focus,
select:active
select:focus,
textarea:active
select:focus, input[type=text]:active
textarea:focus,
input[type=email]:active
textarea:focus,
input[type=number]:active
textarea:focus,
input[type=money]:active
textarea:focus,
input[type=tel]:active
textarea:focus,
select:active
textarea:focus,
textarea:active
textarea:focus {
  border: 1px solid #1238FF;
  border: 1px solid var(--primary);
  outline: 2px solid rgba(72, 95, 199, 0.25);
  outline: 2px solid var(--focus-color); }
input[type=text]::-webkit-input-placeholder,
input[type=email]::-webkit-input-placeholder,
input[type=number]::-webkit-input-placeholder,
input[type=money]::-webkit-input-placeholder,
input[type=tel]::-webkit-input-placeholder,
select::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #0A0A0A; }
input[type=text]:-ms-input-placeholder,
input[type=email]:-ms-input-placeholder,
input[type=number]:-ms-input-placeholder,
input[type=money]:-ms-input-placeholder,
input[type=tel]:-ms-input-placeholder,
select:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #0A0A0A; }
input[type=text]::-ms-input-placeholder,
input[type=email]::-ms-input-placeholder,
input[type=number]::-ms-input-placeholder,
input[type=money]::-ms-input-placeholder,
input[type=tel]::-ms-input-placeholder,
select::-ms-input-placeholder,
textarea::-ms-input-placeholder {
  color: #0A0A0A; }
input[type=text]::placeholder,
input[type=email]::placeholder,
input[type=number]::placeholder,
input[type=money]::placeholder,
input[type=tel]::placeholder,
select::placeholder,
textarea::placeholder {
  color: #0A0A0A; }
input[type=text]::-webkit-input-placeholder,
input[type=email]::-webkit-input-placeholder,
input[type=number]::-webkit-input-placeholder,
input[type=money]::-webkit-input-placeholder,
input[type=tel]::-webkit-input-placeholder,
select::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #0A0A0A; }
input[type=text]:-ms-input-placeholder,
input[type=email]:-ms-input-placeholder,
input[type=number]:-ms-input-placeholder,
input[type=money]:-ms-input-placeholder,
input[type=tel]:-ms-input-placeholder,
select:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #0A0A0A; }
input[type=text]:disabled,
input[type=email]:disabled,
input[type=number]:disabled,
input[type=money]:disabled,
input[type=tel]:disabled,
select:disabled,
textarea:disabled {
  border: 0px;
  background-color: #F5F5F5;
  background-color: var(--light-grey); }
  input[type=text]:disabled::-webkit-input-placeholder,
  input[type=email]:disabled::-webkit-input-placeholder,
  input[type=number]:disabled::-webkit-input-placeholder,
  input[type=money]:disabled::-webkit-input-placeholder,
  input[type=tel]:disabled::-webkit-input-placeholder,
  select:disabled::-webkit-input-placeholder,
  textarea:disabled::-webkit-input-placeholder {
    color: #0A0A0A;
    color: var(--black); }
  input[type=text]:disabled:-ms-input-placeholder,
  input[type=email]:disabled:-ms-input-placeholder,
  input[type=number]:disabled:-ms-input-placeholder,
  input[type=money]:disabled:-ms-input-placeholder,
  input[type=tel]:disabled:-ms-input-placeholder,
  select:disabled:-ms-input-placeholder,
  textarea:disabled:-ms-input-placeholder {
    color: #0A0A0A;
    color: var(--black); }
  input[type=text]:disabled::-ms-input-placeholder,
  input[type=email]:disabled::-ms-input-placeholder,
  input[type=number]:disabled::-ms-input-placeholder,
  input[type=money]:disabled::-ms-input-placeholder,
  input[type=tel]:disabled::-ms-input-placeholder,
  select:disabled::-ms-input-placeholder,
  textarea:disabled::-ms-input-placeholder {
    color: #0A0A0A;
    color: var(--black); }
  input[type=text]:disabled::placeholder,
  input[type=email]:disabled::placeholder,
  input[type=number]:disabled::placeholder,
  input[type=money]:disabled::placeholder,
  input[type=tel]:disabled::placeholder,
  select:disabled::placeholder,
  textarea:disabled::placeholder {
    color: #0A0A0A;
    color: var(--black); }
  input[type=text]:disabled::-webkit-input-placeholder,
  input[type=email]:disabled::-webkit-input-placeholder,
  input[type=number]:disabled::-webkit-input-placeholder,
  input[type=money]:disabled::-webkit-input-placeholder,
  input[type=tel]:disabled::-webkit-input-placeholder,
  select:disabled::-webkit-input-placeholder,
  textarea:disabled::-webkit-input-placeholder {
    color: #0A0A0A;
    color: var(--black); }
  input[type=text]:disabled:-ms-input-placeholder,
  input[type=email]:disabled:-ms-input-placeholder,
  input[type=number]:disabled:-ms-input-placeholder,
  input[type=money]:disabled:-ms-input-placeholder,
  input[type=tel]:disabled:-ms-input-placeholder,
  select:disabled:-ms-input-placeholder,
  textarea:disabled:-ms-input-placeholder {
    color: #B5B5B5;
    color: var(--grey); }

input[type="radio"] {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  border-radius: 0;
  background-color: #fff;
  margin: 0;
  font: inherit;
  color: #1238FF;
  color: var(--primary);
  width: 1.4rem;
  height: 1.4rem;
  border: 0.15rem solid #B5B5B5;
  border: 0.15rem solid var(--grey);
  border-radius: 50%;
  -webkit-transform: translateY(-0.075rem);
          transform: translateY(-0.075rem);
  display: grid;
  place-content: center; }
  input[type="radio"]::before {
    content: "";
    width: 0.8rem;
    height: 0.8rem;
    border-radius: 50%;
    -webkit-transform: scale(0);
            transform: scale(0);
    -webkit-transition: 120ms -webkit-transform ease-in-out;
    transition: 120ms -webkit-transform ease-in-out;
    transition: 120ms transform ease-in-out;
    transition: 120ms transform ease-in-out, 120ms -webkit-transform ease-in-out;
    background-color: #1238FF;
    background-color: var(--primary); }
  input[type="radio"]:checked {
    border: 0.15rem solid #1238FF;
    border: 0.15rem solid var(--primary); }
  input[type="radio"]:checked::before {
    -webkit-transform: scale(1);
            transform: scale(1); }
  input[type="radio"]:hover {
    border: 0.15rem solid #1238FF;
    border: 0.15rem solid var(--primary); }

input[type="checkbox"] {
  position: relative;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background-color: #fff;
  margin: 0;
  cursor: pointer;
  border-radius: 0px;
  font: inherit;
  color: #1238FF;
  color: var(--primary);
  width: 1.4rem;
  height: 1.4rem;
  border: 0.15rem solid #B5B5B5;
  border: 0.15rem solid var(--grey);
  -webkit-transform: translateY(-0.075rem);
          transform: translateY(-0.075rem);
  display: grid;
  place-content: center; }
  input[type="checkbox"]::before {
    content: " ";
    position: absolute;
    width: 5px;
    height: 7.5px;
    left: 33%;
    bottom: 4px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    -webkit-transform: scale(0);
            transform: scale(0);
    -webkit-transition: 120ms -webkit-transform ease-in-out;
    transition: 120ms -webkit-transform ease-in-out;
    transition: 120ms transform ease-in-out;
    transition: 120ms transform ease-in-out, 120ms -webkit-transform ease-in-out; }
    @media only screen and (max-width: 56.25em) {
      input[type="checkbox"]::before {
        bottom: 3px;
        left: 32%; } }
  input[type="checkbox"]:checked {
    border: 0.15rem solid #1238FF;
    border: 0.15rem solid var(--primary);
    background-color: #1238FF;
    background-color: var(--primary); }
  input[type="checkbox"]:checked::before {
    -webkit-transform: rotate(45deg) scale(1);
    transform: rotate(45deg) scale(1); }
  input[type="checkbox"]:hover {
    border: 0.15rem solid #1238FF;
    border: 0.15rem solid var(--primary); }

input[type="range"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  outline: none;
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  background-color: transparent;
  pointer-events: none;
  z-index: 10; }

input[type="range"]::-webkit-slider-runnable-track {
  -webkit-appearance: none;
  -moz-appearance: none;
  height: 1.5rem; }

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 1.5em;
  width: 1.5em;
  background-color: #1238FF;
  background-color: var(--primary);
  cursor: pointer;
  margin-top: -1%;
  pointer-events: auto;
  border-radius: 50%; }

input[type="range"]::-moz-range-thumb {
  -moz-appearance: none;
  height: 1.5em;
  width: 1.5em;
  background-color: #1238FF;
  background-color: var(--primary);
  cursor: pointer;
  margin-top: -1%;
  pointer-events: auto;
  border-radius: 50%;
  border: 0; }

input[type="range"]:active::-webkit-slider-thumb,
input[type="range"]:hover::-webkit-slider-thumb {
  background-color: #fff;
  outline: 2px solid #1238FF;
  outline: 2px solid var(--primary);
  outline-offset: -2px; }

input[type="range"]:active::-moz-range-thumb,
input[type="range"]:hover::-moz-range-thumb {
  background-color: #fff;
  outline: 2px solid #1238FF;
  outline: 2px solid var(--primary);
  outline-offset: -2px; }

fieldset {
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
      flex-direction: column;
  justify-items: center;
  max-width: 75rem;
  width: 100%;
  margin: 0px auto; }

.color__blanc, .color__white {
  background-color: #fff !important; }
.color__noir, .color__black {
  background-color: #0A0A0A !important; }
.color__bleu, .color__blue {
  background-color: blue !important; }
.color__argent, .color__silver {
  background-color: silver !important; }
.color__rouge, .color__red {
  background-color: #F20707 !important; }
.color__gris, .color__grey {
  background-color: grey !important; }
.color__brun, .color__brown {
  background-color: #964B00 !important; }
.color__orange {
  background-color: orange !important; }
.color__jaune, .color__yellow {
  background-color: #FFDD29 !important; }
.color__autres, .color__others {
  background: conic-gradient(from 90deg, red 0%, #ff9a00 10%, #d0de21 20%, #4fdc4a 30%, #3fdad8 40%, #2fc9e2 50%, #1c7fee 60%, #5f15f2 70%, #ba0cf8 80%, #fb07d9 90%, red 100%); }

.image-banner img {
  aspect-ratio: 4.9;
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center; }

.banner {
  background: repeating-linear-gradient(135deg, #1238FF 0rem, #1238FF 0.2rem, #fff 0.2rem, #fff 1.2rem);
  background: repeating-linear-gradient(135deg, var(--primary) 0rem, var(--primary) 0.2rem, rgba(255, 255, 255, 0) 0.2rem, rgba(255, 255, 255, 0) 1.2rem);
  padding: 5rem 0; }
  @media only screen and (max-width: 56.25em) {
    .banner {
      padding: 4rem 0; } }
  .banner-none {
    display: none; }
  .banner__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin: 0 auto;
    width: 95%;
    max-width: 156rem; }
    @media only screen and (max-width: 56.25em) {
      .banner__container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        gap: 2rem; } }
    .banner__container-none {
      display: none; }
  .banner__bg {
    display: none; }
  .banner__content {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: 0.2rem 1rem;
    background-color: #1238FF;
    background-color: var(--primary); }
    @media only screen and (max-width: 37.5em) {
      .banner__content {
        padding: 0.2rem 0.5rem; } }
    .banner__content h1, .banner__content p {
      color: #fff; }
      @media only screen and (max-width: 56.25em) {
        .banner__content h1, .banner__content p {
          font-size: Calc( 4.4rem * var(--font-mod) ); } }
      @media only screen and (max-width: 37.5em) {
        .banner__content h1, .banner__content p {
          font-size: Calc( 3.6rem * var(--font-mod) ); } }
    .banner__content p {
      font-size: Calc( 5.4rem * var(--font-mod) );
      font-weight: 700; }
      @media only screen and (max-width: 56.25em) {
        .banner__content p {
          font-size: Calc( 4.4rem * var(--font-mod) ); } }
      @media only screen and (max-width: 37.5em) {
        .banner__content p {
          font-size: Calc( 3.6rem * var(--font-mod) ); } }
    .banner__content-white {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      background-color: #fff; }
      .banner__content-white h3 {
        color: #1238FF;
        color: var(--primary); }
        @media only screen and (max-width: 56.25em) {
          .banner__content-white h3 {
            font-size: Calc( 2.8rem * var(--font-mod) ); } }

.coordinates {
  background-color: #0A0A0A;
  color: #fff;
  padding: 3rem 0; }
  @media only screen and (max-width: 56.25em) {
    .coordinates {
      display: none; } }
  .coordinates__mobile {
    display: none; }
    .coordinates__mobile-open {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      width: 100%;
      position: fixed;
      bottom: 0;
      z-index: 102; }
  .coordinates__container {
    width: 95%;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 156rem;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between; }
    @media only screen and (max-width: 37.5em) {
      .coordinates__container {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column; } }
    .coordinates__container a {
      color: #fff; }
      .coordinates__container a:hover {
        color: #1238FF;
        color: var(--primary); }
  .coordinates__icone-gps {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0.5rem 0; }
    @media only screen and (max-width: 56.25em) {
      .coordinates__icone-gps {
        -webkit-box-flex: 0;
            -ms-flex: 0 0 50%;
                flex: 0 0 50%; } }
    @media only screen and (max-width: 37.5em) {
      .coordinates__icone-gps {
        -webkit-box-flex: unset;
            -ms-flex: unset;
                flex: unset; } }
    .coordinates__icone-gps::before {
      content: "";
      width: 20px;
      height: 20px;
      padding: 0.5rem;
      margin: 0 6px 0 0;
      background: var(--gps-img) no-repeat;
      -webkit-filter: invert(12%) sepia(96%) saturate(6736%) hue-rotate(239deg) brightness(101%) contrast(101%);
              filter: invert(12%) sepia(96%) saturate(6736%) hue-rotate(239deg) brightness(101%) contrast(101%);
      -webkit-filter: var(--primary-filter);
              filter: var(--primary-filter); }
  @media only screen and (max-width: 56.25em) {
    .coordinates h6 {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column; } }
  @media only screen and (max-width: 56.25em) {
    .coordinates h6 span:nth-of-type(2) {
      display: none; } }
  .coordinates__icone-phone {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    @media only screen and (max-width: 56.25em) {
      .coordinates__icone-phone {
        -webkit-box-flex: 0;
            -ms-flex: 0 0 50%;
                flex: 0 0 50%;
        -webkit-box-pack: end;
            -ms-flex-pack: end;
                justify-content: end; } }
    @media only screen and (max-width: 37.5em) {
      .coordinates__icone-phone {
        -webkit-box-flex: unset;
            -ms-flex: unset;
                flex: unset;
        -webkit-box-pack: unset;
            -ms-flex-pack: unset;
                justify-content: unset; } }
    .coordinates__icone-phone::before {
      content: "";
      width: 20px;
      height: 20px;
      padding: 0.5rem;
      margin: 0 6px 0 0;
      background: var(--phone-img) no-repeat;
      -webkit-filter: invert(12%) sepia(96%) saturate(6736%) hue-rotate(239deg) brightness(101%) contrast(101%);
              filter: invert(12%) sepia(96%) saturate(6736%) hue-rotate(239deg) brightness(101%) contrast(101%);
      -webkit-filter: var(--primary-filter);
              filter: var(--primary-filter); }

.footer {
  background: radial-gradient(circle, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.6) 100%), var(--texture-img);
  background-position: 50% 10%;
  background-size: cover;
  color: #fff; }
  .footer__container {
    max-width: 131.5rem;
    width: 95%;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }
  .footer__info-container {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between; }
    @media only screen and (max-width: 56.25em) {
      .footer__info-container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        display: grid;
        grid-template-areas: "area1 area3" "area2 area2"; } }
    @media only screen and (max-width: 37.5em) {
      .footer__info-container {
        grid-template-areas: "area1 area1" "area2 area2"; } }
  .footer__info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 40%;
            flex: 0 0 40%;
    padding: 15rem 0 6.6rem; }
    @media only screen and (max-width: 56.25em) {
      .footer__info {
        width: 100%;
        -webkit-box-flex: 0;
            -ms-flex: none;
                flex: none;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        padding: 3rem 2rem; } }
    @media only screen and (max-width: 37.5em) {
      .footer__info {
        width: 85%;
        margin: 0 auto;
        padding: 3rem 2rem; } }
  @media only screen and (max-width: 56.25em) {
    .footer__info.nosocial {
      margin: 0;
      height: inherit; } }
  .footer__media {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0.5rem 0 0; }
    .footer__media a {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      margin: 0 0 2rem; }
      @media only screen and (max-width: 75em) {
        .footer__media a {
          margin: 0 0 2.15rem; } }
      @media only screen and (max-width: 56.25em) {
        .footer__media a {
          margin: 0 0 2.4rem; } }
      .footer__media a:last-of-type {
        margin: 0; }
      .footer__media a img {
        -webkit-filter: invert(0%) sepia(93%) saturate(28%) hue-rotate(110deg) brightness(90%) contrast(106%);
                filter: invert(0%) sepia(93%) saturate(28%) hue-rotate(110deg) brightness(90%) contrast(106%);
        -webkit-filter: var(--white-filter);
                filter: var(--white-filter); }
      .footer__media a:hover img {
        -webkit-filter: invert(12%) sepia(96%) saturate(6736%) hue-rotate(239deg) brightness(101%) contrast(101%);
                filter: invert(12%) sepia(96%) saturate(6736%) hue-rotate(239deg) brightness(101%) contrast(101%);
        -webkit-filter: var(--primary-filter);
                filter: var(--primary-filter); }
  .footer__contact {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 75%;
    margin: 0 auto; }
    .footer__contact h6 {
      margin: 0 0 1rem;
      font-weight: bold; }
    .footer__contact a {
      color: #fff;
      line-height: 1.3; }
      @media only screen and (max-width: 75em) {
        .footer__contact a {
          font-size: Calc( 2rem * var(--font-mod) ); } }
      .footer__contact a:hover {
        color: #1238FF;
        color: var(--primary); }
  .footer__contact.nosocial {
    margin: 0; }
  .footer__adresse {
    margin: 0 0 0.9rem; }
  .footer__phone {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 1rem 0; }
    .footer__phone a {
      width: 100%;
      font-weight: 700;
      color: #fff;
      color: var(--white);
      margin: 0 0 0.9rem; }
      @media only screen and (max-width: 56.25em) {
        .footer__phone a {
          margin: 0 0 1.25rem; } }
      @media only screen and (max-width: 37.5em) {
        .footer__phone a {
          margin: 0; } }
      .footer__phone a:hover {
        color: #1238FF;
        color: var(--primary); }
  .footer__email a {
    font-weight: 700;
    color: #fff; }
    .footer__email a:hover {
      color: #1238FF;
      color: var(--primary); }
  .footer__partenaires {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 40%;
            flex: 0 0 40%;
    padding: 15rem 0 1rem; }
    @media only screen and (max-width: 56.25em) {
      .footer__partenaires {
        padding: 1rem 2rem 1rem; } }
    .footer__partenaires h6 {
      margin: 0 0 1rem;
      font-weight: bold;
      color: #B5B5B5;
      color: var(--grey); }
  .footer__grid-area-1 {
    grid-area: area1; }
  .footer__grid-area-2 {
    grid-area: area2; }
  .footer__grid-area-3 {
    grid-area: area3; }
  .footer__display {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 75%;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start; }
    @media only screen and (min-width: 105em) {
      .footer__display {
        width: 80%; } }
    @media only screen and (max-width: 75em) {
      .footer__display {
        width: 90%; } }
    .footer__display a {
      margin: 0 2.5rem 1.5rem 0; }
      @media only screen and (max-width: 37.5em) {
        .footer__display a {
          margin: 0 3.5rem 2.5rem 0; } }
      .footer__display a img {
        min-height: 6.8rem;
        max-height: 7rem;
        max-width: 23rem;
        -o-object-fit: contain;
           object-fit: contain; }
  .footer__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    text-align: end;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 19.7%;
            flex: 0 0 19.7%;
    text-transform: uppercase;
    padding: 15rem 1px 6.6rem; }
    .footer__nav li {
      position: relative;
      padding: 0 0 3rem 0; }
    .footer__nav a {
      font-size: Calc( 2rem * var(--font-mod) );
      color: #fff; }
      .footer__nav a::after {
        content: "";
        position: absolute;
        border: solid #1238FF;
        border: solid var(--primary);
        border-width: 0 0 1px 0;
        right: 0;
        bottom: 25%;
        width: 40px; }
      .footer__nav a:hover {
        color: #1238FF;
        color: var(--primary); }
    .footer__nav li:last-child a::after {
      display: none; }
    @media only screen and (min-width: 105em) {
      .footer__nav {
        padding: 15rem 4px 6.6rem 0; } }
    @media only screen and (max-width: 75em) {
      .footer__nav {
        padding: 15rem 1px 6.6rem 0; } }
    @media only screen and (max-width: 56.25em) {
      .footer__nav {
        padding: 3rem 2rem 0 5rem; } }
    @media only screen and (max-width: 37.5em) {
      .footer__nav {
        display: none; } }
  .footer__bottom {
    width: 100%;
    padding: 3rem 0 4.5rem;
    text-align: center; }
    @media only screen and (max-width: 56.25em) {
      .footer__bottom {
        width: unset; } }
    @media only screen and (max-width: 37.5em) {
      .footer__bottom {
        padding: 3rem 0 0; } }
    @media only screen and (max-width: 37.5em) {
      .footer__bottom br {
        display: none; } }
    @media only screen and (max-width: 37.5em) {
      .footer__bottom p {
        padding: 0 3rem 3rem; } }
    .footer__bottom a {
      color: #fff; }
      .footer__bottom a:hover {
        color: #1238FF;
        color: var(--primary); }

.header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 10; }
  @media only screen and (max-width: 56.25em) {
    .header {
      height: auto;
      min-height: auto; } }
  .header__logo {
    width: auto;
    max-height: 8rem; }

.heroes-banner {
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  /**
   * @brief   100% la hauteur du viewport 
   *             - hauteur du menu 
   *             - hauteur de la bande qui doit être en bas de page
   * @todo    À déclarer en variable
   */
  height: calc(100vh - 10.5rem - 10rem);
  min-height: 58rem;
  max-height: 90rem;
  /* *** */ }
  @media only screen and (max-width: 37.5em) {
    .heroes-banner {
      height: auto;
      min-height: none;
      max-height: none; } }
  .heroes-banner__linear {
    background: radial-gradient(circle, rgba(255, 255, 255, 0) 0%, black 100%);
    width: 100%;
    height: 100%; }
    @media only screen and (max-width: 75em) {
      .heroes-banner__linear {
        background: none;
        display: none; } }
  .heroes-banner__bg {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    z-index: -1;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 100%;
    width: 100%;
    position: relative;
    background-image: var(--heroes-img);
    background-position: 50% 33%;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 0; }
    @media only screen and (max-width: 75em) {
      .heroes-banner__bg {
        display: block; } }
  .heroes-banner__center {
    position: absolute;
    left: 0;
    right: 0;
    z-index: 0;
    margin: 0 auto;
    -ms-flex-item-align: center;
        align-self: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    max-width: 156rem;
    width: 95%;
    z-index: 1; }
    @media only screen and (max-width: 75em) {
      .heroes-banner__center {
        position: static;
        padding: 0 2.5%;
        height: 100%;
        background: radial-gradient(circle, rgba(255, 255, 255, 0) 0%, black 100%); }
        .heroes-banner__center p {
          line-height: 1.1; } }
    @media only screen and (max-width: 37.5em) {
      .heroes-banner__center {
        padding: 6rem 2.5%;
        height: 100%;
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
            -ms-flex-direction: column-reverse;
                flex-direction: column-reverse; } }
    .heroes-banner__center p, .heroes-banner__center h1 {
      text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.5); }
  .heroes-banner__form {
    width: 100%;
    max-width: 45rem; }
    @media only screen and (max-width: 75em) {
      .heroes-banner__form {
        margin: 0 2em 0 0; } }
    @media only screen and (max-width: 56.25em) {
      .heroes-banner__form {
        margin: 0 5% 0 0; } }
    @media only screen and (max-width: 37.5em) {
      .heroes-banner__form {
        margin: 0 auto; } }
  .heroes-banner__form-container {
    background-color: #fff;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 4.5rem 0; }
    @media only screen and (max-width: 37.5em) {
      .heroes-banner__form-container {
        padding: 2.5rem 0; } }
  .heroes-banner__form-content {
    width: 75%; }
    @media only screen and (max-width: 56.25em) {
      .heroes-banner__form-content {
        width: 85%; } }
    .heroes-banner__form-content h4 {
      margin: 0 0 3rem;
      width: -webkit-max-content;
      width: -moz-max-content;
      width: max-content; }
    .heroes-banner__form-content .select {
      max-width: 30rem; }
      @media only screen and (max-width: 56.25em) {
        .heroes-banner__form-content .select {
          max-width: 37rem; } }
    .heroes-banner__form-content select {
      margin: 1rem 0;
      padding-block: 1rem; }
    .heroes-banner__form-content input[type=text] {
      margin: 1rem 0; }
      @media only screen and (max-width: 75em) {
        .heroes-banner__form-content input[type=text] {
          max-width: inherit; } }
  .heroes-banner__form-budget {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    .heroes-banner__form-budget input[type=text] {
      width: 25%; }
      @media only screen and (max-width: 56.25em) {
        .heroes-banner__form-budget input[type=text] {
          width: 40%; } }
    .heroes-banner__form-budget input:first-of-type {
      margin: 1rem 1rem 1rem 0; }
  .heroes-banner__form-line {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    background: repeating-linear-gradient(135deg, #1238FF 0, #1238FF 0.2rem, rgba(255, 255, 255, 0) 0.2rem, rgba(255, 255, 255, 0) 1.2rem);
    background: repeating-linear-gradient(135deg, var(--primary) 0, var(--primary) 0.2rem, rgba(255, 255, 255, 0) 0.2rem, rgba(255, 255, 255, 0) 1.2rem); }
    .heroes-banner__form-line .btn {
      padding: 1.4rem 3.2rem;
      font-weight: 700;
      margin: 0; }
      .heroes-banner__form-line .btn:hover {
        color: #fff;
        background-color: #0A0A0A; }
  .heroes-banner__vehicle-container {
    background-color: #fff;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 4.5rem 0 0; }
    @media only screen and (max-width: 37.5em) {
      .heroes-banner__vehicle-container {
        padding: 2.5rem 0 0; } }
    .heroes-banner__vehicle-container h4 {
      padding: 0 0 0 5rem; }
      @media only screen and (max-width: 56.25em) {
        .heroes-banner__vehicle-container h4 {
          padding: 0 0 0 3rem; } }
      .heroes-banner__vehicle-container h4:after {
        margin: 0 0 0 5rem; }
        @media only screen and (max-width: 56.25em) {
          .heroes-banner__vehicle-container h4:after {
            margin: 0 0 0 3rem; } }
  .heroes-banner .vehicle-type__cars-container {
    margin: 4.5rem auto;
    width: 95%;
    row-gap: 0; }
    .heroes-banner .vehicle-type__cars-container svg {
      margin: 0 0 1rem; }
  .heroes-banner__type {
    margin: 0 1%;
    padding: 1rem;
    width: 20%; }
    .heroes-banner__type:hover path {
      -webkit-filter: invert(12%) sepia(96%) saturate(6736%) hue-rotate(239deg) brightness(101%) contrast(101%);
              filter: invert(12%) sepia(96%) saturate(6736%) hue-rotate(239deg) brightness(101%) contrast(101%);
      -webkit-filter: var(--primary-filter);
              filter: var(--primary-filter); }
    .heroes-banner__type a {
      color: #1238FF;
      color: var(--primary);
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: end;
          -ms-flex-pack: end;
              justify-content: flex-end;
      height: 6rem;
      white-space: nowrap; }
    .heroes-banner__type svg {
      width: 8rem;
      height: auto; }
      .heroes-banner__type svg.compact {
        width: 5rem; }
      .heroes-banner__type svg.loisir {
        width: 12rem; }
  .heroes-banner__category-container {
    background-color: #fff;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 2.5rem 4rem; }
    .heroes-banner__category-container h4 {
      margin: 0 0 3rem; }
  .heroes-banner__category {
    width: 60%; }
    .heroes-banner__category label {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      padding: 0.5rem 0;
      font-weight: 400;
      color: #0A0A0A; }
      .heroes-banner__category label input {
        border: 1px solid #1238FF;
        border: 1px solid var(--primary); }
      .heroes-banner__category label span {
        margin: 0 0 0 1.5rem; }
  .heroes-banner__keywords-container {
    width: 80%;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 2.5rem 0; }
    @media only screen and (max-width: 56.25em) {
      .heroes-banner__keywords-container {
        width: 85%; } }
    .heroes-banner__keywords-container h4 {
      margin: 0 0 5rem; }
    .heroes-banner__keywords-container input {
      max-width: 31.7rem; }
  .heroes-banner__keywords {
    background-color: #fff; }
  @media only screen and (max-width: 56.25em) {
    .heroes-banner__content-center {
      max-width: 45rem;
      width: 100%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-align: start;
          -ms-flex-align: start;
              align-items: flex-start; } }
  .heroes-banner__content {
    max-width: 65rem;
    width: 100%;
    word-break: break-word; }
    @media only screen and (max-width: 56.25em) {
      .heroes-banner__content {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center; } }
    @media only screen and (max-width: 37.5em) {
      .heroes-banner__content {
        margin: 0 0 4rem; } }
    .heroes-banner__content p {
      color: #fff;
      margin: 0 0 2rem;
      font-size: Calc( 4.4rem * var(--font-mod) );
      font-weight: 700;
      letter-spacing: -0.05em; }
      @media only screen and (max-width: 75em) {
        .heroes-banner__content p {
          font-size: Calc( 3.6rem * var(--font-mod) ); } }
      @media only screen and (max-width: 56.25em) {
        .heroes-banner__content p {
          width: 90%; } }
    .heroes-banner__content h1 {
      font-size: Calc( 5.4rem * var(--font-mod) );
      color: #B5B5B5;
      color: var(--grey);
      font-weight: 700;
      margin: 0 0 2rem;
      line-height: 1.1; }
      @media only screen and (max-width: 37.5em) {
        .heroes-banner__content h1 {
          margin: 0; } }
    .heroes-banner__content a {
      color: #fff; }
    .heroes-banner__content-center > a:nth-child(odd) {
      background-color: #fff;
      color: #0A0A0A;
      margin: 0 0.75rem 0 0; }
      .heroes-banner__content-center > a:nth-child(odd):hover {
        -webkit-transition: all .6s ease-in-out;
        transition: all .6s ease-in-out;
        background-color: #1238FF;
        background-color: var(--primary);
        color: #fff; }
    .heroes-banner__content-center > a:nth-child(even):hover {
      -webkit-transition: all .6s ease-in-out;
      transition: all .6s ease-in-out;
      background-color: #0A0A0A; }
    .heroes-banner__content .btn {
      margin: 2rem 0 0;
      padding: 1.4rem 3.2rem;
      font-weight: 700; }
    .heroes-banner__content .btn__medium {
      padding: 0 2.3rem;
      height: 5rem; }

.menu {
  background-color: #fff;
  width: 100%;
  z-index: 1000; }

.menu-container {
  width: 95%;
  max-width: 156rem;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }
  @media only screen and (max-width: 64em) {
    .menu-container {
      margin: 1.5rem auto;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center; } }
  .menu-container__show {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end; }
    .menu-container__show .main-nav__logo-box {
      z-index: -1 !important; }
  .menu-container .main-nav {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    @media only screen and (max-width: 64em) {
      .menu-container .main-nav {
        display: none;
        overflow: scroll; }
        .menu-container .main-nav__show {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          position: fixed;
          background-color: #fff;
          width: 100%;
          height: 100%;
          top: 0;
          left: 0;
          -webkit-box-pack: center;
              -ms-flex-pack: center;
                  justify-content: center;
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
              -ms-flex-direction: column;
                  flex-direction: column;
          z-index: 1; } }
    .menu-container .main-nav__wrapper {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      width: 100%; }
      @media only screen and (max-width: 64em) {
        .menu-container .main-nav__wrapper {
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
              -ms-flex-direction: column;
                  flex-direction: column;
          -webkit-box-align: center;
              -ms-flex-align: center;
                  align-items: center;
          -webkit-box-pack: start;
              -ms-flex-pack: start;
                  justify-content: flex-start;
          height: 50vh;
          margin: auto 0; } }
    .menu-container .main-nav__logo-box {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 15.5%;
              flex: 0 0 15.5%;
      margin: 0 5rem 0 0;
      z-index: 101;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex; }
      @media only screen and (max-width: 75em) {
        .menu-container .main-nav__logo-box {
          margin: 0 1.5rem 0 0;
          -webkit-box-flex: unset;
              -ms-flex: unset;
                  flex: unset; } }
      @media only screen and (max-width: 37.5em) {
        .menu-container .main-nav__logo-box {
          -webkit-box-flex: 0;
              -ms-flex: 0 0 50%;
                  flex: 0 0 50%; } }
      .menu-container .main-nav__logo-box a {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center; }
      .menu-container .main-nav__logo-box .header__logo {
        -o-object-fit: contain;
           object-fit: contain;
        height: 6rem;
        max-width: 100%; }
        @media only screen and (max-width: 75em) {
          .menu-container .main-nav__logo-box .header__logo {
            height: 5rem; } }
    .menu-container .main-nav__content {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      z-index: 100; }
      @media only screen and (max-width: 64em) {
        .menu-container .main-nav__content {
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
              -ms-flex-direction: column;
                  flex-direction: column;
          -webkit-box-align: center;
              -ms-flex-align: center;
                  align-items: center;
          margin: 0 0 1.8rem;
          min-height: -webkit-max-content;
          min-height: -moz-max-content;
          min-height: max-content; } }
    .menu-container .main-nav__items {
      cursor: pointer;
      min-height: 10.5rem;
      height: 100%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center; }
      @media only screen and (max-width: 64em) {
        .menu-container .main-nav__items {
          margin: 0 0 1rem;
          display: block;
          text-align: center;
          min-height: inherit;
          margin: 0 0 4rem 0; }
          .menu-container .main-nav__items:active, .menu-container .main-nav__items:focus, .menu-container .main-nav__items:hover {
            border-bottom: none !important;
            background-color: transparent !important; } }
      @media only screen and (max-width: 37.5em) {
        .menu-container .main-nav__items {
          margin: 0 0 2rem 0; } }
      .menu-container .main-nav__items:last-of-type {
        margin: 0; }
      .menu-container .main-nav__items:active, .menu-container .main-nav__items:focus, .menu-container .main-nav__items:hover {
        -webkit-box-shadow: 0 -5px 0 #1238FF inset;
                box-shadow: 0 -5px 0 #1238FF inset;
        -webkit-box-shadow: 0 -5px 0 var(--primary) inset;
                box-shadow: 0 -5px 0 var(--primary) inset;
        background-color: #F5F5F5;
        background-color: var(--light-grey); }
        @media only screen and (max-width: 64em) {
          .menu-container .main-nav__items:active:active, .menu-container .main-nav__items:active:focus, .menu-container .main-nav__items:active:hover, .menu-container .main-nav__items:focus:active, .menu-container .main-nav__items:focus:focus, .menu-container .main-nav__items:focus:hover, .menu-container .main-nav__items:hover:active, .menu-container .main-nav__items:hover:focus, .menu-container .main-nav__items:hover:hover {
            -webkit-box-shadow: none;
                    box-shadow: none;
            background-color: none; } }
      .menu-container .main-nav__items a {
        position: relative;
        text-transform: uppercase;
        color: #0A0A0A;
        font-size: Calc( 2rem * var(--font-mod) );
        font-weight: 400;
        padding: 0 2.5rem;
        height: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        text-align: center; }
        @media only screen and (max-width: 75em) {
          .menu-container .main-nav__items a {
            font-size: Calc( 1.8rem * var(--font-mod) );
            padding: 0 1.5rem; } }
        @media only screen and (max-width: 64em) {
          .menu-container .main-nav__items a {
            padding: 0;
            font-size: Calc( 2.6rem * var(--font-mod) );
            position: inherit;
            height: auto; } }
      .menu-container .main-nav__items-bigdrop a, .menu-container .main-nav__items-smalldrop a {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        padding: 0 4.5rem 0 2.5rem; }
        @media only screen and (max-width: 75em) {
          .menu-container .main-nav__items-bigdrop a, .menu-container .main-nav__items-smalldrop a {
            padding: 0 3rem 0 1.5rem; } }
        @media only screen and (max-width: 64em) {
          .menu-container .main-nav__items-bigdrop a, .menu-container .main-nav__items-smalldrop a {
            padding: 0;
            -webkit-box-pack: center;
                -ms-flex-pack: center;
                    justify-content: center;
            -webkit-box-align: center;
                -ms-flex-align: center;
                    align-items: center; } }
        .menu-container .main-nav__items-bigdrop a::after, .menu-container .main-nav__items-smalldrop a::after {
          content: "";
          display: block;
          position: absolute;
          top: 44%;
          right: 2.5rem;
          width: 8px;
          height: 8px;
          -webkit-transition: 0.3s;
          transition: 0.3s;
          -webkit-transform: rotate(135deg);
                  transform: rotate(135deg);
          border: solid #1238FF;
          border: solid var(--primary);
          border-width: 2px 2px 0 0;
          -webkit-transition: .25s ease;
          transition: .25s ease; }
          @media only screen and (max-width: 90em) {
            .menu-container .main-nav__items-bigdrop a::after, .menu-container .main-nav__items-smalldrop a::after {
              top: 42%; } }
          @media only screen and (max-width: 75em) {
            .menu-container .main-nav__items-bigdrop a::after, .menu-container .main-nav__items-smalldrop a::after {
              top: 44%;
              right: 1.25rem;
              width: 6px;
              height: 6px; } }
          @media only screen and (max-width: 64em) {
            .menu-container .main-nav__items-bigdrop a::after, .menu-container .main-nav__items-smalldrop a::after {
              -webkit-transform: rotate(45deg);
                      transform: rotate(45deg);
              right: inherit;
              top: inherit;
              position: inherit;
              margin: 0 0 0 1rem; } }
      .menu-container .main-nav__items-bigdrop__open a, .menu-container .main-nav__items-smalldrop__open a {
        pointer-events: all !important; }
        .menu-container .main-nav__items-bigdrop__open a::after, .menu-container .main-nav__items-smalldrop__open a::after {
          -webkit-transform: rotate(135deg);
                  transform: rotate(135deg);
          -webkit-transition: .25s ease;
          transition: .25s ease; }
      .menu-container .main-nav__items-smalldrop {
        position: relative; }
        .menu-container .main-nav__items-smalldrop:hover .sub-menu {
          max-height: 250px;
          padding: 2rem 0 1rem; }
          @media only screen and (max-width: 64em) {
            .menu-container .main-nav__items-smalldrop:hover .sub-menu {
              width: auto; } }
        @media only screen and (max-width: 64em) {
          .menu-container .main-nav__items-smalldrop:hover .sub-menu {
            max-height: 0;
            padding: 0; } }
        @media only screen and (max-width: 64em) {
          .menu-container .main-nav__items-smalldrop > a {
            pointer-events: none; } }
        .menu-container .main-nav__items-smalldrop__open a:after {
          -webkit-transform: rotate(135deg);
                  transform: rotate(135deg);
          top: 20%; }
      @media only screen and (max-width: 64em) {
        .menu-container .main-nav__items-bigdrop a::after {
          display: none; } }
    .menu-container .main-nav__social {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center; }
      .menu-container .main-nav__social a:first-of-type {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        margin: 0 0.75rem; }
        @media only screen and (max-width: 64em) {
          .menu-container .main-nav__social a:first-of-type {
            margin: 0 1.75rem; } }
        .menu-container .main-nav__social a:first-of-type img {
          -webkit-transform: scale(1);
                  transform: scale(1);
          width: 100%;
          height: auto; }
          .menu-container .main-nav__social a:first-of-type img:hover {
            -webkit-transform: scale(1.1);
                    transform: scale(1.1); }
          .menu-container .main-nav__social a:first-of-type img:hover, .menu-container .main-nav__social a:first-of-type img:active {
            -webkit-filter: invert(12%) sepia(96%) saturate(6736%) hue-rotate(239deg) brightness(101%) contrast(101%);
                    filter: invert(12%) sepia(96%) saturate(6736%) hue-rotate(239deg) brightness(101%) contrast(101%);
            -webkit-filter: var(--primary-filter);
                    filter: var(--primary-filter); }
      @media only screen and (max-width: 64em) {
        .menu-container .main-nav__social {
          padding: 2rem 0 20%; } }
      @media only screen and (max-width: 37.5em) {
        .menu-container .main-nav__social {
          padding: 2rem 0 20rem; } }
      .menu-container .main-nav__social .btn {
        margin: 0 0 0 1.5rem;
        padding: 1.5rem 1rem;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        border: 2px solid;
        font-weight: 700;
        font-size: Calc( 1.6rem * var(--font-mod) ); }
        .menu-container .main-nav__social .btn:hover {
          background-color: #1238FF;
          background-color: var(--primary);
          color: #fff; }
        @media only screen and (max-width: 90em) {
          .menu-container .main-nav__social .btn {
            margin: 0 0 0 1.5rem;
            padding: 1rem 0.65rem; } }
        @media only screen and (max-width: 75em) {
          .menu-container .main-nav__social .btn {
            margin-left: 0.5rem; } }
        @media only screen and (max-width: 64em) {
          .menu-container .main-nav__social .btn {
            font-size: Calc( 2.4rem * var(--font-mod) );
            padding: 1.5rem;
            width: 18rem;
            margin: 0; } }
    .menu-container .main-nav__big-sub-nav {
      position: absolute;
      width: 100%;
      display: none;
      top: 100%;
      left: 0;
      background-color: #fff;
      padding: 3rem 0 7.5rem;
      border-top: 1px solid #B5B5B5;
      border-top: 1px solid var(--grey);
      -webkit-box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
              box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1); }
      @media only screen and (max-width: 64em) {
        .menu-container .main-nav__big-sub-nav {
          display: none !important; } }
      .menu-container .main-nav__big-sub-nav__quick {
        -webkit-box-flex: 0;
            -ms-flex: 0 0 15%;
                flex: 0 0 15%;
        margin: 0 8% 0 4.5%; }
        .menu-container .main-nav__big-sub-nav__quick a {
          font-weight: 700; }
        .menu-container .main-nav__big-sub-nav__quick span {
          padding: 0 0 0 0.5rem;
          font-weight: 400; }
      .menu-container .main-nav__big-sub-nav__brands-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr); }
        .menu-container .main-nav__big-sub-nav__brands-grid span {
          padding: 0 0 0 0.5rem; }
      .menu-container .main-nav__big-sub-nav div {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -ms-flex-line-pack: center;
            align-content: center; }
      .menu-container .main-nav__big-sub-nav h5 {
        color: #1238FF;
        color: var(--primary);
        font-weight: 700;
        margin: 0 0 3rem; }
      @media only screen and (max-width: 64em) {
        .menu-container .main-nav__big-sub-nav {
          position: inherit;
          background-color: transparent;
          padding: 0; } }
      .menu-container .main-nav__big-sub-nav li {
        border-bottom: 1px solid #DBDBDB; }
      .menu-container .main-nav__big-sub-nav a {
        font-size: Calc( 1.6rem * var(--font-mod) );
        line-height: 35.2px;
        color: #0A0A0A;
        text-transform: none;
        padding: 0; }
        .menu-container .main-nav__big-sub-nav a::after {
          display: none; }
      .menu-container .main-nav__big-sub-nav li:hover, .menu-container .main-nav__big-sub-nav a:hover {
        -webkit-transition: .25s ease-in-out;
        transition: .25s ease-in-out;
        color: #1238FF;
        color: var(--primary); }
    .menu-container .main-nav__items:hover .sub-menu,
    .menu-container .main-nav__items:hover .main-nav__big-sub-nav, .menu-container .main-nav__items:active .sub-menu,
    .menu-container .main-nav__items:active .main-nav__big-sub-nav, .menu-container .main-nav__items:focus .sub-menu,
    .menu-container .main-nav__items:focus .main-nav__big-sub-nav {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex; }
  .menu-container .sub-menu {
    position: absolute;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 25rem;
    display: none;
    top: 100%;
    background-color: #1238FF;
    background-color: var(--primary);
    overflow: hidden;
    max-height: 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    text-align: center;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0); }
    @media only screen and (max-width: 64em) {
      .menu-container .sub-menu {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        position: initial;
        background-color: transparent;
        z-index: 100;
        left: inherit;
        -webkit-transform: inherit;
                transform: inherit; } }
    .menu-container .sub-menu li.main-nav__items {
      margin: 1rem 0;
      min-height: 2rem;
      padding: 0 2.5rem; }
      .menu-container .sub-menu li.main-nav__items:hover {
        background-color: transparent; }
      .menu-container .sub-menu li.main-nav__items a {
        font-weight: 700;
        color: #fff;
        font-size: Calc( 1.8rem * var(--font-mod) );
        text-transform: none;
        padding: 0; }
        @media only screen and (max-width: 64em) {
          .menu-container .sub-menu li.main-nav__items a {
            font-size: Calc( 2.4rem * var(--font-mod) );
            width: -webkit-max-content;
            width: -moz-max-content;
            width: max-content;
            color: #0A0A0A; } }
        .menu-container .sub-menu li.main-nav__items a::after {
          display: none; }
        .menu-container .sub-menu li.main-nav__items a:hover, .menu-container .sub-menu li.main-nav__items a a:hover {
          -webkit-transition: .2s ease-in-out;
          transition: .2s ease-in-out;
          color: #0A0A0A; }
  .menu-container .mobile-nav {
    display: none; }
    @media only screen and (max-width: 64em) {
      .menu-container .mobile-nav {
        display: block;
        margin: 0 1rem; } }
    @media only screen and (max-width: 64em) {
      .menu-container .mobile-nav__bg {
        background-color: #1238FF;
        background-color: var(--primary); } }
    .menu-container .mobile-nav__button {
      position: relative;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      width: 7.5rem;
      height: 7.5rem;
      cursor: pointer;
      z-index: 100; }
      @media only screen and (max-width: 64em) {
        .menu-container .mobile-nav__button {
          width: 2.8rem; } }
    .menu-container .mobile-nav__burger {
      width: 2.8rem;
      height: 0.25rem;
      background-color: #0A0A0A;
      -webkit-transition: all .5s ease-in-out;
      transition: all .5s ease-in-out; }
    .menu-container .mobile-nav__burger::before, .menu-container .mobile-nav__burger::after {
      content: '';
      position: absolute;
      width: 2.8rem;
      height: 0.25rem;
      background-color: #0A0A0A;
      -webkit-transition: all .5s ease-in-out;
      transition: all .5s ease-in-out; }
    .menu-container .mobile-nav__burger::before {
      -webkit-transform: translateY(7.5px);
              transform: translateY(7.5px);
      -webkit-transition: all .6s ease-in-out;
      transition: all .6s ease-in-out; }
    .menu-container .mobile-nav__burger::after {
      -webkit-transform: translateY(-7.5px);
              transform: translateY(-7.5px);
      -webkit-transition: all .4s ease-in-out;
      transition: all .4s ease-in-out; }
    .menu-container .mobile-nav__close {
      background-color: transparent;
      -webkit-transform: translate(0, -50px);
              transform: translate(0, -50px);
      -webkit-transition: all .5s ease-in-out;
      transition: all .5s ease-in-out; }
    .menu-container .mobile-nav__close::before, .menu-container .mobile-nav__close::after {
      content: '';
      position: absolute;
      width: 2.8rem;
      height: 0.25rem;
      background-color: #0A0A0A;
      -webkit-transition: all .5s ease-in-out;
      transition: all .5s ease-in-out; }
    .menu-container .mobile-nav__close::before {
      -webkit-transform: rotate(-45deg) translate(-35px, 35px);
              transform: rotate(-45deg) translate(-35px, 35px);
      -webkit-transition: all .6s ease-in-out;
      transition: all .6s ease-in-out; }
    .menu-container .mobile-nav__close::after {
      -webkit-transform: rotate(45deg) translate(35px, 35px);
              transform: rotate(45deg) translate(35px, 35px);
      -webkit-transition: all .4s ease-in-out;
      transition: all .4s ease-in-out; }

.current-main-nav__items {
  -webkit-box-shadow: 0 -5px 0 #1238FF inset;
          box-shadow: 0 -5px 0 #1238FF inset;
  -webkit-box-shadow: 0 -5px 0 var(--primary) inset;
          box-shadow: 0 -5px 0 var(--primary) inset;
  background-color: #F5F5F5;
  background-color: var(--light-grey); }
  @media only screen and (max-width: 64em) {
    .current-main-nav__items {
      -webkit-box-shadow: none;
              box-shadow: none;
      background: none; }
      .current-main-nav__items > a {
        font-weight: 700 !important;
        color: #1238FF !important;
        color: var(--primary) !important; } }

.current-menu-ancestor {
  -webkit-box-shadow: 0 -5px 0 #1238FF inset;
          box-shadow: 0 -5px 0 #1238FF inset;
  -webkit-box-shadow: 0 -5px 0 var(--primary) inset;
          box-shadow: 0 -5px 0 var(--primary) inset;
  background-color: #F5F5F5;
  background-color: var(--light-grey); }
  @media only screen and (max-width: 64em) {
    .current-menu-ancestor {
      background: none;
      -webkit-box-shadow: none;
              box-shadow: none; }
      .current-menu-ancestor > a {
        color: #1238FF !important;
        color: var(--primary) !important;
        font-weight: 700 !important; } }

li.current_page_ancestor .current-main-nav__items {
  -webkit-box-shadow: none;
          box-shadow: none;
  background: none; }
  li.current_page_ancestor .current-main-nav__items a {
    color: #0A0A0A !important;
    color: var(--black) !important; }
  @media only screen and (max-width: 64em) {
    li.current_page_ancestor .current-main-nav__items > a {
      color: #1238FF !important;
      color: var(--primary) !important; } }

.about {
  width: 100%;
  min-height: 72rem;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }
  @media only screen and (max-width: 37.5em) {
    .about {
      display: none; } }
  .about__bg {
    display: grid;
    width: 100%;
    min-height: 72rem;
    height: 100%;
    grid-template-columns: 27% 70%;
    justify-items: stretch;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between; }
    @media only screen and (max-width: 56.25em) {
      .about__bg {
        grid-template-columns: 15% 80%; } }
  .about__bg-margintop {
    margin-top: 6rem; }
  .about__line {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
            flex: 0 0 20%;
    min-height: 100%;
    background: repeating-linear-gradient(135deg, #1238FF 0rem, #1238FF 0.2rem, #fff 0.2rem, #fff 1.2rem);
    background: repeating-linear-gradient(135deg, var(--primary) 0rem, var(--primary) 0.2rem, rgba(255, 255, 255, 0) 0.2rem, rgba(255, 255, 255, 0) 1.2rem); }
  .about__container {
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    min-height: 72rem;
    height: 100%;
    max-width: 131.5rem;
    width: 80%;
    margin: 0 auto; }
    @media only screen and (max-width: 56.25em) {
      .about__container {
        display: block;
        max-width: none;
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content;
        margin: 0 5rem;
        left: 25%; } }
  .about__color {
    background-color: #F5F5F5; }
  .about__image {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%; }
    .about__image img {
      width: 85%; }
    @media only screen and (max-width: 56.25em) {
      .about__image {
        display: none; } }
  .about__content {
    max-width: 60rem;
    width: 100%;
    padding: 10rem 0;
    /* WordPress Core
    -------------------------------------------------------------- */ }
    @media only screen and (max-width: 56.25em) {
      .about__content {
        padding: 15rem 0; } }
    .about__content h2 {
      margin-bottom: 1.5rem; }
      @media only screen and (max-width: 56.25em) {
        .about__content h2::after {
          top: 100%; } }
    .about__content p {
      margin: 2rem 0; }
      @media only screen and (max-width: 75em) {
        .about__content p {
          margin: 1rem 0; } }
    .about__content a {
      color: #0A0A0A;
      text-decoration: underline;
      -webkit-transition: all 0.5s ease-in-out;
      transition: all 0.5s ease-in-out; }
      .about__content a:hover {
        color: var(--primary); }
    .about__content a.btn {
      margin: 2rem 0 0;
      padding: 1.4rem 3.2rem;
      text-decoration: none;
      color: #fff; }
      .about__content a.btn:hover {
        background-color: #0A0A0A;
        color: var(--primary); }
    .about__content ul, .about__content ol {
      padding: 0 0 0 2rem;
      margin: 0 0 2rem 0; }
    .about__content ul {
      list-style: initial; }
    .about__content ol {
      list-style: auto; }
    .about__content li {
      list-style: inherit; }
    .about__content .aligncenter,
    .about__content div.aligncenter {
      display: block;
      margin: 0 auto 2rem auto; }
    .about__content .alignright {
      float: right;
      margin: 0 0 2rem 2rem; }
    .about__content .alignleft {
      float: left;
      margin: 0 2rem 2rem 0; }
    .about__content a img.alignright {
      float: right;
      margin: 0 0 2rem 2rem; }
    .about__content a img.alignnone {
      margin: 0 2rem 2rem 0; }
    .about__content a img.alignleft {
      float: left;
      margin: 0 2rem 2rem 0; }
    .about__content a img.aligncenter {
      display: block;
      margin-left: auto;
      margin-right: auto; }
    .about__content .wp-caption.alignnone {
      margin: 0 2rem 2rem 0; }
    .about__content .wp-caption.alignleft {
      margin: 0 2rem 2rem 0; }
    .about__content .wp-caption.alignright {
      margin: 0 0 2rem 2rem; }
    .about__content .wp-caption p.wp-caption-text {
      display: none; }

.cards-inventaire {
  width: 100%; }
  .cards-inventaire__container {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    background-color: #fff;
    border: 1px solid var(--grey);
    width: 100%;
    height: 100%;
    -webkit-transition: none !important;
    transition: none !important; }
    .cards-inventaire__container:hover {
      outline: 2px solid #0A0A0A;
      outline-offset: -1px; }
    .cards-inventaire__container-list {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row;
      max-width: 104rem; }
      @media only screen and (max-width: 56.25em) {
        .cards-inventaire__container-list {
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
              -ms-flex-direction: column;
                  flex-direction: column;
          min-width: none;
          width: 100%;
          height: 100%; } }
  .cards-inventaire__header {
    padding: 66% 0 0 0;
    position: relative;
    display: block;
    overflow: hidden;
    height: 0; }
    .cards-inventaire__header img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      -o-object-fit: cover;
         object-fit: cover; }
    .cards-inventaire__header-list {
      padding: 0 0 0 45%;
      position: relative;
      display: block;
      overflow: hidden;
      height: initial; }
      .cards-inventaire__header-list img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
           object-fit: cover; }
      @media only screen and (max-width: 56.25em) {
        .cards-inventaire__header-list {
          padding: 0 0 0 50%; } }
      @media only screen and (max-width: 56.25em) {
        .cards-inventaire__header-list {
          padding: 66% 0 0 0;
          height: 0; } }
  .cards-inventaire__content {
    margin: 2.4rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.5rem;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1; }
    @media only screen and (max-width: 90em) {
      .cards-inventaire__content {
        margin: 2rem; } }
    @media only screen and (max-width: 75em) {
      .cards-inventaire__content {
        margin: 2.4rem; } }
    @media only screen and (max-width: 56.25em) {
      .cards-inventaire__content {
        margin: 1rem; } }
    @media only screen and (max-width: 37.5em) {
      .cards-inventaire__content {
        margin: 2.4rem; } }
    .cards-inventaire__content-list {
      max-width: 52rem;
      width: 100%; }
      @media only screen and (max-width: 56.25em) {
        .cards-inventaire__content-list {
          max-width: none;
          width: initial;
          margin: 1rem; } }
      @media only screen and (max-width: 37.5em) {
        .cards-inventaire__content-list {
          margin: 2.4rem; } }
  .cards-inventaire__info {
    width: 100%; }
  .cards-inventaire__info-content {
    width: 100%; }
    .cards-inventaire__info-content .cards-inventaire__bottom:nth-child(1) .cards-inventaire__col:nth-child(1) .cards-inventaire__price span:nth-child(1) {
      margin-right: 0.75rem; }
  .cards-inventaire__brand {
    margin: 0.75rem 0 0; }
    .cards-inventaire__brand span {
      font-size: Calc( 2.6rem * var(--font-mod) );
      font-weight: 700;
      color: #0A0A0A; }
  .cards-inventaire__ess {
    font-family: "D-din", Arial, sans-serif;
    font-family: var(--default);
    font-size: 1.6rem;
    font-weight: 700;
    padding: 0.7rem 1.6rem;
    background-color: #0A0A0A;
    color: #fff;
    border: none;
    text-align: center;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    .cards-inventaire__ess-green {
      background-color: #00cd39; }
  .cards-inventaire__catego {
    margin: 0.25rem 0 0.5rem; }
    .cards-inventaire__catego p {
      font-size: Calc( 1.8rem * var(--font-mod) );
      font-weight: 700;
      color: #5D5E65;
      color: var(--dark-grey); }
  .cards-inventaire__col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }
    .cards-inventaire__col-end {
      -webkit-box-align: end;
          -ms-flex-align: end;
              align-items: flex-end;
      text-align: end;
      width: 45%; }
    .cards-inventaire__col-invisible {
      visibility: hidden; }
  .cards-inventaire__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%; }
    .cards-inventaire__row-base {
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: end;
          -ms-flex-pack: end;
              justify-content: flex-end;
      margin: -0.5rem 0 0 0.15rem; }
  .cards-inventaire__detail {
    font-size: 1.4rem;
    color: #5D5E65;
    color: var(--dark-grey);
    margin-bottom: 0.25rem; }
    .cards-inventaire__detail-light {
      color: #B5B5B5;
      color: var(--grey); }
  .cards-inventaire__mois {
    color: #1238FF;
    color: var(--primary);
    text-align: end; }
    .cards-inventaire__mois p {
      font-size: 1.2rem; }
      @media only screen and (max-width: 37.5em) {
        .cards-inventaire__mois p {
          font-size: 1.4rem; } }
  .cards-inventaire__price {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: Calc( 4.4rem * var(--font-mod) );
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #1238FF;
    color: var(--primary);
    white-space: nowrap; }
    @media only screen and (max-width: 90em) {
      .cards-inventaire__price {
        font-size: Calc( 3.6rem * var(--font-mod) ); } }
    @media only screen and (max-width: 37.5em) {
      .cards-inventaire__price {
        font-size: Calc( 4.4rem * var(--font-mod) ); } }
    .cards-inventaire__price-little {
      font-size: Calc( 2.8rem * var(--font-mod) );
      margin: 0.5rem 2rem 0 0; }
    .cards-inventaire__price-symbole {
      margin-left: 0.5rem;
      font-size: Calc( 2rem * var(--font-mod) ); }
    .cards-inventaire__price-old {
      margin-top: -0.25rem !important; }
    .cards-inventaire__price-new {
      font-size: Calc( 4.4rem * var(--font-mod) );
      color: #F20707;
      font-weight: 700; }
      @media only screen and (max-width: 90em) {
        .cards-inventaire__price-new {
          font-size: Calc( 3.6rem * var(--font-mod) ); } }
      @media only screen and (max-width: 37.5em) {
        .cards-inventaire__price-new {
          font-size: Calc( 4.4rem * var(--font-mod) ); } }
  .cards-inventaire__bottom {
    width: 100%; }
  .cards-inventaire__line {
    width: 100%;
    margin: 2rem 0 1rem;
    border-top: 1px solid #DBDBDB; }
  .cards-inventaire__footer {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between; }
    .cards-inventaire__footer span {
      font-size: Calc( 1.8rem * var(--font-mod) );
      color: #5D5E65;
      color: var(--dark-grey);
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center; }
    .cards-inventaire__footer__odo {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-pack: distribute;
          justify-content: space-around;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      gap: 1rem; }
      .cards-inventaire__footer__odo img {
        -webkit-filter: invert(12%) sepia(96%) saturate(6736%) hue-rotate(239deg) brightness(101%) contrast(101%);
                filter: invert(12%) sepia(96%) saturate(6736%) hue-rotate(239deg) brightness(101%) contrast(101%);
        -webkit-filter: var(--primary-filter);
                filter: var(--primary-filter); }
  .cards-inventaire__rapport-carfax {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 0.5rem;
    margin: 2rem 0 0; }
    .cards-inventaire__rapport-carfax a {
      color: #5D5E65 !important;
      font-size: 1.4rem; }
  .cards-inventaire__instavid .cards-inventaire__header img:first-child {
    -webkit-filter: blur(3px);
            filter: blur(3px); }
  .cards-inventaire__instavid__badgefocus360 {
    float: right;
    position: relative;
    top: -0.7rem; }
    .cards-inventaire__instavid__badgefocus360 img {
      max-height: 4.5rem; }

[name="Prix"] {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row; }

[name="Price"] {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end; }

.cards-star {
  width: 100%; }
  .cards-star__container {
    position: relative;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
    background-color: #5D5E65;
    background-color: var(--dark-grey);
    width: 100%;
    max-width: 84rem;
    max-height: 62rem;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    @media only screen and (max-width: 56.25em) {
      .cards-star__container {
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: flex-start; } }
    .cards-star__container img {
      width: 100%;
      height: 100%;
      -o-object-fit: cover;
         object-fit: cover; }
  .cards-star__position {
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: 100%;
    background: -webkit-gradient(linear, left bottom, left top, color-stop(10%, rgba(0, 0, 0, 0.4)), to(transparent));
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.4) 10%, transparent);
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end; }
  .cards-star__gradiant {
    width: 100%;
    background: -webkit-gradient(linear, left bottom, left top, color-stop(38%, rgba(0, 0, 0, 0.75)), color-stop(86%, transparent));
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.75) 38%, transparent 86%); }
  .cards-star__content {
    margin: 2rem 2.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; }
    @media only screen and (max-width: 56.25em) {
      .cards-star__content {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: flex-start; } }
  .cards-star__brand {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0.75rem 0; }
    .cards-star__brand p {
      font-size: Calc( 3.6rem * var(--font-mod) );
      font-weight: 700;
      color: #fff;
      margin: 0 0.5rem; }
      @media only screen and (max-width: 56.25em) {
        .cards-star__brand p {
          font-size: Calc( 2.4rem * var(--font-mod) ); } }
  .cards-star__odo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    .cards-star__odo p {
      font-size: Calc( 2.4rem * var(--font-mod) );
      color: #fff;
      margin: 0 0.5rem; }
      @media only screen and (max-width: 56.25em) {
        .cards-star__odo p {
          font-size: Calc( 2rem * var(--font-mod) ); } }
      .cards-star__odo p:nth-of-type(1) {
        text-transform: lowercase; }
  .cards-star__line {
    margin: auto 1rem;
    width: 0.2rem;
    height: 2rem;
    background-color: #fff; }
  .cards-star__color-square {
    min-width: 18rem;
    padding: 1.6rem;
    background-color: #1238FF;
    background-color: var(--primary);
    border: none;
    text-align: center;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
    @media only screen and (max-width: 56.25em) {
      .cards-star__color-square {
        margin: 1rem 0 0;
        width: 13rem; } }
    .cards-star__color-square p {
      font-size: Calc( 4.4rem * var(--font-mod) );
      font-weight: 700;
      color: #fff; }
      @media only screen and (max-width: 56.25em) {
        .cards-star__color-square p {
          font-size: Calc( 2.8rem * var(--font-mod) ); } }

.discount_price, .cards-inventaire__price-old, .cards-default__price-old {
  position: relative;
  font-size: Calc( 2.4rem * var(--font-mod) );
  color: #B5B5B5;
  margin: 0.25rem 0 0;
  line-height: 1.3; }
  @media only screen and (max-width: 37.5em) {
    .discount_price, .cards-inventaire__price-old, .cards-default__price-old {
      font-size: Calc( 2.8rem * var(--font-mod) ); } }
  .discount_price span:nth-child(1), .cards-inventaire__price-old span:nth-child(1), .cards-default__price-old span:nth-child(1) {
    position: relative; }
    .discount_price span:nth-child(1)::after, .cards-inventaire__price-old span:nth-child(1)::after, .cards-default__price-old span:nth-child(1)::after {
      position: absolute;
      content: " ";
      display: inline-block;
      width: 110%;
      height: 1.5px;
      background-color: #0A0A0A;
      color: #B5B5B5;
      color: var(--grey);
      top: 50%;
      right: 0;
      left: -5px;
      -webkit-transform: rotate(-13deg);
              transform: rotate(-13deg);
      border: none; }

.cards-default {
  width: 100%; }
  .cards-default__container {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
    background-color: #fff;
    width: 100%;
    height: 100%; }
    @media only screen and (max-width: 37.5em) {
      .cards-default__container {
        max-width: inherit; } }
    .cards-default__container:hover {
      outline: 2px solid #0A0A0A;
      outline-offset: -2px; }
      @media only screen and (max-width: 37.5em) {
        .cards-default__container:hover {
          border: 0;
          max-width: inherit; } }
  .cards-default__header {
    padding-top: 75%;
    position: relative;
    display: block;
    overflow: hidden;
    height: 0; }
    .cards-default__header img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      -o-object-fit: cover;
         object-fit: cover; }
  .cards-default__content {
    margin: 2.4rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }
    @media only screen and (max-width: 56.25em) {
      .cards-default__content {
        margin: 1rem; } }
    @media only screen and (max-width: 37.5em) {
      .cards-default__content {
        margin: 2.4rem;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: flex-start; } }
  .cards-default__brand {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    color: #0A0A0A !important; }
    .cards-default__brand p {
      font-size: Calc( 2.6rem * var(--font-mod) );
      font-weight: 700;
      margin: 0 0.5rem 0 0; }
  .cards-default__odo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    .cards-default__odo p {
      font-size: Calc( 1.8rem * var(--font-mod) );
      color: #5D5E65;
      color: var(--dark-grey); }
      .cards-default__odo p:nth-of-type(1) {
        text-transform: lowercase; }
  .cards-default__line {
    margin: auto 1rem;
    width: 0.1rem;
    height: 1.5rem;
    background-color: #5D5E65;
    background-color: var(--dark-grey); }
  .cards-default__price-info {
    margin-right: 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 1rem 0 3rem; }
    @media only screen and (max-width: 56.25em) {
      .cards-default__price-info {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        margin: 1rem 0 1rem 0; } }
    @media only screen and (max-width: 37.5em) {
      .cards-default__price-info {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row; } }
  .cards-default__price {
    font-size: Calc( 2.8rem * var(--font-mod) );
    font-weight: 700;
    color: #1238FF;
    color: var(--primary);
    line-height: 1; }
    @media only screen and (max-width: 37.5em) {
      .cards-default__price {
        margin: 0; } }
    .cards-default__price-old {
      font-family: "D-din", Arial, sans-serif;
      font-family: var(--default);
      font-weight: 700;
      margin: auto 1.5rem auto 0; }
      @media only screen and (max-width: 37.5em) {
        .cards-default__price-old {
          font-size: Calc( 2.4rem * var(--font-mod) ); } }
  .cards-default__price-old + .cards-default__price {
    color: #F20707; }

.content {
  max-width: 168rem;
  width: 100%;
  margin: 0 auto; }
  .content__title {
    width: 95%;
    margin: 0 auto; }
    .content__title h4 {
      color: #1238FF;
      color: var(--primary);
      margin: 4rem 0 6rem; }
  .content__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-top: 2px solid #F5F5F5;
    border-top: 2px solid var(--light-grey); }
    @media only screen and (max-width: 37.5em) {
      .content__container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column; } }
  .content__col1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 27%;
            flex: 0 0 27%;
    margin: 3rem 0 0; }
    @media only screen and (max-width: 37.5em) {
      .content__col1 {
        -webkit-box-flex: 0;
            -ms-flex: 0 0 100%;
                flex: 0 0 100%;
        padding: 0 0 3rem 0;
        border-bottom: 2px solid #F5F5F5;
        border-bottom: 2px solid var(--light-grey); } }
  .content__menu {
    padding: 2.5rem 10%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    @media only screen and (max-width: 37.5em) {
      .content__menu {
        padding: 2.5rem 2.5%; } }
    .content__menu-active {
      background: #1238FF;
      background: var(--primary); }
      .content__menu-active h5 {
        color: #fff; }
    .content__menu-inactive {
      background: #fff;
      -webkit-transition: 0.25s ease;
      transition: 0.25s ease; }
      .content__menu-inactive h5 {
        color: #0A0A0A; }
      .content__menu-inactive:hover {
        background-color: #0A0A0A;
        cursor: pointer; }
        .content__menu-inactive:hover h5 {
          color: #fff; }
  .content__col2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 65%;
            flex: 0 0 65%;
    padding: 4.5rem 6rem 9rem;
    border-left: 2px solid #F5F5F5;
    border-left: 2px solid var(--light-grey); }
    @media only screen and (max-width: 75em) {
      .content__col2 {
        padding: 4.5rem 2.5% 9rem; } }
    @media only screen and (max-width: 56.25em) {
      .content__col2 {
        padding: 4rem 2.5% 9rem; } }
    @media only screen and (max-width: 37.5em) {
      .content__col2 {
        -webkit-box-flex: 0;
            -ms-flex: 0 0 85%;
                flex: 0 0 85%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column; } }
    .content__col2 h1 {
      font-size: Calc( 3.6rem * var(--font-mod) ) !important;
      margin: 0 0 2rem !important;
      color: #1238FF;
      color: var(--primary); }
      @media only screen and (max-width: 37.5em) {
        .content__col2 h1 {
          margin: 0.5rem; } }
    .content__col2 h2 {
      font-size: Calc( 2.4rem * var(--font-mod) );
      margin: 0 0 3rem !important;
      letter-spacing: 0; }
      @media only screen and (max-width: 37.5em) {
        .content__col2 h2 {
          font-size: Calc( 2.6rem * var(--font-mod) );
          letter-spacing: 0;
          padding: 1rem 0 2rem;
          margin: 0; } }
    .content__col2 figure {
      height: 61.2rem;
      width: 100%; }
      @media only screen and (max-width: 56.25em) {
        .content__col2 figure {
          height: 40rem; } }
      @media only screen and (max-width: 37.5em) {
        .content__col2 figure {
          height: 28rem; } }
      .content__col2 figure div {
        height: 100%; }
        .content__col2 figure div iframe {
          width: 100%;
          height: 100%; }
    .content__col2 .wp-block-embed {
      margin: 5rem 0 0; }
  .content__intro h3 {
    color: #1238FF;
    color: var(--primary); }
  .content__intro p {
    margin: 2rem 0; }
  .content__iframe img {
    width: 100%;
    height: auto; }

.acf-content {
  /* =WordPress Core
      -------------------------------------------------------------- */
  /* Text meant only for screen readers. */ }
  .acf-content:after {
    content: '';
    display: block;
    clear: both; }
  .acf-content .alignnone {
    margin: 5px 20px 20px 0; }
  .acf-content .aligncenter,
  .acf-content div.aligncenter {
    display: block;
    margin: 5px auto 5px auto; }
  .acf-content .alignright {
    float: right;
    margin: 5px 0 20px 20px; }
  .acf-content .alignleft {
    float: left;
    margin: 5px 20px 20px 0; }
  .acf-content a img.alignright {
    float: right;
    margin: 5px 0 20px 20px; }
  .acf-content a img.alignnone {
    margin: 5px 20px 20px 0; }
  .acf-content a img.alignleft {
    float: left;
    margin: 5px 20px 20px 0; }
  .acf-content a img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto; }
  .acf-content .wp-caption {
    background: #fff;
    border: 1px solid #f0f0f0;
    max-width: 96%;
    /* Image does not overflow the content area */
    padding: 5px 3px 10px;
    text-align: center; }
  .acf-content .wp-caption.alignnone {
    margin: 5px 20px 20px 0; }
  .acf-content .wp-caption.alignleft {
    margin: 5px 20px 20px 0; }
  .acf-content .wp-caption.alignright {
    margin: 5px 0 20px 20px; }
  .acf-content .wp-caption img {
    border: 0 none;
    height: auto;
    margin: 0;
    max-width: 98.5%;
    padding: 0;
    width: auto; }
  .acf-content .wp-caption p.wp-caption-text {
    font-size: 11px;
    line-height: 17px;
    margin: 0;
    padding: 0 4px 5px; }
  .acf-content .screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    -webkit-clip-path: inset(50%);
            clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
    /* Many screen reader and browser combinations announce broken words as they would appear visually. */ }
  .acf-content .screen-reader-text:focus {
    background-color: #eee;
    clip: auto !important;
    -webkit-clip-path: none;
            clip-path: none;
    color: #444;
    display: block;
    font-size: 1em;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
    /* Above WP toolbar. */ }

.contact {
  width: 100%;
  display: grid;
  grid-template-areas: "display" "map"; }
  @media only screen and (max-width: 75em) {
    .contact p, .contact span {
      font-size: Calc( 2rem * var(--font-mod) ); } }
  .contact .underline {
    margin: 0 0 1rem 0; }
    @media only screen and (max-width: 37.5em) {
      .contact .underline {
        margin: 0; } }
    .contact .underline::after {
      bottom: -1rem; }
  .contact__wrapper {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
  .contact__display {
    grid-area: display;
    width: 95%;
    max-width: 156rem;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around; }
    @media only screen and (max-width: 56.25em) {
      .contact__display {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center; } }
    @media only screen and (max-width: 37.5em) {
      .contact__display {
        padding: 0 0 3rem; } }
    .contact__display .frm_error {
      font-size: 1.2rem;
      color: #F20707; }
    @media only screen and (max-width: 56.25em) {
      .contact__display fieldset {
        padding: 0; } }
    .contact__display .formulaire .frm_fields_container {
      max-width: initial;
      width: 95%; }
      @media only screen and (max-width: 56.25em) {
        .contact__display .formulaire .frm_fields_container > * {
          width: 100%;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
              -ms-flex-direction: column;
                  flex-direction: column; } }
      @media only screen and (max-width: 56.25em) {
        .contact__display .formulaire .frm_fields_container > button {
          width: 25%; } }
    .contact__display .frm_error_style,
    .contact__display .frm_message {
      margin: 2rem auto 0.5rem !important;
      width: 95% !important; }
      .contact__display .frm_error_style p,
      .contact__display .frm_message p {
        margin: 2rem 0; }
  .contact__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }
    .contact__content-wrapper {
      width: 95%;
      margin: 1rem auto;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column; }
      @media only screen and (max-width: 56.25em) {
        .contact__content-wrapper {
          margin: 2rem auto 1rem; } }
      @media only screen and (max-width: 37.5em) {
        .contact__content-wrapper {
          -webkit-box-pack: start;
              -ms-flex-pack: start;
                  justify-content: flex-start; } }
    .contact__content-coordonees {
      margin: 0 0 2rem 0; }
      @media only screen and (max-width: 56.25em) {
        .contact__content-coordonees {
          margin: 0 25% 0 0; } }
      @media only screen and (max-width: 37.5em) {
        .contact__content-coordonees {
          margin: 0; } }
    .contact__content-flex {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      width: 75%;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      margin: 3rem 0 0; }
      @media only screen and (max-width: 90em) {
        .contact__content-flex {
          width: 100%; } }
    @media only screen and (max-width: 56.25em) {
      .contact__content-flex.row-reverse {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
            -ms-flex-direction: row-reverse;
                flex-direction: row-reverse; } }
    @media only screen and (max-width: 37.5em) {
      .contact__content-flex.row-reverse {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column; } }
    @media only screen and (max-width: 56.25em) {
      .contact__content-open {
        -webkit-box-flex: 0;
            -ms-flex: 0 0 48%;
                flex: 0 0 48%; } }
    @media only screen and (max-width: 37.5em) {
      .contact__content-open {
        -webkit-box-flex: 1;
            -ms-flex: auto;
                flex: auto; } }
  .contact__open {
    margin: 2rem 0 0; }
    @media only screen and (max-width: 56.25em) {
      .contact__open {
        margin: 0; } }
    .contact__open h5 {
      color: #1238FF;
      color: var(--primary); }
    .contact__open-list {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      padding: 2rem 0 3.5rem; }
      .contact__open-list li {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        margin: 0 0 1rem; }
        .contact__open-list li:last-of-type {
          margin: 0; }
      .contact__open-list span:nth-of-type(2) {
        margin: 0 0 0 auto;
        width: 60%; }
  .contact__btn {
    margin: 0 1rem 0 0;
    padding: 1.4rem 3.2rem; }
  .contact .formulaire, .contact__content {
    width: 33%;
    padding: 5rem;
    background-color: #fff; }
    @media only screen and (max-width: 56.25em) {
      .contact .formulaire, .contact__content {
        width: 75%;
        margin: 0 auto;
        padding: 0; } }
    @media only screen and (max-width: 37.5em) {
      .contact .formulaire, .contact__content {
        width: 95%; } }
    @media only screen and (max-width: 56.25em) {
      .contact .formulaire__wrapper, .contact__content__wrapper {
        width: 95%; } }
    @media only screen and (max-width: 37.5em) {
      .contact .formulaire-coordonees, .contact .formulaire-open, .contact__content-coordonees, .contact__content-open {
        margin: 0 0 2rem; } }
  @media only screen and (max-width: 56.25em) {
    .contact .frm_primary_label {
      margin: 0 !important; } }
  .contact__coordonnes {
    margin: 2rem 0; }
    .contact__coordonnes p {
      margin: 0.25rem 0; }
  .contact__link {
    color: #0A0A0A; }
    .contact__link:hover, .contact__link:visited, .contact__link:focus {
      color: #1238FF;
      color: var(--primary); }

.map-display {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  grid-area: map;
  width: 100%;
  height: 25vw;
  background-color: #B5B5B5;
  background-color: var(--grey); }
  .map-display img {
    -webkit-filter: invert(12%) sepia(96%) saturate(6736%) hue-rotate(239deg) brightness(101%) contrast(101%);
            filter: invert(12%) sepia(96%) saturate(6736%) hue-rotate(239deg) brightness(101%) contrast(101%);
    -webkit-filter: var(--primary-filter);
            filter: var(--primary-filter); }
  @media only screen and (max-width: 56.25em) {
    .map-display {
      height: 50vw; } }

.equipe {
  max-width: 156rem;
  width: 95%;
  margin: 0 auto; }
  .equipe__image-banner img {
    width: 100%;
    height: auto; }
  .equipe__intro {
    margin: 6rem 0; }
    @media only screen and (max-width: 56.25em) {
      .equipe__intro {
        margin: 3rem 0; } }
    .equipe__intro h4 {
      color: #1238FF;
      color: var(--primary);
      margin: 0 0 4rem; }
      @media only screen and (max-width: 37.5em) {
        .equipe__intro h4 {
          font-size: Calc( 2.4rem * var(--font-mod) );
          margin: 0 0 2rem; } }
    .equipe__intro p {
      margin: 2rem 0; }
  .equipe__container {
    margin: 5rem 0 8rem;
    display: grid;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    grid-template-columns: repeat(4, 22%);
    grid-gap: 5rem 0; }
    @media only screen and (max-width: 75em) {
      .equipe__container {
        grid-template-columns: repeat(3, 30%); } }
    @media only screen and (max-width: 56.25em) {
      .equipe__container {
        grid-template-columns: repeat(2, 35%);
        justify-items: center;
        -webkit-box-pack: space-evenly;
            -ms-flex-pack: space-evenly;
                justify-content: space-evenly; } }
    @media only screen and (max-width: 37.5em) {
      .equipe__container {
        grid-template-columns: repeat(1, 1fr);
        margin: 3rem auto 5rem; } }
    .equipe__container .cards-inventaire__container {
      border: 1px solid #B5B5B5;
      border: 1px solid var(--grey);
      max-width: inherit;
      -webkit-box-pack: start;
          -ms-flex-pack: start;
              justify-content: flex-start; }
    .equipe__container .cards-inventaire__header {
      padding: 118% 0 0 0; }
    .equipe__container .cards-inventaire__content {
      margin: 2.4rem;
      gap: 0; }
    .equipe__container .cards-inventaire__brand {
      margin: 0; }
      .equipe__container .cards-inventaire__brand p {
        font-weight: 700;
        font-size: Calc( 2.4rem * var(--font-mod) );
        line-height: 1.2; }
    .equipe__container .cards-inventaire__info {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      margin: 0 0 0.25rem; }
      .equipe__container .cards-inventaire__info > div {
        margin: 0 0 0.75rem; }
    .equipe__container .cards-inventaire__catego {
      margin: 0; }
      .equipe__container .cards-inventaire__catego p {
        color: #1238FF;
        color: var(--primary);
        margin: 0; }
        @media only screen and (max-width: 56.25em) {
          .equipe__container .cards-inventaire__catego p {
            font-size: Calc( 2rem * var(--font-mod) ); } }
    .equipe__container .cards-inventaire__detail {
      font-size: 1.6rem; }
    .equipe__container .cards-inventaire__line {
      background-color: #B5B5B5;
      background-color: var(--grey);
      margin: 0 0 0.25rem; }
    .equipe__container .cards-inventaire__odo {
      display: block; }
      .equipe__container .cards-inventaire__odo p {
        margin: 0.5rem 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: end;
            -ms-flex-pack: end;
                justify-content: flex-end;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
            -ms-flex-direction: row-reverse;
                flex-direction: row-reverse;
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: flex-start;
        word-break: break-word; }
        .equipe__container .cards-inventaire__odo p:after {
          content: "";
          display: block;
          min-width: 2rem;
          height: 2rem;
          margin: 0 1rem 0 0;
          -webkit-filter: invert(12%) sepia(96%) saturate(6736%) hue-rotate(239deg) brightness(101%) contrast(101%);
                  filter: invert(12%) sepia(96%) saturate(6736%) hue-rotate(239deg) brightness(101%) contrast(101%);
          -webkit-filter: var(--primary-filter);
                  filter: var(--primary-filter); }
        .equipe__container .cards-inventaire__odo p a {
          color: #5D5E65;
          color: var(--dark-grey); }
          .equipe__container .cards-inventaire__odo p a:hover {
            color: #1238FF;
            color: var(--primary); }
    .equipe__container .cards-inventaire__icone-phone:after {
      background: var(--phone-small-img) no-repeat; }
    .equipe__container .cards-inventaire__icone-mail:after {
      background: var(--mail-img) no-repeat; }

.error404 {
  width: 95%;
  margin: 14rem auto; }
  .error404__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center; }
    .error404__title h1 {
      color: #1238FF;
      color: var(--primary); }
  .error404__return {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 5rem 0 0; }
    .error404__return a {
      padding: 1.4rem 2rem; }

.esthetique {
  max-width: 156rem;
  width: 95%;
  margin: 0 auto 7rem; }
  .esthetique__intro {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 6rem 0 3rem; }
    @media only screen and (max-width: 56.25em) {
      .esthetique__intro {
        padding: 3rem 0; } }
    .esthetique__intro p {
      margin: 1rem 0 0; }
  .esthetique__forfaits h3 {
    color: #1238FF;
    color: var(--primary);
    margin: 2rem 0; }
  .esthetique__forfaits-container {
    display: grid; }
  .esthetique__forfaits-head-container {
    padding: 1rem 1.25rem;
    display: grid;
    color: #B5B5B5;
    color: var(--grey);
    background-color: #F5F5F5;
    background-color: var(--light-grey);
    justify-items: center; }
    @media only screen and (max-width: 56.25em) {
      .esthetique__forfaits-head-container h4 {
        font-size: Calc( 2.4rem * var(--font-mod) ); } }
    @media only screen and (max-width: 37.5em) {
      .esthetique__forfaits-head-container h4 {
        font-size: 1.6rem; } }
    .esthetique__forfaits-head-container h4:nth-of-type(1) {
      justify-self: left; }
  .esthetique__forfaits-content {
    padding: 1rem  1.25rem;
    display: grid;
    justify-items: center;
    border-bottom: 1px solid #1238FF;
    border-bottom: 1px solid var(--primary); }
    .esthetique__forfaits-content p {
      justify-self: left;
      font-weight: 700; }
    .esthetique__forfaits-content:hover {
      background: #1238FF;
      background: var(--primary); }
      .esthetique__forfaits-content:hover p {
        color: #fff; }
      .esthetique__forfaits-content:hover span {
        color: #fff; }
  .esthetique .grid-cols-2 {
    grid-template-columns: [col1] 87.5% [col2] 12.5% [end]; }
  .esthetique .grid-cols-3 {
    grid-template-columns: [col1] 75% [col2] 12.5% [col3] 12.5% [end]; }
    @media only screen and (max-width: 37.5em) {
      .esthetique .grid-cols-3 {
        grid-template-columns: [col1] 60% [col2] 20% [col3] 20% [end]; } }
  .esthetique .grid-cols-4 {
    grid-template-columns: [col1] 62.5% [col2] 12.5% [col3] 12.5% [col4] 12.5% [end]; }
    @media only screen and (max-width: 37.5em) {
      .esthetique .grid-cols-4 {
        grid-template-columns: [col1] 50% [col2] 16.5% [col3] 16.5% [col4] 16.5% [end]; } }
  .esthetique .grid-cols-5 {
    grid-template-columns: [col1] 50% [col2] 12.5% [col3] 12.5% [col4] 12.5% [col5] 12.5% [end]; }
    @media only screen and (max-width: 75em) {
      .esthetique .grid-cols-5 {
        grid-template-columns: [col1] 35% [col2] 16% [col3] 16% [col4] 16% [col5] 16% [end]; } }
  .esthetique .grid-cols-6 {
    grid-template-columns: [col1] 40% [col2] 12% [col3] 12% [col4] 12% [col5] 12% [col6] 12% [end]; }
    @media only screen and (max-width: 75em) {
      .esthetique .grid-cols-6 {
        grid-template-columns: [col1] 25% [col2] 15% [col3] 15% [col4] 15% [col5] 15% [col6] 15% [end]; } }

.finance {
  padding: 6rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 95%;
  max-width: 156rem;
  margin: 0 auto; }
  @media only screen and (max-width: 56.25em) {
    .finance {
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      padding: 3rem 0; } }
  .finance__col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 48%;
            flex: 0 0 48%; }
    @media only screen and (max-width: 56.25em) {
      .finance__col {
        -webkit-box-flex: unset;
            -ms-flex: unset;
                flex: unset;
        width: 100%; } }
  .finance__light-grey {
    max-width: 66rem;
    padding: 5.1rem;
    background-color: #F5F5F5;
    background-color: var(--light-grey); }
    @media only screen and (max-width: 56.25em) {
      .finance__light-grey {
        max-width: unset;
        margin: 0 0 3.5rem; } }
    @media only screen and (max-width: 37.5em) {
      .finance__light-grey {
        padding: 2rem;
        margin: 0 0 1.5rem; } }
    .finance__light-grey h4 {
      margin: 0 0 3rem;
      color: #1238FF;
      color: var(--primary); }
    .finance__light-grey p {
      padding: 1rem 0; }
    .finance__light-grey a {
      color: #0A0A0A; }
  .finance__intro {
    /* WordPress Core
    -------------------------------------------------------------- */ }
    .finance__intro a {
      text-decoration: underline;
      -webkit-transition: all 0.5s ease-in-out;
      transition: all 0.5s ease-in-out; }
      .finance__intro a:hover {
        color: var(--primary); }
    .finance__intro p {
      padding: 0 !important;
      margin: 2rem 0; }
    .finance__intro ul, .finance__intro ol, .finance__intro img, .finance__intro blockquote {
      margin: 2rem 0; }
    .finance__intro ul, .finance__intro ol {
      padding: 0 0 0 2rem; }
    .finance__intro ul {
      list-style: initial; }
    .finance__intro ol {
      list-style: auto; }
    .finance__intro li {
      list-style: inherit; }
    .finance__intro .aligncenter,
    .finance__intro div.aligncenter {
      display: block;
      margin: 0 auto 2rem auto; }
    .finance__intro .alignright {
      float: right;
      margin: 0 0 2rem 2rem; }
    .finance__intro .alignleft {
      float: left;
      margin: 0 2rem 2rem 0; }
    .finance__intro a img.alignright {
      float: right;
      margin: 0 0 2rem 2rem; }
    .finance__intro a img.alignnone {
      margin: 0 2rem 2rem 0; }
    .finance__intro a img.alignleft {
      float: left;
      margin: 0 2rem 2rem 0; }
    .finance__intro a img.aligncenter {
      display: block;
      margin-left: auto;
      margin-right: auto; }
    .finance__intro .wp-caption.alignnone {
      margin: 0 2rem 2rem 0; }
    .finance__intro .wp-caption.alignleft {
      margin: 0 2rem 2rem 0; }
    .finance__intro .wp-caption.alignright {
      margin: 0 0 2rem 2rem; }
    .finance__intro .wp-caption p.wp-caption-text {
      display: none; }
  .finance__icons {
    margin: 8rem 0 0; }
    @media only screen and (max-width: 56.25em) {
      .finance__icons {
        display: none; } }
    .finance__icons-mobile {
      margin: 0;
      margin: 1.5rem 0 0;
      display: none; }
      @media only screen and (max-width: 56.25em) {
        .finance__icons-mobile {
          display: block; } }
    .finance__icons h4 {
      color: #1238FF;
      color: var(--primary);
      margin: 0 0 6rem; }
  .finance__icons-container {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    @media only screen and (max-width: 75em) {
      .finance__icons-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        justify-items: center; } }
    .finance__icons-container a {
      margin: 0 5% 4rem 0; }
    .finance__icons-container img {
      height: 100%;
      width: auto; }
      @media only screen and (max-width: 75em) {
        .finance__icons-container img {
          height: unset;
          width: unset; } }
    .finance__icons-container-mobile {
      max-width: 90rem;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-pack: distribute;
          justify-content: space-around; }
  .finance__demande-simplifie {
    max-width: 67rem;
    padding: 4.5rem;
    margin: 0 0 3.5rem;
    border: solid 2px #1238FF;
    border: solid 2px var(--primary); }
    @media only screen and (max-width: 56.25em) {
      .finance__demande-simplifie {
        margin: 3.5rem 0;
        max-width: unset; } }
    @media only screen and (max-width: 37.5em) {
      .finance__demande-simplifie {
        margin: 1.5rem 0;
        padding: 3rem 0; } }
    @media only screen and (max-width: 37.5em) {
      .finance__demande-simplifie > * {
        padding: 0 2rem; } }
    @media only screen and (max-width: 37.5em) {
      .finance__demande-simplifie > a.btn {
        margin: 0 2rem; } }
    .finance__demande-simplifie .btn {
      padding: 1.4rem 2rem;
      color: #fff !important; }
    .finance__demande-simplifie h4 {
      padding: 0 0 2rem;
      color: #1238FF;
      color: var(--primary);
      max-width: 66rem; }
      @media only screen and (max-width: 56.25em) {
        .finance__demande-simplifie h4 {
          max-width: unset; } }
      @media only screen and (max-width: 37.5em) {
        .finance__demande-simplifie h4 {
          padding: 0 2rem 2rem; } }
    .finance__demande-simplifie p {
      padding: 0 0 3rem;
      max-width: 56rem;
      width: 100%;
      margin: 0; }
      @media only screen and (max-width: 37.5em) {
        .finance__demande-simplifie p {
          padding: 0 2rem 3rem 0;
          width: -webkit-fit-content;
          width: -moz-fit-content;
          width: fit-content; } }
      .finance__demande-simplifie p.size__h4 {
        padding: 0; }
        @media only screen and (max-width: 37.5em) {
          .finance__demande-simplifie p.size__h4 {
            padding: 0 2rem;
            width: -webkit-fit-content;
            width: -moz-fit-content;
            width: fit-content; } }
    .finance__demande-simplifie input[type=text],
    .finance__demande-simplifie input[type=email],
    .finance__demande-simplifie input[type=number] {
      margin: 1rem 0;
      max-width: 33rem; }
    .finance__demande-simplifie a {
      color: #0A0A0A !important; }
  .finance .select {
    margin: 1rem 0 0.5rem 0;
    max-width: 33.2rem; }
  @media only screen and (max-width: 37.5em) {
    .finance__demande-simplifie:nth-of-type(2) p {
      width: inherit;
      max-width: inherit; } }
  .finance__demande-simplifie:nth-of-type(3) p:last-of-type {
    color: #0A0A0A;
    padding: 0; }
  .finance__captcha {
    max-width: 34.5rem;
    width: 100%;
    height: 50px;
    margin: 1rem 0;
    background-color: #B5B5B5;
    background-color: var(--grey); }
  .finance .frm_form_fields .frm_fields_container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }
  .finance .frm-g-recaptcha {
    margin: 1rem 0; }
  .finance .frm_message {
    font-weight: 700; }
  .finance .frm_error {
    font-size: 1.2rem;
    color: #F20707; }
  .finance .frm_error_style {
    color: #F20707;
    font-weight: 700; }
  .finance fieldset {
    margin: 0;
    padding: 0; }
  .finance button {
    width: 25%;
    font-family: "D-din", Arial, sans-serif;
    font-family: var(--default);
    font-size: 1.6rem;
    font-weight: 700;
    padding: 1.4rem 2rem;
    margin: 1rem 0 0;
    background-color: #1238FF;
    background-color: var(--primary);
    cursor: pointer;
    color: #fff;
    border: none;
    text-align: center;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-transition: all .6s ease-in-out;
    transition: all .6s ease-in-out; }
    .finance button:hover {
      -webkit-transition: all .6s ease-in-out;
      transition: all .6s ease-in-out;
      background-color: #0A0A0A; }

.formulaire__container {
  width: 100%;
  display: block;
  -ms-flex-line-pack: center;
      align-content: center; }
.formulaire .select,
.formulaire .frm_primary_label {
  margin: 0 auto; }
.formulaire .select {
  max-width: inherit; }
.formulaire .frm_fields_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  justify-items: center;
  max-width: 75rem;
  width: 100%;
  margin: 0 auto; }
  .formulaire .frm_fields_container .frm_inside_container {
    position: relative; }
.formulaire .wp-editor-tools,
.formulaire .quicktags-toolbar {
  display: none; }
.formulaire_textarea .wp-editor-container {
  border: 1px solid #0A0A0A; }
.formulaire input[type=text],
.formulaire input[type=email],
.formulaire input[type=tel],
.formulaire textarea,
.formulaire .select {
  max-width: unset;
  margin: 1rem 0; }
.formulaire input[type=number] {
  margin: 1rem 0; }
.formulaire .frm_opt_container {
  display: grid;
  grid-template-columns: auto auto !important;
  grid-gap: 0 5% !important;
  -webkit-box-pack: start !important;
      -ms-flex-pack: start !important;
          justify-content: start !important;
  padding: 0 0 0.5rem 0;
  margin: 1rem 0; }
  .formulaire .frm_opt_container .frm_radio label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1rem; }
.formulaire .frm_error,
.formulaire .frm_error_style {
  color: #F20707; }
.formulaire .frm_error_style {
  margin: 0 auto;
  max-width: 75rem;
  width: 100%; }
.formulaire .frm_error {
  font-size: 1.4rem; }
  @media only screen and (max-width: 56.25em) {
    .formulaire .frm_error {
      font-size: Calc( 1.8rem * var(--font-mod) ); } }
.formulaire .frm_form_fields fieldset {
  padding: 0; }
.formulaire .frm-g-recaptcha {
  margin: 1rem 0; }
.formulaire h3 {
  color: #1238FF;
  color: var(--primary);
  margin: 3.5rem 0 !important; }
  @media only screen and (max-width: 56.25em) {
    .formulaire h3:first-of-type {
      margin: 0 0 3.5rem !important; } }
.formulaire button {
  width: 25%;
  font-family: "D-din", Arial, sans-serif;
  font-family: var(--default);
  font-size: 1.6rem;
  font-weight: 700;
  padding: 1.4rem 2rem;
  margin: 1rem 0;
  background-color: #1238FF;
  background-color: var(--primary);
  cursor: pointer;
  color: #fff;
  border: none;
  text-align: center;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all .6s ease-in-out;
  transition: all .6s ease-in-out; }
  .formulaire button:hover {
    -webkit-transition: all .6s ease-in-out;
    transition: all .6s ease-in-out;
    background-color: #0A0A0A; }
.formulaire label[for="g-recaptcha-response"] {
  display: none; }

div.frm_verify {
  position: absolute;
  left: -3000px; }

.frm_none_container .frm_primary_label {
  display: none; }

.frm_screen_reader {
  display: none !important; }

.frm_required {
  margin-left: -0.35rem; }

.ui-datepicker.frm-datepicker {
  z-index: 1 !important; }
  .ui-datepicker.frm-datepicker select.ui-datepicker-month,
  .ui-datepicker.frm-datepicker select.ui-datepicker-year {
    width: 33% !important;
    height: 2.5rem;
    padding: 0.4rem; }
  .ui-datepicker.frm-datepicker .ui-widget-header,
  .ui-datepicker.frm-datepicker .ui-datepicker-header {
    background-color: #5D5E65 !important;
    background-color: var(--dark-grey) !important;
    color: #fff !important; }
  .ui-datepicker.frm-datepicker td.ui-datepicker-current-day,
  .ui-datepicker.frm-datepicker td .ui-state-hover,
  .ui-datepicker.frm-datepicker td .ui-state-active,
  .ui-datepicker.frm-datepicker thead {
    background-color: #1238FF !important;
    background-color: var(--primary) !important;
    color: #fff !important; }

.formulaire .frm_error_style p,
.formulaire .frm_message p {
  font-weight: 700; }

.custom-gutenberg .formulaire .frm_error_style p,
.custom-gutenberg .formulaire .frm_message p {
  margin: 2rem 0 0 0; }
.custom-gutenberg .formulaire .frm_message {
  max-width: 75rem;
  width: 100%;
  margin: 0px auto; }

.custom-gutenberg h1, .custom-gutenberg h2, .custom-gutenberg h3, .custom-gutenberg h4, .custom-gutenberg h5, .custom-gutenberg h6 {
  margin: 0.5rem 0 2rem 0; }
.custom-gutenberg h1 {
  font-size: Calc( 3.6rem * var(--font-mod) );
  font-weight: 700;
  color: #1238FF;
  color: var(--primary); }
.custom-gutenberg p {
  padding: 0;
  margin: 2rem 0; }
.custom-gutenberg a {
  color: #1238FF;
  color: var(--primary); }
  .custom-gutenberg a:hover, .custom-gutenberg a:focus {
    color: #128DFF;
    color: var(--secondary); }
.custom-gutenberg ul li {
  list-style-type: none; }
.custom-gutenberg ul li::before {
  content: "\2022";
  color: #1238FF;
  color: var(--primary);
  font-weight: bold;
  display: inline-block;
  width: 1rem;
  margin-left: -1rem; }
.custom-gutenberg ul, .custom-gutenberg ol {
  padding: 0 0 0 5rem;
  margin: 2rem 0; }
.custom-gutenberg ol li {
  list-style-type: decimal; }
.custom-gutenberg ol li::marker {
  color: #1238FF;
  color: var(--primary); }
.custom-gutenberg img {
  margin: 2rem 0; }
.custom-gutenberg figcaption {
  font-size: 1.2rem; }
.custom-gutenberg .btn {
  color: #fff !important; }
  .custom-gutenberg .btn:hover {
    color: #fff !important; }

.icons {
  width: 95%;
  max-width: 156rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
  padding: 7rem 0; }
  @media only screen and (max-width: 56.25em) {
    .icons {
      padding: 7rem 0 0; } }
  .icons h4 {
    color: #0A0A0A; }
  @media only screen and (max-width: 37.5em) {
    .icons {
      display: none; } }
  .icons__container {
    max-width: 131.5rem;
    width: 90%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
    @media only screen and (max-width: 56.25em) {
      .icons__container {
        -ms-flex-pack: distribute;
            justify-content: space-around;
        width: 100%; } }
  .icons__body {
    cursor: pointer;
    width: 25%; }
  .icons__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
  .icons__bgimage {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 15rem;
    width: 15rem;
    background-color: rgba(72, 95, 199, 0.25);
    background-color: var(--focus-color);
    border-radius: 50%;
    -webkit-transition: 0.5s ease;
    transition: 0.5s ease; }
    @media only screen and (max-width: 56.25em) {
      .icons__bgimage {
        height: 10rem;
        width: 10rem; } }
    .icons__bgimage:hover {
      background-color: #1238FF;
      background-color: var(--primary); }
      .icons__bgimage:hover img {
        -webkit-filter: invert(0%) sepia(93%) saturate(28%) hue-rotate(110deg) brightness(90%) contrast(106%);
                filter: invert(0%) sepia(93%) saturate(28%) hue-rotate(110deg) brightness(90%) contrast(106%);
        -webkit-filter: var(--white-filter);
                filter: var(--white-filter); }
    .icons__bgimage img {
      -webkit-filter: invert(12%) sepia(96%) saturate(6736%) hue-rotate(239deg) brightness(101%) contrast(101%);
              filter: invert(12%) sepia(96%) saturate(6736%) hue-rotate(239deg) brightness(101%) contrast(101%);
      -webkit-filter: var(--primary-filter);
              filter: var(--primary-filter);
      width: 9rem; }
      @media only screen and (max-width: 56.25em) {
        .icons__bgimage img {
          width: 6rem; } }
  .icons__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
    padding: 1rem 1rem 0; }
    .icons__content h4 {
      max-width: 20rem;
      font-size: Calc( 2.4rem * var(--font-mod) ); }
      @media only screen and (max-width: 75em) {
        .icons__content h4 {
          font-size: Calc( 2rem * var(--font-mod) ); } }
      @media only screen and (max-width: 56.25em) {
        .icons__content h4 {
          font-size: 1.6rem; } }

.inventaire {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  margin: 0 auto 7rem; }
  .inventaire-block, .inventaire .container {
    display: block; }
  @media only screen and (max-width: 56.25em) {
    .inventaire {
      overflow: hidden;
      width: 100%; } }
  .inventaire__left, .inventaire__right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 3.5rem 0 0 0; }
  .inventaire__left {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    border-style: solid;
    border-color: #DBDBDB;
    border-width: 0 1px;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    -webkit-transition: 0.2s ease-out;
    transition: 0.2s ease-out; }
    @media only screen and (max-width: 56.25em) {
      .inventaire__left {
        position: absolute;
        -webkit-box-flex: 0;
            -ms-flex: 0 0 0px;
                flex: 0 0 0;
        width: 100%;
        height: 100%;
        background-color: #fff;
        -webkit-transform: translateX(-100%);
                transform: translateX(-100%);
        -webkit-transition: 0.2s ease-in;
        transition: 0.2s ease-in;
        z-index: 100; } }
    @media only screen and (max-width: 37.5em) {
      .inventaire__left {
        padding: 0; } }
    @media only screen and (max-width: 56.25em) {
      .inventaire__left-active {
        -webkit-transform: translateX(0);
                transform: translateX(0);
        position: initial; } }
    .inventaire__left__title {
      width: 82%;
      margin: 0 auto;
      padding: 0 0 5rem 0; }
      @media only screen and (max-width: 56.25em) {
        .inventaire__left__title {
          position: relative;
          width: 75%;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
              -ms-flex-align: center;
                  align-items: center;
          -webkit-box-pack: justify;
              -ms-flex-pack: justify;
                  justify-content: space-between; } }
      @media only screen and (max-width: 37.5em) {
        .inventaire__left__title {
          padding: 4rem 0; } }
      .inventaire__left__title h4 {
        position: relative;
        display: inline-block; }
        .inventaire__left__title h4::after {
          content: '';
          background-color: #B5B5B5;
          position: absolute;
          display: inline-block;
          width: 12rem;
          height: 3px;
          left: 0;
          bottom: -1.7rem; }
    @media only screen and (max-width: 56.25em) {
      .inventaire__left__close {
        position: relative; } }
    @media only screen and (max-width: 56.25em) {
      .inventaire__left__close::before, .inventaire__left__close::after {
        content: '';
        position: absolute;
        width: 2.8rem;
        height: 0.25rem;
        background-color: #0A0A0A;
        -webkit-transition: all .5s ease-in-out;
        transition: all .5s ease-in-out; } }
    @media only screen and (max-width: 56.25em) {
      .inventaire__left__close::before {
        -webkit-transform: rotate(-45deg) translate(-12px, -12px);
                transform: rotate(-45deg) translate(-12px, -12px); } }
    @media only screen and (max-width: 56.25em) {
      .inventaire__left__close::after {
        -webkit-transform: rotate(45deg) translate(-12px, 12px);
                transform: rotate(45deg) translate(-12px, 12px); } }
    .inventaire__left__items {
      padding: 2.5rem 0 0;
      border-bottom: 1px solid #DBDBDB; }
    .inventaire__left__first-items {
      padding: 0;
      border-bottom: 1px solid #DBDBDB; }
    .inventaire__left__accord {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      cursor: pointer; }
      .inventaire__left__accord-title {
        position: relative;
        width: 75%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        -webkit-transition: 500ms ease-out;
        transition: 500ms ease-out;
        text-transform: uppercase; }
        .inventaire__left__accord-title::after, .inventaire__left__accord-title::before {
          position: absolute;
          content: " ";
          display: inline-block;
          cursor: pointer;
          width: 1.6rem;
          height: 2px;
          background-color: #1238FF;
          background-color: var(--primary);
          border: none;
          right: 0; }
        .inventaire__left__accord-title::after {
          -webkit-transform: rotate(0);
                  transform: rotate(0); }
        .inventaire__left__accord-title::before {
          -webkit-transform: rotate(90deg);
                  transform: rotate(90deg);
          opacity: 1;
          -webkit-transition: 500ms ease-out;
          transition: 500ms ease-out; }
        @media only screen and (max-width: 75em) {
          .inventaire__left__accord-title .size__h6 {
            width: 90%; } }
        .inventaire__left__accord-title-active {
          position: relative;
          -webkit-transition: 500ms ease-in;
          transition: 500ms ease-in; }
          .inventaire__left__accord-title-active::before {
            -webkit-transform: rotate(0);
                    transform: rotate(0);
            opacity: 0;
            -webkit-transition: 500ms ease-in;
            transition: 500ms ease-in; }
      .inventaire__left__accord-content {
        width: 75%;
        max-height: 0;
        overflow: hidden;
        -webkit-transition: all 500ms ease-in;
        transition: all 500ms ease-in;
        padding: 2.5rem 0 0; }
        .inventaire__left__accord-content-active {
          max-height: 100%;
          -webkit-transition: all 500ms ease-out;
          transition: all 500ms ease-out; }
      .inventaire__left__accord-wrapper {
        display: grid;
        grid-template-columns: repeat(2, 1fr); }
      .inventaire__left__accord-text {
        margin: 0.1rem 0 2.5rem;
        -webkit-transition: 0.75s ease-in-out;
        transition: 0.75s ease-in-out; }
        .inventaire__left__accord-text input[type=text] {
          max-width: inherit;
          width: 99%; }
      .inventaire__left__accord-number {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        gap: 2.5rem;
        margin: 0 0 2.5rem;
        -webkit-transition: 0.75s ease-in-out;
        transition: 0.75s ease-in-out; }
        .inventaire__left__accord-number input[type=number],
        .inventaire__left__accord-number input[type=money] {
          max-width: inherit;
          width: 45%;
          -moz-appearance: textfield; }
        .inventaire__left__accord-number input::-webkit-outer-spin-button,
        .inventaire__left__accord-number input::-webkit-inner-spin-button {
          -webkit-appearance: none; }
      .inventaire__left__accord-checkbox {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-pack: start;
            -ms-flex-pack: start;
                justify-content: flex-start;
        gap: 0.75rem;
        padding: 0.2rem 0 0;
        margin: 0 0 1rem; }
        @media only screen and (max-width: 90em) {
          .inventaire__left__accord-checkbox {
            padding: 0.3rem 0 0; } }
        .inventaire__left__accord-checkbox label {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
              -ms-flex-align: center;
                  align-items: center;
          font-size: 1.6rem;
          line-height: 1.1;
          color: #0A0A0A;
          gap: 0.5rem; }
          .inventaire__left__accord-checkbox label input[type=checkbox] {
            border: 0.15rem solid #1238FF;
            border: 0.15rem solid var(--primary); }
          .inventaire__left__accord-checkbox label span {
            color: #1238FF;
            color: var(--primary); }
        .inventaire__left__accord-checkbox-color label {
          cursor: pointer; }
        .inventaire__left__accord-checkbox-color input[type=checkbox] {
          border-radius: 50%;
          width: 2rem;
          height: 2rem;
          border: 0.15rem solid #DBDBDB !important; }
          .inventaire__left__accord-checkbox-color input[type=checkbox]::before {
            border: none; }
          .inventaire__left__accord-checkbox-color input[type=checkbox]:checked {
            border: 0.2rem solid #1238FF !important;
            border: 0.2rem solid var(--primary) !important; }
          .inventaire__left__accord-checkbox-color input[type=checkbox]:checked::before {
            -webkit-transform: none;
                    transform: none; }
        .inventaire__left__accord-checkbox:last-child {
          margin: 0 0 2.5rem; }
        .inventaire__left__accord-checkbox-bold {
          font-weight: 700; }
      .inventaire__left__accord-dropdown {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-pack: start;
            -ms-flex-pack: start;
                justify-content: flex-start;
        gap: 1rem;
        padding: 0.2rem 0 0;
        margin: 0 0 2.5rem; }
        .inventaire__left__accord-dropdown .select {
          max-width: inherit;
          width: 100%; }
      .inventaire__left__accord-range {
        padding: 0.2rem 0 0; }
    .inventaire__left-btn {
      width: 100%; }
      @media only screen and (max-width: 56.25em) {
        .inventaire__left-btn {
          display: none; } }
      .inventaire__left-btn-fixed {
        display: none; }
        @media only screen and (max-width: 56.25em) {
          .inventaire__left-btn-fixed {
            position: -webkit-sticky;
            position: sticky;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 2;
            padding: 1rem 0;
            margin: 2rem 0;
            background: repeating-linear-gradient(135deg, #1238FF 0rem, #1238FF 0.2rem, #fff 0.2rem, #fff 1.2rem);
            background: repeating-linear-gradient(135deg, var(--primary) 0rem, var(--primary) 0.2rem, #fff 0.2rem, #fff 1.2rem); } }
        @media only screen and (max-width: 56.25em) {
          .inventaire__left-btn-fixed-block {
            display: block; } }
        .inventaire__left-btn-fixed .btn__large {
          height: 6rem;
          padding: 0 1.5rem;
          font-size: Calc( 2rem * var(--font-mod) ); }
          @media only screen and (max-width: 56.25em) {
            .inventaire__left-btn-fixed .btn__large {
              width: 45%;
              -webkit-box-pack: center;
                  -ms-flex-pack: center;
                      justify-content: center; } }
          @media only screen and (max-width: 37.5em) {
            .inventaire__left-btn-fixed .btn__large {
              padding: 0 1rem;
              font-size: 1.6rem;
              -webkit-box-pack: center;
                  -ms-flex-pack: center;
                      justify-content: center; } }
      .inventaire__left-btn .btn__large {
        height: 6rem;
        padding: 0 1.5rem;
        font-size: Calc( 2rem * var(--font-mod) ); }
        @media only screen and (max-width: 56.25em) {
          .inventaire__left-btn .btn__large {
            width: 45%;
            -webkit-box-pack: center;
                -ms-flex-pack: center;
                    justify-content: center; } }
        @media only screen and (max-width: 37.5em) {
          .inventaire__left-btn .btn__large {
            padding: 0 1rem;
            font-size: 1.6rem;
            -webkit-box-pack: center;
                -ms-flex-pack: center;
                    justify-content: center;
            margin: 0 0.5rem 0 0; } }
      .inventaire__left-btn-content {
        width: 85%;
        margin: 2.5rem auto; }
        @media only screen and (max-width: 56.25em) {
          .inventaire__left-btn-content {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -ms-flex-pack: distribute;
                justify-content: space-around;
            -webkit-box-align: center;
                -ms-flex-align: center;
                    align-items: center;
            width: 95%;
            margin: 0 auto; } }
    .inventaire__left-counter {
      display: none; }
      @media only screen and (max-width: 56.25em) {
        .inventaire__left-counter {
          width: 45%;
          position: relative;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
              -ms-flex-align: center;
                  align-items: center;
          -webkit-box-pack: center;
              -ms-flex-pack: center;
                  justify-content: center;
          text-transform: uppercase;
          font-weight: 700;
          padding: 0 1rem;
          height: 6rem;
          background-color: #fff;
          color: #1238FF;
          color: var(--primary);
          font-size: Calc( 2.4rem * var(--font-mod) );
          cursor: pointer; }
          .inventaire__left-counter:hover {
            background-color: #0A0A0A;
            -webkit-transition: all .6s ease-in-out;
            transition: all .6s ease-in-out; } }
      @media only screen and (max-width: 37.5em) {
        .inventaire__left-counter {
          font-size: 1.6rem;
          margin: 0 0 0 0.5rem; } }
      .inventaire__left-counter i {
        margin: 0 0 0 2rem; }
        .inventaire__left-counter i::before {
          content: "";
          display: block;
          width: 8px;
          height: 8px;
          -webkit-transition: 0.3s;
          transition: 0.3s;
          -webkit-transform: rotate(45deg);
                  transform: rotate(45deg);
          border: solid #1238FF;
          border: solid var(--primary);
          border-width: 2px 2px 0 0; }
  .inventaire__right {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%; }
    @media only screen and (max-width: 56.25em) {
      .inventaire__right {
        -webkit-box-flex: 0;
            -ms-flex: 0 0 95%;
                flex: 0 0 95%;
        margin: 0 auto; } }
    @media only screen and (max-width: 56.25em) {
      .inventaire__right__position {
        width: 100%;
        height: 7rem;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex; }
        .inventaire__right__position_fixed {
          border-top: 2rem solid #fff;
          background-color: #F5F5F5;
          position: fixed;
          padding: 0 2rem;
          left: 0;
          top: 58px;
          z-index: 1; } }
    .inventaire__right__content {
      width: 95%;
      margin: 0 0 0 auto;
      max-width: 110.8rem; }
      @media only screen and (max-width: 56.25em) {
        .inventaire__right__content {
          width: 80%;
          margin: 0 auto; } }
      @media only screen and (max-width: 37.5em) {
        .inventaire__right__content {
          width: 95%; } }
      .inventaire__right__content-none {
        display: none; }
    .inventaire__right__header {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: end;
          -ms-flex-pack: end;
              justify-content: flex-end;
      padding: 0 0 2.5rem;
      gap: 3rem; }
      @media only screen and (max-width: 56.25em) {
        .inventaire__right__header {
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
              -ms-flex-direction: column;
                  flex-direction: column;
          -webkit-box-pack: start;
              -ms-flex-pack: start;
                  justify-content: flex-start;
          gap: 1rem; } }
    .inventaire__right .select {
      max-width: 25rem; }
      @media only screen and (max-width: 37.5em) {
        .inventaire__right .select {
          max-width: inherit; } }
    .inventaire__right__view-cnt {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      gap: 1rem;
      padding: 0 1.25rem;
      cursor: pointer;
      text-transform: uppercase;
      -webkit-transition: 0.25s ease-in;
      transition: 0.25s ease-in; }
      .inventaire__right__view-cnt i {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center; }
        .inventaire__right__view-cnt i img {
          -webkit-filter: invert(12%) sepia(96%) saturate(6736%) hue-rotate(239deg) brightness(101%) contrast(101%);
                  filter: invert(12%) sepia(96%) saturate(6736%) hue-rotate(239deg) brightness(101%) contrast(101%);
          -webkit-filter: var(--primary-filter);
                  filter: var(--primary-filter); }
      .inventaire__right__view-cnt p {
        margin: 0.25rem 0 0; }
      .inventaire__right__view-cnt:hover, .inventaire__right__view-cnt-active {
        background-color: #F5F5F5;
        background-color: var(--light-grey);
        -webkit-transition: 0.25s ease-out;
        transition: 0.25s ease-out; }
      @media only screen and (max-width: 56.25em) {
        .inventaire__right__view-cnt {
          display: none; }
          .inventaire__right__view-cnt:hover, .inventaire__right__view-cnt-active {
            background-color: #fff; } }
    .inventaire__right #filtre {
      display: none; }
      @media only screen and (max-width: 56.25em) {
        .inventaire__right #filtre {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          width: 80%;
          margin: 0 auto; } }
      @media only screen and (max-width: 37.5em) {
        .inventaire__right #filtre {
          width: 95%; } }
    .inventaire__right label {
      font-size: Calc( 2rem * var(--font-mod) );
      line-height: Calc( 2.4rem * var(--font-mod) );
      margin: 1.2rem 0 0 0; }
    .inventaire__right__grid {
      display: grid;
      justify-items: flex-end;
      padding: 1rem 0 3rem;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem; }
      @media only screen and (max-width: 75em) {
        .inventaire__right__grid {
          grid-template-columns: repeat(2, 1fr); } }
      @media only screen and (max-width: 37.5em) {
        .inventaire__right__grid {
          grid-template-columns: repeat(1, 1fr);
          justify-items: center; } }
      .inventaire__right__grid-list {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        gap: 2rem;
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: flex-start; }
        @media only screen and (max-width: 56.25em) {
          .inventaire__right__grid-list {
            display: grid;
            justify-items: flex-end;
            padding: 1rem 0;
            grid-template-columns: repeat(2, 1fr); } }
        @media only screen and (max-width: 37.5em) {
          .inventaire__right__grid-list {
            display: grid;
            grid-template-columns: repeat(1, 1fr);
            justify-items: center; } }
      .inventaire__right__grid-none {
        display: none; }
  .inventaire__notice {
    margin: 2rem 0; }
  .inventaire__pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 0.5rem;
    margin: 2.5rem 0 4rem; }
    .inventaire__pagination .btn {
      background-color: #fff;
      color: #0A0A0A;
      border: 1px solid #0A0A0A;
      font-weight: 400; }
      .inventaire__pagination .btn:hover, .inventaire__pagination .btn-active {
        background-color: #1238FF;
        background-color: var(--primary);
        border: 1px solid #1238FF;
        border: 1px solid var(--primary);
        color: #fff; }
  .inventaire__loading-content, .inventaire__error-content {
    margin: 5rem 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    color: #1238FF;
    color: var(--primary); }
    @media only screen and (max-width: 37.5em) {
      .inventaire__loading-content, .inventaire__error-content {
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column; } }

@-webkit-keyframes open {
  0% {
    max-height: 0%; }
  50% {
    max-height: 50%; }
  100% {
    max-height: 100%; } }

@keyframes open {
  0% {
    max-height: 0%; }
  50% {
    max-height: 50%; }
  100% {
    max-height: 100%; } }
@-webkit-keyframes close {
  0% {
    max-height: 100%; }
  50% {
    max-height: 50%; }
  100% {
    max-height: 0%; } }
@keyframes close {
  0% {
    max-height: 100%; }
  50% {
    max-height: 50%; }
  100% {
    max-height: 0%; } }
.active-filter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
  .active-filter__container {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 1rem auto; }
  .active-filter__item {
    position: relative;
    cursor: pointer;
    background-color: transparent;
    -webkit-transition: 0.5s ease-in;
    transition: 0.5s ease-in;
    padding: 1rem 2rem 1rem 1rem;
    border: #1238FF solid 1px;
    border: var(--primary) solid 1px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    color: #0A0A0A;
    margin: 0.5rem 1rem 0.5rem 0; }
    .active-filter__item::after, .active-filter__item::before {
      position: absolute;
      content: " ";
      display: inline-block;
      cursor: pointer;
      width: 2rem;
      height: 2px;
      background-color: #1238FF;
      background-color: var(--primary);
      border: none;
      right: 8.5px; }
    .active-filter__item::after {
      -webkit-transform: rotate(45deg);
              transform: rotate(45deg); }
    .active-filter__item::before {
      -webkit-transform: rotate(135deg);
              transform: rotate(135deg); }
    .active-filter__item:hover {
      background-color: #DBDBDB;
      -webkit-transition: 0.5s ease-out;
      transition: 0.5s ease-out; }
    .active-filter__item-close {
      margin: 0 0.5rem; }
    .active-filter__item-title {
      margin: 0 0.25rem 0 0; }
    .active-filter__item-label {
      margin: 0 0.5rem 0 0; }
    @media only screen and (max-width: 90em) {
      .active-filter__item {
        padding: 1.1rem 2rem 1.15rem 1.5rem;
        margin: 0.5rem 1rem 0.5rem 0; } }
    @media only screen and (max-width: 75em) {
      .active-filter__item {
        padding: 1.2rem 2rem 1.25rem 1.5rem;
        margin: 0.5rem 1rem 0.5rem 0; } }
    @media only screen and (max-width: 56.25em) {
      .active-filter__item {
        padding: 1.25rem 2rem 1.25rem 1.5rem;
        margin: 0.5rem 1rem 0.5rem 0; } }
    @media only screen and (max-width: 37.5em) {
      .active-filter__item {
        padding: 1.25rem 2rem 1.25rem 1.5rem;
        margin: 0.5rem 1rem 0.5rem 0; } }
    .active-filter__item-invalid {
      cursor: default;
      border: #B5B5B5 solid 1px;
      color: #B5B5B5;
      background-color: #F5F5F5;
      padding: 1rem 1.5rem; }
      .active-filter__item-invalid::after, .active-filter__item-invalid::before {
        display: none; }
      @media only screen and (max-width: 90em) {
        .active-filter__item-invalid {
          padding: 1.1rem 1.5rem; } }
      @media only screen and (max-width: 75em) {
        .active-filter__item-invalid {
          padding: 1.2rem 1.5rem; } }
      @media only screen and (max-width: 56.25em) {
        .active-filter__item-invalid {
          padding: 1.25rem 1.5rem; } }
      @media only screen and (max-width: 37.5em) {
        .active-filter__item-invalid {
          padding: 1.25rem 1.5rem; } }
      .active-filter__item-invalid .active-filter__item-close {
        margin: 0; }
      .active-filter__item-invalid .active-filter__item-label {
        margin: 0 0 0 0.5rem; }
  .active-filter__trash {
    cursor: pointer;
    background-color: transparent;
    -webkit-transition: 0.5s ease-in;
    transition: 0.5s ease-in;
    padding: 1rem 1.1rem;
    border: #1238FF solid 1px;
    border: var(--primary) solid 1px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 0 1rem 0 0; }
    .active-filter__trash:hover {
      background-color: #DBDBDB;
      -webkit-transition: 0.5s ease-out;
      transition: 0.5s ease-out; }
    .active-filter__trash img {
      -webkit-filter: invert(12%) sepia(96%) saturate(6736%) hue-rotate(239deg) brightness(101%) contrast(101%);
              filter: invert(12%) sepia(96%) saturate(6736%) hue-rotate(239deg) brightness(101%) contrast(101%);
      -webkit-filter: var(--primary-filter);
              filter: var(--primary-filter); }

.new-car {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 95%;
  margin: 0 auto;
  padding: 6rem 0; }
  @media only screen and (max-width: 37.5em) {
    .new-car {
      padding: 2.5rem 0; } }
  .new-car__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    margin: 0 auto;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    @media only screen and (max-width: 75em) {
      .new-car__header {
        width: 95%; } }
    @media only screen and (max-width: 37.5em) {
      .new-car__header {
        width: 100%; } }
    .new-car__header .special-link {
      margin: 0 5% 0 0;
      color: #1238FF;
      color: var(--primary);
      -webkit-transition: all 0.5s ease-in-out;
      transition: all 0.5s ease-in-out;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center; }
      .new-car__header .special-link:hover {
        color: #0A0A0A;
        -webkit-transition: all 0.5s ease-in-out;
        transition: all 0.5s ease-in-out; }
      .new-car__header .special-link::after, .new-car__header .special-link::before {
        right: -30%; }
      .new-car__header .special-link::after {
        width: 2.8rem; }
      @media only screen and (max-width: 75em) {
        .new-car__header .special-link {
          margin: 0 7% 0 0; } }
      @media only screen and (max-width: 56.25em) {
        .new-car__header .special-link {
          display: none; } }
  .new-car__title {
    width: 100%;
    background-color: #1238FF;
    background-color: var(--primary);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%; }
    @media only screen and (max-width: 67.625em) {
      .new-car__title {
        -webkit-box-flex: 0;
            -ms-flex: 0 0 50%;
                flex: 0 0 50%; } }
    @media only screen and (max-width: 37.5em) {
      .new-car__title {
        max-width: inherit;
        height: inherit;
        -webkit-box-flex: 0;
            -ms-flex: 0 0 100%;
                flex: 0 0 100%;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center; } }
    .new-car__title h3 {
      font-size: Calc( 2.8rem * var(--font-mod) );
      padding: 2rem 3.5rem;
      color: #fff; }
      @media only screen and (max-width: 75em) {
        .new-car__title h3 {
          font-size: Calc( 2.6rem * var(--font-mod) ); } }
      @media only screen and (max-width: 67.625em) {
        .new-car__title h3 {
          font-size: Calc( 2.8rem * var(--font-mod) ); } }
      @media only screen and (max-width: 37.5em) {
        .new-car__title h3 {
          font-size: Calc( 4.4rem * var(--font-mod) );
          text-align: center; } }
  .new-car__inventaires {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    margin: 0 auto; }
    @media only screen and (max-width: 75em) {
      .new-car__inventaires {
        width: 95%; } }
    @media only screen and (max-width: 37.5em) {
      .new-car__inventaires {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        width: 100%; } }
    .new-car__inventaires .cards-default__header {
      padding-top: 66%; }
    .new-car__inventaires .cards-default__container {
      -webkit-box-pack: start;
          -ms-flex-pack: start;
              justify-content: flex-start;
      -webkit-transition: none;
      transition: none;
      -webkit-box-flex: 0;
          -ms-flex: 0 0 25%;
              flex: 0 0 25%; }
    @media only screen and (max-width: 37.5em) {
      .new-car__inventaires .cards-default__content {
        margin: 1.4rem 2.4rem 2.4rem; } }
    @media only screen and (max-width: 75em) {
      .new-car__inventaires .cards-default__info p {
        font-size: Calc( 2.4rem * var(--font-mod) ); } }
    @media only screen and (max-width: 56.25em) {
      .new-car__inventaires .cards-default__info p {
        font-size: Calc( 1.8rem * var(--font-mod) ); } }
    @media only screen and (max-width: 37.5em) {
      .new-car__inventaires .cards-default__info p {
        font-size: Calc( 2.6rem * var(--font-mod) ); } }
    @media only screen and (max-width: 56.25em) {
      .new-car__inventaires .cards-default__odo p {
        margin: 0; } }
  .new-car__border {
    display: none; }
    @media only screen and (max-width: 37.5em) {
      .new-car__border {
        border: 2px solid #1238FF;
        border: 2px solid var(--primary);
        padding: 1.5rem 7rem 1.5rem 1.5rem;
        margin: 0 auto;
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex; }
        .new-car__border .special-link {
          color: #1238FF;
          color: var(--primary);
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
              -ms-flex-align: center;
                  align-items: center; }
          .new-car__border .special-link::before {
            right: -5.25rem; }
          .new-car__border .special-link::after {
            width: 3rem;
            height: 0.25rem;
            right: -5.5rem; } }

.open-hours {
  position: relative;
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 3rem 0 0; }
  @media only screen and (max-width: 75em) {
    .open-hours {
      min-height: 56rem; } }
  @media only screen and (max-width: 56.25em) {
    .open-hours {
      min-height: 57rem; } }
  @media only screen and (max-width: 37.5em) {
    .open-hours {
      min-height: 100%; } }
  .open-hours__left {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    height: 100%;
    max-width: 66rem; }
    @media only screen and (max-width: 37.5em) {
      .open-hours__left {
        -webkit-box-flex: 100%;
            -ms-flex: 100%;
                flex: 100%;
        max-width: none; } }
  .open-hours__right {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background-color: #F5F5F5;
    background-color: var(--light-grey); }
    @media only screen and (max-width: 37.5em) {
      .open-hours__right {
        display: none; } }
    .open-hours__right iframe {
      padding: 0 !important; }
  .open-hours__container {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border: 5rem solid #1238FF;
    border: 5rem solid var(--primary);
    z-index: 0;
    height: 100%;
    min-height: 61rem; }
    @media only screen and (max-width: 56.25em) {
      .open-hours__container {
        border: 3rem solid #1238FF;
        border: 3rem solid var(--primary); } }
    @media only screen and (max-width: 37.5em) {
      .open-hours__container {
        position: initial;
        left: 4%;
        width: 100%;
        max-width: inherit;
        min-height: auto;
        border: 2.2rem solid #1238FF;
        border: 2.2rem solid var(--primary); } }
  .open-hours__content {
    max-width: 66rem;
    background-color: #fff;
    padding: 5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start; }
    @media only screen and (max-width: 75em) {
      .open-hours__content {
        padding: 2.5rem; } }
    .open-hours__content-nohours {
      min-height: 42rem;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center; }
      @media only screen and (max-width: 56.25em) {
        .open-hours__content-nohours {
          min-height: 45rem; } }
      @media only screen and (max-width: 37.5em) {
        .open-hours__content-nohours {
          min-height: 33rem; } }
      @media only screen and (max-width: 75em) {
        .open-hours__content-nohours ul {
          padding: 0 !important; } }
  @media only screen and (max-width: 56.25em) {
    .open-hours h2 {
      margin: 1rem 0; } }
  .open-hours__list-container {
    padding: 5rem 0 0;
    margin: 0;
    max-width: 66rem;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between; }
    @media only screen and (max-width: 75em) {
      .open-hours__list-container {
        padding: 4rem 0 2rem; } }
    @media only screen and (max-width: 56.25em) {
      .open-hours__list-container {
        padding: 2.5rem 0; } }
    @media only screen and (max-width: 37.5em) {
      .open-hours__list-container {
        padding: 2rem 0;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column; } }
  .open-hours__list {
    margin: 0;
    display: inline-block;
    width: 100%; }
    .open-hours__list h4 {
      margin: 0 0 0.5rem 0;
      color: #1238FF;
      color: var(--primary); }
    .open-hours__list ul {
      padding: 0 0 5rem;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column; }
      @media only screen and (max-width: 75em) {
        .open-hours__list ul {
          padding: 0 0 2rem; } }
      .open-hours__list ul li {
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        margin: 0 0 0.85rem;
        width: 90%; }
        .open-hours__list ul li > div {
          padding-right: 1rem; }
        @media only screen and (max-width: 75em) {
          .open-hours__list ul li span {
            font-size: Calc( 1.8rem * var(--font-mod) ); } }
        @media only screen and (max-width: 56.25em) {
          .open-hours__list ul li span {
            font-size: Calc( 2rem * var(--font-mod) ); } }
        .open-hours__list ul li span {
          margin: 0 0 0 auto;
          width: 70%; }
        .open-hours__list ul li:last-of-type {
          margin: 0; }
    .open-hours__list:nth-of-type(2) li {
      width: 100%; }
  .open-hours__list-container:not(.multischedule) li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%; }
  .open-hours__btn {
    margin: 0 1rem 0 0;
    padding: 1.4rem 3.2rem; }
    @media only screen and (max-width: 75em) {
      .open-hours__btn {
        padding: 1.4rem 2.2rem; } }
    @media only screen and (max-width: 56.25em) {
      .open-hours__btn {
        margin: 0 0.5rem 0 0;
        padding: 1.4rem 1.2rem; } }
    @media only screen and (max-width: 37.5em) {
      .open-hours__btn {
        margin: 0 0 1rem;
        padding: 1.4rem 2.2rem;
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content; } }
  .open-hours__btn:last-of-type {
    color: #1238FF;
    color: var(--primary); }
    .open-hours__btn:last-of-type:hover {
      color: #fff;
      background-color: #1238FF;
      background-color: var(--primary); }

.page {
  width: 95%;
  max-width: 156rem;
  margin: 0 auto;
  padding: 3rem 0 6rem; }
  @media only screen and (max-width: 56.25em) {
    .page {
      padding: 3rem 0; } }
  .page__title h4 {
    color: #1238FF;
    color: var(--primary);
    margin: 6rem 0; }
  .page__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between; }
    @media only screen and (max-width: 56.25em) {
      .page__container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column; } }
    @media only screen and (max-width: 75em) {
      .page__container ul, .page__container ol, .page__container li, .page__container pre {
        font-size: Calc( 2rem * var(--font-mod) ); } }
  .page__col {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    margin: 0 0 5rem 0; }
    .page__col p {
      padding: 1.5rem 0; }
    .page__col .btn {
      height: 3.5rem; }
      @media only screen and (max-width: 37.5em) {
        .page__col .btn {
          font-size: Calc( 2.4rem * var(--font-mod) ); } }
  .page__single {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%; }
    @media only screen and (max-width: 37.5em) {
      .page__single {
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center; } }
    @media only screen and (max-width: 75em) {
      .page__single img {
        width: 50%; } }
    @media only screen and (max-width: 56.25em) {
      .page__single img {
        width: 100%;
        margin: 1.25rem 0 2rem !important; } }
  .page__image {
    max-width: 64rem;
    width: 100%;
    margin: 0 0 0 auto; }
    @media only screen and (max-width: 75em) {
      .page__image {
        width: 100%; } }
    @media only screen and (max-width: 56.25em) {
      .page__image {
        margin: 0 auto; } }
    .page__image img {
      width: 100%;
      height: auto; }

.modal {
  position: fixed;
  z-index: 101;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden; }
  .modal__container {
    background-color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 65rem;
    max-height: 45rem;
    width: 100%;
    height: 100%; }
    @media only screen and (min-width: 105em) {
      .modal__container {
        max-width: 70rem;
        max-height: 50rem; } }
    @media only screen and (max-width: 37.5em) {
      .modal__container {
        max-width: 40rem;
        max-height: 30rem; } }
  .modal__image {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    width: 100%;
    overflow: hidden;
    position: relative; }
    .modal__image img {
      height: 100%;
      width: 100%;
      position: absolute;
      -o-object-fit: cover;
         object-fit: cover;
      -o-object-position: center;
         object-position: center; }
  .modal__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    position: relative; }
  .modal__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0 2rem 0 4rem;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%; }
    @media only screen and (min-width: 105em) {
      .modal__content {
        padding: 0 4rem; } }
    @media only screen and (max-width: 37.5em) {
      .modal__content {
        width: 17.6rem;
        margin: 0 1.2rem;
        padding: 2rem 0 1rem; } }
    .modal__content p {
      font-size: Calc( 2rem * var(--font-mod) );
      margin: 0 0 3rem; }
      @media only screen and (max-width: 37.5em) {
        .modal__content p {
          font-size: Calc( 1.8rem * var(--font-mod) );
          margin: 0 0 1rem; } }
    .modal__content h2 {
      color: #1238FF;
      color: var(--primary);
      font-size: Calc( 3.6rem * var(--font-mod) );
      margin: 0 0 4rem;
      word-break: break-word; }
      @media only screen and (min-width: 105em) {
        .modal__content h2 {
          font-size: Calc( 4.4rem * var(--font-mod) ); } }
      @media only screen and (max-width: 37.5em) {
        .modal__content h2 {
          font-size: Calc( 2.6rem * var(--font-mod) );
          letter-spacing: inherit;
          margin: 0 0 2rem; } }
  .modal__close-button {
    cursor: pointer;
    width: 3rem;
    padding: 1.5rem 0;
    margin: 3rem 3rem 0 0;
    position: absolute;
    right: 0; }
    @media only screen and (max-width: 37.5em) {
      .modal__close-button {
        margin: 1.25rem 1.25rem 0 -4.25rem; } }
    .modal__close-button::before {
      content: " ";
      position: absolute;
      width: 3rem;
      height: 0.25rem;
      background-color: #0A0A0A;
      -webkit-transform: rotate(45deg);
              transform: rotate(45deg); }
    .modal__close-button::after {
      content: " ";
      position: absolute;
      width: 3rem;
      height: 0.25rem;
      background-color: #0A0A0A;
      -webkit-transform: rotate(135deg);
              transform: rotate(135deg); }
  .modal .btn {
    font-weight: 700; }
    @media only screen and (max-width: 37.5em) {
      .modal .btn {
        font-size: 1.4rem;
        padding: 1rem;
        height: auto; } }
  .modal__hide {
    display: none; }

.rendez-vous {
  position: relative;
  width: 95%;
  max-width: 156rem;
  margin: 7rem auto -7.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  background-color: #1238FF;
  background-color: var(--primary);
  padding: 5rem 0; }
  @media only screen and (max-width: 56.25em) {
    .rendez-vous {
      width: 100%;
      margin: 7rem auto 0; } }
  @media only screen and (max-width: 37.5em) {
    .rendez-vous {
      display: none; } }
  .rendez-vous__body {
    width: 100%;
    max-width: 131.5rem;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    @media only screen and (max-width: 90em) {
      .rendez-vous__body {
        width: 90%; } }
    @media only screen and (max-width: 75em) {
      .rendez-vous__body {
        width: 85%; } }
    @media only screen and (max-width: 56.25em) {
      .rendez-vous__body {
        width: 90%; } }
  .rendez-vous__heading3 {
    min-width: -webkit-max-content;
    min-width: -moz-max-content;
    min-width: max-content; }
    @media only screen and (max-width: 75em) {
      .rendez-vous__heading3 {
        font-size: Calc( 2.8rem * var(--font-mod) ); } }
    @media only screen and (max-width: 56.25em) {
      .rendez-vous__heading3 {
        font-size: Calc( 2.4rem * var(--font-mod) ); } }
  .rendez-vous__line {
    width: 100%;
    height: 3px;
    background-color: #fff;
    margin: 0 0 0 3rem; }
  .rendez-vous__btn {
    border: 2px solid #fff;
    font-size: 1.6rem;
    font-weight: 700;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 27rem;
    padding: 0 1rem; }
    .rendez-vous__btn a {
      color: #fff !important; }
    @media only screen and (max-width: 75em) {
      .rendez-vous__btn {
        width: 25rem; } }
    .rendez-vous__btn:hover,
    .rendez-vous__btn a:hover {
      background-color: #fff;
      color: #1238FF !important;
      color: var(--primary) !important;
      font-weight: 700; }

.search-keywords-model {
  width: 95%;
  max-width: 156rem;
  margin: 5rem auto;
  max-width: 156rem; }
  .search-keywords-model__form-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border: 2px solid #1238FF;
    border: 2px solid var(--primary);
    padding: 4rem 5rem; }
    @media only screen and (max-width: 75em) {
      .search-keywords-model__form-content {
        padding: 4rem 2rem; } }
    @media only screen and (max-width: 56.25em) {
      .search-keywords-model__form-content {
        display: grid;
        justify-items: center;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center; } }
    .search-keywords-model__form-content h4 {
      margin: 0 0 2rem; }
      @media only screen and (max-width: 37.5em) {
        .search-keywords-model__form-content h4 {
          text-align: center; } }
    .search-keywords-model__form-content span {
      color: #1238FF;
      color: var(--primary); }
  .search-keywords-model form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    margin: 0 0 2rem; }
    @media only screen and (max-width: 56.25em) {
      .search-keywords-model form {
        gap: 2rem;
        display: grid;
        justify-items: start;
        grid-template-columns: repeat(2, 1fr); } }
    @media only screen and (max-width: 37.5em) {
      .search-keywords-model form {
        grid-template-columns: unset; } }
    .search-keywords-model form input[type=text] {
      max-width: 33rem;
      margin: 0 2rem 0 0;
      border: 1px solid #0A0A0A; }
      @media only screen and (max-width: 56.25em) {
        .search-keywords-model form input[type=text] {
          max-width: inherit;
          margin: 0;
          width: 100%; } }
    .search-keywords-model form .select {
      max-width: 30rem;
      width: 100%;
      padding: 0 2rem; }
      @media only screen and (max-width: 56.25em) {
        .search-keywords-model form .select {
          max-width: 31.25rem;
          padding: 0; } }
      .search-keywords-model form .select select {
        padding-block: 1rem; }
    .search-keywords-model form .select__arrow {
      right: 21px; }
      @media only screen and (max-width: 56.25em) {
        .search-keywords-model form .select__arrow {
          right: 4px; } }
  .search-keywords-model__form-budget {
    min-width: 20rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    @media only screen and (max-width: 56.25em) {
      .search-keywords-model__form-budget {
        width: 80%; } }
    .search-keywords-model__form-budget input[type=text] {
      max-width: 10rem;
      width: 100%; }
      @media only screen and (max-width: 37.5em) {
        .search-keywords-model__form-budget input[type=text] {
          max-width: 14rem !important; } }
      .search-keywords-model__form-budget input[type=text]:nth-of-type(1) {
        margin: 0 2rem 0 0; }
  .search-keywords-model .btn {
    padding: 1.4rem;
    color: #fff; }

.search-category {
  width: 95%;
  max-width: 156rem;
  margin: 5rem auto;
  max-width: 156rem; }
  .search-category__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 4rem 5rem;
    border: 2px solid #1238FF;
    border: 2px solid var(--primary); }
    @media only screen and (max-width: 75em) {
      .search-category__container {
        padding: 4rem 2rem; } }
  .search-category__content {
    max-width: 136rem;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    .search-category__content span {
      color: #1238FF;
      color: var(--primary); }
    .search-category__content h4 {
      margin: 0 0 3rem; }
  .search-category form {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0 0 3rem; }
    .search-category form label {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      font-weight: 400;
      color: #0A0A0A;
      margin: 1rem 1rem 1rem 0; }
      .search-category form label span {
        color: inherit;
        margin: 0 0 0 1.5rem; }
    .search-category form input[type=checkbox] {
      border: 1px solid #1238FF;
      border: 1px solid var(--primary); }
  .search-category .btn {
    margin: 0 0 -6.5rem;
    padding: 1.4rem; }
    .search-category .btn span {
      color: #fff; }

.services-promotions {
  width: 95%;
  margin: 0 auto;
  padding: 6rem 0;
  max-width: 156rem; }
  .services-promotions__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 0 0 6rem; }
    @media only screen and (max-width: 37.5em) {
      .services-promotions__title h2 {
        text-align: center;
        letter-spacing: 0;
        padding: 0 2rem 1rem;
        width: 75%; } }
    .services-promotions__title .underline::after {
      bottom: -1rem; }
  .services-promotions__card {
    height: 100%;
    width: 100%; }
  .services-promotions__image {
    position: relative;
    height: 100%;
    overflow: hidden; }
    .services-promotions__image:hover div {
      background-color: #1238FF;
      background-color: var(--primary);
      color: #fff; }
    .services-promotions__image img {
      -o-object-fit: cover;
         object-fit: cover;
      width: 100%;
      height: 100%; }
    .services-promotions__image-text {
      overflow: hidden;
      position: absolute;
      bottom: -1px;
      left: -1px;
      right: -1px; }
      @media only screen and (max-width: 37.5em) {
        .services-promotions__image-text {
          left: 0;
          right: 0; } }
      .services-promotions__image-text div {
        width: 102%;
        padding: 2rem 0;
        background-color: #F5F5F5;
        background-color: var(--light-grey);
        color: #1238FF;
        color: var(--primary);
        -webkit-transition: 0.25s ease;
        transition: 0.25s ease; }
        @media only screen and (max-width: 56.25em) {
          .services-promotions__image-text div {
            padding: 1rem 0; } }
        .services-promotions__image-text div h4 {
          padding: 0 5%; }
          @media only screen and (max-width: 56.25em) {
            .services-promotions__image-text div h4 {
              font-size: Calc( 2rem * var(--font-mod) ); } }
          @media only screen and (max-width: 37.5em) {
            .services-promotions__image-text div h4 {
              font-size: Calc( 2.8rem * var(--font-mod) ); } }
  .services-promotions__text {
    color: #fff;
    background-color: #1238FF;
    background-color: var(--primary);
    padding: 3rem 0; }
    .services-promotions__text-wrapper {
      width: 50%;
      height: 100%;
      margin: 0 auto;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: space-evenly;
          -ms-flex-pack: space-evenly;
              justify-content: space-evenly;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-align: start;
          -ms-flex-align: start;
              align-items: flex-start; }
      @media only screen and (max-width: 56.25em) {
        .services-promotions__text-wrapper {
          width: 75%; } }
      .services-promotions__text-wrapper a {
        padding: 1.4rem 2.4rem; }
      .services-promotions__text-wrapper h5, .services-promotions__text-wrapper p {
        color: #fff; }
  .services-promotions-0 {
    width: 95%; }
    .services-promotions-0 .services-promotions__image {
      display: none; }
    .services-promotions-0 .services-promotions__text {
      text-align: center;
      width: 100%;
      margin: 0 auto; }
      .services-promotions-0 .services-promotions__text-wrapper {
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center; }
        .services-promotions-0 .services-promotions__text-wrapper h5, .services-promotions-0 .services-promotions__text-wrapper p {
          margin: 0 0 4rem; }
  @media only screen and (max-width: 37.5em) {
    .services-promotions-1 {
      width: 100%; } }
  .services-promotions-1 .services-promotions__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between; }
  .services-promotions-1 .services-promotions__card-container-double {
    display: none; }
  .services-promotions-1 .services-promotions__card-container {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 48.5%;
            flex: 0 0 48.5%; }
    @media only screen and (max-width: 37.5em) {
      .services-promotions-1 .services-promotions__card-container {
        -webkit-box-flex: inherit;
            -ms-flex: inherit;
                flex: inherit; } }
  .services-promotions-1 .services-promotions__text {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 48.5%;
            flex: 0 0 48.5%; }
    @media only screen and (max-width: 37.5em) {
      .services-promotions-1 .services-promotions__text {
        display: none; } }
    .services-promotions-1 .services-promotions__text-wrapper {
      width: 75%; }
  @media only screen and (max-width: 37.5em) {
    .services-promotions-2 {
      width: 100%; } }
  .services-promotions-2 .services-promotions__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    @media only screen and (max-width: 75em) {
      .services-promotions-2 .services-promotions__container {
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between; } }
  .services-promotions-2 .services-promotions__card-container-double {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    @media only screen and (max-width: 75em) {
      .services-promotions-2 .services-promotions__card-container-double {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-flex: 0;
            -ms-flex: 0 0 47.5%;
                flex: 0 0 47.5%; } }
    @media only screen and (max-width: 37.5em) {
      .services-promotions-2 .services-promotions__card-container-double {
        -webkit-box-flex: inherit;
            -ms-flex: inherit;
                flex: inherit; } }
    .services-promotions-2 .services-promotions__card-container-double .services-promotions__card:last-of-type {
      margin: 0 0 0 6rem; }
      @media only screen and (max-width: 75em) {
        .services-promotions-2 .services-promotions__card-container-double .services-promotions__card:last-of-type {
          margin: 5rem 0 0 0; } }
      @media only screen and (max-width: 37.5em) {
        .services-promotions-2 .services-promotions__card-container-double .services-promotions__card:last-of-type {
          margin: 0; } }
  .services-promotions-2 .services-promotions__card-container {
    display: none; }
  .services-promotions-2 .services-promotions__text {
    width: 100%;
    margin: 0 0 0 6rem; }
    @media only screen and (max-width: 75em) {
      .services-promotions-2 .services-promotions__text {
        -webkit-box-flex: 0;
            -ms-flex: 0 0 47.3%;
                flex: 0 0 47.3%; } }
    @media only screen and (max-width: 37.5em) {
      .services-promotions-2 .services-promotions__text {
        display: none; } }
    .services-promotions-2 .services-promotions__text-wrapper {
      width: 85%; }
      @media only screen and (max-width: 75em) {
        .services-promotions-2 .services-promotions__text-wrapper {
          width: 75%;
          -webkit-box-pack: center;
              -ms-flex-pack: center;
                  justify-content: center; } }
      .services-promotions-2 .services-promotions__text-wrapper h5, .services-promotions-2 .services-promotions__text-wrapper p {
        margin: 0 0 2rem; }
        @media only screen and (max-width: 75em) {
          .services-promotions-2 .services-promotions__text-wrapper h5, .services-promotions-2 .services-promotions__text-wrapper p {
            margin: 0 0 4rem; } }
  @media only screen and (max-width: 37.5em) {
    .services-promotions-3 {
      width: 100%; } }
  .services-promotions-3 .services-promotions__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    @media only screen and (max-width: 37.5em) {
      .services-promotions-3 .services-promotions__container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column; } }
  .services-promotions-3 .services-promotions__card-container {
    margin: 0 6rem; }
    @media only screen and (max-width: 75em) {
      .services-promotions-3 .services-promotions__card-container {
        margin: 0 3rem; } }
    @media only screen and (max-width: 56.25em) {
      .services-promotions-3 .services-promotions__card-container {
        margin: 0 1.25rem; } }
    @media only screen and (max-width: 37.5em) {
      .services-promotions-3 .services-promotions__card-container {
        margin: 0; } }
    .services-promotions-3 .services-promotions__card-container-double {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-flex: 0;
          -ms-flex: 0 0 25%;
              flex: 0 0 25%; }
      @media only screen and (max-width: 75em) {
        .services-promotions-3 .services-promotions__card-container-double {
          -webkit-box-flex: 0;
              -ms-flex: 0 0 40%;
                  flex: 0 0 40%; } }
      @media only screen and (max-width: 56.25em) {
        .services-promotions-3 .services-promotions__card-container-double {
          -webkit-box-flex: 0;
              -ms-flex: 0 0 50%;
                  flex: 0 0 50%; } }
      @media only screen and (max-width: 37.5em) {
        .services-promotions-3 .services-promotions__card-container-double {
          -webkit-box-flex: inherit;
              -ms-flex: inherit;
                  flex: inherit; } }
      .services-promotions-3 .services-promotions__card-container-double .services-promotions__card:last-of-type {
        margin: 6rem 0 0; }
        @media only screen and (max-width: 75em) {
          .services-promotions-3 .services-promotions__card-container-double .services-promotions__card:last-of-type {
            -webkit-box-flex: 0;
                -ms-flex: 0 0 40%;
                    flex: 0 0 40%;
            margin: 3rem 0 0; } }
        @media only screen and (max-width: 56.25em) {
          .services-promotions-3 .services-promotions__card-container-double .services-promotions__card:last-of-type {
            -webkit-box-flex: 0;
                -ms-flex: 0 0 50%;
                    flex: 0 0 50%;
            margin: 1.25rem 0 0; } }
        @media only screen and (max-width: 37.5em) {
          .services-promotions-3 .services-promotions__card-container-double .services-promotions__card:last-of-type {
            -webkit-box-flex: inherit;
                -ms-flex: inherit;
                    flex: inherit;
            margin: 0; } }
  .services-promotions-3 .services-promotions__text {
    width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%; }
    @media only screen and (max-width: 75em) {
      .services-promotions-3 .services-promotions__text {
        display: none; } }
    .services-promotions-3 .services-promotions__text-wrapper {
      width: 65%;
      -webkit-box-pack: space-evenly;
          -ms-flex-pack: space-evenly;
              justify-content: space-evenly; }

.slide-containe {
  width: 100%;
  position: relative;
  margin: 0 auto;
  background-color: #1238FF;
  background-color: var(--primary); }

.slideshow__position {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center; }
.slideshow__image {
  width: 100%;
  height: 100vh; }
  @media only screen and (max-width: 56.25em) {
    .slideshow__image {
      -o-object-fit: cover;
         object-fit: cover; } }
.slideshow__text-content {
  position: absolute;
  width: 50%;
  top: 35vh;
  z-index: 20; }
  @media only screen and (max-width: 56.25em) {
    .slideshow__text-content {
      width: 75%; } }
  @media only screen and (max-width: 37.5em) {
    .slideshow__text-content {
      width: 90%; } }
.slideshow__fade {
  -webkit-animation-duration: 5s;
          animation-duration: 5s;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-name: fade;
          animation-name: fade; }
@-webkit-keyframes fade {
  0% {
    opacity: 0; }
  25% {
    opacity: 1; }
  75% {
    opacity: 1; }
  100% {
    opacity: 0; } }
@keyframes fade {
  0% {
    opacity: 0; }
  25% {
    opacity: 1; }
  75% {
    opacity: 1; }
  100% {
    opacity: 0; } }
.star-vehicule {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%; }
  @media only screen and (max-width: 56.25em) {
    .star-vehicule {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column; } }
  .star-vehicule .container {
    max-width: 168rem; }
  .star-vehicule__left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    background-color: #F5F5F5;
    background-color: var(--light-grey); }
  .star-vehicule__wrapper {
    max-width: 45rem;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0 auto; }
    @media only screen and (max-width: 56.25em) {
      .star-vehicule__wrapper h2 {
        font-size: Calc( 4.4rem * var(--font-mod) );
        margin: 2rem 0;
        padding: 0 2rem; } }
    .star-vehicule__wrapper h2, .star-vehicule__wrapper p {
      text-align: center;
      width: -webkit-max-content;
      width: -moz-max-content;
      width: max-content; }
    .star-vehicule__wrapper p {
      font-size: Calc( 2.4rem * var(--font-mod) );
      line-height: 1.2;
      width: 90%;
      margin: 15% auto; }
      @media only screen and (max-width: 56.25em) {
        .star-vehicule__wrapper p {
          display: none; } }
  .star-vehicule .underline::after {
    width: 15rem;
    height: 5px;
    top: 130%; }
    @media only screen and (max-width: 56.25em) {
      .star-vehicule .underline::after {
        display: none; } }
  .star-vehicule__button {
    width: 100%;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    cursor: pointer; }
    @media only screen and (max-width: 56.25em) {
      .star-vehicule__button {
        display: none; } }
  .star-vehicule__mobile-button {
    display: none; }
    @media only screen and (max-width: 56.25em) {
      .star-vehicule__mobile-button {
        position: relative;
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-pack: distribute;
            justify-content: space-around;
        padding: 4rem 0;
        background-color: #F5F5F5;
        background-color: var(--light-grey); } }
  .star-vehicule__arrow {
    position: absolute;
    width: 6%;
    height: 2px;
    right: 35%;
    color: #1238FF;
    color: var(--primary);
    background-color: var(--primary);
    -webkit-transition: 0.3s;
    transition: 0.3s; }
    @media only screen and (max-width: 56.25em) {
      .star-vehicule__arrow {
        right: 33%; } }
    .star-vehicule__arrow::before {
      content: '';
      display: block;
      position: absolute;
      bottom: calc(50% - 9px);
      right: 1px;
      width: 15px;
      height: 16px;
      border: solid;
      border-width: 2px 2px 0 0;
      -webkit-transform: rotate(45deg);
              transform: rotate(45deg); }
    .star-vehicule__arrow:hover {
      -webkit-transform: scale(1.3);
              transform: scale(1.3);
      cursor: pointer;
      right: 33%; }
    .star-vehicule__arrow-inverse {
      left: 35%;
      right: 0; }
      .star-vehicule__arrow-inverse::before {
        -webkit-transform: rotate(-135deg);
                transform: rotate(-135deg);
        left: 5%; }
      .star-vehicule__arrow-inverse:hover {
        left: 33%; }
  .star-vehicule__right {
    width: 100%;
    overflow: hidden; }
    .star-vehicule__right .cards-star__header {
      position: relative;
      padding-top: 70%;
      overflow: hidden;
      height: 0;
      /* Le slider devient en une seule colonne */ }
      .star-vehicule__right .cards-star__header img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
           object-fit: cover; }
      @media only screen and (max-width: 56.25em) {
        .star-vehicule__right .cards-star__header {
          position: static; } }
    .star-vehicule__right .cards-star__container {
      max-width: inherit; }
    .star-vehicule__right .cards-star__content {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row; }
      @media only screen and (max-width: 56.25em) {
        .star-vehicule__right .cards-star__content {
          gap: 1rem;
          margin: 2rem 2.5rem; } }
    .star-vehicule__right .cards-star__brand p {
      text-transform: uppercase;
      font-size: Calc( 2.8rem * var(--font-mod) ); }
      @media only screen and (max-width: 75em) {
        .star-vehicule__right .cards-star__brand p {
          font-size: Calc( 2.4rem * var(--font-mod) ); } }
      @media only screen and (max-width: 56.25em) {
        .star-vehicule__right .cards-star__brand p {
          font-size: Calc( 2rem * var(--font-mod) );
          margin: 0 0.3rem; } }
    @media only screen and (max-width: 56.25em) {
      .star-vehicule__right .cards-star__odo p {
        font-size: Calc( 1.8rem * var(--font-mod) ); } }
    .star-vehicule__right .cards-star__color-square {
      margin: 0;
      min-width: inherit; }
      @media only screen and (max-width: 56.25em) {
        .star-vehicule__right .cards-star__color-square {
          width: -webkit-max-content;
          width: -moz-max-content;
          width: max-content; } }
      @media only screen and (max-width: 75em) {
        .star-vehicule__right .cards-star__color-square p {
          font-size: Calc( 3.6rem * var(--font-mod) ); } }
      @media only screen and (max-width: 56.25em) {
        .star-vehicule__right .cards-star__color-square p {
          font-size: Calc( 2.8rem * var(--font-mod) ); } }
  .star-vehicule__fade {
    -webkit-animation: right 0.5s ease-in-out;
            animation: right 0.5s ease-in-out; }
@-webkit-keyframes right {
  0% {
    opacity: 0.3; }
  100% {
    opacity: 1; } }
@keyframes right {
  0% {
    opacity: 0.3; }
  100% {
    opacity: 1; } }
.testimonies {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 5rem 0; }
  .testimonies__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
    overflow: hidden;
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
  .testimonies__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    z-index: -100;
    -webkit-transition: opacity .5s, z-index .5s, -webkit-transform .5s;
    transition: opacity .5s, z-index .5s, -webkit-transform .5s;
    transition: transform .5s, opacity .5s, z-index .5s;
    transition: transform .5s, opacity .5s, z-index .5s, -webkit-transform .5s;
    opacity: 0;
    position: absolute; }
    .testimonies__content-active, .testimonies__content-initial {
      position: relative;
      opacity: 1;
      z-index: -300; }
      @media only screen and (max-width: 37.5em) {
        .testimonies__content-active, .testimonies__content-initial {
          width: 100%; } }
    .testimonies__content-prev, .testimonies__content-next {
      z-index: -200;
      width: 100%; }
    .testimonies__content-prev {
      -webkit-transform: translateX(-100%);
              transform: translateX(-100%); }
    .testimonies__content-next {
      -webkit-transform: translateX(100%);
              transform: translateX(100%); }
    .testimonies__content > div {
      margin: 0 0 3rem; }
      .testimonies__content > div:last-of-type {
        margin: 0; }
  .testimonies__stars img {
    -webkit-filter: invert(12%) sepia(96%) saturate(6736%) hue-rotate(239deg) brightness(101%) contrast(101%);
            filter: invert(12%) sepia(96%) saturate(6736%) hue-rotate(239deg) brightness(101%) contrast(101%);
    -webkit-filter: var(--primary-filter);
            filter: var(--primary-filter); }
  .testimonies__comment {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    max-width: 100rem;
    width: 100%;
    gap: 4rem; }
    @media only screen and (max-width: 56.25em) {
      .testimonies__comment {
        max-width: 66rem; } }
    @media only screen and (max-width: 37.5em) {
      .testimonies__comment {
        gap: unset;
        max-width: unset;
        width: 90%;
        position: relative;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center; } }
    @media only screen and (max-width: 37.5em) {
      .testimonies__comment img {
        position: absolute;
        z-index: -1; } }
    @media only screen and (max-width: 37.5em) {
      .testimonies__comment img:nth-child(1) {
        left: 0;
        -ms-flex-item-align: center;
            align-self: center; } }
    @media only screen and (max-width: 37.5em) {
      .testimonies__comment img:nth-child(3) {
        right: 0;
        -ms-flex-item-align: center;
            align-self: center; } }
    .testimonies__comment h4 {
      max-width: 73rem; }
  .testimonies__name-date h4 {
    color: #5D5E65;
    color: var(--dark-grey);
    font-weight: 400;
    margin: 0 0 1rem; }
  .testimonies__name-date p {
    color: #B5B5B5;
    color: var(--grey); }
  .testimonies__control {
    margin: 4rem 0;
    width: 35%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    position: relative; }
  .testimonies .star-vehicule__arrow {
    height: 3px;
    cursor: pointer; }
    @media only screen and (max-width: 75em) {
      .testimonies .star-vehicule__arrow {
        width: 8%;
        margin: 0 -1rem; } }
    @media only screen and (max-width: 56.25em) {
      .testimonies .star-vehicule__arrow {
        width: 10%; } }
    @media only screen and (max-width: 37.5em) {
      .testimonies .star-vehicule__arrow {
        width: 20%;
        margin: 0 -4rem; } }
    .testimonies .star-vehicule__arrow::before {
      bottom: calc(50% - 9.5px);
      border-width: 3px 3px 0 0; }
    .testimonies .star-vehicule__arrow:hover::before {
      bottom: calc(50% - 9px); }

.vdp .banner {
  padding: 4rem 0; }
.vdp__wrapper {
  max-width: 156rem;
  width: 95%;
  margin: 0 auto; }
.vdp__breadcrumbs {
  margin: 3rem 0;
  border-bottom: 1px solid #1238FF;
  border-bottom: 1px solid var(--primary);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 0 0.5rem; }
  @media only screen and (max-width: 75em) {
    .vdp__breadcrumbs {
      margin: 3rem 0 2rem; } }
  .vdp__breadcrumbs a {
    color: #0A0A0A; }
    .vdp__breadcrumbs a:hover {
      color: #1238FF;
      color: var(--primary); }
.vdp__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
  margin: 0 0 4rem; }
  @media only screen and (max-width: 75em) {
    .vdp__head {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column; } }
  @media only screen and (max-width: 37.5em) {
    .vdp__head {
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
      margin: 0 0 2rem; } }
  .vdp__head a {
    color: #0A0A0A; }
    .vdp__head a:hover {
      color: #1238FF;
      color: var(--primary); }
    .vdp__head a h6 {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center; }
      @media only screen and (max-width: 56.25em) {
        .vdp__head a h6 {
          font-size: 1.6rem;
          margin: 1rem 0 0 0; } }
      .vdp__head a h6::before {
        content: "";
        width: 22px;
        height: 22px;
        padding: 0.5rem;
        margin: 0 6px 0 0;
        background: var(--print-img) no-repeat;
        -webkit-filter: invert(12%) sepia(96%) saturate(6736%) hue-rotate(239deg) brightness(101%) contrast(101%);
                filter: invert(12%) sepia(96%) saturate(6736%) hue-rotate(239deg) brightness(101%) contrast(101%);
        -webkit-filter: var(--primary-filter);
                filter: var(--primary-filter); }
.vdp__title h1 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 75%;
          flex: 0 0 75%;
  text-transform: uppercase; }
  @media only screen and (max-width: 90em) {
    .vdp__title h1 {
      font-size: Calc( 4.4rem * var(--font-mod) ); } }
  @media only screen and (max-width: 75em) {
    .vdp__title h1 {
      font-size: Calc( 3.6rem * var(--font-mod) ); } }
.vdp__title-date {
  color: #1238FF;
  color: var(--primary); }
.vdp__title-submodel {
  text-transform: capitalize;
  font-weight: 400; }
.vdp__slider {
  height: 100%;
  background: #0A0A0A; }
  .vdp__slider-image {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    overflow: hidden;
    height: 100%; }
    @media only screen and (max-width: 75em) {
      .vdp__slider-image {
        width: 100%;
        height: auto;
        aspect-ratio: 4/3; }
        @supports not (aspect-ratio: 4/3) {
          .vdp__slider-image {
            /* Safari iOS, on recent iPad version (2021) this property is not supported */ }
            .vdp__slider-image::before {
              content: "";
              float: left;
              padding-top: 75%; } } }
    .vdp__slider-image img {
      position: absolute;
      max-width: 100%;
      max-height: 100%;
      -o-object-fit: cover;
         object-fit: cover; }
      @media only screen and (max-width: 75em) {
        .vdp__slider-image img {
          /* The width of the image is 1024px maximum and the "tab-land" breakpoint goes up to 1200px */
          width: 100%;
          /* No left and right black border */
          height: auto; } }
    .vdp__slider-image h6 {
      position: absolute;
      top: 0;
      right: 0;
      color: #fff;
      background-color: #1238FF;
      background-color: var(--primary);
      padding: 1.3rem 2rem; }
    .vdp__slider-image-green {
      background-color: #00cd39 !important; }
  .vdp__slider-image-active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
  .vdp__slider-image iframe {
    position: absolute;
    top: 0;
    height: 80%;
    -webkit-transform: translate(0, 20%);
            transform: translate(0, 20%); }
    @media only screen and (min-width: 105em) {
      .vdp__slider-image iframe {
        -webkit-transform: translate(0, 13%);
                transform: translate(0, 13%); } }
    @media only screen and (max-width: 75em) {
      .vdp__slider-image iframe {
        -webkit-transform: translate(0, 13%);
                transform: translate(0, 13%); } }
    @media only screen and (max-width: 56.25em) {
      .vdp__slider-image iframe {
        -webkit-transform: translate(0, 15%);
                transform: translate(0, 15%); } }
    @media only screen and (max-width: 37.5em) {
      .vdp__slider-image iframe {
        -webkit-transform: translate(0, 22%);
                transform: translate(0, 22%); } }
  .vdp__slider-description {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    @media only screen and (max-width: 75em) {
      .vdp__slider-description {
        -ms-flex-wrap: wrap;
            flex-wrap: wrap; } }
  .vdp__slider-col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: relative;
    max-width: 104rem;
    width: 100%; }
    @media only screen and (max-width: 75em) {
      .vdp__slider-col {
        max-width: inherit; } }
  .vdp__slider-image-row {
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    user-select: none;
    height: 100%;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    font-size: 0; }
    .vdp__slider-image-row .instavid {
      -webkit-box-sizing: border-box;
              box-sizing: border-box;
      -o-object-fit: contain;
         object-fit: contain;
      padding: 1rem; }
    @media only screen and (max-width: 75em) {
      .vdp__slider-image-row {
        min-height: inherit; } }
    .vdp__slider-image-row img {
      width: 25%;
      height: 17.5rem;
      min-height: 100%;
      -webkit-transition: 0.25s ease;
      transition: 0.25s ease;
      -o-object-fit: cover;
         object-fit: cover; }
      .vdp__slider-image-row img:hover {
        cursor: pointer; }
      @media only screen and (max-width: 75em) {
        .vdp__slider-image-row img {
          height: 23rem; } }
      @media only screen and (max-width: 56.25em) {
        .vdp__slider-image-row img {
          height: 20rem; } }
      @media only screen and (max-width: 37.5em) {
        .vdp__slider-image-row img {
          height: 10rem; } }
  .vdp__slider-image-nav-active {
    outline: 2px solid #1238FF;
    outline: 2px solid var(--primary);
    outline-offset: -2px; }
.vdp__control-bg {
  background-color: #1238FF;
  background-color: var(--primary);
  position: absolute;
  bottom: calc(50% - 2.7rem + 8.75rem);
  right: 0;
  height: 5.4rem;
  width: 5.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: 0.25s ease;
  transition: 0.25s ease;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none; }
  @media only screen and (max-width: 75em) {
    .vdp__control-bg {
      bottom: calc(50% - 2.7rem + 11.5rem); } }
  @media only screen and (max-width: 56.25em) {
    .vdp__control-bg {
      bottom: calc(50% - 2.7rem + 10rem); } }
  @media only screen and (max-width: 37.5em) {
    .vdp__control-bg {
      bottom: calc(50% - 2.7rem + 5rem); } }
  .vdp__control-bg:hover {
    background-color: #fff;
    cursor: pointer; }
    .vdp__control-bg:hover .vdp__control-arrow {
      color: #1238FF;
      color: var(--primary);
      background-color: #1238FF;
      background-color: var(--primary); }
  .vdp__control-bg-inverse {
    right: inherit; }
.vdp__control-arrow {
  width: 3rem;
  height: 2px;
  color: #fff;
  background-color: #fff;
  margin: calc(50% - 1px) 0; }
  .vdp__control-arrow::before {
    content: '';
    display: block;
    position: absolute;
    bottom: calc(50% - 9px);
    right: 25%;
    width: 15px;
    height: 16px;
    border: solid;
    border-width: 2px 2px 0 0;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg); }
  .vdp__control-arrow-inverse {
    left: 1rem;
    right: inherit; }
    .vdp__control-arrow-inverse::before {
      -webkit-transform: rotate(-135deg);
              transform: rotate(-135deg);
      left: 25%; }
.vdp__description-container {
  background-color: #F5F5F5;
  background-color: var(--light-grey);
  max-width: 52rem;
  width: 100%; }
  @media only screen and (max-width: 75em) {
    .vdp__description-container {
      max-width: inherit; } }
.vdp__description-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 85%;
  margin: 4rem auto;
  height: 90%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }
  @media only screen and (max-width: 75em) {
    .vdp__description-col {
      max-width: inherit; } }
.vdp__description-price-finance-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 0 3rem; }
  @media only screen and (max-width: 75em) {
    .vdp__description-price-finance-container {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      width: 100%; } }
  @media only screen and (max-width: 37.5em) {
    .vdp__description-price-finance-container {
      grid-template-columns: 55% 1fr; } }
.vdp__description-price p {
  color: #5D5E65;
  color: var(--dark-grey);
  font-size: Calc( 2rem * var(--font-mod) ); }
.vdp__description-price div {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start; }
  .vdp__description-price div span {
    display: block;
    line-height: 1;
    font-size: 5.4rem;
    font-weight: 700;
    color: #1238FF;
    color: var(--primary);
    white-space: nowrap; }
    @media only screen and (max-width: 37.5em) {
      .vdp__description-price div span {
        font-size: 4.4rem; } }
.vdp__description-price-old {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex; }
  .vdp__description-price-old span {
    font-size: Calc( 2.8rem * var(--font-mod) ) !important;
    color: #B5B5B5 !important; }
  .vdp__description-price-old::after {
    position: absolute;
    content: " ";
    display: inline-block;
    width: 110%;
    height: 1.5px;
    background-color: #0A0A0A;
    color: #B5B5B5;
    color: var(--grey);
    top: 50%;
    right: 0;
    left: -0.5rem;
    -webkit-transform: rotate(-13deg);
            transform: rotate(-13deg);
    border: none; }
.vdp__description-finance {
  padding: 0 0 0 1rem; }
  @media only screen and (max-width: 75em) {
    .vdp__description-finance {
      padding: 0; } }
  @media only screen and (max-width: 37.5em) {
    .vdp__description-finance {
      justify-self: end; } }
  .vdp__description-finance p {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 1.4rem;
    color: #5D5E65;
    color: var(--dark-grey); }
    .vdp__description-finance p i {
      font-style: normal; }
      .vdp__description-finance p i span {
        font-size: Calc( 3.6rem * var(--font-mod) );
        font-weight: 700;
        color: #1238FF;
        color: var(--primary);
        line-height: 1.2;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        margin: 0; }
    .vdp__description-finance p span {
      font-size: 1.4rem;
      font-weight: 400;
      color: #B5B5B5;
      color: var(--grey);
      text-indent: 0;
      margin: 0 0 0 0.5rem; }
  .vdp__description-finance:nth-of-type(3) {
    /* percent for months */
    color: #1238FF;
    color: var(--primary); }
.vdp__description-details-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100%; }
  @media only screen and (max-width: 75em) {
    .vdp__description-details-container {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      width: 100%; } }
  @media only screen and (max-width: 37.5em) {
    .vdp__description-details-container {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      height: 100%;
      margin: 0 auto;
      padding: 0; } }
.vdp__description-details {
  margin: 0 0 1rem 0; }
  .vdp__description-details p {
    color: #1238FF;
    color: var(--primary); }
  @media only screen and (max-width: 37.5em) {
    .vdp__description-details h4 {
      font-size: Calc( 2.4rem * var(--font-mod) ); } }
  .vdp__description-details-upper h4 {
    text-transform: uppercase; }
.vdp__description-btn-carfax {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 2rem 0 0; }
  @media only screen and (max-width: 75em) {
    .vdp__description-btn-carfax {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      width: 100%; } }
  @media only screen and (max-width: 37.5em) {
    .vdp__description-btn-carfax {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex; } }
.vdp__description-btn {
  margin: 2rem 0 4rem; }
  @media only screen and (max-width: 75em) {
    .vdp__description-btn {
      margin: 0 0 4rem; } }
  .vdp__description-btn .btn {
    padding: 1.8rem 3.9rem; }
.vdp__description-carfax {
  width: 100%; }
  .vdp__description-carfax img {
    width: 100%; }
  .vdp__description-carfax a {
    color: #0A0A0A; }
    .vdp__description-carfax a:hover {
      color: #1238FF;
      color: var(--primary); }
  .vdp__description-carfax-askreport {
    width: 20rem; }
  .vdp__description-carfax-badge {
    width: 100%; }
    .vdp__description-carfax-badge a {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
      width: 100%; }
      .vdp__description-carfax-badge a img {
        padding: 0 0.3rem 0.3rem 0;
        width: auto;
        /* Badges plus petits sur un téléphone et une petite tablette,
            car la largeur y est limitée */
        height: 6rem; }
        @media only screen and (max-width: 56.25em) {
          .vdp__description-carfax-badge a img {
            height: 4.8rem; } }
    .vdp__description-carfax-badge-small a img {
      /* Badges plus petits après un certain nombre */
      height: 4.8rem; }
.vdp__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 5rem 0 0; }
  @media only screen and (max-width: 56.25em) {
    .vdp__container {
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap; } }
  .vdp__container-col1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 63%;
            flex: 0 0 63%;
    max-width: 98rem;
    width: 100%; }
    @media only screen and (max-width: 56.25em) {
      .vdp__container-col1 {
        -webkit-box-flex: inherit;
            -ms-flex: inherit;
                flex: inherit;
        max-width: inherit; } }
  .vdp__container-col2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 35%;
            flex: 0 0 35%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 52rem;
    width: 100%; }
    @media only screen and (max-width: 56.25em) {
      .vdp__container-col2 {
        max-width: inherit;
        -webkit-box-flex: inherit;
            -ms-flex: inherit;
                flex: inherit; } }
.vdp__specifications {
  background-color: #F5F5F5;
  background-color: var(--light-grey);
  max-width: 98rem;
  width: 100%;
  margin: 0 auto; }
  .vdp__specifications-container {
    max-width: 85rem;
    width: 95%;
    margin: 0 auto;
    padding: 4rem 0; }
    .vdp__specifications-container div[name='options-content'] ul {
      display: grid;
      grid-template-columns: 1fr 1fr; }
    .vdp__specifications-container div[name='options-content'] .vdp__specifications-list {
      width: 100%;
      max-width: none; }
    @media only screen and (max-width: 37.5em) {
      .vdp__specifications-container {
        padding: 2rem 0; } }
  .vdp__specifications-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-align: center;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end; }
    @media only screen and (max-width: 37.5em) {
      .vdp__specifications-nav {
        -ms-flex-pack: distribute;
            justify-content: space-around;
        -webkit-box-align: end;
            -ms-flex-align: end;
                align-items: flex-end; } }
    .vdp__specifications-nav p {
      padding: 0 2rem 1rem;
      border-bottom: 1px solid #B5B5B5;
      border-bottom: 1px solid var(--grey);
      width: 100%; }
      @media only screen and (max-width: 37.5em) {
        .vdp__specifications-nav p {
          padding: 0 1rem 0.5rem;
          font-size: 1.6rem;
          text-align: center; } }
      .vdp__specifications-nav p:hover {
        color: #1238FF;
        color: var(--primary);
        font-weight: 700;
        border-bottom: 2px solid #1238FF;
        border-bottom: 2px solid var(--primary);
        cursor: pointer; }
    .vdp__specifications-nav-active {
      font-weight: 700 !important;
      color: #1238FF;
      color: var(--primary);
      border-bottom: 2px solid #1238FF !important;
      border-bottom: 2px solid var(--primary) !important; }
  .vdp__specifications-content {
    display: none;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin: 0 auto; }
    @media only screen and (max-width: 37.5em) {
      .vdp__specifications-content {
        -ms-flex-wrap: wrap;
            flex-wrap: wrap; } }
    .vdp__specifications-content-open {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex; }
  .vdp__specifications-list {
    max-width: 36.6rem;
    width: 100%;
    padding: 4.5rem 0 0; }
    .vdp__specifications-list h6 {
      color: #1238FF;
      color: var(--primary);
      padding: 0 0 2rem; }
    .vdp__specifications-list p {
      line-height: 1.3; }
    .vdp__specifications-list li {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      padding: 0 0 1rem;
      width: 100%; }
      .vdp__specifications-list li span:nth-of-type(1) {
        font-weight: 700; }
      .vdp__specifications-list li span:nth-of-type(2) {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: start;
            -ms-flex-pack: start;
                justify-content: flex-start;
        max-width: 13.2rem;
        width: 100%;
        padding: 0 0 0 1rem; }
      @media only screen and (max-width: 56.25em) {
        .vdp__specifications-list li {
          font-size: Calc( 1.8rem * var(--font-mod) ); } }
    .vdp__specifications-list li:nth-child(odd) {
      margin-right: 1rem; }
  .vdp__specifications-sirius {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 2rem; }
    .vdp__specifications-sirius img {
      max-height: 6rem;
      margin-right: 2rem; }
    @media only screen and (max-width: 56.25em) {
      .vdp__specifications-sirius {
        font-size: Calc( 1.8rem * var(--font-mod) ); } }
  .vdp__specifications-text {
    width: 100%;
    padding: 4.5rem 0 0; }
    .vdp__specifications-text h5 {
      color: #1238FF;
      color: var(--primary);
      padding: 0 0 2rem; }
.vdp__estimations {
  max-width: 98rem;
  width: 100%;
  margin: 5rem 0 0; }
.vdp__estimations-title {
  margin: 0 0 6rem; }
.vdp__estimations-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 3rem; }
  @media only screen and (max-width: 75em) {
    .vdp__estimations-container {
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between; } }
  @media only screen and (max-width: 37.5em) {
    .vdp__estimations-container {
      -ms-flex-wrap: wrap;
          flex-wrap: wrap; } }
  .vdp__estimations-container-col1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 41%;
            flex: 0 0 41%; }
  .vdp__estimations-container-col2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 3%;
            flex: 0 0 3%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    @media only screen and (max-width: 75em) {
      .vdp__estimations-container-col2 {
        -webkit-box-flex: 0;
            -ms-flex: 0 0 8%;
                flex: 0 0 8%; } }
    @media only screen and (max-width: 56.25em) {
      .vdp__estimations-container-col2 {
        -webkit-box-flex: 0;
            -ms-flex: 0 0 5%;
                flex: 0 0 5%; } }
    @media only screen and (max-width: 37.5em) {
      .vdp__estimations-container-col2 {
        height: 10rem; } }
  .vdp__estimations-container-col3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    margin: 0 0 0 auto;
    max-width: 45.9rem;
    width: 100%; }
    @media only screen and (max-width: 75em) {
      .vdp__estimations-container-col3 {
        margin: 0;
        -webkit-box-flex: 0;
            -ms-flex: 0 0 45%;
                flex: 0 0 45%; } }
    @media only screen and (max-width: 37.5em) {
      .vdp__estimations-container-col3 {
        margin: 0;
        max-width: inherit; } }
  @media only screen and (max-width: 37.5em) {
    .vdp__estimations-container-col1, .vdp__estimations-container-col2, .vdp__estimations-container-col3 {
      -webkit-box-flex: 100%;
          -ms-flex: 100%;
              flex: 100%; } }
.vdp__estimations-input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 0 1.5rem; }
  .vdp__estimations-input-switch {
    max-width: 14.5rem;
    width: 100%; }
    .vdp__estimations-input-switch input {
      position: relative;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      width: 10rem;
      border: 1px solid #0A0A0A;
      -webkit-appearance: none;
      height: 5rem;
      outline: none;
      margin: 0; }
      .vdp__estimations-input-switch input::before {
        content: '';
        position: absolute;
        width: 4rem;
        height: 4rem;
        left: 5%;
        background: #B5B5B5;
        border: 0;
        top: inherit;
        bottom: inherit;
        -webkit-transform: scale(1);
                transform: scale(1); }
      .vdp__estimations-input-switch input:hover {
        border: 1px solid #0A0A0A; }
      .vdp__estimations-input-switch input:checked {
        border: 1px solid #1238FF;
        border: 1px solid var(--primary);
        background-color: #fff; }
      .vdp__estimations-input-switch input:checked::before {
        left: inherit;
        right: 5%;
        background-color: #1238FF;
        background-color: var(--primary);
        -webkit-transform: none;
        transform: none; }
  .vdp__estimations-input-radio {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start; }
  .vdp__estimations-input p {
    font-size: Calc( 2rem * var(--font-mod) );
    max-width: 25rem;
    width: 100%;
    margin-right: 5rem; }
  .vdp__estimations-input input {
    max-width: 14.2rem;
    padding: 0;
    text-indent: 1.2rem; }
  .vdp__estimations-input select {
    max-width: 14.5rem;
    padding: 0;
    text-indent: 1.2rem; }
.vdp__estimations-radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  max-width: 14.5rem;
  width: 100%; }
  .vdp__estimations-radio label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1rem; }
.vdp__estimations-arrow-separator {
  color: #1238FF;
  color: var(--primary);
  background-color: #1238FF;
  background-color: var(--primary);
  position: relative; }
  @media only screen and (max-width: 75em) {
    .vdp__estimations-arrow-separator {
      width: -moz-available;
      width: -webkit-fill-available; } }
  @media only screen and (max-width: 37.5em) {
    .vdp__estimations-arrow-separator {
      width: auto; } }
  .vdp__estimations-arrow-separator::before, .vdp__estimations-arrow-separator::after {
    position: absolute;
    content: '';
    display: block;
    width: 8rem;
    height: 0rem;
    border: solid;
    border-width: 0 0 2px 0; }
    @media only screen and (max-width: 75em) {
      .vdp__estimations-arrow-separator::before, .vdp__estimations-arrow-separator::after {
        width: 6rem; } }
    @media only screen and (max-width: 37.5em) {
      .vdp__estimations-arrow-separator::before, .vdp__estimations-arrow-separator::after {
        width: 5.25rem; } }
  .vdp__estimations-arrow-separator::before {
    bottom: 11rem;
    -webkit-transform: rotate(65deg);
            transform: rotate(65deg); }
    @media only screen and (max-width: 37.5em) {
      .vdp__estimations-arrow-separator::before {
        bottom: 0.25rem;
        left: -1.4rem;
        -webkit-transform: rotate(135deg);
                transform: rotate(135deg); } }
  .vdp__estimations-arrow-separator::after {
    top: -4rem;
    -webkit-transform: rotate(115deg);
            transform: rotate(115deg); }
    @media only screen and (max-width: 75em) {
      .vdp__estimations-arrow-separator::after {
        top: -6rem; } }
    @media only screen and (max-width: 37.5em) {
      .vdp__estimations-arrow-separator::after {
        top: -0.5rem;
        left: -5rem;
        -webkit-transform: rotate(45deg);
                transform: rotate(45deg); } }
.vdp__estimations-montants {
  background-color: #F5F5F5;
  background-color: var(--light-grey);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 7rem 5.5rem;
  gap: 4rem; }
  @media only screen and (max-width: 75em) {
    .vdp__estimations-montants {
      padding: 5rem 3.5rem; } }
  @media only screen and (max-width: 37.5em) {
    .vdp__estimations-montants {
      padding: 2rem 0; } }
  .vdp__estimations-montants-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between; }
    @media only screen and (max-width: 37.5em) {
      .vdp__estimations-montants-content {
        width: 90%;
        margin: 0 auto; } }
    .vdp__estimations-montants-content p {
      font-size: Calc( 2rem * var(--font-mod) ); }
      @media only screen and (max-width: 75em) {
        .vdp__estimations-montants-content p {
          font-size: 1.6rem; } }
    .vdp__estimations-montants-content h6 {
      color: #1238FF;
      color: var(--primary); }
      @media only screen and (max-width: 75em) {
        .vdp__estimations-montants-content h6 {
          padding: 0 0 0 1rem; } }
.vdp__estimations-specifications {
  margin: 3rem 0 0 0; }
  .vdp__estimations-specifications p {
    font-size: 1.4rem;
    color: #1238FF;
    color: var(--primary); }
.vdp__button-contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%; }
  .vdp__button-contact .btn {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 2rem 0;
    margin: 0 0 2rem;
    font-weight: 700; }
.vdp__share {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 3rem 0;
  outline: 2px solid #1238FF;
  outline: 2px solid var(--primary);
  outline-offset: -2px;
  gap: 1.5rem;
  width: 100%; }
  .vdp__share h5 {
    text-transform: uppercase; }
  .vdp__share-social-media {
    width: 30%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    @media only screen and (max-width: 75em) {
      .vdp__share-social-media {
        width: 50%; } }
    @media only screen and (max-width: 37.5em) {
      .vdp__share-social-media {
        margin: 1.5rem 0 0; } }
    .vdp__share-social-media a {
      width: 3rem;
      height: 3rem; }
      .vdp__share-social-media a img {
        height: 100%;
        width: 100%;
        -webkit-transition: 0.25s ease;
        transition: 0.25s ease; }
        .vdp__share-social-media a img:hover {
          -webkit-filter: invert(12%) sepia(96%) saturate(6736%) hue-rotate(239deg) brightness(101%) contrast(101%);
                  filter: invert(12%) sepia(96%) saturate(6736%) hue-rotate(239deg) brightness(101%) contrast(101%);
          -webkit-filter: var(--primary-filter);
                  filter: var(--primary-filter); }
.vdp__localisation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 0 5rem;
  width: 100%; }
  .vdp__localisation-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    width: 100%; }
    @media only screen and (max-width: 56.25em) {
      .vdp__localisation-wrapper {
        width: 50%; } }
    @media only screen and (max-width: 37.5em) {
      .vdp__localisation-wrapper {
        width: 100%; } }
  .vdp__localisation-title {
    background-color: #F5F5F5;
    background-color: var(--light-grey);
    padding: 7rem 0; }
    @media only screen and (max-width: 56.25em) {
      .vdp__localisation-title {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center; } }
    .vdp__localisation-title h4 {
      -webkit-transform: rotate(-90deg);
              transform: rotate(-90deg);
      color: #1238FF;
      color: var(--primary); }
      @media only screen and (max-width: 75em) {
        .vdp__localisation-title h4 {
          font-size: Calc( 2rem * var(--font-mod) );
          line-height: 1.1; } }
      @media only screen and (max-width: 56.25em) {
        .vdp__localisation-title h4 {
          font-size: Calc( 2.8rem * var(--font-mod) );
          width: -webkit-fit-content;
          width: -moz-fit-content;
          width: fit-content; } }
  .vdp__localisation-coordinates {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    margin: 0 auto; }
    @media only screen and (max-width: 56.25em) {
      .vdp__localisation-coordinates {
        -webkit-box-flex: 0;
            -ms-flex: 0 0 100%;
                flex: 0 0 100%;
        margin: 0 5rem; } }
    @media only screen and (max-width: 37.5em) {
      .vdp__localisation-coordinates {
        -webkit-box-flex: 0;
            -ms-flex: 0 0 50%;
                flex: 0 0 50%;
        margin: 0 auto; } }
    .vdp__localisation-coordinates h6 {
      color: #1238FF;
      color: var(--primary);
      margin: 0 0 1rem; }
    .vdp__localisation-coordinates a {
      color: #0A0A0A;
      line-height: 1.4; }
      @media only screen and (max-width: 56.25em) {
        .vdp__localisation-coordinates a {
          font-size: Calc( 1.8rem * var(--font-mod) ); } }
      .vdp__localisation-coordinates a:hover {
        color: #1238FF;
        color: var(--primary); }
    .vdp__localisation-coordinates a:nth-of-type(2),
    .vdp__localisation-coordinates a:nth-of-type(3) {
      font-weight: 700; }
    .vdp__localisation-coordinates-tel {
      font-weight: 700; }
  .vdp__localisation-map {
    width: 100%; }
    .vdp__localisation-map iframe {
      padding: 0 !important;
      width: 100%;
      background: #F5F5F5;
      background: var(--light-grey);
      height: 23rem;
      -webkit-box-flex: 0;
          -ms-flex: 0 0 100%;
              flex: 0 0 100%; }
      @media only screen and (max-width: 75em) {
        .vdp__localisation-map iframe {
          height: 18rem; } }
      @media only screen and (max-width: 56.25em) {
        .vdp__localisation-map iframe {
          height: 23rem;
          max-width: inherit; } }
.vdp__form {
  margin: 5rem auto;
  width: 85%; }
  @media only screen and (max-width: 75em) {
    .vdp__form {
      margin: 5rem 0; } }
  @media only screen and (max-width: 56.25em) {
    .vdp__form {
      margin: 5rem auto;
      width: 70%; } }
  @media only screen and (max-width: 37.5em) {
    .vdp__form {
      width: 100%; } }
  .vdp__form-title h4 {
    color: #1238FF;
    color: var(--primary);
    margin: 0 0 2rem; }
  .vdp__form form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2rem; }
    .vdp__form form input[type=text] {
      padding: 0;
      text-indent: 1.2rem;
      max-width: inherit; }
    .vdp__form form textarea {
      max-width: inherit;
      width: 100%;
      border: 1px solid #0A0A0A;
      padding: 1.2rem 0 0 0;
      text-indent: 1.2rem; }
    .vdp__form form .btn {
      width: -webkit-fit-content;
      width: -moz-fit-content;
      width: fit-content;
      padding: 1.2rem 1.6rem;
      color: var(--white);
      color: #fff; }
  .vdp__form .frm_error_style,
  .vdp__form .frm_message {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2rem; }
.vdp .new-car {
  padding: 5rem 0;
  max-width: inherit;
  width: 100%; }
  .vdp .new-car__header, .vdp .new-car__inventaires {
    width: 100%;
    margin: 0; }
  .vdp .new-car__header,
  .vdp .new-car .cards-default__container {
    max-width: inherit; }
  .vdp .new-car .cards-default__container {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%; }
  .vdp .new-car .cards-default__header {
    padding-top: 66%; }
  @media only screen and (max-width: 75em) {
    .vdp .new-car .cards-default__odo p {
      font-size: Calc( 2rem * var(--font-mod) ); } }
  @media only screen and (max-width: 56.25em) {
    .vdp .new-car .cards-default__odo p {
      font-size: 1.6rem; } }

@media only screen and (max-width: 75em) {
  #instavid_parent {
    min-height: 70rem; } }
@media only screen and (max-width: 56.25em) {
  #instavid_parent {
    min-height: 60rem; } }
@media only screen and (max-width: 37.5em) {
  #instavid_parent {
    min-height: 40rem; } }

.vehicle-type {
  margin: 5rem auto 3rem;
  max-width: 156rem;
  width: 95%; }
  .vehicle-type a {
    white-space: nowrap; }
  @media only screen and (max-width: 37.5em) {
    .vehicle-type {
      margin: 3rem auto; } }
  .vehicle-type__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
  .vehicle-type__intro span {
    color: #1238FF;
    color: var(--primary); }
  .vehicle-type__cars-container {
    margin: 4.5rem 0 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center; }
    @media only screen and (max-width: 37.5em) {
      .vehicle-type__cars-container {
        margin: 4.5rem 1rem; } }
  .vehicle-type .heroes-banner__type {
    width: 0;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 7%;
            flex: 0 0 7%; }
    @media only screen and (max-width: 75em) {
      .vehicle-type .heroes-banner__type {
        -webkit-box-flex: 0;
            -ms-flex: 0 0 14%;
                flex: 0 0 14%; } }
    @media only screen and (max-width: 56.25em) {
      .vehicle-type .heroes-banner__type {
        -webkit-box-flex: 0;
            -ms-flex: 0 0 25%;
                flex: 0 0 25%; } }
    .vehicle-type .heroes-banner__type a {
      color: #1238FF;
      color: var(--primary);
      height: 8rem;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: end;
          -ms-flex-pack: end;
              justify-content: flex-end;
      white-space: nowrap; }
      .vehicle-type .heroes-banner__type a svg {
        margin: 0 0 2rem; }
        .vehicle-type .heroes-banner__type a svg.loisir {
          width: 8rem; }
        @media only screen and (max-width: 75em) {
          .vehicle-type .heroes-banner__type a svg {
            width: auto;
            height: 100%; } }
        @media only screen and (max-width: 37.5em) {
          .vehicle-type .heroes-banner__type a svg {
            height: 36%; } }
      @media only screen and (max-width: 75em) {
        .vehicle-type .heroes-banner__type a span {
          font-size: Calc( 1.8rem * var(--font-mod) ); } }
      @media only screen and (max-width: 75em) {
        .vehicle-type .heroes-banner__type a span {
          font-size: Calc( 2rem * var(--font-mod) ); } }

.custom-html {
  width: 95%;
  margin: 0 auto;
  padding: 6rem 0 0 0;
  max-width: 156rem; }

/*# sourceMappingURL=main.css.map */