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

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: 90rem; } }
  @media only screen and (max-width: 56.25em) {
    .container {
      width: 90%; } }
  @media only screen and (max-width: 37.5em) {
    .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);
  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; }
  .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: -25%; }
    @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: -35%; }
  .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; }

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

label,
.frm_primary_label {
  color: #0A0A0A;
  color: var(--black); }

input[type=text],
input[type=email],
input[type=number],
input[type=tel],
textarea {
  width: 100%;
  max-width: 35.7rem;
  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=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] {
  -moz-appearance: textfield; }

input[type=number]::-webkit-inner-spin-button, input[type=number]::-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: 5px;
    display: inline-block;
    height: 50%;
    background-color: #fff;
    width: 2.5rem;
    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__values {
  background-color: #fff;
  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] {
    height: auto;
    border: 0;
    text-align: center; }
    .range__values input[type=number]:active
    .range__values input[type=number]:focus, .range__values input[type=number]:focus-visible {
      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: 0;
  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;
    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=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=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=tel]:active
input[type=number]:focus,
select:active
input[type=number]:focus,
textarea:active
input[type=number]: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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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"]: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; }

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;
  -moz-appearance: none;
  height: 1.7em;
  width: 1.7em;
  background-color: #1238FF;
  background-color: var(--primary);
  cursor: pointer;
  margin-top: -1%;
  pointer-events: auto;
  border-radius: 50%; }

