:root {
    --corail: #EE7550;
    --corail-fonce: #DE5126;
    --rose-clair: #F9e7e1;
    --jaune: #e2a51f;
    --jaune-fonce: #CC9900;
    --gris:#545454;
    --titre:'Yesteryear', cursive;
    --p:'Assistant', sans-serif;
  }

p{
    font-family:var(--p);
    font-size: 1em;
    margin:0;
    line-height: 1.5rem;
    margin-bottom: 5px;
  }

h3.titre-jaune{
    font-family: var(--titre);
    color: var(--jaune);
    font-size: 4rem;
    font-weight: 500;
    margin-bottom: 10px;
}

h3.titre-blanc{
    font-family: var(--titre);
    color: white;
    font-size: 4rem;
    font-weight: 500;
    text-align: center;
}

h3.titre-rose{
    font-family: var(--titre);
    color:var(--corail);
    font-size: 4rem;
    font-weight: 500;
    text-align: center;
}

a{
    font-family: var(--p);
    color: white;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
}

.navigation{
    background-color: var(--corail);
}

/******** NAVIGATION **********/

header{
    width: 100%;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    padding:0 100px 3px 100px;
    position: fixed;
    z-index: +10;
}

header.sticky{
    background-color:var(--corail);
    box-shadow: 2px 2px 30px rgba(0,0,0,0.1);
    transition: 0.5s;
}

#accueil {
    display: flex;
    width: 220px;
    visibility: hidden;
    text-align: left;
}

.accueil {
    display: flex;
    width: 220px;
    text-align: left;
}

#accueil.sticky{
    visibility: visible;
}

#logo{
    width: 30px;
}

.titre{
    margin-left:7px;
}

h1{
    font-family: 'Raleway', sans-serif;
    color: white;
    font-size: 1.37rem;
    margin:0;
}

h2{
    font-family: 'Abel', sans-serif;
    color: white;
    font-size: 0.55em;
    margin:2px 0 0 0;
}

nav{
    display: flex;
    align-items: center;
}

nav > ul > li{
    display: inline-block;
    position: relative;
}

nav > ul{
    margin-right: 30px;
}

nav > ul > li > a{
    color: white;
    font-family: 'Assistant', sans-serif;
    margin: 0 30px;
    font-weight: 600;
    font-size: 1rem;
}

nav > ul > li:hover .sousmenu{
    display: block;
} 

.sousmenu{
    display: none;
    position: absolute;
    width: 100%;
    background-color: #EE7550;
    padding: 10px 5px;
}

.sousmenu > li{
    margin: 8px 0;
}

.sousmenu > li > a{
    font-size: 1rem;
    font-weight:300;
}

.insta,.linkedin{
    width: 23px;
    margin:0 5px;
}

.insta:hover{
    transform: rotate(+15deg);
}

.linkedin:hover{
    transform: rotate(+15deg);
}

.menuburger,
#menuburger{
  display: none;
}

/******** INTRO *********/

.intro{
    background-image: url('../img/fond-accueil/fond-site-web.svg');
    background-size: cover;
    background-position: bottom;
    height: 100vh;
    position:relative;
    box-sizing: border-box;
}

.texte-intro{
    position: absolute;
    top:40vh;
    left:120px;
    line-height: 60px;
    z-index: +2;
}

.trait{
    height: 8px;
    width: 50px;
    background-color: var(--jaune);
    display:inline-block;
    margin-right: 20px;
}

.hey{
    font-family: 'Yesteryear', cursive;
    font-size: 6em;
    color: var(--jaune);
    display:inline-block;
}

.bienvenue{
    margin-top:25px;
}

.bienvenue,.graphique,.photographique{
    font-family: 'Abel', sans-serif;
    color: var(--gris);
    font-size: 3em;
    line-height: 3rem;
}

.et{
    margin:0 7px;
}

.univers{
    display: flex;
    align-items: center;
}

.et{
    color:var(--jaune);
    font-size: 6em;
}

#souris{
    width: 40px;
    height: 40px;
    animation: anim_souris 10s infinite;
    margin-top:90px;
}

#souris.cache {
    display: none;
}

.st0{fill:none;
    stroke:#545454;
    stroke-width:10;
    stroke-miterlimit:10;}

