@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Karla:ital,wght@0,300;0,500;1,300;1,500&display=swap");
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
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-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

.hidden {
  visibility: hidden;
  height: 0;
  width: 0;
}

body::-webkit-scrollbar {
  width: 12px;
}

body::-webkit-scrollbar-track {
  background: #F4F4F4; /* color of the tracking area */
}

body::-webkit-scrollbar-thumb {
  background-color: #E21C24; /* color of the scroll thumb */
  border-radius: 20px; /* roundness of the scroll thumb */
  border: 3px solid #F4F4F4; /* creates padding around scroll thumb */
}

#back-to-top {
  position: fixed;
  bottom: 1.2rem;
  right: 1.2rem;
  width: 2.5rem;
  height: 2.5rem;
  background-color: #E21C24;
  color: #FFFFFF;
  text-align: center;
  line-height: 2.5rem;
  font-size: 1.2rem;
  border-radius: 50%;
  z-index: 50;
  cursor: pointer;
  text-decoration: none;
  transform: scale(1);
  opacity: 0;
  transition: all 1s ease;
}

#back-to-top:hover {
  transform: scale(1.2);
}

#back-to-top.visible {
  opacity: 1;
}

#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
#loader .loader-circle {
  position: absolute;
  border: 2px solid #F4F4F4; /* Couleur du cercle de chargement */
  border-top: 2px solid #E21C24; /* Couleur de la partie supérieure du cercle de chargement */
  border-radius: 50%;
  width: 16vw;
  height: 16vw;
  animation: spin 3s linear infinite; /* Animation du cercle de chargement */
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
#loader img {
  width: 8vw;
  height: auto;
}

#cookie-popup {
  display: none;
  position: fixed;
  width: 80vw;
  bottom: 2rem;
  padding: 20px;
  margin: 0 10vw;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  z-index: 1000;
}
#cookie-popup p {
  color: #000000;
}
#cookie-popup button {
  border-radius: 0.4rem;
}
#cookie-popup a {
  color: #919191;
}

@media (max-width: 991.98px) {
  #cookie-popup button {
    width: 80%;
    margin-right: 0;
    margin-bottom: 0.6rem;
  }
}
body header.container-fluid {
  margin-bottom: 3rem;
}
body header {
  width: 100vw;
  position: sticky;
  top: 0;
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(3px);
  z-index: 999;
  transition: opacity 0.3s ease;
}
body header nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0 10%;
  text-transform: uppercase;
}
body header nav #toggle {
  display: none;
}
body header nav ul {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  list-style: none;
}
body header nav .top {
  background-color: #E21C24;
  color: #FFFFFF;
  position: absolute;
  top: 0;
  right: 0;
  padding: 0 10%;
  box-shadow: rgba(0, 0, 0, 0.2) 5px 4px 2px 1px;
  opacity: 1;
  transition: opacity 0.3s ease;
}
body header nav .top li, body header nav .top a, body header nav .top svg {
  color: #FFFFFF;
}
body header nav .top a:hover {
  text-decoration: underline;
}
body header nav .top.visible {
  opacity: 0;
  display: none;
}
body header nav .top::before {
  content: "";
  position: absolute;
  top: 0;
  left: -1.2rem;
  width: 1.6rem;
  height: 100%;
  background-color: inherit;
  transform: skewX(15deg); /* Inclinaison oblique vers la gauche */
  transform-origin: 100% 0; /* Origine de la transformation */
}
body header nav .bottom {
  margin-top: 8vh;
  transition: margin-top 0.3s ease;
}
body header nav .bottom a {
  color: #000000;
}
body header nav .bottom a:hover {
  color: #919191;
}
body header nav a {
  text-align: center;
  padding: 1.2rem 1.8rem;
  text-decoration: none;
  display: block;
}
body header nav a.portal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  gap: 0.3rem;
  font-weight: 400;
}
body header nav a.logo {
  padding: 0;
}
body header nav a.logo img {
  width: 50%;
  transition: transform 0.3s ease;
}
body header nav a:hover {
  text-decoration: solid;
}

