@charset "utf-8";

@font-face{
  font-family: chiller;
  src: url(../fonts/Chiller400.ttf);
}

html{
  /* couleurs principales */
  --couleur-jaune :#fff48c;
  --couleur-violet :#371738;
  --couleur-blanc :#ffffff;

  /* couleurs secondaires */
  --couleur-fond :#2B1F2B;
  --couleur-claire :#cec1ce;
  --couleur-claire-2 : #e6dce6; /* fond des champs */
  --couleur-jaune-hover: #fff7ae;
  --couleur-de-separation: rgba(255, 255, 255, 0.04);
/* couleurs headers */
  --couleur-violet-clair :#422a44;
  --couleur-gris :#ebebeb;
}

/* header,
footer,
aside,
nav,
main,
article,
figure {
  display: block;
} */

html,
body,
main,
div,
header,
nav,
article,
section,
aside,
footer,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
ul,
li,
figure,
figcaption,
class,
img,
svg {
  margin: 0;
  padding: 0;
}

* {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

html,
body {
  display: block;

  height: 100%;
  min-height: 100%;
  width: 100%;

  border: 0 solid transparent;
  color: var(--couleur-claire);
  background-color: var(--couleur-fond);
  
  font-family: lato, sans-serif;
  scroll-padding: 70px;
}
body{
  padding-top: 70px;
}
img,
object,
embed,
canvas,
video,
audio,
picture {
  max-width: 100%;
  max-height: auto;
}
picture img{
  display: block;
}

/* ========================================== */
/* =============== RÉCURRENTS =============== */
.center {
  margin: 0 auto;
}

.clear {
  clear: both;
}

section{
  padding-top: 50px;
  padding-right: 20px;
  padding-left: 20px;
}
section:last-of-type{
  padding-bottom: 130px;
}

.global-container{
  max-width: 1500px;

  display: flex;
  flex-direction: column;
  align-items: center;

  margin-left: auto;
  margin-right: auto;
}
.global-container h2{
  width: 100%;
}

ul{
  list-style-type: none;
}
li.no-bullet-point{
  list-style-type: none;
  text-indent: -1em;
}

.outils{
  display: flex;
}

.outils img{
  height: 32px;
  margin-right: 8px;
}

/* ===== Séparateurs ===== */
div.separateur{
  clip-path: polygon(0% 100%, 100% 100%, 100% 0%);

  width: 100%;
  height: 5vw;
  margin-top: 50px;

  background-color: var(--couleur-de-separation);
}
div.separateur.separateur-fin{
  clip-path: polygon(0% 0%, 100% 0%, 0% 100%);

  margin-top: 0;
  margin-bottom: 50px;
}
div.separateur~section{
  margin-top: 0;
  padding-top: 50px;

  
  background-color: var(--couleur-de-separation);
}

div.separateur.separateur-blanc{
  background-color: #fff;
}
div.separateur.separateur-blanc~section{
  background-color: #fff;
}

/* ===== Boutons ===== */
.bouton{
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;

  width: max-content;
  padding: 4px 12px;

  color: var(--couleur-fond);
  background-color: var(--couleur-jaune);

  font-size: 1.125rem;
  font-family: tomorrow, sans-serif;
  font-weight: 600;
  text-align: center;
  text-decoration: none!important;

  border: none;
  border-radius: 50px;
  border: 2px solid var(--couleur-jaune);
  cursor: pointer;
}
.bouton:hover,
.parent-bouton:hover .bouton{
  background-color: transparent;
  border-color: transparent;
  transition: color 0.3s, background-color 0.3s;
}
.bouton::after{
  content: "";

  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;

  border-radius: 50px;
  border: solid 2px var(--couleur-jaune);
  transition: opacity 0.3s;
}
.bouton:hover::after,
.parent-bouton:hover .bouton::after{
  top: -12px;
  right: -12px;
  bottom: -12px;
  left: -12px;

  opacity: 0;
  transition: top 0.5s, right 0.5s, bottom 0.5s, left 0.5s, opacity 0.5s;
}
.bouton::before{
  content: "";

  display: block;
  position: absolute;
  z-index: -1;

  width: 0;
  height: 0;

  background-color: var(--couleur-jaune);
  border: solid 0px var(--couleur-jaune);
  border-radius: 50px;
}
.bouton:hover::before,
.parent-bouton:hover .bouton::before{
  width: 100%;
  height: 100%;

  border-width: 2px;
  transition: width 0.3s 0.3s, height 0.3s 0.3s, border 0.3s 0.3s;
}

/* < et > sur le hover des .boutons */
/* .bouton::before,
.bouton::after{
  position: absolute;
  font-size: 1.5em;
  line-height: 0.8em;

  opacity: 0;

  transition: opacity 0.3s, transform 0.3s;
}
.bouton:hover::before,
.bouton:hover::after{
  opacity: 1;
  transform: translateX(0);
}
.bouton::before{
  content: "<";

  left: 3px;
  transform: translateX(-5px);

}
.bouton::after{
  content: ">";

  right: 3px;
  transform: translateX(5px);

} */

/* ===== CTA ===== */
.cta{
  text-align: center;
}
.cta a{
  font-size: 1.563rem;
}
.cta img{
  max-width: 100px;
}

/* ===== Typographie ===== */
h1,
h2,
h3,
h4,
nav,
.sous-titre{
  color: var(--couleur-foncee);
  font-family: Tomorrow, sans-serif;
}
h2{
  font-size: clamp(1.875rem, 8vw, 4.375rem);
  text-align: center;
  margin-bottom: 2em;
}
h2 img{
  max-height: 1em;
  max-width: 1em;
}

h3{
  max-width: 15em;

  font-size: clamp(1.563rem, 6vw, 3.125rem);
}
h3 img{
  max-height: 1em;
  max-width: 1em;
  vertical-align: middle;
}

/* ===== Barres de note ===== */
div.barre-container{
  display: flex;
  gap: 10px;
}
div.barre-container div.barre{
  display: block;

  height: 4px;
  width: 100%;
  max-width: 115px;
  
  background-color: var(--couleur-jaune);
}
div.barre-container.note-1>:nth-child(n+2){
  opacity: 0.2
}
div.barre-container.note-2>:nth-child(n+3){
  opacity: 0.2
}
div.barre-container.note-3>:nth-child(n+4){
  opacity: 0.2
}

/* ===== Section duo ===== */
section.wrap-center{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px clamp(150px, 20%, 40px);
}
/* ============= FIN RÉCURRENTS ============= */
/* ========================================== */


/* ========================================== */
/* ================== NAV =================== */
/* ===== Nav PRincipale ===== */
nav.site{
  position: fixed;
  top: 0;

  width: 100%;
  height: auto;

  background-color: var(--couleur-violet);

  font-size: 1.375rem;
  font-weight: 400;

  z-index: 999;
}

nav.site ul{
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;

  max-width: 800px;
  margin: 0 auto;
}

nav.site ul li a{
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;

  position: relative;

  padding: 10px 5px;

  color: var(--couleur-blanc);
  text-decoration: none;
}

nav.site ul li img{
  height: 50px;
}

nav.site ul li a::before,
nav.site ul li a::after{
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
  font-size: 1.5em;
}
nav.site ul li a::before{
  content: "<";
  transform: translateX(-5px);
}
nav.site ul li a::after{
  content: ">";
  transform: translateX(5px);
}
nav.site ul li a:hover::before,
nav.site ul li a:hover::after{
  opacity: 1;
  transform: translateX(0px);
}

@media screen and (max-width: 600px){
  nav.site ul{
    justify-content: space-around;
  }
  nav.site ul li a{
    font-size: 0;
  }
}

/* ========================================== */
/* ================= FOOTER ================= */
footer{
  padding: 80px 60px;

  background-color: var(--couleur-violet);
}
footer h2{
  margin-bottom: 10px;

  color: var(--couleur-blanc);

  font-size: 1.125rem;
}
/* contenu du footer */
footer div.footer-content{
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  align-items: center;
}
footer div.footer-content>*{
  width: 300px;

  text-align: center;
}
footer div.footer-content div.logo{
  width: 300px;
}
footer div.footer-content div.logo img{
  max-width: 200px;
}
footer div.footer-content div.contact{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 25px;
}
footer div.footer-content div.contact a{
  width: max-content;
  min-width: 60px;

  color: var(--couleur-jaune);

  text-decoration: none;
}
footer div.footer-content div.contact a:hover{
  text-decoration: underline;
}
footer div.footer-content div.contact img{
  display: block;
  width: 30px;
  margin: 0 auto;
}
/* Plan du site */
footer div.plan-du-site{
  margin-top: 70px;
}
footer div.plan-du-site h2{
  text-align: left;
}
footer div.plan-du-site ul li{
  height: auto;
}
footer div.plan-du-site ul li a{
  line-height: 1.3;

  color: var(--couleur-blanc);

  text-decoration: none;
}
footer div.plan-du-site ul li a:hover{
  text-decoration: underline;
}

/* ========================================== */
/* ================= ACCUEIL ================ */
.accueil section{
  margin-top: clamp(40px, 8vw, 200px);
}
/* ===== Compétences ===== */
section.accueil-competences ul{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 90px;
}
section.accueil-competences ul li a{
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 40px;

  position: relative;

  text-align: left;
  text-decoration: none;
  color: var(--couleur-claire);
}
section.accueil-competences ul li:nth-child(odd) a{
  flex-direction: row-reverse;
  text-align: right;
}
section.accueil-competences ul li div{
  max-width: 350px;
}
section.accueil-competences h3{
  width: 100%;
  margin-bottom: 20px;

  font-size: 1.875rem;
  font-size: clamp(1.6rem, calc(1rem + 2.5vw), 1.875rem);
  font-weight: 400;
}
section.accueil-competences p {
  width: 100%;

  font-size: 1.125rem;
}
section.accueil-competences ul li img{
  max-width: 218px;
  width: 60%;
}
section.accueil-competences ul li a::after{
  content: "";
  display: block;

  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;

  background-color: var(--couleur-fond);
  mix-blend-mode: color;
  transition: opacity 0.3s;
}
section.accueil-competences ul li a:hover::after{
  opacity: 0;
}

@media screen and (max-width: 700px) {
  section.accueil-competences ul li:nth-child(n+1) a{
    flex-direction: column;
    gap: 10px;

    text-align: center;
  }
  section.accueil-competences h3{
    margin-bottom: 10px;
  }
}

section.cta a.parent-bouton {
  display: flex;
  flex-direction: column;
  align-items: center;

  position: relative;

  transition: transform 0.3s;
  text-decoration: none;
}
section.cta a.parent-bouton::before,
section.cta a.parent-bouton::after{
  display: block;
  position: absolute;
  top: 0;

  font-family: tomorrow, sans-serif;
  font-size: 3em;
  transition: left 0.3s, right 0.3s, opacity 0.3s;

  color: var(--couleur-jaune);
  opacity: 0;
}
section.cta a.parent-bouton::before{
  content: "<";
  left: -10px;
}
section.cta a.parent-bouton::after{
  content: ">";
  right: -10px;
}
section.cta a.parent-bouton:hover{
  transform: scale(1.05) translateY(-5px);
}
section.cta a.parent-bouton:hover::before{
  content: "<";
  left: 5px;
  opacity: 1;
}
section.cta a.parent-bouton:hover::after{
  content: ">";
  right: 5px;
  opacity: 1;
}

section.cta a.parent-bouton img{
  width: 150px;
}

/* ===== Confiance ===== */
section.confiance{

  color: var(--couleur-fond);
}
section.confiance ul{
  margin-bottom: 0;
}
section.confiance ul li{
  display: flex;
  justify-content: center;

  max-height: 150px;
}
section.confiance ul li img{
  max-width: 95%;
}



/* ========================================== */
/* ================= HEADER ================= */
header.secondaire{
  display: flex;
  justify-content: center;

  min-height: 17vw;
  margin-bottom: 100px;

  background-image: url(../img/assets/fond-header.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
}
header.secondaire div{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  width: 95%;
  max-width: 680px;
  min-height: 200px;
  max-height: 326px;

  color: var(--couleur-fond);
  background-image: url(../img/assets/fond-titre-header.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top center;

  text-align: center;
}
@media screen and (max-width: 400px){
  header.secondaire div{
    justify-content: flex-start;
  }
}
header.secondaire div h1{
  color: currentColor;

  font-size: clamp(2.5rem, 5.35vw, 6.25rem);
}
header.secondaire div p{
  color: currentColor;

  font-size: clamp(1.25rem, 1.6vw, 1.875rem);
  font-family: tomorrow, sans-serif;
  max-width: 10em;
}

/* ========================================== */
/* =================== CV =================== */
/* ===== Compétences ===== */
/* design et intégration */
section.cv-competences ul.cv-competences-cartes-container{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 100px 160px;

  max-width: 1500px;
  margin: 50px auto 160px;
}
section.cv-competences ul.cv-competences-cartes-container > li{
  display: flex;
  gap: 25px;
  flex-grow: 1;
  justify-content: space-between;

  max-width: 590px;
  padding-bottom: 10px;

  border-bottom: 2px solid currentColor;
}
section.cv-competences ul.cv-competences-cartes-container > li > div{
  display: flex;
  flex-direction: column;
  gap: 8px;

  max-width: 400px;
}
section.cv-competences h4{
  font-size: clamp(1.25rem, 4vw, 1.625rem);
}
section.cv-competences ul.cv-competences-cartes-container > li > div > p{
  flex-grow: 1;
}

section.cv-competences ul.cv-competences-cartes-container > li > figure{
  position: relative;
  cursor: zoom-in;
}
section.cv-competences ul.cv-competences-cartes-container > li > figure::before{
  content: "";
  display: block;

  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;

  background-color: var(--couleur-fond);
  opacity: 0.65;
}

section.cv-competences ul.cv-competences-cartes-container > li > figure figcaption{
  position: absolute;
  bottom: 0;
  left: 0;

  padding: 8px;

  color: var(--couleur-jaune);

  text-align: center;
  font-family: Tomorrow, sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
}
@media screen and (max-width: 1380px) {
  section.cv-competences ul.cv-competences-cartes-container > li{
    display: grid;
    grid-template-areas: 
            "a a a" 
            "b b c" 
            "b b c";

    max-width: 290px;
  }
  section.cv-competences ul.cv-competences-cartes-container > li > div > p{
    flex-grow: 1;
  }
  section.cv-competences ul.cv-competences-cartes-container > li > div > span,
  section.cv-competences ul.cv-competences-cartes-container > li > div > ul.outils{
    display: none;
  }

  section.cv-competences ul.cv-competences-cartes-container > li > figure{
    width: 95px;
  }
  section.cv-competences ul.cv-competences-cartes-container > li > figure figcaption{
    display: none;
  }
}

/* outils */
.cartes-outils-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 100px;

  max-width: 1520px;
  margin-top: 50px;
}

.cartes-outils-container > li{
  width: 100%;
  max-width: 430px;
}

.cartes-outils-container > li h4,
.cv-extra-professionnel .cartes-outils-container > li h3{
  margin-bottom: 1em;

  font-size: clamp(1.25rem, 4vw, 1.625rem);
}

.cartes-outils{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
}
.cartes-outils > li{
  width: 100%;
  max-width: 206px;
}
.cartes-outils > li img{
  float: left;
}
.cartes-outils h5,
.cv-extra-professionnel .cartes-outils h4{
margin-bottom: 4px;

font-size: 1.125rem;
font-weight: 600;
}

/* ===== Expériences & Diplômes ===== */
section.cv-experiences-diplomes{
  margin-top: 200px;
}
section.cv-experiences-diplomes ul{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}
section.cv-experiences-diplomes ul li{
  display: flex;
  flex-direction: row;
  gap: 10px 40px;
}
@media screen and (max-width: 700px){
  section.cv-experiences-diplomes ul li{
    flex-direction: column;
  }
}
section.cv-experiences ul li{
  max-width: 700px;
}
section.cv-diplomes ul li{
  max-width: 605px;
  width: 100%;
}
section.cv-experiences-diplomes ul li p.date{
  color: var(--couleur-blanc);
  font-size: clamp(1.15rem, 4vw, 1.375rem);
  font-weight: 600;
}
section.cv-experiences ul li p.date{
  min-width: 215px;
}
section.cv-diplomes ul li p.date{
  width: 120px;
}

section.cv-experiences-diplomes ul div{
  flex-grow: 1;
  width: 100%;
}
section.cv-experiences-diplomes ul div h3{
  font-size: clamp(1.25rem, 5vw, 1.5rem);
  max-width: 100%;
}
section.cv-experiences-diplomes ul div span{
  color: var(--couleur-blanc);

  font-size: 1.25rem;
}
section.cv-experiences-diplomes ul div p{
  margin-top: 6px;
}
section.cv-experiences-diplomes ul.liste-competences{
  align-items: flex-start;
  gap: 0px;

  margin-bottom: 10px;
}


/* ===== Extra Professionnel ===== */
section.cv-extra-professionnel{
  padding-bottom: 140px;
}

/* ========================================== */
/* ================ PORTFOLIO =============== */
/* ===== Graphisme ===== */
.portfolio h2{
  margin-bottom: 0;
}
.portfolio h3{
  padding-top: 3em;
}
ul.graphisme-images-container{
  display: grid;
  /* grid-template-columns: repeat(auto-fit, 250px); */
  grid-template-columns: repeat(auto-fit, 250px);
  gap: 30px;
  justify-content: center;

  max-width: 1100px;

  margin: 50px auto 20px;
}
ul.graphisme-images-container > li{
  position: relative;
  overflow: hidden;
}
/* ul.graphisme-images-container > li a::after{
  content: "";
  display: block;

  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;

  background-color: var(--couleur-fond);
  mix-blend-mode: color;
  opacity: 0.8;
  transition: opacity 0.3s;
}
ul.graphisme-images-container > li a:hover::after{
  opacity: 0;
} */
ul.graphisme-images-container > li > a{
  cursor: zoom-in;
  display: block;
}
ul.graphisme-images-container > li > a > img{
  width: 100%;
  display: block;
}

/* Titre des images en hover */
div.titre-image{
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;

  text-align: center;
  color: var(--couleur-gris);

  opacity: 0;
  transition: opacity 0.2s;
}
div.titre-image > *{
  background-color: rgba(0,0,0,0.7);
  padding: 2px 10px;
}
div.titre-image :last-child{
  padding-bottom: 10px;
}
div.titre-image::before{
  content: "";
  display: block;

  height: 6em;

  background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.7) 10%, rgba(0,0,0,0) 100%)
}
ul.graphisme-images-container > li:hover div.titre-image{
  opacity: 1;
}

