html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background-color: #DDBC85;
  overflow-x: hidden;
  width: 100%;
}

h1 {
  font-family: "climate-crisis-variable", sans-serif;
  font-variation-settings: "YEAR" 1979;
  font-size: clamp(2.1875rem, 1.9196rem + 1.3393vw, 3.125rem);
  text-align: left;
  letter-spacing: 2px;
  color: #2C2A25;
  margin: 0 0 50px;
}

h2 {
  font-family: "climate-crisis-variable", sans-serif;
  font-variation-settings: "YEAR" 1979;
  font-size: clamp(1.8125rem, 1.5982rem + 1.0714vw, 2.5625rem);
  text-align: right;
  letter-spacing: 2px;
  color: #2C2A25;
  margin: 0 0 12.5px;
}

p {
  font-family: "Route159", sans-serif;
  font-weight: 400;
  font-size: clamp(1.25rem, 1.1786rem + 0.3571vw, 1.5rem);
  max-width: 60ch;
  text-align: left;
  color: #2C2A25;
  margin: 0;
}

figcaption {
  font-family: "Route159", sans-serif;
  font-weight: 400;
  text-align: right;
  color: #2C2A25;
  font-size: clamp(0.875rem, 0.7679rem + 0.5357vw, 1.25rem);
}

h1, h2, p {
  padding: 0 2%;
}

.header {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: right;
  align-items: center;
  padding: 20px 2% 0;
  box-sizing: border-box;
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
}

.header__btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6.5px;
  transition: transform 0.4s ease-in-out;
}
.header__btn span {
  display: block;
  width: 32px;
  height: 3px;
  fill: red;
  background: #2C2A25;
  transition: transform 0.35s ease-in-out;
  transform-origin: center;
}
@media (min-width: 600px) {
  .header__btn span {
    width: 44px;
  }
}
.header__btn:hover {
  transform: scale(1.1);
}
.header__btn:hover span {
  background: #541E12;
}

.header__btn--open .header__rod:first-child {
  opacity: 0;
  transform: scaleX(0);
}
.header__btn--open .header__rod:last-child {
  opacity: 0;
  transform: scaleX(0);
}
.header__btn--open .header__rod:nth-child(2) {
  transform: translateY(4.75px) rotate(45deg);
}
.header__btn--open .header__rod:nth-child(3) {
  transform: translateY(-4.75px) rotate(-45deg);
}

.header__menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #DDBC85;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  z-index: 2;
  transform: translateY(-100%);
  transition: 0.2s ease-in-out;
}

.header__menu--open {
  transform: translateY(0);
  visibility: visible;
}

.header__el {
  margin: 20px 0;
  font-family: "climate-crisis-variable", sans-serif;
  font-variation-settings: "YEAR" 1979;
}
.header__el a {
  color: #2C2A25;
  text-decoration: none;
  font-size: clamp(2.1875rem, 1.5023rem + 3.4259vw, 4.5rem);
  transition: 0.3s ease;
}
.header__el a:hover {
  color: #541E12;
}

.entry {
  background: #F1D4B6;
  background: linear-gradient(180deg, rgb(241, 212, 182) 0%, rgb(221, 188, 133) 50%);
  min-height: 100vh;
  max-height: 100vh;
  width: 100vw;
  display: flex;
  flex-flow: column;
  justify-content: center;
}
.entry h1 {
  font-family: "climate-crisis-variable", sans-serif;
  font-variation-settings: "YEAR" 1979;
  font-size: clamp(2.5625rem, 1.1974rem + 7.2807vw, 7.75rem);
  text-align: left;
  color: #2C2A25;
  margin: 0 0 0 2%;
  max-width: 1440px;
  display: flex;
  flex-flow: column;
  justify-content: center;
}

.entry__svg {
  scale: 2;
  cursor: pointer;
  align-self: center;
  position: absolute;
  bottom: 7%;
  color: #2C2A25;
  transform-origin: 50% 15%;
  -webkit-animation: rotate 2s ease-in-out infinite alternate;
          animation: rotate 2s ease-in-out infinite alternate;
  transition: 0.2s ease-in-out;
}
@media (min-width: 600px) {
  .entry__svg {
    scale: 3;
  }
}