.st1{fill:none;
    stroke:#545454;
    stroke-width:10;
    stroke-linecap:round;
    stroke-miterlimit:10;
    animation: anim_molette 10s infinite;
}

@keyframes anim_souris{
 0%{transform: translateY(0px);}
 3%{transform: translateY(10px);}
 6%{transform: translateY(0px);}
 9%{transform: translateY(10px);}
 12%{transform: translateY(0px);}
 15%{transform: translateY(10px);}
 18%{transform: translateY(0px);}
}

@keyframes anim_molette {
0%{transform: translateY(0px);}
40%{transform: translateY(0px);}
42%{transform: translateY(20px);}
45%{transform: translateY(0px);}
48%{transform: translateY(20px);}
51%{transform: translateY(0px);}
54%{transform: translateY(20px);}
57%{transform: translateY(0px);}
}

/*********** PARALLAX ***********/
.parallax{
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100vh;
}

.fondrose{
    height: 100%;
    right:100px;
    position: absolute;
    top:-8px;
    right:-5px;
}

.objets{
    position: absolute;
    height: 88vh;
    right:-50px;
    top:-10px;
    animation: anim_objets 15s infinite linear;
}

@keyframes anim_objets{
    0% {transform:translateY(0px);}
    50% {transform:translateY(10px);}
    100% {transform:translateY(0px);}
}

.logo{
    position: absolute;
    width: 300px;
    top:25vh;
    right: 10%;
    transition: 0.5s;
    animation: anim_logo 15s infinite linear;
}

@keyframes anim_logo{
    0% {transform:translateY(0px);}
    50% {transform:translateY(-30px);}
    100% {transform:translateY(0px);}
}



/********* PRESENTATION ************/

.presentation{
    display:flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    width: 70%;
    margin:0 auto;
    padding:90px 0 100px 0;
}

.maphoto{
    width: 300px;
}

.presentation > div{
    width: 60%;
    margin-left: 50px;
}

.presentation > div > p{
    text-align: justify;
}

/************* SERVICES ***************/
.services{
    background-image: url('../img/bandeau-jaune.svg');
    background-size: cover;
    background-repeat: no-repeat;
    padding: 140px 0;
}

.h4-blanc{
    font-family: var(--p);
    font-weight: bold;
    font-size: 1.3rem;
    text-align: center;
    color: white;
    margin:10px 0;
}

.services > div{
    width: 70%;
    margin:0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 40px;
}

.services > div > article{
    width: 30%;
    margin:10px;
    text-align: center;
}

.services > div > article > img{
    width: 30%;
    margin:0 auto;
}

.services > div > article > p{
    color: white;
    text-align: center;
}

.services > div > article > div {
    width: 45%;
    margin: 0 auto;
    margin-top:20px;
    background-color: var(--jaune-fonce);
    padding:10px;
    border-radius: 50px 50px 50px 50px;
    text-align: center;
    border: 3px solid transparent;
    transition: 0.5s;
}

.services > div > article > div:hover{
    background-color: rgba(255, 255, 255, 0.233);
    transition: 0.5s;
}

.services > div > article > div:hover a{
    font-size: 1.15rem;
}

/*************** OUTILS **************/

.outils{
    padding:70px 0;
}

.outils > div{
    width: 70%;
    margin:0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 20px;
}

.outils > div > article{
    width: 30%;
    margin:10px;
    text-align: center;
}

.outils > div > article > img{
    width: 30%;
    margin:0 auto;
}

.h4-noir{
    font-family: var(--p);
    font-weight: bold;
    font-size: 1.3rem;
    text-align: center;
    color:var(--gris);
    margin:20px 0 10px 0;
}

.outils > div > article > p{
    color: var(--gris);
    text-align: center;
}


/************* CONTACT ***************/

.contact>h4{
    font-family: var(--p);
    font-size: 1.8rem;
    text-align: center;
}

.contact{
    background-image: url('../img/fond-gris.svg');
    background-size: cover;
    padding:100px 0;
}

.contact_info{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin:40px 0 25px 0;
}

.contact_info>div{
    display: flex;
    align-items: center;
    margin:0 30px;
}

.contact_info>div>img{
    width: 50px;
}

.contact_info>div>p{
    font-size: 2rem;
}


