@keyframes bounceIt {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(3px);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes bounceItReverse {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-3px);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes scalyPagination {
  0% {
    transform: scale(0.8);
  }
  50% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(0.8);
  }
}
/*BOOTSTRAP GRID*/
@-ms-viewport {
  width: device-width;
}
html {
  box-sizing: border-box;
  -ms-overflow-style: scrollbar;
}

*, ::after, ::before {
  box-sizing: inherit;
}

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
.container-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}

.no-gutters > .col, .no-gutters > [class*=col-] {
  padding-right: 0;
  padding-left: 0;
}

.col, .col-1, .col-10, .col-11, .col-12, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-auto, .col-lg, .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-auto, .col-md, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-auto, .col-sm, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-auto, .col-xl, .col-xl-1, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-auto {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

.col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0%;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}

.col-auto {
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: none;
}

.col-1 {
  -ms-flex: 0 0 8.333333%;
  flex: 0 0 8.333333%;
  max-width: 8.333333%;
}

.col-2 {
  -ms-flex: 0 0 16.666667%;
  flex: 0 0 16.666667%;
  max-width: 16.666667%;
}

.col-3 {
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}

.col-5 {
  -ms-flex: 0 0 41.666667%;
  flex: 0 0 41.666667%;
  max-width: 41.666667%;
}

.col-6 {
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  -ms-flex: 0 0 58.333333%;
  flex: 0 0 58.333333%;
  max-width: 58.333333%;
}

.col-8 {
  -ms-flex: 0 0 66.666667%;
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
}

.col-9 {
  -ms-flex: 0 0 75%;
  flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  -ms-flex: 0 0 83.333333%;
  flex: 0 0 83.333333%;
  max-width: 83.333333%;
}

.col-11 {
  -ms-flex: 0 0 91.666667%;
  flex: 0 0 91.666667%;
  max-width: 91.666667%;
}