/* Logos */
ul.logos-container li{
  position: relative;
  overflow: hidden;

  color: #ffffff;
  background-color: currentColor;
}
ul.logos-container li a{
  display: flex;
  justify-content: center;
  align-items: center;

  position: relative;
  aspect-ratio: 1;
}
ul.logos-container li img.logo{
  transform: scale(0.9);
  transition: transform 0.6s;
}
ul.logos-container a img.fond{
  position: absolute;
  top: 0;
  left: 0;

  opacity: 0.6;
  z-index: 1;
  transition: opacity 0.6s;
}
ul.logos-container a img.logo{
  z-index: 2;
}


ul.logos-container li:hover img.fond{
  opacity: 0;
}
ul.logos-container li:hover img.logo{
  transform: scale(1);
}

/* Affiches */
.affiches li{
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;

  background-color: #fff;
}
.affiches li a img{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.5s;
}
.affiches li a div.vignette{
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;

  height: 100%;
  padding: 10px;

  transition: opacity 0.3s;
}
.affiches li:hover a div.vignette{
  opacity: 0;
}

/* les peaux rouges */
.affiches li a.crepusule-d-un-peuple{
  text-decoration: none;
}
.affiches li a.crepusule-d-un-peuple img{
  transform: translate(75%, -45%) scale(2.8) rotate(45deg);
}
.affiches li:hover a.crepusule-d-un-peuple img{
  transform: translateY(-50%) scale(0.7);
}
.affiches li a.crepusule-d-un-peuple div.vignette{
  display: flex;
  flex-direction: column;
  justify-content: space-between;

  aspect-ratio: 1;
  font-size: 3.75rem;
}
.affiches li a.crepusule-d-un-peuple div.vignette p,
.affiches li a.crepusule-d-un-peuple div.vignette h4{
  font-family: chiller, sans-serif;
} 
.affiches li a.crepusule-d-un-peuple div.vignette h4{
  color: #781500;

  font-size: 1.16em;
}
.affiches li a.crepusule-d-un-peuple div.vignette p{
  color: #FEF0CF;

  line-height: 0.9;
}