.entry__svg:hover {
  color: #541E12;
}

@-webkit-keyframes rotate {
  from {
    transform: rotate(-45deg);
  }
  to {
    transform: rotate(45deg);
  }
}

@keyframes rotate {
  from {
    transform: rotate(-45deg);
  }
  to {
    transform: rotate(45deg);
  }
}
.content {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  margin-top: 25vh;
  color: #2C2A25;
  width: 100%;
}

.ordres, .cadre, .idee, .equipe {
  z-index: 1;
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}

.ordres {
  margin-bottom: 100px;
}

.diagonalTop {
  position: relative;
  left: 0;
  width: 100vw;
  z-index: 0;
  transform: skewY(-7deg);
}

.diagonalTop--1 {
  position: relative;
  width: 100%;
  height: 40px;
  background-color: #F1D4B6;
  box-shadow: 0px 5px rgba(0, 0, 0, 0.2);
}

.diagonalTop--2 {
  position: relative;
  top: 3vh;
  width: 100%;
  height: 40px;
  background-color: #F1D4B6;
  box-shadow: 0px 5px rgba(0, 0, 0, 0.2);
}

.bold {
  font-weight: 700;
}

.cadre__text {
  margin-bottom: 25px;
}

.cadre p:last-child {
  margin-bottom: 100px;
}

.image {
  width: 75vw;
  max-width: 600px;
  margin: 50px auto;
  display: flex;
  flex-flow: column;
}
.image img {
  width: 100%;
  max-width: 600px;
}

.enquete {
  padding: 50px 0 75px;
}