.col-12 {
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

.order-first {
  -ms-flex-order: -1;
  order: -1;
}

.order-last {
  -ms-flex-order: 13;
  order: 13;
}

.order-0 {
  -ms-flex-order: 0;
  order: 0;
}

.order-1 {
  -ms-flex-order: 1;
  order: 1;
}

.order-2 {
  -ms-flex-order: 2;
  order: 2;
}

.order-3 {
  -ms-flex-order: 3;
  order: 3;
}

.order-4 {
  -ms-flex-order: 4;
  order: 4;
}

.order-5 {
  -ms-flex-order: 5;
  order: 5;
}

.order-6 {
  -ms-flex-order: 6;
  order: 6;
}

.order-7 {
  -ms-flex-order: 7;
  order: 7;
}

.order-8 {
  -ms-flex-order: 8;
  order: 8;
}

.order-9 {
  -ms-flex-order: 9;
  order: 9;
}

.order-10 {
  -ms-flex-order: 10;
  order: 10;
}

.order-11 {
  -ms-flex-order: 11;
  order: 11;
}

.order-12 {
  -ms-flex-order: 12;
  order: 12;
}

.offset-1 {
  margin-left: 8.333333%;
}

.offset-2 {
  margin-left: 16.666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.333333%;
}

.offset-5 {
  margin-left: 41.666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.333333%;
}

.offset-8 {
  margin-left: 66.666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.333333%;
}

.offset-11 {
  margin-left: 91.666667%;
}

@media (min-width: 576px) {
  .col-sm {
    -ms-flex-preferred-size: 0;
    flex-basis: 0%;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-sm-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-sm-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-sm-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-sm-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-sm-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-sm-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-sm-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-sm-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-sm-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-sm-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-sm-first {
    -ms-flex-order: -1;
    order: -1;
  }
  .order-sm-last {
    -ms-flex-order: 13;
    order: 13;
  }
  .order-sm-0 {
    -ms-flex-order: 0;
    order: 0;
  }
  .order-sm-1 {
    -ms-flex-order: 1;
    order: 1;
  }
  .order-sm-2 {
    -ms-flex-order: 2;
    order: 2;
  }
  .order-sm-3 {
    -ms-flex-order: 3;
    order: 3;
  }
  .order-sm-4 {
    -ms-flex-order: 4;
    order: 4;
  }
  .order-sm-5 {
    -ms-flex-order: 5;
    order: 5;
  }
  .order-sm-6 {
    -ms-flex-order: 6;
    order: 6;
  }
  .order-sm-7 {
    -ms-flex-order: 7;
    order: 7;
  }
  .order-sm-8 {
    -ms-flex-order: 8;
    order: 8;
  }
  .order-sm-9 {
    -ms-flex-order: 9;
    order: 9;
  }
  .order-sm-10 {
    -ms-flex-order: 10;
    order: 10;
  }
  .order-sm-11 {
    -ms-flex-order: 11;
    order: 11;
  }
  .order-sm-12 {
    -ms-flex-order: 12;
    order: 12;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.333333%;
  }
  .offset-sm-2 {
    margin-left: 16.666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.333333%;
  }
  .offset-sm-5 {
    margin-left: 41.666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.333333%;
  }
  .offset-sm-8 {
    margin-left: 66.666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.333333%;
  }
  .offset-sm-11 {
    margin-left: 91.666667%;
  }
}
@media (min-width: 768px) {
  .col-md {
    -ms-flex-preferred-size: 0;
    flex-basis: 0%;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-md-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-md-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-md-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-md-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-md-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-md-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-md-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-md-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-md-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-md-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-md-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-md-first {
    -ms-flex-order: -1;
    order: -1;
  }
  .order-md-last {
    -ms-flex-order: 13;
    order: 13;
  }
  .order-md-0 {
    -ms-flex-order: 0;
    order: 0;
  }
  .order-md-1 {
    -ms-flex-order: 1;
    order: 1;
  }
  .order-md-2 {
    -ms-flex-order: 2;
    order: 2;
  }
  .order-md-3 {
    -ms-flex-order: 3;
    order: 3;
  }
  .order-md-4 {
    -ms-flex-order: 4;
    order: 4;
  }
  .order-md-5 {
    -ms-flex-order: 5;
    order: 5;
  }
  .order-md-6 {
    -ms-flex-order: 6;
    order: 6;
  }
  .order-md-7 {
    -ms-flex-order: 7;
    order: 7;
  }
  .order-md-8 {
    -ms-flex-order: 8;
    order: 8;
  }
  .order-md-9 {
    -ms-flex-order: 9;
    order: 9;
  }
  .order-md-10 {
    -ms-flex-order: 10;
    order: 10;
  }
  .order-md-11 {
    -ms-flex-order: 11;
    order: 11;
  }
  .order-md-12 {
    -ms-flex-order: 12;
    order: 12;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.333333%;
  }
  .offset-md-2 {
    margin-left: 16.666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.333333%;
  }
  .offset-md-5 {
    margin-left: 41.666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.333333%;
  }
  .offset-md-8 {
    margin-left: 66.666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.333333%;
  }
  .offset-md-11 {
    margin-left: 91.666667%;
  }
}
@media (min-width: 992px) {
  .col-lg {
    -ms-flex-preferred-size: 0;
    flex-basis: 0%;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-lg-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-lg-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-lg-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-lg-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-lg-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-lg-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-lg-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-lg-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-lg-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-lg-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-lg-first {
    -ms-flex-order: -1;
    order: -1;
  }
  .order-lg-last {
    -ms-flex-order: 13;
    order: 13;
  }
  .order-lg-0 {
    -ms-flex-order: 0;
    order: 0;
  }
  .order-lg-1 {
    -ms-flex-order: 1;
    order: 1;
  }
  .order-lg-2 {
    -ms-flex-order: 2;
    order: 2;
  }
  .order-lg-3 {
    -ms-flex-order: 3;
    order: 3;
  }
  .order-lg-4 {
    -ms-flex-order: 4;
    order: 4;
  }
  .order-lg-5 {
    -ms-flex-order: 5;
    order: 5;
  }
  .order-lg-6 {
    -ms-flex-order: 6;
    order: 6;
  }
  .order-lg-7 {
    -ms-flex-order: 7;
    order: 7;
  }
  .order-lg-8 {
    -ms-flex-order: 8;
    order: 8;
  }
  .order-lg-9 {
    -ms-flex-order: 9;
    order: 9;
  }
  .order-lg-10 {
    -ms-flex-order: 10;
    order: 10;
  }
  .order-lg-11 {
    -ms-flex-order: 11;
    order: 11;
  }
  .order-lg-12 {
    -ms-flex-order: 12;
    order: 12;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.333333%;
  }
  .offset-lg-2 {
    margin-left: 16.666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.333333%;
  }
  .offset-lg-5 {
    margin-left: 41.666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.333333%;
  }
  .offset-lg-8 {
    margin-left: 66.666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.333333%;
  }
  .offset-lg-11 {
    margin-left: 91.666667%;
  }
}
@media (min-width: 1201px) {
  .col-xl {
    -ms-flex-preferred-size: 0;
    flex-basis: 0%;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-xl-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-xl-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-xl-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-xl-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xl-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-xl-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-xl-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xl-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-xl-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-xl-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xl-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-xl-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-xl-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-xl-first {
    -ms-flex-order: -1;
    order: -1;
  }
  .order-xl-last {
    -ms-flex-order: 13;
    order: 13;
  }
  .order-xl-0 {
    -ms-flex-order: 0;
    order: 0;
  }
  .order-xl-1 {
    -ms-flex-order: 1;
    order: 1;
  }
  .order-xl-2 {
    -ms-flex-order: 2;
    order: 2;
  }
  .order-xl-3 {
    -ms-flex-order: 3;
    order: 3;
  }
  .order-xl-4 {
    -ms-flex-order: 4;
    order: 4;
  }
  .order-xl-5 {
    -ms-flex-order: 5;
    order: 5;
  }
  .order-xl-6 {
    -ms-flex-order: 6;
    order: 6;
  }
  .order-xl-7 {
    -ms-flex-order: 7;
    order: 7;
  }
  .order-xl-8 {
    -ms-flex-order: 8;
    order: 8;
  }
  .order-xl-9 {
    -ms-flex-order: 9;
    order: 9;
  }
  .order-xl-10 {
    -ms-flex-order: 10;
    order: 10;
  }
  .order-xl-11 {
    -ms-flex-order: 11;
    order: 11;
  }
  .order-xl-12 {
    -ms-flex-order: 12;
    order: 12;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.333333%;
  }
  .offset-xl-2 {
    margin-left: 16.666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.333333%;
  }
  .offset-xl-5 {
    margin-left: 41.666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.333333%;
  }
  .offset-xl-8 {
    margin-left: 66.666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.333333%;
  }
  .offset-xl-11 {
    margin-left: 91.666667%;
  }
}
@media (min-width: 1600px) {
  .col-xxl {
    -ms-flex-preferred-size: 0;
    flex-basis: 0%;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-xxl-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-xxl-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-xxl-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-xxl-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xxl-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-xxl-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-xxl-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xxl-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-xxl-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-xxl-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xxl-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-xxl-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-xxl-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-xxl-first {
    -ms-flex-order: -1;
    order: -1;
  }
  .order-xxl-last {
    -ms-flex-order: 13;
    order: 13;
  }
  .order-xxl-0 {
    -ms-flex-order: 0;
    order: 0;
  }
  .order-xxl-1 {
    -ms-flex-order: 1;
    order: 1;
  }
  .order-xxl-2 {
    -ms-flex-order: 2;
    order: 2;
  }
  .order-xxl-3 {
    -ms-flex-order: 3;
    order: 3;
  }
  .order-xxl-4 {
    -ms-flex-order: 4;
    order: 4;
  }
  .order-xxl-5 {
    -ms-flex-order: 5;
    order: 5;
  }
  .order-xxl-6 {
    -ms-flex-order: 6;
    order: 6;
  }
  .order-xxl-7 {
    -ms-flex-order: 7;
    order: 7;
  }
  .order-xxl-8 {
    -ms-flex-order: 8;
    order: 8;
  }
  .order-xxl-9 {
    -ms-flex-order: 9;
    order: 9;
  }
  .order-xxl-10 {
    -ms-flex-order: 10;
    order: 10;
  }
  .order-xxl-11 {
    -ms-flex-order: 11;
    order: 11;
  }
  .order-xxl-12 {
    -ms-flex-order: 12;
    order: 12;
  }
  .offset-xxl-0 {
    margin-left: 0;
  }
  .offset-xxl-1 {
    margin-left: 8.333333%;
  }
  .offset-xxl-2 {
    margin-left: 16.666667%;
  }
  .offset-xxl-3 {
    margin-left: 25%;
  }
  .offset-xxl-4 {
    margin-left: 33.333333%;
  }
  .offset-xxl-5 {
    margin-left: 41.666667%;
  }
  .offset-xxl-6 {
    margin-left: 50%;
  }
  .offset-xxl-7 {
    margin-left: 58.333333%;
  }
  .offset-xxl-8 {
    margin-left: 66.666667%;
  }
  .offset-xxl-9 {
    margin-left: 75%;
  }
  .offset-xxl-10 {
    margin-left: 83.333333%;
  }
  .offset-xxl-11 {
    margin-left: 91.666667%;
  }
}
.d-none {
  display: none !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: -ms-flexbox !important;
  display: flex !important;
}

.d-inline-flex {
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
}

@media (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-table {
    display: table !important;
  }
  .d-sm-table-row {
    display: table-row !important;
  }
  .d-sm-table-cell {
    display: table-cell !important;
  }
  .d-sm-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-table {
    display: table !important;
  }
  .d-md-table-row {
    display: table-row !important;
  }
  .d-md-table-cell {
    display: table-cell !important;
  }
  .d-md-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-md-inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-table {
    display: table !important;
  }
  .d-lg-table-row {
    display: table-row !important;
  }
  .d-lg-table-cell {
    display: table-cell !important;
  }
  .d-lg-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-table {
    display: table !important;
  }
  .d-xl-table-row {
    display: table-row !important;
  }
  .d-xl-table-cell {
    display: table-cell !important;
  }
  .d-xl-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media print {
  .d-print-none {
    display: none !important;
  }
  .d-print-inline {
    display: inline !important;
  }
  .d-print-inline-block {
    display: inline-block !important;
  }
  .d-print-block {
    display: block !important;
  }
  .d-print-table {
    display: table !important;
  }
  .d-print-table-row {
    display: table-row !important;
  }
  .d-print-table-cell {
    display: table-cell !important;
  }
  .d-print-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-print-inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
.flex-row {
  -ms-flex-direction: row !important;
  flex-direction: row !important;
}

.flex-column {
  -ms-flex-direction: column !important;
  flex-direction: column !important;
}

.flex-row-reverse {
  -ms-flex-direction: row-reverse !important;
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  -ms-flex-direction: column-reverse !important;
  flex-direction: column-reverse !important;
}

.flex-wrap {
  -ms-flex-wrap: wrap !important;
  flex-wrap: wrap !important;
}

.flex-nowrap {
  -ms-flex-wrap: nowrap !important;
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  -ms-flex-wrap: wrap-reverse !important;
  flex-wrap: wrap-reverse !important;
}

.flex-fill {
  -ms-flex: 1 1 auto !important;
  flex: 1 1 auto !important;
}

.flex-grow-0 {
  -ms-flex-positive: 0 !important;
  flex-grow: 0 !important;
}

.flex-grow-1 {
  -ms-flex-positive: 1 !important;
  flex-grow: 1 !important;
}

.flex-shrink-0 {
  -ms-flex-negative: 0 !important;
  flex-shrink: 0 !important;
}

.flex-shrink-1 {
  -ms-flex-negative: 1 !important;
  flex-shrink: 1 !important;
}

.justify-content-start {
  -ms-flex-pack: start !important;
  justify-content: flex-start !important;
}

.justify-content-end {
  -ms-flex-pack: end !important;
  justify-content: flex-end !important;
}

.justify-content-center {
  -ms-flex-pack: center !important;
  justify-content: center !important;
}

.justify-content-between {
  -ms-flex-pack: justify !important;
  justify-content: space-between !important;
}

.justify-content-around {
  -ms-flex-pack: distribute !important;
  justify-content: space-around !important;
}

.align-items-start {
  -ms-flex-align: start !important;
  align-items: flex-start !important;
}

.align-items-end {
  -ms-flex-align: end !important;
  align-items: flex-end !important;
}

.align-items-center {
  -ms-flex-align: center !important;
  align-items: center !important;
}

.align-items-baseline {
  -ms-flex-align: baseline !important;
  align-items: baseline !important;
}

.align-items-stretch {
  -ms-flex-align: stretch !important;
  align-items: stretch !important;
}

.align-content-start {
  -ms-flex-line-pack: start !important;
  align-content: flex-start !important;
}

.align-content-end {
  -ms-flex-line-pack: end !important;
  align-content: flex-end !important;
}

.align-content-center {
  -ms-flex-line-pack: center !important;
  align-content: center !important;
}

.align-content-between {
  -ms-flex-line-pack: justify !important;
  align-content: space-between !important;
}

.align-content-around {
  -ms-flex-line-pack: distribute !important;
  align-content: space-around !important;
}

.align-content-stretch {
  -ms-flex-line-pack: stretch !important;
  align-content: stretch !important;
}

.align-self-auto {
  -ms-flex-item-align: auto !important;
  align-self: auto !important;
}

.align-self-start {
  -ms-flex-item-align: start !important;
  align-self: flex-start !important;
}

.align-self-end {
  -ms-flex-item-align: end !important;
  align-self: flex-end !important;
}

.align-self-center {
  -ms-flex-item-align: center !important;
  align-self: center !important;
}

.align-self-baseline {
  -ms-flex-item-align: baseline !important;
  align-self: baseline !important;
}

.align-self-stretch {
  -ms-flex-item-align: stretch !important;
  align-self: stretch !important;
}

@media (min-width: 576px) {
  .flex-sm-row {
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-sm-column {
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-sm-row-reverse {
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-sm-column-reverse {
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-sm-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .flex-sm-fill {
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }
  .flex-sm-grow-0 {
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }
  .flex-sm-grow-1 {
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }
  .flex-sm-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  .flex-sm-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  .justify-content-sm-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-sm-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-sm-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .align-items-sm-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-sm-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-sm-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-sm-baseline {
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-sm-stretch {
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-sm-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-sm-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-sm-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-sm-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-sm-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-sm-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-sm-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-sm-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-sm-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-sm-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-sm-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-sm-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}
@media (min-width: 768px) {
  .flex-md-row {
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-md-column {
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-md-row-reverse {
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-md-column-reverse {
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-md-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .flex-md-fill {
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }
  .flex-md-grow-0 {
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }
  .flex-md-grow-1 {
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }
  .flex-md-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  .flex-md-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  .justify-content-md-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-md-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-md-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-md-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-md-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .align-items-md-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-md-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-md-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-md-baseline {
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-md-stretch {
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-md-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-md-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-md-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-md-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-md-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-md-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-md-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-md-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-md-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-md-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-md-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-md-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}
@media (min-width: 992px) {
  .flex-lg-row {
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-lg-column {
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-lg-row-reverse {
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-lg-column-reverse {
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-lg-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .flex-lg-fill {
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }
  .flex-lg-grow-0 {
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }
  .flex-lg-grow-1 {
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }
  .flex-lg-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  .flex-lg-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  .justify-content-lg-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-lg-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-lg-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .align-items-lg-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-lg-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-lg-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-lg-baseline {
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-lg-stretch {
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-lg-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-lg-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-lg-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-lg-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-lg-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-lg-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-lg-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-lg-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-lg-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-lg-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-lg-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-lg-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}
@media (min-width: 1200px) {
  .flex-xl-row {
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-xl-column {
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-xl-row-reverse {
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-xl-column-reverse {
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-xl-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .flex-xl-fill {
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }
  .flex-xl-grow-0 {
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }
  .flex-xl-grow-1 {
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }
  .flex-xl-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  .flex-xl-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  .justify-content-xl-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-xl-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-xl-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .align-items-xl-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-xl-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-xl-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-xl-baseline {
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-xl-stretch {
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-xl-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-xl-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-xl-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-xl-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-xl-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-xl-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-xl-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-xl-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-xl-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-xl-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-xl-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-xl-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

sup {
  vertical-align: super;
  font-size: 0.6rem;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}

q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

@font-face {
  font-family: "BERNIERTM";
  src: url("../font/BERNIER-Regular.woff2") format("woff2"), url("../font/BERNIER-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
html {
  font-family: "neulis-neue", Helvetica, sans-serif;
  font-weight: normal;
  font-size: 1rem;
  color: #012830;
  max-width: 100vw;
  overflow-x: hidden;
  position: relative;
  left: 0;
}

p, li {
  line-height: 1.2;
}

p strong, p b {
  font-weight: bold;
}

p a {
  text-decoration: underline;
}

li a {
  text-decoration: underline;
}
li strong, li b {
  font-weight: bold;
}

*, :before, :after {
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  max-height: 100%;
  height: auto;
  user-select: none;
}

picture {
  width: 100%;
  height: 100%;
  display: block;
  user-select: none;
}

section {
  padding: 3rem 5vw 0 5vw;
}

button {
  cursor: pointer;
  outline: none;
}

body {
  position: relative;
  overflow-x: hidden;
}

.center {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.spaceBtm {
  margin-bottom: 3rem;
}

.spaceTop {
  margin-top: 3rem;
}

.darkBg {
  background-color: #012830;
  color: #ffffff;
  padding-bottom: 3rem;
}

.btn {
  padding: 0.6rem 1.5rem 0.6rem 1.5rem;
  display: inline-block;
  font-size: 0.9rem;
  color: #ffffff;
  cursor: pointer;
  position: relative;
  text-transform: uppercase;
  background-color: #99c555;
  border-radius: 2rem;
  font-weight: bold;
  transition: 0.3s 0.3s cubic-bezier(0, 0.07, 0.57, 0.99);
}
.btn.white {
  color: #99c555;
  background-color: #ffffff;
}
.btn.white:hover {
  background-color: #012830;
  color: #ffffff;
}
.btn.blue {
  color: #ffffff;
  background-color: #009ebd;
}
.btn.blue:hover {
  background-color: #99c555;
}
.btn.blueHover:hover {
  background-color: #009ebd;
  color: #ffffff;
}
.btn:hover {
  background-color: #012830;
  color: #ffffff;
}

.secondaryBtn {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  font-size: 1rem;
  cursor: pointer;
  position: relative;
}
.secondaryBtn svg {
  width: 1rem;
  height: 1rem;
  margin-right: 0.5rem;
}
.secondaryBtn svg path {
  stroke: #012830;
  fill: transparent;
}
.secondaryBtn:hover svg {
  animation-name: bounceIt;
  animation-duration: 0.6s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  animation-delay: 0s;
  animation-fill-mode: both;
}

.linksRow {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.linksRow .ctaBlock {
  width: 50%;
  align-items: flex-start;
}

.ctaBox p {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: nowrap;
  font-size: 2rem;
  font-weight: bold;
  color: #99c555;
}
.title p {
  line-height: 1.2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: nowrap;
}
.title br {
  display: none;
}
.title strong {
  font-size: 2.6rem;
  color: #012830;
}
.title em {
  font-size: 1.2rem;
  font-weight: 500;
}
.title.center {
  text-align: center;
  align-items: center;
}
.title.center p {
  align-items: center;
}
.title.needWhite strong {
  color: #ffffff;
}
.title.needDark {
  color: #012830;
}
.title.blackEm em {
  color: #012830;
}
.title.fullWhite {
  color: #ffffff;
}
.title.fullWhite em {
  color: #ffffff;
}
.title.fullWhite strong {
  color: #ffffff;
}

.secondTitle {
  font-size: 1.4rem;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: nowrap;
  color: #99c555;
  text-wrap: balance;
}
.secondTitle.center {
  text-align: center;
  align-items: center;
}
.secondTitle em {
  font-size: 1.1rem;
  font-weight: 500;
  color: #012830;
}
.secondTitle.needWhite em {
  color: #ffffff;
}
.secondTitle.fullWhite {
  color: #ffffff;
}
.secondTitle.fullWhite em {
  color: #ffffff;
}

.block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: nowrap;
}
.block.center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
}

.coverImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  -o-object-fit: cover;
  -o-object-position: center;
  vertical-align: middle;
}

.rounded {
  border-radius: 2rem;
  overflow: hidden;
}
.rounded img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  -o-object-fit: cover;
  -o-object-position: center;
  vertical-align: middle;
}

.text {
  margin: 1.5rem 0;
  max-width: 100%;
}
.text p {
  width: 750px;
  max-width: 100%;
  margin: 0.75rem 0;
}
.text ul {
  margin: 1rem 0;
  list-style: disc;
  padding-left: 2rem;
  width: 750px;
  max-width: 100%;
}
.text ul li {
  margin: 0.7rem 0;
  line-height: 1.2;
}
.text ol {
  margin: 1rem 0;
  list-style: decimal;
  padding-left: 2rem;
  width: 750px;
  max-width: 100%;
}
.text ol li {
  margin: 0.7rem 0;
  line-height: 1.2;
}
.text em {
  font-style: italic;
  text-decoration: underline;
}
.text.center p {
  text-align: center;
  margin: 0.75rem auto;
}
.text.center ul {
  text-align: center;
  list-style-position: inside;
}
.text.center ul li {
  margin: 1.1rem auto;
}
.text.justify p {
  text-align: justify;
}
.text a.tel {
  text-decoration: none;
  position: relative;
  padding-left: 30px;
}
.text a.tel:before {
  content: "";
  width: 15px;
  height: 15px;
  position: absolute;
  left: 7.5px;
  top: calc(50% - 7.5px);
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9IiNmZmZmZmYiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIiBjbGFzcz0ibHVjaWRlIGx1Y2lkZS1waG9uZS1jYWxsLWljb24gbHVjaWRlLXBob25lLWNhbGwiPjxwYXRoIGQ9Ik0xMyAyYTkgOSAwIDAgMSA5IDkiLz48cGF0aCBkPSJNMTMgNmE1IDUgMCAwIDEgNSA1Ii8+PHBhdGggZD0iTTEzLjgzMiAxNi41NjhhMSAxIDAgMCAwIDEuMjEzLS4zMDNsLjM1NS0uNDY1QTIgMiAwIDAgMSAxNyAxNWgzYTIgMiAwIDAgMSAyIDJ2M2EyIDIgMCAwIDEtMiAyQTE4IDE4IDAgMCAxIDIgNGEyIDIgMCAwIDEgMi0yaDNhMiAyIDAgMCAxIDIgMnYzYTIgMiAwIDAgMS0uOCAxLjZsLS40NjguMzUxYTEgMSAwIDAgMC0uMjkyIDEuMjMzIDE0IDE0IDAgMCAwIDYuMzkyIDYuMzg0Ii8+PC9zdmc+");
  background-size: contain;
  background-repeat: no-repeat;
}

.prettyList {
  font-family: "flood-std", sans-serif;
  padding-left: 5%;
  list-style: none;
  font-size: 2rem;
}
.prettyList li {
  margin: 0.5rem 0 !important;
  list-style: none;
}

.prettyOl {
  list-style: none;
  font-size: 1.2rem;
  counter-reset: pretty-counter;
  padding-left: 2rem;
}
.prettyOl li {
  margin: 0.5rem 0;
  list-style: none;
  font-weight: bold;
}
.prettyOl li::before {
  content: counter(pretty-counter);
  counter-increment: pretty-counter;
  display: inline-block;
  width: 2.5rem;
  height: 2.5rem;
  line-height: 2.5rem;
  border-radius: 50%;
  background-color: #99c555;
  color: #ffffff;
  text-align: center;
  margin-right: 1rem;
}

/* Quote style */
.quote {
  width: 500px;
  max-width: 100%;
}
.quote .quoteContent {
  position: relative;
  font-size: 1.6rem;
  text-wrap: balance;
  font-weight: 500;
}
.quote .quoteContent:before {
  content: "";
  position: absolute;
  top: -74px;
  left: 0;
  height: 64px;
  width: 79px;
  background-image: url("../img/quote.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.quote .signature {
  color: #009ebd;
  margin-top: 0.5rem;
}

/* Basic content */
.basicContent {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.basicContent.reverse .row {
  flex-direction: row-reverse;
}
.basicContent .basicContent_img {
  position: relative;
}
.basicContent .quoteContainer {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  width: 100%;
  margin-top: 0.75rem;
}

/* Image transition */
.imgTransition {
  padding: 0;
  margin-top: -15rem;
  position: relative;
  height: 760px;
  overflow: hidden;
}
.imgTransition picture {
  width: 100%;
  height: 100%;
}
.imgTransition picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  -o-object-fit: cover;
  -o-object-position: center;
  vertical-align: middle;
}
.imgTransition.needDark:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
}

.textTransition {
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  color: #ffffff;
  width: 100%;
  height: 100%;
  padding: 17rem calc(5% + 2rem) 3rem calc(5% + 2rem);
}

.youtubeFrame {
  border-radius: 1rem;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.youtubeFrame iframe {
  border-radius: 1rem;
  max-width: 100%;
}
.youtubeFrame.cmplz-blocked-content-container {
  background-size: cover;
  position: relative;
}
.youtubeFrame .cmplz-blocked-content-notice {
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 1rem;
  padding: 1rem;
  color: #000;
  position: absolute;
  bottom: 1rem;
  left: 1rem;
}
.youtubeFrame .cmplz-blocked-content-notice .cmplz-links {
  margin: 0.5rem 0;
}
.youtubeFrame .cmplz-blocked-content-notice .cmplz-links a {
  text-decoration: underline;
}
.youtubeFrame .cmplz-blocked-content-notice button {
  background-color: #000;
  color: #fff;
  border-radius: 1rem;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid #000;
  transition: all 0.3s;
}
.youtubeFrame .cmplz-blocked-content-notice button:hover {
  background-color: #000;
  color: #fff;
}

.basicAppear {
  opacity: 0;
}
.basicAppear.-y {
  transform: translate(0, 50px) scale(1);
}
.basicAppear.-y.scaly {
  transform: translate(0, 50px) scale(0.8);
}
.basicAppear.-noOpaq {
  opacity: 1;
}
.basicAppear.-xLeft {
  transform: translate(-200px, 0) scale(1);
}
.basicAppear.-xRight {
  transform: translate(200px, 0) scale(1);
}

.stickyAppear.toScaleImg {
  transform: scale(1.2);
}
.stickyAppear.toScale {
  transform: scale(0.7);
}
.stickyAppear.fromBtm {
  transform: translate(0, 50px);
}
.stickyAppear.fromBtm.increase {
  transform: translate(0, 100px);
}
.stickyAppear.fromTop {
  transform: translate(0, -50px);
}
.stickyAppear.fromTop.increase {
  transform: translate(0, -100px);
}
.stickyAppear.fromLeft {
  transform: translate(-50px, 0);
}
.stickyAppear.fromLeft.increase {
  transform: translate(-100px, 0);
}
.stickyAppear.fromRight {
  transform: translate(50px, 0);
}
.stickyAppear.fromRight.increase {
  transform: translate(100px, 0);
}

.loading::before,
.loading::after {
  content: "";
  position: fixed;
  z-index: 4000;
}

.loading::before {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #012830;
}

.loading::after {
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  margin: -30px 0 0 -30px;
  border-radius: 50%;
  opacity: 0.4;
  background: #99c555;
  animation: loaderAnim 0.7s linear infinite alternate forwards;
}

@keyframes loaderAnim {
  to {
    opacity: 1;
    transform: scale3d(0.5, 0.5, 1);
  }
}
.cursor-follower {
  position: fixed;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background-color: #99c555;
  opacity: 0;
  z-index: 10000;
  user-select: none;
  pointer-events: none;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.25rem;
}
.cursor-follower svg {
  width: 12px;
  height: 12px;
  stroke: #ffffff;
  stroke-width: 2;
}
.cursor-follower.isActive svg:first-child {
  animation-name: bounceIt;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  animation-delay: 0s;
  animation-fill-mode: both;
}
.cursor-follower.isActive svg:last-child {
  animation-name: bounceItReverse;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  animation-delay: 0s;
  animation-fill-mode: both;
}
.cursor-follower.white {
  background-color: #ffffff;
}
.cursor-follower.white svg {
  stroke: #99c555;
}

/*HEADER*/
header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  gap: 1rem;
  padding: 1rem 5%;
  width: 100%;
  background-color: rgba(20, 63, 77, 0);
  z-index: 12;
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0;
}

.logo {
  width: 200px;
}

.header_right {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  flex-wrap: nowrap;
  gap: 1rem;
  color: #ffffff;
  font-weight: bold;
  font-size: 1.1rem;
}
.weglot-container{
  position: absolute;
  right: 5%;
  top: .8rem;
}
.weglot_switcher.vertical_expand.closed .active-language {
  border-radius: 2rem;
}

.topLinks {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: nowrap;
  gap: 1rem 1.5rem;
  padding-right: 5rem;
}
.topLinks a {
  text-transform: uppercase;
  font-size: 1rem;
  transition: background-color 0.3s cubic-bezier(0, 0.07, 0.57, 0.99);
}
.topLinks .topLinks_distributeur {
  padding: 0.35rem 1.5rem;
  background-color: #009ebd;
  border-radius: 2rem;
}
.topLinks .topLinks_distributeur:hover {
  background-color: #012830;
}

.menu {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: nowrap;
  gap: 1rem;
}

.menu-item {
  display: flex;
}
.menu-item > a, .menu-item > span {
  text-decoration: none;
  padding: 0.35rem 1.5rem;
  background-color: rgba(255, 255, 255, 0.25);
  border-radius: 2rem;
  display: inline-block;
}
.menu-item > a:hover, .menu-item > span:hover {
  background-color: rgba(20, 63, 77, 0.95);
  color: #ffffff;
}
.menu-item.mobilOnly {
  display: none;
}

.mega-parent.megaOpen > a {
  background-color: rgba(20, 63, 77, 0.95);
  color: #ffffff;
}
.mega-parent.mega-nos-solutions {
  position: relative;
}
.mega-parent.mega-nos-solutions .mega-section-parent {
  top: calc(100% + 1rem);
  left: 0;
  width: 360px;
  padding: 2rem;
  gap: 1rem;
}
.mega-parent.mega-nos-produits .mega-section {
  width: 16.66%;
}

.mega-child {
  opacity: 0;
  visibility: hidden;
  transform: translate(0, 1rem);
}
.mega-child a {
  text-decoration: none;
  display: inline-block;
  padding: 0.15rem 1rem 0.15rem 2rem;
  position: relative;
  font-size: 0.9rem;
}
.mega-child a:before {
  content: "";
  width: 16px;
  height: 16px;
  display: inline-block;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9IiNmZmZmZmYiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIiBjbGFzcz0ibHVjaWRlIGx1Y2lkZS1tb3ZlLXJpZ2h0LWljb24gbHVjaWRlLW1vdmUtcmlnaHQiPjxwYXRoIGQ9Ik0xOCA4TDIyIDEyTDE4IDE2Ii8+PHBhdGggZD0iTTIgMTJIMjIiLz48L3N2Zz4=");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  left: 0.5rem;
  top: 3px;
}
.mega-child a:hover:before {
  animation-name: bounceIt;
  animation-duration: 0.6s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  animation-delay: 0s;
  animation-fill-mode: both;
}

.megaRealLink {
  display: none;
}

.mega-section-parent {
  position: absolute;
  top: 100%;
  left: 5%;
  width: 90%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: wrap;
  background-color: rgba(20, 63, 77, 0.95);
  padding: 3rem;
  border-radius: 2rem;
  overflow: hidden;
  height: 0;
  opacity: 0;
  visibility: hidden;
}
.mega-section-parent::before {
  content: "";
  position: absolute;
  top: -1rem;
  left: 0;
  width: 100%;
  height: 1rem;
}

.mega-section {
  width: 20%;
  opacity: 0;
  visibility: hidden;
  transform: translate(2rem, 0);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0 1rem;
}
.mega-section .parentTitle {
  display: inline-block;
  margin-bottom: 1rem;
  color: #99c555;
}
.mega-section .sub-menu {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: 0.5rem;
}
.mega-section:last-child {
  border-right: none;
}

#menuTrigger {
  visibility: hidden;
  position: absolute;
  right: -100000px;
  opacity: 0;
}

.btnMenu {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10;
  width: 37px;
  height: 37px;
  cursor: pointer;
  background-color: transparent;
  border: 2px solid #ffffff;
  border-radius: 50%;
  position: absolute;
  right: 2rem;
  top: 1rem;
  transform: translate(100px, 0);
}
.btnMenu span {
  display: block;
  width: calc(100% - 1rem);
  height: 2px;
  background-color: #ffffff;
  margin: 2px 0;
  transition: all 0.3s cubic-bezier(0, 0.07, 0.57, 0.99);
}
.btnMenu.open span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}
.btnMenu.open span:nth-child(2) {
  opacity: 0;
}
.btnMenu.open span:nth-child(3) {
  transform: rotate(-45deg) translate(4.5px, -4.5px);
}

html.menuOpen,
body.menuOpen {
  overflow: hidden;
}

body.fixedHeader .topLinks a {
  padding: 0.35rem 1.5rem;
  background-color: #012830;
  border-radius: 2rem;
}
body.fixedHeader .topLinks a:hover {
  background-color: #99c555;
}
body.fixedHeader .topLinks .topLinks_distributeur {
  padding: 0.35rem 1.5rem;
  background-color: #012830;
}
body.fixedHeader .topLinks .topLinks_distributeur:hover {
  background-color: #99c555;
}
body.menuOpen {
  scrollbar-width: none;
}
body.menuOpen::-webkit-scrollbar {
  display: none;
}
body.menuOpen .topLinks {
  position: absolute;
  right: 5rem;
  top: 1.4rem;
}
body.menuOpen .weglot-container{
  top: 1.25rem;
  right: 5rem;
}
body.menuOpen .topLinks a {
  padding: 0.35rem 1.5rem;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 2rem;
}
body.menuOpen .topLinks a:hover {
  color: #012830;
  background-color: rgb(255, 255, 255);
}
body.menuOpen .topLinks .topLinks_distributeur {
  padding: 0.35rem 1.5rem;
  background-color: rgba(255, 255, 255, 0.1);
}
body.menuOpen .topLinks .topLinks_distributeur:hover {
  color: #012830;
  background-color: rgb(255, 255, 255);
}
body.menuOpen .header_right {
  position: fixed;
  width: 100%;
  height: 100vh;
  right: 0;
  top: 0;
  background-image: linear-gradient(rgba(1, 40, 48, 0.9), rgba(1, 40, 48, 0.9)), url("../img/photo-lac-montagne-foret.jpg");
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.45) rgba(255, 255, 255, 0.1);
}
body.menuOpen .header_right::-webkit-scrollbar {
  width: 10px;
}
body.menuOpen .header_right::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
}
body.menuOpen .header_right::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.3));
  border-radius: 999px;
  border: 2px solid rgba(1, 40, 48, 0.35);
}
body.menuOpen .header_right::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.45));
}
body.menuOpen nav {
  width: 100%;
  box-sizing: border-box;
  padding: 10rem 10% 3rem 10%;
}
body.menuOpen .menu {
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
}
body.menuOpen .menu-item {
  position: relative;
  align-items: flex-start;
  transform: translate(200px, 0);
}
body.menuOpen .menu-item > a {
  background-color: transparent;
  border-radius: 0px;
  position: relative;
  font-size: 1.6rem;
  text-transform: uppercase;
  padding: 0;
  color: #99c555;
  flex: 0 0 auto;
}
body.menuOpen .menu-item > a .menu-item-icon {
  position: relative;
  padding: 0.35rem 1.5rem 0.35rem 2.5rem;
  display: inline-block;
}
body.menuOpen .menu-item > a .menu-item-icon:before {
  content: "";
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9IiM5OWM1NTUiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIiBjbGFzcz0ibHVjaWRlIGx1Y2lkZS1jaXJjbGUtYXJyb3ctcmlnaHQtaWNvbiBsdWNpZGUtY2lyY2xlLWFycm93LXJpZ2h0Ij48Y2lyY2xlIGN4PSIxMiIgY3k9IjEyIiByPSIxMCIvPjxwYXRoIGQ9Im0xMiAxNiA0LTQtNC00Ii8+PHBhdGggZD0iTTggMTJoOCIvPjwvc3ZnPg==");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  left: 0.5rem;
  top: calc(50% - 0.625rem);
  width: 1.25rem;
  height: 1.25rem;
}
body.menuOpen .menu-item > a:before {
  content: "";
  position: absolute;
  right: calc(100% + 1rem);
  top: calc(50% - 0.5px);
  width: calc(10vw - 2rem + 200px);
  height: 1px;
  background-color: rgba(152, 197, 85, 0.5);
  transition: transform 0.3s cubic-bezier(0, 0.07, 0.57, 0.99);
}
body.menuOpen .menu-item > a:after {
  content: "";
  position: absolute;
  left: 100%;
  top: calc(50% - 0.5px);
  width: calc(90vw - 100% - 2rem - 200px);
  height: 1px;
  background-color: rgba(152, 197, 85, 0.5);
  transition: transform 0.3s cubic-bezier(0, 0.07, 0.57, 0.99);
}
body.menuOpen .menu-item > a:hover .menu-item-icon:before {
  animation-name: bounceIt;
  animation-duration: 0.6s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  animation-delay: 0s;
  animation-fill-mode: both;
}
body.menuOpen .menu-item > a:hover:before {
  transform: translate(-30px, 0);
}
body.menuOpen .menu-item > a:hover:after {
  transform: translate(30px, 0);
}
body.menuOpen .menu-item.megaOpen > a .menu-item-icon:before {
  animation-name: bounceIt;
  animation-duration: 0.6s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  animation-delay: 0s;
  animation-fill-mode: both;
}
body.menuOpen .menu-item.megaOpen > a:before {
  width: calc(10vw - 2rem);
}
body.menuOpen .menu-item.megaOpen > a:after {
  width: calc(90vw - 100% - 2rem);
}
body.menuOpen .mega-parent.mega-nos-solutions {
  width: 100%;
}
body.menuOpen .mega-parent.mega-nos-solutions .mega-section-parent {
  width: 100%;
  padding: 0;
}
body.menuOpen .mega-parent.mega-nos-solutions .mega-child {
  width: 100%;
}
body.menuOpen .mega-parent.mega-nos-solutions .mega-child a {
  width: 100%;
  padding: 1rem 1rem 1rem 3rem;
  border-radius: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: border-color 0.3s cubic-bezier(0, 0.07, 0.57, 0.99);
}
body.menuOpen .mega-parent.mega-nos-solutions .mega-child a:before {
  left: 1.5rem;
  top: 17px;
}
body.menuOpen .mega-parent.mega-nos-solutions .mega-child:hover a {
  border-color: rgba(152, 197, 85, 0.5);
}
body.menuOpen .mega-parent.mega-nos-produits .mega-section {
  width: 100%;
}
body.menuOpen .mega-section-parent {
  position: initial;
  height: auto;
  opacity: 1;
  visibility: visible;
  width: 100%;
  padding: 0;
  position: relative;
  left: 0;
  background-color: transparent;
  border-radius: 0;
  align-items: stretch;
  height: 0;
  opacity: 0;
  visibility: hidden;
}
body.menuOpen .mega-section-parent:after {
  content: "";
  width: 100%;
  height: 0;
  display: block;
}
body.menuOpen .megaRealLink {
  display: flex;
  width: 100%;
  margin-top: 2rem;
}
body.menuOpen .megaRealLink a {
  padding: 0.35rem 1.5rem;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  text-decoration: none;
  transition: background-color 0.3s cubic-bezier(0, 0.07, 0.57, 0.99);
}
body.menuOpen .megaRealLink a:hover {
  background-color: rgb(152, 197, 85);
}
body.menuOpen .mega-section {
  opacity: 1;
  visibility: visible;
  transform: translate(0, 0);
  width: 100%;
  margin: 1rem 0;
  height: auto;
  padding: 1rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: border-color 0.3s cubic-bezier(0, 0.07, 0.57, 0.99);
  opacity: 0;
  visibility: hidden;
  transform: translate(0, 20px);
}
body.menuOpen .mega-section .parentTitle {
  text-transform: uppercase;
  color: #ffffff;
}
body.menuOpen .mega-section:hover {
  border-color: rgba(152, 197, 85, 0.5);
}
body.menuOpen .mega-child {
  opacity: 1;
  visibility: visible;
  transform: translate(0, 0);
}
body.menuOpen .mega-child a {
  font-size: 1rem;
}

.devisQuickBtnWrapper {
  position: fixed;
  z-index: 11;
  right: 2rem;
  bottom: 5%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.7);
}

.devisQuickBtn {
  width: 70px;
  height: 60px;
  position: relative;
  z-index: 1;
}
.devisQuickBtn .shapeDevis {
  cursor: pointer;
  fill: #009ebd;
}
.devisQuickBtn .line, .devisQuickBtn .lineArrow {
  stroke: #ffffff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 8px;
  fill: none;
}

.devisQuickBtnText {
  color: #ffffff;
  padding: 0.5rem 1.5rem 0.5rem 2.5rem;
  background-color: #143f4d;
  border-radius: 2rem;
  font-size: 0.9rem;
  font-weight: bold;
  margin-left: -2rem;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.7);
}

.hero {
  padding-top: 15rem;
  padding-bottom: 7.5rem;
  position: relative;
}
.hero + section {
  margin-top: -7.5rem;
}
.hero + section .block {
  padding-top: 7.5rem;
}

.heroVisual {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.heroVisual picture {
  width: 100%;
  height: 100%;
}
.heroVisual picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  -o-object-fit: cover;
  -o-object-position: center;
  vertical-align: middle;
}
.heroVisual.needShadow:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(0deg, rgb(1, 40, 48) 5%, rgba(1, 40, 48, 0) 50%);
}

.heroContent {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: nowrap;
  color: #ffffff;
  padding: 0 5%;
}

.heroHome {
  padding: 0;
  position: relative;
  overflow: hidden;
}

.heroHomeContent {
  position: absolute;
  width: 100%;
  top: 25%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 1rem;
  color: #ffffff;
}

.heroHomeTitle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  position: relative;
}
.heroHomeTitle h1 {
  font-size: 2rem;
  font-weight: bold;
  font-family: "flood-std", sans-serif;
  text-align: center;
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translate(0, -30px);
}
.heroHomeTitle h1 p {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
}
.heroHomeTitle h1 strong {
  font-size: 2.6rem;
}
.heroHomeTitle h1 em {
  font-family: "neulis-neue", Helvetica, sans-serif;
  text-transform: uppercase;
  font-size: 1.4rem;
  color: #99c555;
  transform: scale(0.7);
  opacity: 0;
  display: inline-block;
}

.homeHeroLinks {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 2rem;
  margin-top: 17vh;
  transform: translate(0, 30px);
  opacity: 0;
  visibility: hidden;
}

.dropWaterShape {
  position: absolute;
  width: 450px;
  height: 520px;
  top: calc(50% - 300px);
  opacity: 0;
  transform: scale(1.2);
}

.dropWaterLine {
  position: absolute;
  width: 450px;
  height: 520px;
  top: calc(50% - 300px);
}

.heroHomeContent_text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  text-align: center;
  margin-top: 20vh;
}
.heroHomeContent_text .text {
  margin-top: 0;
}

.linkToMainPages {
  margin-top: -20rem;
}

.linkToMainPages_block:nth-child(2) .btn {
  color: #009ebd;
}

.linkToMainPages_wrapper {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: nowrap;
  position: relative;
  border-radius: 2rem;
  overflow: hidden;
  color: #ffffff;
  padding: 2rem;
  height: 100%;
}
.linkToMainPages_wrapper .title {
  font-size: 1.6rem;
}
.linkToMainPages_wrapper .title strong {
  font-size: 2rem;
}
.linkToMainPages_wrapper .title, .linkToMainPages_wrapper .text, .linkToMainPages_wrapper .btn {
  position: relative;
  z-index: 2;
}
.linkToMainPages_wrapper .btn {
  margin-left: auto;
  margin-top: auto;
}
.linkToMainPages_wrapper li {
  font-weight: 500;
}

.linkToMainPages_img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.linkToMainPages_img picture {
  width: 100%;
  height: 100%;
}
.linkToMainPages_img picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  -o-object-fit: cover;
  -o-object-position: center;
  vertical-align: middle;
}

.missionAndResults .col-12 .text {
  margin-top: 0;
}

.keyNumber {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  text-align: center;
  width: 240px;
  height: 240px;
  max-width: 100%;
  padding: 3.5rem 1.75rem 1.75rem 1.75rem;
  position: relative;
  color: #ffffff;
}
.keyNumber svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  fill: #009ebd;
}
.keyNumber:nth-child(2) number-flow::part(suffix) {
  font-weight: normal;
  font-size: 0.9rem;
  text-transform: initial;
}
.keyNumber number-flow::part(suffix), .keyNumber number-flow::part(prefix) {
  text-transform: uppercase;
}

.numberFlowContainer {
  font-size: 2rem;
  font-weight: bold;
}

.keyNumberLegend {
  line-height: 1.2;
  text-wrap: balance;
}

.rentable .text p {
  text-wrap: balance;
}

.identifySituation {
  position: relative;
  padding-bottom: 3rem;
}
.identifySituation:before {
  content: "";
  width: 100%;
  height: calc(55% + 1.5rem);
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: #012830;
}
.identifySituation .container-fluid {
  position: relative;
  z-index: 2;
}
.identifySituation .col-12:last-child {
  color: #ffffff;
}

.solutionsPreviewCard {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
}
.solutionsPreviewCard > div {
  border-radius: 2rem;
  overflow: hidden;
  position: relative;
  height: 400px;
}
.solutionsPreviewCard picture {
  width: 100%;
  height: 100%;
}
.solutionsPreviewCard picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  -o-object-fit: cover;
  -o-object-position: center;
  vertical-align: middle;
}
.solutionsPreviewCard button, .solutionsPreviewCard .solutionsPreviewCard_title {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  width: calc(100% - 2rem);
  padding: 1rem;
  background-color: rgba(1, 40, 48, 0.9);
  color: #ffffff;
  border-radius: 3rem;
  font-size: 0.9rem;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  text-wrap: balance;
  line-height: 1.2;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
}
.solutionsPreviewCard button p, .solutionsPreviewCard .solutionsPreviewCard_title p {
  margin-top: 0;
}
.solutionsPreviewCard button {
  border: none;
  outline: none;
  cursor: pointer;
  padding: 1rem 2.5rem 1rem 1rem;
}
.solutionsPreviewCard button .videoPlayer {
  width: 1.5rem;
  height: 1.5rem;
  padding: 0.45rem;
  right: 0.5rem;
}
.solutionsPreviewCard button .videoPlayer .videoPlayer_icon {
  fill: transparent;
  stroke: #ffffff;
  stroke-width: 2px;
  margin-right: -1px;
}
.solutionsPreviewCard button .videoPlayer:hover {
  background-color: #ffffff;
}
.solutionsPreviewCard button .videoPlayer:hover .videoPlayer_icon {
  stroke: #009ebd;
}
.solutionsPreviewCard button:hover .videoPlayer {
  background-color: #ffffff;
}
.solutionsPreviewCard button:hover .videoPlayer .videoPlayer_icon {
  stroke: #009ebd;
}
.solutionsPreviewCard p {
  margin-top: 1rem;
  text-align: center;
}
.solutionsPreviewCard p em {
  color: #009ebd;
}
.solutionsPreviewCard .btn {
  margin-top: 1rem;
}

.clientList {
  overflow: hidden;
}
.clientList .spaceBtm .text p {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  text-align: center;
}
.clientList .spaceBtm .text p strong {
  font-size: 1.2rem;
  display: inline-block;
  margin-bottom: 0.5rem;
}

.implantation_map {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  flex-wrap: nowrap;
}
.implantation_map picture {
  width: 500px;
  max-width: 100%;
}

.notreApproche {
  position: relative;
  padding-bottom: 3rem;
}

.notreApproche_cta {
  position: absolute;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  bottom: -1rem;
  left: 0;
}

.themesProblematique {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.themesProblematique.reverse .row {
  flex-direction: row-reverse;
}
.themesProblematique.overlayIt {
  margin-top: -15.5rem;
  padding-top: 16.5rem;
}

.themeProblematique_list {
  width: 100%;
  margin-top: 2rem;
  padding-left: 2rem;
}
.themeProblematique_list a {
  text-decoration: none;
}

.page-problematique .hero + section .row:not(:first-child) .block {
  padding-top: 0;
}
.page-problematique .hero .text {
  margin: 0;
}

.pbObservation .grid {
  display: grid;
  grid-template-columns: 40% 60%;
  grid-template-rows: repeat(2, auto);
  gap: 1rem 2rem;
}

.pbObservation_visual {
  grid-area: 1/1/3/2;
}
.pbObservation_visual picture {
  height: 500px;
}

.pbObservation_content.first {
  grid-area: 1/2/2/3;
  padding-top: 7rem;
}
.pbObservation_content.second {
  grid-area: 2/2/3/3;
}

.flyingCtaBlock {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
}
.flyingCtaBlock .flyingCtaContainer {
  position: absolute;
  bottom: 1rem;
  width: calc(100% - 4rem);
  left: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  background-color: rgba(20, 63, 77, 0.6);
  padding: 1rem;
  border-radius: 2rem;
}
.flyingCtaBlock p {
  font-weight: bold;
  text-wrap: balance;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.pbAction {
  margin-top: 3rem;
}

.swiperActions_slide {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  padding: 1rem 2rem;
}

.swiperActions_content {
  padding: 2rem;
  text-align: center;
  border-radius: 2rem;
  background-color: rgba(20, 63, 77, 0.6);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  width: 100%;
  height: 100%;
  position: relative;
}
.swiperActions_content span {
  position: absolute;
  top: -0.75rem;
  left: -0.75rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: #009ebd;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: bold;
}
.swiperActions_content h3 {
  font-size: 1.3rem;
  font-weight: bold;
  text-wrap: balance;
}

.pbProductSolution {
  padding-top: 0;
  margin-top: -3rem;
}

.pbProductList {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  width: 1000px;
  max-width: 100%;
  margin: 0 auto;
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 1rem;
}
.pbProductList:last-child {
  padding: 2rem 2rem 4rem 2rem;
}
.pbProductList > .btn {
  margin: 0 auto -8rem auto;
}

.pbProductList_visual {
  width: 200px;
  height: 150px;
  margin-right: 1rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
}
.pbProductList_visual a {
  display: flex;
  max-height: 100%;
}
.pbProductList_visual img {
  object-fit: contain;
}

.pbProductList_content {
  width: calc(100% - 200px - 1rem);
}
.pbProductList_content .text {
  margin: 0;
}

.pdEndCTA {
  padding-bottom: 3rem;
}

.swiperIntervention_slide {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 1rem 2rem;
}

.swiperIntervention_visual {
  width: 400px;
  height: 100%;
  max-width: calc(50% - 2rem);
  position: relative;
}
.swiperIntervention_visual .videoPlayer {
  right: calc(50% - 2.5rem);
  opacity: 0.8;
}

.swiperIntervention_content {
  padding-top: 3rem;
  width: calc(100% - 400px - 2rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: 1rem;
}

.swiperIntervention_blocks {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 1rem;
}
.swiperIntervention_blocks div {
  width: calc(50% - 1rem);
  padding: 1rem;
  border-radius: 1rem;
  background-color: #143f4d;
  color: #ffffff;
}
.swiperIntervention_blocks div strong {
  font-size: 1.1rem;
  font-weight: 500;
  margin-top: 0;
  display: inline-block;
  position: relative;
  padding-left: 30px;
}
.swiperIntervention_blocks div strong:before {
  content: "";
  background-position: center;
  background-size: contain;
  width: 20px;
  height: 20px;
  position: absolute;
  left: 0;
  top: 1px;
}
.swiperIntervention_blocks div ul {
  padding-left: 46px;
  margin-top: 1rem;
  list-style: disc;
}
.swiperIntervention_blocks div ul li {
  line-height: 1.2;
  margin: 0.5rem 0;
}
.swiperIntervention_blocks div:first-child strong:before {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9IiNmZmZmZmYiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIiBjbGFzcz0ibHVjaWRlIGx1Y2lkZS1zZWFyY2gtYWxlcnQtaWNvbiBsdWNpZGUtc2VhcmNoLWFsZXJ0Ij48Y2lyY2xlIGN4PSIxMSIgY3k9IjExIiByPSI4Ii8+PHBhdGggZD0ibTIxIDIxLTQuMy00LjMiLz48cGF0aCBkPSJNMTEgN3Y0Ii8+PHBhdGggZD0iTTExIDE1aC4wMSIvPjwvc3ZnPg==");
}
.swiperIntervention_blocks div:last-child strong:before {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9IiNmZmZmZmYiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIiBjbGFzcz0ibHVjaWRlIGx1Y2lkZS1kcm9wbGV0LW9mZi1pY29uIGx1Y2lkZS1kcm9wbGV0LW9mZiI+PHBhdGggZD0iTTE4LjcxNSAxMy4xODZDMTguMjkgMTEuODU4IDE3LjM4NCAxMC42MDcgMTYgOS41Yy0yLTEuNi0zLjUtNC00LTYuNWExMC43IDEwLjcgMCAwIDEtLjg4NCAyLjU4NiIvPjxwYXRoIGQ9Im0yIDIgMjAgMjAiLz48cGF0aCBkPSJNOC43OTUgOC43OTdBMTEgMTEgMCAwIDEgOCA5LjVDNiAxMS4xIDUgMTMgNSAxNWE3IDcgMCAwIDAgMTMuMjIyIDMuMjA4Ii8+PC9zdmc+");
}

.swiperProductsPreview .apercuProduits_card {
  flex-direction: column;
  align-items: center;
  margin: 1.5rem 0;
  padding: 2rem 1rem 1rem 1rem;
}
.swiperProductsPreview .apercuProduits_card_content {
  margin-left: 0;
  margin-top: 0.75rem;
  width: 100%;
  align-items: center;
  text-align: center;
}

.bandeauCta {
  margin-top: 5rem;
  padding-bottom: 0;
}

.bandeauCta_content .title {
  margin-bottom: 2rem;
}

/* PAGE PRODUIT PARENT */
.page-produit-parent .hero + section {
  margin-top: 0;
}

.page-produit-oxylake .hero {
  padding-bottom: 2rem;
}
.page-produit-oxylake .hero + section {
  margin-top: 0;
}
.page-produit-oxylake .heroContent {
  width: 50%;
}
.page-produit-oxylake .heroContent .btn {
  position: absolute;
  bottom: -3rem;
}

.oxylakeVariants {
  padding-top: 2rem;
}

.oxylakeVariants_switch {
  margin-bottom: 0;
  max-width: 100%;
}

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

.oxylakeVariants .switch_title {
  text-decoration: none;
  color: inherit;
}

.apercuProduits {
  padding-bottom: 5rem;
}

.apercuProduits_groups {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  position: relative;
}

.apercuProduits_group {
  position: relative;
}

.apercuProduits_anchor {
  position: absolute;
  top: 0;
}

.apercuProduits_group_title {
  margin-bottom: 1.75rem;
  text-align: center;
}
.apercuProduits_group_title strong {
  font-size: 1.8rem;
}

.apercuProduits_grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 1400px;
  max-width: 100%;
  margin: 0 auto;
}

.apercuProduits_card {
  width: calc(50% - 3rem);
  margin: 1.5rem;
  padding: 2rem;
  border-radius: 1rem;
  background-color: rgb(244, 247, 247);
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  position: relative;
}
.apercuProduits_card picture {
  width: 200px;
  height: 150px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
}
.apercuProduits_card picture img {
  object-fit: contain;
}

.apercuProduits_card_category {
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  width: calc(100% - 2rem);
  display: inline-block;
  font-size: 0.8rem;
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
  color: #009ebd;
  font-size: 0.7rem;
}

.apercuProduits_card_content {
  margin-left: 2rem;
  width: calc(100% - 200px - 2rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: 0.5rem;
}
.apercuProduits_card_content .secondTitle {
  font-size: 1.2rem;
}
.apercuProduits_card_content .text {
  margin: 0 0 1rem 0;
  font-size: 0.9rem;
}

.desequilibreTaso .missionTaso_visual {
  position: relative;
  padding-right: 3.5rem;
}

.videoPlayer {
  width: 5rem;
  height: 5rem;
  padding: 1.5rem;
  border: 0;
  border-radius: 50%;
  background-color: #009ebd;
  box-shadow: 0 0 0 0 rgba(0, 158, 189, 0.35);
  position: absolute;
  right: 1rem;
  top: 50%;
  z-index: 2;
  transform: translate(0, -50%);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  animation: videoPlayerBump 1.6s ease-in-out infinite;
  transition: background-color 0.3s ease;
}
.videoPlayer:hover, .videoPlayer:focus-visible {
  background-color: #012830;
}
.videoPlayer:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 4px;
}

.videoPlayer_icon {
  width: 100%;
  height: 100%;
  fill: #ffffff;
  stroke: transparent;
  margin-right: -2px;
}

.fancybox__dialog {
  width: 100vw !important;
  max-width: 100vw !important;
  min-width: 0 !important;
  margin: 0 !important;
  box-sizing: border-box;
}

.fancybox__container,
.fancybox__carousel,
.fancybox__viewport,
.fancybox__slide {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  box-sizing: border-box;
}

.fancybox__slide.has-html5video {
  padding: 4rem 2rem 2rem 2rem;
}
.fancybox__slide.has-html5video .f-html {
  box-sizing: border-box;
  width: calc(100vw - 4rem) !important;
  max-width: 1280px !important;
  min-width: 0 !important;
  height: auto !important;
  max-height: none !important;
  aspect-ratio: 16/9;
  background-color: #012830;
  border-radius: 2rem;
}
.fancybox__slide.has-html5video video,
.fancybox__slide.has-html5video .f-html5video {
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  display: block;
  background-color: #000;
}
.fancybox__slide.has-html5video .f-button.is-close-button {
  top: -2.75rem;
  right: 0;
}

@media (orientation: landscape) and (max-height: 760px) {
  .fancybox__slide.has-html5video .f-html {
    width: auto !important;
    height: calc(100vh - 7rem) !important;
    max-width: calc((100vh - 7rem) * 16 / 9) !important;
  }
}
@supports (height: 100dvh) {
  @media (orientation: landscape) and (max-height: 760px) {
    .fancybox__slide.has-html5video .f-html {
      height: calc(100dvh - 7rem) !important;
      max-width: calc((100dvh - 7rem) * 16 / 9) !important;
    }
  }
}
@keyframes videoPlayerBump {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 158, 189, 0.35);
    transform: translate(0, -50%) scale(1);
  }
  50% {
    box-shadow: 0 0 0 0.9rem rgba(0, 158, 189, 0);
    transform: translate(0, -50%) scale(1.08);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 158, 189, 0);
    transform: translate(0, -50%) scale(1);
  }
}
@media (max-width: 480px) {
  .videoPlayer {
    width: 4rem;
    height: 4rem;
    padding: 1rem;
  }
  .videoPlayer_icon {
    margin-left: 0.25rem;
    border-top-width: 0.65rem;
    border-bottom-width: 0.65rem;
    border-left-width: 1rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .videoPlayer {
    animation: none;
  }
}
.classicSolutions_content ul {
  list-style: none;
  padding-left: 1rem;
}
.classicSolutions_content ul li {
  position: relative;
  counter-increment: li;
  padding-left: 2.5rem;
  margin: 1rem 0;
}
.classicSolutions_content ul li:before {
  content: counter(li);
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background-color: #009ebd;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: -5px;
}

.productSolutionIntro {
  padding-bottom: 10rem;
}

.productSolution {
  margin-top: -10rem;
}

.swiperProductProposal_slide {
  padding: 2rem;
  border-radius: 2rem;
  background-color: #f6f6f6;
  border: 2px solid #f6f6f6;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: nowrap;
}

.swiperProductProposal_slide_content {
  width: 100%;
}

.swiperProductProposal_slide_products {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  gap: 1rem;
  max-width: 100%;
  width: 100%;
}

.productSolution_row_link {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.5rem;
  width: 400px;
  max-width: calc(50% - 0.5rem);
}
.productSolution_row_link img {
  width: auto;
  max-width: 160px;
  max-height: 120px;
}
.productSolution_row_link div {
  width: 250px;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: 0.5rem;
}
.productSolution_row_link p {
  font-size: 0.9rem;
}
.productSolution_row_link span {
  padding: 0.4rem 1rem 0.4rem 1rem;
  display: inline-block;
  font-size: 0.8rem;
  color: #ffffff;
  cursor: pointer;
  position: relative;
  text-transform: uppercase;
  background-color: #009ebd;
  border-radius: 2rem;
  font-weight: bold;
  transition: 0.3s 0.3s cubic-bezier(0, 0.07, 0.57, 0.99);
}
.productSolution_row_link:hover span {
  background-color: #012830;
}

.productProposalOutro {
  font-size: 1.2rem;
  text-wrap: balance;
}

.beneficesClient_content {
  padding-bottom: 11rem;
  justify-content: flex-end;
}

.questionsClient {
  margin-top: -10rem;
  padding-top: 13rem;
}

.demarcheTaso_content ol {
  text-align: center;
  list-style: none;
  counter-reset: demarche;
  padding-left: 0;
}
.demarcheTaso_content ol li {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
}
.demarcheTaso_content ol li br {
  display: none;
}
.demarcheTaso_content ol li:before {
  content: counter(demarche);
  counter-increment: demarche;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: #009ebd;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 0.75rem;
}

.demarcheTaso + .productEnd {
  padding-top: 0;
}

.page-produit .hero,
.page-produit-oxylake .hero {
  padding-bottom: 2rem;
}
.page-produit .hero + section,
.page-produit-oxylake .hero + section {
  margin-top: 0;
}
.page-produit .heroContent,
.page-produit-oxylake .heroContent {
  width: 50%;
}
.page-produit .heroContent .btn,
.page-produit-oxylake .heroContent .btn {
  position: absolute;
  bottom: -3rem;
}

.heroPackage {
  position: absolute;
  right: 10%;
  bottom: -5rem;
  width: 500px;
  height: 300px;
  max-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.heroPackage picture {
  width: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.oxylakeVariants_switch {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  margin-bottom: 1rem;
}

.oxylakeVariants_switch_title {
  width: 750px;
  max-width: 100%;
  margin-bottom: 2rem;
}

.oxylakeVariants_switch_header {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.oxylakeVariants_switch_item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.5rem;
  position: relative;
}
.oxylakeVariants_switch_item:after {
  content: "";
  width: 1px;
  height: 100%;
  background-color: #012830;
  position: absolute;
  right: -0.75rem;
}
.oxylakeVariants_switch_item:last-child:after {
  content: none;
}

.oxylakeVariants_switch_btn {
  flex: 0 0 auto;
  cursor: pointer;
  opacity: 0.7;
  transition: all 0.3s cubic-bezier(0, 0.07, 0.57, 0.99);
}
.oxylakeVariants_switch_btn.active {
  background-color: #ffffff;
  color: #012830;
  border: 1px solid #012830;
  opacity: 1;
}
.oxylakeVariants_switch_btn:hover {
  opacity: 1;
}
.oxylakeVariants_switch_btn:not(.active):hover {
  color: #ffffff;
}

.productPres {
  padding-top: 6rem;
}

.productPres_content ul {
  list-style: none;
  padding-left: 1rem;
}
.productPres_content ul li {
  position: relative;
  counter-increment: li;
  padding-left: 2.5rem;
  margin: 1rem 0;
}
.productPres_content ul li:before {
  content: counter(li);
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background-color: #009ebd;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: -5px;
}

.swiperModels_visual {
  width: 100%;
  max-width: 100%;
  height: 180px;
  border-radius: 1rem;
  overflow: hidden;
}
.swiperModels_visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  -o-object-fit: cover;
  -o-object-position: center;
  vertical-align: middle;
}

.swiperModels_text p strong {
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.productSpec {
  padding: 0;
}

.productSpec_intro {
  padding: 3rem 5vw 0 5vw;
}
.productSpec_intro + .productSpec_row {
  margin-top: 0;
}

.productSpec_content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: 0.5rem;
}
.productSpec_content > div {
  max-width: 100%;
}

.productSpec_row {
  background-color: #012830;
  padding: 3rem 5vw 0 5vw;
  margin-top: 3rem;
  color: #ffffff;
  flex-wrap: nowrap;
}

.productSpec_visual {
  padding: 0;
}
.productSpec_visual > div {
  height: 100%;
}
.productSpec_visual > div.packagingAndDroplet {
  height: auto;
}
.productSpec_visual picture {
  height: 100%;
}

.packagingAndDroplet {
  flex-direction: column;
}
.packagingAndDroplet > div {
  height: auto;
}
.packagingAndDroplet .rounded {
  position: relative;
  border-radius: 0;
  overflow: visible;
}
.packagingAndDroplet .packagingAndDroplet_package {
  position: absolute;
  width: calc(100% + 2rem);
  left: -1rem;
  bottom: -1rem;
  height: 300px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  flex-wrap: nowrap;
}
.packagingAndDroplet .packagingAndDroplet_package img {
  object-fit: contain;
}
.packagingAndDroplet .flyingCtaContainer {
  position: initial;
  width: 100%;
  background-color: transparent;
  padding: 0;
  border-radius: 0;
  margin-top: 3rem;
}
.packagingAndDroplet .flyingCtaContainer p {
  text-transform: uppercase;
}

.productTable {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 1rem;
  margin: 1rem 0;
}

.productTable_row {
  display: grid;
  gap: 0.5rem;
  width: 100%;
  background-color: #143f4d;
  border-radius: 0.5rem;
  color: #ffffff;
}
.productTable_row.countCell-2 {
  grid-template-columns: repeat(2, 1fr);
}
.productTable_row.countCell-3 {
  grid-template-columns: repeat(3, 1fr);
}
.productTable_row.countCell-4 {
  grid-template-columns: repeat(4, 1fr);
}
.productTable_row.countCell-5 {
  grid-template-columns: repeat(5, 1fr);
}
.productTable_row .productTable_cell {
  padding: 0.5rem 1rem;
  border-radius: 1rem;
}
.productTable_row:first-child {
  font-weight: bold;
}

.productSpec_switch {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: nowrap;
  margin-bottom: 1rem;
}

.switch_header {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.switch_title {
  flex: 0 0 auto;
  padding: 0.5rem 1rem;
  background-color: #143f4d;
  border-radius: 1rem;
  cursor: pointer;
  opacity: 0.7;
  transition: all 0.3s cubic-bezier(0, 0.07, 0.57, 0.99);
}
.switch_title.active {
  background-color: #ffffff;
  color: #012830;
  opacity: 1;
}
.switch_title:hover {
  opacity: 1;
}

.surfaceProduct {
  font-size: 0.7rem;
  text-transform: uppercase;
  text-align: center;
}

.switch_content {
  height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  background-color: #143f4d;
  border-radius: 1rem;
  max-width: 100%;
}
.switch_content .text {
  padding: 0 1rem;
}
.switch_content .productTable {
  width: 100%;
  padding: 0 1rem;
}
.switch_content .productTable_row {
  background-color: #012830;
}
.switch_content.active {
  height: auto;
  opacity: 1;
  visibility: visible;
}

.devisProduit {
  padding-top: 0;
  padding-bottom: 0;
  height: 0;
  overflow: hidden;
  visibility: hidden;
}
.devisProduit .wpcf7 {
  border: 1px solid #012830;
  border-radius: 1rem;
}

.page-devenir-distributeur .heroContent {
  align-items: center;
  text-align: center;
}
.page-devenir-distributeur .heroContent .text p {
  text-wrap: balance;
}
.page-devenir-distributeur .formDemande {
  padding-top: 0;
}

.page-distributeur .hero {
  padding-bottom: 2rem;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 0 2rem;
}
.page-distributeur .hero + section {
  margin-top: 0;
}
.page-distributeur .heroContent {
  width: 900px;
  max-width: 50%;
}

.mapBoxArea {
  padding-bottom: 3rem;
  position: relative;
}
.mapBoxArea .row {
  gap: 1rem;
}

.distributeur_title_filter {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
}

.distributeurList {
  width: calc(40% - 1rem);
  height: 700px;
  padding: 1rem;
  border-radius: 0.5rem;
  background-color: #fbfbfb;
  overflow-y: scroll;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.45) rgba(200, 200, 200, 0.1);
}
.distributeurList::-webkit-scrollbar {
  width: 10px;
}
.distributeurList::-webkit-scrollbar-track {
  background: rgba(200, 200, 200, 0.1);
  border-radius: 999px;
}
.distributeurList::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.55), rgba(200, 200, 200, 0.3));
  border-radius: 999px;
  border: 2px solid rgba(1, 40, 48, 0.35);
}
.distributeurList::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.75), rgba(200, 200, 200, 0.45));
}

.distributeurFilter {
  margin-bottom: 1rem;
  width: auto;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: nowrap;
}
.distributeurFilter .selectize-control {
  height: 100%;
  width: 360px;
}
.distributeurFilter .selectize-control.single .selectize-input {
  background-color: transparent;
  background-image: none;
  padding: 1rem 1rem 0.9rem 1rem;
  box-shadow: none;
  border-color: #012830;
  border-width: 1px;
}
.distributeurFilter .selectize-control.single .selectize-input.input-active {
  display: flex;
}
.distributeurFilter .selectize-control.single .selectize-input.dropdown-active::before {
  content: none;
}
.distributeurFilter .selectize-control.single .selectize-input.dropdown-active:after {
  border-color: transparent transparent #012830 transparent;
}
.distributeurFilter .selectize-control.single .selectize-input:after {
  border-color: #012830 transparent transparent transparent;
}
.distributeurFilter .selectize-input {
  height: 100%;
  box-shadow: none;
  border: 1px solid #012830;
  border-radius: 2rem;
  padding: 8px 1rem;
  display: flex;
  align-items: center;
}
.distributeurFilter .selectize-input input {
  border-radius: 0;
  color: #012830;
  font-size: 16px;
}
.distributeurFilter .selectize-input input::-moz-placeholder {
  color: #012830;
  opacity: 0.8;
  -moz-transition: opacity 0.3s cubic-bezier(0, 0.07, 0.57, 0.99);
  transition: opacity 0.3s cubic-bezier(0, 0.07, 0.57, 0.99);
}
.distributeurFilter .selectize-input input::placeholder {
  color: #012830;
  opacity: 0.8;
  transition: opacity 0.3s cubic-bezier(0, 0.07, 0.57, 0.99);
}
.distributeurFilter .selectize-input .item {
  color: #012830;
  font-size: 16px;
}
.distributeurFilter .selectize-dropdown {
  box-shadow: 0 1px 20px -15px rgba(153, 197, 85, 0.2);
  border: none;
  background-color: #f3f2f2;
  color: #012830;
  border-radius: 5px;
  overflow: hidden;
}
.distributeurFilter .selectize-dropdown.animate {
  overflow-y: hidden;
}
.distributeurFilter .selectize-dropdown.animate .selectize-dropdown-content {
  overflow-y: hidden;
}
.distributeurFilter .selectize-dropdown .option {
  cursor: pointer;
  padding: 7.5px 1rem 5px 1rem;
  text-align: left;
}
.distributeurFilter .selectize-dropdown .option:nth-child(even) {
  background-color: #faf7f7;
}
.distributeurFilter .selectize-dropdown .option:hover {
  background-color: #dfdfdf;
}
.distributeurFilter .selectize-dropdown .option.selected {
  background-color: #012830;
  color: #ffffff;
}
.distributeurFilter .selectize-dropdown .option.active:not(.selected) {
  background-color: #dfdfdf;
}
.distributeurFilter .selectize-dropdown .option.selectize-dropdown-emptyoptionlabel {
  text-align: left;
}
.distributeurFilter .selectize-dropdown-content {
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.45) rgba(200, 200, 200, 0.1);
}
.distributeurFilter .selectize-dropdown-content::-webkit-scrollbar {
  width: 10px;
}
.distributeurFilter .selectize-dropdown-content::-webkit-scrollbar-track {
  background: rgba(200, 200, 200, 0.1);
  border-radius: 999px;
}
.distributeurFilter .selectize-dropdown-content::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.55), rgba(200, 200, 200, 0.3));
  border-radius: 999px;
  border: 2px solid rgba(1, 40, 48, 0.35);
}
.distributeurFilter .selectize-dropdown-content::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.75), rgba(200, 200, 200, 0.45));
}

.distributeurFilter--skeleton {
  position: relative;
  min-height: 56px;
  pointer-events: none;
  overflow: hidden;
  border-radius: 2rem;
  margin-left: auto;
}
.distributeurFilter--skeleton:before {
  content: "";
  position: absolute;
  inset: 0;
  background: #e8ecef;
  width: 360px;
  right: 0;
  left: auto;
  border-radius: 2rem;
}
.distributeurFilter--skeleton:after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(90deg, rgba(232, 236, 239, 0) 0%, rgba(255, 255, 255, 0.65) 50%, rgba(232, 236, 239, 0) 100%);
  animation: tasoSkeletonShimmer 1.2s infinite;
  width: 360px;
  right: 0;
  left: auto;
}
.distributeurFilter--skeleton #distributeur-region {
  opacity: 0;
}

.distributeurList__items {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: 1rem;
}

.distributeurItem {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: 0.25rem;
  padding: 0.5rem;
  border: 1px solid rgba(152, 197, 85, 0.5);
  border-radius: 0.5rem;
  background-color: transparent;
  width: 100%;
  font-size: 1rem;
  text-align: left;
}
.distributeurItem:hover {
  background-color: #f3f2f2;
}

.distributeurItem--skeleton {
  pointer-events: none;
}
.distributeurItem--skeleton .distributeurItem__logo {
  width: 150px;
  height: 80px;
  background: transparent;
  padding: 0;
  border-radius: 0.5rem;
}
.distributeurItem--skeleton .distributeurItem__name {
  width: 70%;
  height: 20px;
  border-radius: 4px;
}
.distributeurItem--skeleton .distributeurItem__addr {
  width: 95%;
  height: 18.5px;
  border-radius: 4px;
}
.distributeurItem--skeleton .distributeurItem__location {
  width: 45%;
  height: 18.5px;
  border-radius: 4px;
}
.distributeurItem--skeleton .distributeurItem__line {
  width: 30%;
  height: 18.5px;
  border-radius: 4px;
}

.skeletonBlock {
  display: block;
  position: relative;
  overflow: hidden;
  background: #e8ecef;
}
.skeletonBlock:after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(90deg, rgba(232, 236, 239, 0) 0%, rgba(255, 255, 255, 0.65) 50%, rgba(232, 236, 239, 0) 100%);
  animation: tasoSkeletonShimmer 1.2s infinite;
}

