@charset "UTF-8";
.eight {
  font-family: "eight", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.txt_big {
  font-family: "futura-pt", sans-serif;
  font-weight: 600;
  font-style: normal;
}

img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

body {
  font-family: "futura-pt", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  line-height: 1.4;
  color: #313131;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #313131;
  position: relative;
  overflow-x: hidden;
}

/*Transition*/
.transition-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #F7F7F7;
  z-index: 100000000;
  border-bottom: 1px solid #000;
  transition: transform 0.6s ease-in-out;
  -webkit-animation: intro 1s ease-out forwards;
          animation: intro 1s ease-out forwards;
}

@-webkit-keyframes intro {
  0% {
    transform: translateY(0%);
  }
  100% {
    transform: translateY(-100%);
  }
}

@keyframes intro {
  0% {
    transform: translateY(0%);
  }
  100% {
    transform: translateY(-100%);
  }
}
#noiseCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  opacity: 0.08;
  pointer-events: none;
  z-index: 9999;
}

a {
  color: #313131;
  text-decoration: none;
}

.fond {
  flex-shrink: 0;
  border-radius: 38% 62% 63% 37%/41% 44% 56% 59%;
  background: linear-gradient(151deg, #4ED8CF 46.44%, #88DAEF 64.82%, #FEE1B9 72.52%);
  filter: blur(85px);
  -webkit-animation: animate 6s linear infinite;
          animation: animate 6s linear infinite;
}

.fond__prux {
  position: absolute;
  background: linear-gradient(151deg, #798588 23.6%, #55D5E5 33.53%, #FFF 72.52%);
  top: -10%;
  left: -10%;
  transform-origin: center;
}

.fond__janus {
  position: absolute;
  background: linear-gradient(151deg, #6E7E82 23.6%, #C398DC 33.53%, #DBD0C2 72.52%);
  top: -10%;
  left: -10%;
  transform-origin: center;
}

.fond__designFiction {
  position: absolute;
  background: linear-gradient(151deg, #8C8C8C 23.6%, #E3581C 33.53%, #CEC4C4 72.52%);
  top: -10%;
  left: -10%;
  transform-origin: center;
  border-radius: 989px;
}

.element__graphique__fond_fixe {
  position: absolute;
  z-index: -1;
  top: -16rem;
  left: -17rem;
  width: clamp(30rem, 19.1667rem + 48.1481vw, 62.5rem);
  height: clamp(30rem, 19.1667rem + 48.1481vw, 62.5rem);
  pointer-events: none;
}

.element__graphique__fond {
  position: fixed;
  z-index: -1;
  width: 300px;
  height: 300px;
  transition: 0.4s;
}

.element__graphique__fond--fullScreen--Janus {
  position: fixed;
  background: linear-gradient(151deg, #6E7E82 23.6%, #C398DC 33.53%, #DBD0C2 72.52%);
  z-index: -1;
  width: 3000px;
  height: 3000px;
  transition: 0.4s;
}

.element__graphique__fond--fullScreen--Prux {
  position: fixed;
  background: linear-gradient(151deg, #798588 23.6%, #55D5E5 33.53%, #FFF 72.52%);
  z-index: -1;
  width: 3000px;
  height: 3000px;
  transition: 0.4s;
}

.element__graphique__fond--fullScreen--DesignFiction {
  position: fixed;
  background: linear-gradient(151deg, #8C8C8C 23.6%, #E3581C 33.53%, #CEC4C4 72.52%);
  z-index: -1;
  width: 3000px;
  height: 3000px;
  transition: 0.4s;
}

@-webkit-keyframes animate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  z-index: -1;
  position: relative;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.section__nav {
  height: clamp(4.6875rem, 4.4583rem + 1.0185vw, 5.375rem);
  border: 1px solid #000;
  position: fixed;
  display: flex;
  align-items: center;
  top: 0;
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  width: 100%;
  z-index: 99900;
}
.section__nav div {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.section__nav div .logo {
  padding-left: clamp(1.375rem, 0.875rem + 2.2222vw, 2.875rem);
  position: relative;
  z-index: 99999999999999;
}
.section__nav div .button_nav {
  padding-right: clamp(1.375rem, 0.875rem + 2.2222vw, 2.875rem);
  transition: 0.3s;
  text-transform: capitalize;
  opacity: 0;
  pointer-events: none;
  display: none;
}
@media (min-width: 1080px) {
  .section__nav div .button_nav {
    opacity: 1;
    pointer-events: all;
    display: block;
  }
}
.section__nav div .button_nav a {
  padding-right: 1Opx;
}
.section__nav div .button_nav a :hover {
  border-right: 1px solid #000;
  transition: 0.3s;
}

.menu-btn {
  width: 50px;
  height: 50px;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 10;
  background: transparent;
  color: transparent;
  border: 0;
  cursor: pointer;
  z-index: 150;
}
@media (min-width: 1080px) {
  .menu-btn {
    opacity: 0;
    pointer-events: none;
  }
}

.menu-btn i {
  display: block;
  width: 100%;
  height: 10%;
  background: #313131;
  position: absolute;
  right: 0%;
  transition: all 0.3s;
}

.menu-btn i:nth-child(1) {
  top: 0%;
  transition: all 0.3s;
}

.menu-btn i:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.menu-btn i:nth-child(3) {
  bottom: 0%;
}

.menu-btn:hover i {
  background: #444;
}

.menu-btn:hover i:nth-child(1) {
  top: 10%;
}

.menu-btn:hover i:nth-child(3) {
  bottom: 10%;
}

.menu {
  display: flex;
  flex-direction: column;
}
@media (min-width: 1080px) {
  .menu {
    opacity: 0;
    pointer-events: none;
  }
}

.block__btn {
  position: absolute;
  z-index: 99909;
  height: 5em;
  position: fixed;
}
@media (min-width: 1080px) {
  .block__btn {
    opacity: 0;
    pointer-events: none;
  }
}

.menu-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: end;
  background: #ccc;
  position: fixed;
  top: 0;
  right: 100%;
  width: 50%;
  height: 100vh;
  z-index: 99800;
  border-left: 1px solid #313131;
  transition: 0.3s ease-out;
  background-color: #F7F7F7;
  border-bottom: 2px solid #313131;
  border-right: 1px solid #000;
}
@media (min-width: 1080px) {
  .menu-wrapper {
    opacity: 0;
    pointer-events: none;
  }
}
.menu-wrapper a {
  text-transform: capitalize;
}
.menu-wrapper a :hover {
  border-right: 1px solid #000;
  transition: 0.3s;
}

/* open states */
.menu-wrapper.open {
  right: 0;
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.menu-btn.open i:nth-child(1) {
  top: 50%;
  transform: rotate(45deg) translateY(-50%);
  transform-origin: right center;
  width: 50%;
}

.menu-btn.open i:nth-child(3) {
  bottom: 50%;
  transform: rotate(-45deg) translateY(50%);
  transform-origin: right center;
  width: 50%;
}

main {
  border-left: 1px solid #000;
  border-right: 1px solid #000;
  width: clamp(19.75rem, -1.75rem + 95.5556vw, 84.25rem);
}

.section {
  position: relative;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.section__header {
  display: flex;
  margin-top: clamp(4.1875rem, 3.9375rem + 1.1111vw, 4.9375rem);
  width: clamp(19.75rem, -1.75rem + 95.5556vw, 84.25rem);
}
@media (min-width: 1080px) {
  .section__header {
    flex-direction: initial;
  }
}
.section__header .section__header_prt1 {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.section__header .section__header_prt1 div {
  border-bottom: 1px solid #000;
  border-left: 1px solid #000;
  border-right: 1px solid #000;
  width: 100%;
}
@media (min-width: 1080px) {
  .section__header .section__header_prt1 div {
    border-right: 0px solid #000;
  }
}
.section__header .section__header_prt1 div h1, .section__header .section__header_prt1 div h2 {
  font-size: clamp(3.625rem, 0.875rem + 12.2222vw, 11.875rem);
  line-height: 0;
  color: #313131;
}
.section__header .section__header_prt1 .section__header_p {
  height: clamp(14.0625rem, 13.8542rem + 0.9259vw, 14.6875rem);
  display: flex;
  align-items: center;
}
.section__header .section__header_prt1 .section__header_p p {
  font-size: clamp(1.4375rem, 0.9583rem + 2.1296vw, 2.875rem);
  text-transform: uppercase;
}
.section__header .section__header_prt1 .element__graph {
  height: clamp(2.08375rem, 0.6325rem + 6.45vw, 6.4375rem);
}
.section__header .section__header_prt2 {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100%;
}
@media (min-width: 1080px) {
  .section__header .section__header_prt2 {
    flex-direction: row;
    width: clamp(19.75rem, 4.8125rem + 66.3889vw, 64.5625rem);
  }
}
.section__header .section__header_prt2 div {
  display: flex;
  align-items: center;
  width: 100%;
  border-bottom: 1px solid #000;
  border-right: 1px solid #000;
}
@media (min-width: 1080px) {
  .section__header .section__header_prt2 div {
    height: clamp(47.1875rem, 17.375rem + 44.1667vw, 57.125rem);
  }
}
.section__header .section__header_prt2 .div__h3 {
  display: flex;
  align-content: center;
  align-items: baseline;
  border-right: 1px solid #000;
  border-left: 1px solid #000;
}
.section__header .section__header_prt2 .div__h3 h3 {
  text-transform: uppercase;
  font-size: 1, 8125rem;
  line-height: 0.7;
}
.section__header .section__header_prt2 .div__p {
  display: flex;
  align-content: center;
  align-items: end;
  justify-content: end;
}
.section__header .section__header_prt2 .div__p p {
  text-transform: uppercase;
  font-size: clamp(0.6875rem, 0.625rem + 0.2778vw, 0.875rem);
  text-align: right;
}

.section__presentation {
  display: flex;
  flex-direction: column;
}
@media (min-width: 780px) {
  .section__presentation {
    flex-direction: initial;
  }
}
.section__presentation div {
  height: clamp(19.8125rem, 10.7292rem + 40.3704vw, 47.0625rem);
}
.section__presentation div .img__presentation {
  opacity: 0.4;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
}
.section__presentation .presentation__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #000;
  width: clamp(19.75rem, 9.625rem + 45vw, 50.125rem);
}
.section__presentation .presentation__text p {
  font-size: clamp(1rem, 0.9583rem + 0.1852vw, 1.125rem);
  width: clamp(18.0625rem, 13.4167rem + 20.6481vw, 32rem);
}
.section__presentation .presentation__text a {
  text-decoration: underline;
}
.section__presentation .presentation__text a:hover {
  font-style: italic;
}

.section__projets {
  height: auto;
  width: 100%;
}
.section__projets div h3 {
  font-size: clamp(2.5625rem, -0.5417rem + 13.7963vw, 11.875rem);
  line-height: 0;
  padding-top: 331, 1px;
  pointer-events: none;
}
.section__projets a {
  width: 100%;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #000;
}
.section__projets a .section__projets__role {
  font-size: 1rem;
  font-weight: 400;
  padding-right: 11px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.section__projets a .txt__gras {
  padding-left: 11px;
  font-weight: 600;
  font-size: 2rem;
}
.section__projets .BTN:hover {
  color: #F7F7F7;
  cursor: pointer;
}
.section__projets .button3 {
  border-bottom: 1px solid #000;
}

.section__contact {
  display: flex;
  flex-direction: column;
  align-items: start;
}
.section__contact h3 {
  font-size: clamp(2.25rem, 1.0417rem + 5.3704vw, 5.875rem);
  line-height: 0;
  padding-top: 12.125rem;
}
.section__contact div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border-top: 1px solid #000;
}
.section__contact div .txt__gras {
  padding-left: 11px;
  font-weight: 600;
  font-size: 2rem;
}

footer {
  position: relative;
  left: 0;
  width: 100%;
  background-color: #313131;
  color: #F7F7F7;
  height: 10rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
footer .element_footer {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
@media (min-width: 680px) {
  footer .element_footer {
    flex-direction: initial;
  }
}
footer .element_footer a {
  color: #F7F7F7;
  padding-left: 2rem;
  padding-right: 2rem;
}
footer .element_footer a:hover {
  text-decoration: underline;
  transition: 0.3s;
}
footer .element_footer .copyright {
  font-size: 11px;
  color: #F7F7F7;
}

.section__header__CS {
  display: flex;
  flex-direction: column;
  margin-top: clamp(4.1875rem, 3.9375rem + 1.1111vw, 4.9375rem);
  border-left: 1px solid #000;
  border-right: 1px solid #000;
}
.section__header__CS div {
  width: 100%;
  border-bottom: 1px solid #000;
}
.section__header__CS div h1 {
  font-size: clamp(2.75rem, 1.4792rem + 5.6481vw, 6.5625rem);
  line-height: 0.9;
  padding-top: 15rem;
  padding-left: 1rem;
}
@media (min-width: 680px) {
  .section__header__CS div h1 {
    padding-top: 0rem;
  }
}
.section__header__CS .prt2__header__CS {
  width: clamp(19.75rem, -1.75rem + 95.5556vw, 84.25rem);
  height: auto;
  display: flex;
  justify-content: space-between;
  flex-direction: column-reverse;
}
@media (min-width: 680px) {
  .section__header__CS .prt2__header__CS {
    flex-direction: initial;
  }
}
.section__header__CS .prt2__header__CS .txt {
  display: flex;
  align-items: end;
  justify-content: center;
}
@media (min-width: 680px) {
  .section__header__CS .prt2__header__CS .txt {
    width: clamp(10.8125rem, 8.7083rem + 9.3519vw, 17.125rem);
  }
}
.section__header__CS .prt2__header__CS .img__header__CS {
  width: clamp(19.75rem, 3.9583rem + 70.1852vw, 67.125rem);
  height: clamp(10.8125rem, 2.1667rem + 38.4259vw, 36.75rem);
  background-color: #55D5E5;
}

.section__miseSituation {
  width: clamp(19.75rem, -1.75rem + 95.5556vw, 84.25rem);
}
.section__miseSituation div h2 {
  line-height: 82%;
  font-size: clamp(3.25rem, 0.8125rem + 10.8333vw, 10.5625rem);
  border-bottom: 1px solid #000;
  padding-bottom: 7rem;
  padding-top: 7rem;
  padding-left: 1rem;
  margin: 0;
}
.section__miseSituation .txt__CS {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-bottom: 5rem;
  padding-top: 5rem;
  border-bottom: 1px solid #000;
}
.section__miseSituation .txt__CS p {
  width: clamp(18.125rem, 7.5rem + 47.2222vw, 50rem);
}

.section__priseContact {
  width: clamp(19.75rem, -1.75rem + 95.5556vw, 84.25rem);
}
.section__priseContact .title__pC {
  display: flex;
  align-self: flex-start;
  font-size: clamp(1.8125rem, 0.2292rem + 7.037vw, 6.5625rem);
  margin: 0;
  border-bottom: 1px solid #000;
  width: 100%;
  line-height: 1.1;
}
.section__priseContact .title__pC h3 {
  align-self: flex-start;
  padding-left: 1rem;
}
.section__priseContact .txt__pC {
  display: flex;
  justify-content: space-between;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-bottom: 1px solid #000;
}
@media (min-width: 680px) {
  .section__priseContact .txt__pC {
    flex-direction: initial;
  }
}
.section__priseContact .txt__pC div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: clamp(19.75rem, 12.2917rem + 33.1481vw, 42.125rem);
  height: auto;
}
@media (min-width: 680px) {
  .section__priseContact .txt__pC div {
    height: clamp(19.75rem, 12.2917rem + 33.1481vw, 42.125rem);
  }
}
.section__priseContact .txt__pC div p {
  width: clamp(18.0625rem, 13.4167rem + 20.6481vw, 32rem);
  font-size: clamp(1rem, 0.9583rem + 0.1852vw, 1.125rem);
  height: auto;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
@media (min-width: 680px) {
  .section__priseContact .txt__pC div p {
    padding-left: 3rem;
    padding-right: 1rem;
  }
}
.section__priseContact .txt__pC .img__pC {
  width: clamp(19.75rem, 12.2917rem + 33.1481vw, 42.125rem);
  height: clamp(19.75rem, 12.2917rem + 33.1481vw, 42.125rem);
  background-color: #55D5E5;
}
.section__priseContact .petit_img__pC {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  justify-content: center;
}
.section__priseContact .petit_img__pC div {
  width: 100%;
}
@media (min-width: 680px) {
  .section__priseContact .petit_img__pC {
    flex-direction: initial;
  }
}
.section__priseContact .petit_img__pC div {
  width: clamp(19.75rem, 16.9792rem + 12.3148vw, 28.0625rem);
  height: clamp(9.5rem, 8.125rem + 6.1111vw, 13.625rem);
  padding: 20px;
}
@media (min-width: 780px) {
  .section__priseContact .petit_img__pC div {
    border-bottom: 1px solid #000;
    border-right: 1px solid #000;
  }
}
.section__priseContact .petit_img__pC div img {
  -o-object-fit: contain;
     object-fit: contain;
}

.section__problèmeMajeurs div h3 {
  font-size: clamp(1.8125rem, -0.0417rem + 8.2407vw, 7.375rem);
  line-height: 82%;
  padding-bottom: 6rem;
  padding-top: 6rem;
  padding-left: 1rem;
  margin: 0;
  border-bottom: 1px solid #000;
  width: 100%;
}
.section__problèmeMajeurs .txt_big {
  width: 100%;
  border-bottom: 1px solid #000;
}
.section__problèmeMajeurs .txt_big p {
  font-size: clamp(1.125rem, 1.0208rem + 0.463vw, 1.4375rem);
  width: clamp(17.8125rem, 4.3125rem + 60vw, 58.3125rem);
  padding-left: 1rem;
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.section__problèmeMajeurs .txt {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: left;
  padding-top: 6rem;
  padding-bottom: 6rem;
  width: 100%;
  border-bottom: 1px solid #000;
}
@media (min-width: 969px) {
  .section__problèmeMajeurs .txt {
    flex-direction: initial;
  }
}
.section__problèmeMajeurs .txt p {
  width: clamp(17.3125rem, 12.25rem + 22.5vw, 32.5rem);
  font-size: clamp(1rem, 0.9583rem + 0.1852vw, 1.125rem);
  padding-left: 1rem;
}

.section__premieresIdees div {
  width: 100%;
  border-bottom: 1px solid #000;
}
.section__premieresIdees div h3 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  padding-left: 1rem;
  margin: 0;
  font-size: clamp(1.8125rem, -0.0417rem + 8.2407vw, 7.375rem);
}
.section__premieresIdees .img__premieresIdees {
  width: 100%;
}
.section__premieresIdees .img__premieresIdees img {
  height: clamp(14.5625rem, 10.5208rem + 17.963vw, 26.6875rem);
  background-color: #3B4649;
  display: block;
}
.section__premieresIdees .txt {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.section__premieresIdees .txt .txt_g {
  font-size: clamp(1.125rem, 0.9583rem + 0.7407vw, 1.625rem);
}
.section__premieresIdees .txt p {
  width: clamp(17.9375rem, 11.5625rem + 28.3333vw, 37.0625rem);
}

.section__miseCommun {
  width: 100%;
  position: relative;
}
.section__miseCommun div h3 {
  font-size: clamp(3.25rem, 0.8125rem + 10.8333vw, 10.5625rem);
  border-bottom: 1px solid #000;
  line-height: 0.9;
  margin: 0;
  padding-bottom: 7rem;
  padding-top: 7rem;
  padding-left: 1rem;
}
.section__miseCommun .bloc__txt {
  width: 100%;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #000;
}
.section__miseCommun .bloc__txt .txt {
  border-right: 1px solid #000;
}
.section__miseCommun .bloc__txt .txt p {
  width: 100%;
}
@media (min-width: 680px) {
  .section__miseCommun .bloc__txt {
    flex-direction: initial;
  }
}
.section__miseCommun .bloc__txt .txt {
  font-size: clamp(1rem, 0.8542rem + 0.6481vw, 1.4375rem);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 0.5;
}
@media (min-width: 680px) {
  .section__miseCommun .bloc__txt .txt {
    width: clamp(19.75rem, 15.375rem + 19.4444vw, 32.875rem);
  }
}
.section__miseCommun .bloc__txt .txt p {
  width: 100%;
}
@media (min-width: 680px) {
  .section__miseCommun .bloc__txt .txt p {
    width: clamp(16.6875rem, 14.5rem + 9.7222vw, 23.25rem);
  }
}
.section__miseCommun .bloc__txt .img__miseCommun {
  width: 100%;
  height: clamp(13.5rem, 6.1667rem + 32.5926vw, 35.5rem);
  background-color: #55D5E5;
}
@media (min-width: 680px) {
  .section__miseCommun .bloc__txt .img__miseCommun {
    width: clamp(19.75rem, 9.2083rem + 46.8519vw, 51.375rem);
  }
}

.section__approfondissement div {
  border-bottom: 1px solid #000;
  width: 100%;
  display: flex;
  align-items: end;
  justify-content: center;
}
.section__approfondissement div h4 {
  font-size: clamp(1.25rem, 0.4583rem + 3.5185vw, 3.625rem);
  padding-top: 15rem;
}
.section__approfondissement .txt {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: left;
  padding-left: 0.5rem;
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.section__approfondissement .txt p {
  font-size: clamp(1rem, 0.9583rem + 0.1852vw, 1.125rem);
  width: clamp(17.3125rem, 2.25rem + 66.9444vw, 62.5rem);
}

.mockup {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: initial;
}
.mockup div {
  width: 50%;
  height: 100%;
}

.section__debut {
  border-bottom: 1px solid #000;
}
.section__debut .img__pC {
  overflow: hidden;
}

.button_website {
  border-top: 1px solid #000;
  transition: 0.4s;
}
@media (min-width: 780px) {
  .button_website {
    border: none;
  }
}
.button_website a:hover {
  color: #F7F7F7;
  transition: 0.4s;
}

.section__credits {
  line-height: 1.5;
}
.section__credits .dernier_el {
  margin-bottom: 7rem;
}
.section__credits li {
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
}

.conteneur_title_DF {
  width: 310px;
}
.conteneur_title_DF .img__header__CS {
  width: 100%;
}
.conteneur_title_DF .title_DF {
  font-size: clamp(2rem, 0.4792rem + 6.7593vw, 6.5625rem);
}
@media (min-width: 491px) {
  .conteneur_title_DF {
    width: 100%;
  }
}

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