@media (max-width: 991.98px) {
  body header nav ul.top {
    height: 2.8rem;
  }
}
@media (max-width: 767.98px) {
  body {
    font-size: 14px;
  }
  body ul.top {
    display: none;
  }
  body header nav {
    padding: 1rem;
    /** Animations **/
  }
  body header nav a.logo {
    text-align: left;
    width: 8rem;
    z-index: 20;
    position: relative;
  }
  body header nav .hamburger {
    position: absolute;
    top: 4rem;
    right: 2rem;
    margin-left: -2rem;
    margin-top: -3rem;
    width: 2rem;
    height: 3rem;
    z-index: 5;
  }
  body header nav .hamburger div {
    position: relative;
    width: 2.5rem;
    height: 0.4rem;
    border-radius: 1rem;
    background-color: #E21C24;
    margin-top: 0.4rem;
    transition: all 0.3s ease-in-out;
  }
  body header nav .nav {
    position: fixed;
    width: 100vw;
    height: 100vh;
    background-color: #FFFFFF;
    top: -100%;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    transform: scale(0);
  }
  body header nav .nav .nav-wrapper {
    position: relative;
    overflow: hidden;
    overflow-y: auto;
    height: 100%;
    text-align: center;
    width: 100vw;
  }
  body header nav .nav .nav-wrapper ul {
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 3rem auto;
  }
  body header nav .nav .nav-wrapper ul li {
    position: relative;
    text-decoration: none;
    font-size: 2em;
    display: inline-block;
    margin-top: 1.25em;
    transition: color 0.2s ease-in-out;
    letter-spacing: 1px;
  }
  body header nav .nav .nav-wrapper ul li a.button.red {
    margin: 0;
  }
  body header nav .nav .nav-wrapper ul li:before {
    content: "";
    height: 0;
    position: absolute;
    width: 0.25em;
    background-color: white;
    left: -0.5em;
    transition: all 0.2s ease-in-out;
  }
  body header nav .nav .nav-wrapper ul li:hover {
    color: white;
  }
  body header nav .nav .nav-wrapper ul li:hover:before {
    height: 100%;
  }
  body header nav #toggle:checked + .hamburger .top-bun {
    transform: rotate(-45deg);
    margin-top: 1.4rem;
  }
  body header nav #toggle:checked + .hamburger .bottom-bun {
    opacity: 0;
    transform: rotate(45deg);
  }
  body header nav #toggle:checked + .hamburger .meat {
    transform: rotate(45deg);
    margin-top: -0.4rem;
  }
  body header nav #toggle:checked + .hamburger + .right .nav {
    top: 0;
    transform: scale(1);
  }
}
.slider-container {
  position: relative;
  overflow: hidden;
  height: 100%;
}
.slider-container .slider {
  display: flex;
  transition: transform 0.5s ease;
  height: inherit;
}
.slider-container .slider .slide {
  height: inherit;
}
.slider-container .slider .slide.container {
  margin-bottom: 0;
  flex: 0 0 100%; /* Chaque slide occupe toute la largeur du conteneur */
}
.slider-container .slider .slide img {
  width: 100%;
  height: auto;
  display: none;
}
.slider-container .slider .slide > .row {
  padding: 0 3em;
  height: inherit;
}
.slider-container .slider .slide > .row .texte p {
  padding-right: 3rem;
}
.slider-container .slider .slide > .row .texte li {
  margin-bottom: 0.4rem;
  padding-right: 3rem;
  display: flex;
}
.slider-container .slider .slide > .row .texte li:before {
  content: "•";
  color: #E21C24;
  padding-right: 0.8em;
  padding-left: 0.8em;
}
.slider-container .slider .slide > .row .image {
  height: 100%;
  background-position: center;
  background-size: cover;
}
.slider-container .slider .one .image {
  background-image: url("../../slider-1.png");
}
.slider-container .slider .two .image {
  background-image: url("../../slider-2.jpg");
}
.slider-container .slider .three .image {
  background-image: url("../../slider-3.jpg");
}
.slider-container button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #FFFFFF;
  color: #E21C24;
  border: none;
  cursor: pointer;
  font-size: 2rem;
}
.slider-container .prev-slide {
  left: 1rem;
}
.slider-container .next-slide {
  right: 1rem;
}