@keyframes tasoSkeletonShimmer {
  100% {
    transform: translateX(100%);
  }
}
.distributeurItem__logo {
  max-width: 150px;
  height: 80px;
  display: flex;
  align-items: center;
  padding: 0.5rem;
  border-radius: 0.5rem;
}
.distributeurItem__logo img {
  mix-blend-mode: multiply;
}

.distributeurItem__name {
  font-weight: bold;
  font-size: 1.1rem;
}

.mabBoxContainer {
  width: 60%;
  border-radius: 0.5rem;
  overflow: hidden;
}

.mapBox {
  width: 100%;
  height: 100%;
}

.taso-marker {
  background-color: transparent;
  border: none;
  cursor: pointer;
}

.taso-marker__inner {
  display: block;
}

.mapboxgl-popup-content {
  font-size: 1rem;
}

.mapboxgl-popup-close-button {
  font-size: 1.5rem;
}

.taso-popup {
  padding: 0.2rem;
}

.popupLogo {
  width: 100px;
  height: auto;
  display: block;
  background-color: #ffffff;
  margin-bottom: 0.5rem;
}

.taso-popup__title {
  font-weight: bold;
  font-size: 1.1rem;
}

.taso-popup__line {
  margin-top: 0.3rem;
}

.taso-popup__line, .distributeurItem__line {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
}
.taso-popup__line:before, .distributeurItem__line:before {
  content: "";
  display: inline-block;
  width: 14px;
  min-width: 14px;
  height: 14px;
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 0.5rem;
}
.taso-popup__line.phone:before, .distributeurItem__line.phone:before {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9IiMwMTI4MzAiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIiBjbGFzcz0ibHVjaWRlIGx1Y2lkZS1waG9uZS1jYWxsLWljb24gbHVjaWRlLXBob25lLWNhbGwiPjxwYXRoIGQ9Ik0xMyAyYTkgOSAwIDAgMSA5IDkiLz48cGF0aCBkPSJNMTMgNmE1IDUgMCAwIDEgNSA1Ii8+PHBhdGggZD0iTTEzLjgzMiAxNi41NjhhMSAxIDAgMCAwIDEuMjEzLS4zMDNsLjM1NS0uNDY1QTIgMiAwIDAgMSAxNyAxNWgzYTIgMiAwIDAgMSAyIDJ2M2EyIDIgMCAwIDEtMiAyQTE4IDE4IDAgMCAxIDIgNGEyIDIgMCAwIDEgMi0yaDNhMiAyIDAgMCAxIDIgMnYzYTIgMiAwIDAgMS0uOCAxLjZsLS40NjguMzUxYTEgMSAwIDAgMC0uMjkyIDEuMjMzIDE0IDE0IDAgMCAwIDYuMzkyIDYuMzg0Ii8+PC9zdmc+");
}
.taso-popup__line.mail:before, .distributeurItem__line.mail:before {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9IiMwMTI4MzAiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIiBjbGFzcz0ibHVjaWRlIGx1Y2lkZS1tYWlsLWljb24gbHVjaWRlLW1haWwiPjxwYXRoIGQ9Im0yMiA3LTguOTkxIDUuNzI3YTIgMiAwIDAgMS0yLjAwOSAwTDIgNyIvPjxyZWN0IHg9IjIiIHk9IjQiIHdpZHRoPSIyMCIgaGVpZ2h0PSIxNiIgcng9IjIiLz48L3N2Zz4=");
}
.taso-popup__line.website:before, .distributeurItem__line.website:before {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9IiMwMTI4MzAiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIiBjbGFzcz0ibHVjaWRlIGx1Y2lkZS1leHRlcm5hbC1saW5rLWljb24gbHVjaWRlLWV4dGVybmFsLWxpbmsiPjxwYXRoIGQ9Ik0xNSAzaDZ2NiIvPjxwYXRoIGQ9Ik0xMCAxNCAyMSAzIi8+PHBhdGggZD0iTTE4IDEzdjZhMiAyIDAgMCAxLTIgMkg1YTIgMiAwIDAgMS0yLTJWOGEyIDIgMCAwIDEgMi0yaDYiLz48L3N2Zz4=");
}