form{
      margin: 0 auto;
      width: 40%;
      margin-top:20px;
}

input,textarea,#objet{
    font: 1rem 'Assistant', sans-serif;
    margin-top: 15px;
    border-radius: 15px;
    padding: 10px;
    border-style: none;
    border-style: insert;
    resize: none;
    box-sizing: border-box;
    outline: none;
    box-shadow: 2px 2px 15px rgba(0,0,0,0.04);
}

#nom,#prenom{
    width: 48.8%;
    display: inline-block;
}

#prenom{
    margin-left:10px;
}
  
#mail,#objet,#msg {
    width:100%;
}

.attention{
    font-size: 10px;
    padding:10px 0;
    text-align: center;
}
  
.boutton_form {
    border-radius: 50px;
    min-width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--corail);
    margin:0 auto;
    padding:8px 30px;
    border: none;
    cursor: pointer;
}

.boutton_form:hover {
    background-color: var(--corail-fonce);
}
  
.boutton_form p{
    font-family: var(--p);
    font-weight: bold;
    font-size: 1.2rem; 
    color: white;
}

.boutton_form:hover p{
    font-size: 1.25rem;
}

.boutton_form img{
    width: 28px;
    margin-left: 10px;
    position: relative;
    top:0px;
    right: 0px;
    transition: 0.8s;
}

.boutton_form:hover img{
    top:-40px;
    right:-60px;
    transform: scale(-0.5);
    opacity: 0;
    transition: 0.8s;
}
  
  /***************** MESSAGES FORMULAIRE *****************/
  
  .fondform{
    height:100vh;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .messageform{
    width: 30%;
    height: 30%;
    margin: 0 auto;
    border-radius: 10px;
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: var(--p);
    color:var(--corail);
    background-image: url(../img/fond-gris-rect.svg);
    background-size: cover;
    background-repeat: no-repeat;
    text-align: center;
    font-weight: bold;
    padding: 20px;
    box-shadow: 2px 2px 30px rgba(0,0,0,0.1);
  }

/****************** FOOTER ******************/
footer{
    background-color: var(--corail);
    height: 30px;
    padding:15px 0 0 50px;
    display: flex;
}

footer > a{
    font-weight: normal;
    font-size: 0.9rem;
    margin: 0 10px;
}

footer > p{
    color:white;
}

/******************* MENTIONS LEGALES *****************/
.article-mentions-legales{
    font-family: var(--p);
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--jaune);
    padding:0;
    margin:40px 0 10px 0;
  }
  
  .textementionslegales{
      width: 80%;
      padding:100px 0;
      margin:0 auto;
  }

/****************** PROJETS ****************/
.titre_portfolio{
    display: flex;
    padding: 90px 0 40px 0;
    align-items: center;
    justify-content: center;
}

.titre_portfolio > p{
    color: var(--corail);
    font-size: 2.5rem;
    margin-right: 10px;
}

.titre_portfolio > img{
    height: 90px;
    margin-right: 10px;
}

.projets{
    background-image: url(../img/fond-gris.svg);
    min-height: 680px;
    background-size: cover;
    padding:70px 0;
    width: 100%;
}

.box{
    width: 350px;
    height: 500px;
    background: transparent;
    overflow: hidden;
    box-shadow: 2px 2px 30px rgba(0,0,0,0.2);
    margin:30px 20px 30px 50px;
    cursor: pointer;
}

.details{
    background-color: white;
    height: 80px;
    padding-top:30px;
    overflow: hidden;
}

.details > p{
    text-align: center;
}

h5.nom{
    font-family:var(--p);
    margin:0;
    line-height: 1.4rem;
    margin-bottom: 5px;
    font-size: 1.5rem;
    color: var(--jaune);
    font-weight: bold;
    margin-bottom: 10px;
    text-align: center;
}

h5.nom::after {
    display: block;
    content: '';
    width: 30px;
    height: 3px;
    margin:0 auto;
    margin-top:10px;
    background-color: var(--jaune);
}


.slide-img{
    height: 400px;
    overflow: hidden;
    position:relative;
    z-index: -2;
}