input[type="range"]:active::-webkit-slider-thumb {
  background-color: #fff;
  border: 3px solid #1238FF;
  border: 3px solid var(--primary); }

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 {
  background-color: #fff !important; }
.color__noir {
  background-color: #0A0A0A !important; }
.color__bleu {
  background-color: blue !important; }
.color__argent {
  background-color: silver !important; }
.color__rouge {
  background-color: #F20707 !important; }
.color__gris {
  background-color: grey !important; }
.color__brun {
  background-color: brown !important; }
.color__beige {
  background-color: burlywood !important; }
.color__orange {
  background-color: orange !important; }
.color__jaune {
  background-color: #FFDD29 !important; }
.color__marron {
  background-color: #85553D !important; }
.color__autres {
  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__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__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 {
  display: none;
  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 0 1rem 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: url(../img/gps.svg) 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: url(../img/phone.svg) 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 {
  display: none !important;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.6) 100%), url("../img/texture.jpg") no-repeat;
  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%;
        height: 25rem;
        -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;
        height: 25rem;
        padding: 3rem 2rem; } }
  .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__adresse {
    margin: 0 0 0.9rem; }
    @media only screen and (max-width: 56.25em) {
      .footer__adresse {
        margin: 0 0 1.25rem; } }
    @media only screen and (max-width: 37.5em) {
      .footer__adresse {
        margin: 0 0 1.4rem; } }
  .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: #1238FF;
      color: var(--primary);
      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 0 1.4rem; } }
      .footer__phone a:hover {
        color: #fff; }
  .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: 2rem 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;
    gap: 1em;
    width: 75%; }
    @media only screen and (min-width: 105em) {
      .footer__display {
        width: 60%; } }
    @media only screen and (max-width: 75em) {
      .footer__display {
        width: 90%; } }
    @media only screen and (max-width: 37.5em) {
      .footer__display {
        gap: unset;
        display: grid;
        -webkit-box-pack: start;
            -ms-flex-pack: start;
                justify-content: flex-start;
        grid-template-areas: "area2 area2" "area3 area1"; } }
    @media only screen and (max-width: 37.5em) {
      .footer__display a {
        padding: 1rem; } }
  .footer .amvoq-footer {
    max-width: 16rem;
    width: 100%; }
  .footer .autousagee-footer {
    max-width: 20rem;
    width: 100%; }
  .footer .caa {
    max-width: 8rem;
    width: 100%; }
  .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: 1; }
  @media only screen and (max-width: 56.25em) {
    .header {
      height: auto;
      min-height: auto; } }
  .header__logo {
    height: 100%;
    max-height: 8rem;
    max-width: 20rem; }

.heroes-banner {
  padding: 0;
  height: 80vh;
  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; }
  @media only screen and (min-width: 105em) {
    .heroes-banner {
      height: 82.5vh; } }
  @media only screen and (max-width: 75em) {
    .heroes-banner {
      height: 80vh; } }
  @media only screen and (max-width: 56.25em) {
    .heroes-banner {
      height: 75vh; } }
  @media only screen and (max-width: 37.5em) {
    .heroes-banner {
      height: 135vh; } }
  .heroes-banner__bg {
    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-position: center top; }
    @media only screen and (max-width: 37.5em) {
      .heroes-banner__bg {
        z-index: 0; } }
  .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%; }
    @media only screen and (max-width: 37.5em) {
      .heroes-banner__center {
        width: 90%;
        top: 35%;
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
            -ms-flex-direction: column-reverse;
                flex-direction: column-reverse; } }
  .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 0;
    row-gap: 0; }
    .heroes-banner .vehicle-type__cars-container img {
      margin: 0 0 1rem; }
  .heroes-banner__type {
    margin: 0 1%;
    padding: 1rem;
    width: 20%; }
    .heroes-banner__type: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); }
    .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; }
    .heroes-banner__type img {
      width: 100%;
      height: auto; }
      .heroes-banner__type img[alt^=Compact] {
        width: 65%; }
  .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%; }
    @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 h1 {
      color: #fff;
      margin: 0 0 2rem;
      font-size: Calc( 4.4rem * var(--font-mod) );
      letter-spacing: -0.05em; }
      @media only screen and (max-width: 75em) {
        .heroes-banner__content h1 {
          font-size: Calc( 3.6rem * var(--font-mod) ); } }
      @media only screen and (max-width: 56.25em) {
        .heroes-banner__content h1 {
          width: 90%; } }
    .heroes-banner__content p {
      font-size: Calc( 5.4rem * var(--font-mod) );
      color: #B5B5B5;
      color: var(--grey);
      font-weight: 700;
      margin: 0 0 2rem; }
      @media only screen and (max-width: 37.5em) {
        .heroes-banner__content p {
          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 {
  display: none;
  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 (max-width: 68.75em) {
    .menu-container {
      margin: 2rem 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 (max-width: 68.75em) {
      .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 (max-width: 68.75em) {
        .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 1rem 0 0; } }
      @media (max-width: 68.75em) {
        .menu-container .main-nav__logo-box {
          -webkit-box-flex: 0;
              -ms-flex: 0 0 25%;
                  flex: 0 0 25%; } }
      @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__content {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      z-index: 100; }
      @media (max-width: 68.75em) {
        .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 2rem;
          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;
      padding: 0 2.5rem; }
      @media only screen and (max-width: 75em) {
        .menu-container .main-nav__items {
          padding: 0 1.5rem; } }
      @media (max-width: 68.75em) {
        .menu-container .main-nav__items {
          padding: 0;
          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 (max-width: 68.75em) {
          .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; }
        @media (max-width: 68.75em) {
          .menu-container .main-nav__items a {
            font-size: Calc( 2.6rem * var(--font-mod) );
            position: inherit; } }
      .menu-container .main-nav__items-bigdrop, .menu-container .main-nav__items-smalldrop {
        padding: 0 4.5rem 0 2.5rem; }
        @media only screen and (max-width: 75em) {
          .menu-container .main-nav__items-bigdrop, .menu-container .main-nav__items-smalldrop {
            padding: 0 4rem 0 2.5rem; } }
        @media (max-width: 68.75em) {
          .menu-container .main-nav__items-bigdrop, .menu-container .main-nav__items-smalldrop {
            padding: 0; } }
        .menu-container .main-nav__items-bigdrop a, .menu-container .main-nav__items-smalldrop a {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex; }
          @media (max-width: 68.75em) {
            .menu-container .main-nav__items-bigdrop a, .menu-container .main-nav__items-smalldrop a {
              -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: 20%;
            right: -2rem;
            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 (max-width: 68.75em) {
              .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 (max-width: 68.75em) {
            .menu-container .main-nav__items-smalldrop:hover .sub-menu {
              width: auto; } }
        @media (max-width: 68.75em) {
          .menu-container .main-nav__items-smalldrop:hover .sub-menu {
            max-height: 0;
            padding: 0; } }
        @media (max-width: 68.75em) {
          .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 (max-width: 68.75em) {
        .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; }
        .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 (max-width: 68.75em) {
        .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 1rem;
        padding: 1.5rem 1rem;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        border: 2px solid;
        font-weight: 700;
        font-size: 1.6rem; }
        .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 {
            padding: 0.65rem; } }
        @media (max-width: 68.75em) {
          .menu-container .main-nav__social .btn {
            font-size: Calc( 2.4rem * var(--font-mod) );
            padding: 1rem;
            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); }
      @media (max-width: 68.75em) {
        .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 (max-width: 68.75em) {
        .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: 1.6rem;
        line-height: 35.2px;
        color: #0A0A0A;
        text-transform: none; }
        .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 (max-width: 68.75em) {
      .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; }
      .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;
        text-transform: none; }
        @media (max-width: 68.75em) {
          .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; } }
        .menu-container .sub-menu li.main-nav__items a::after {
          display: none; }
        @media (max-width: 68.75em) {
          .menu-container .sub-menu li.main-nav__items a {
            color: #0A0A0A; } }
        .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 (max-width: 68.75em) {
      .menu-container .mobile-nav {
        display: block;
        margin: 0 1rem; } }
    @media (max-width: 68.75em) {
      .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 (max-width: 68.75em) {
        .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 (max-width: 68.75em) {
    .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 (max-width: 68.75em) {
    .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 (max-width: 68.75em) {
    li.current_page_ancestor .current-main-nav__items > a {
      color: #1238FF !important;
      color: var(--primary) !important; } }

.about {
  width: 100%;
  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; }
  .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 {
        width: 95%; } }
  .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%; }
  .about__content {
    max-width: 60rem;
    width: 100%; }
    .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: #fff; }
      .about__content a:hover {
        color: #fff; }
    .about__content .btn {
      padding: 1.4rem 3.2rem; }
      .about__content .btn:hover {
        background-color: #0A0A0A; }

.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%; }
    .cards-inventaire__container:hover {
      border: 1px solid var(--primary); }
    .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 img {
    width: 100%;
    height: 25rem;
    -o-object-fit: cover;
       object-fit: cover; }
  .cards-inventaire__header-list {
    min-width: 48rem; }
    .cards-inventaire__header-list img {
      max-width: 48rem;
      height: 100%; }
      @media only screen and (max-width: 56.25em) {
        .cards-inventaire__header-list img {
          height: 25rem;
          min-width: 0;
          -o-object-fit: cover;
             object-fit: cover;
          max-width: initial; } }
    @media only screen and (max-width: 56.25em) {
      .cards-inventaire__header-list {
        min-width: initial; } }
  .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; }
    @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__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;
    margin: 0.75rem 0 0; }
    .cards-inventaire__brand span {
      font-size: Calc( 2.6rem * var(--font-mod) );
      font-weight: 700;
      color: #0A0A0A;
      margin: 0 0.5rem 0 0; }
  .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__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;
    -ms-flex-line-pack: start;
        align-content: flex-start; }
  .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: baseline;
          -ms-flex-align: baseline;
              align-items: baseline;
      -ms-flex-pack: distribute;
          justify-content: space-around;
      margin: -0.5rem 0 0 0.15rem; }
  .cards-inventaire__detail {
    font-size: 1.4rem;
    color: #5D5E65;
    color: var(--dark-grey); }
    .cards-inventaire__detail-light {
      color: #B5B5B5;
      color: var(--grey); }
  .cards-inventaire__mois {
    color: #1238FF;
    color: var(--primary);
    text-align: flex-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 {
    font-size: Calc( 4.4rem * var(--font-mod) );
    font-weight: 700;
    letter-spacing: -0.05em;
    color: #1238FF;
    color: var(--primary); }
    .cards-inventaire__price-little {
      font-size: Calc( 2.8rem * var(--font-mod) ); }
    .cards-inventaire__price-symbole {
      font-size: Calc( 2rem * var(--font-mod) ); }
  .cards-inventaire__line {
    width: 100%;
    margin: 1rem 0;
    border-top: 1px solid #B5B5B5;
    border-top: 1px solid var(--grey); }
  .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-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;
    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: fill;
         object-fit: fill; }
  .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__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) ); } }

.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 img {
    width: 100%;
    height: 100%;
    -o-object-fit: fill;
       object-fit: fill; }
  .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__line {
    margin: auto 1rem;
    width: 0.1rem;
    height: 1.5rem;
    background-color: #5D5E65;
    background-color: var(--dark-grey); }
  .cards-default__price {
    font-size: Calc( 2.8rem * var(--font-mod) );
    font-weight: 700;
    color: #1238FF;
    color: var(--primary);
    margin: 1rem 0; }

.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%; }
    @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 a {
        color: #fff; }
    .content__menu-inactive {
      background: #fff;
      -webkit-transition: 0.25s ease;
      transition: 0.25s ease; }
      .content__menu-inactive a {
        color: #0A0A0A; }
      .content__menu-inactive:hover {
        background-color: #0A0A0A;
        cursor: pointer; }
        .content__menu-inactive:hover a {
          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__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 .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: "map" "display";
  grid-template-rows: 30% 60%; }
  @media only screen and (max-width: 75em) {
    .contact {
      grid-template-rows: 25% 60%; } }
  @media only screen and (max-width: 56.25em) {
    .contact {
      grid-template-rows: auto; } }
  @media only screen and (max-width: 75em) {
    .contact p {
      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__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 {
      width: 95%; }
  .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 {
          -webkit-box-orient: horizontal;
          -webkit-box-direction: normal;
              -ms-flex-direction: row;
                  flex-direction: row;
          margin: 2rem auto 1rem; } }
      @media only screen and (max-width: 37.5em) {
        .contact__content-wrapper {
          -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; } }
    @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__open {
    margin: 5rem 0 0; }
    @media only screen and (max-width: 56.25em) {
      .contact__open {
        margin: 0; } }
    .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; }
      .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 {
        font-size: Calc( 2rem * var(--font-mod) ); }
      .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: 100%;
        padding: 0; } }
    @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; } }
  .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;
  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__container {
    margin: 5rem 0 16rem;
    display: grid;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    grid-template-columns: repeat(4, 22%);
    row-gap: 5rem; }
    @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 {
      width: 100%;
      overflow: hidden; }
      .equipe__container .cards-inventaire__header img {
        width: 100%;
        height: 100%;
        -o-object-fit: fill;
           object-fit: fill; }
    .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__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: url("../img/tel_icon.svg") no-repeat; }
    .equipe__container .cards-inventaire__icone-mail:after {
      background: url("../img/mail_icon.svg") 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; }

.esthetique {
  max-width: 156rem;
  width: 95%;
  margin: 0 auto; }
  .esthetique__intro {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 6rem 0 5rem; }
    @media only screen and (max-width: 56.25em) {
      .esthetique__intro {
        padding: 3rem 0; } }
    .esthetique__intro p {
      margin: 1rem 0; }
  .esthetique__forfaits {
    padding: 0 0 11rem 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__light-grey a:hover {
        color: #1238FF;
        color: var(--primary); }
  .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 {
    max-width: 68rem;
    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 3.6rem 4rem; }
    .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%; }
      @media only screen and (max-width: 37.5em) {
        .finance__demande-simplifie p {
          padding: 0 2rem 3rem;
          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] {
      margin: 1rem 0;
      max-width: 33rem; }
    .finance__demande-simplifie a {
      color: #0A0A0A !important; }
      .finance__demande-simplifie a:hover {
        color: #1238FF !important;
        color: var(--primary) !important; }
  .finance__demande-simplifie:nth-of-type(2) p {
    font-weight: 700; }
    @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; }
  .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_error {
    font-size: 1.2rem;
    color: #F20707; }
  .finance .frm_error_style {
    color: #F20707; }
  .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;
    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; }
    .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 {
  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 2.5rem 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.2rem; }
.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; }

.custom-gutenberg h1, .custom-gutenberg h2, .custom-gutenberg h3, .custom-gutenberg h4, .custom-gutenberg h5, .custom-gutenberg h6 {
  margin: 0.5rem 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: 1rem 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; }
.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 {
  display: none;
  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: justify;
        -ms-flex-pack: justify;
            justify-content: space-between; }
    @media only screen and (max-width: 56.25em) {
      .icons__container {
        -ms-flex-pack: distribute;
            justify-content: space-around;
        width: 100%; } }
  .icons__body {
    cursor: pointer; }
  .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; }
  @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: 1px solid #F5F5F5;
    border: 1px solid var(--light-grey);
    -webkit-transform: translateX(0);
            transform: translateX(0);
    -webkit-transition: 0.5s ease-out;
    transition: 0.5s 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.5s ease-in;
        transition: 0.5s 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); } }
    .inventaire__left__title {
      width: 82%;
      margin: 0 auto;
      border-bottom: 1px solid #F5F5F5;
      border-bottom: 1px solid var(--light-grey);
      padding: 0 0 5.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: 0 0 4rem 0; } }
    @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 #F5F5F5;
      border-bottom: 1px solid var(--light-grey); }
    .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: 750ms ease-out;
        transition: 750ms 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: 750ms ease-out;
          transition: 750ms ease-out; }
        .inventaire__left__accord-title-active {
          position: relative;
          -webkit-transition: 750ms ease-in;
          transition: 750ms ease-in; }
          .inventaire__left__accord-title-active::before {
            -webkit-transform: rotate(0);
                    transform: rotate(0);
            opacity: 0;
            -webkit-transition: 750ms ease-in;
            transition: 750ms ease-in; }
      .inventaire__left__accord-content {
        width: 75%;
        max-height: 0;
        overflow: hidden;
        -webkit-transition: all 1s ease-in;
        transition: all 1s ease-in;
        padding: 2.5rem 0 0; }
        .inventaire__left__accord-content-active {
          max-height: 100%;
          -webkit-transition: all 1s ease-out;
          transition: all 1s ease-out; }
      .inventaire__left__accord-wrapper {
        display: grid;
        grid-template-columns: repeat(2, 1fr); }
      .inventaire__left__accord-text {
        margin: 0 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"] {
          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 2.5rem; }
        .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;
          font-weight: 400;
          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 #F5F5F5 !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-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 {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      margin: 4rem; }
      .inventaire__left-btn .btn__medium {
        height: 6rem;
        text-transform: uppercase;
        padding: 0.9rem 1.5rem; }
  .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; } }
    .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__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: 37.5em) {
        .inventaire__right__header {
          -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;
          gap: 1rem; } }
    @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;
      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);
        padding: 0 1.25rem;
        -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 #filtre {
      display: none; }
      @media only screen and (max-width: 56.25em) {
        .inventaire__right #filtre {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex; } }
    .inventaire__right label {
      font-size: Calc( 2rem * var(--font-mod) );
      line-height: Calc( 2.4rem * var(--font-mod) );
      font-weight: 400;
      margin: 1.2rem 0 0 0; }
    .inventaire__right__grid {
      display: grid;
      justify-items: flex-end;
      padding: 1rem 0;
      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: end;
            -ms-flex-align: end;
                align-items: flex-end; }
        @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__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; } }
  .inventaire__loading-spin, .inventaire__error-spin {
    width: 3rem;
    height: 3rem;
    margin: 2rem;
    border-radius: 50%;
    border: 0.3rem solid #1238FF, 0.3;
    border: 0.3rem solid var(--primary), 0.3;
    border-top-color: #1238FF;
    border-top-color: var(--primary);
    -webkit-animation: 1.5s spin infinite linear;
            animation: 1.5s spin infinite linear; }
