/*Mise en page pour mobile*/
#container1{
	   width:90%;
	   margin: auto;
	   background-color: white;
	   display: grid;
	
	grid-template-areas: 
	   "piedpage";
}	
footer{ 
     grid-area: piedpage;
}


/*Mise en page pour Media queries pour la tablette*/

@media only screen and (min-width: 700px)
{
  #container1 {
	   width:90%;
	   margin: auto;
	   background-color: white;
	   display: grid;
	   gap: 10px;
	
	grid-template-columns: 1fr 1fr;
	
	grid-template-areas: 
	   "piedpage piedpage";
  }		
}
/*Mise en page pour Media queries pour la ordi destop*/

@media only screen and (min-width: 1000px)
{
  #container1 {
	   width:90%;
	   margin: auto;
	   background-color: white;
	   display: grid;
	   gap: 10px;
	
	grid-template-columns: 2fr 1fr 1fr;
	
	grid-template-areas: 
	   "piedpage piedpage piedpage";
  }		
}

/*Mise en page pour mobile*/
#container2{
	   width:90%;
	   margin: auto;
	   background-color: black;
	   display: grid;
	
	grid-template-areas: 
	   "entete";
}	
nav{ 
     grid-area: entete;
} 


/*Mise en page pour Media queries pour la tablette*/

@media only screen and (min-width: 700px)
{
  #container2 {
	   width:90%;
	   margin: auto;
	   background-color: black;
	   display: grid;
	   gap: 10px;
	
	grid-template-columns: 1fr 1fr;
	
	grid-template-areas: 
	   "entete";
  }		
}
/*Mise en page pour Media queries pour la ordi destop*/

@media only screen and (min-width: 1000px)
{
  #container2 {
	   width:90%;
	   margin: auto;
	   background-color: black;
	   display: grid;
	   gap: 10px;
	
	grid-template-columns: 2fr 1fr 1fr;
	
	grid-template-areas: 
	   "entete entete entete";
  }		
}

body{
	   background-color: white;
}
.bloc{
	   position: relative;
	   height: 100vh;
	   width: 100%;
	   background-color: black;
	   overflow: hidden;
	   display: flex;
	   align-items: center;
	   justify-content: center;
}
.bloc-video{
	    width: 100px;
	    height: auto;
	    top: 50px;
	    left: 50px;
	
}
.logo {
        width: 150px; 
        cursor: pointer;
	    height: auto;
}
header { 
        display: flex;
        text-align: center;
	    justify-content: center;
        margin: 20px;
	    background-color: #000; 
        color: white;
        padding: 20px;
        align-items: center;
	    overflow: hidden;
}
nav {
        display: flex;
        justify-content: center;
        padding: 10px;
        flex-grow: 1;
	    color: white;
	    text-decoration: none;
		font-family: Questrial;		
}
 a {
	    display: flex;
        text-decoration: none !important; 
        margin: 0 30px;   
		color: white;
		justify-content: center;
		text-align: center;
}
#le_comte {
	    display: flex;
	    justify-content: center;
	    align-items: center;
	    color: #919191;
	    font-size: 2em;
	    font-family: Questrial;
	    font-weight: 900;
	    text-align: left;	
 }  
.grid-container {
        display:flex;
        align-items: center;
        gap: 5px; 		
}

.grid-container img {
		display: flex;
		justify-content: center;
		align-items: center;
        width: 200px;
        height: auto;
		
}
.grid-container .text {
		display: flex;
		text-align: left;
		justify-content:center;
		align-items: center;
        font-size: 1em;
		font-family: Kufam;
    }
.button {
        display: flex;
	    justify-content: center;
        align-items: center;
        text-align: center;
        height: 50px;
        width: 200px;
        position: relative;
        background-color: transparent;
        cursor: pointer;
        border: 2px solid #482e1d;
        overflow: hidden;
        border-radius: 30px;
        color: #be8b60;
        transition: all 0.5s ease-in-out; 
}

.btn-txt {
       display: flex;
       color: black;
       z-index: 1;
       font-weight: 800;
       letter-spacing: 1px;
       font-family: Kufam;
       justify-content: center;
}

.type1::after {
	   display: flex;
       content: "";
       position: absolute;
       left: 0;
       top: 0;
       transition: all 0.5s ease-in-out;
       background-color: #b57537;
       border-radius: 30px;
       visibility: hidden;
       height: 10px;
       width: 10px;
       z-index: -1;
}

.button:hover {
	   display: flex;
       box-shadow: 1px 1px 200px #252525;
       color: #fff;
       border: none;
}

.type1:hover::after {
	   display: flex;
       visibility: visible;
       transform: scale(100) translateX(2px);
}

hr{
	   margin: 90px;
	   color: black;
}
 