.mapBoxCta {
  position: absolute;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  bottom: -1rem;
  left: 0;
}

.faqContainer_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 1000px;
  max-width: 100%;
  margin: 0.75rem auto;
}

.faqContainer_item_ask {
  background: #009ebd;
  padding: 1rem 3.5rem 1rem 2rem;
  border-radius: 3rem;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  cursor: pointer;
  font-weight: 500;
  color: #ffffff;
  position: relative;
}
.faqContainer_item_ask .title {
  font-size: 1.5rem;
}
.faqContainer_item_ask .title em {
  font-size: 1.1rem;
}

.faqContainer_item_icon {
  width: 2.5rem;
  height: 2.5rem;
  display: block;
  position: absolute;
  right: 0.5rem;
  top: calc(50% - 1.25rem);
}
.faqContainer_item_icon svg {
  width: 100%;
  height: 100%;
}
.faqContainer_item_icon svg path {
  fill: #ffffff;
}
.faqContainer_item_icon svg line {
  fill: none;
  stroke: #99c555;
  stroke-linecap: round;
  stroke-miterlimit: 10;
  stroke-width: 15px;
}

.faqContainer_item_response {
  height: 0;
  overflow: hidden;
  color: #ffffff;
}
.faqContainer_item_response > div {
  background-color: #009ebd;
  padding: 2rem;
  border-radius: 2rem;
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: nowrap;
  position: relative;
}
.faqContainer_item_response p a {
  text-decoration: underline;
}
.faqContainer_item_response p .btn {
  text-decoration: none;
  margin-top: 1rem;
}
.faqContainer_item_response .faqBtn {
  text-decoration: none;
  display: inline-block;
  position: absolute;
  right: 2rem;
  bottom: -0.75rem;
  padding: 0.4rem 1rem 0.4rem 1rem;
  font-size: 0.8rem;
}
.faqContainer_item_response ul {
  margin: 0.75rem 0;
  padding-left: 1rem;
  list-style: disc;
}
.faqContainer_item_response ul li {
  margin: 0.25rem 0;
}