@-webkit-keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }
@keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }
@-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%; } }
.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__header .btn {
      padding: 0;
      width: 100%;
      height: 8.6rem;
      font-weight: 700;
      font-size: Calc( 3.6rem * var(--font-mod) );
      cursor: default;
      -webkit-box-flex: 0;
          -ms-flex: 0 0 25%;
              flex: 0 0 25%; }
      .new-car__header .btn:hover {
        background-color: #1238FF;
        background-color: var(--primary); }
      @media only screen and (max-width: 90em) {
        .new-car__header .btn {
          height: 7.6rem; } }
      @media only screen and (max-width: 75em) {
        .new-car__header .btn {
          font-size: Calc( 2.8rem * var(--font-mod) );
          height: 6.6rem; } }
      @media only screen and (max-width: 56.25em) {
        .new-car__header .btn {
          -webkit-box-flex: 0;
              -ms-flex: 0 0 50%;
                  flex: 0 0 50%; } }
      @media only screen and (max-width: 37.5em) {
        .new-car__header .btn {
          max-width: inherit;
          height: inherit;
          -webkit-box-flex: 0;
              -ms-flex: 0 0 100%;
                  flex: 0 0 100%;
          font-size: Calc( 4.4rem * var(--font-mod) );
          height: 8.6rem;
          -webkit-box-pack: center;
              -ms-flex-pack: center;
                  justify-content: center; } }
      .new-car__header .btn span {
        padding: 0 3rem; }
        @media only screen and (max-width: 90em) {
          .new-car__header .btn span {
            padding: 0 1.25rem; } }
        @media only screen and (max-width: 75em) {
          .new-car__header .btn span {
            padding: 0 0.75rem; } }
        @media only screen and (max-width: 56.25em) {
          .new-car__header .btn span {
            padding: 0 3rem; } }
        @media only screen and (max-width: 37.5em) {
          .new-car__header .btn span {
            padding: 0; } }
  .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__container {
      -webkit-box-pack: start;
          -ms-flex-pack: start;
              justify-content: flex-start;
      height: inherit;
      -webkit-transition: none;
      transition: none; }
    @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: -25%; }
          .new-car__border .special-link::after {
            width: 3rem;
            height: 0.25rem;
            top: 45%;
            right: -26%; } }