.gallery-container {
       position: relative;
       width: 80%;
       margin: 0 auto;
       overflow: hidden; 
}

.gallery {
       display: flex;
       transition: transform 0.5s ease;
}

.gallery img {
       width: 500px;
       max-width: 500px;
       margin: 10px;
       border-radius: 10px;
}

.arrow {
       position: absolute;
       top: 50%;
       transform: translateY(-50%);
       background-color: rgba(0, 0, 0, 0.5);
       color: white;
       padding: 10px;
       font-size: 20px;
       cursor: pointer;
       border: none;
       border-radius: 50%;
       z-index: 10;
}

.arrow-left {
       left: 10px;
}

.arrow-right {
       right: 10px;
}
.reseaux {
       display: flex;          
       gap: 10px;
       grid-area: piedpage;
}

.logos {
       width: 50px;             
       height: auto;
}
		
#alexdumas{
	   display: flex;
	   justify-content: center;
	   align-items: center;
	   color: black;
	   font-size: 3em;
	   font-family: Questrial;
	   font-weight: 900;
	   text-align: left;
	   margin-bottom: 0.5px;
}	
#son_histoire{
	   display: flex;
	   justify-content: center;
	   align-items: center;
	   color: #919191;
	   font-size: 2em;
	   font-family: Questrial;
	   font-weight: 700;
	   text-align: left;
	   margin-bottom: 0.5px;	
}
.grid-container2 {
       display: flex;
       align-items: center;
       gap: 5px;
		
}

.grid-container2 img {
	   display: flex;
       width: 200px;
       height: auto;
	   margin: 10px;
}

.grid-container2 .text {
	   display: flex;
	   text-align: left;
       font-size: 1em;
	   margin: 10px;
	   font-family: Kufam;
}
#synopsis{
	   display: flex;
	   justify-content: center;
	   align-items: center;
	   color: #919191;
	   font-size: 2em;
	   font-family: Questrial;
	   font-weight: 700;
	   text-align: left;
	   margin-bottom: 0.5px;	
	
}	
p{
	   display: flex;
	   align-items: center;
	   font-family: Kufam;
	   font-size: 1em;
	   justify-content: center;
	   text-align: center;

}
.image-container {
	   display: flex;
       justify-content: center;
	   align-items: center;
       gap:1px;  
}
.image-container img {
	   display: flex;
	   justify-content: center;
	   align-items: center;
	   width: 200px;
       margin-right: 10px; 
       display: flex;
       gap: 10px;
       transition: transform 0.3s ease;
}
.image-container img:hover {
       transform: scale(3);
}
.container {
       display: flex;
       justify-content: center; 
       align-items: center;
       text-align: center;  
       padding: 10px;           
}

.text {
	   display: flex;
	   justify-content: center;
	   align-items: center;
       font-family: Kufam;
       font-size: 18px;        
       grid-area: piedpage;
  
}

#perso{
	   display: flex;
	   justify-content: center;
	   align-items: center;
	   color: black;
	   font-size: 3em;
	   font-family: Questrial;
	   font-weight: 900;
	   text-align: left;
	   margin-bottom: 0.5px;		
}
#edmond{
	   display: flex;
	   justify-content: center;
	   align-items: center;
	   color: #919191;
	   font-size: 2em;
	   font-family: Questrial;
	   font-weight: 700;
	   text-align: left;
	   margin-bottom: 0.5px;
}
.sub p {
	   display: flex;
       margin-top: 10px; 
       font-size: 14px;
       color: #919191;
}
.grid-container3 {
       display: flex;
       align-items: center; 
       gap: 5px; 
		
}
.grid-container3 img {
	   display: flex;
       width: 300px;
       height: auto;
	   margin: 10px;
}

.grid-container3 .text {
	  display: flex;
	  text-align: left;
      font-size: 1em;
	  margin: 10px;
      margin-left: 10px;
      font-family: Kufam;
}
#mercedes{
	  display: flex;
	  justify-content: center;
	  align-items: center;
	  color: #919191;
	  font-size: 2em;
	  font-family: Questrial;
	  font-weight: 700;
	  text-align: left;
	  margin-bottom: 0.5px;
}
.grid-container4 {
      display: flex; 
      align-items: center; 
      gap: 5px;		
		
 }
.grid-container4 img {
	  display: flex;
      width: 300px;
      height: auto;
      margin: 10px;
    }
.grid-container4 .text {
	  display: flex;
      text-align: left;
      font-size: 1em;
      margin: 10px;
      margin-left: 10px;
	  font-family: Kufam;
 }
 #morcef{
	  display: flex;
	  justify-content: center;
	  align-items: center;
	  color: #919191;
	  font-size: 2em;
	  font-family: Questrial;
	  font-weight: 700;
	  text-align: left;
	  margin-bottom: 0.5px;	 
 }
