@import url(https://fonts.googleapis.com/css2?family=Pixelify+Sans:wght@400..700&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap);
:root {
  --color-bg: #f5f5f5;
  --color-text: #036845;
  --color-primary: #218326;
  --color-secondary: #E3E68E;
  --color-link:#4e3c43;
  --color-cursor:#031d14;
  --color-footer:#031d14;
}

.none {
  display: none;
}

.body {
  background-image: url(../assets/images/pave.svg);
  background-repeat: repeat;
  color: var(--color-text);
  font-family: "Nunito Sans", sans-serif;
  font-size: 18px;
  padding: 0;
  margin: 100px 0 0 0;
  cursor: none;
  height: 100vh;
  overflow: hidden;
  overflow-y: scroll;
}

.cursor {
  width: 30px;
  height: 30px;
  border: var(--color-cursor) 2px solid;
  position: absolute;
  border-radius: 5%;
  animation: Anim1 5s infinite;
  pointer-events: none;
  z-index: 10;
}
.cursor::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 3px;
  height: 3px;
  background: var(--color-primary);
}

@keyframes Anim1 {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes Anim2 {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(2);
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}
.expand {
  animation: Anim2 0.5s;
  background-color: var(--color-primary);
  border: 1px solid var(--color-primary);
}

.main {
  margin: 25px;
  padding: 0;
}

.end__big {
  margin-bottom: 72px;
}
.end__middle {
  margin-bottom: 51px;
}

.title {
  font-family: "Pixelify Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  margin-bottom: 18px;
}
.title__big {
  font-size: 51px;
}
.title__middle {
  font-size: 36px;
}
.title__small {
  font-size: 25px;
}

.menu__list {
  list-style: none;
  display: flex;
  justify-content: center;
  padding: 0;
  max-width: 100%;
}
.menu__el {
  flex-direction: row;
  font-size: 18px;
  margin: 0 10px;
}
.menu__el--link {
  text-decoration: none;
  font-weight: 600;
  color: var(--color-link);
  cursor: none;
}
.menu__el--link:hover {
  color: var(--color-primary);
}

.header {
  background-color: var(--color-bg);
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
}

.nav {
  margin: 0;
  padding: 10px 20px;
  max-width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.nav--hide {
  display: none;
}

.logo__style img {
  width: 50px;
  align-self: flex-start;
  cursor: none;
}

.vignettes__el {
  list-style: none;
  margin-bottom: 36px;
}

.gif {
  max-width: 100px;
  display: block;
  margin: auto;
}

.slider__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.slider__btn {
  list-style: none;
  cursor: none;
}
.slider__el {
  list-style: none;
  display: none;
}
.slider__el--show {
  display: block;
}
.slider__img {
  max-width: 200px;
  display: block;
  margin: auto;
}
.slider__controls {
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding: 0;
}

.btn {
  width: 50px;
  padding: 0 40px;
}
.btn:hover {
  animation: BtnScale 0.5s;
}

@keyframes BtnScale {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.3);
  }
  100% {
    transform: scale(1);
  }
}
.projetlist {
  list-style: none;
}

.arrow {
  width: 32px;
}
.arrow:hover {
  animation: ArrowTurn 1s;
}

