

/*Reset CSS mise en place menu déroulant*/
*{
    margin: 0px;
    padding: 0px;
    font-family: Avenir, sans-serif;
	font-size: 28px;
}

nav{
    width: 100%;
    margin: 0 auto;
    background-color: #000000;
    position: sticky;
    top: 0px;
}

nav ul{
    list-style-type: none;
}

nav ul li{
    float: left;
    width: 16%;
    text-align: center;
    position: relative;
}

nav ul::after{
    content: "";
    display: table;
    clear: both;
}

nav a{
    display: block;
    text-decoration: none;
    color: white;
    border-bottom: 2px solid transparent;
    padding: 10px 0px;
}

nav a:hover{
    color: orange;
    border-bottom: 2px solid gold;
}

.sous{
    display: none;
    box-shadow: 0px 1px 2px #CCC;
    background-color: white;
    position: absolute;
    width: 100%;
    z-index: 1000;
}
nav > ul li:hover .sous{
    display: block;
}
.sous li{
    float: none;
    width: 100%;
    text-align: left;
}
.sous a{
    padding: 10px;
    border-bottom: none;
}
.sous a:hover{
    border-bottom: none;
    background-color: RGBa(200,200,200,0.1);
}
.deroulant > a::after{
    content:" ▼";
    font-size: 28px;
}

.conteneur{
  margin: 50px 20px;
  height: 1500px;
}
/* FIN */

/* Défilement fond */
.d1{
    width: 100%;
    height: 600px;
    /* margin: 0px auto; */
    /* box-shadow: 0px 15px 10px -5px #777; */
	background-image: url("http://amandineandre.fr/index/001.png");
    /* background-color: #EDEDED; */
    /* background-size: contain; */
	background-position: center;
      background-repeat: no-repeat;
      background-size: cover;
    animation: fondu 15s ease-in-out infinite both;
}
.conteneur{
    max-width: 100%;
    margin: 10px auto;
}
.d2{
    width: 100%;
    height: 0px;
    padding-top: 75%;
    box-shadow: 0px 0px 10px #777;
	background-image: url("http://amandineandre.fr/index/005.png");
    /* background-color: #EDEDED; */
    /* background-size: contain; */
	background-position: center;
      background-repeat: no-repeat;
      background-size: cover;
    animation: fondu 15s ease-in-out infinite both;
	}
.d1:hover, .d2:hover{
    animation-play-state: paused;
}
@keyframes fondu{
    0%{background-image: url("index/005.png");}
    33.33%{background-image: url("index/005.png");}
    66.67%{background-image: url("index/005.png");}
	100%{background-image: url("index/005.png");}
}
/* FIN */


/* Photos avec survol */
.exemple_cover:hover{   -webkit-transform:scale(1.25); /* Safari and Chrome */
    -moz-transform:scale(2); /* Firefox */
    -ms-transform:scale(2); /* IE 9 */
    -o-transform:scale(2); /* Opera */
     transform:scale(2);
}
 

.exemple_cover {
	height: 220px;
  width: 220px;
  background-color: white;
  /* background-image: url(https://mdn.mozillademos.org/files/12988/p_201.jpg); */
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: 1px 1px 12px #000000;
}
/* Photos avec survol lots*/
.exemple_coverlot:hover{   -webkit-transform:scale(1.25); /* Safari and Chrome */
    -moz-transform:scale(2); /* Firefox */
    -ms-transform:scale(2); /* IE 9 */
    -o-transform:scale(2); /* Opera */
     transform:scale(2);
}
 

.exemple_coverlot {
	height: 220px;
  width: 220px;
  background-color: white;
  /* background-image: url(https://mdn.mozillademos.org/files/12988/p_201.jpg); */
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: 1px 1px 12px #000000;
}

.image-ronde-bg{
  background-size : contain;
  background-position : 50% 50%; 
  background-image : url(/img/exemple/filter-image.jpg);
  display : inline-block;
  width : 300px; height : 300px;
  border: none;
  -moz-border-radius : 50px;
  -webkit-border-radius : 50px;
  border-radius : 50px;
}

.image-ronde-bg:hover{   -webkit-transform:scale(1.25); /* Safari and Chrome */
    -moz-transform:scale(2); /* Firefox */
    -ms-transform:scale(2); /* IE 9 */
    -o-transform:scale(2); /* Opera */
     transform:scale(2);
}

