:root {
  --color-principale: #f74726;
  --color-secondaire: #faf3d9;
  --color-textdark: #000000;
  --color-textlight: #ffffff;
}

:root {
  --text-mobile-h1: 61px;
  --text-mobile-h2: 41px;
  --text-mobile-h3: 27px;
  --text-mobile-sub: 18px;
  --text-mobile-p: 18px;
  --text-mobile-h4: 18px;
}

:root {
  --text-tab-h1: 137px;
  --text-tab-h2: 61px;
  --text-tab-h3: 41px;
  --text-tab-sub: 27px;
  --text-tab-h4: 27px;
}

:root {
  --text-desktop-h1: 200px;
  --text-desktop-h2: 68px;
  --text-desktop-h3: 45px;
  --text-desktop-h4: 30px;
  --text-desktop-sub: 30px;
  --text-desktop-p: 20px;
  --text-desktop-s: 18px;
}

* {
  margin: 0;
  padding: 0;
}

html,
body {
  overflow-x: hidden;
}

body {
  font-family: "Satoshi", sans-serif;
  font-size: var(--text-mobile-p);
  line-height: auto;
  background-color: var(--color-secondaire);
  margin: 0;
}

@media (min-width: 1200px) {
  body {
    font-size: var(--text-desktop-p);
  }
}
.section__padding {
  margin-top: 91px;
}

@media (min-width: 768px) {
  .section__padding {
    margin-top: 137px;
  }
}
@media (min-width: 1200px) {
  .section__padding {
    margin-top: 228px;
  }
}
.section__width {
  max-width: 370px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .section__width {
    max-width: 750px;
    padding-left: 2%;
    padding-right: 2%;
  }
}
@media (min-width: 1200px) {
  .section__width {
    max-width: 1300px;
  }
}
footer .footer__width {
  max-width: 370px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  footer .footer__width {
    max-width: 750px;
    padding-left: 1%;
    padding-right: 1%;
  }
}
@media (min-width: 1200px) {
  footer .footer__width {
    max-width: 1300px;
  }
}
h1 {
  font-family: "piepie", sans-serif;
  font-style: normal;
  font-weight: 400;
}

h2,
h3,
h4 {
  font-family: "nove", sans-serif;
  font-style: normal;
  font-weight: 400;
  color: var(--color-principale);
}

h2 {
  font-size: var(--text-mobile-h2);
  text-align: center;
}

@media (min-width: 768px) {
  h2 {
    font-size: var(--text-tab-h2);
    text-align: start;
  }
}
@media (min-width: 1200px) {
  h2 {
    font-size: var(--text-desktop-h2);
  }
}
h3 {
  font-size: var(--text-mobile-h3);
}

@media (min-width: 768px) {
  h3 {
    font-size: var(--text-tab-h3);
  }
}
@media (min-width: 1200px) {
  h3 {
    font-size: var(--text-desktop-h3);
  }
}
.bloc__title--h2 {
  margin-bottom: var(--text-mobile-h2);
}

@media (min-width: 768px) {
  .bloc__title--h2 {
    margin-bottom: var(--text-tab-h2);
  }
}
@media (min-width: 1200px) {
  .bloc__title--h2 {
    margin-bottom: var(--text-desktop-h2);
  }
}
header {
  height: 100vh;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

@media (min-width: 1200px) {
  header {
    max-width: 1300px;
    padding-left: 2%;
    padding-right: 2%;
  }
}
@media (min-width: 1300px) {
  header {
    padding-left: 0%;
    padding-right: 0%;
  }
}
header .bloc__menu--desktop {
  display: none;
}

header .menu__ul {
  font-family: Nove;
  list-style: none;
  font-size: var(--text-mobile-p);
}
header .menu__ul a {
  text-decoration: none;
  color: var(--color-secondaire);
}

header .menu__nav--mobile .menu__ul .menu__li a:hover {
  background-color: var(--color-secondaire);
  color: var(--color-principale);
}

@media (min-width: 1200px) {
  header .bloc__menu--desktop {
    display: block;
    margin-top: 5px;
  }

  header .bloc__menu--desktop {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  header img {
    width: 100px;
  }

  header .menu__ul {
    display: flex;
    gap: 30px;
    font-size: var(--text-desktop-p);
  }
  header .menu__ul a {
    color: var(--color-principale);
  }
  header .menu__ul a:hover {
    text-decoration: underline;
  }

  header .bloc__menu--mobile {
    display: none;
  }
}
header button {
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: 100;
}

header .bloc__menu--mobile .div__nav {
  background-color: var(--color-principale);
  display: inline-block;
  height: 100vh;
  width: 100vw;
  box-sizing: border-box;
  z-index: 10;
}

@media (min-width: 768px) {
  header .bloc__menu--mobile .div__nav {
    width: 50vw;
  }
}
header .menu__nav--mobile .menu__ul {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  margin: 0;
  padding: 0;
}

header .menu__nav--mobile .menu__ul .menu__li {
  padding: 0;
  margin: 0;
  overflow: hidden;
  position: relative;
}

header .menu__nav--mobile .menu__ul .menu__li::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: var(--color-secondaire);
  top: 0;
  left: 0;
}

header .menu__nav--mobile .menu__ul .menu__li--after::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: var(--color-secondaire);
  bottom: 0;
  left: 0;
}

