@import url(https://fonts.googleapis.com/css2?family=Syne:wght@400..800&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Inconsolata:wght@200..900&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Hind+Siliguri:wght@300;400;500;600;700&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Merriweather+Sans:ital,wght@0,300..800;1,300..800&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Satisfy&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Comfortaa:wght@300..700&family=Orbitron:wght@400..900&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Syncopate:wght@400;700&display=swap);
@charset "UTF-8";
:root {
  --color-texte-casestudy1:#FFFFFF;
  --color-menu-casestudy1: #FFFFFF;
  --color-text-casestudy1:#FFFFFF;
  --color-background-casestudy1: #111111;
  --color-header-casestudy1: #417282;
  --color-chiffres-casestudy1:#417282;
  --color-darkblue__square:#08071C;
  --color-white__square:#FFFFFF;
  --color-grey__square:#D9D9D9;
  --color-black__square:#000000;
  --color-blue__square:#46A9EE;
  --color-lightblue-casestudy1:#8FC1E3;
  --color-lightgrey__square:#F5F5F5;
  --color-darkgrey--casestudy1:#222222;
  --color-C8:#C8D9E6;
  --color-56:#567791;
  --color-50:#506F87;
  --color-91:#915756;
  --color-espacement: #FFCDCD;
  --color-btn--casestudy:#3F6D7C;
  --color-text--menu: #417282;
  --color-hover-btn:#2A4A54;
  --color-background--menu: #F3f3f3;
  --color-header-portfolio: #F1F1F1;
  --color-text-header-portfolio: #000000;
  --color-text-portfolio: #FFFFFF;
  --color-h1-portfolio: #4B8497;
  --color-btn-portfolio: #4B8497;
  --color-nav-portfolio: #4B8497;
  --color-background-portfolio: #111111;
  --color-designfiction-background: #0A0127;
  --color-text-designfiction: #FFFFFF;
  --color-cartes-designfiction: #656DC3;
  --color-texte-cartes-designfiction: #FBFCFF;
  --color-background-skills: #222222;
  --color-background-iris: #f3f3f3;
  --color-designfiction-bienvenue: #FA2E00;
  --color-designfiction-scan:#D86A00;
  --color-designfiction-connexion:#A8B400;
  --color-designfiction-choix:#3EB800;
  --color-designfiction-emotionspositives: #00B884;
  --color-designfiction-emotions:#009EEA;
  --color-designfiction-calendrier:#6680FF;
  --color-designfiction-profil:#9966FF;
  --color-designfiction-parametres:#CC66FF;
}

/*Code commun*/
* {
  box-sizing: border-box;
}

/*Téléphone*/
/*Grid*/
.grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 20px;
}

.mgrid-start1 {
  grid-column-start: 1;
}

.mgrid-start2 {
  grid-column-start: 2;
}

.mgrid-start3 {
  grid-column-start: 3;
}

.mgrid-start4 {
  grid-column-start: 4;
}

.mgrid-start5 {
  grid-column-start: 5;
}

.mgrid-end2 {
  grid-column-end: 2;
}

.mgrid-end3 {
  grid-column-end: 3;
}

.mgrid-end4 {
  grid-column-end: 4;
}

.mgrid-end5 {
  grid-column-end: 5;
}

.mgrid-end6 {
  grid-column-end: 6;
}

body {
  margin: 0;
}

h1 {
  font-size: 33px;
  margin: 0 20px;
  text-align: center;
}

h2 {
  font-size: 26px;
  margin-top: 40px;
  margin-bottom: 8px;
}

h3 {
  font-size: 20px;
}

h4 {
  font-size: 16px;
  font-weight: bold;
  margin: 16px 0 8px 0;
}

p {
  font-size: 16px;
  margin: 16px 0;
  line-height: 140%;
}

li {
  list-style: disc;
}

ol {
  padding: 0;
}

.legende {
  font-size: 12px;
  text-align: center;
}

/*Navigation*/
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--color-header-casestudy1);
  z-index: 1000;
  transition: transform 0.3s ease-in-out;
}

.nav__menu {
  position: absolute;
  top: calc(100% - 57px);
  right: 0;
  background-color: var(--color-background--menu);
  list-style: none;
  padding-top: 64px;
  margin: 0;
  display: none;
  flex-direction: column;
  gap: 16px;
  width: -moz-fit-content;
  width: fit-content;
  height: 100vh;
  border-radius: 20px 0 0 20px;
  transform: translateY(0);
  transition: transform 0.3s ease-in-out;
}

.nav__top--img {
  margin-left: 20px;
}

.nav__link {
  text-decoration: none;
  color: var(--color-text--menu);
  font-family: "syne";
  cursor: pointer;
  font-weight: 700;
  margin: 0 16px;
}

.nav__menu li {
  list-style: none;
}

.nav__menu.open {
  display: flex;
  width: 50%;
  align-items: flex-start;
}

.nav--close {
  transform: translateY(-100%);
}

.nav__line {
  display: block;
  width: 40px;
  height: 4px;
  margin: 8px;
  background-color: var(--color-menu-casestudy1);
  transition: all 0.3s ease-in-out;
}

.nav__btn {
  position: absolute;
  right: 0;
  background-color: transparent;
  border: none;
  cursor: pointer;
  margin: 0 8px;
  height: 100%;
  justify-content: center;
  z-index: 10;
}

.nav__btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(0px, 17px);
  background-color: var(--color-text--menu);
}

.nav__btn.active span:nth-child(2) {
  opacity: 0;
}

.nav__btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(0px, -17px);
  background-color: var(--color-text--menu);
}

.no-scroll {
  overflow: hidden;
  height: 100vh;
}

.nav--close .nav {
  transform: translateX(-100%);
}

/*Case study*/
.janus, .dataplay {
  background-color: var(--color-background-casestudy1);
  color: var(--color-texte-casestudy1);
  font-family: "Syne", sans-serif;
}

.janus .header, .dataplay .header {
  background-color: var(--color-header-casestudy1);
  padding-bottom: 56px;
  margin-top: 50px;
  padding-top: 16px;
}

/*Nav*/
.janus .dropbtn, .dataplay .dropbtn, .design_fiction .dropbtn {
  color: var(--color-text--menu);
}

.janus .arrow, .dataplay .arrow {
  filter: brightness(0) saturate(100%) invert(40%) sepia(34%) saturate(548%) hue-rotate(148deg) brightness(92%) contrast(86%);
}

.janus .dropdown-content, .dataplay .dropdown-content, .design_fiction .dropdown-content {
  background-color: var(--color-background--menu);
}