@media (max-width: 767.98px) {
  #what-do-we-do {
    opacity: 1;
    margin-bottom: 0;
  }
  #what-do-we-do .describe {
    margin-bottom: 3rem;
  }
  .slider-container .slider {
    display: block;
    height: auto;
  }
  .slider-container .slider .slide {
    height: inherit;
  }
  .slider-container .slider .slide.container {
    margin-bottom: 5rem;
    padding: 0;
  }
  .slider-container .slider .slide img {
    width: 100%;
    height: auto;
    display: none;
  }
  .slider-container .slider .slide > .row {
    display: flex;
    width: 100%;
    flex-direction: column-reverse;
    margin: 0;
    padding: 0;
  }
  .slider-container .slider .slide > .row .texte {
    padding: 0;
  }
  .slider-container .slider .slide > .row .texte p {
    padding-right: 0;
  }
  .slider-container .slider .slide > .row .image {
    height: 60vh;
    margin-bottom: 2rem;
    position: relative;
  }
  .slider-container .slider .slide > .row .image img {
    width: 100%;
    height: auto;
  }
  .slider-container .slider .slide > .row .transition-wrapper {
    width: 105%;
    height: 105%;
    position: absolute;
    top: -0.1rem;
    left: -0.1rem;
    transition: 1s ease-in-out;
    background-color: #FFFFFF;
    clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
    z-index: 3;
  }
  .slider-container .slider .slide > .row .transition-wrapper.show {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  .slider-container button {
    display: none;
  }
}
body footer {
  background-color: #FFFFFF;
  width: 80%;
  margin: 10% auto 0;
}
body footer i.picto.red {
  background-color: #E21C24;
  margin: 0;
  overflow: hidden;
  border-radius: 50%;
  padding: 0.7rem;
  color: #FFFFFF;
  font-weight: bold;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 2.2rem;
  width: 2.2rem;
}
body footer a, body footer p {
  text-decoration: none;
  color: #000000;
  font-size: 1.2rem;
}
body footer a:hover {
  color: #919191;
}
body footer .form {
  display: flex;
  justify-content: flex-end;
}
body footer .form form {
  width: 100%;
}
body footer .form form input[type=text],
body footer .form form textarea {
  background-color: #F4F4F4;
  padding: 0.8rem;
  margin-top: 0.3rem;
  border-radius: 1.2rem;
  border: none;
  margin: 1em auto;
}
body footer .form form input:focus, body footer .form form textarea:focus {
  border: none;
  outline: none;
  box-shadow: inset 0px 0px 6px 1px #E21C24;
}
body footer .form form input[type=submit] {
  margin-top: 0.3rem;
  padding: 0.6rem 1.4rem;
  color: #FFFFFF;
  background-color: #E21C24;
  font-weight: 500;
  text-transform: uppercase;
  border: 0;
  border-radius: 1.2rem;
  margin-right: 1.2rem;
  text-decoration: none;
}
body footer .form form .hidden {
  display: none;
}
body footer .form form #captcha {
  display: flex;
}
body footer .form form #captcha input {
  width: 45%;
}
body footer .terms ul {
  display: flex;
  align-items: flex-end;
}
body footer .terms ul li {
  margin-right: 2rem;
  font-size: 1rem;
}
body footer .terms ul li a {
  font-size: 1rem;
}
body footer .terms .pictos ul {
  justify-content: end;
}
body footer .terms .pictos ul li {
  margin-right: 0;
  margin-left: 2rem;
}
body footer .terms .pictos ul li i {
  color: #E21C24;
  transform: scale(1);
  transition: transform 1s ease;
}
body footer .terms .pictos ul li i:hover {
  transform: scale(1.2);
}
body footer.animation {
  opacity: 0;
  transform: scale(0.85);
  transition: all 1s ease;
}

