@charset "UTF-8";
/* imports de fichier */
/* On applique des élément sur l'ensemble du code*/
@import url("https://fonts.googleapis.com/css?family=Montserrat");
* {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body::-webkit-scrollbar {
  width: 10px;
}
body::-webkit-scrollbar-track {
  background: transparent;
}
body::-webkit-scrollbar-thumb {
  background-color: #b2b2b2;
  border-radius: 20px;
}
body::-webkit-scrollbar-thumb:hover {
  background-color: #9f9f9f;
}

.carousel-container {
  width: 100%;
  height: 996px;
  position: relative;
  -webkit-perspective: 100%;
          perspective: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.carousel {
  width: 16.666%;
  height: 996px;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  -webkit-transition: -webkit-transform 2s;
  transition: -webkit-transform 2s;
  transition: transform 2s;
  transition: transform 2s, -webkit-transform 2s;
}

.carousel img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
}

.carousel img:nth-child(1) {
  -webkit-transform: rotateY(0deg) translateZ(160px);
          transform: rotateY(0deg) translateZ(160px);
}

.carousel img:nth-child(2) {
  -webkit-transform: rotateY(90deg) translateZ(160px);
          transform: rotateY(90deg) translateZ(160px);
}

.carousel img:nth-child(3) {
  -webkit-transform: rotateY(180deg) translateZ(160px);
          transform: rotateY(180deg) translateZ(160px);
}

.carousel img:nth-child(4) {
  -webkit-transform: rotateY(270deg) translateZ(160px);
          transform: rotateY(270deg) translateZ(160px);
}

.flex-mission {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  position: absolute;
  bottom: 20px;
  right: 10px;
}

.flex-mission2 {
  border: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.flex-mission2 .test {
  margin-right: 20px;
  padding-right: 10px;
  margin-left: -65px;
  width: 100px;
  height: 100px;
  background-color: orange;
  -webkit-clip-path: polygon(57% 0, 100% 50%, 57% 100%, 47% 100%, 79% 50%, 47% 0);
          clip-path: polygon(57% 0, 100% 50%, 57% 100%, 47% 100%, 79% 50%, 47% 0);
}
.flex-mission2 .test2 {
  padding-right: 10px;
  width: 100px;
  height: 100px;
  background-color: rgb(255, 191, 72);
  -webkit-clip-path: polygon(57% 0, 100% 50%, 57% 100%, 47% 100%, 79% 50%, 47% 0);
          clip-path: polygon(57% 0, 100% 50%, 57% 100%, 47% 100%, 79% 50%, 47% 0);
}

.article-mission {
  color: #2a4f99;
  margin-left: 5vw;
  margin-top: 50px;
  border-style: none none none dotted;
  border-width: 10px;
  border-color: orange;
  padding-left: 20px;
}

.articles h1, .articles h2.titre {
  font-size: 2.5rem;
  margin-left: 6%;
}
.articles .actualite {
  width: 60%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 40px 0;
  margin: 2% 15%;
  border-radius: 10px;
  -webkit-box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.4);
          box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.4);
}
.articles .actualite:hover {
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
}
.articles .actualite .image {
  border-radius: 10px;
  width: 300px;
  height: 300px;
  background-color: rgb(218, 218, 218);
  -webkit-transform: translateX(-80px);
          transform: translateX(-80px);
  overflow: hidden;
}
.articles .actualite .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.articles .actualite .content {
  width: 50%;
  height: 100%;
}
.articles .actualite .content h3 {
  color: #7b7992;
  margin-bottom: 15px;
  display: block;
  font-weight: 500;
}
.articles .actualite .content h2 {
  font-size: 24px;
  font-weight: 700;
  color: #0d0925;
  margin-bottom: 20px;
}
.articles .actualite .content p {
  color: #4e4a67;
  margin-bottom: 30px;
  line-height: 1.5em;
}
.articles .actualite .content a {
  color: white;
  padding: 12px 30px;
  background-color: #0069b4;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 20px;
}
.articles .actualite .content a:hover {
  background-color: #ffffff;
  color: #0069b4;
  border: 1px solid #0069b4;
}

.bouton-actualites {
  margin-left: 39%;
  margin-top: 2em;
}
.bouton-actualites a {
  text-decoration: none;
  border: solid 1px #2a4f99;
  padding: 0.4em 0.8em 0.4em 0.8em;
  color: gray;
  font-size: 1.5em;
}
.bouton-actualites a:hover {
  color: #2a4f99;
}
.bouton-actualites:active {
  -webkit-transform: translateY(4px);
          transform: translateY(4px);
}