.janus .dropdown-content a, .dataplay .dropdown-content a {
  color: var(--color-text--menu);
}

/*Titres et textes*/
.h2__header {
  margin: 16px 20px;
  text-align: center;
}

.text__header {
  margin: 0 20px;
  text-align: center;
}

.number {
  font-size: 48px;
  font-weight: bold;
  color: var(--color-chiffres-casestudy1);
  margin: 0;
  height: -moz-fit-content;
  height: fit-content;
  transform: translate(-24px, 100%);
}

.section2__typo1 {
  font-family: "Inconsolata";
}

.section2__typo2 {
  font-family: "Hind Siliguri";
}

.section2__typo3 {
  font-family: "merriweather sans";
}

.section2__grille--colonnes--titre {
  font-weight: 700;
}

.pages {
  margin-bottom: 16px;
}

.taille_23 {
  font-size: 23px;
}

.dataplay .section3__projets h3 {
  text-align: center;
}

/*Images*/
img {
  width: 100%;
}

.arrow {
  display: inline-block;
  background-image: url(../assets/images/fleche_menu.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 19px;
  height: 19px;
  filter: invert(51%) sepia(12%) saturate(504%) hue-rotate(148deg) brightness(90%) contrast(86%);
  transform: rotate(180deg);
  margin-left: 4px;
}

.isOpen .arrow {
  transform: rotate(0deg);
}

.nav__img {
  margin-top: 20px;
  width: 22px;
  margin-bottom: 4px;
}

/*Button*/
.header__btn--accueil {
  background-color: transparent;
  border: none;
  margin-top: 16px;
}

.section4__btn {
  display: flex;
  flex-wrap: wrap;
  margin: 0 40px;
  justify-content: space-between;
}

.section4__btn--site, .section4__btn--contact {
  background-color: var(--color-btn--casestudy);
  border: none;
  padding: 8px 16px;
  border-radius: 20px;
  text-decoration: none;
  cursor: pointer;
  margin: 8px 16px 8px 0;
  color: var(--color-texte-casestudy1);
  text-decoration: none;
  font-family: "syne";
}

.section4__btn--contact {
  margin: 8px 0;
}

.insta__btn {
  margin: 24px auto;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 24px;
  font-size: 16px;
  border-radius: 10px;
  background-color: var(--color-btn--casestudy);
  margin: 10px 0;
  color: var(--color-texte-casestudy1);
  text-decoration: none;
  padding: 8px 16px;
  text-align: center;
  text-wrap: wrap;
}

.insta__btn:hover {
  background-color: var(--color-hover-btn);
}

.dropbtn {
  text-decoration: none;
  font-size: 16px;
  color: var(--color-text--menu);
  font-family: "syne";
  cursor: pointer;
  font-weight: 700;
  margin: 0 16px;
  border: none;
  background: none;
  padding: 0;
  display: flex;
  align-items: center;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: relative;
  background-color: var(--color-background--menu);
  z-index: 1;
  top: 8px;
}

.dropdown-content a {
  color: var(--color-text--menu);
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  font-size: 16px;
  margin-left: 8px;
}

.dropdown-content a:hover {
  background-color: var(--color-btn--casestudy);
  color: var(--color-background--menu);
}

.isOpen .dropdown-content {
  display: block;
}

/*Footer*/
footer {
  display: flex;
  justify-content: space-around;
  flex-direction: row;
  align-items: center;
  margin-bottom: 40px;
}

footer a {
  color: var(--color-texte-casestudy1);
  font-family: "syne";
  cursor: pointer;
}

.footer__link {
  margin: 16px 0 8px 0;
}

/*Lignes*/
.section1__title--line {
  display: block;
  height: 1px;
  background-color: white;
}

.big__line {
  display: grid;
  height: 1px;
  background-color: white;
  margin: 40px 0;
}

/*Sections*/
.janus .section1, .janus .section2, .janus .section3, .dataplay .section1, .dataplay .section2, .dataplay .section3 {
  margin: 0 40px;
}

.section2__typographie1, .section2__typographie2, .section2__typographie3 {
  margin-top: 40px;
}

/*Section1 */
.section1__numbers {
  margin-top: 80px;
}

.section1__numbers1 {
  margin-top: 0px;
}

.janus .section1__typo {
  font-family: "Inconsolata", monospace;
}

.medium {
  font-weight: 600;
}

.italic {
  font-style: italic;
}

.section1__typo--widht {
  display: flex;
}

.section1__typo--widht p {
  margin-right: 8px;
}

/*Section2*/
.section2__grille--icones {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  justify-content: space-between;
  margin-top: 16px;
}

.section2__grille--espacement {
  text-align: center;
}

/*Section3*/
.section3__btn {
  justify-content: space-evenly;
}

.section3 p {
  margin-top: 40px;
  margin-bottom: 24px;
}

/*Carrés*/
.square {
  display: block;
  margin: 16px 4px 0 4px;
  width: 40px;
  height: 40px;
  border: 1px solid #ffffff;
}

.section2__couleurs--secondaires .blue__square,
.section2__couleurs--secondaires .lightblue__square,
.section2__couleurs--secondaires .C56__square,
.section2__couleurs--secondaires .C91__square,
.section2__couleurs--secondaires .grey__square,
.section2__couleurs--secondaires .darkgrey__square,
.section2__couleurs--secondaires .lightgrey__square {
  width: 20px;
  height: 20px;
}

.empty__square {
  display: block;
  margin: 16px 4px 0 4px;
  width: 40px;
  height: 40px;
}

.darkblue__square {
  background-color: var(--color-darkblue__square);
}

.darkgrey__square {
  background-color: var(--color-darkgrey__square);
}

.white__square {
  background-color: var(--color-white__square);
}

.grey__square {
  background-color: var(--color-grey__square);
}

.lightgrey__square {
  background-color: var(--color-lightgrey__square);
}

.black__square {
  background-color: var(--color-black__square);
}

.blue__square {
  background-color: var(--color-blue__square);
}

.lightblue__square {
  background-color: var(--color-lightblue-casestudy1);
}

.C8__square {
  background-color: var(--color-C8);
}

.C56__square {
  background-color: var(--color-56);
}

.C50__square {
  background-color: var(--color-50);
}

.C91__square {
  background-color: var(--color-91);
}

.section1 .darkblue, .white, .grey, .black {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.section1__couleurs--square {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 8px auto;
  width: 100%;
}

.section2__couleurs--principales, .section2__couleurs--secondaires {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.flex {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/*Icones*/
.icones {
  width: 30px;
  height: 30px;
  margin-top: 16px;
}

/*Espacement*/
.espacement__4px {
  display: block;
  height: 4px;
  width: 100%;
  background-color: var(--color-espacement);
}

.espacement__20px {
  display: block;
  height: 20px;
  width: 100%;
  background-color: var(--color-espacement);
}

.espacement__40px {
  display: block;
  height: 40px;
  width: 100%;
  background-color: var(--color-espacement);
}

.espacement__60px {
  display: block;
  height: 60px;
  width: 100%;
  background-color: var(--color-espacement);
}

.espacement__80px {
  display: block;
  height: 80px;
  width: 100%;
  background-color: var(--color-espacement);
}

.espacement__100px {
  display: block;
  width: 100%;
  height: 100px;
  background-color: var(--color-espacement);
}

.section2__grille--espacement p {
  text-align: center;
  margin: 0;
}

/*Portfolio*/
.portfolio {
  color: var(--color-text-portfolio);
  font-family: "Syne", sans-serif;
  background-color: var(--color-background-portfolio);
}

/*Navigaion*/
.portfolio .nav {
  background-color: rgba(241, 241, 241, 0.4392156863);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}

.portfolio .nav__line {
  background-color: var(--color-text-header-portfolio);
}

/*Header*/
.portfolio .header {
  background-color: var(--color-header-portfolio);
  color: var(--color-text-header-portfolio);
}

.portfolio .header__img {
  transform: translateY(-44px);
}

.portfolio .header__text {
  margin: 0 20px;
}

/*Buttons*/
.portfolio .insta__btn {
  margin: 24px auto;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 24px;
  font-size: 16px;
}

/*Titres et textes*/
.portfolio h1 {
  font-family: "satisfy", cursive;
  color: var(--color-h1-portfolio);
  font-size: 33px;
  margin-top: 80px;
}

.portfolio h2 {
  font-size: 20px;
  text-align: center;
  z-index: 2;
  font-family: "syne", sans-serif;
  margin: 8px auto;
  max-width: 210px;
  justify-content: center;
}

.portfolio h3 {
  font-size: 20px;
}

/*Cartes projets*/
.carte {
  width: 35%;
  aspect-ratio: 0.66;
  border-radius: 20px;
  font-size: 14px;
  position: absolute;
  overflow: hidden;
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
}

.carte.center {
  width: 45%;
  z-index: 10;
  filter: none;
  filter: drop-shadow(0, 5px, 9px rgb(255, 255, 255));
}

.carte.left-1 {
  z-index: 5;
  transform: translateX(-90%);
  filter: grayscale(100%);
}
.carte.left-1:hover {
  filter: none;
}

.carte.left-2 {
  z-index: 1;
  transform: translateX(-180%);
  filter: grayscale(100%);
  display: none;
}
.carte.left-2:hover {
  filter: none;
}

.carte.right-1 {
  z-index: 5;
  transform: translateX(90%);
  filter: grayscale(100%);
}
.carte.right-1:hover {
  filter: none;
}

.carte.right-2 {
  z-index: 1;
  transform: translateX(180%);
  filter: grayscale(100%);
  display: none;
}
.carte.right-2:hover {
  filter: none;
}

.hidden {
  display: none;
}

.front-face {
  width: 100%;
  height: 100%;
}

.dataplay__carte, .gastrozen__carte, .janus__carte, .phrases__carte, .designfiction__carte {
  width: 100%;
  height: 100%;
}

.janus__carte {
  background-image: url("../assets/images/portfolio/janus.jpg");
  background-size: cover;
}

.janus .back-face {
  background-color: #08071C;
}

.dataplay__carte {
  background-image: url("../assets/images/portfolio/dataplay.jpg");
  background-size: cover;
}

.dataplay .back-face {
  background-color: #131311;
}

.gastrozen__carte {
  background-image: url("../assets/images/portfolio/perso.jpg");
  background-size: cover;
}

.gastrozen .back-face {
  background-color: #F5F2E9;
  color: var(--color-text-header-portfolio);
}

.designfiction__carte {
  background-image: url("../assets/images/portfolio/design_fiction.jpg");
  background-size: cover;
}

.designfiction .back-face {
  background-color: #0F023D;
}

.phrases__carte {
  background-image: url("../assets/images/portfolio/phrases.jpg");
  background-size: cover;
}

.phrases .back-face {
  background-color: #FFE5C4;
  color: var(--color-text-header-portfolio);
}

.back-face {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  padding-top: 10px;
}

.back-face p {
  font-size: 14px;
  margin: 5% 5%;
}

.carte__btn {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 20px;
  background-color: var(--color-btn-portfolio);
  padding: 5px 14px;
  color: var(--color-text-portfolio);
  text-decoration: none;
  margin: 8px auto 5px auto;
  font-size: 12px;
}

.gastrozen__btn {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 20px;
  background-color: grey;
  padding: 5px 14px;
  color: var(--color-text-portfolio);
  text-decoration: none;
  margin: 8px auto 5px auto;
  font-size: 12px;
  cursor: not-allowed;
}

.janus__casestudy {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  color: var(--color-text-portfolio);
  font-size: 14px;
  margin: 8px auto 15px auto;
}

.dataplay__casestudy {
  font-size: 14px;
  color: var(--color-text-portfolio);
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 8px auto 15px auto;
}

.cartes {
  width: 100%;
  height: 300px;
  position: relative;
  perspective: 1000px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.8s ease;
}

/*Section*/
.portfolio .section2 {
  margin-top: 80px;
}

.portfolio .section1 {
  margin: 80px 20px 0 20px;
}

.portfolio .section2 {
  margin: 80px 20px;
}

/*Skills*/
.skills_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.skill__ligne1 {
  margin-top: 32px;
}

.skills {
  width: 100%;
  margin-bottom: 40px;
}

.skill {
  background-color: var(--color-background-skills);
  width: 100%;
  margin-bottom: 8px;
  margin-left: 10px;
  border-radius: 10px;
  padding: 4px 0;
}

.skill p {
  margin: 8px;
  text-align: center;
}

.skills__texte {
  margin-bottom: 40px;
}

.skills__texte1 p, .skills__texte2 p {
  margin: 0;
}

.skills__texte2 {
  margin-top: 16px;
}

.skill img {
  display: block;
  width: 20%;
  margin: 8px auto;
}

/*Images*/
.section3__projets--design-fiction, .section3__projets--janus, .section3__projets--dataplay {
  height: 80%;
  width: 100%;
  overflow: hidden;
  box-shadow: 2px 2px 5px rgb(255, 255, 255);
  margin-top: 20px;
}

/*Contact*/
.contact {
  background-color: var(--color-background-skills);
  border-radius: 10px;
  width: -moz-fit-content;
  width: fit-content;
  padding: 24px 40px;
  margin: 0 auto;
}

.contact__contenu--header {
  margin: 0 auto;
  text-align: center;
}

.contact h3 {
  margin-top: 8px;
  margin-bottom: 16px;
}

.contact p {
  margin: 0;
}

.contact img {
  display: block;
  width: 15%;
  margin: 0 auto;
  text-align: center;
}

.contact a {
  text-decoration: none;
  color: var(--color-text-portfolio);
  text-align: center;
}

.contact__reseaux {
  margin-top: 16px;
  text-align: center;
}

.contact__reseaux--logo {
  margin-top: 24px;
  display: flex;
  justify-content: space-around;
}

.contact__reseaux img {
  width: 100%;
}

/*Design fiction*/
.design_fiction {
  background: linear-gradient(#07011C, #160457);
  color: var(--color-text-designfiction);
  font-family: "comfortaa";
}

.design_fiction .header {
  margin: 20px;
}

/*Titres et textes*/
.design_fiction h3, .h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 0;
  font-family: "orbitron";
}

.dropbtn__application {
  font-family: "syne";
  font-size: 18px;
  font-weight: bold;
}

.design_fiction h2 {
  margin-bottom: 40px;
  font-family: "orbitron";
  text-align: center;
}

.design_fiction h1 {
  margin-top: 65px;
  font-family: "orbitron";
}

.design_fiction p {
  margin-bottom: 8px;
  line-height: 140%;
  font-family: "syne";
}

.design_fiction .section1 p {
  margin-top: 16px;
}

.design_fiction .section1__objectif--img p {
  margin-top: 20px;
  text-align: center;
}

.design_fiction .head {
  display: flex;
  flex-direction: column;
}

/*Nav*/
.design_fiction .nav {
  background-color: #07011D;
}

/*Section*/
.design_fiction .section1, .design_fiction .section2 {
  margin: 0 40px;
}

.section1__detection, .section1__personnalisation, .section1__historique {
  margin-bottom: 40px;
}

.design_fiction .section3__projets {
  margin: 80px 40px 20px 40px;
}

.design_fiction .section3__projets h3 {
  margin: 0 20px;
}

/*slider*/
.design_fiction .section1__slide {
  display: none;
  height: 350px;
}

.design_fiction .section1__slider--arrows {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
}

.design_fiction .section1__slider--arrow {
  display: block;
  width: 40px;
  height: 40px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: pointer;
  background-repeat: no-repeat;
  background-color: white;
  border-radius: 50px;
}

.design_fiction .section1__slider--arrow img {
  filter: brightness(0) saturate(100%) invert(9%) sepia(15%) saturate(6300%) hue-rotate(227deg) brightness(95%) contrast(105%);
}

.design_fiction .section1__prev {
  transform: rotate(-90deg);
}

.design_fiction .section1__next {
  transform: rotate(90deg);
}

.section1__slider-nav {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.section1__slider-nav button {
  cursor: pointer;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  border: 1px solid #ffffff;
  margin: 0 5px;
  background-color: transparent;
}

.section1__slider-nav button.active {
  background-color: #ffffff;
}

/*Images*/
.picto {
  width: 60px;
  height: 60px;
}

.popup__content {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  width: 0;
  height: 0;
  z-index: -1;
  background-color: rgba(0, 0, 0, 0.8784313725);
}

.popup__content.open {
  width: 100vw;
  height: 100vh;
  z-index: 999999;
  opacity: 1;
  cursor: zoom-out;
}

.popup__content img {
  position: fixed;
  width: 50vw;
  opacity: 0;
  transform: scale(0);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.popup__content img.open {
  opacity: 1;
  transform: scale(1);
}

.no-scroll {
  overflow: hidden;
}

.connection__header {
  border: solid 3px white;
  width: 95%;
  margin: 0 auto 60px auto;
  display: inline-block;
  border-radius: 20px;
}

/*Header*/
.design_fiction .header {
  background-image: url("../assets/images/design_fiction/Background.png");
  margin: 0 40px 80px;
}

.design_fiction .dropdown-content a {
  font-family: "syne";
}

.design_fiction .section1__text {
  margin-bottom: 60px;
  text-align: center;
}

.design_fiction .section2__titre {
  margin-top: 60px;
}

/*Iris btn*/
.design_fiction .section1 {
  margin-bottom: 40px;
  line-height: 140%;
  margin: 0 40px 40px 40px;
}

.design_fiction .buttons__container--left, .design_fiction .buttons__container--right {
  margin-top: 8px;
  justify-content: flex-end;
}

.section1__objectif {
  background-color: #5D25AD;
  border-radius: 40px;
  padding: 20px 20px 36px 20px;
  height: -moz-fit-content;
  height: fit-content;
  min-height: 320px;
}

.section1__who {
  background-color: #BF0B98;
  border-radius: 40px;
  padding: 20px 20px 36px 20px;
  height: -moz-fit-content;
  height: fit-content;
  min-height: 320px;
}

.section1__fonctionnement {
  background-color: #1146BA;
  border-radius: 40px;
  padding: 20px 20px 36px 20px;
  height: -moz-fit-content;
  height: fit-content;
  min-height: 320px;
}

.section1__objectif--titre, .section1__who--titre, .section1__fonctionnement--titre {
  display: flex;
}

.section1__objectif--titre h3, .section1__who--titre h3, .section1__fonctionnement--titre h3 {
  margin-top: 5px;
}

.section1__who--img {
  margin-top: 16px;
  width: 100%;
}

.section1__fonctionnement--img {
  width: 80%;
  margin: 16px auto 0 auto;
}

.buttons__container {
  display: flex;
  justify-content: space-evenly;
  margin-top: 8px;
}

.section1__picto {
  width: 30px;
  height: 30px;
  border: none;
  margin-right: 10px;
  margin-bottom: 16px;
}

.buttons__container--left, .buttons__container--right {
  display: flex;
  flex-wrap: wrap;
  width: 50%;
}

.iris__btn {
  background-color: var(--color-background-iris);
  width: 40%;
  height: auto;
  border: none;
  margin-bottom: 8px;
  margin-right: 8px;
  aspect-ratio: 1/1;
  padding: 4px;
  align-items: center;
  box-shadow: -5px 5px 4px rgba(0, 0, 0, 0.5);
}

.iris__btn1 {
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 0;
}

.iris__btn2 {
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 20px;
}

.iris__btn3 {
  border-top-left-radius: 20px;
  border-top-right-radius: 0;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

.iris__btn4 {
  border-top-left-radius: 0;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

.section1 {
  margin-bottom: 40px;
}

/*Dropdown df*/
.section2__setup--gros-titre {
  font-size: 18vw;
  font-family: "syncopate";
  font-weight: bold;
  background: linear-gradient(90deg, var(--color-designfiction-bienvenue), var(--color-designfiction-scan), var(--color-designfiction-connexion), var(--color-designfiction-choix));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  text-align: center;
  margin: 0;
}

.section2__emotions--gros-titre {
  font-size: 18vw;
  font-family: "syncopate";
  font-weight: bold;
  background: linear-gradient(90deg, var(--color-designfiction-emotionspositives), var(--color-designfiction-emotions), var(--color-designfiction-calendrier));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  text-align: center;
}

.section2__profil--gros-titre {
  font-size: 18vw;
  font-family: "syncopate";
  font-weight: bold;
  background: linear-gradient(90deg, var(--color-designfiction-profil), var(--color-designfiction-parametres));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  text-align: center;
}

.dropbtn__application {
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  border: none;
}

.design_fiction .section2 h3 {
  font-family: "syne";
  margin: 0;
}

.section2__fleche {
  width: 27px;
  height: 14px;
  filter: invert(100%);
  rotate: 90deg;
  transition: rotate 0.15s ease-in-out;
}

.dropbtn__bienvenue, .dropdown-content__bienvenue {
  background-color: var(--color-designfiction-bienvenue);
}

.dropbtn__scan, .dropdown-content__scan {
  background-color: var(--color-designfiction-scan);
}

.dropbtn__connexion, .dropdown-content__connexion {
  background-color: var(--color-designfiction-connexion);
}

.dropbtn__choix, .dropdown-content__choix {
  background-color: var(--color-designfiction-choix);
}

.dropbtn__emotionspositives, .dropdown-content__emotionspositives {
  background-color: var(--color-designfiction-emotionspositives);
}

.dropbtn__emotions, .dropdown-content__emotions {
  background-color: var(--color-designfiction-emotions);
}

.dropbtn__calendrier, .dropdown-content__calendrier {
  background-color: var(--color-designfiction-calendrier);
}

.dropbtn__profil, .dropdown-content__profil {
  background-color: var(--color-designfiction-profil);
}

.dropbtn__parametres, .dropdown-content__parametres {
  background-color: var(--color-designfiction-parametres);
}

.dropdown-content__section2 {
  margin-bottom: 40px;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  color: var(--color-text-header-portfolio);
  display: flex;
  align-items: flex-start;
  overflow: hidden;
  height: 0;
  transition: height 0.3s ease-in-out;
}

.design_fiction .section2__img {
  width: 30%;
  height: auto;
  margin-right: 16px;
  max-height: 100%;
}

.dropdown-content__section2 p {
  margin-top: 20px;
  margin-right: 16px;
}

.dpdn-arrow-open img {
  rotate: 0deg;
}

/*Img*/
.section2__img--gauche {
  margin: 20px 0 40px 16px;
  border-radius: 20px;
}

.dropdown-content__emotions__img {
  border-radius: 10px;
  border: solid 3px black;
}

.section2__img--flechees {
  width: 82%;
  margin: 20px auto 40px;
}

/*Footer*/
.footer__link {
  text-decoration: none;
}

/*Crédtis*/
/*Titres et textes*/
.credits {
  font-family: "syne";
  color: var(--color-text-casestudy1);
  background-color: var(--color-background-casestudy1);
}

.credits h1, .credits h2 {
  color: var(--color-text--menu);
}

.credits h2 {
  margin: 0 0 0 40px;
}

.credits .header__contenu {
  margin: 90px 40px 0;
}

.credits li {
  margin: 16px 0;
}

/*Section*/
.credits .section1, .credits .section2, .credits .section3, .credits .section4 {
  border: 1px solid var(--color-btn--casestudy);
  padding: 40px;
  border-radius: 20px;
  margin: 40px 40px 0 40px;
}

.credits .section4__texte {
  margin: 40px 40px 40px 40px;
}

/*Nav*/
.credits .nav__link {
  text-wrap: nowrap;
  margin: 0 16px;
}

.credits .nav__menu {
  top: 0;
}

@media (min-width: 500px) and (max-width: 780px) {
  /*Portfolio*/
  .back-face {
    padding: 50px 20px;
  }

  .back-face p {
    font-size: 16px;
    margin-top: 32px;
  }

  .carte__btn, .gastrozen__btn {
    margin-top: 16px;
    margin-bottom: 16px;
    font-size: 14px;
  }

  .cartes {
    margin-top: 80px;
    margin-bottom: 80px;
  }

  .design_fiction .section1__who--img {
    width: 60%;
    margin: 16px auto 0 auto;
    display: block;
  }

  /*DF*/
  .iris__btn {
    width: 30%;
  }

  .buttons__container--left, .buttons__container--right {
    width: 30%;
  }

  .design_fiction .section1__slider--arrows {
    justify-content: space-around;
  }

  .section1__fonctionnement--img {
    width: 80%;
    margin: 16px auto 0 auto;
  }
}
/*Responsive tablette*/
@media (min-width: 780px) {
  /*Grille*/
  .grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-gap: 20px;
  }

  .tgrid-start1 {
    grid-column-start: 1;
  }

  .tgrid-start2 {
    grid-column-start: 2;
  }

  .tgrid-start3 {
    grid-column-start: 3;
  }

  .tgrid-start4 {
    grid-column-start: 4;
  }

  .tgrid-start5 {
    grid-column-start: 5;
  }

  .tgrid-start6 {
    grid-column-start: 6;
  }

  .tgrid-start7 {
    grid-column-start: 7;
  }

  .tgrid-end2 {
    grid-column-end: 2;
  }

  .tgrid-end3 {
    grid-column-end: 3;
  }

  .tgrid-end4 {
    grid-column-end: 4;
  }

  .tgrid-end5 {
    grid-column-end: 5;
  }

  .tgrid-end6 {
    grid-column-end: 6;
  }

  .tgrid-end7 {
    grid-column-end: 7;
  }

  .tgrid-end8 {
    grid-column-end: 8;
  }

  /*Commun*/
  /*Titres et textes*/
  h1 {
    font-size: 58px;
    margin-top: 64px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 25px;
  }

  h4 {
    font-size: 18px;
  }

  p {
    font-size: 18px;
  }

  li {
    font-size: 18px;
    margin: 8px 0;
  }

  /*Case study*/
  /*Titres et textes*/
  .h2__header {
    margin-top: 32px;
  }

  .number {
    position: sticky;
    top: 100px;
    font-size: 64px;
    transform: translate(-16px, -35%);
  }

  .legende {
    font-size: 14px;
    text-align: center;
  }

  .phrases {
    padding: 0;
  }

  /*Carrés*/
  .square {
    width: 82px;
    height: 82px;
    margin-top: 16px;
  }

  .empty__square {
    width: 82px;
    height: 82px;
    margin-top: 16px;
  }

  .section1__couleurs--square {
    justify-content: space-between;
  }

  .section2__couleurs--secondaires .blue__square,
.section2__couleurs--secondaires .lightblue__square,
.section2__couleurs--secondaires .C56__square,
.section2__couleurs--secondaires .C91__square,
.section2__couleurs--secondaires .grey__square,
.section2__couleurs--secondaires .darkgrey__square,
.section2__couleurs--secondaires .lightgrey__square {
    width: 60px;
    height: 60px;
  }

  .section2__couleurs {
    justify-content: space-evenly;
  }

  /*Icones*/
  .icones {
    width: 33px;
    height: 32px;
  }

  .section2__grille--icones--img {
    height: -moz-fit-content;
    height: fit-content;
    flex-wrap: wrap;
  }

  .section2__grille--icones {
    margin-top: 16px;
  }

  /*Images*/
  .logo {
    height: 51px;
    width: auto;
  }

  .janus .arrow, .dataplay .arrow {
    filter: none;
  }

  /*Buttons*/
  .section3__btn--site a, .section3__btn--projets a, .section3__btn--contact a {
    font-size: 16px;
  }

  .section3__btn {
    justify-content: space-between;
  }

  .dropbtn {
    font-size: 20px;
    color: var(--color-text-header-portfolio);
  }

  .dropdown-content a {
    margin-left: 0px;
  }

  .janus .dropbtn, .dataplay .dropbtn {
    color: var(--color-text-casestudy1);
  }

  /*Navigation*/
  .nav__btn {
    display: none;
  }

  .nav__menu {
    display: flex;
    background: none;
    flex-direction: row;
    padding: 0 8px;
    height: -moz-fit-content;
    height: fit-content;
    justify-content: space-evenly;
    top: 20px;
  }

  .nav__link {
    color: var(--color-texte-casestudy1);
  }

  a.nav__link:active {
    text-decoration: underline;
  }

  /*Section*/
  .janus .section1, .janus .section2, .janus .section3, .dataplay .section1, .dataplay .section2, .dataplay .section3 {
    margin: 0 80px;
  }

  .janus .section1__numbers, .dataplay .section1__numbers1 {
    margin-top: 140px;
  }

  /*Design fiction*/
  /*Section*/
  .design_fiction .section1 {
    margin: 0 50px 104px 50px;
  }

  .design_fiction .section2 {
    margin: 0 50px;
  }

  .section1 p {
    margin: 0;
  }

  .contenu {
    padding: 32px;
  }

  .design_fiction .dropbtn {
    color: var(--color-text-casestudy1);
  }

  .section4__btn {
    justify-content: space-around;
    margin-bottom: 16px;
  }

  .design_fiction .section1__text {
    text-align: justify;
  }

  /*Img*/
  .picto {
    width: 77px;
    height: 77px;
    margin-right: 30px;
  }

  .contenu img {
    width: 80%;
    height: auto;
    margin: 0 auto 32px auto;
    cursor: zoom-in;
  }

  .logo {
    width: 90px;
    height: auto;
    margin-top: 16px;
  }

  .janus .logo {
    width: 50px;
  }

  .iris__btn {
    width: 40%;
  }

  .popup__content img.open {
    opacity: 1;
    transform: scale(1);
    width: 40vh;
  }

  .buttons__container--left, .buttons__container--right {
    width: 15vw;
  }

  .buttons__container {
    margin-top: 16px;
  }

  .section1__objectif {
    min-height: 300px;
  }

  .section1__objectif--img {
    width: 70%;
    text-align: center;
  }

  .design_fiction .section1__objectif, .section1__who, .section1__fonctionnement {
    display: flex;
    align-items: center;
  }

  .section1__who--img {
    width: 100%;
  }

  .section1__who--text p, .section1__fonctionnement--text p {
    padding-right: 20px;
  }

  .section1__fonctionnement--image {
    border-radius: 20px;
  }

  .section3__projets--dataplay, .section3__projets--janus, .section3__projets--designfiction {
    margin-top: 40px;
  }

  .section3__projets--design-fiction {
    margin-top: 35px;
  }

  /*Gros titre df*/
  .section2__setup--gros-titre {
    writing-mode: sideways-lr;
    text-orientation: vertical-lr;
    background: linear-gradient(180deg, var(--color-designfiction-bienvenue), var(--color-designfiction-scan), var(--color-designfiction-connexion), var(--color-designfiction-choix));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-size: 10vw;
    text-align: end;
    margin: 0;
    box-sizing: border-box;
  }

  .section2__profil--gros-titre {
    writing-mode: sideways-lr;
    text-orientation: vertical-lr;
    background: linear-gradient(180deg, var(--color-designfiction-profil), var(--color-designfiction-parametres));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-size: 7vw;
    text-align: end;
    margin-top: 0;
  }

  .section2__emotions, .section2__profil {
    margin-top: 140px;
  }

  .section2__emotions--gros-titre {
    writing-mode: sideways-lr;
    text-orientation: vertical-lr;
    background: linear-gradient(180deg, var(--color-designfiction-emotionspositives), var(--color-designfiction-emotions), var(--color-designfiction-calendrier));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-size: 9.5vw;
    text-align: end;
    margin-top: 0;
  }

  .design_fiction p {
    margin-bottom: 0;
  }

  .design_fiction .header__text p {
    margin-top: 0px;
    margin-bottom: 8px;
  }

  .design_fiction .section1__slide {
    height: -moz-fit-content;
    height: fit-content;
  }

  .section1__objectif--img {
    margin: 0px auto 32px auto;
  }

  .section1__who--img {
    width: 50%;
    margin: 16px auto 0 auto;
  }

  .section1__fonctionnement--img {
    width: 40%;
  }

  .design_fiction .section1__slider--arrows {
    justify-content: space-around;
  }

  /*Portfolio*/
  /*Cartes*/
  .portfolio .carte {
    width: 20%;
  }

  .carte.center {
    width: 25%;
  }

  .carte.left-2, .carte.right-2 {
    display: block;
    width: 15%;
  }

  .back-face {
    padding: 10px 20px;
  }

  .back-face p {
    font-size: 18px;
    margin-top: 32px;
  }

  .carte__btn, .gastrozen__btn {
    margin-top: 16px;
    margin-bottom: 20px;
    font-size: 16px;
  }

  /*Nav*/
  .portfolio .nav__link {
    color: var(--color-text-header-portfolio);
  }

  .portfolio .arrow {
    filter: invert(100%);
  }

  .arrow {
    color: var(--color-text-casestudy1);
    filter: none;
  }

  .janus .dropdown-content, .dataplay .dropdown-content {
    background-color: var(--color-header-casestudy1);
  }

  .janus .dropdown-content a, .dataplay .dropdown-content a {
    color: var(--color-text-casestudy1);
  }

  .janus .dropbtn.isOpen, .dataplay .dropbtn.isOpen {
    color: var(--color-texte-casestudy1);
  }

  /*Titres et textes*/
  .portfolio h1 {
    margin-top: 64px;
  }

  .portfolio .section1 h3 {
    margin-bottom: 104px;
    margin-left: 80px;
  }

  .portfolio .section2 h3 {
    margin-top: 104px;
  }

  .portfolio .header__text p, .portfolio .insta__btn {
    transform: translateY(-50px);
  }

  .portfolio .header__text {
    height: 100vh;
  }

  /*Skills*/
  .portfolio .skill__ligne1, .portfolio .skill__ligne2 {
    display: flex;
    justify-content: space-around;
    width: 91.5%;
  }

  .portfolio .skill__ligne1 {
    transform: translateX(-8.5%);
  }

  .portfolio .skill__ligne2 {
    transform: translateX(8.5%);
  }

  .portfolio .skill {
    width: 140px;
  }

  /*Img*/
  .portfolio .header__img--paysage {
    height: 100vh;
    -o-object-fit: cover;
       object-fit: cover;
  }

  /*Button*/
  .portfolio .insta__btn {
    height: -moz-fit-content;
    height: fit-content;
  }

  /*Section*/
  .portfolio .section2 {
    margin: 80px 50px;
  }

  .portfolio .header {
    height: 100vh;
  }
}
@media (min-width: 1250px) {
  /*Grille*/
  .grid {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    grid-gap: 20px;
  }

  .pgrid-start1 {
    grid-column-start: 1;
  }

  .pgrid-start2 {
    grid-column-start: 2;
  }

  .pgrid-start3 {
    grid-column-start: 3;
  }

  .pgrid-start4 {
    grid-column-start: 4;
  }

  .pgrid-start5 {
    grid-column-start: 5;
  }

  .pgrid-start6 {
    grid-column-start: 6;
  }

  .pgrid-start7 {
    grid-column-start: 7;
  }

  .pgrid-start8 {
    grid-column-start: 8;
  }

  .pgrid-end2 {
    grid-column-end: 2;
  }

  .pgrid-end3 {
    grid-column-end: 3;
  }

  .pgrid-end4 {
    grid-column-end: 4;
  }

  .pgrid-end5 {
    grid-column-end: 5;
  }

  .pgrid-end6 {
    grid-column-end: 6;
  }

  .pgrid-end7 {
    grid-column-end: 7;
  }

  .pgrid-end8 {
    grid-column-end: 8;
  }

  .pgrid-end9 {
    grid-column-end: 9;
  }

  .pgrid-end10 {
    grid-column-end: 10;
  }

  /*Lien crédtis*/
  .footer__link:hover {
    text-decoration: underline;
    color: var(--color-btn-portfolio);
    transition: all 0.2s ease-in-out;
  }

  /*Case study*/
  /*Section*/
  .janus .section1, .janus .section2, .janus .section3, .dataplay .section1, .dataplay .section2, .dataplay .section3 {
    margin: 0 100px;
  }

  .section2__couleurs__principales {
    display: flex;
    flex-direction: row;
    justify-content: center;
    height: -moz-fit-content;
    height: fit-content;
    margin-bottom: 24px;
  }

  .section2__couleurs--secondaires {
    display: flex;
    flex-direction: row;
    height: -moz-fit-content;
    height: fit-content;
  }

  .section2__couleurs {
    height: -moz-fit-content;
    height: fit-content;
  }

  .insta__btn:hover {
    transform: rotate(5deg);
    transition: transform 0.25s ease;
    background-color: var(--color-hover-btn);
  }

  /*typo*/
  h1 {
    font-size: 62px;
    margin-top: 64px;
  }

  h2 {
    font-size: 43px;
  }

  .h2__header {
    margin-top: 32px;
  }

  h3 {
    font-size: 29px;
  }

  h4 {
    font-size: 20px;
  }

  p {
    font-size: 20px;
  }

  .number {
    font-size: 90px;
    margin-top: 8px;
  }

  li {
    font-size: 20px;
    margin: 8px 0;
  }

  .phrases {
    padding: 0;
  }

  .legende {
    font-size: 16px;
    text-align: center;
  }

  /*Btn*/
  .section4__btn {
    justify-content: space-evenly;
  }

  .section4__btn--site:hover, .section4__btn--contact:hover {
    transform: rotate(5deg);
    transition: transform 0.25s ease;
    background-color: var(--color-hover-btn);
  }

  .section3__projets--design-fiction:hover, .section3__projets--janus:hover, .section3__projets--dataplay:hover {
    transform: scale(1.2);
    transition: all 0.25s ease;
  }

  /*dropdown*/
  a.nav__link:hover, .dropbtn:hover {
    color: var(--color-text--menu);
    transition: all 0.14s ease;
  }

  .janus .dropbtn:hover, .dataplay .dropbtn:hover {
    color: var(--color-background-casestudy1);
    text-decoration: none;
  }

  .janus .dropbtn:hover .arrow, .dataplay .dropbtn:hover .arrow {
    filter: invert(100%);
  }

  .janus .nav__link:hover, .dataplay .nav__link:hover {
    color: var(--color-background-casestudy1);
    text-decoration: none;
  }

  .janus .dropdown-content a:hover, .dataplay .dropdown-content a:hover {
    color: var(--color-text-header-portfolio);
    background-color: var(--color-menu-casestudy1);
  }

  .dropbtn:hover .arrow {
    filter: brightness(0) saturate(100%) invert(39%) sepia(41%) saturate(401%) hue-rotate(148deg) brightness(97%) contrast(96%);
  }

  /*Images*/
  .logo {
    margin-bottom: 16px;
  }

  .portfolio .header__img {
    transform: translateY(-50px);
  }

  /*Section*/
  .section2__typo1 {
    margin-bottom: 56px;
  }

  .section2__typo3 {
    margin-bottom: 56px;
  }

  .section3__btn {
    display: flex;
    justify-content: space-evenly;
    /* border-radius: 20px; */
  }

  .section3__btn--site a, .section3__btn--projets a, .section3__btn--contact a {
    font-size: 18px;
  }

  .section2__grille--espacement {
    margin-top: 0;
  }

  .section2__typographie1, .section2__typographie2, .section2__typographie3 {
    margin-top: 64px;
  }

  /*Carrés*/
  .square {
    width: 120px;
    height: 120px;
  }

  .section2__couleurs--secondaires .blue__square,
.section2__couleurs--secondaires .lightblue__square,
.section2__couleurs--secondaires .C56__square,
.section2__couleurs--secondaires .C91__square,
.section2__couleurs--secondaires .grey__square,
.section2__couleurs--secondaires .darkgrey__square,
.section2__couleurs--secondaires .lightgrey__square {
    width: 100px;
    height: 100px;
  }

  .empty__square {
    width: 120px;
    height: 120px;
  }

  .section1 .darkblue, .white, .grey, .black {
    align-items: normal;
    height: -moz-min-content;
    height: min-content;
  }

  /*Lines*/
  .big__line {
    margin: 88px 0;
  }

  /*Footer*/
  .footer__link {
    font-size: 20px;
  }

  /*nav*/
  .nav__menu {
    padding: 0 8px;
  }

  /*Design fiction*/
  /*Images*/
  .picto {
    width: 102px;
    height: 102px;
  }

  .design_fiction .contenu img {
    width: 90%;
    height: auto;
    cursor: zoom-in;
  }

  .design_fiction .section2__img {
    transition: width 0.5s ease;
  }

  .design_fiction .section2__img.expanded {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70vw;
    z-index: 1000;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    overflow-y: hidden;
  }

  .design_fiction .section2__img.fixed {
    position: fixed;
  }

  .design_fiction .section2__img:hover:not(.expanded) {
    transform: scale(1.05);
  }

  /*Titres et textes*/
  .design_fiction h2 {
    margin-bottom: 64px;
  }

  /*Nav*/
  .design_fiction .dropbtn {
    color: var(--color-text-casestudy1);
    text-decoration: none;
  }

  .design_fiction .dropbtn .arrow {
    filter: none;
  }

  .design_fiction .dropbtn:hover .arrow {
    filter: brightness(0) saturate(100%) invert(43%) sepia(25%) saturate(1118%) hue-rotate(197deg) brightness(97%) contrast(90%);
  }

  .design_fiction .nav__link:hover, .design_fiction .dropbtn:hover {
    color: var(--color-cartes-designfiction);
    transition: all 0.2s ease;
  }

  /*Fonctionnalités*/
  .buttons__container--left, .buttons__container--right {
    width: 30%;
  }

  .iris__btn {
    width: 35%;
    margin-top: 16px;
  }

  .design_fiction .section1 {
    margin: 0 100px;
  }

  .section1__objectif--img, .section1__who--img, .section1__fonctionnement--img {
    width: 60%;
  }

  .design_fiction .section1__objectif {
    align-items: flex-start;
  }

  .design_fiction .section1__objectif--text {
    margin-top: 20px;
  }

  /*Application*/
  .dropbtn__application {
    padding: 32px;
  }

  .section2__setup--gros-titre {
    font-size: 6.9vw;
    transition: font-size 0.2s ease;
  }

  .section2__emotions--gros-titre {
    font-size: 6.5vw;
    transition: font-size 0.2s ease;
  }

  .section2__profil--gros-titre {
    font-size: 5vw;
    transition: font-size 0.2s ease;
  }

  .design_fiction .section2 h3 {
    font-size: 24px;
  }

  .section4__btn--site, .section4__btn--contact {
    font-size: 20px;
  }

  /*Portfolio*/
  /*Icones*/
  .portfolio .insta:hover, .portfolio .linkedin:hover, .portfolio .github:hover {
    transition: 0.5s ease;
    transform: scale(1.2);
  }

  .portfolio .contact__reseaux--mail:hover {
    transition: 0.5s ease-in-out;
    color: var(--color-btn-portfolio);
  }

  /*Btn*/
  .portfolio .insta__btn:hover {
    transform: translateY(-50px) rotate(5deg);
    transition: transform 0.25s ease;
    background-color: var(--color-hover-btn);
  }

  /*Texts*/
  .portfolio p {
    font-size: 20px;
  }

  .portfolio .section1 h3 {
    margin-bottom: 128px;
    margin-left: 80px;
  }

  /*Cartes*/
  .portfolio .carte {
    width: 15%;
    max-width: 280px;
  }

  .portfolio .carte.center {
    width: 20%;
    max-width: 373px;
  }
  .portfolio .carte.center:hover {
    box-shadow: 0 5px 9px #FFFFFF;
    transition: 0.3s ease;
  }

  .portfolio .carte.left-2, .portfolio .carte.right-2 {
    display: block;
    width: 10%;
    max-width: 187px;
  }

  .portfolio .back-face p {
    font-size: 18px;
    padding: 40px 20px;
    margin-bottom: 24px;
    text-align: center;
  }

  .portfolio .carte__btn, .portfolio .gastrozen__btn {
    font-size: 16px;
    margin-bottom: 16px;
  }

  .dataplay__casestudy, .janus__casestudy {
    font-size: 16px;
  }

  /*Skills*/
  .portfolio .skill {
    width: 150px;
  }

  .portfolio .skills__texte {
    margin-top: 40px;
    margin-bottom: 104px;
  }

  .portfolio .skills__texte2 {
    margin-top: 0;
  }

  .portfolio .section2 {
    margin-top: 200px;
  }

  .portfolio .header, .portfolio .header__img--paysage, .portfolio .header__text {
    height: auto;
  }

  /*Section*/
  .portfolio .section3 {
    padding: 0 200px;
  }

  /*Contact*/
  .portfolio .contact__reseaux {
    margin-top: 61px;
  }

  .portfolio .contact__reseaux--mail {
    font-size: 20px;
  }

  .contact__reseaux--logo {
    margin-top: 32px;
  }
}

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