.open-hours {
  width: 100%;
  height: 61rem;
  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 {
      height: 56rem; } }
  @media only screen and (max-width: 56.25em) {
    .open-hours {
      height: 57rem; } }
  @media only screen and (max-width: 37.5em) {
    .open-hours {
      height: 100%; } }
  .open-hours__bg {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    height: 100%;
    background-color: #1238FF;
    background-color: var(--primary); }
    @media only screen and (max-width: 75em) {
      .open-hours__bg {
        -webkit-box-flex: 0;
            -ms-flex: 0 0 33%;
                flex: 0 0 33%; } }
    @media only screen and (max-width: 37.5em) {
      .open-hours__bg {
        display: none; } }
  .open-hours__map {
    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__map {
        display: none; } }
    .open-hours__map iframe {
      padding: 0 !important; }
  .open-hours__container {
    position: absolute;
    left: 0;
    right: 0;
    z-index: 0;
    width: 95%;
    max-width: 156rem;
    margin: 0 auto;
    -ms-flex-item-align: center;
        align-self: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    @media only screen and (min-width: 105em) {
      .open-hours__container {
        margin: 0 auto 0 2%; } }
    @media only screen and (max-width: 75em) {
      .open-hours__container {
        width: 92%; } }
    @media only screen and (max-width: 37.5em) {
      .open-hours__container {
        position: inherit;
        width: 100%; } }
  .open-hours__content {
    width: 55%;
    background-color: #fff;
    padding: 5rem 0;
    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) {
      .open-hours__content {
        padding: 2rem 0; } }
    @media only screen and (max-width: 56.25em) {
      .open-hours__content {
        padding: 2rem;
        width: 60%; } }
    @media only screen and (max-width: 37.5em) {
      .open-hours__content {
        padding: 1.25rem 3rem;
        width: 100%;
        border: 2rem solid #1238FF;
        border: 2rem solid var(--primary); } }
    .open-hours__content div {
      width: 80%;
      margin: 0; }
      @media only screen and (max-width: 56.25em) {
        .open-hours__content div {
          width: 90%; } }
      @media only screen and (max-width: 37.5em) {
        .open-hours__content div {
          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: 37.5em) {
        .open-hours__content div .underline::after {
          top: initial;
          bottom: -25%; } }
    @media only screen and (max-width: 56.25em) {
      .open-hours__content h2 {
        margin: 1rem 0; } }
  .open-hours__list-container {
    padding: 5rem 0 0;
    margin: 0;
    max-width: 65.4rem;
    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; } }
  .open-hours__list {
    margin: 0;
    display: inline-block; }
    @media only screen and (max-width: 37.5em) {
      .open-hours__list {
        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 4rem; } }
    .open-hours__list li {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      margin: 0 0 0.85rem; }
      @media only screen and (max-width: 75em) {
        .open-hours__list li span {
          font-size: Calc( 1.8rem * var(--font-mod) ); } }
      @media only screen and (max-width: 56.25em) {
        .open-hours__list li span {
          font-size: Calc( 2rem * var(--font-mod) ); } }
      .open-hours__list li span:nth-of-type(2) {
        margin: 0 0 0 auto;
        width: 70%; }
      .open-hours__list li:last-of-type {
        margin: 0; }
  .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; } }
    .page__single p {
      padding: 1.5rem 0; }
    @media only screen and (max-width: 37.5em) {
      .page__single img {
        width: 100%;
        margin: 1.25rem 0 !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: 70rem;
    max-height: 56rem;
    width: 100%;
    height: 100%; }
    @media only screen and (max-width: 56.25em) {
      .modal__container {
        max-width: 60rem;
        max-height: 46rem; } }
    @media only screen and (max-width: 37.5em) {
      .modal__container {
        max-width: 40rem; } }
  .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%;
      position: absolute;
      left: 0; }
  .modal__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
  .modal__content {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0 2rem;
    -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; }
    @media only screen and (max-width: 37.5em) {
      .modal__content {
        width: 85%;
        margin: 0 auto;
        padding: 1rem; } }
    .modal__content p {
      font-size: Calc( 2rem * var(--font-mod) );
      margin: 0 0 4rem; }
      @media only screen and (max-width: 37.5em) {
        .modal__content p {
          margin: 0 0 2rem; } }
    .modal__content h2 {
      color: #1238FF;
      color: var(--primary);
      margin: 0 0 4rem; }
      @media only screen and (max-width: 56.25em) {
        .modal__content h2 {
          font-size: Calc( 3.6rem * var(--font-mod) ); } }
      @media only screen and (max-width: 37.5em) {
        .modal__content h2 {
          font-size: Calc( 2.8rem * var(--font-mod) );
          letter-spacing: inherit;
          margin: 0 0 2rem; } }
  .modal__close-button {
    position: absolute;
    top: 7.5%;
    right: 15%;
    cursor: pointer;
    width: 3rem;
    padding: 1.5rem 0; }
    @media only screen and (max-width: 56.25em) {
      .modal__close-button {
        left: 80%; } }
    .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.6rem;
        padding: 0 1rem; } }
  .modal__hide {
    display: none; }