.slide-img::before{
    display: block;
    content: '';
    position: absolute;
    top:-33px;
    width: 100%;
    height: 60px;
    margin:0 auto;
    -moz-border-radius :50px;
    -webkit-border-radius : 50px;
    border-radius : 50%;
    background-color: white;
    z-index:+1;
    box-shadow: 2px 2px 30px rgba(0,0,0,0.2);
}

.slide-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-sizing: border-box;
    transition: 1s;
}

.zoom{
    transform: scale(1.04);
    transition: 1s;
}

/************ POPUP ***************/

/* fond flou*/
#flou.active{
    filter:blur(20px);
    pointer-events: none;
    user-select:none;
}

#popup {
    position: fixed;
    width: 70%;
    height: 80vh;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    border-radius: 20px;
    background-color: white;
    box-shadow:2px 2px 30px rgba(0,0,0,0.2);
}

#popup{
    visibility: hidden;
}

#popup.active{
    visibility: visible;
}

#fenetre {
    position:absolute;
    top:0;
    height:0;
    width:100%;
    height:100%;
    overflow-y: auto;
    border-radius: 20px;
}

.nom_projet{
    height: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background-image: url(../img/fond-gris.jpg);
    background-size: cover;
    z-index: -1;
}

.nom_projet > h6{
    color: var(--corail);
    font-family: var(--titre);
    font-weight: 500;
    font-size:4rem;
    padding:0;
    margin:0;
}

.nom_projet > h6::after{
    display: block;
    content: '';
    width: 40px;
    height: 5px;
    margin: 0 auto;
    background-color: var(--corail);
}

.presentation_projet{
    background-image: url(../projets/bandeau-jaune.svg);
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    min-height: 350px;
    display:flex;
    align-items: center;
    justify-content: space-around;
    margin-top:-40px;
    margin-bottom: 20px;
    padding: 60px 100px 100px 100px;
    box-sizing: border-box;
}

.texte{
    width: 60%;
}

.presentation_projet>img{
    width: 33%;
}

.texte > p{
    color:white;
    margin-top:10px;
}

.rendu{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding:50px 0;
    margin-top:-50px;
}

.rendu img{
    width: 70%;
    margin:0 auto;
    margin:30px 10px;
}

.ferme{
    position: absolute;
    top:-10px;
    right:-10px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    background-color: var(--corail);
    border-radius: 50%;
}

.lien_projet {
    background-color: var(--jaune-fonce);
    padding: 5px 30px;
    border-radius: 50px 50px 50px 50px;
    text-align: center;
    border: 3px solid transparent;
    transition: 0.5s;
    margin:20px 10px 10px 10px;
}

/************** PHOTOS ***************/
.photos{
    padding:20px 0;
    width: 100%;
    min-height: 680px;
    display: flex;
    flex-direction: column;
    justify-items: flex-start;
    align-items: center;
    text-align: center;
}

#filtre{
    background-color: white;
    width: 100%;
    padding:20px 0;
}

#filtre.sticky{
    position: fixed;
    top: 40px;
    padding:20px 0;
}

#filtre ul li{
    display: inline-block;
    padding:0 15px;   
}

#filtre ul li a{
    text-align: center;
    color: var(--corail-fonce);
    font-size: 1rem;
    font-weight: bold;
    margin:0;
}

#filtre ul li a:hover::after{ /* soulignage hover */
    width: 100%;
}
  
#filtre ul li a.actif::after{ /* soulignage permanent */
    width: 100%;
}
  
#filtre ul li a::after{ /* trait du soulignage */
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background-color: var(--corail);
    transition: width .3s;
}

.spotlight-group{
    columns:4;
    column-gap: 20px;
    padding:20px;
    width: 70%;
    margin:0 auto;
}

.spotlight-group .spotlight{
    width: 100%;
    margin: 0 0 20px;
    overflow: hidden;
}

.spotlight-group div img{
    max-width: 100%;
}


/****************** TARIFS ****************/

.tarifs{
    background-image: url(../img/fond-gris.svg);
    min-height: 680px;
    background-size: cover;
    padding:70px 0;
    width: 100%;
    text-align: center;
}

.box-tarif{
    width: 350px;
    height: 500px;
    background: transparent;
    overflow: hidden;
    box-shadow: 2px 2px 30px rgba(0,0,0,0.2);
    margin:30px 20px 30px 50px;
    display: inline-block;
}