@media (max-width: 991.98px) {
  body {
    font-size: 14px;
  }
  body footer {
    width: 100%;
  }
  body footer i.picto.red {
    width: 1.8rem;
    height: 1.8rem;
  }
  body footer .terms ul {
    align-items: center;
    justify-content: space-around;
  }
  body footer .terms ul li {
    margin-left: 0;
    margin-right: 0;
  }
  body footer .terms .pictos {
    margin-top: 2rem;
  }
  body footer .terms .pictos ul {
    align-items: center;
    justify-content: center;
  }
  body footer .terms .pictos ul li {
    margin-left: 0;
    margin-right: 0;
  }
  body footer .terms .pictos ul li a {
    font-size: 2rem;
    margin: 0 0.8rem;
  }
  body footer a {
    font-size: 1rem;
  }
}
body {
  background-color: #FFFFFF;
  font-family: "Karla", sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: #000000;
  margin: 0 auto;
  width: 100%;
  overflow-x: hidden;
  overflow-y: hidden;
}
body .container {
  margin-bottom: 12rem;
}
body .container-fluid {
  margin-bottom: 8rem;
}
body h1, body h2, body h3, body h4, body h5, body h6 {
  font-family: "Cormorant Garamond", serif;
}
body h1 {
  display: none;
}
body h2 {
  font-size: 4rem;
  text-transform: uppercase;
  margin-bottom: 3rem;
}
body h3 {
  font-size: 1.6rem;
  margin-bottom: 0.6em;
  text-transform: uppercase;
}
body h3:before {
  content: "/ ";
  padding-right: 0.1rem;
}
body a.button.red, body input.button.red, body button.button.red {
  padding: 0.7rem 1rem;
  color: #FFFFFF;
  background-color: #E21C24;
  font-weight: 500;
  text-transform: uppercase;
  border: 0;
  border-radius: 1.2rem;
  margin-right: 1.2rem;
  text-decoration: none;
  transform: scale(1);
  transition: transform 1s ease;
}
body a.button.red:hover, body input.button.red:hover, body button.button.red:hover {
  color: #FFFFFF;
  text-decoration: none !important;
  transform: scale(1.2);
}
body p {
  line-height: 1.6em;
  text-align: justify;
}
body main {
  background-color: #FFFFFF;
  margin: 0 auto;
}
body main div.animation {
  opacity: 0;
  transform: scale(0.85);
  transition: all 1s ease;
}
body main #banner {
  display: flex;
  min-height: 55vh;
}
body main #banner #slogan {
  width: 40%;
}
body main #banner #slogan .slogan {
  font-family: "Cormorant Garamond", serif;
  font-size: 4em;
  line-height: normal;
}
body main #banner .images {
  display: flex;
  position: relative;
  width: 80%;
  height: 25rem;
}
body main #banner .images .polygon-container {
  width: 60%; /* Adjust width as needed */
  position: relative;
  flex-grow: 1;
}
body main #banner .images .polygon-container .polygon-image {
  width: 150%;
  height: 100%;
  background-size: cover;
  clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
  overflow-x: hidden;
}
body main #banner .images .polygon-container .polygon-image.one {
  background-image: url("../../banner-1.jpg");
}
body main #banner .images .polygon-container .polygon-image.two {
  background-image: url("../../banner-2.jpg");
}
body main #banner .images .polygon-container:nth-last-child(1) {
  left: 15vh;
}
body main #banner #arrow {
  position: absolute;
  bottom: -5rem;
  left: 25rem;
}
body main #banner #arrow a {
  color: #000000;
  text-decoration: none;
  border: 0.1rem solid red;
  border-radius: 50%;
  width: 10rem;
  height: 10rem;
  text-align: center;
  font-size: 5em;
  font-weight: 100;
  font-family: "Cormorant Garamond";
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  position: relative;
  box-shadow: rgba(110, 110, 110, 0.1) 0px 5px 6px 0px;
}
body main #vision {
  text-align: center;
}
body main #vision .vision {
  margin: 0.6em auto;
  font-size: 2em;
  font-family: "Cormorant Garamond", serif;
}
body main #stat {
  font-family: "Cormorant Garamond", serif;
}
body main #stat .stat {
  font-size: 1.8em;
  color: #919191;
  margin-bottom: 2em;
}
body main #stat .stat p {
  text-align: center;
}
body main #stat .stat p:first-of-type {
  font-size: 1.8em;
  margin-bottom: 0.4em;
  color: #000000;
}
body main #stat .stat sup {
  position: relative;
  top: -0.4em;
}
body main #what-do-we-do .describe h2 {
  font-size: 2em;
}
body main #what-do-we-do .describe p {
  text-align: justify;
  margin-bottom: 2em;
  line-height: 1.6em;
}
body main #what-do-we-do .describe a {
  display: inline-block;
}
body main #what-do-we-do .describe a:hover {
  transform: scale(1.2);
}
body main #we-are-wsc .row, body main #what-do-we-do .row {
  margin-bottom: 7em;
}
body main #we-are-wsc .row img, body main #what-do-we-do .row img {
  width: 100%;
  width: -moz-available; /* WebKit-based browsers will ignore this. */
  width: -webkit-fill-available; /* Mozilla-based browsers will ignore this. */
  width: fill-available;
}
body main #we-are-wsc .row .image, body main #what-do-we-do .row .image {
  margin-bottom: 2rem;
  position: relative;
}
body main #we-are-wsc .row .image img, body main #what-do-we-do .row .image img {
  width: 100%;
  height: auto;
}
body main #we-are-wsc .row .transition-wrapper, body main #what-do-we-do .row .transition-wrapper {
  width: 105%;
  height: 105%;
  position: absolute;
  top: -0.1rem;
  left: -0.1rem;
  transition: 1s ease-in-out;
  background-color: #FFFFFF;
  clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
  z-index: 3;
}
body main #we-are-wsc .row .transition-wrapper.show, body main #what-do-we-do .row .transition-wrapper.show {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
body main #we-are-wsc .row li, body main #what-do-we-do .row li {
  margin-bottom: 0.4rem;
  padding-right: 3rem;
  display: flex;
}
body main #we-are-wsc .row li:before, body main #what-do-we-do .row li:before {
  content: "•";
  color: #E21C24;
  padding-right: 0.8em;
  padding-left: 0.8em;
}
body main #members .card {
  border: 0;
}
body main #members .card h4 {
  color: #E21C24;
  text-transform: uppercase;
  font-size: 2em;
  font-weight: 700;
}
body main #members .card p.titre {
  color: #E21C24;
  font-weight: 700;
}
body main #sectors .sector {
  aspect-ratio: 1/1;
  position: relative;
  height: 100%;
}
body main #sectors .sector .content {
  width: 90%;
  height: auto;
  aspect-ratio: 1/1;
  transform: scale(1);
  background-size: cover;
  background-color: gray;
  background-blend-mode: normal;
  transition: transform 1s;
  position: relative;
}
body main #sectors .sector .content h3 {
  color: #FFFFFF;
  font-weight: bold;
  position: absolute;
}
body main #sectors .sector .content h3:before {
  content: "";
  padding-right: 0;
}
body main #sectors .sector .content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: gray;
  mix-blend-mode: multiply;
  opacity: 0.5;
  transition: opacity 1s;
}
body main #sectors .sector .content:hover {
  transform: scale(1.2);
}
body main #sectors .sector .content:hover::before {
  opacity: 1;
}
body main #sectors .sector .content.one {
  background-image: url("../../food.jpg");
}
body main #sectors .sector .content.two {
  background-image: url("../../consumer.jpg");
}
body main #sectors .sector .content.three {
  background-image: url("../../household.jpg");
}
body main #sectors .sector .content.four {
  background-image: url("../../industrial.jpg");
}
body main #sectors .sector .transition-wrapper {
  width: 105%;
  height: 105%;
  position: absolute;
  top: -0.1rem;
  left: -0.1rem;
  transition: 1s ease-in-out;
  background-color: #FFFFFF;
  clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
  z-index: 3;
}
body main #sectors .sector .transition-wrapper.show {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
body main #certificates .certificate {
  transform: scale(1);
  transition: transform 1s;
}
body main #certificates .certificate img {
  width: 100%;
}
body main #certificates .certificate:hover {
  transform: scale(1.2);
}
body main #video-1 {
  margin-bottom: 0;
}
body main #video-1 #video-container-1 {
  padding-bottom: 0 !important;
  margin-bottom: 0;
}
body main #video-2 {
  background: linear-gradient(to bottom, #FFFFFF 50%, #F4F4F4 50%);
  margin-bottom: 0;
}
body main #video-2 #video-container-2 {
  padding-bottom: 0 !important;
  margin-bottom: 0;
}
body main #esg {
  background-color: #F4F4F4;
}
body main #esg .container {
  padding-bottom: 10rem;
  padding-top: 6rem;
}
body main #esg .texte {
  margin-bottom: 1rem;
}
body main #esg .texte p {
  margin-bottom: 0.8em;
}
body main #esg .texte ul li {
  margin-bottom: 1em;
  display: flex;
}
body main #esg .texte ul li::before {
  content: "•";
  color: #E21C24;
  padding-right: 0.8em;
  padding-left: 0.8em;
}
body main #esg a {
  width: auto;
}
body main #esg blockquote {
  font-family: "Cormorant Garamond", serif;
  text-align: left;
  font-size: 3rem;
  margin-top: 10rem;
  position: relative;
}
body main #esg blockquote::before {
  content: "“";
  top: 0; /* Positionnement au début du blockquote */
  left: -0.5em; /* Décalage vers la gauche pour les guillemets ouvrants */
}
body main #esg blockquote::after {
  content: "”";
  bottom: 0; /* Positionnement à la fin du blockquote */
  right: -0.5em; /* Décalage vers la droite pour les guillemets fermants */
}
body main #esg blockquote::before,
body main #esg blockquote::after {
  color: #E21C24;
  font-size: 2em; /* Taille des guillemets */
  position: absolute; /* Position absolue pour placer les guillemets */
}
body main #esg a.logistics-employer {
  background-color: #F4F4F4;
  display: inline-block;
}
body main #esg a.logistics-employer img {
  max-width: 100%;
  height: auto;
  mix-blend-mode: multiply;
  margin-top: 2rem;
}
body .crud .animation {
  opacity: 1;
}
body .crud .article li {
  list-style-type: disc;
}
body .crud .article p {
  margin-bottom: 3rem;
}
body .crud .article strong {
  font-weight: bold;
}
body .crud h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
}
body .crud .card {
  margin-top: 2rem;
}
body .crud .card img {
  width: 50%;
  margin-bottom: 1rem;
}
body .crud .text-end {
  margin-top: 1rem;
}
body .crud .password-check {
  margin-bottom: 3rem;
}
body .news .article {
  margin-bottom: 5rem;
}
body .news .article p {
  margin-bottom: 3rem;
}
body .news .article strong {
  font-weight: bold;
}
body .news .article img {
  width: 100%;
}
body .news .article .titre h3 {
  font-size: 3rem;
}
body .news .article .titre h3:before {
  content: "";
}
body .news .article .content {
  display: flex;
}
body .news .article .content h4 {
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
}
body .news .article .content li {
  margin-bottom: 0.3rem;
}
body .news .article .content li:before {
  content: "•";
  color: #E21C24;
  padding-right: 0.8em;
  padding-left: 0.8em;
}
body .news .article .content a.source {
  color: #000000;
}
body .news .article .content.flRight {
  flex-direction: row-reverse;
}
body .news .article img {
  width: 100%;
  width: -moz-available; /* WebKit-based browsers will ignore this. */
  width: -webkit-fill-available; /* Mozilla-based browsers will ignore this. */
  width: fill-available;
}
body .news .article .image {
  margin-bottom: 2rem;
  position: relative;
}
body .news .article .image img {
  width: 100%;
  height: auto;
}
body .news .article .transition-wrapper {
  width: 105%;
  height: 105%;
  position: absolute;
  top: -0.1rem;
  left: -0.1rem;
  transition: 1s ease-in-out;
  background-color: #FFFFFF;
  clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
  z-index: 3;
}
body .news .article .transition-wrapper.show {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.privacy-policy h1, .cookies h1 {
  display: block;
  font-size: 4rem;
  margin-bottom: 2rem;
}
.privacy-policy h2, .cookies h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.privacy-policy div, .cookies div {
  margin-bottom: 3rem;
}
.privacy-policy p, .cookies p {
  margin-bottom: 1em;
}
.privacy-policy p, .privacy-policy ul, .cookies p, .cookies ul {
  line-height: 1.4rem;
}
.privacy-policy p b, .privacy-policy ul b, .cookies p b, .cookies ul b {
  font-weight: bold;
}
.privacy-policy p a, .privacy-policy ul a, .cookies p a, .cookies ul a {
  color: #000000;
}
.privacy-policy li, .cookies li {
  margin-bottom: 0.4rem;
}
.privacy-policy li:before, .cookies li:before {
  content: "•";
  color: #E21C24;
  padding-right: 0.8em;
  padding-left: 0.8em;
}

@media (max-width: 991.98px) {
  body {
    font-size: 14px;
  }
  body .container {
    margin-bottom: 5rem;
    padding: 0 1.4rem;
  }
  body .container-fluid {
    margin-bottom: 2rem;
  }
  body h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
  }
  body main {
    overflow: hidden;
  }
  body main #banner {
    margin-top: 0 !important;
  }
  body main #banner #slogan .slogan {
    text-align: left;
    font-size: 2.4rem;
  }
  body main #banner .images {
    height: 15rem;
  }
  body main #banner #arrow {
    display: none;
  }
  body main #vision .vision {
    font-size: 1.4rem;
  }
  body main #stat .stat p:first-of-type {
    margin: 0;
  }
  body main #what-do-we-do .describe {
    margin-bottom: 5rem;
  }
  body main #what-do-we-do .describe p {
    margin-bottom: 2rem;
  }
  body main #we-are-wsc .row {
    margin-bottom: 5em;
  }
  body main #we-are-wsc .texte {
    margin-bottom: 2rem;
  }
  body main #members > div > div:first-of-type {
    margin-bottom: 3rem;
  }
  body main #certificates div.row {
    flex-direction: column;
  }
  body main #certificates div.row .certificate {
    padding: 0 2rem 5rem;
  }
  body main #esg blockquote {
    font-size: 2rem;
    margin-top: 5rem;
  }
  body main #esg blockquote::before {
    font-size: 2rem;
    left: -0.2em;
  }
  body main #esg blockquote::after {
    font-size: 2rem;
    right: -0.2em;
  }
  body .privacy-policy, body .cookies {
    width: 100%;
  }
  body .privacy-policy > div, body .cookies > div {
    width: 100%;
  }
  body .privacy-policy h1, body .cookies h1 {
    font-size: 3rem;
  }
  body .privacy-policy h2, body .cookies h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  body .privacy-policy div, body .cookies div {
    margin-bottom: 3rem;
  }
  body .privacy-policy p, body .cookies p {
    margin-bottom: 1em;
  }
  body .privacy-policy p, body .privacy-policy ul, body .cookies p, body .cookies ul {
    line-height: 1.4rem;
  }
  body .privacy-policy p b, body .privacy-policy ul b, body .cookies p b, body .cookies ul b {
    font-weight: bold;
  }
  body .privacy-policy p a, body .privacy-policy ul a, body .cookies p a, body .cookies ul a {
    color: #000000;
  }
  body .privacy-policy li, body .cookies li {
    margin-bottom: 0;
  }
  body .privacy-policy li:before, body .cookies li:before {
    content: "•";
    color: #E21C24;
    padding-right: 0.8em;
    padding-left: 0.8em;
  }
  body .crud .card img {
    width: 100%;
  }
  body .news .article .titre h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  body .news .article .content h3 {
    font-size: 1.4rem;
  }
  body .news .article .content p {
    margin-bottom: 2rem;
  }
  #what-do-we-do .row:nth-child(1) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767.98px) {
  body main #banner {
    flex-direction: column;
    overflow: hidden;
  }
  body main #banner #slogan {
    width: 100%;
  }
  body main #banner #slogan .slogan {
    text-align: left;
    font-size: 2.4rem;
  }
  body main #banner .images {
    margin-top: 3rem;
    height: 15rem;
    width: auto;
  }
  body main #banner .images .polygon-container {
    width: 80vw;
    left: -15vw;
  }
  body main #banner .images .polygon-container:nth-last-child(1) {
    left: -2vh;
    width: 80vw;
  }
  body main #banner #arrow {
    display: none;
  }
  body main #we-are-wsc div:nth-last-child(1) {
    flex-direction: column-reverse;
  }
  body main #what-do-we-do .row:nth-child(1) {
    margin-bottom: 2rem;
  }
  body main #what-do-we-do .row:nth-child(2) {
    flex-direction: column-reverse;
  }
  body main #what-do-we-do .row:nth-child(4) {
    flex-direction: column-reverse;
  }
}

