

*, *:before, *:after{
  font-family: 'Quicksand', 'roboto ';
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing:border-box;
  box-sizing: border-box;
}
html{
  width: 100%; 
  height:100%; 
  
}
body{
  font-family: 'Roboto', sans-serif;
  width: 100%;  
  color: white;
}
a:focus{
  outline: 0;
}
h2{
  font-size: 1em;
  font-weight: 400;
}

.black{
  color:black;
}

.overflow{
  overflow:hidden;
}


#video-bg {
    
    position: absolute;
    top: 50%; 
    left: 50%;
    min-width: 100%; 
    min-height: 100%; 
    width: auto; 
    height: auto;
    z-index: -1000; 
    overflow: hidden;

  }
  .child {
    margin: auto;
    width:100%;
    text-align: center;
  
  }
  a{
    color: rgb(255, 255, 255);
  text-decoration: none;
  
  }
  
  .navbar{
    margin-bottom: 50px;
    letter-spacing:0.3em;
    font-size: 0.9em;
    position: relative;
    animation: slideup ;
    animation-duration: 1.2s;
    animation-timing-function:ease-in-out;
   
  }
  
  @keyframes slidedown {
    0%{bottom:-70px;
      opacity: 0;
    
    }
    100%{bottom:0;
    opacity: 1;}
  }
  @keyframes slideup {
    0%{top:-70px;
      opacity: 0;
    
    }
    100%{top:0;
    opacity: 1;}
  }
  @keyframes bright{
    0%{
      filter: brightness(0);
    
    }
    100%{filter: brightness(100%);}
  }
  a.effect-underline{
    position: relative;
    padding-left: 0.3em;
    
  }
  a.effect-underline:after {
    content: '';
    position: absolute;
    left: 0;
    margin-top: 7px;
    display: inline-block;
    height: 1em;
    width: 100%;
    border-bottom: 1px solid;
    opacity: 0;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    -webkit-transform: scale(0,1);
    transform: scale(0,1);
  }
  
  a.effect-underline:hover:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  .navbar-list{
    
    margin: auto;
    max-width: 300px;
    display:flex;
    justify-content: center;
    margin-top: 50px;
  }

  .logo
  {
    position: relative;
    width: 50px; 
  
  }
  /*VIDEO POPUP */
  #legende{
    
    opacity: 0;
    transition: all 1.5s ease;
    
  }
  
  
  #video-popup-container {
    display:block;
    position: fixed;
    z-index: 996;
    width: 60%;
    left: 50%;  
    margin-left: -30%;
    top: -200%;
    transition: all 1.5s ease;
  }
  
  #video-popup-close {
    cursor: pointer;
    position: absolute;
    right: -10px;
    top: -10px;
    z-index: 998;
    width: 25px;
    height: 25px;
    border-radius: 25px;
    text-align: center;
    font-size: 20px;
    line-height: 25px;
    color: #fff;
  }
  
  #video-popup-iframe-container {
    position: absolute;
    z-index: 997;
    width: 100%;
    padding-bottom: 56.25%;
    border-radius: 2px;
    background-color: #000;
    
  }
  
  #video-popup-iframe {
    z-index: 999;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: #000;
  }
  
  #video-popup-overlay {
    
    position: fixed;
    z-index:-56;
    top: 0;
    background-color: #000;
    opacity: 0;
    width: 100%;
    height: 100%;
    transition: all .5s ease;
  }
  
  #video-popup-close:hover {
    color: grey;
  }
  /* MOSAIQUE PHOTO */

  .container-photo{
    column-count: 3;
    column-gap: 10px;
    margin: 10px;
  }
  
  .photo {
      width: 100%;
      overflow: hidden;
      vertical-align: middle
  }

  .photo-items{
    position: relative;
    animation: bright 3s;
    overflow: hidden;
    margin-bottom: 10px;
  }

  .photo-items:hover .photo{
    
    -webkit-transform:scale(1.06);
    -moz-transform:scale(1.06);
    transform: scale(1.06);

  }
  .photo{
    
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
  }
.description-photo{
  display: flex;
  align-items: center; 
  justify-content: center;
  text-align: center;
  font-size: 1em;
  color:white;
  position:absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  top: 0;
  padding-left: 10%;
  padding-right: 10%;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  }
.photo-items:hover .description-photo{
 opacity: 1;
}
.photo-items:hover .content-overlay{
  opacity: 1;
}
.content-overlay{
  background: rgba(0,0,0,0.7);
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  -webkit-transition: all 0.4s ease-in-out 0s;
  -moz-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}

  /* MOSAIQUE VIDEO */



  .items{
  position: relative;
  overflow: hidden;
  animation: bright 3s;
  width: 33.33%;
  
  
  }
  .items:hover .miniature {
    
    -webkit-transform:scale(1.1);
    -moz-transform:scale(1.1);
    transform: scale(1.1);
  }
.items:hover{

  cursor: pointer;
}

  .items:hover .legende{
    transform: translateY(-200%);
    /* -webkit-transition: opacity .5s ease-out;
    -moz-transition: opacity .5s ease-out;
    -o-transition: opacity .5s ease-out;
    transition: opacity .5s ease-out; */

  }
  .miniature{
    display: block;
    width: 101%;
    height: 101%;
    position: relative;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
   
    
  }
  .legende{
    position: absolute;
    transition: all 0.5s ease;
    font-size: 1em;
    opacity: 1;
    padding-left: 2%;
  }
  .legende:hover{
    cursor: pointer;
  }
  .row {
    display: flex;
    
  }