.box-tarif>.tarif{
    background-color: white;
    height: 80px;
    padding-top:30px;
    overflow: hidden;
}

.tarif > p{
    font-family:var(--p);
    font-size: 1em;
    margin:0;
    line-height: 1.8rem;
    margin-bottom: 5px;
    color:var(--gris);
    font-weight: 500;
}

.prix > span{
    font-weight:bold;
}

h5.formule{
    font-family:var(--p);
    margin:0;
    line-height: 1.4rem;
    margin-bottom: 5px;
    font-size: 1.5rem;
    color: var(--jaune);
    font-weight: bold;
    margin-bottom: 10px;
    text-align: center;
}

h5.formule::after {
    display: block;
    content: '';
    width: 30px;
    height: 3px;
    margin:0 auto;
    margin-top:10px;
    background-color: var(--jaune);
}


.img-tarif{
    height: 400px;
    overflow: hidden;
    position:relative;
    filter: grayscale(100%);
}

.img-tarif::before{
    display: block;
    content: '';
    position: absolute;
    top:-33px;
    width: 100%;
    height: 60px;
    margin:0 auto;
    -moz-border-radius :50px;
    -webkit-border-radius : 50px;
    border-radius : 50%;
    background-color: white;
    z-index:+1;
    box-shadow: 2px 2px 30px rgba(0,0,0,0.2);
}

.img-tarif img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-sizing: border-box;
    transition: 1s;
}

.img-tarif img:hover{
    transform: scale(1.04);
    transition: 1s;
}

.reserver {
    width: 15%;
    margin: 0 auto;
    margin-top:20px;
    background-color: var(--jaune-fonce);
    padding:10px;
    border-radius: 50px 50px 50px 50px;
    text-align: center;
    border: 3px solid transparent;
    transition: 0.5s;
}


/**************** RESPONSIVE ENTRE TABLETTE ET DESKTOP ********************/
@media screen and (max-width:1380px) {

    header{
        padding:0 50px 5px 50px;
    }

    #accueil{
        visibility: visible;
    }

    nav ul li a{
        margin: 0 20px;
    }

    .sousmenu{
        padding: 10px 5px;
    }
    
    .sousmenu > li > a{
        margin: 0 5px;
    }

    /*intro*/

    .texte-intro{
        left:80px;
        line-height: 60px;
        z-index: +2;
    }

    .intro{
        background-image:url(../img/fond-rose.svg);
    }

    .bienvenue,.graphique,.photographique{
        font-family: 'Abel', sans-serif;
        color: white;
    }

    .fondrose{
        display: none;
    }

    .st0,.st1{
        stroke:white;
    }

    .presentation{
        width: 90%;
    }

    .services > div{
        width: 90%;
    }

    .outils > div{
        width: 90%;
    }

    form{
        width: 60%;
    }

    .box-tarif{
        width: 300px;
        height: 400px;}

    .img-tarif{
        height: 300px;}


    .box-tarif{
        margin:15px;}

}