header .menu__nav--mobile .menu__ul .menu__li a {
  display: block;
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
  text-align: center;
  background-color: var(--color-principale);
  color: var(--color-secondaire);
  transition: all 0.3s ease-in-out;
}

header .menu__nav--mobile .menu__ul .menu__li a:hover {
  background-color: var(--color-secondaire);
  color: var(--color-principale);
}

header .div__nav--mobile {
  position: absolute;
  top: 0;
  left: -1000px;
  transition: all 0.8s ease-in-out;
}

header .div__nav--mobile.menu--open {
  left: 0;
  transition: all 0.5s;
}

header .div__nav--mobile .div__logo {
  display: flex;
  justify-content: center;
  margin: 45px 0;
}
header .div__nav--mobile .div__logo img {
  width: 150px;
}

header .burger-menu {
  background-color: transparent;
  border: none;
  font-size: 40px;
  color: var(--color-principale);
}

header .bloc__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* Centre parfaitement */
  text-align: center;
}
header .bloc__title img {
  width: 200px;
}
header .bloc__title h1 {
  color: var(--color-principale);
  font-size: var(--text-mobile-h1);
  line-height: 1.3;
}
header .bloc__title p {
  font-size: var(--text-mobile-sub);
  font-style: normal;
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
}

@media (min-width: 768px) {
  header .bloc__title img {
    width: 300px;
  }
  header .bloc__title h1 {
    font-size: var(--text-tab-h1);
  }
  header .bloc__title p {
    font-size: var(--text-tab-sub);
  }
}
@media (min-width: 1200px) {
  header .bloc__title .div__logo {
    display: none;
  }
  header .bloc__title h1 {
    font-size: var(--text-desktop-h1);
  }
  header .bloc__title p {
    font-size: var(--text-desktop-sub);
  }
}
.section__1 {
  position: relative;
  padding-bottom: 270px;
}

@media (min-width: 768px) {
  .section__1 {
    padding-bottom: 400px;
  }
}
@media (min-width: 1200px) {
  .section__1 {
    padding-bottom: 0px;
  }
}
.section__1 .grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -moz-column-gap: 18px;
       column-gap: 18px;
}

.section__1 .bloc__title--h2,
.section__1 .div__para {
  grid-column: 1/13;
}
.section__1 .bloc__title--h2 p:first-child,
.section__1 .div__para p:first-child {
  margin-bottom: 27px;
}

@media (min-width: 768px) {
  .section__1 .div__para {
    grid-column: 3/13;
  }
}
@media (min-width: 1200px) {
  .section__1 .div__para {
    grid-column: 1/11;
  }
  .section__1 .div__para p:first-child {
    margin-bottom: 27px;
  }
}
@media (min-width: 1350px) {
  .section__1 .div__para {
    grid-column: 1/12;
  }
}
.section__1 .div__img img {
  position: absolute;
  width: 315px;
  left: 0;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}

.section__1 .div__para {
  padding-bottom: 41px;
}

@media (min-width: 768px) {
  .section__1 .div__img img {
    height: 400px;
    width: 450px;
    -o-object-fit: cover;
       object-fit: cover;
  }

  .section__1 .div__para {
    padding-bottom: 61px;
  }
}
@media (min-width: 1200px) {
  .section__1 .div__img img {
    top: 0;
    right: 0;
    left: auto;
    height: 100%;
    width: 650px;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }

  .section__1 .bloc__el {
    display: flex;
  }
  .section__1 .bloc__el div {
    flex: 0.5;
  }

  .section__1 .div__para {
    -moz-column-gap: 20px;
         column-gap: 20px;
    row-gap: 30px;
    padding-bottom: 0px;
  }
}
.section__2 .bloc__title--h2 h2 {
  text-align: center;
}