.container-video{
  background-color: black;
  display: flex;
  flex-direction: column;
  
}

/*CONTACT*/



.movediv{
  
  opacity: 0;
  position: absolute;
  top: 10px;
  left: 10px;
  width: 30vw;
  background-color:white;
  color:black;
  padding: 5px;
  font-size:0.6em;
  transition: opacity 0.5s ease-in-out;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
#texte {
  /* font-family: 'Vidaloka', serif; */
  text-align: justify;
}

.divapper{
  opacity: 1;
}

.container-contact{

  display: flex;
  justify-content: center;
  text-align: center;
  color: black;
  margin-top:10vh;
  margin-bottom: 5vh;
  
}
.left, .right{
  width: 400px;
}
.left{
  display: flex;
  flex-direction: column;

}

.Nom-prenom
{
  font-size: 1.5em;
  margin: auto;
}
.titre-client
{
font-size:1em;
}
.mail-lien
{
  color: rgb(0, 0, 0);
  position: relative;
  border-bottom: #000 1px inset;
}
.mail-lien:after {
  content: "";
  position: absolute;
  z-index: -1;
  background: yellow;
  top: 70%;
  left: 0;
  right: 0;
  bottom: 0;
  transition: transform .5s cubic-bezier(0.4, 0.5, 0.2, 0.9);
  transform: scaleX(0);
  transform-origin: right;
}
.mail-lien:hover::after {
  transform-origin: left;
  transform: scaleX(1);
}


.contact{
  margin: auto;
  font-size: 1.5em;
}
.element-contact {
  margin-bottom: 10px;
}

.container-contact >section> .avis-client >ul >li {
  text-decoration: none;
  list-style-type: none;
}

.avis-client{
  
  font-size: 1.5em;
  text-align: center;
}
.avis-client > ul > li > a{
  font-family: 'Vidaloka', serif;
  position: relative;
  color:black;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.avis-client > ul > li>a:after {
  content: "";
  position: absolute;
  z-index: -1;
  background: yellow;
  top: 70%;
  left: 0;
  right: 0;
  bottom: 0;
  transition: transform .5s cubic-bezier(0.4, 0.5, 0.2, 0.9);
  transform: scaleX(0);
  transform-origin: right;
}

.avis-client > ul > li> a:hover::after {
  transform-origin: left;
  transform: scaleX(1);
}



  /*FOOTER */

  .fixed{
    position: fixed;
  }
  .relative{
    position: relative;
    padding:100px
  }
  .footer2{
    bottom: 0;
    width: 100%;
    text-align: center;
    animation: slidedown ;
    animation-duration: 1.2s;
    animation-fill-mode: forwards;
    animation-timing-function: ease-in-out;
  }
  .footer2 > ul >li {
    text-decoration: none;
    list-style-type: none;
    margin: 20px;
    
  }
  .blackfooter>ul>li>a{
    color:black
  }
  .footer {

    bottom: 0;
    width:100%;
    animation: slidedown ;
    animation-duration: 1.2s;
    animation-timing-function:ease-in-out;
  }
  .footer1{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9em;
    animation: slidedown ;
    animation-duration: 1.2s;
    animation-fill-mode: forwards;
    animation-timing-function: ease-in-out;
  }
  .footer-child{
    margin:20px;
  }
  .mentionslien
  {
    font-size: 0.8em;
  }
  svg,.blacksvg path{
    fill: rgba(2, 2, 2, 0.5);
  }

   svg,svg path {
    width: 24px;
    fill: rgba(255, 255, 255, 0.521);
  }
  .svg_youtube{
    width: 40px; /* plus grand que les autres */
  height: 40px;

  }
 /* MENTIONS */

 .mentions{
   margin-top: 10vh;
   color: black;
   text-align: center;
   font-size: 1em;
   margin-bottom: 5vh;
   
 }
 .mentions>ul>li{
  text-decoration: none;
  list-style-type: none;
 }

  /* PRESENTATION */

  #transistion
  {
    position: relative;
    z-index: 99999;
    background-color: white;
    display: flex;
    
  }
  

  #presentation
  {
    margin: 50px;
    box-shadow: 3px 3px red, -1em 0 .4em olive;
  }

  /*MEDIA QUERY */


  @media only screen and (max-width: 800px) {
    .row {
      flex-direction: column;
    }
    .items{
      width:100%;
    }
   
  }
  @media only screen and (min-width: 1034px){
    #video-bg{
      -webkit-transform: translateX(-50%) translateY(-50%);
      transform: translateX(-50%) translateY(-50%);
  
    }
  }
  
  @media only screen and (max-width: 1024px) {
  
    #video-bg{
      object-fit: cover;
      width: 100vw;
      height: 100vh;
      position: fixed;
      top: 0;
      left: 0;
     
    }
    .container-photo{
      column-count: 2;
    }
    .container-contact{
      flex-direction: column;
  
    }
    .fixed{
      position: relative;
    }
    .movediv{
      width: 60%;
    }
  
  }
  @media only screen and (max-width: 480px) {

  
    .container-photo{
      column-count: 1;
    }
    .container-contact{
      font-size:0.8em;
    }
    .movediv{
      width:80%;
    }
    *{
      -webkit-user-select: none;
      -moz-user-select: none;
      user-select: none;
      
    }
    .mentions{
      font-size: 0.8em;
    }
  
  }  