/* flyer */
.affiches li a.flyer img{
  transform: translate(67%, -171%) scale(4.2);
}
.affiches li:hover a.flyer img{
  
  transform: translateY(-50%);
}

/* renarde */
.affiches li a.renarde img{
  transform: translate(-30%, -50%) scale(3.2);
}
.affiches li:hover a.renarde img{
  
  transform: translateY(-50%) scale(0.9);
}


@media screen and (max-width: 590px){
  ul.graphisme-images-container{
    grid-template-columns: repeat(auto-fit, 42%)
  }
  .affiches li a.crepusule-d-un-peuple div.vignette{
    font-size: 8vw;
  }
  ul.graphisme-images-container > li div.titre-image {
    font-size: 4vw;
  }
}

/* ul.rtydfj {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, max-content));
  grid-gap: 16px;
  padding: initial;
  justify-content: center;
}

li.drjy {
padding: 5px;
width: 210px;
} */


/* ===== Sites Internet ===== */
ul.sites-internet-list-container{
  width: 98%;
  max-width: 1380px;
  margin: 30px auto 50px;
}
ul.sites-internet-list-container{
  display: grid;
  grid-template-columns: repeat(auto-fit, 440px);
  gap: 30px;
  justify-content: center;
}
ul.sites-internet-list-container > li{
  display: flex;
  position: relative;

  background-color: rgba(0, 0, 0, 0.07);
  transition: background-color 0.3s;
}
/* ul.sites-internet-list-container.projets-personnels > li:hover{
  background-color: rgba(0, 0, 0, 0.1)
}
ul.sites-internet-list-container.projets-personnels > li::before{
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;

  box-shadow: 0px 0px 25px rgba(255, 255, 255, 0.1);
  opacity: 0;
  transition: opacity 0.3s;
}
ul.sites-internet-list-container.projets-personnels > li:hover::before{
  opacity: 1;
} */
ul.sites-internet-list-container > li > picture img{
  min-width: 107px;
  max-width: 107px;
}
ul.sites-internet-list-container > li > div{
  display: flex;
  flex-direction: column;
  flex-grow: 1;

  padding: 20px;
}
ul.sites-internet-list-container > li > div h4{
  font-size: clamp(1.25rem, 4vw, 1.625rem);
}
ul.sites-internet-list-container > li > div p{
  margin-bottom: 8px;
}
ul.sites-internet-list-container > li > div > ul{
  flex-grow: 1;

  padding-left: 1em;

  list-style-type: square;
}
ul.sites-internet-list-container > li > div > ul li::marker{
  content: "◇ ";
}
ul.sites-internet-list-container > li > div a.partenaire{
  color: var(--couleur-jaune);
}
ul.sites-internet-list-container > li > div > div.footer-carte{
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media screen and (max-width: 1450px) {
  ul.sites-internet-list-container{
    grid-template-columns: repeat(auto-fit, 280px);
  }
  ul.sites-internet-list-container > li{
    flex-direction: column;
  }
  ul.sites-internet-list-container > li > picture img{
    min-width: 100%;
    max-width: 100%;
  }
  ul.sites-internet-list-container > li > div > div.footer-carte{
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;

    margin-top: 15px;
  }
  ul.sites-internet-list-container > li > div > div.footer-carte a{
    width: 100%;
    text-align: center;
  }
}



/* ========================================== */
/* ================= CONTACT ================ */
section.me-contacter{
  margin-bottom: 100px;
}
section.me-contacter ul{
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 50px 20px;

  max-width: 1500px;
}
section.me-contacter ul li{
  max-width: 240px;

  text-align: center;
}
section.me-contacter ul li h3{
  margin-bottom: 5px;

  font-size: 1.375rem;
  font-family: lato, sans-serif;
  font-weight: 400;
}
section.me-contacter ul li a{
  color: var(--couleur-jaune);

  text-decoration: none;
}
section.me-contacter ul li a:hover{
  text-decoration: underline;
}
section.me-contacter ul li a img{
  display: block;
  margin: 0 auto;
  max-width: 55px;
}






/* ========================================== */
/* ========================================== */
/* ========================================== */
/* ================ PROVISOIR =============== */
.retire-provisoir{
  display: none!important;
}
.non-cliquable {
  cursor: default ;
  pointer-events: none;
}