/**************** RESPONSIVE TABLETTE ********************/
@media screen and (max-width:1024px) {

    /* navigation*/

    nav ul li a{
        margin: 0 12px;
    }

    .logo{
        visibility: hidden;
    }

    /* popup */

    #popup {
        width: 90%;
        height: 90vh;
    }

    /* photo */
    .spotlight-group{
        columns:3;
        width: 95%;
        margin:0 auto;
    }
    

}
/**************** REPONSIVE MOBILE ********************/
@media screen and (max-width:800px) {


    /* navigation*/
    header{
        background-color: var(--corail);
        flex-direction: column;
        height: auto;
        padding:0 10px;
        box-shadow: 2px 2px 30px rgba(0,0,0,0.1);
    }

    .titre{
        margin-left:7px;
    }

    #accueil{
        visibility: visible;
        width: 100%;
        justify-content: left;
        margin:5px 0 5px 5px;
        height: 40px;
    }

    .accueil {
        visibility: visible;
        width: 100%;
        justify-content: left;
        margin:5px 0 5px 5px;
        height: 40px;
    }

    #logo{
        width: 30px;
    }

    nav{
        justify-content: center;
        text-align: center;
        display: none;
        padding:160px 0 50px 0;
        transition: 1s;
        height:calc(100vh - 65px);
    }

    nav > ul{
        margin: 0;
        width: 100%;
        margin-bottom: 40px;
    }

    nav > ul > li{
        width: 100%;
        display: block;
        margin: 30px 0;
    }

    nav > ul > li > a{
        margin:0;
        font-size: 1.8rem;
    }

    .insta,.linkedin{
        width: 40px;
        margin:0 10px;
    }

    .menuburger{
        text-align: right;
        padding:10px;
        font-size: 30px;
        color:white;
        filter:brightness(1);
        display: block;
        cursor: pointer;
        width: 30px;
        height: 30px;
        position:absolute;
        top:0;
        right: 0;
      }

      #menuburger:checked + nav {
        display: block;
      }

      .sousmenu{
        position: static;
        padding:0;
        width: 100%;
    }

    .sousmenu > li{
        margin:10px 0;
    }

    .sousmenu > li > a{
        font-size:1.5rem;
    }
  
    /*intro*/
    h3.titre-jaune,h3.titre-blanc,h3.titre-rose{
        font-size: 2.6rem;
        padding:30px 25px 0 25px;
    }
    
    .texte-intro{
        display: none;
    }

    .logo{
        visibility: visible;
        display:block;
        margin:0 auto;
        position: relative;
        width: 300px;
        top:30%;
        right: 0;
    }

    /*présentation*/
    .presentation > div{
        width: 90%;
        margin:0 auto;
        text-align: center;
    }

    .maphoto{
        width: 200px;
        margin: 20px 0;
    }

    /*services*/
    .services{
        background-image: none;
        background-color: var(--jaune);
        padding: 30px 0 80px 0;
    }

    .services > div {
        margin-top:0;
    }


    .services > div > article{
        width: 90%;
        margin-top:70px;
    }

    /* outils*/
    .outils{
        padding: 30px 0 80px 0;
    }
    
    .outils > div > article{
        width: 90%;
        margin-top:40px;
    }

    /*contact*/

    .contact>h4{
        font-size: 1.5rem;
    }

    .contact_info>div>p{
        font-size: 25px;
    }

    .contact{
        padding-top:40px;
    }

    .messageform{
        background-image: url(../img/fond-gris.jpg);
    }

    form{
        width: 90%;
    }

    #nom,#prenom{
        width: 100%;
    }

    #prenom{
        margin-left:0px;
    }

    .box{
        margin-left:30px;
        margin-top:20px;
    }


    /*footer*/
    footer{
        background-color: var(--corail);
        height: 60px;
        padding:5px;
        display: block;
    }
    
    footer > a{
        display: block;
        font-size: 0.8rem;
        margin-top: 10px;
    }
    
    footer > p{
        display: none;
    }

    /* graphisme */
    .projets{
        padding:60px 0 20px 0;
        background-image: url(../img/fond-gris.jpg);
    }

    .titre_portfolio{
        padding:70px 5px 20px 5px;
        flex-wrap: wrap;
    }


    .titre_portfolio > p{
        display: none;
    }

    .titre_portfolio > img{
        height: 60px;
    }

    /* BOX */

    .box{
        margin: 0 0 30px 18px;
    }

    /* POPUP */

    #popup {
        width: 95%;
        height: 90%;
    }

    .nom_projet{
        padding: 10px 10px 50px 10px;
        text-align: center;
    }

    .presentation_projet{
        background-color: var(--jaune);
        flex-direction: column;
        padding: 30px 20px;
        margin-bottom: 30px;
    }

    .texte{
        width: 90%;
    }

    .presentation_projet>img{
        display: none;
    }

    .rendu img{
        width: 90%;
        margin:0 auto;
        margin:10px;
    }

    /* photo */
    .photos{
        padding:0;
    }

    #filtre{
        width: 95%;
    }

    #filtre ul li{
        padding:3px 8px;   
    }

    #filtre ul li a{
        font-size: 0.9rem;
    }

    .spotlight-group{
        columns:2;
        column-gap: 20px;
        padding:0px;
        width: 95%;
        margin-top:20px;
    }

/* tarifs */

    .tarifs{
        background:none;
        padding-top:0px;
    }

    .box-tarif{
        width: 320px;
        margin: 30px 10px}

    .reserver {
        width: 70%;}

}