@keyframes ArrowTurn {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.animgif {
  width: 100%;
  display: block;
  margin: auto;
}

.link {
  text-decoration: none;
  color: var(--color-link);
}
.link:hover {
  color: var(--color-primary);
  cursor: none;
  font-size: 28px;
}

.deco {
  background-image: url(../assets/images/herbe-start.svg);
  background-repeat: repeat-x;
  margin: 0;
  padding: 0;
  width: 100%;
  color: transparent;
}

.footer {
  background-image: url(../assets/images/herbe.svg);
  background-repeat: repeat;
  padding: 25px 0px 25px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-weight: 600;
  color: var(--color-footer);
}
.footer__credits {
  margin: 0;
  padding: 0;
}
.footer__el {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer__link {
  text-decoration: none;
  text-decoration: underline;
  color: var(--color-footer);
}
.footer__link:hover {
  color: var(--color-text);
  cursor: none;
}
.footer__dwt {
  background-color: #E3E68E;
  border: var(--color-text) 5px solid;
  border-radius: 10%;
  width: 70%;
  padding: 10px 30px;
}
.footer__credits {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.dwt {
  width: 40px;
  padding: 0;
  margin: 0;
}

.reseaux {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.reseaux__el {
  width: 100%;
}
.reseaux img {
  width: 50%;
  display: block;
  margin: auto;
}
.reseaux img:hover {
  animation: BtnScale 1s;
}
.reseaux a:hover {
  cursor: none;
}

.criteres {
  list-style: none;
  max-width: 100%;
  padding: 0;
}
.criteres__el {
  border: var(--color-text) solid 2px;
  padding: 5%;
  margin-bottom: 25px;
}

.sources {
  list-style: none;
  max-width: 100%;
  border: var(--color-text) solid 2px;
  padding: 5%;
  margin-bottom: 25px;
}

@media (min-width: 600px) {
  .body {
    height: 100vh;
    overflow: hidden;
    overflow-y: scroll;
  }

  .main {
    margin: 102px;
    padding: 0;
  }

  .wrapper {
    max-width: 100%;
    display: grid;
    grid-template-columns: 1fr 2fr;
    grid-template-rows: 1fr;
    gap: 20px;
  }
  .wrapper__one {
    grid-column: 1/2;
    grid-row: 1/3;
  }
  .wrapper__two {
    grid-column: 2/3;
    grid-row: 1/2;
  }

  .header {
    background-color: var(--color-bg);
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
  }

  .vignettes__el {
    list-style: none;
    margin-bottom: 36px;
  }

  .gif {
    max-width: 100%;
    width: 150px;
    display: block;
    margin: auto;
  }

  .animgif {
    width: 80%;
    display: block;
    margin: auto;
  }

  .slider__img {
    max-width: 300px;
  }

  .deco {
    font-size: 18px;
  }
}
@media (min-width: 800px) {
  .main {
    margin: 153px;
    padding: 0;
  }

  .criteres {
    list-style: none;
    max-width: 100%;
    padding: 0;
  }
  .criteres__el {
    border: var(--color-text) solid 2px;
    padding: 5% 10%;
    margin-bottom: 25px;
  }

  .sources {
    border: var(--color-text) solid 2px;
    padding: 5% 10%;
    margin-bottom: 25px;
  }
}
@media (min-width: 1000px) {
  .body {
    font-size: 20px;
    height: 100vh;
    overflow: hidden;
    overflow-y: scroll;
  }

  .main {
    margin: 144px;
    padding: 0;
  }

  .resize__para {
    padding: 0 20%;
    margin: 0;
  }

  .resize__gif {
    max-width: 50%;
  }

  .vignettes {
    max-width: 100%;
    display: grid;
    grid-template-columns: repeat(2, fr);
    grid-template-rows: repeat(2, fr);
    -moz-column-gap: 40px;
         column-gap: 40px;
  }
  .vignettes__el {
    border: var(--color-text) solid 2px;
    padding: 5%;
  }
  .vignettes__el--un {
    grid-column: 1/2;
    grid-row: 1/2;
  }
  .vignettes__el--deux {
    grid-column: 2/3;
    grid-row: 1/2;
  }
  .vignettes__el--trois {
    grid-column: 1/2;
    grid-row: 2/3;
  }
  .vignettes__el--quatres {
    grid-column: 2/3;
    grid-row: 2/3;
  }

  .end__big {
    margin-bottom: 80px;
  }
  .end__middle {
    margin-bottom: 57px;
  }

  .title__big {
    font-size: 57px;
  }
  .title__middle {
    font-size: 40px;
  }
  .title__small {
    font-size: 28px;
  }

  .menu__el {
    font-size: 20px;
  }

  .slider__img {
    max-width: 400px;
  }

  .btn {
    width: 70px;
  }

  .logo__style img {
    width: 70px;
  }

  .link:hover {
    font-size: 34px;
  }
}
@media (min-width: 1400px) {
  .body {
    font-size: 22px;
    height: 100vh;
    overflow: hidden;
    overflow-y: scroll;
  }

  .main {
    margin: 248px;
    padding: 0;
  }

  .resize__para {
    padding: 0 25%;
    margin: 0;
  }

  .resize__gif {
    max-width: 40%;
  }

  .vignettes {
    max-width: 100%;
    display: grid;
    grid-template-columns: repeat(2, fr);
    grid-template-rows: repeat(2, fr);
    -moz-column-gap: 40px;
         column-gap: 40px;
  }
  .vignettes__el {
    border: var(--color-text) solid 2px;
    padding: 5% 10%;
  }
  .vignettes__el--un {
    grid-column: 1/2;
    grid-row: 1/2;
  }
  .vignettes__el--deux {
    grid-column: 2/3;
    grid-row: 1/2;
  }
  .vignettes__el--trois {
    grid-column: 1/2;
    grid-row: 2/3;
  }
  .vignettes__el--quatres {
    grid-column: 2/3;
    grid-row: 2/3;
  }

  .end__big {
    margin-bottom: 88px;
  }
  .end__middle {
    margin-bottom: 62px;
  }

  .title__big {
    font-size: 62px;
  }
  .title__middle {
    font-size: 44px;
  }
  .title__small {
    font-size: 31px;
  }

  .menu__el {
    font-size: 22px;
  }

  .slider__img {
    max-width: 450px;
  }

  .btn {
    width: 70px;
  }

  .logo__style img {
    width: 75px;
  }

  .link:hover {
    font-size: 36px;
  }

  .animgif__resize {
    max-width: 60%;
  }
}

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