/* GENERAL */

html{
    margin: 0 auto;
   /*scroll-behavior: smooth; (évite js mais plus rapide)*/
}

@font-face {
    font-family: "lato";
    src: url(../fonts/lato-regular.ttf);
}
@font-face {
    font-family: "lato thin";
    src: url(../fonts/lato-Thin.ttf);
}
@font-face {
    font-family: "zona pro light";
    src: url(../fonts/ZonaPro-Thin.otf);
}
@font-face {
    font-family: "zona pro";
    src: url(../fonts/ZonaPro-Bold.otf);
}


/* Pas d'assenseur horizontal */

body{
    overflow-x: hidden;
}




/* CLASS GENERAL */

.uppercase{
    text-transform: uppercase;
}


#accueil, #Services, #contact{
    padding: 0 5px 5px 5px;
}


/* Surligner */

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

.hightlight:after{
    content: "";
    position: absolute;
    height: 100%;
    width: 0;
    top: 0;
    left: 0;
    transition: 0.6s;
    z-index: -1;
}


/*  MENU  -------------------------------------------------------------- */

p, a{
  font-family: 'Lato', sans-serif;  
}

.menu{
    background: #202020;
    /*
    background-color: rgba(255, 100, 100, 0);
    backgound transparent*/
    position: fixed;
    width: 100%;
    z-index: 100;
}


.header-row{
    margin: 0;
    padding: 0;
}

#Logo-Icon-DD{
    width: 225px;
    height: 50px;
}

.LogoIcon{
    display: block;
    padding: auto;
    width: 223px;
    height: 50px;
    margin-top: -10px;
    margin-bottom: 10px;
    margin-left: 15px;
    transition:all 0.4s ease 0s;
    -webkit-transition:all 0.4s ease 0s;
    -moz-transition:all 0.4s ease 0s;
    -o-transition:all 0.4s ease 0s;
    -ms-transition:all 0.4s ease 0s;

}

.LogoIcon:hover{
    opacity: 0.7;
}

.LogoIcon-little{
    display: none;
}

@media (max-width: 362px) {
    .LogoIcon{
        display: none;
    }

    .LogoIcon-little{
        display: block;
        width: 50px;
        height: 50px;
        padding: auto;
        margin-top: -10px;
        margin-bottom: 10px;
        margin-left: 15px;
        transition:all 0.4s ease 0s;
        -webkit-transition:all 0.4s ease 0s;
        -moz-transition:all 0.4s ease 0s;
        -o-transition:all 0.4s ease 0s;
        -ms-transition:all 0.4s ease 0s;
    }

    .LogoIcon-little:hover{
        opacity: 0.7;
    }
}

@media (min-width: 1200px) {
  .menuR {
    width: 100%;
  }
}

.menu nav a{
    list-style-type: none;
    text-decoration: none;
    color: #F7F7F7;
    text-transform: uppercase;
    font-size: 1.2em;
    font-family: 'Lato', sans-serif;
    float: left;
    margin-top: 8px;
    margin-bottom: 30px
    transition:all 0.4s ease 0s;
    -webkit-transition:all 0.4s ease 0s;
    -moz-transition:all 0.4s ease 0s;
    -o-transition:all 0.4s ease 0s;
    -ms-transition:all 0.4s ease 0s;
    outline: none; /*pas de pointillés au clique*/
}


.navbar-default {
  background-color: transparent;
  border-color: transparent;
  margin-bottom: 0;
  margin-top: 23px;
  transition:all 0.4s ease 0s;
  -webkit-transition:all 0.4s ease 0s;
  -moz-transition:all 0.4s ease 0s;
  -o-transition:all 0.4s ease 0s;
  -ms-transition:all 0.4s ease 0s;
}


ul.nav{
    margin: 0;
    padding: 0;
}

.navbar-default .navbar-nav>li>a {
    font-size: 14px;
    color: #F7F7F7;
    text-transform: uppercase;
    font-weight: 800;
    font-family: 'Lato', sans-serif;
    transition:all 0.4s ease 0s;
    -webkit-transition:all 0.4s ease 0s;
    -moz-transition:all 0.4s ease 0s;
    -o-transition:all 0.4s ease 0s;
    -ms-transition:all 0.4s ease 0s;
    padding: 5px 20px;
}

.navbar-default .navbar-nav>li>a:hover{
    color: #999;
}

/*
.navbar-default .navbar-nav>li>a.active{
    filter: invert(44%) sepia(19%) saturate(854%) hue-rotate(344deg) brightness(92%) contrast(94%);
}
*/



 /*menu responsive*/