/*# sourceMappingURL=data:application/json;charset=utf-8,%7B%22version%22:3,%22sourceRoot%22:%22%22,%22sources%22:%5B%22../../assets/styles/app.scss%22,%22../../assets/styles/_reset.scss%22,%22../../assets/styles/_scrollbar.scss%22,%22../../assets/styles/_variables.scss%22,%22../../assets/styles/_loader.scss%22,%22../../assets/styles/_header.scss%22,%22../../assets/styles/_slider.scss%22,%22../../assets/styles/_footer.scss%22%5D,%22names%22:%5B%5D,%22mappings%22:%22;AAGQ;AACA;ACHR;AAAA;AAAA;AAAA;AAKA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;EAaC;EACA;EACA;EACA;EACA;EACA;EACG;;;AAEJ;AACA;AAAA;EAEC;;;AAED;EACC;;;AAED;EACC;;;AAED;EACC;;;AAED;AAAA;EAEC;EACA;;;AAED;EACC;EACA;;;AAED;EACI;EACA;EACA;;;ACpDJ;EACI;;;AAEJ;EACI,YCDS,SDCgB;;;AAE7B;EACI,kBCNE,SDMsB;EACxB;EACA;;;AAIJ;EACI;EACA;EACA;EACA;EACA;EACA,kBClBE;EDmBF,OClBI;EDmBJ;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGJ;EACI;;;AAGJ;EACI;;;AEtCJ;EACI;EACA;EACA;EACA;EACA;EACA,kBDJI;ECKJ;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;AAGJ;EACI;IAAK;;EACL;IAAO;;;AAGX;EACI;EACA;;;AAKR;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI,OD1CA;;AC6CJ;EACI;;AAGJ;EACI,ODnDI;;;ACuDZ;EAGQ;IACI;IACA;IACA;;;AC/DR;EACI;;AAEJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;AAGA;EACI;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;;AAIJ;EACI;EACA;EACA;EACA;EACA;;AAGJ;EACI,kBFpCV;EEqCU,OFpCR;EEqCQ;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI,OF9CZ;;AEgDQ;EACI;;AAGR;EACI;EACA;;AAEJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEJ;EACI;EACA;;AAEA;EACI,OFrEZ;;AEuEQ;EACI,OFzER;;AE6EA;EACI;EACA;EACA;EACA;;AAEJ;EACI;EACA;EACA;EACA;EACA;EACA;;AAEJ;EACI;;AAEA;EACI;EACA;;AAGR;EACI;;;AAMhB;EAIgB;IACI;;;AAOpB;EACI;IACI;;EAEA;IACI;;EAIA;IACI;AA0FA;;EAxFA;IACI;IACA;IACA;IACA;;EAGJ;IACI;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;EAEA;IACI;IACA;IACA;IACA;IACA,kBF3JlB;IE4JkB;IACA;;EAIR;IACI;IACA;IACA;IACA,kBFpKZ;IEqKY;IACA;IACA;IACA;IACA;IACA;IACA;;EAEA;IACI;IACA;IACA;IACA;IACA;IACA;;EAEA;IACI;IACA;IACA;IACA;IACA;;EAEA;IACI;IACA;IACA;IACA;IACA;IACA;IACA;;EAEA;IACI;;EAGR;IACI;IACA;IACA;IACA;IACA;IACA;IACA;;EAEJ;IACI;;EAEJ;IACI;;EAOhB;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAGJ;IACI;IACA;;;AC/OpB;EACI;EACA;EACA;;AAEA;EACI;EACA;EACA;;AAEA;EACI;;AAGJ;EACI;EACA;;AAEJ;EACI;EACA;EACA;;AAEJ;EACI;EACA;;AAGI;EACI;;AAEJ;EACI;EACA;EACA;;AAGJ;EACI;EACA,OHrCd;EGsCc;EACA;;AAIR;EACI;EACA;EACA;;AAIR;EACI;;AAEJ;EACI;;AAEJ;EACI;;AAIR;EACI;EACA;EACA;EACA,kBHhEA;EGiEA,OHlEF;EGmEE;EACA;EACA;;AAGJ;EACI;;AAGJ;EACI;;;AAKR;EACI;IACI;IACA;;EAEA;IACI;;EAMJ;IACI;IACA;;EAEA;IACI;;EAGJ;IACI;IACA;;EAEJ;IACI;IACA;IACA;;EAEJ;IACI;IACA;IACA;IACA;IACA;;EAEA;IACI;;EACA;IACI;;EAIR;IACI;IACA;IACA;;EAEJ;IACI;IACA;;EAGJ;IACI;IACA;IACA;IACA;IACA;IACA;IACA,kBH7IZ;IG8IY;IACA;;EAGJ;IACI;;EAKZ;IACI;;;AC3JR;EACI,kBJCA;EIAA;EACA;;AAEA;EACI,kBJLN;EIMM;EACA;EACA;EACA;EACA,OJTJ;EIUI;EACA;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA,OJjBJ;EIkBI;;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%22,%22file%22:%22app.output.css%22%7D */