.rendez-vous {
  display: none !important;
  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: grid;
    justify-items: center;
    grid-template-columns: repeat(7, 1fr);
    margin: 0 0 3rem; }
    @media only screen and (max-width: 56.25em) {
      .search-category form {
        grid-template-columns: repeat(4, 1fr);
        justify-items: start;
        gap: 1rem; } }
    @media only screen and (max-width: 37.5em) {
      .search-category form {
        grid-template-columns: repeat(2, 1fr); } }
    .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; }
      .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: -15%; }
  .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-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: -8px;
      right: 0%;
      width: 15px;
      height: 15px;
      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__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 {
      border-width: 3px 3px 0 0; }

.vdp .banner {
  display: none;
  padding: 4rem 0; }
.vdp__wrapper {
  max-width: 156rem;
  width: 95%;
  margin: 0 auto; }
.vdp__breadcrumbs {
  display: none !important;
  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: center;
  width: 100%;
  margin: 2rem 0 1rem; }
  @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; } }
  .vdp__head a {
    color: #0A0A0A; }
    .vdp__head a:hover {
      color: #1238FF;
      color: var(--primary); }
    .vdp__head a h6 {
      display: none !important;
      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: url(../img/ep_printer.svg) 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;
    font-size: 5rem; }
  @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 {
  position: relative;
  height: 450px; }
  .vdp__slider img {
    width: 90%;
    margin: 0 auto;
    -o-object-fit: cover;
       object-fit: cover; }
  .vdp__slider h6 {
    display: none !important;
    position: absolute;
    top: 0;
    /* right: 0; */
    color: #fff;
    background-color: #1238FF;
    background-color: var(--primary);
    padding: 1.3rem 2rem; }
  .vdp__slider-image {
    height: 100%; }
    .vdp__slider-image-active {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex; }
    .vdp__slider-image iframe {
      background-color: #F5F5F5;
      background-color: var(--light-grey); }
      @media only screen and (max-width: 75em) {
        .vdp__slider-image iframe {
          padding: 0; } }
  .vdp__slider-navigation {
    position: relative; }
  .vdp__slider-description {
    flex-direction: column;
    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;
    max-width: 104rem;
    width: 100%; }
    @media only screen and (max-width: 75em) {
      .vdp__slider-col {
        max-width: inherit; } }
  .vdp__slider-image-row {
    display: none !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    position: relative;
    overflow: hidden;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none; }
    .vdp__slider-image-row img {
      width: 25%;
      height: auto;
      -webkit-transition: 0.25s ease;
      transition: 0.25s ease; }
      .vdp__slider-image-row img:hover {
        cursor: pointer; }
  .vdp__slider-image-nav-active {
    outline: 2px solid #1238FF;
    outline: 2px solid var(--primary);
    outline-offset: -2px; }
.vdp__control-bg {
  display: none !important;
  background-color: #1238FF;
  background-color: var(--primary);
  position: absolute;
  bottom: 35%;
  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: 37.5em) {
    .vdp__control-bg {
      bottom: 15%; } }
  .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: 49% 0; }
  @media only screen and (max-width: 75em) {
    .vdp__control-arrow {
      margin: 46% 0; } }
  @media only screen and (max-width: 56.25em) {
    .vdp__control-arrow {
      margin: 45% 0; } }
  @media only screen and (max-width: 37.5em) {
    .vdp__control-arrow {
      margin: 44% 0; } }
  .vdp__control-arrow::before {
    content: '';
    display: block;
    position: absolute;
    bottom: 33%;
    right: 25%;
    width: 15px;
    height: 15px;
    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: none;
margin-top: 1rem;}
  @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;
  flex-direction: column;
      /* -ms-flex-direction: column;
          flex-direction: column; */
  width: 100%;
  margin: 2rem 0;
  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;
  /* flex-direction: column; */
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      min-width: 200px;
          justify-content: space-between;
  margin: 0 0 1rem; }
  @media only screen and (max-width: 75em) {
    .vdp__description-price-finance-container {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      width: 100%; } }