.heroNews {
  padding: 10rem 5vw 12rem 5vw;
  background-color: #012830;
  position: relative;
  color: #ffffff;
}

.newsPreview {
  color: #ffffff;
  position: relative;
  overflow: hidden;
}
.newsPreview:before {
  content: "";
  position: absolute;
  top: 20%;
  left: 0;
  width: 100%;
  height: calc(80% + 2rem);
  background-color: #012830;
}
.newsPreview .hiddenSwiperNewsTitle {
  display: none;
}
.newsPreview .secondaryBtn svg path {
  stroke: #ffffff;
}

.postList {
  margin-top: -13rem;
  position: relative;
}

.postList_row {
  gap: 2rem;
}
.postList_row .postBlock {
  width: calc(33.333% - 2rem);
}

.postBlock {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: nowrap;
  padding: 1rem;
  height: 100%;
}
.postBlock .postBlock_img {
  border-radius: 2rem;
  width: 100%;
  height: 260px;
  overflow: hidden;
}
.postBlock .postBlock_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  -o-object-fit: cover;
  -o-object-position: center;
  vertical-align: middle;
}
.postBlock .postBlock_content {
  padding: 1rem;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: nowrap;
}
.postBlock .postBlock_content .text {
  margin: 0;
}
.postBlock .postBlockTitle {
  font-weight: bold;
  font-size: 1.2rem;
}

/*SINGLE POST*/
.singleContent {
  padding: 0;
  margin: 0 auto;
  max-width: 100%;
  line-height: 1.4;
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 3rem;
  padding-top: 10rem;
  max-width: 100%;
  margin: 0 auto;
}
.singleContent .singleBreadCrumb {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  padding-left: 10%;
  padding-right: calc(10% + 380px);
}
.singleContent .singleBreadCrumb .singleBreadCrumbSeparator {
  margin: 0 0.25rem;
}
.singleContent .singleBreadCrumb a {
  text-decoration: underline;
}
.singleContent .singleBreadCrumb:before {
  content: "";
  width: 1.5rem;
  height: 1.5rem;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9IiMwMDBkNDciIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIiBjbGFzcz0ibHVjaWRlIGx1Y2lkZS1nYWxsZXJ5LWhvcml6b250YWwtZW5kLWljb24gbHVjaWRlLWdhbGxlcnktaG9yaXpvbnRhbC1lbmQiPjxwYXRoIGQ9Ik0yIDd2MTAiLz48cGF0aCBkPSJNNiA1djE0Ii8+PHJlY3Qgd2lkdGg9IjEyIiBoZWlnaHQ9IjE4IiB4PSIxMCIgeT0iMyIgcng9IjIiLz48L3N2Zz4=");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  display: inline-block;
  margin-right: 0.5rem;
}
.singleContent .content {
  width: 100%;
}
.singleContent .content > * {
  padding-left: 10%;
  padding-right: calc(10% + 380px);
}
.singleContent .content > ul, .singleContent .content > ol {
  padding-left: calc(10% + 20px);
}
.singleContent h1 {
  margin: 2rem 0;
  font-size: 2rem;
  font-weight: bold;
}
.singleContent h2 {
  margin: 1.8rem 0;
  font-weight: bolder !important;
  font-size: 2rem;
}
.singleContent h2 span {
  font-weight: bolder !important;
}
.singleContent h3 {
  margin: 1.5rem 0;
  font-weight: bolder !important;
  font-size: 1.4rem;
}
.singleContent h3 span {
  font-weight: bolder !important;
}
.singleContent h4 {
  margin: 1rem 0;
  font-weight: bolder !important;
  font-size: 1.1rem;
}
.singleContent h4 span {
  font-weight: bolder !important;
}
.singleContent p {
  margin: 0.5rem 0;
}
.singleContent strong {
  font-weight: bold;
}
.singleContent ul {
  margin: 0.5rem 0;
  padding-left: 1rem;
  list-style: disc;
}
.singleContent ul li {
  margin: 0.5rem 0;
}
.singleContent ol {
  margin: 0.5rem 0;
  padding-left: 1rem;
  list-style-type: decimal;
}
.singleContent ol li {
  margin: 0.5rem 0;
}
.singleContent .wp-block-image img {
  border-radius: 2rem;
}
.singleContent .wp-block-media-text figure {
  border-radius: 2rem;
  overflow: hidden;
}
.singleContent .wp-block-gallery figure {
  padding: 0.3rem;
}
.singleContent .wp-block-gallery figure img {
  border-radius: 1rem;
}
.singleContent figure.is-style-rounded img {
  border-radius: 2rem;
}
.singleContent .wp-block-button {
  display: inline-block;
  font-size: 1rem;
  margin: 1rem 0;
  text-align: center;
  min-width: 240px;
  line-height: 1.1;
  color: #ffffff;
  cursor: pointer;
  position: relative;
  outline: none;
  border: none;
  background: transparent;
  padding: 0;
  overflow: hidden;
}
.singleContent .wp-block-button .wp-block-button__link.wp-element-button {
  padding: 0.7rem 2.5rem;
  display: block;
  position: relative;
  background-color: transparent;
  z-index: 1;
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0, 0.07, 0.57, 0.99);
}
.singleContent .wp-block-button .wp-block-button__link.wp-element-button:after {
  content: "";
  background-color: #99c555;
  position: absolute;
  width: calc(100% - 2rem);
  height: 100%;
  left: 1rem;
  top: 0;
  overflow: hidden;
  z-index: -1;
  transform: skewX(20deg);
  border-radius: 0 1rem;
  transition: background-color 0.3s ease-in-out;
}
.singleContent .wp-block-button .wp-block-button__link.wp-element-button:hover {
  color: #012830;
}
.singleContent .wp-block-button .wp-block-button__link.wp-element-button:hover:after {
  background-color: #ffffff;
}
.singleContent table.has-fixed-layout {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}
.singleContent table.has-fixed-layout td, .singleContent table.has-fixed-layout th {
  padding: 10px;
  vertical-align: top;
}
.singleContent .tableWrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.singleContent .tableWrapper table {
  min-width: 600px;
}
.singleContent .wp-block-embed {
  margin: 1rem 0;
}
.singleContent .wp-block-embed iframe {
  border-radius: 2rem;
  overflow: hidden;
}

.postPanel {
  width: 380px;
  position: absolute;
  right: 5%;
  z-index: 2;
}
.postPanel .stickyPanel {
  display: flex;
  flex-direction: column;
}

.contactPanel {
  position: relative;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.contactPanel p {
  display: inline-block;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  font-weight: bold;
}
.contactPanel:before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 2px;
  background-color: #012830;
}

.usefulLinksPanel {
  display: flex;
  flex-direction: column;
  padding: 1rem;
}
.usefulLinksPanel p {
  display: inline-block;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  margin-top: 0;
  font-weight: bold;
}
.usefulLinksPanel .singleSocials {
  margin-bottom: 1rem;
}
.usefulLinksPanel .singleSocials a {
  width: 2.1rem;
  height: 2.1rem;
  margin: 0 0.25rem;
}
.usefulLinksPanel .singleSocials a svg {
  width: 100%;
  height: 100%;
}
.usefulLinksPanel .singleSocials a svg path {
  fill: #99c555;
  transition: fill 0.3s cubic-bezier(0, 0.07, 0.57, 0.99);
}
.usefulLinksPanel > div {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
}

.quickAccess {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
  border-radius: 2rem;
  background-color: #99c555;
}
.quickAccess p {
  display: inline-block;
  font-size: 1.3rem;
  margin-top: 0;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  font-weight: bold;
}
.quickAccess ul {
  list-style: none;
  padding-left: 0;
}
.quickAccess li {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
}
.quickAccess li:hover .quickAccessIcon {
  animation-name: bounceIt;
  animation-duration: 0.6s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  animation-delay: 0s;
  animation-fill-mode: both;
}
.quickAccess .quickAccessIcon {
  width: 1rem;
  height: 1rem;
  min-width: 1rem;
  margin-top: 3px;
  margin-right: 0.5rem;
  transform: translateX(0);
  transition: transform 0.2s ease-in-out;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9IiNmZmZmZmYiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIiBjbGFzcz0ibHVjaWRlIGx1Y2lkZS1jaXJjbGUtYXJyb3ctcmlnaHQtaWNvbiBsdWNpZGUtY2lyY2xlLWFycm93LXJpZ2h0Ij48Y2lyY2xlIGN4PSIxMiIgY3k9IjEyIiByPSIxMCIvPjxwYXRoIGQ9Im0xMiAxNiA0LTQtNC00Ii8+PHBhdGggZD0iTTggMTJoOCIvPjwvc3ZnPg==");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.quickAccess a {
  margin: 0.25rem 0;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  text-decoration: none;
}
.quickAccess a br {
  display: none;
}

.endBlog {
  overflow: hidden;
  padding-left: 10%;
  padding-right: 10%;
}
.endBlog .col-12 {
  padding-left: 0;
  padding-right: 0;
}
.endBlog .swiperNewsPreview {
  margin-left: 0;
}

.page-contact .hero {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 0 2rem;
}
.page-contact .hero + .formDemande {
  margin-top: 0;
}
.page-contact .heroContent {
  width: 900px;
  max-width: 50%;
}

.heroContact {
  width: auto;
  max-width: 50%;
  position: relative;
  z-index: 1;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: nowrap;
  padding: 2rem;
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.1);
  gap: 1rem;
}
.heroContact .adress {
  margin-bottom: 0.5rem;
}
.heroContact .adress p {
  position: relative;
  padding-left: 30px;
}
.heroContact .adress p:before {
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  left: 0;
  top: 2px;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9IiNmZmZmZmYiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIiBjbGFzcz0ibHVjaWRlIGx1Y2lkZS1tYXAtcGluLWhvdXNlLWljb24gbHVjaWRlLW1hcC1waW4taG91c2UiPjxwYXRoIGQ9Ik0xNSAyMmExIDEgMCAwIDEtMS0xdi00YTEgMSAwIDAgMSAuNDQ1LS44MzJsMy0yYTEgMSAwIDAgMSAxLjExIDBsMyAyQTEgMSAwIDAgMSAyMiAxN3Y0YTEgMSAwIDAgMS0xIDF6Ii8+PHBhdGggZD0iTTE4IDEwYTggOCAwIDAgMC0xNiAwYzAgNC45OTMgNS41MzkgMTAuMTkzIDcuMzk5IDExLjc5OWExIDEgMCAwIDAgLjYwMS4yIi8+PHBhdGggZD0iTTE4IDIydi0zIi8+PGNpcmNsZSBjeD0iMTAiIGN5PSIxMCIgcj0iMyIvPjwvc3ZnPg==");
  background-size: contain;
  background-repeat: no-repeat;
}
.heroContact .adress a {
  display: inline-block;
  font-size: 1rem;
  text-align: center;
  line-height: 1;
  color: #012830;
  background-color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  position: relative;
  outline: none;
  border: none;
  padding: 0.3rem 1.5rem 0.3rem 2.25rem;
  border-radius: 2rem;
  margin-top: 0.75rem;
  margin-left: 30px;
  font-weight: bold;
  position: relative;
}
.heroContact .adress a::before {
  content: "";
  position: absolute;
  top: calc(50% - 0.7rem);
  left: 0.25rem;
  width: 1.75rem;
  height: 2rem;
  transform: rotate(-10deg);
  background-image: url("../img/logo-google-map.svg");
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.3s ease;
}
.heroContact .adress a:hover {
  background-color: rgb(255, 255, 255);
}
.heroContact .adress a:hover:before {
  transform: scale(1.1);
}
.heroContact .telephone {
  position: relative;
  padding-left: 30px;
  font-weight: bold;
}
.heroContact .telephone a {
  line-height: 1.2;
  display: block;
}
.heroContact .telephone:before {
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  left: 0;
  top: 0;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9IiNmZmZmZmYiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIiBjbGFzcz0ibHVjaWRlIGx1Y2lkZS1waG9uZS1jYWxsLWljb24gbHVjaWRlLXBob25lLWNhbGwiPjxwYXRoIGQ9Ik0xMyAyYTkgOSAwIDAgMSA5IDkiLz48cGF0aCBkPSJNMTMgNmE1IDUgMCAwIDEgNSA1Ii8+PHBhdGggZD0iTTEzLjgzMiAxNi41NjhhMSAxIDAgMCAwIDEuMjEzLS4zMDNsLjM1NS0uNDY1QTIgMiAwIDAgMSAxNyAxNWgzYTIgMiAwIDAgMSAyIDJ2M2EyIDIgMCAwIDEtMiAyQTE4IDE4IDAgMCAxIDIgNGEyIDIgMCAwIDEgMi0yaDNhMiAyIDAgMCAxIDIgMnYzYTIgMiAwIDAgMS0uOCAxLjZsLS40NjguMzUxYTEgMSAwIDAgMC0uMjkyIDEuMjMzIDE0IDE0IDAgMCAwIDYuMzkyIDYuMzg0Ii8+PC9zdmc+");
  background-size: contain;
  background-repeat: no-repeat;
}
.heroContact .email {
  position: relative;
  padding-left: 30px;
  font-weight: bold;
}
.heroContact .email a {
  line-height: 1.2;
  display: block;
}
.heroContact .email:before {
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  left: 0;
  top: 0;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9IiNmZmZmZmYiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIiBjbGFzcz0ibHVjaWRlIGx1Y2lkZS1tYWlsLWljb24gbHVjaWRlLW1haWwiPjxwYXRoIGQ9Im0yMiA3LTguOTkxIDUuNzI3YTIgMiAwIDAgMS0yLjAwOSAwTDIgNyIvPjxyZWN0IHg9IjIiIHk9IjQiIHdpZHRoPSIyMCIgaGVpZ2h0PSIxNiIgcng9IjIiLz48L3N2Zz4=");
  background-size: contain;
  background-repeat: no-repeat;
}

.rappelModal {
  position: fixed;
  z-index: -100;
  user-select: none;
  pointer-events: none;
  opacity: 0;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100vw;
  height: 100vh;
  padding: 1rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  background-color: rgba(29, 29, 27, 0.8);
  color: #ffffff;
}
.rappelModal .closeModal {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  padding: 1rem;
  border-radius: 1rem;
  background-color: #99c555;
  position: absolute;
  right: 0.5rem;
  top: 0.5rem;
  cursor: pointer;
  box-shadow: 0px 0px 100px 0px rgba(0, 0, 0, 0.5);
  transition: background-color 0.3s ease;
}
.rappelModal .closeModal svg {
  fill: #ffffff;
}
.rappelModal .rappelContainer {
  background-color: #012830;
  padding: 4rem;
  border-radius: 1rem;
  box-shadow: 0px 0px 100px 0px rgba(0, 0, 0, 0.5);
  width: 760px;
  max-width: 100%;
  position: relative;
  opacity: 0;
  transform: translate(0, 4rem);
}
.rappelModal .wpcf7 .legend {
  text-align: center;
  width: 100%;
  margin: 0.5rem 0;
}
.rappelModal .wpcf7 [data-name=contactMethod] {
  width: 100%;
  max-width: 100%;
}
.rappelModal .wpcf7 .wpcf7-radio,
.rappelModal .wpcf7 .wpcf7-checkbox {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.rappelModal .wpcf7 .wpcf7-radio *:before,
.rappelModal .wpcf7 .wpcf7-radio *:after,
.rappelModal .wpcf7 .wpcf7-checkbox *:before,
.rappelModal .wpcf7 .wpcf7-checkbox *:after {
  box-sizing: inherit;
}
.rappelModal .wpcf7 .wpcf7-radio .wpcf7-list-item,
.rappelModal .wpcf7 .wpcf7-checkbox .wpcf7-list-item {
  margin-left: 0;
  display: flex;
}
.rappelModal .wpcf7 .wpcf7-radio .wpcf7-list-item > label,
.rappelModal .wpcf7 .wpcf7-checkbox .wpcf7-list-item > label {
  display: flex;
  align-items: center;
  width: 100%;
  margin: 0.25rem;
}

body.rappelModalIsOpen .rappelModal {
  -webkit-user-select: initial;
  -moz-user-select: initial;
  user-select: initial;
  pointer-events: initial;
  z-index: 20;
}

body.drag-over {
  position: relative;
}
body.drag-over .applyForm .wpcf7-form [data-name=cv] {
  z-index: 1000;
  color: #ffffff;
  animation: scaleBox 1.5s infinite alternate;
}
body.drag-over .applyForm .wpcf7-form .codedropz-upload-handler {
  border-color: #ffffff;
}
body.drag-over .applyForm .wpcf7-form .codedropz-upload-inner h3 {
  color: #ffffff;
}
@keyframes scaleBox {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.03);
  }
}
body.drag-over::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  backdrop-filter: blur(5px);
  background-color: rgba(52, 54, 62, 0.85);
  pointer-events: none;
  z-index: 999;
}

.wpcf7 {
  max-width: 100%;
  width: 900px;
  margin: 2rem auto;
}