.section__2 .div__para {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
}
.section__2 .div__para p {
  grid-column: 1/13;
}

@media (min-width: 768px) {
  .section__2 .div__para p {
    grid-column: 3/11;
  }
}
@media (min-width: 1200px) {
  .section__2 .div__para p {
    grid-column: 4/10;
  }
}
.section__2 .content__but {
  margin-top: 30px;
  position: relative;
  display: block;
  min-height: 80vh;
  overflow: visible;
}

/* Le titre reste normal en haut */
.section__2 .but__title {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  position: relative;
  z-index: 10;
  text-align: start;
  margin-bottom: 30px;
}
.section__2 .but__title h3 {
  font-family: "Satoshi", sans-serif;
  font-weight: 900;
  color: var(--color-black);
  text-align: center;
  grid-column: 1/13;
  font-size: var(--text-mobile-p);
}

@media (min-width: 768px) {
  .section__2 .but__title h3 {
    text-align: start;
    grid-column: 3/13;
  }
}
@media (min-width: 1200px) {
  .section__2 .but__title h3 {
    font-size: var(--text-desktop-p);
    grid-column: 4/13;
  }
}
/* Les cartes deviennent superposables */
.section__2 .but {
  display: flex;
  align-items: center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  height: 50px;
  background: var(--color-principale);
  padding: 101px 40px;
  border-radius: 20px;
  filter: drop-shadow(0 5px 30px rgba(0, 0, 0, 0.25));
}
.section__2 .but h4 {
  color: var(--color-secondaire);
  font-family: "Satoshi", sans-serif;
  text-align: center;
  font-size: var(--text-mobile-h4);
  font-style: normal;
  font-weight: 900;
}

@media (min-width: 768px) {
  .section__2 .but {
    width: 50%;
    height: 120px;
    padding: 101px;
  }
  .section__2 .but h4 {
    font-size: var(--text-tab-h4);
  }
}
@media (min-width: 1200px) {
  .section__2 .but {
    width: 35%;
    height: 150px;
  }
  .section__2 .but h4 {
    font-size: var(--text-desktop-h4);
  }
}
/* ordre de superposition */
.section__2 .but1 {
  z-index: 1;
}

.section__2 .but2 {
  z-index: 2;
}

.section__2 .but3 {
  z-index: 3;
}

.section__2 .but4 {
  z-index: 4;
}

.patte1 {
  position: absolute;
  width: 50px;
  transform: rotate(65deg);
  right: 20px;
  top: 20px;
}

.patte2 {
  position: absolute;
  width: 50px;
  transform: rotate(-33deg);
  left: 20px;
  bottom: 20px;
}

@media (min-width: 1200px) {
  .patte1,
.patte2 {
    width: 100px;
  }
}
.section__2 .deco1,
.section__2 .deco2 {
  position: absolute;
  opacity: 80%;
}

.section__2 .deco1 {
  top: 0;
  width: 400px;
  left: -200px;
}

.section__2 .deco2 {
  width: 250px;
  right: -100px;
  rotate: 240deg;
  bottom: 0;
}

@media (min-width: 768px) {
  .section__2 .deco2 {
    width: 300px;
    right: -150px;
    rotate: 0deg;
  }
}
@media (min-width: 1200px) {
  .section__2 .deco2 {
    width: 350px;
    right: -200px;
  }
}
footer {
  background-color: var(--color-principale);
}

footer img {
  width: 100px;
}

footer .content__footer {
  display: flex;
  justify-content: space-between;
  padding: 45px 0;
}

footer ul {
  list-style: none;
  color: var(--color-secondaire);
}
footer ul li {
  font-size: var(--text-desktop-s);
}

footer h4 {
  color: var(--color-secondaire);
  font-size: var(--text-desktop-h4);
  margin-bottom: 10px;
}

footer button {
  border: none;
  background-color: var(--color-secondaire);
  color: var(--color-principale);
  font-weight: 700;
  text-transform: uppercase;
  padding: 20px 45px;
  border-radius: 20px;
  margin-top: 30px;
}

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