.vdp__description-price p {
  color: #5D5E65;
  color: var(--dark-grey);
  font-size: Calc( 2rem * var(--font-mod) ); }
.vdp__description-price h1 {
  font-weight: 700;
  font-size:32px;
  color: #1238FF;
  color: var(--primary); }
  @media only screen and (max-width: 90em) {
    .vdp__description-price h1 {
      font-size: Calc( 4.4rem * var(--font-mod) ); } }
  @media only screen and (max-width: 75em) {
    .vdp__description-price h1 {
      font-size: Calc( 5.4rem * var(--font-mod) ); } }
.vdp__description-finance {
  padding: 0 3rem 0 0; }
  @media only screen and (max-width: 37.5em) {
    .vdp__description-finance {
      padding: 0;
      justify-self: end; } }
  .vdp__description-finance p {
    font-size: 1.4rem;
    color: #5D5E65;
    color: var(--dark-grey); }
  .vdp__description-finance h3 {
    color: #1238FF;
    color: var(--primary);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 26px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1rem; }
    .vdp__description-finance h3 span {
      font-size: 1.4rem;
      font-weight: 400;
      color: #B5B5B5;
      color: var(--grey);
      text-indent: 0; }
  .vdp__description-finance p:nth-of-type(2) {
    color: #1238FF;
    color: var(--primary); }