@media screen and (max-width: 767px){
    
    .menu nav ul li {
        clear:both;
    }
    
    .navbar-default .navbar-nav>li>a.active{
        border-bottom: none;
        color: #999; 
    }
    
    
    .navbar-default .navbar-nav>li>a{    // !!!!! quitter la transition de la bordure
        overflow: hidden;
    }
    
    .navbar-default .navbar-nav>li>a:hover{
        width: 100%;
        /*border-bottom: solid 2px white;*/
        color: #999;
    }
    
}

/*Début burger anim*/

.navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus {
    background-color: #202020;
}

.menu-icon:hover .bar1{
    transform: translateY(-2px);
}

.menu-icon:hover .bar3{
    transform: translateY(2px);
}

.navbar-default .navbar-toggle .icon-bar {
    background-color: #F7F7F7;
    transition:all 0.4s ease 0s;
    -webkit-transition:all 0.4s ease 0s;
    -moz-transition:all 0.4s ease 0s;
    -o-transition:all 0.4s ease 0s;
    -ms-transition:all 0.4s ease 0s
}

.menu-icon.is-opened .bar1{
    transform: rotate(45deg);
    transform-origin: 5%;
    width: 22px;
}

.menu-icon.is-opened .bar2{
    background-color: transparent;
}

.menu-icon.is-opened .bar3{
    transform: rotate(-45deg);
    transform-origin: 5%;
    width: 22px;
}

/*Fin burger anim*/


/* FIN MENU ------------------------------------------------------------------ */




/* ACCUEIL */


 .video-intro{
        height: 100vh;
        width: 100%;
        object-fit: cover;
               
    }

/* FIN ACCUEIL ------------------------------------------------------------------- */



/* SERVICES */

#Services{
    margin-top: -5px;
    
}

.services-details{
   
    background-color: #f7de62;
    text-align: center;
    padding: 80px 0;
    margin-bottom: 2.5px;
    font-family: 'lato', sans-serif;
}



#Titre-intro{
    font-family: 'Lora', serif;
    font-size: 40px;
    text-transform: uppercase;
    margin-left: auto;
    margin-right: auto;
    width: 90%;
    padding: 0 15px;
}

@media screen and (max-width: 767px){
    #Titre-intro{
        font-size: 2.5vh;
    }

}

#Services .intro-details p{
   margin-left: auto;
   margin-right: auto;
   margin-top: 40px;
   width: 50%;
   font-size: 1.2em;
}



/* 3 Blocks SERVICES */

#Services .ser-block{
    padding: 0;
    margin: 0;
    color: #f2f2f2;
   
}

.bloc-content{   
    top: 0;
    left: 0;
    padding: 5%;
    text-align: center;
    text-justify: auto;
    margin: 2.5px;
    background-color: #111;
    height: 375px;
  
}

.services-presentation{
    padding:0 12.5px;
}

#Services h3{
    font-family: 'zona pro', sans-serif;
    font-size: 25px;
    margin-top: 40px;
}

#Services .ser-block img{
    display: block;
    margin: auto;
    max-width: 100px;
    filter: invert(99%) sepia(1%) saturate(532%) hue-rotate(149deg) brightness(119%) contrast(100%);
}

#Services .services-desc{
    font-size: 1.2em;
    font-family: 'Lato', sans-serif;
}

.slogan{
    font-family: 'Lora', serif;
    color: #888;
    font-weight: bold;
    font-size: 1.4em;
    padding-top: 10px;
   
}

@media screen and (max-width: 767px){
    #Titre-intro{
        font-size: 2.5vh;
    }

    .bloc-content{   
    height: auto;
  
    }
}



/* FIN SERVICES ---------------------------------------------------------------------- */


/* PROJETS */

/* Projet Filtres */

#projets-titre{
    font-family: 'Lora', serif;
    color: #888;
    padding-top: 65px;
    font-size: 35px;
    text-transform: uppercase;
}

#projets nav ul li{
    display: inline-block;
    margin: 0 15px;
}
#projets nav ul li a{
    list-style-type: none;
    text-decoration: none;
    color: #444;
    line-height: 70px;
    font-size: 16px;
    font-family: 'Lato', sans-serif;
    padding-bottom: 5px;
    transition:all 0.4s ease 0s;
    -webkit-transition:all 0.4s ease 0s;
    -moz-transition:all 0.4s ease 0s;
    -o-transition:all 0.4s ease 0s;
    -ms-transition:all 0.4s ease 0s;
    outline: none;
}