.partenaires h2 {
  color: #2a4f99;
  font-size: 2.5rem;
  margin-left: 10%;
}
.partenaires .carousel-logo {
  max-width: 60em;
  height: 200px;
  margin-left: 18%;
  overflow: hidden;
  position: relative;
}
.partenaires .carousel-logo .carousel-items {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: -webkit-transform 0.5s ease-in-out;
  transition: -webkit-transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
  -webkit-animation: scroll 20s linear infinite;
          animation: scroll 20s linear infinite;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
.partenaires .carousel-logo .carousel-items .carousel-item {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 130px;
          flex: 1 0 130px;
  margin-right: 1rem;
}

.bouton-partenaires {
  margin-left: 42%;
  margin-top: 2em;
  margin-bottom: 2em;
}
.bouton-partenaires a {
  text-decoration: none;
  border: solid 1px #2a4f99;
  padding: 0.4em 0.8em 0.4em 0.8em;
  color: gray;
  font-size: 1.5em;
}
.bouton-partenaires a:hover {
  color: #2a4f99;
}
.bouton-partenaires:active {
  -webkit-transform: translateY(4px);
          transform: translateY(4px);
}

@media (max-width: 800px) {
  .bouton-mission {
    margin-left: 1em;
  }
  .bouton-actualites {
    margin-left: 30%;
  }
  .bouton-partenaires {
    margin-left: 30%;
    margin-bottom: 50px;
  }
}
@media (max-width: 1000px) {
  .carousel-logo {
    margin-left: 2em;
    max-width: 32em;
  }
}
@-webkit-keyframes scroll {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@keyframes scroll {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
.slider {
  background: white;
  -webkit-box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.125);
          box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.125);
  height: 120px;
  margin: auto;
  overflow: hidden;
  position: relative;
  width: 70%;
  min-width: 600px;
}

.slider::before,
.slider::after {
  content: "";
  background: -webkit-gradient(linear, left top, right top, from(rgb(255, 255, 255)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(to right, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
  height: 120px;
  position: absolute;
  width: 200px;
  z-index: 2;
}

.slider::after {
  right: 0;
  top: 0;
  -webkit-transform: rotateZ(180deg);
          transform: rotateZ(180deg);
}

.slider::before {
  left: 0;
  top: 0;
}

.slide {
  height: 120px;
  width: 250px;
}

.slider .slide img {
  height: 120px;
  width: 100px;
  -o-object-fit: cover;
     object-fit: cover;
}

:root {
  --marquee-width: 70vw;
  --marquee-height: 10vh;
  /* --marquee-elements: 12; */ /* defined with JavaScript */
  --marquee-elements-displayed: 5;
  --marquee-element-width: calc(
    var(--marquee-width) / var(--marquee-elements-displayed)
  );
  --marquee-animation-duration: calc(var(--marquee-elements) * 3s);
}

.marquee {
  width: var(--marquee-width);
  height: var(--marquee-height);
  background-color: #ffffff;
  color: #000000;
  overflow: hidden;
  position: relative;
  -webkit-box-shadow: 5px 0 30px rgba(0, 0, 0, 0.2);
          box-shadow: 5px 0 30px rgba(0, 0, 0, 0.2);
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.marquee:before,
.marquee:after {
  position: absolute;
  top: 0;
  width: 10rem;
  height: 100%;
  content: "";
  z-index: 1;
}

.marquee:before {
  left: 0;
  background: -webkit-gradient(linear, left top, right top, from(rgba(18, 18, 18, 0.2)), to(transparent));
  background: linear-gradient(to right, rgba(18, 18, 18, 0.2) 0%, transparent 100%);
}

.marquee:after {
  right: 0;
  background: -webkit-gradient(linear, right top, left top, from(rgba(18, 18, 18, 0.2)), to(transparent));
  background: linear-gradient(to left, rgba(18, 18, 18, 0.2) 0%, transparent 100%);
}

.marquee-content {
  list-style: none;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-animation: scrolling var(--marquee-animation-duration) linear infinite;
          animation: scrolling var(--marquee-animation-duration) linear infinite;
}

/* .marquee-content:hover {
  animation-play-state: paused;
} */
@-webkit-keyframes scrolling {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(calc(-1 * var(--marquee-element-width) * var(--marquee-elements)));
            transform: translateX(calc(-1 * var(--marquee-element-width) * var(--marquee-elements)));
  }
}
@keyframes scrolling {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(calc(-1 * var(--marquee-element-width) * var(--marquee-elements)));
            transform: translateX(calc(-1 * var(--marquee-element-width) * var(--marquee-elements)));
  }
}
.marquee-content li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  /* text-align: center; */
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: var(--marquee-element-width);
  max-height: 100%;
  font-size: calc(var(--marquee-height) * 3 / 4); /* 5rem; */
  white-space: nowrap;
}

.marquee-content li img {
  width: 40%;
  /* height: 100%; */
}

@media (max-width: 600px) {
  html {
    font-size: 12px;
  }
  :root {
    --marquee-width: 100vw;
    --marquee-height: 16vh;
    --marquee-elements-displayed: 3;
  }
  .marquee:before,
  .marquee:after {
    width: 5rem;
  }
}
@media screen and (max-width: 1600px) {
  .carousel img:nth-child(1) {
    -webkit-transform: rotateY(0deg) translateZ(130px);
            transform: rotateY(0deg) translateZ(130px);
  }
  .carousel img:nth-child(2) {
    -webkit-transform: rotateY(90deg) translateZ(130px);
            transform: rotateY(90deg) translateZ(130px);
  }
  .carousel img:nth-child(3) {
    -webkit-transform: rotateY(180deg) translateZ(130px);
            transform: rotateY(180deg) translateZ(130px);
  }
  .carousel img:nth-child(4) {
    -webkit-transform: rotateY(270deg) translateZ(130px);
            transform: rotateY(270deg) translateZ(130px);
  }
}
@media screen and (max-width: 1500px) {
  .carousel img:nth-child(1) {
    -webkit-transform: rotateY(0deg) translateZ(125px);
            transform: rotateY(0deg) translateZ(125px);
  }
  .carousel img:nth-child(2) {
    -webkit-transform: rotateY(90deg) translateZ(125px);
            transform: rotateY(90deg) translateZ(125px);
  }
  .carousel img:nth-child(3) {
    -webkit-transform: rotateY(180deg) translateZ(125px);
            transform: rotateY(180deg) translateZ(125px);
  }
  .carousel img:nth-child(4) {
    -webkit-transform: rotateY(270deg) translateZ(125px);
            transform: rotateY(270deg) translateZ(125px);
  }
}
@media screen and (max-width: 1400px) {
  .carousel img:nth-child(1) {
    -webkit-transform: rotateY(0deg) translateZ(115px);
            transform: rotateY(0deg) translateZ(115px);
  }
  .carousel img:nth-child(2) {
    -webkit-transform: rotateY(90deg) translateZ(115px);
            transform: rotateY(90deg) translateZ(115px);
  }
  .carousel img:nth-child(3) {
    -webkit-transform: rotateY(180deg) translateZ(115px);
            transform: rotateY(180deg) translateZ(115px);
  }
  .carousel img:nth-child(4) {
    -webkit-transform: rotateY(270deg) translateZ(115px);
            transform: rotateY(270deg) translateZ(115px);
  }
}
@media screen and (max-width: 1300px) {
  .carousel img:nth-child(1) {
    -webkit-transform: rotateY(0deg) translateZ(105px);
            transform: rotateY(0deg) translateZ(105px);
  }
  .carousel img:nth-child(2) {
    -webkit-transform: rotateY(90deg) translateZ(105px);
            transform: rotateY(90deg) translateZ(105px);
  }
  .carousel img:nth-child(3) {
    -webkit-transform: rotateY(180deg) translateZ(105px);
            transform: rotateY(180deg) translateZ(105px);
  }
  .carousel img:nth-child(4) {
    -webkit-transform: rotateY(270deg) translateZ(105px);
            transform: rotateY(270deg) translateZ(105px);
  }
}
@media screen and (max-width: 1200px) {
  .carousel img:nth-child(1) {
    -webkit-transform: rotateY(0deg) translateZ(100px);
            transform: rotateY(0deg) translateZ(100px);
  }
  .carousel img:nth-child(2) {
    -webkit-transform: rotateY(90deg) translateZ(100px);
            transform: rotateY(90deg) translateZ(100px);
  }
  .carousel img:nth-child(3) {
    -webkit-transform: rotateY(180deg) translateZ(100px);
            transform: rotateY(180deg) translateZ(100px);
  }
  .carousel img:nth-child(4) {
    -webkit-transform: rotateY(270deg) translateZ(100px);
            transform: rotateY(270deg) translateZ(100px);
  }
}
@media screen and (max-width: 1100px) {
  .carousel img:nth-child(1) {
    -webkit-transform: rotateY(0deg) translateZ(90px);
            transform: rotateY(0deg) translateZ(90px);
  }
  .carousel img:nth-child(2) {
    -webkit-transform: rotateY(90deg) translateZ(90px);
            transform: rotateY(90deg) translateZ(90px);
  }
  .carousel img:nth-child(3) {
    -webkit-transform: rotateY(180deg) translateZ(90px);
            transform: rotateY(180deg) translateZ(90px);
  }
  .carousel img:nth-child(4) {
    -webkit-transform: rotateY(270deg) translateZ(90px);
            transform: rotateY(270deg) translateZ(90px);
  }
}
@media screen and (max-width: 1000px) {
  .articles {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .articles h1 {
    margin-left: 0;
    margin-right: 50%;
  }
  .articles .actualite {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .articles .actualite .image {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
  .articles .actualite .content {
    width: 70%;
  }
  .articles .actualite .content a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 12px 0px;
  }
  .carousel6 {
    display: none;
  }
  .carousel {
    width: 20%;
  }
  .carousel img:nth-child(1) {
    -webkit-transform: rotateY(0deg) translateZ(100px);
            transform: rotateY(0deg) translateZ(100px);
  }
  .carousel img:nth-child(2) {
    -webkit-transform: rotateY(90deg) translateZ(100px);
            transform: rotateY(90deg) translateZ(100px);
  }
  .carousel img:nth-child(3) {
    -webkit-transform: rotateY(180deg) translateZ(100px);
            transform: rotateY(180deg) translateZ(100px);
  }
  .carousel img:nth-child(4) {
    -webkit-transform: rotateY(270deg) translateZ(100px);
            transform: rotateY(270deg) translateZ(100px);
  }
}
@media screen and (max-width: 900px) {
  .carousel5 {
    display: none;
  }
  .carousel6 {
    display: none;
  }
  .carousel {
    width: 25%;
  }
  .carousel img:nth-child(1) {
    -webkit-transform: rotateY(0deg) translateZ(112px);
            transform: rotateY(0deg) translateZ(112px);
  }
  .carousel img:nth-child(2) {
    -webkit-transform: rotateY(90deg) translateZ(112px);
            transform: rotateY(90deg) translateZ(112px);
  }
  .carousel img:nth-child(3) {
    -webkit-transform: rotateY(180deg) translateZ(112px);
            transform: rotateY(180deg) translateZ(112px);
  }
  .carousel img:nth-child(4) {
    -webkit-transform: rotateY(270deg) translateZ(112px);
            transform: rotateY(270deg) translateZ(112px);
  }
}
@media screen and (max-width: 800px) {
  .carousel4 {
    display: none;
  }
  .carousel5 {
    display: none;
  }
  .carousel6 {
    display: none;
  }
  .carousel {
    width: 33.333%;
  }
  .carousel img:nth-child(1) {
    -webkit-transform: rotateY(0deg) translateZ(133px);
            transform: rotateY(0deg) translateZ(133px);
  }
  .carousel img:nth-child(2) {
    -webkit-transform: rotateY(90deg) translateZ(133px);
            transform: rotateY(90deg) translateZ(133px);
  }
  .carousel img:nth-child(3) {
    -webkit-transform: rotateY(180deg) translateZ(133px);
            transform: rotateY(180deg) translateZ(133px);
  }
  .carousel img:nth-child(4) {
    -webkit-transform: rotateY(270deg) translateZ(133px);
            transform: rotateY(270deg) translateZ(133px);
  }
}
@media screen and (max-width: 750px) {
  .article-mission {
    margin-top: 0;
    border-style: none;
    border-width: 0;
    border-color: none;
    padding-left: 0;
  }
  .article-mission .articles {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .article-mission .articles .actualite {
    width: 80%;
    margin: 3% 0%;
  }
  .article-mission .articles .actualite .image {
    width: 300px;
    height: 300px;
  }
}
@media screen and (max-width: 700px) {
  .carousel4 {
    display: none;
  }
  .carousel5 {
    display: none;
  }
  .carousel6 {
    display: none;
  }
  .carousel {
    width: 33.333%;
  }
  .carousel img:nth-child(1) {
    -webkit-transform: rotateY(0deg) translateZ(117px);
            transform: rotateY(0deg) translateZ(117px);
  }
  .carousel img:nth-child(2) {
    -webkit-transform: rotateY(90deg) translateZ(117px);
            transform: rotateY(90deg) translateZ(117px);
  }
  .carousel img:nth-child(3) {
    -webkit-transform: rotateY(180deg) translateZ(117px);
            transform: rotateY(180deg) translateZ(117px);
  }
  .carousel img:nth-child(4) {
    -webkit-transform: rotateY(270deg) translateZ(117px);
            transform: rotateY(270deg) translateZ(117px);
  }
}
/*FIN CSS MAIN*/
@media screen and (max-width: 600px) {
  .article-mission .articles .actualite .image {
    width: 200px;
    height: 200px;
  }
  .carousel4 {
    display: none;
  }
  .carousel5 {
    display: none;
  }
  .carousel6 {
    display: none;
  }
  .carousel {
    width: 33.333%;
  }
  .carousel img:nth-child(1) {
    -webkit-transform: rotateY(0deg) translateZ(100px);
            transform: rotateY(0deg) translateZ(100px);
  }
  .carousel img:nth-child(2) {
    -webkit-transform: rotateY(90deg) translateZ(100px);
            transform: rotateY(90deg) translateZ(100px);
  }
  .carousel img:nth-child(3) {
    -webkit-transform: rotateY(180deg) translateZ(100px);
            transform: rotateY(180deg) translateZ(100px);
  }
  .carousel img:nth-child(4) {
    -webkit-transform: rotateY(270deg) translateZ(100px);
            transform: rotateY(270deg) translateZ(100px);
  }
}
@media screen and (max-width: 500px) {
  .article-mission {
    margin-left: 0px;
  }
  .article-mission .articles h1 {
    margin-right: 0;
  }
  .carousel3 {
    display: none;
  }
  .carousel4 {
    display: none;
  }
  .carousel5 {
    display: none;
  }
  .carousel6 {
    display: none;
  }
  .carousel {
    width: 50%;
  }
  .carousel img:nth-child(1) {
    -webkit-transform: rotateY(0deg) translateZ(125px);
            transform: rotateY(0deg) translateZ(125px);
  }
  .carousel img:nth-child(2) {
    -webkit-transform: rotateY(90deg) translateZ(125px);
            transform: rotateY(90deg) translateZ(125px);
  }
  .carousel img:nth-child(3) {
    -webkit-transform: rotateY(180deg) translateZ(125px);
            transform: rotateY(180deg) translateZ(125px);
  }
  .carousel img:nth-child(4) {
    -webkit-transform: rotateY(270deg) translateZ(125px);
            transform: rotateY(270deg) translateZ(125px);
  }
}
@media screen and (max-width: 400px) {
  .article-mission {
    width: 100%;
  }
  .article-mission .articles .actualite {
    width: 100%;
  }
  .bouton-partenaires {
    margin-bottom: 100px;
  }
  .carousel2 {
    display: none;
  }
  .carousel3 {
    display: none;
  }
  .carousel4 {
    display: none;
  }
  .carousel5 {
    display: none;
  }
  .carousel6 {
    display: none;
  }
  .carousel {
    width: 100%;
  }
  .carousel img:nth-child(1) {
    -webkit-transform: rotateY(0deg) translateZ(200px);
            transform: rotateY(0deg) translateZ(200px);
  }
  .carousel img:nth-child(2) {
    -webkit-transform: rotateY(90deg) translateZ(200px);
            transform: rotateY(90deg) translateZ(200px);
  }
  .carousel img:nth-child(3) {
    -webkit-transform: rotateY(180deg) translateZ(200px);
            transform: rotateY(180deg) translateZ(200px);
  }
  .carousel img:nth-child(4) {
    -webkit-transform: rotateY(270deg) translateZ(200px);
            transform: rotateY(270deg) translateZ(200px);
  }
}
@media screen and (max-width: 350px) {
  .article-mission .articles .actualite .image {
    width: 150px;
    height: 150px;
  }
}
@media screen and (max-width: 300px) {
  .article-mission .articles {
    margin: 1em 1em;
  }
  .article-mission .articles h1 {
    font-size: 2rem;
  }
  .article-mission .articles .actualite .image {
    width: 150px;
    height: 150px;
  }
  .bouton-partenaires a {
    font-size: 1.2rem;
  }
  .carousel2 {
    display: none;
  }
  .carousel3 {
    display: none;
  }
  .carousel4 {
    display: none;
  }
  .carousel5 {
    display: none;
  }
  .carousel6 {
    display: none;
  }
  .carousel {
    width: 100%;
  }
  .carousel img:nth-child(1) {
    -webkit-transform: rotateY(0deg) translateZ(150px);
            transform: rotateY(0deg) translateZ(150px);
  }
  .carousel img:nth-child(2) {
    -webkit-transform: rotateY(90deg) translateZ(150px);
            transform: rotateY(90deg) translateZ(150px);
  }
  .carousel img:nth-child(3) {
    -webkit-transform: rotateY(180deg) translateZ(150px);
            transform: rotateY(180deg) translateZ(150px);
  }
  .carousel img:nth-child(4) {
    -webkit-transform: rotateY(270deg) translateZ(150px);
            transform: rotateY(270deg) translateZ(150px);
  }
}