.vdp__description-details-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: grid;
  padding: 1rem;
  border: 0.5px solid #dbe1ff;
  gap: 1rem 2rem;
  grid-template-columns: repeat(3, 1fr);
  -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 0 0; 
}
.vdp__description-details h4 {
  word-break: break-all !important; 
  font-size: 16px;
}
  .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) );
    word-break: break-all !important; } }
.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 {
  display: none !important;
  margin: 2rem 0 4rem; }
  .vdp__description-btn .btn {
    padding: 1.8rem 3.9rem; }
.vdp__description-carfax {
  display: none !important;
  max-width: 20rem;
  width: 100%; }
  @media only screen and (max-width: 37.5em) {
    .vdp__description-carfax {
      max-width: 18rem; } }
  .vdp__description-carfax img {
    width: 100%; }
  .vdp__description-carfax a {
    color: #0A0A0A; }
    .vdp__description-carfax a:hover {
      color: #1238FF;
      color: var(--primary); }
      .description-content{
        display: flex !important;
      }
      @media print {
        .print_pagebreak { page-break-before: always; } /* page-break-after works, as well */
    }
.vdp__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column !important;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
          page-break-before: always; }
  @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;
    -webkit-box-align: cneter;
        -ms-flex-align: cneter;
            align-items: cneter;
    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;