#projets nav{
    text-align: center;
}
#projets nav ul{
padding-left: 0;
}

#projets nav>ul>li>a:hover{
    color: #999;
}

#projets nav>ul>li>a.active{
    color: #999;

}
 


@media screen and (max-width: 767px){
    #projets nav ul li{
        display: block;
        margin: 0 15px;
        border-bottom: solid 1px black;
        margin: 0 -15px;
         transition:all 0.4s ease 0s;
        -webkit-transition:all 0.4s ease 0s;
        -moz-transition:all 0.4s ease 0s;
        -o-transition:all 0.4s ease 0s;
        -ms-transition:all 0.4s ease 0s;
    }

    #projets nav ul li:last-child{
        border: none;
    }

    #projets nav ul li a{
        line-height: 40px;
        text-transform: uppercase;
        font-size: 12px;
        font-family: 'Lato', sans-serif;
        padding-bottom: 5px;
         transition:all 0.4s ease 0s;
        -webkit-transition:all 0.4s ease 0s;
        -moz-transition:all 0.4s ease 0s;
        -o-transition:all 0.4s ease 0s;
        -ms-transition:all 0.4s ease 0s;
    }

    #projets nav ul li:hover a{
        border: none;
        color: #999;
        font-weight: 800;
    }

}

/* Projet Mozaic */

#projets{
    padding: 2.5px;
}

.projets_block {
    padding: 2.5px;
}

.projets-link {
    display: block;
    position: relative;
    margin: 0 auto;
    width: 100%;
}

.flitre {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    background: rgba(247,222,98,0.90);
    -webkit-transition: all ease .5s;
    -moz-transition: all ease .5s;
    transition: all ease .5s;
}

.flitre:hover {
    opacity: 1;
}



.flitre-content {
    position: absolute;
    top: 50%;
    width: 100%;
    height: 20px;
    margin-top: -12px;
    text-align: center;
    font-size: 20px;
    color: #333;
}


.projet_name{
    font-family: 'Zona pro', sans-serif;
    font-size: 1.1em;
}

.projet_type{
    font-family: 'lato', sans-serif;
    font-size: 0.9em;
}




/* FIN PROJETS ------------------------------------------------------------------- */



/* CONTACT */
.contact-details{
    background-color: #111;
    padding-top: 20px;
}

#contact-info{
    padding: 50px;
    z-index: 50;
}

#contact-info div{
    padding-bottom: 15px;
}

/*
#contact-titre{
    color: #F7F7F7;
    font-family: 'Lora', serif;
    font-size: 35px;
    text-transform: uppercase;
}
*/

#contact-info a, #contact-info span{
    color: #F7F7F7;
    font-size: 1em;
    font-family: 'lato', sans-serif;
    
}

#contact-info i{
    color: #F7F7F7;
    width: 8%;
    
}

/*Mention legales*/

#MenLeg{
    padding-top: 10px;
    margin-top: 40px;
}

#MenLeg div a{
    text-decoration: none;
    outline: none; /*pas de pointillés au clique*/
}


/*animation clouleur et surlignage liens */

#contact-info .hightlight, #Pic-linkedin{
    text-decoration: none;
    outline: none; /*pas de pointillés au clique*/
    margin-left: -5px ;
    padding: 0 5px;
}

#contact-info .hightlight:hover:after{
    background: #f7de62;
    width: 100%;
    transition: 0.6s;
    transition-delay: 100ms; 
}

#contact-info .hightlight:hover{
    transition-delay: 110ms;
    color: #000;
}

.fa-linkedin{
    transition:all 0.1s ease 0s;
    -webkit-transition:all 0.4s ease 0s;
    -moz-transition:all 0.4s ease 0s;
    -o-transition:all 0.4s ease 0s;
    -ms-transition:all 0.4s ease 0s;
}

#Pic-linkedin:hover .fa-linkedin{
filter: brightness(0) invert(68%) sepia(95%) saturate(254%) hue-rotate(6deg) brightness(110%) contrast(94%);}

/*fin animation liens*/


/* Contact Text */


#contact-text{
    padding: 20px 50px;
}

#contact-text p{
    color: #F7F7F7;
    font-family: 'Lora', serif;
}

#contact-text-p1{ 
    text-transform: uppercase;
    font-size: 34px;
    padding-bottom: 30px;
    
    
}

#contact-text-p2{
    font-size: 25px; 
}


@media screen and (max-width: 767px){
    #contact-text-p1{
        font-size: 2vh;
    }

    #contact-text-p2{
        font-size: 1.5vh;
    }

}