/* *******************carousel*************** */
.intro {
	margin-top:-100px;
}
.carousel {
	position: relative;
	width: 100%;
	height: 100vh;
}
h1 {
	font-size: 8rem;
	margin-bottom: 3rem;
}
h1 + p {
  color: #949494;
  font-size: 1.6rem;
  margin-bottom: 4rem;
}
p + a {
  font-size: 1.6rem;
  color: #000;
}
.slider {
	float: right;
	position: relative;
	width: 100%;
	height: 100%;
}

.slider li {
	position: absolute;
	transform-origin: center center 0;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: 100% 100%;
	/* transition: opacity; */
	transition: clip .7s ease-in-out, z-index 0s .7s;
	clip: rect(0, 100vw, 100vh, 100vw);
	-ms-transform:  translateZ(-1px) scale(1.1);
	-moz-transform:  translateZ(-1px) scale(1.1);
	display: table;
	-moz-animation: 50s para infinite linear ;
	background-repeat: no-repeat;	
}
.center-y {
	display: table-cell;
	vertical-align: middle;
	text-align: center;
	color: #fff;
}
h3 {
	font-size: 5rem;
	font-style: italic;
	/* text-shadow: 0 1px 1px #000; */
	text-shadow: black 0.05em 0.05em 0.9em; 
}
h3 + a {
	font-size: 1.6rem;
	display: inline-block;
	color: #fff;
	margin-top: 2rem;
	background-color:rgba(12,12,12,0.3);
}
h3, h3 + a {
	opacity: 0;
	transition: opacity .7s 0s, transform .5s .2s;
	transform: translate3d(0, 50%, 0);
}
 a {
	text-decoration:none;
}
li.current h3, li.current h3 + a {
	opacity: 1;
	transition-delay: 1s;
	transform: translate3d(0, 0, 0);
}
li.current {
	z-index: 1;
	clip: rect(0, 100vw, 100vh, 0);
}
li.prev {
	clip: rect(0, 0, 100vh, 0);
}
.slider nav {
	position: absolute;
	bottom: 5%;
	left: 0;
	right: 0;
	text-align: center;
	z-index: 10;
	top:680px;/* a enlever si besoin concerne les ronds */
}
.navslide nav a {
	display: inline-block;
	/* border-radius: 50%; */
	/* width: 1.2rem; */
	/* height: 1.2rem; */
  /* min-width: 12px; */
  /* min-height: 12px; */
	/* background: #fff; */
	/* margin: 0 1rem; */
  transition: transform .3s;
}

.navslide img {
	border-radius: 10%;
	border: 3px solid white;
	width: 4.2rem;
	height: 2.8rem;
	min-height: 12px;
	margin: 0 0.4rem;
}
.navslide img:hover {
	opacity: 0.8;
}

a.current_dot {
	transform: scale(1.4);
	
}
@media screen and (max-width: 700px) {
	.left {
		width: 100%;
		height: 30%;
	}
	.slider {
		width: 100%;
		height: 10%;
	}
}
/* sur la premiere image */
.fade-in-image {
  animation: fadeIn 5s;
  -webkit-animation: fadeIn 5s;
  -moz-animation: fadeIn 5s;
  -o-animation: fadeIn 5s;
  -ms-animation: fadeIn 5s;
}
@keyframes fadeIn {
  0% {opacity:0;}
  100% {opacity:1;}
}

@-moz-keyframes fadeIn {
  0% {opacity:0;}
  100% {opacity:1;}
}

@-webkit-keyframes fadeIn {
  0% {opacity:0;}
  100% {opacity:1;}
}

@-o-keyframes fadeIn {
  0% {opacity:0;}
  100% {opacity:1;}
}

@-ms-keyframes fadeIn {
  0% {opacity:0;}
  100% {opacity:1;}
}