.wpcf7-form {
  display: flex;
  flex-wrap: wrap;
  max-width: 100%;
  margin: 1rem auto;
}
.wpcf7-form .legend {
  width: 100%;
  font-weight: bold;
  margin: 0.75rem;
  text-align: center;
}
.wpcf7-form .legend em {
  font-size: 0.7rem;
  font-style: italic;
}
.wpcf7-form label {
  width: calc(50% - 1.5rem);
  margin: 0.75rem;
  position: relative;
}
.wpcf7-form label .wpcf7-form-control-wrap {
  display: block;
}
.wpcf7-form label input, .wpcf7-form label textarea {
  width: 100%;
  background-color: transparent;
  border: none;
  padding: 1rem;
  border: 1px solid #99c555;
  color: #99c555;
  resize: none;
  display: block;
  border-radius: 2rem;
  font-size: 16px;
}
.wpcf7-form label input::placeholder, .wpcf7-form label textarea::placeholder {
  color: #99c555;
  opacity: 0.6;
  transition: opacity 0.3s cubic-bezier(0, 0.07, 0.57, 0.99);
  font-size: 16px;
}
.wpcf7-form label input:focus, .wpcf7-form label input:hover, .wpcf7-form label textarea:focus, .wpcf7-form label textarea:hover {
  outline: none;
}
.wpcf7-form label input:focus::placeholder, .wpcf7-form label input:focus::placeholder, .wpcf7-form label input:hover::placeholder, .wpcf7-form label input:hover::placeholder, .wpcf7-form label textarea:focus::placeholder, .wpcf7-form label textarea:focus::placeholder, .wpcf7-form label textarea:hover::placeholder, .wpcf7-form label textarea:hover::placeholder {
  opacity: 1;
}
.wpcf7-form label input:focus + i, .wpcf7-form label input:hover + i, .wpcf7-form label textarea:focus + i, .wpcf7-form label textarea:hover + i {
  opacity: 1;
}
.wpcf7-form label input:-webkit-autofill, .wpcf7-form label textarea:-webkit-autofill {
  appearance: none;
  background-color: transparent !important;
  color: #99c555 !important;
  border: 2px solid #99c555 !important;
  -webkit-text-fill-color: #99c555 !important;
  -webkit-box-shadow: 0 0 0px 1000px #012830 inset !important;
}
.wpcf7-form label input:focus::-webkit-contacts-auto-fill-button, .wpcf7-form label textarea:focus::-webkit-contacts-auto-fill-button {
  visibility: hidden;
  display: none !important;
  pointer-events: none;
  position: absolute;
  right: 0;
}
.wpcf7-form label input:not(:placeholder-shown) + i, .wpcf7-form label textarea:not(:placeholder-shown) + i {
  opacity: 1;
}
.wpcf7-form label input.wpcf7-not-valid, .wpcf7-form label textarea.wpcf7-not-valid {
  padding: 0.5rem 1rem 1.5rem 1rem;
}
.wpcf7-form label input.wpcf7-not-valid + i svg path, .wpcf7-form label textarea.wpcf7-not-valid + i svg path {
  fill: #fa4645;
}
.wpcf7-form label textarea {
  border-radius: 1.5rem;
  padding: 2rem 1rem 1rem 1rem;
}
.wpcf7-form label.big {
  width: 100%;
}
.wpcf7-form label.big i {
  top: 1rem;
}
.wpcf7-form i {
  position: absolute;
  right: 1rem;
  top: calc(50% - 0.5rem);
  width: 1rem;
  height: 1rem;
  opacity: 0.8;
  transition: opacity 0.3s cubic-bezier(0, 0.07, 0.57, 0.99);
}
.wpcf7-form i svg path {
  fill: #99c555;
  transition: fill 0.3s cubic-bezier(0, 0.07, 0.57, 0.99);
}
.wpcf7-form div[data-class=wpcf7cf_group] {
  flex-wrap: wrap;
  width: 100%;
}
.wpcf7-form div[data-class=wpcf7cf_group]:not(.wpcf7cf-hidden) {
  display: flex !important;
}
.wpcf7-form label.adresse {
  width: calc(45% - 1.5rem);
}
.wpcf7-form label.ville {
  width: calc(30% - 1.5rem);
}
.wpcf7-form label.cp {
  width: calc(25% - 1.5rem);
}
.wpcf7-form [data-name=structure], .wpcf7-form [data-name=productList] {
  width: 100%;
  margin: 0.75rem;
}
.wpcf7-form [data-name=problematique] {
  margin: 0 0.75rem 0.75rem 0.75rem;
}
.wpcf7-form [data-name=departement], .wpcf7-form [data-name=commune] {
  width: calc(50% - 1.5rem);
  margin: 0.75rem;
}
.wpcf7-form .selectize-control {
  height: 100%;
  width: 100%;
}
.wpcf7-form .selectize-control.single .selectize-input, .wpcf7-form .selectize-control.multi .selectize-input {
  background-color: transparent;
  background-image: none;
  padding: 1rem 1rem 0.9rem 1rem;
  box-shadow: none;
  border-color: #99c555;
  border-width: 1px;
}
.wpcf7-form .selectize-control.single .selectize-input.input-active, .wpcf7-form .selectize-control.multi .selectize-input.input-active {
  display: flex;
}
.wpcf7-form .selectize-control.single .selectize-input.dropdown-active::before, .wpcf7-form .selectize-control.multi .selectize-input.dropdown-active::before {
  content: none;
}
.wpcf7-form .selectize-control.single .selectize-input.dropdown-active:after, .wpcf7-form .selectize-control.multi .selectize-input.dropdown-active:after {
  border-color: transparent transparent #99c555 transparent;
}
.wpcf7-form .selectize-control.single .selectize-input:after, .wpcf7-form .selectize-control.multi .selectize-input:after {
  border-color: #99c555 transparent transparent transparent;
}
.wpcf7-form .selectize-control.multi .selectize-input [data-value] {
  background-color: #99c555;
  border-radius: 1rem;
  background-image: none;
  border: none;
  text-shadow: none;
}
.wpcf7-form .selectize-control.multi .selectize-input > div {
  margin: 0 3px 0 0;
  padding: 2px 10px;
}
.wpcf7-form .selectize-control.multi.plugin-remove_button .item .remove {
  border-left-color: #ffffff;
}
.wpcf7-form .selectize-control.wpcf7-not-valid .selectize-input {
  padding-top: 0.5rem;
  padding-bottom: 1.5rem;
}
.wpcf7-form .selectize-input {
  height: 100%;
  box-shadow: none;
  border: 1px solid #99c555;
  border-radius: 2rem;
  padding: 8px 1rem;
  display: flex;
  align-items: center;
}
.wpcf7-form .selectize-input input {
  border-radius: 0;
  color: #99c555;
  font-size: 16px;
}
.wpcf7-form .selectize-input input::-moz-placeholder {
  color: #99c555;
  opacity: 0.8;
  -moz-transition: opacity 0.3s cubic-bezier(0, 0.07, 0.57, 0.99);
  transition: opacity 0.3s cubic-bezier(0, 0.07, 0.57, 0.99);
}
.wpcf7-form .selectize-input input::placeholder {
  color: #99c555;
  opacity: 0.8;
  transition: opacity 0.3s cubic-bezier(0, 0.07, 0.57, 0.99);
}
.wpcf7-form .selectize-input .item {
  color: #99c555;
  font-size: 16px;
}
.wpcf7-form .selectize-dropdown {
  box-shadow: 0 1px 20px -15px rgba(153, 197, 85, 0.2);
  border: none;
  background-color: #143f4d;
  color: #99c555;
  border-radius: 5px;
  overflow: hidden;
}
.wpcf7-form .selectize-dropdown.animate {
  overflow-y: hidden;
}
.wpcf7-form .selectize-dropdown.animate .selectize-dropdown-content {
  overflow-y: hidden;
}
.wpcf7-form .selectize-dropdown .option {
  cursor: pointer;
  padding: 7.5px 1rem 5px 1rem;
}
.wpcf7-form .selectize-dropdown .option:nth-child(even) {
  background-color: #012f39;
}
.wpcf7-form .selectize-dropdown .option:hover {
  background-color: #88b446;
  color: #ffffff;
}
.wpcf7-form .selectize-dropdown .option.selected {
  background-color: #99c555;
  color: #ffffff;
}
.wpcf7-form .selectize-dropdown .option.active:not(.selected) {
  background-color: #88b446;
  color: #ffffff;
}
.wpcf7-form .selectize-dropdown .create {
  background-color: #009ebd;
  color: #ffffff;
}
.wpcf7-form .selectize-dropdown-content {
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.45) rgba(255, 255, 255, 0.1);
}
.wpcf7-form .selectize-dropdown-content::-webkit-scrollbar {
  width: 10px;
}
.wpcf7-form .selectize-dropdown-content::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
}
.wpcf7-form .selectize-dropdown-content::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.3));
  border-radius: 999px;
  border: 2px solid rgba(1, 40, 48, 0.35);
}
.wpcf7-form .selectize-dropdown-content::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.45));
}
.wpcf7-form .wpcf7-radio,
.wpcf7-form .wpcf7-checkbox {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.wpcf7-form .wpcf7-radio .wpcf7-list-item,
.wpcf7-form .wpcf7-checkbox .wpcf7-list-item {
  display: inline-block;
  margin: 0;
}
.wpcf7-form .wpcf7-radio .wpcf7-list-item label,
.wpcf7-form .wpcf7-checkbox .wpcf7-list-item label {
  display: flex;
  align-items: center;
  width: 100%;
  margin: 0;
}
.wpcf7-form .wpcf7-radio .wpcf7-list-item [type=checkbox], .wpcf7-form .wpcf7-radio .wpcf7-list-item [type=radio],
.wpcf7-form .wpcf7-checkbox .wpcf7-list-item [type=checkbox],
.wpcf7-form .wpcf7-checkbox .wpcf7-list-item [type=radio] {
  visibility: hidden;
  position: absolute;
  left: -100000px;
  opacity: 0;
  z-index: -10000;
}
.wpcf7-form .wpcf7-radio .wpcf7-list-item [type=checkbox]:not(:checked) + .wpcf7-list-item-label:hover:after, .wpcf7-form .wpcf7-radio .wpcf7-list-item [type=radio]:not(:checked) + .wpcf7-list-item-label:hover:after,
.wpcf7-form .wpcf7-checkbox .wpcf7-list-item [type=checkbox]:not(:checked) + .wpcf7-list-item-label:hover:after,
.wpcf7-form .wpcf7-checkbox .wpcf7-list-item [type=radio]:not(:checked) + .wpcf7-list-item-label:hover:after {
  transform: scale(1);
  opacity: 1;
}
.wpcf7-form .wpcf7-radio .wpcf7-list-item [type=checkbox]:checked + .wpcf7-list-item-label, .wpcf7-form .wpcf7-radio .wpcf7-list-item [type=radio]:checked + .wpcf7-list-item-label,
.wpcf7-form .wpcf7-checkbox .wpcf7-list-item [type=checkbox]:checked + .wpcf7-list-item-label,
.wpcf7-form .wpcf7-checkbox .wpcf7-list-item [type=radio]:checked + .wpcf7-list-item-label {
  background-color: #99c555;
  color: #ffffff;
  padding-left: 2rem;
}
.wpcf7-form .wpcf7-radio .wpcf7-list-item [type=checkbox]:checked + .wpcf7-list-item-label:before, .wpcf7-form .wpcf7-radio .wpcf7-list-item [type=radio]:checked + .wpcf7-list-item-label:before,
.wpcf7-form .wpcf7-checkbox .wpcf7-list-item [type=checkbox]:checked + .wpcf7-list-item-label:before,
.wpcf7-form .wpcf7-checkbox .wpcf7-list-item [type=radio]:checked + .wpcf7-list-item-label:before {
  opacity: 1;
  transform: scale(1);
}
.wpcf7-form .wpcf7-radio .wpcf7-list-item .wpcf7-list-item-label,
.wpcf7-form .wpcf7-checkbox .wpcf7-list-item .wpcf7-list-item-label {
  padding: 0.4rem 1rem;
  border-radius: 2rem;
  background-color: #fff;
  color: #012830;
  user-select: none;
  cursor: pointer;
  position: relative;
  background-size: 20px 20px;
  background-repeat: no-repeat;
  background-position: 5px center;
  transition: all 0.3s cubic-bezier(0, 0.07, 0.57, 0.99);
}
.wpcf7-form .wpcf7-radio .wpcf7-list-item .wpcf7-list-item-label:before,
.wpcf7-form .wpcf7-checkbox .wpcf7-list-item .wpcf7-list-item-label:before {
  content: "";
  position: absolute;
  left: 5px;
  top: calc(50% - 10px);
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9IiNmZmZmZmYiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIiBjbGFzcz0ibHVjaWRlIGx1Y2lkZS1jaXJjbGUtY2hlY2stYmlnLWljb24gbHVjaWRlLWNpcmNsZS1jaGVjay1iaWciPjxwYXRoIGQ9Ik0yMS44MDEgMTBBMTAgMTAgMCAxIDEgMTcgMy4zMzUiLz48cGF0aCBkPSJtOSAxMSAzIDNMMjIgNCIvPjwvc3ZnPg==");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.3s cubic-bezier(0, 0.07, 0.57, 0.99);
}
.wpcf7-form .wpcf7-radio .wpcf7-list-item .wpcf7-list-item-label:after,
.wpcf7-form .wpcf7-checkbox .wpcf7-list-item .wpcf7-list-item-label:after {
  content: "";
  position: absolute;
  left: -4px;
  top: -4px;
  width: calc(100% + 8px);
  height: calc(100% + 8px);
  border: 1px solid #99c555;
  border-radius: 2rem;
  opacity: 0;
  transform: scale(0.95);
  transition: all 0.3s cubic-bezier(0, 0.07, 0.57, 0.99);
}
.wpcf7-form .wpcf7-radio + .wpcf7-not-valid-tip,
.wpcf7-form .wpcf7-checkbox + .wpcf7-not-valid-tip {
  display: none !important;
}
.wpcf7-form [data-name=cv] {
  width: 100%;
  margin: 0.75rem;
}
.wpcf7-form .codedropz-upload-handler {
  border-radius: 2rem;
  border: 2px solid #012830;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wpcf7-form .codedropz-upload-inner {
  display: flex;
  align-items: center;
}
.wpcf7-form .codedropz-upload-inner h3 {
  font-size: 0.9rem;
  font-weight: 500;
  color: #012830;
  line-height: 1rem;
}
.wpcf7-form .codedropz-upload-inner span {
  display: inline-block;
  margin: 0 0.5rem;
}
.wpcf7-form .codedropz-upload-inner .cd-upload-btn {
  padding: 0.5rem 1rem;
  background-color: #99c555;
  color: #012830;
  border-radius: 1rem;
  display: inline-block;
  transition: all 0.3s cubic-bezier(0, 0.07, 0.57, 0.99);
}
.wpcf7-form .codedropz-upload-inner .cd-upload-btn:hover {
  background-color: #012830;
  color: #ffffff;
}
.wpcf7-form .dnd-upload-counter {
  right: 15px;
  bottom: 5px;
}
.wpcf7-form .dnd-upload-status .dnd-upload-details .name {
  color: #012830;
}
.wpcf7-form .dnd-upload-status .dnd-upload-details .name em {
  color: #012830;
  font-weight: 400;
}
.wpcf7-form .dnd-upload-status .dnd-upload-details span.has-error {
  color: #fa4645;
}
.wpcf7-form .dnd-upload-status .dnd-upload-details .dnd-progress-bar {
  margin: 0.25rem 0;
}
.wpcf7-form .dnd-upload-status .dnd-upload-details .dnd-progress-bar span {
  background-color: #99c555;
}
.wpcf7-form .dnd-upload-status .dnd-upload-details .dnd-icon-remove {
  color: #012830;
}
.wpcf7-form .dnd-upload-status .dnd-upload-details .remove-file span:after {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9IiMwMDNjN2UiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIiBjbGFzcz0ibHVjaWRlIGx1Y2lkZS1jaXJjbGUteC1pY29uIGx1Y2lkZS1jaXJjbGUteCI+PGNpcmNsZSBjeD0iMTIiIGN5PSIxMiIgcj0iMTAiLz48cGF0aCBkPSJtMTUgOS02IDYiLz48cGF0aCBkPSJtOSA5IDYgNiIvPjwvc3ZnPg==");
}
.wpcf7-form .dnd-upload-status .dnd-upload-image {
  border-color: #012830;
}
.wpcf7-form .dnd-upload-status .dnd-upload-image span.file {
  height: 21px;
  width: 21px;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9IiMwMDNjN2UiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIiBjbGFzcz0ibHVjaWRlIGx1Y2lkZS1maWxlLWljb24gbHVjaWRlLWZpbGUiPjxwYXRoIGQ9Ik02IDIyYTIgMiAwIDAgMS0yLTJWNGEyIDIgMCAwIDEgMi0yaDhhMi40IDIuNCAwIDAgMSAxLjcwNC43MDZsMy41ODggMy41ODhBMi40IDIuNCAwIDAgMSAyMCA4djEyYTIgMiAwIDAgMS0yIDJ6Ii8+PHBhdGggZD0iTTE0IDJ2NWExIDEgMCAwIDAgMSAxaDUiLz48L3N2Zz4=");
}
.wpcf7-form .endForm {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.wpcf7-form .submitContainer {
  margin-top: 1rem;
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
}
.wpcf7-form .formBtn span {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  padding: 0.75rem 1.5rem 0.6rem 1.5rem;
  display: inline-block;
  font-size: 0.9rem;
  color: #ffffff;
  cursor: pointer;
  position: relative;
  text-transform: uppercase;
  background-color: #143f4d;
  border-radius: 2rem;
  font-weight: bold;
}
.wpcf7-form .formBtn.rgpdOk:hover span {
  background-color: #99c555;
}
.wpcf7-form input[type=submit] {
  visibility: hidden;
  position: absolute;
  right: auto;
  opacity: 0;
  width: 0;
  height: 0;
  z-index: -1000;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  pointer-events: none;
}
.wpcf7-form .wpcf7-not-valid-tip {
  color: #fa4645;
  font-size: 0.8rem;
  position: absolute;
  bottom: 6px;
  left: 1.2rem;
  transition: opacity 0.3s cubic-bezier(0, 0.07, 0.57, 0.99);
  z-index: 1;
  pointer-events: none;
  user-select: none;
}
.wpcf7-form .wpcf7-spinner {
  position: absolute;
  right: calc(50% - 15.5px);
  top: calc(50% - 15.5px);
  margin: 0;
  width: 31px;
  height: 31px;
  background-color: transparent;
  opacity: 1;
  user-select: none;
  pointer-events: none;
}
.wpcf7-form .wpcf7-spinner:after, .wpcf7-form .wpcf7-spinner:before {
  content: "";
  box-sizing: border-box;
  width: 31px;
  height: 31px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  left: 0;
  top: 0;
  transform-origin: 50% 50%;
  animation: animloader 2s linear infinite;
}
.wpcf7-form .wpcf7-spinner:after:after, .wpcf7-form .wpcf7-spinner:before:after {
  animation-delay: 1s;
}
@keyframes animloader {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}

/*Acceptance*/
[data-name=rgpd-consent] {
  padding: 0.1rem 0.25rem 0.1rem 0;
  border-radius: 0.5rem;
  background-color: rgba(0, 0, 0, 0);
  width: 500px;
  max-width: 100%;
}

.wpcf7-acceptance {
  display: inline-block;
}
.wpcf7-acceptance .wpcf7-list-item {
  margin: 0;
  width: auto;
}
.wpcf7-acceptance .wpcf7-list-item > label {
  cursor: pointer;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  visibility: visible;
  opacity: 1;
  transform: none;
}
.wpcf7-acceptance .wpcf7-list-item > label .cbx {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  cursor: pointer;
  padding: 6px 8px;
  border-radius: 6px;
  overflow: hidden;
  transition: all 0.2s ease;
  display: inline-block;
  width: 34px;
  min-width: 34px;
  margin: 0;
  visibility: visible;
  opacity: 1;
  transform: none;
}
.wpcf7-acceptance .wpcf7-list-item > label .cbx:not(:last-child) {
  margin-right: 6px;
}
.wpcf7-acceptance .wpcf7-list-item > label .cbx:hover {
  background: rgba(0, 0, 0, 0.2);
}
.wpcf7-acceptance .wpcf7-list-item > label .cbx:hover span:first-child {
  border-color: #ffffff;
}
.wpcf7-acceptance .wpcf7-list-item > label .cbx span {
  float: left;
  vertical-align: middle;
  transform: translate3d(0, 0, 0);
}
.wpcf7-acceptance .wpcf7-list-item > label .cbx span:first-child {
  position: relative;
  width: 18px;
  height: 18px;
  border-radius: 4px;
  transform: scale(1);
  border: 1px solid #ffffff;
  transition: all 0.2s ease;
  box-shadow: 0 1px 1px rgba(0, 16, 75, 0.05);
}
.wpcf7-acceptance .wpcf7-list-item > label .cbx span:first-child svg {
  position: absolute;
  top: 3px;
  left: 2px;
  fill: none;
  stroke: #012830;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 16px;
  stroke-dashoffset: 16px;
  transition: all 0.3s ease;
  transition-delay: 0.1s;
  transform: translate3d(0, 0, 0);
}
.wpcf7-acceptance .wpcf7-list-item > label .cbx span:last-child {
  padding-left: 8px;
  line-height: 18px;
}
.wpcf7-acceptance .wpcf7-list-item > label .inp-cbx {
  position: absolute;
  visibility: hidden;
  width: 0;
  padding: 0;
  margin: 0;
}
.wpcf7-acceptance .wpcf7-list-item > label .inp-cbx:checked + .wpcf7-list-item-label .cbx span:first-child {
  animation: wave-4 0.4s ease;
  background-color: #012830;
  border-color: #ffffff;
}
.wpcf7-acceptance .wpcf7-list-item > label .inp-cbx:checked + .wpcf7-list-item-label .cbx span:first-child svg {
  stroke-dashoffset: 0;
  stroke: #ffffff;
}
.wpcf7-acceptance .wpcf7-list-item > label .inline-svg {
  position: absolute;
  width: 0;
  height: 0;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.wpcf7-acceptance .checkbox__text {
  font-size: 0.8rem;
  font-style: italic;
  font-weight: 300;
  text-align: left;
  display: inline-block;
  width: auto;
  text-wrap: balance;
}
.wpcf7-acceptance .wpcf7-list-item-label {
  display: flex;
  align-items: center;
  justify-content: center;
}
.wpcf7-acceptance + .wpcf7-not-valid-tip {
  position: initial;
  padding: 2px 2px 2px 5px;
  text-align: center;
}

@keyframes wave-4 {
  50% {
    transform: scale(0.9);
  }
}
.wpcf7 .wpcf7-form .wpcf7-response-output {
  margin: 1rem auto;
  padding: 5rem 1rem 1rem 1rem;
  border: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: fixed;
  font-size: 1.1rem;
  text-wrap: balance;
  line-height: 1.2;
  width: 600px;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  top: calc(50% - 100px);
  left: calc(50% - 300px);
  z-index: 100;
  background-color: #012830;
  border-radius: 1rem;
  color: #fff;
  box-shadow: 0px 0px 50px -40px #ffffff;
  opacity: 0;
  transform: translate(0, 50px);
  border: 2px solid #99c555;
}
.wpcf7 .wpcf7-form .wpcf7-response-output p {
  font-size: 1.1rem;
  margin: 0.5rem 0;
}
.wpcf7 .wpcf7-form .wpcf7-response-output strong {
  font-size: 1.5rem;
  font-weight: bold;
}
.wpcf7 .wpcf7-form .wpcf7-response-output a {
  font-size: 1.1rem;
  font-weight: bold;
  text-decoration: underline;
}
.wpcf7 .wpcf7-form .wpcf7-response-output:before {
  content: "";
  width: 8rem;
  height: 5rem;
  position: absolute;
  top: 0;
  left: calc(50% - 4.5rem);
  border-radius: 2rem;
  background: url("../img/logo-taso-white.svg");
  background-size: 7rem;
  background-repeat: no-repeat;
  background-position: center;
}
.wpcf7 .wpcf7-form.validating .wpcf7-response-output {
  display: none;
}
.wpcf7 .wpcf7-form.invalid .wpcf7-response-output {
  color: #fff;
  background-color: #012830;
  border-color: #fa4645;
}
.wpcf7 .wpcf7-form.invalid .wpcf7-response-output:before {
  background: url("../img/logo-taso-white.svg");
  background-size: 7rem;
  background-repeat: no-repeat;
  background-position: center;
}
.wpcf7 .wpcf7-form.sent .wpcf7-response-output:before, .wpcf7 .wpcf7-form.resetting .wpcf7-response-output:before {
  background: url("../img/logo-taso-white.svg");
  background-size: 7rem;
  background-repeat: no-repeat;
  background-position: center;
}

@keyframes bounceIt {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(3px);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes bounceItReverse {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-3px);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes scalyPagination {
  0% {
    transform: scale(0.8);
  }
  50% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(0.8);
  }
}
/*Swiper common*/
.swiper:not(.swiper-initialized) .tranding-slider-control {
  display: none;
}
.swiper.swiper-initialized {
  padding-bottom: 4rem;
}
.swiper.swiper-initialized.few-slides {
  padding-bottom: 0;
}
.swiper.swiper-initialized.few-slides .swiper-wrapper {
  justify-content: center;
}
.swiper.swiper-initialized.few-slides .tranding-slider-control {
  display: none;
}
.swiper .swiper-slide {
  height: auto;
}

.tranding-slider-control {
  position: absolute;
  bottom: 0;
  height: 3rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tranding-slider-control.white .swiper-button-next svg, .tranding-slider-control.white .swiper-button-prev svg {
  stroke: #ffffff;
}
.tranding-slider-control.white .swiper-pagination-bullet {
  border-color: #ffffff;
}
.tranding-slider-control.white .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #ffffff;
}

.swiper-button-next, .swiper-button-prev {
  position: initial;
  width: 1.5rem;
  height: 1.2rem;
  margin-top: 0;
  margin: 0 0.5rem;
}
.swiper-button-next svg, .swiper-button-prev svg {
  width: 1.5rem;
  height: 1.2rem;
  stroke: #012830;
}
.swiper-button-next:after, .swiper-button-prev:after {
  content: none;
}

.swiper-pagination {
  position: initial;
  display: flex;
  align-items: center;
}
.swiper-pagination:not(.swiper-pagination-bullets-dynamic) {
  width: auto !important;
}
.swiper-pagination.swiper-pagination-bullets-dynamic {
  display: block;
  transform: translateX(0) !important;
  width: 120px !important;
}

.swiper-pagination-bullet {
  width: 1rem;
  height: 1rem;
  opacity: 1;
  background-color: transparent;
  border: 1px solid #012830;
  transform: scale(0.8);
  transition: background-color 0.2s cubic-bezier(0, 0.07, 0.57, 0.99), transform 0.4s cubic-bezier(0, 0.07, 0.57, 0.99);
}
.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #012830;
  transform: scale(1);
}

.swiperNewsPreview {
  width: 900px;
  max-width: 100%;
  margin-bottom: 2rem;
  overflow: visible;
}
.swiperNewsPreview .swiperNewsPreview_title {
  width: 320px;
  position: absolute;
  left: -320px;
  top: 20%;
  padding: 1rem;
}
.swiperNewsPreview .swiperNewsPreview_title .title {
  align-items: flex-end;
  text-align: right;
  font-size: 1.2rem;
}
.swiperNewsPreview .swiperNewsPreview_title .title p {
  align-items: flex-end;
}
.swiperNewsPreview .swiperNewsPreview_title .title strong {
  font-size: 1.7rem;
}
.swiperNewsPreview .tranding-slider-control {
  justify-content: center;
}

.keyNumbers {
  width: 100%;
}

.swiperKeyNumbers:not(.swiper-initialized) {
  overflow: visible;
  width: 1200px;
  max-width: 100%;
}
.swiperKeyNumbers:not(.swiper-initialized) .swiper-wrapper {
  justify-content: space-between;
}
.swiperKeyNumbers .swiper-slide {
  height: 240px;
}

.swiperSolutionsPreview.swiper-initialized {
  padding-bottom: 3rem;
}
.swiperSolutionsPreview.swiper-initialized.few-slides {
  padding-bottom: 0;
}
.swiperSolutionsPreview .swiper-slide {
  padding: 1rem 2rem;
}

.swiperLogos {
  overflow: visible;
  width: 1400px;
  max-width: 100%;
  margin: 0 auto;
}
.swiperLogos .swiper-wrapper {
  transition-timing-function: linear !important;
}
.swiperLogos .swiper-slide {
  padding: 1rem;
  width: 160px;
  height: 160px;
}
.swiperLogos .swiper-slide div {
  background-color: #f2f2f2;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  border-radius: 50%;
  padding: 1.5rem;
  width: 100%;
  height: 100%;
}
.swiperLogos .swiper-slide picture {
  height: auto;
}
.swiperLogos .swiper-slide picture img {
  mix-blend-mode: multiply;
}

.swiperPictos {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
}
.swiperPictos .swiper-slide {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  text-align: center;
  padding: 1rem;
}
.swiperPictos h3 {
  font-size: 1.2rem;
  font-weight: 500;
  color: #009ebd;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}
.swiperPictos picture {
  width: 100%;
  height: auto;
}
.swiperPictos picture img {
  width: 200px;
}

.swiperIntervention {
  width: 1200px;
  max-width: 100%;
  overflow: visible;
  margin-left: 0;
}
.swiperIntervention .tranding-slider-control {
  justify-content: flex-end;
}

.swiperProblematiques {
  width: 900px;
  max-width: 100%;
  overflow: visible;
  margin-left: 0;
}
.swiperProblematiques .tranding-slider-control {
  justify-content: flex-end;
}

.swiperModels {
  width: 100%;
  margin-top: 2rem;
}
.swiperModels .swiper-slide {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  text-align: center;
  gap: 0.5rem;
  padding: 0 0.5rem;
}

.swiperProductsPreview {
  width: 100%;
}
.swiperProductsPreview .apercuProduits_card_slide {
  padding: 0 1rem;
}
.swiperProductsPreview .apercuProduits_card {
  margin: 0;
  width: 100%;
  height: 100%;
}

.swiperProductProposal {
  width: 900px;
  max-width: 100%;
  overflow: visible;
}

.swiperActions {
  width: 100%;
}

footer {
  padding: 5rem 5%;
  background-color: #012830;
}
footer .mainFooter {
  padding: 2rem 5%;
  border-radius: 5rem;
  gap: 1rem;
  background-color: #143f4d;
  justify-content: space-between;
  color: #ffffff;
}

.logoFooter {
  width: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
}
.logoFooter a {
  display: block;
  width: 100%;
}

.footerConseil, .footerAdress, .footerLinks {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: 0.5rem;
  text-transform: uppercase;
}
.footerConseil strong, .footerAdress strong, .footerLinks strong {
  font-weight: bold;
}

.footerLinks {
  margin-left: auto;
}
.footerLinks .btn {
  width: 100%;
  color: #012830;
}
.footerLinks .btn:hover {
  color: #ffffff;
}

.mentionsContainer {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 1rem;
  color: #ffffff;
}
.mentionsContainer > p, .mentionsContainer > span, .mentionsContainer > a, .mentionsContainer > button {
  margin: 0.25rem 0.5rem;
  font-size: 0.9rem;
}
.mentionsContainer > button {
  cursor: pointer;
  padding: 0;
  border: none;
  outline: none;
  background-color: transparent;
  color: #ffffff;
}

body.page-mentions header {
  background-color: rgba(20, 63, 77, 0.95);
}
body.page-mentions #cmplz-document {
  max-width: 100%;
  width: 1200px;
}

#cmplz-manage-consent .cmplz-manage-consent {
  display: none;
}

.mentions {
  padding-top: 10rem;
  padding-bottom: 3rem;
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
}
.mentions .title {
  margin-bottom: 2rem;
}
.mentions > div {
  width: 1200px;
  max-width: 100%;
  margin: 3rem auto 0 auto;
}
.mentions p {
  margin: 0.75rem 0;
}
.mentions a {
  text-decoration: underline;
  word-wrap: break-word;
}
.mentions h2 {
  font-size: 1.5rem;
  font-weight: 500;
  margin: 1rem 0;
}
.mentions h3 {
  font-size: 1.3rem;
  font-weight: 500;
  margin: 1rem 0;
}
.mentions h4 {
  font-size: 1.1rem;
  font-weight: 500;
  margin: 1rem 0;
}
.mentions ul, .mentions ol {
  margin: 1rem 0;
  list-style: disc;
  padding-left: 2rem;
}
.mentions ul li, .mentions ol li {
  margin: 0.75rem 0;
}
.mentions ul li a, .mentions ol li a {
  text-decoration: underline;
  word-wrap: break-word;
}

.notFoundPage {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  padding-top: 12rem;
}

.notFoundPage_content {
  text-align: center;
}

.notFoundPage_code {
  font-family: "flood-std", sans-serif;
  font-size: clamp(5rem, 16vw, 12rem);
  line-height: 0.8;
  color: #99c555;
  margin-bottom: 2rem;
}

.notFoundPage_links {
  justify-content: center;
  margin-top: 1rem;
}

.notFoundPage_suggestions {
  margin-top: 4rem;
}

.notFoundPage_cards {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}
.notFoundPage_cards a {
  width: calc(33.333% - 1rem);
  min-width: 240px;
  padding: 1.5rem;
  border-radius: 1rem;
  background-color: #143f4d;
  color: #ffffff;
  text-decoration: none;
  transition: background-color 0.3s cubic-bezier(0, 0.07, 0.57, 0.99);
}
.notFoundPage_cards a span {
  display: block;
  color: #99c555;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.notFoundPage_cards a p {
  line-height: 1.3;
}
.notFoundPage_cards a:hover {
  background-color: #009ebd;
}
.notFoundPage_cards a:hover span {
  color: #ffffff;
}

@media (max-width: 1599px) {
  .packagingAndDroplet .packagingAndDroplet_package {
    height: 240px;
  }
  .packagingAndDroplet .packagingAndDroplet_package picture {
    height: 100%;
  }
  .packagingAndDroplet picture {
    height: 450px;
  }
}
@media (max-width: 1500px) {
  .mega-section-parent {
    padding: 2rem;
  }
  .mega-section .parentTitle {
    font-size: 0.9rem;
  }
  .mega-child a {
    padding: 0.15rem 1rem 0.15rem 1.5rem;
    font-size: 0.85rem;
  }
  .mega-child a:before {
    width: 12px;
    height: 12px;
    left: 0.25rem;
    top: 5px;
  }
  .swiperNewsPreview {
    width: 800px;
  }
  .apercuProduits_card {
    width: calc(50% - 2rem);
    margin: 1rem;
  }
}
@media (max-width: 1400px) {
  .header_right {
    font-size: 1rem;
  }
  .topLinks a {
    font-size: 0.9rem;
  }
  .title {
    font-size: 1.8rem;
  }
  .title strong {
    font-size: 2.2rem;
  }
  .heroHomeContent {
    top: 30%;
  }
  .heroHomeTitle h1 {
    font-size: 1.8rem;
  }
  .heroHomeTitle h1 strong {
    font-size: 2rem;
  }
  .heroHomeTitle h1 em {
    font-size: 1.1rem;
    margin-top: -20px;
  }
  .dropWaterLine {
    width: 370px;
    height: 430px;
    top: calc(50% - 270px);
  }
  .dropWaterShape {
    width: 370px;
    height: 430px;
    top: calc(50% - 270px);
  }
  .homeHeroLinks {
    margin-top: 22vh;
  }
  .linkToMainPages_wrapper .title {
    font-size: 1.4rem;
  }
  .linkToMainPages_wrapper .title strong {
    font-size: 1.8rem;
  }
  .swiperSolutionsPreview .swiper-slide {
    padding: 1rem;
  }
  .swiperNewsPreview {
    width: 470px;
  }
  .swiperPictos picture img {
    width: 150px;
  }
  .quote {
    text-align: center;
    margin: 3rem auto 0 auto;
  }
  .quote .quoteContent {
    font-size: 1.4rem;
  }
  .quote .quoteContent:before {
    top: -14px;
    left: 0;
    height: 34px;
    width: 43px;
  }
  .heroContent {
    padding: 0;
  }
  .heroPackage {
    right: 5%;
    width: 420px;
  }
  .productSpec_intro,
  .productSpec_row {
    padding-left: 3vw;
    padding-right: 3vw;
  }
  .packagingAndDroplet .packagingAndDroplet_package {
    height: 220px;
  }
  .packagingAndDroplet .packagingAndDroplet_package picture {
    height: 100%;
  }
  .packagingAndDroplet picture {
    height: 400px;
  }
  .switch_header {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    width: 100%;
  }
  .switch_title {
    width: 100%;
  }
  .switch_title:before {
    content: "";
    display: inline-block;
    width: 1rem;
    height: 1rem;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9IiNmZmZmZmYiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIiBjbGFzcz0ibHVjaWRlIGx1Y2lkZS1jaGV2cm9uLXJpZ2h0LWljb24gbHVjaWRlLWNoZXZyb24tcmlnaHQiPjxwYXRoIGQ9Im05IDE4IDYtNi02LTYiLz48L3N2Zz4=");
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 0.75rem;
    margin-bottom: -3px;
  }
  .switch_title.active:before {
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9IiMwMTI4MzAiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIiBjbGFzcz0ibHVjaWRlIGx1Y2lkZS1jaGV2cm9uLXJpZ2h0LWljb24gbHVjaWRlLWNoZXZyb24tcmlnaHQiPjxwYXRoIGQ9Im05IDE4IDYtNi02LTYiLz48L3N2Zz4=");
  }
  .swiperIntervention {
    overflow: hidden;
  }
  .postList_row {
    gap: 2rem 0;
  }
  .postList_row .postBlock {
    width: 33.333%;
  }
}
@media (max-width: 1300px) {
  .logo {
    width: 190px;
  }
  .mega-section-parent {
    padding: 1.5rem;
  }
  .mega-child a {
    padding: 0.15rem 0;
    font-size: 0.85rem;
  }
  .mega-child a:before {
    content: none;
  }
  body.menuOpen .mega-child a {
    padding: 0.15rem 1rem 0.15rem 1.5rem;
    font-size: 0.85rem;
  }
  body.menuOpen .mega-child a:before {
    content: "";
  }
  .linkToMainPages {
    margin-top: -17rem;
  }
  .pbObservation_visual picture {
    height: 400px;
  }
  .swiperModels_visual {
    height: 140px;
  }
}
@media (max-width: 1200px) {
  .logo {
    width: 180px;
    z-index: 10;
  }
  .btnMenu {
    transform: translate(0, 0);
  }
  body:not(.menuOpen) .header_right {
    height: 0;
    width: 0;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    pointer-events: none;
  }
  body.menuOpen .header_right {
    pointer-events: auto;
    width: 100%;
  }
  body.menuOpen nav {
    padding: 10rem 5% 3rem 5%;
  }
  body.menuOpen .menu-item {
    transform: translate(0, 0);
    flex-direction: column;
  }
  body.menuOpen .menu-item > a:before, body.menuOpen .menu-item > a:after {
    content: none;
  }
  body.menuOpen .mega-parent.mega-nos-solutions .mega-section-parent {
    padding-left: 2rem;
  }
  body.menuOpen .mega-section-parent {
    padding-left: 2rem;
  }
  body.menuOpen .mega-section {
    margin: 0.5rem 0;
  }
  body.menuOpen .mega-section .parentTitle {
    font-size: 1.1rem;
  }
  body.menuOpen .megaRealLink {
    margin-top: 1rem;
    margin-bottom: 0.5rem;
  }
  body.menuOpen .mega-child a {
    padding: 0.35rem 1rem 0.35rem 1.5rem;
    font-size: 1rem;
  }
  body.menuOpen .mega-child a:before {
    top: 10px;
  }
  .heroHomeVisual {
    position: absolute;
    width: 100%;
    height: 100%;
  }
  .heroHomeVisual picture {
    width: 100%;
    height: 100%;
  }
  .heroHomeVisual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }
  .heroHomeContent {
    position: relative;
    padding-top: 19rem;
    padding-bottom: 20vw;
  }
  .heroHomeContent_text {
    margin-top: 3rem;
    padding: 0 calc(3% + 1rem);
  }
  .linkToMainPages {
    margin-top: -10rem;
  }
  .linkToMainPages_wrapper {
    min-height: 430px;
  }
  .swiperKeyNumbers .swiper-slide {
    height: 210px;
  }
  .keyNumber {
    width: 210px;
    height: 210px;
    padding: 3.5rem 1.5rem 1.5rem 1.5rem;
  }
  .numberFlowContainer {
    font-size: 1.8rem;
  }
  .solutionsPreviewCard > div {
    height: 350px;
    width: 100%;
  }
  .themeProblematique_list {
    margin-top: 1rem;
    padding-left: 0;
  }
  .swiperIntervention_visual {
    width: 340px;
    max-width: calc(45% - 2rem);
  }
  .swiperIntervention_content {
    width: calc(100% - 340px - 2rem);
  }
  .apercuProduits_card {
    padding: 1.5rem;
  }
  .apercuProduits_card picture {
    width: 170px;
  }
  .apercuProduits_card_content {
    margin-left: 1.5rem;
    width: calc(100% - 170px - 1.5rem);
  }
  .productSpec.marginSet .productSpec_visual {
    padding-top: 2rem;
  }
  .packagingAndDroplet .packagingAndDroplet_package {
    height: 150px;
  }
  .packagingAndDroplet picture {
    height: 320px;
  }
  .productTable {
    font-size: 0.9rem;
  }
  .switch_content {
    width: 100%;
  }
  .productSolution_row_link {
    width: 340px;
  }
  .productSolution_row_link img {
    max-width: 130px;
  }
  .swiperProductProposal {
    overflow: hidden;
    padding: 0 1rem;
  }
  .heroNews {
    padding: 8rem 5vw 12rem 5vw;
  }
  footer .mainFooter {
    gap: 0;
  }
  .logoFooter {
    width: 100%;
    align-items: flex-start;
  }
  .logoFooter a {
    width: 150px;
  }
  .mentions {
    padding-top: 6rem;
  }
}
@media (max-width: 1024px) {
  .title {
    font-size: 1.8rem;
  }
  .title strong {
    font-size: 2.2rem;
  }
  .secondTitle {
    font-size: 1.3rem;
  }
  .block {
    justify-content: flex-start;
  }
  .missionAndResults .spaceBtm {
    margin-bottom: 1rem;
  }
  .linkToMainPages {
    margin-top: -7rem;
  }
  .linkToMainPages_wrapper {
    min-height: 380px;
  }
  .swiperKeyNumbers {
    width: 240px;
  }
  .pbProductList {
    width: 100%;
  }
  .swiperIntervention_content {
    padding-top: 0;
  }
  .swiperIntervention_visual {
    height: auto;
    max-width: 100%;
  }
  .swiperIntervention_blocks div {
    width: 100%;
  }
  .swiperIntervention_blocks div ul {
    padding-left: 20px;
  }
  .page-produit .heroContent,
  .page-produit-oxylake .heroContent {
    width: 60%;
    max-width: 60%;
  }
  .heroPackage {
    width: 280px;
    height: 250px;
    max-width: 40%;
    right: 3%;
  }
  .productSpec_intro {
    padding-top: 2rem;
  }
  .productSpec_intro_content {
    margin-left: auto;
  }
}
@media (max-width: 991px) {
  .linksRow {
    width: 100%;
  }
  .hero {
    padding-top: 10rem;
    padding-bottom: 2rem;
  }
  .hero + section {
    margin-top: 0;
    padding-top: 2rem;
  }
  .hero + section .block {
    padding-top: 0;
  }
  .heroHomeTitle h1 em {
    text-shadow: 0px 0px 7px rgba(8, 42, 50, 0.8);
  }
  .dropWaterLine {
    width: 310px;
    height: 360px;
    top: calc(50% - 230px);
  }
  .dropWaterShape {
    width: 310px;
    height: 360px;
    top: calc(50% - 230px);
  }
  .linkToMainPages {
    margin-top: -6rem;
  }
  .linkToMainPages_block:not(:last-child) {
    margin-bottom: 1.5rem;
  }
  .linkToMainPages_wrapper {
    min-height: 360px;
  }
  .implantation_map {
    align-items: center;
  }
  .implantation_map picture {
    width: 300px;
  }
  .implantation_content {
    align-items: center;
    text-align: center;
  }
  .implantation_content .title {
    align-items: center;
    text-align: center;
  }
  .implantation_content .title p {
    align-items: center;
    text-align: center;
  }
  .implantation_content .text p {
    text-align: center;
    margin: 0.75rem auto;
  }
  .newsPreview {
    margin-top: 3rem;
    background-color: #012830;
  }
  .newsPreview:before {
    content: none;
  }
  .newsPreview .hiddenSwiperNewsTitle {
    display: flex;
    margin-bottom: 2rem;
  }
  .swiperNewsPreview {
    width: 100%;
    overflow: hidden;
  }
  .swiperNewsPreview .swiperNewsPreview_title {
    display: none;
  }
  .missionTaso .missionTaso_visual {
    order: 2;
    margin-top: 2rem;
  }
  .missionTaso .missionTaso_content {
    order: 1;
  }
  .notreApproche {
    padding-bottom: 3rem;
  }
  .notreApproche_cta {
    position: initial;
    padding: 0 1rem;
    margin-top: 1.5rem;
  }
  .quote {
    margin: 0 auto;
  }
  .quote .quoteContent {
    font-size: 1.2rem;
  }
  .quote .quoteContent::before {
    content: none;
  }
  .expertiseTaso_visual,
  .beneficesClient_visual,
  .themeProblematique_visual,
  .productSpec_visual {
    margin-bottom: 2rem;
  }
  .missionTaso_visual {
    height: 400px;
  }
  .themesProblematique.reverse .row {
    flex-direction: row;
  }
  .themesProblematique.overlayIt {
    margin-top: 0;
    padding-top: 4rem;
  }
  .themeProblematique_list {
    padding-left: 0;
  }
  .themeProblematique_visual {
    height: 360px;
  }
  .themeProblematique_content {
    margin-top: 0;
  }
  .pbObservation .grid {
    grid-template-columns: 100%;
    grid-template-rows: repeat(3, auto);
    gap: 1rem;
  }
  .pbObservation_visual {
    grid-area: 2/1/3/2;
  }
  .pbObservation_content.first {
    grid-area: 1/1/2/2;
    padding-top: 0;
  }
  .pbObservation_content.second {
    grid-area: 3/1/4/2;
  }
  .pbAction_content {
    order: 1;
  }
  .pbAction_visual {
    order: 2;
    margin-top: 2rem;
  }
  .page-problematique .reponseTaso_content {
    order: 0;
  }
  .swiperIntervention_blocks div {
    width: 100%;
  }
  .desequilibreTaso .missionTaso_visual {
    padding-right: 1rem;
    order: 2;
  }
  .desequilibreTaso .missionTaso_visual .videoPlayer {
    right: calc(50% - 2.5rem);
  }
  .desequilibreTaso .missionTaso_content {
    order: 1;
  }
  .reponseTaso_content {
    order: 1;
  }
  .reponseTaso_visual {
    order: 2;
    margin-top: 2rem;
  }
  .reponseTaso + .productSolutionIntro {
    padding-top: 0;
  }
  .fancybox__dialog {
    width: 100vw !important;
    max-width: 100vw !important;
    min-width: 0 !important;
    left: 0;
    right: auto;
  }
  .fancybox__container,
  .fancybox__carousel,
  .fancybox__viewport,
  .fancybox__slide {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }
  .fancybox__slide.has-html5video {
    padding: 4.5rem 1rem 1rem 1rem;
  }
  .fancybox__slide.has-html5video .f-html {
    width: calc(100vw - 2rem) !important;
    max-width: calc(100vw - 2rem) !important;
    min-width: 0 !important;
    height: auto !important;
    max-height: none !important;
    aspect-ratio: 16/9;
    border-radius: 1rem;
  }
  .fancybox__slide.has-html5video .f-button.is-close-button {
    top: -2.5rem;
  }
}
@media (max-width: 991px) and (orientation: landscape) and (max-height: 580px) {
  .fancybox__slide.has-html5video .f-html {
    width: auto !important;
    height: calc(100vh - 6rem) !important;
    max-width: calc((100vh - 6rem) * 16 / 9) !important;
  }
}
@media (max-width: 991px) {
  @supports (height: 100dvh) {
    @media (max-width: 991px) and (orientation: landscape) and (max-height: 580px) {
      .fancybox__slide.has-html5video .f-html {
        height: calc(100dvh - 6rem) !important;
        max-width: calc((100dvh - 6rem) * 16 / 9) !important;
      }
    }
  }
  .beneficesClient_content {
    padding-bottom: 0;
  }
  .questionsClient {
    margin-top: 0;
    padding-top: 3rem;
  }
  .productPresVisual {
    margin-top: 2rem;
    height: 400px;
  }
  .productPresVisual .commonFollowContent {
    height: 100%;
  }
  .productPresVisual .rounded {
    height: 100%;
  }
  .packagingAndDroplet .packagingAndDroplet_package {
    height: 100px;
  }
  .packagingAndDroplet picture {
    height: 210px;
  }
  .packagingAndDroplet .flyingCtaContainer {
    font-size: 0.9rem;
    margin-top: 2rem;
  }
  .apercuProduits_groups {
    gap: 3rem;
  }
  .apercuProduits_card {
    width: 100%;
    margin: 1rem 0;
  }
  .productPres {
    padding-top: 4rem;
  }
  .productSpec_row {
    padding-top: 2rem;
  }
  .productSpec_visual > div {
    height: auto;
  }
  .page-contact .heroContent,
  .page-distributeur .heroContent {
    max-width: 100%;
  }
  .heroContact {
    max-width: 100%;
    margin: 2rem 0 0 0;
    padding: 0 1rem;
    background: transparent;
  }
  .distributeur_title_filter {
    order: 1;
  }
  .distributeurList {
    width: 100%;
    height: auto;
    overflow-y: initial;
    overflow-x: scroll;
    order: 3;
  }
  .distributeurList__items {
    flex-direction: row;
    align-items: stretch;
    width: fit-content;
  }
  .distributeurItem {
    width: 300px;
    font-size: 1rem;
  }
  .mabBoxContainer {
    width: 100%;
    height: 500px;
    order: 2;
  }
  .mapBoxCta {
    order: 4;
  }
  .faqContainer_item_ask .title {
    font-size: 1.2rem;
  }
  .wpcf7-form label, .wpcf7-form [data-name=departement], .wpcf7-form [data-name=commune], .wpcf7-form [data-name=structure], .wpcf7-form [data-name=productList], .wpcf7-form .legend {
    width: 100%;
    margin: 0.75rem 0;
  }
  .wpcf7-form [data-name=problematique] {
    width: 100%;
    margin: 0 0 0.75rem 0;
  }
  .wpcf7-form .wpcf7-radio .wpcf7-list-item, .wpcf7-form .wpcf7-checkbox .wpcf7-list-item {
    width: 100%;
  }
  .wpcf7-form .wpcf7-radio .wpcf7-list-item .wpcf7-list-item-label, .wpcf7-form .wpcf7-checkbox .wpcf7-list-item .wpcf7-list-item-label {
    width: 100%;
  }
  .wpcf7-form .selectize-control .selectize-input.disabled input {
    font-size: 0.8rem;
  }
  .rappelModal .wpcf7 .wpcf7-radio, .rappelModal .wpcf7 .wpcf7-checkbox {
    flex-wrap: nowrap;
  }
  .postList_row .postBlock {
    width: 50%;
  }
}
@media (max-width: 820px) {
  .text p,
  .text ul,
  .text ol {
    width: 100%;
  }
  .keyNumber {
    width: 210px;
    height: 210px;
    padding: 3rem 1.5rem 1.5rem 1.5rem;
  }
  .numberFlowContainer {
    font-size: 1.7rem;
  }
  .page-produit .hero,
  .page-produit-oxylake .hero {
    padding-bottom: 8rem;
  }
  .page-produit .heroContent,
  .page-produit-oxylake .heroContent {
    width: 100%;
    max-width: 100%;
  }
  .heroPackage {
    right: 5%;
    bottom: -5rem;
    width: 280px;
    height: 200px;
  }
  .heroPackage.heroPackageCalix {
    bottom: -3rem;
  }
  .productTable {
    align-items: flex-start;
    overflow-x: auto;
    width: 100%;
  }
  .productTable_row {
    min-width: 420px;
    gap: 0;
  }
  .productTable_row .productTable_cell {
    padding: 0.5rem;
    border-radius: 1rem;
  }
}
@media (max-width: 767px) {
  .topLinks {
    display: none;
  }
  body.menuOpen .topLinks {
    display: none;
  }
  .menu-item.mobilOnly {
    display: flex;
  }
  section {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  .darkBg + .darkBg {
    padding-top: 0;
  }
  .spaceBtm {
    margin-bottom: 2rem;
  }
  .spaceTop {
    margin-top: 2rem;
  }
  .title {
    font-size: 1.5rem;
  }
  .title strong {
    font-size: 1.8rem;
  }
  .heroContent {
    padding: 0 1rem;
  }
  .heroHomeContent_text {
    margin-top: 12vh;
  }
  .homeHeroLinks {
    gap: 0.75rem;
    margin-top: 5rem;
  }
  .linkToMainPages_wrapper {
    min-height: 320px;
    padding: 1.5rem;
  }
  .newsPreview {
    margin-top: 0;
  }
  .classicSolutions {
    padding-top: 0;
  }
  .notreApproche {
    padding-top: 0;
  }
  .themesProblematique {
    padding-bottom: 3rem;
  }
  .pbAction_visual,
  .themeProblematique_visual {
    height: 300px;
  }
  .pbObservation_visual {
    height: 300px;
  }
  .pbObservation_visual picture {
    height: 100%;
  }
  .pbProductSolution {
    padding-bottom: 0;
  }
  .pbAction {
    margin-top: 0;
  }
  .apercuProduits_group_title {
    margin-bottom: 1rem;
  }
  .apercuProduits_group_title strong {
    font-size: 1.45rem;
  }
  .apercuProduits_card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1rem 1.25rem 1rem;
  }
  .apercuProduits_card picture {
    width: 190px;
    height: 130px;
  }
  .apercuProduits_card_content {
    width: 100%;
    margin-left: 0;
    margin-top: 1rem;
    align-items: center;
  }
  .page-produit .hero, .page-produit-oxylake .hero {
    padding-bottom: 2rem;
  }
  .page-produit .heroContent .btn, .page-produit-oxylake .heroContent .btn {
    position: initial;
  }
  .heroPackage {
    display: none;
  }
  .productSpec_intro,
  .productSpec_row {
    flex-wrap: wrap;
  }
  .productSpec_row {
    margin-top: 0;
  }
  .productSpec_intro {
    padding-top: 1rem;
  }
  .productSpec_visual {
    order: 2;
    margin-top: 2rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .productSpec_content {
    order: 1;
  }
  .packagingAndDroplet .packagingAndDroplet_package {
    height: 220px;
  }
  .interventions .col-12 {
    align-items: flex-start;
  }
  .interventions .secondTitle {
    align-items: flex-start;
    text-align: left;
  }
  .swiperIntervention {
    padding: 0 1rem;
  }
  .swiperIntervention .tranding-slider-control {
    justify-content: flex-start;
  }
  .swiperIntervention_visual {
    height: 300px;
    width: 100%;
    order: 2;
  }
  .swiperIntervention_content {
    width: 100%;
    order: 1;
  }
  .expertiseTaso + .productsPreview {
    padding-top: 0;
  }
  .productsPreview + .clientList {
    padding-top: 0;
  }
  .bandeauCta {
    margin-top: 0;
  }
  .swiperProductProposal_slide_products {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }
  .productSolution_row_link {
    width: 100%;
    max-width: 100%;
  }
  .classicSolutions_content .text ul {
    padding-left: 0;
  }
  .productSolutionIntro {
    padding-bottom: 7rem;
  }
  .productSolution {
    margin-top: -7rem;
  }
  .faqContainer_item_ask {
    padding: 1rem 2.5rem 1rem 1.5rem;
    border-radius: 1rem;
  }
  .faqContainer_item_icon {
    width: 2rem;
    height: 2rem;
    top: calc(50% - 1rem);
  }
  .faqContainer_item_response > div {
    padding: 1rem;
    border-radius: 1rem;
    margin: 1rem 0;
  }
  .distributeur_title_filter {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .distributeur_title_filter .title {
    margin-bottom: 1.5rem;
  }
  .distributeurFilter--skeleton {
    margin-left: 0;
  }
  footer {
    padding: 3rem 5%;
  }
  footer .mainFooter {
    gap: 2rem 0;
    border-radius: 1rem;
  }
  .logoFooter {
    align-items: center;
  }
  .footerConseil, .footerAdress, .footerLinks {
    width: 100%;
    align-items: center;
    text-align: center;
  }
  .mentionsContainer {
    gap: 1rem;
    justify-content: center;
    text-align: center;
  }
  .mentionsContainer > p, .mentionsContainer > span, .mentionsContainer > a {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .btn {
    text-align: center;
  }
  .linksRow {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }
  .linksRow .btn {
    width: 100%;
  }
  .linksRow .btn:not(:last-child) {
    margin-right: 0;
  }
  .oxylakeVariants {
    padding-bottom: 0;
  }
  .oxylakeVariants .spaceTop {
    margin-top: 0;
  }
  .oxylakeVariants + .productPres {
    padding-top: 2rem;
  }
  .oxylakeVariants_switch_header {
    align-items: stretch;
    flex-direction: column;
    width: 100%;
  }
  .oxylakeVariants_switch_item:after {
    content: none;
  }
  .oxylakeVariants_switch_btn {
    width: 100%;
    text-align: center;
  }
  .postList_row {
    gap: 1rem 0;
  }
  .postList_row .postBlock {
    width: 100%;
  }
}
@media (max-width: 580px) {
  .title {
    font-size: 1.4rem;
  }
  .title strong {
    font-size: 1.65rem;
  }
  .title em {
    font-size: 1rem;
  }
  .secondTitle {
    font-size: 1.15rem;
  }
  .text {
    margin: 1rem 0;
  }
  .text ul,
  .text ol {
    padding-left: 1.25rem;
  }
  body.menuOpen .mega-parent.mega-nos-solutions .mega-section-parent {
    padding-left: 0;
  }
  body.menuOpen .mega-section-parent {
    padding-left: 0;
  }
  body.menuOpen .menu-item > a {
    width: 100%;
  }
  body.menuOpen .menu-item > a .menu-item-icon:before {
    top: 12px;
  }
  .rappelModal .rappelContainer {
    padding: 4rem 1.5rem 2rem 1.5rem;
  }
  .rappelModal .rappelContainer .wpcf7 {
    margin: 0 auto;
  }
  .heroHomeContent {
    padding-top: 15rem;
    padding-left: calc(3% + 1rem);
    padding-right: calc(3% + 1rem);
  }
  .dropWaterShape,
  .dropWaterLine {
    width: 280px;
    height: 320px;
    top: calc(50% - 190px);
  }
  .heroHomeTitle h1 {
    font-size: 1.3rem;
    text-wrap: balance;
  }
  .heroHomeTitle h1 strong {
    font-size: 1.7rem;
  }
  .heroHomeTitle h1 em {
    font-size: 0.9rem;
  }
  .homeHeroLinks {
    flex-direction: column;
    width: 100%;
    margin-top: 6.5rem;
  }
  .homeHeroLinks .btn {
    width: 100%;
    text-align: center;
  }
  .linkToMainPages {
    margin-top: -5rem;
    padding-left: 0;
    padding-right: 0;
  }
  .linkToMainPages_wrapper {
    border-radius: 1rem;
  }
  .missionTaso_visual, .productPresVisual {
    height: 300px;
  }
  .rentable .text p br {
    display: none;
  }
  .faqContainer_item_ask .title,
  .faqContainer_item_ask .fullWhite {
    font-size: 1rem;
    line-height: 1.2;
  }
  .swiperActions_slide {
    padding: 1rem;
  }
  .swiperActions_content {
    padding: 2rem 1rem 1rem 1rem;
  }
  .swiperActions_content h3 {
    font-size: 1.1rem;
  }
  .swiperIntervention_blocks div ul {
    padding-left: 1.25rem;
  }
  .swiperIntervention_blocks div strong {
    padding-left: 28px;
  }
  .productPres_content ul {
    padding-left: 0;
  }
  .productPres_content ul li {
    padding-left: 1.5rem;
  }
  .productPres_content ul li:before {
    content: counter(li) ".";
    width: 1.2rem;
    height: 1.2rem;
    border-radius: 0;
    background-color: transparent;
    color: #012830;
    font-size: 1rem;
    left: 0;
    top: 0;
  }
  .productPres_content .ctaBox {
    margin-top: 2rem;
  }
  .productSolution_row_link {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .productSolution_row_link img {
    max-width: 170px;
    max-height: 130px;
  }
  .productSolution_row_link div {
    width: 100%;
    max-width: 100%;
    align-items: center;
  }
}
@media (max-width: 420px) {
  section {
    padding-top: 2.5rem;
  }
  .hero + section {
    padding-top: 2.5rem;
  }
  .btn {
    width: 100%;
    line-height: 1.3;
    text-wrap: balance;
  }
  .ctaBox p {
    text-align: center;
  }
  .missionTaso_visual, .productPresVisual {
    height: 250px;
  }
  .logo {
    width: 160px;
  }
  body.menuOpen nav {
    padding: 6rem 5% 3rem 5%;
  }
  body.menuOpen .menu {
    gap: 1.2rem 0;
  }
  body.menuOpen .megaRealLink a {
    width: 100%;
  }
  body.menuOpen .menu-item > a {
    width: 100%;
    font-size: 1.3rem;
  }
  body.menuOpen .menu-item > a .menu-item-icon {
    padding: 0.35rem 1rem 0.35rem 2rem;
  }
  body.menuOpen .menu-item > a .menu-item-icon:before {
    left: 0;
    top: 9.5px;
  }
  body.menuOpen .mega-parent.mega-nos-solutions .mega-child a {
    border-radius: 0.5rem;
  }
  body.menuOpen .mega-section .parentTitle {
    font-size: 1rem;
  }
  .linkToMainPages_wrapper {
    min-height: 300px;
    padding: 1.25rem;
  }
  .keyNumber {
    width: 190px;
    height: 190px;
    padding: 2.6rem 1.25rem 1.25rem 1.25rem;
  }
  .pbObservation_visual,
  .pbAction_visual,
  .themeProblematique_visual {
    height: 250px;
  }
  .apercuProduits_card picture {
    width: 160px;
    height: 115px;
  }
  .desequilibreTaso .missionTaso_visual .videoPlayer {
    right: calc(50% - 2rem);
  }
  .swiperProductProposal {
    padding: 0;
  }
  .swiperProductProposal_slide {
    padding: 1rem;
    border-radius: 1rem;
  }
  .productSolution_row_link span {
    width: 100%;
  }
  .classicSolutions_content ul li {
    padding-left: 1.5rem;
  }
  .classicSolutions_content ul li:before {
    content: counter(li) ".";
    width: 1.2rem;
    height: 1.2rem;
    border-radius: 0;
    background-color: transparent;
    color: #012830;
    font-size: 1rem;
    left: 0;
    top: 0;
  }
  .distributeurFilter {
    max-width: 100%;
  }
  .distributeurFilter .selectize-control {
    width: 330px;
    max-width: 100%;
  }
  .distributeurList {
    display: none;
  }
  .distributeurItem {
    width: 230px;
    font-size: 0.9rem;
  }
  .distributeurItem br {
    display: none;
  }
  .distributeurItem__logo {
    max-width: 100px;
    height: 60px;
    padding: 0.25rem;
  }
  .distributeurItem__name {
    font-size: 1rem;
  }
  .mapBoxCta {
    position: inherit;
  }
  .taso-popup {
    font-size: 0.9rem;
  }
  .popupLogo {
    width: 60px;
  }
  .taso-popup__title {
    font-size: 1rem;
  }
  .rappelModal .closeModal {
    width: 40px;
    height: 40px;
    padding: 0.5rem;
    border-radius: 10px;
  }
  .mentions {
    padding-top: 5rem;
  }
  .mentions h2 {
    font-size: 1.1rem;
  }
  .mentions h3 {
    font-size: 1rem;
  }
  .mentions h4 {
    font-size: 1rem;
  }
}
@media (max-width: 380px) {
  .btn {
    width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .title {
    font-size: 1.3rem;
  }
  .title strong {
    font-size: 1.5rem;
  }
  .dropWaterShape,
  .dropWaterLine {
    width: 280px;
    height: 325px;
    top: calc(50% - 190px);
  }
  .productTable_row {
    min-width: 560px;
  }
}
:root {
  --botlink-primary-color:#012830;
  --botlink-secondary-color:#012830;
}

body.singleBotlink header, body.pageBotlink header {
  background-color: rgba(20, 63, 77, 0.95);
}

.content-area, .article-main {
  padding-top: 10rem;
}

.article-main aside:has(.stickyPanel) .stickyPanel > div {
  background-color: #009ebd;
  color: #ffffff;
}
.article-main aside:has(.stickyPanel) .stickyPanel p, .article-main aside:has(.stickyPanel) .stickyPanel a {
  color: #ffffff;
}
.article-main aside:has(.stickyPanel) .stickyPanel path, .article-main aside:has(.stickyPanel) .stickyPanel circle {
  stroke: #ffffff;
}
.article-main article .encart-contact a.btn:hover {
  background-color: #009ebd;
  color: #ffffff;
}
.article-main article footer {
  padding: 0;
}

@media (max-width: 980px) {
  .content-area, .article-main {
    padding-top: 6rem;
  }
  .article-main .anchor-container {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
  .article-main .anchor-container a, .article-main .anchor-container p {
    color: #ffffff;
    width: 100%;
  }
  .article-main .anchor-container a svg path, .article-main .anchor-container a svg circle, .article-main .anchor-container p svg path, .article-main .anchor-container p svg circle {
    stroke: #ffffff;
  }
  .article-main article h1 {
    font-size: 1.6rem;
  }
  .article-main article h2 {
    font-size: 1.3rem;
  }
  .article-main article h3 {
    font-size: 1.1rem;
  }
  .article-main article h4 {
    font-size: 1rem;
  }
  .article-main .otherPost a, .article-main .anchor-container a {
    margin-left: 0;
  }
}/*# sourceMappingURL=screen.css.map */