.grid-container5 {
      display: flex; 
      align-items: center; 
      gap: 5px;		
		
 }
.grid-container5 img {
	  display: flex;
      width: 300px;
      height: auto;
	  margin: 10px;
    }
.grid-container5 .text {
	  display: flex;
	  text-align: left;
      font-size: 1em;
	  margin: 10px;
      margin-left: 10px;
	  font-family: Kufam;
 }
 #villefort{
	  display: flex;
	  justify-content: center;
	  align-items: center;
	  color: #919191;
	  font-size: 2em;
	  font-family: Questrial;
	  font-weight: 700;
	  text-align: left;
	  margin-bottom: 0.5px;
	 
 }
.grid-container6 {
      display: flex;
      align-items: center; 
      gap: 5px;		
 }
.grid-container6 img {
	  display: flex;
      width: 300px;
      height: auto;
      margin: 10px;
    }

.grid-container6 .text {
	  display: flex;
      text-align: left;
      font-size: 1em;
	  margin: 10px;
      margin-left: 10px;
      font-family: Kufam;
 }
 #perso_second{
      display: flex;
      justify-content: center;
	  align-items: center;	 
      color: black;
	  font-size: 3em;
	  font-family: Questrial;
	  font-weight: 900;
	  text-align: left;
	  margin-bottom: 0.5px;	 
 }
 #haydee{
	  display: flex;
	  justify-content: center;
	  align-items: center;
	  color: #919191;
	  font-size: 2em;
	  font-family: Questrial;
	  font-weight: 700;
	  text-align: left;
	  margin-bottom: 0.5px;
 }
.grid-container7 {
      display: flex; 
      align-items: center; 
      gap: 5px;		
		
 }
.grid-container7 img {
	  display: flex;
      width: 300px;
      height: auto;
      margin: 10px;
    }

.grid-container7 .text {
	  display: flex;
      text-align: left;
      font-size: 1em;
	  margin: 10px;
      margin-left: 2px;
	  font-family: Kufam;
 }
 #albert{
	  display: flex;
	  justify-content: center;
	  align-items: center;
	  color: #919191;
	  font-size: 2em;
	  font-family: Questrial;
	  font-weight: 700;
	  text-align: left;
      margin-bottom: 0.5px;
 }
.grid-container8 {
      display: flex; 
      align-items: center; 
      gap: 5px;		
 }
.grid-container8 img {
	  display: flex;
      width: 300px;
      height: auto;
	  margin: 10px;
}

.grid-container8 .text {
	  display: flex;
      text-align: left;
      font-size: 1em;
	  margin: 10px;
      margin-left: 30px;
	  font-family: Kufam;
 }
 #andrea{
	  display: flex;
	  justify-content: center;
	  align-items: center;
	  color: #919191;
	  font-size: 2em;
	  font-family: Questrial;
	  font-weight: 700;
	  text-align: left;
	  margin-bottom: 0.5px;
 }
 
.grid-container9 {
      display: flex; 
      align-items: center; 
      gap: 5px;		
		
 }
.grid-container9 img {
	  display: flex;
      width: 300px;
      height: auto;
      margin: 10px;
}