.conseil {
  background-color: #541E12;
  width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.conseil h1, .conseil h2, .conseil p {
  color: #E6E1DD;
  max-width: 1440px;
  width: 100%;
  box-sizing: border-box;
}
.conseil p {
  margin-bottom: 12.5px;
}

.enquete, .conseil__content {
  background-color: #541E12;
  width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.enquete h1, .enquete h2, .enquete p, .conseil__content h1, .conseil__content h2, .conseil__content p {
  color: #E6E1DD;
  max-width: 1440px;
  width: 100%;
  box-sizing: border-box;
}
.enquete p, .conseil__content p {
  margin-bottom: 12.5px;
}

.conseil p:last-child {
  margin-bottom: 100px;
}

.idee {
  position: relative;
  width: 100%;
  z-index: 5;
  margin-bottom: 150px;
}

.idee__diag {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  gap: 4vw;
  background-color: #F1D4B6;
  box-shadow: 0px 5px rgba(0, 0, 0, 0.2);
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  transform: skewY(-7deg);
  overflow: hidden;
  padding: 30px 0;
  margin-top: 50px;
  margin-bottom: 25px;
  z-index: 10;
}
.idee__diag h1 {
  margin: 0;
}
.idee__diag h1:nth-child(1) {
  font-variation-settings: "YEAR" 2050;
}
.idee__diag h1:nth-child(2) {
  font-variation-settings: "YEAR" 2040;
}
.idee__diag h1:nth-child(3) {
  font-variation-settings: "YEAR" 2030;
}
.idee__diag h1:nth-child(4) {
  font-variation-settings: "YEAR" 2010;
}
.idee__diag h1:nth-child(5) {
  font-variation-settings: "YEAR" 1979;
}

.cadre__image img,
.idee__image img,
.equipe__image img,
.conseil__image img,
.enquete__image img {
  transition: all 0.3s ease-in-out;
}

.cadre__image:nth-of-type(1) img {
  box-shadow: -10px -10px 0px #541E12;
}

.cadre__image:nth-of-type(2) img {
  box-shadow: -22px -22px 0px #541E12;
}

.cadre__image:nth-of-type(3) img {
  box-shadow: -15px -15px 0px #541E12;
}

.idee__image img {
  box-shadow: -12px -12px 0px #541E12;
}

.idee__image:nth-of-type(4) img {
  padding: 2px;
}

.equipe__image img {
  box-shadow: -28px -28px 0px #541E12;
}

.conseil__image img, .enquete__image img {
  box-shadow: -28px -28px 0px #DDBC85;
}
.conseil__image figcaption, .enquete__image figcaption {
  color: #E6E1DD;
}

.cadre__image:hover img,
.idee__image:hover img,
.equipe__image:hover img,
.conseil__image:hover img,
.enquete__image:hover img {
  transform: translate(-10px, -10px);
}

.footer {
  position: relative;
  width: 100%;
  background-color: #2C2A25;
  padding: 100px 0 60px;
  overflow: hidden;
}
.footer * {
  padding: 0 2%;
  max-width: 1440px;
}
.footer__diag {
  position: absolute;
  top: 0;
  left: 0;
}
.footer__line {
  position: absolute;
  width: 150vw;
  height: 25px;
  left: -30vw;
  background-color: #541E12;
  box-shadow: 0px 5px rgba(0, 0, 0, 0.2);
  transform: rotate(-7deg);
}
.footer__line--2 {
  top: 45px;
}
.footer__row {
  position: relative;
  z-index: 5;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 840px) {
  .footer__row {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
  }
}
.footer__row h1 {
  color: #DDBC85;
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  font-size: clamp(2.5625rem, 1.1974rem + 7.2807vw, 7.75rem);
}
@media (min-width: 840px) {
  .footer__row h1 {
    width: auto;
    margin-bottom: 0;
  }
}
.footer__row h1 span {
  line-height: 0.85;
}
.footer__anchor {
  color: #DDBC85;
  margin-bottom: 40px;
  transition: transform 0.3s ease;
}
@media (min-width: 840px) {
  .footer__anchor {
    padding-right: 5%;
    margin-bottom: 20px;
    scale: 3;
  }
  .footer__anchor svg {
    padding: 5%;
  }
}
.footer__anchor svg {
  width: 80px;
  height: 80px;
  transform: rotate(-150deg);
}
.footer__anchor:hover {
  transform: scale(1.1) rotate(10deg);
  color: #F1D4B6;
}
.footer__by {
  font-family: "climate-crisis-variable", sans-serif;
  font-variation-settings: "YEAR" 1979;
  color: #DDBC85;
  margin: 0;
  width: 100%;
  text-align: left;
  margin-top: 40px;
}
@media (min-width: 840px) {
  .footer__by {
    margin-top: 80px;
  }
}
.footer__link {
  font-family: "climate-crisis-variable", sans-serif;
  font-variation-settings: "YEAR" 1979;
  font-size: 17px;
  color: #DDBC85;
  margin: 0;
  width: 100%;
  text-align: left;
  margin-top: 40px;
  cursor: pointer;
  z-index: 5;
  transition: transform 0.3s ease;
}
.footer__link:hover {
  color: #F1D4B6;
}
@media (min-width: 840px) {
  .footer__link {
    margin-top: 80px;
  }
}

@media (min-width: 840px) {
  .cadre, .idee__content, .equipe, .conseil__content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 20px;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 2%;
    box-sizing: border-box;
  }

  .cadre {
    margin-bottom: 50px;
  }

  .idee {
    margin-bottom: 200px;
  }

  h2 {
    text-align: left;
  }

  .cadre__image, .idee__image {
    width: 100%;
    max-width: 600px;
    margin: 0;
    justify-self: center;
    position: relative;
    z-index: 1;
  }

  .image img {
    width: 100%;
    height: auto;
  }

  .cadre__title {
    grid-column: 1/2;
  }
  .cadre__subtitle:nth-of-type(1) {
    grid-column: 1/2;
    grid-row: 2;
  }
  .cadre__text:nth-of-type(1) {
    grid-column: 2/4;
    grid-row: 2;
  }
  .cadre .cadre__image:nth-of-type(1) {
    grid-column: 1/2;
    grid-row: 3/5;
  }
  .cadre__subtitle:nth-of-type(2) {
    grid-column: 2/3;
    grid-row: 3;
  }
  .cadre__text:nth-of-type(2) {
    grid-column: 3/4;
    grid-row: 3;
  }
  .cadre__text:nth-of-type(3) {
    grid-column: 2/4;
    grid-row: 4;
  }
  .cadre__text:nth-of-type(4) {
    grid-column: 1/3;
    grid-row: 5;
  }
  .cadre .cadre__image:nth-of-type(2) {
    grid-column: 3/4;
    grid-row: 5;
  }
  .cadre__text:nth-of-type(5) {
    grid-column: 1/2;
    grid-row: 6;
  }
  .cadre .cadre__image:nth-of-type(3) {
    grid-column: 2/3;
    grid-row: 6;
  }
  .cadre__text:nth-of-type(6) {
    grid-column: 3/4;
    grid-row: 6;
  }

  .idee {
    overflow: visible;
    z-index: 5;
  }
  .idee .idee__image:nth-of-type(1) {
    grid-column: 1/2;
    grid-row: 6/9;
  }
  .idee__subtitle:nth-of-type(1) {
    grid-column: 2/4;
    grid-row: 2;
  }
  .idee__text:nth-of-type(1) {
    grid-column: 2/4;
    grid-row: 3;
  }
  .idee__subtitle:nth-of-type(2) {
    grid-column: 1/3;
    grid-row: 4;
  }
  .idee__text:nth-of-type(2) {
    grid-column: 1/3;
    grid-row: 5;
  }
  .idee__text:nth-of-type(3) {
    grid-column: 2/4;
    grid-row: 6;
  }
  .idee .idee__image:nth-of-type(2) {
    grid-column: 3/4;
    grid-row: 4/6;
  }
  .idee .idee__image:nth-of-type(2) img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .idee__subtitle:nth-of-type(3) {
    grid-column: 2/3;
    grid-row: 7;
  }
  .idee__text:nth-of-type(4) {
    grid-column: 2/4;
    grid-row: 8;
  }
  .idee .idee__image:nth-of-type(3) {
    grid-column: 3/4;
    grid-row: 9/12;
  }
  .idee__subtitle:nth-of-type(4) {
    grid-column: 1/2;
    grid-row: 9;
  }
  .idee__text:nth-of-type(5) {
    grid-column: 1/3;
    grid-row: 10;
  }
  .idee .idee__image:nth-of-type(4) {
    grid-column: 1/2;
    grid-row: 11/13;
  }
  .idee__subtitle:nth-of-type(5) {
    grid-column: 2/3;
    grid-row: 11;
  }
  .idee__text:nth-of-type(6) {
    grid-column: 2/4;
    grid-row: 12;
  }

  .equipe h1 {
    grid-column: 1/2;
    grid-row: 1;
  }
  .equipe p {
    grid-column: 2/4;
    grid-row: 1;
    align-self: center;
    justify-self: center;
  }
  .equipe__image {
    grid-column: 1/4;
    grid-row: 2;
  }

  .conseil__content .conseil__text:nth-of-type(1) {
    grid-column: 1/3;
    grid-row: 1;
    align-self: flex-end;
  }
  .conseil__content .conseil__text:nth-of-type(2) {
    grid-column: 1/3;
    grid-row: 2;
    align-self: flex-start;
  }
  .conseil__content .conseil__image {
    grid-column: 3/4;
    grid-row: 1/3;
    max-width: 400px;
  }
}
.credit {
  display: flex;
  flex-flow: column;
  justify-items: center;
  margin-bottom: 25vh;
}
.credit__el {
  font-family: "Route159", sans-serif;
  font-weight: 400;
  font-size: clamp(1.25rem, 1.1786rem + 0.3571vw, 1.5rem);
  max-width: 60ch;
  text-align: left;
  color: #2C2A25;
  margin: 0;
}
.credit__el a {
  font-family: "Route159", sans-serif;
  font-weight: 400;
  font-size: clamp(1.25rem, 1.1786rem + 0.3571vw, 1.5rem);
  color: #2C2A25;
}

@font-face {
  font-family: "Route159";
  src: url("../assets/fonts/Route159-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Route159";
  src: url("../assets/fonts/Route159-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

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