box-shadow: none;
-webkit-box-shadow: none }
  .vdp__specifications-container {
    max-width: 85rem;
    width: 95%;
    /* margin: 0 auto; */
    padding: 0 0 1rem 0; 
  margin: 0 0 1rem ;}
  .vdp__specifications-container div[name="options-content"] ul{
    display: grid;
    grid-template-columns: 1fr 1fr;}
    @media only screen and (max-width: 37.5em) {
      .vdp__specifications-container {
        padding: 2rem 0; } }
  .vdp__specifications-nav {
    display: none !important;
    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 0 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: block !important;
    -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-top: 2rem; }
    .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; }
      .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%; }
      @media only screen and (max-width: 56.25em) {
        .vdp__specifications-list li {
          font-size: Calc( 1.8rem * var(--font-mod) ); } }
          .vdp__specifications-container div[name="options-content"] .vdp__specifications-list {
            width: 100%;
          max-width: none;}
  .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 {
  display: none !important;
  max-width: 98rem;
  width: 100%;
  margin: 0 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: 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: 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: 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 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%; }
  .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%; }
  .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 {
  width: 0;
  color: #1238FF;
  color: var(--primary);
  background-color: #1238FF;
  background-color: var(--primary);
  position: relative; }
  .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: 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: 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); }
.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: none !important;
  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: none !important;
  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;
  border: 2px solid #1238FF;
  border: 2px solid var(--primary);
  gap: 1.5rem;
  width: 100%; }
  .vdp__share-social-media {
    width: 30%;
    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: 75em) {
      .vdp__share-social-media {
        width: 50%; } }
    .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: 1rem 0 0;
  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: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%; }
  .vdp__localisation-title {
    display: none !important;
    background-color: #F5F5F5;
    background-color: var(--light-grey);
    padding: 7rem 0;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    margin: 0 auto; }
    @media only screen and (max-width: 56.25em) {
      .vdp__localisation-title {
        display: none !important;
        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: 1rem 0 0 0 !important;}
    .vdp__localisation-coordinates h6 {
      color: #1238FF;
      color: var(--primary);
      margin: 0 0 1rem; 
      font-size: 2.5rem;}
    .vdp__localisation-coordinates a {
      color: #0A0A0A;
      line-height: 1.4; 
      font-size: 1.75rem;}
      @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 {
    display: none !important;
    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 {
  display: none !important;
  margin: 5rem auto;
  width: 70%; }
  .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 .new-car {
  display: none !important;
  padding: 5rem 0 0;
  max-width: inherit;
  width: 100%; }
  .vdp .new-car__header, .vdp .new-car__inventaires {
    width: 100%;
    margin: 0; }
  .vdp .new-car__header .btn {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%; }
    @media only screen and (max-width: 90em) {
      .vdp .new-car__header .btn {
        font-size: Calc( 2.8rem * var(--font-mod) ); } }
    @media only screen and (max-width: 75em) {
      .vdp .new-car__header .btn {
        font-size: Calc( 2.6rem * var(--font-mod) ); } }
    @media only screen and (max-width: 56.25em) {
      .vdp .new-car__header .btn {
        font-size: Calc( 2.8rem * var(--font-mod) ); } }
    @media only screen and (max-width: 37.5em) {
      .vdp .new-car__header .btn {
        -webkit-box-flex: 0;
            -ms-flex: 0 0 100%;
                flex: 0 0 100%;
        font-size: Calc( 3.6rem * var(--font-mod) );
        text-indent: 0;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center; } }
  .vdp .new-car__header .btn,
  .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 {
    height: 100%; }
  @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; } }

.vehicle-type {
  margin: 5rem auto 3rem;
  max-width: 156rem;
  width: 95%; }
  @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;
    row-gap: 3rem; }
    @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: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); }
    .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; }
      .vehicle-type .heroes-banner__type a img {
        margin: 0 0 2rem; }
        @media only screen and (max-width: 75em) {
          .vehicle-type .heroes-banner__type a img {
            width: auto;
            height: 100%; } }
        @media only screen and (max-width: 37.5em) {
          .vehicle-type .heroes-banner__type a img {
            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) ); } }
          .icons {
            display: none; } 


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