.grid-container9 .text {
	  display: flex;
	  text-align: left;
      font-size: 1em;
      margin: 10px;
      margin-left: 10px;
	  font-family: Kufam;
 }
 .text12{
	  display: flex;
	  text-align: center-right;
      font-size: 2em;
      font-family: Kufam;
 }
  .text15{
	  display: flex;
	  text-align: center;
      font-size: 1em;
      margin-left: 2px;
	  font-family: Kufam;
 }
  .text14{
	  display: flex;
	  text-align: center;
      font-size: 1em;
	  margin: 10px;
      margin-left: 2px;
	  font-family: Kufam;
 }
  .text3{
	  display: flex;
	  text-align: center;
      font-size: 1em;
	  margin: 10px;
      margin-left: 2px;
      font-family: Kufam;
 }
  .text4{
	  display: flex;
	  text-align: center;
      font-size: 1em;
	  margin: 10px;
      margin-left: 2px;
      font-family: Kufam;
 }
  .text18{
	  display: flex;
	  text-align: center;
      font-size: 1em;
	  margin: 10px;
      margin-left: 2px;
	  font-family: Kufam;
 }
 #prod{
	  display: flex;
	  justify-content: center;
	  align-items: center;
	  color: #919191;
	  font-size: 2em;
	  font-family: Questrial;
	  font-weight: 700;
	  text-align: left;
      margin-bottom: 0.5px;
 }
  #prod1{
	  display: flex;
	  justify-content: center;
	  align-items: center;
	  color: #919191;
	  font-size: 2em;
	  font-family: Questrial;
	  font-weight: 700;
	  text-align: left;
      margin-bottom: 0.5px;
 }
 
  #prod2{
	  display: flex;
	  justify-content: center;
	  align-items: center;
	  color: #919191;
	  font-size: 2em;
	  font-family: Questrial;
	  font-weight: 700;
      text-align: left;
      margin-bottom: 0.5px;
 }
 
  #prod3{
	  display: flex;
	  justify-content: center;
	  align-items: center;
	  color: #919191;
	  font-size: 2em;
	  font-family: Questrial;
	  font-weight: 700;
	  text-align: left;
      margin-bottom: 0.5px;
 }
 
  #prod4{
	  display: flex;
	  justify-content: center;
	  align-items: center;
	  color: #919191;
	  font-size: 2em;
	  font-family: Questrial;
	  font-weight: 700;
	  text-align: left;
      margin-bottom: 0.5px;
 }
 .image-container1 {
      display: grid;                         
      grid-template-columns: repeat(4, 1fr);
      grid-column-gap:1px;                           
}
.image-container1 img {
	  width: 200px;
      margin-right: 10px; 
      display: flex;
      gap: 10px;
      transition: transform 0.3s ease;
}
.image-container1 img:hover {
      transform: scale(2);
}
 .image-container2 {
      display: grid;                         
      grid-template-columns: repeat(4, 1fr);
      grid-column-gap:1px;                         
}
.image-container2 img {
	  width: 200px;
      margin-right: 10px; 
      display: flex;
      gap: 10px;
      transition: transform 0.3s ease;
}
.image-container2 img:hover {
      transform: scale(2);
}
#archives{
	  display: flex;
	  justify-content: center;
	  align-items: center;
	  color: #919191;
	  font-size: 2em;
	  font-family: Questrial;
	  font-weight: 700;
	  text-align: left;
      margin-bottom: 100px;
	
}
.banner img {
	  display: flex;
      margin-top: 100px;
      width: 100%;         
      height: auto;    
      display: block; 
}
#prod10{
	  display: flex;
	  justify-content: center;
	  align-items: center;
	  color: #919191;
	  font-size: 2em;
	  font-family: Questrial;
	  font-weight: 700;
	  text-align: left;
      margin-bottom: 100px;
	
}
.text30{
	  display: flex;
	  text-align: center;
      font-size: 1em;
      margin-left: 2px;
	  font-family: Kufam;
	
}
#prod11{
	  display: flex;
	  justify-content: center;
	  align-items: center;
	  color: #919191;
	  font-size: 2em;
	  font-family: Questrial;
	  font-weight: 700;
	  text-align: left;
	
}
#prod12{
	  display: flex;
	  justify-content: center;
	  align-items: center;
	  color: #919191;
	  font-size: 2em;
	  font-family: Questrial;
	  font-weight: 700;
	  text-align: left;
	
}
#prod13{
	  display: flex;
	  justify-content: center;
	  align-items: center;
	  color: #919191;
	  font-size: 2em;
	  font-family: Questrial;
	  font-weight: 700;
	  text-align: left;
	
}
.text32{
	  display: flex;
	  text-align: center;
      font-size: 1em;
      margin-left: 2px;
	  font-family: Kufam;
}
#prod15{
	  display: flex;
	  justify-content: center;
	  align-items: center;
	  color: #919191;
	  font-size: 2em;
	  font-family: Questrial;
	  font-weight: 700;
	  text-align: left;
	
}
.text39{
	  display: flex;
	  text-align: center;
      font-size: 1em;
      margin-left: 2px;
	  font-family: Kufam;
}
#prod16{
	  display: flex;
	  justify-content: center;
	  align-items: center;
	  color: #919191;
	  font-size: 2em;
	  font-family: Questrial;
	  font-weight: 700;
	  text-align: left;
	
}
.text41{
	  display: flex;
	  text-align: center;
      font-size: 1em;
      margin-left: 2px;
      font-family: Kufam;
}
.liens {
      display: block;
	  justify-content: center;	  
      align-items: center;
	  cursor: pointer;
      color: white;
	  font-size: 1em;
	  font-weight: 100;
	  text-transform: uppercase;
      position: absolute;
      z-index: 10;	
}
 .bloc_noir {
	  display: flex;
      background-color: black; 
      color: white; 
      padding: 20px; 
      width: 100%; 
      height: 85px; 
      margin: 20px auto; 
      border-radius: 10px; 
      position: relative;
      z-index: 1;
 }
#prod17{
	  display: flex;
	  justify-content: center;
	  align-items: center;
	  color: #919191;
	  font-size: 2em;
	  font-family: Questrial;
	  font-weight: 700;
	  text-align: left;
	
}