.parallax-container {
  height: 100%;
}

.parallax-wrapper {

}
.parallax-slide {
	height: 100%;
}

.parallax-container .parallax-slide {
	text-align: center;
	background-position: center;
	
	background-size: cover;
	
	
	/* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;

}

.parallax-pagination {
	position: fixed;
	top: 50%;
	right: 0;
	text-align: right;
}
.nav-parallax{	
	display: block; /* pour les fadeTo */
}

a.nav-parallax:focus { outline: 0; }
.nav-parallax .parallax-pagination-bullet .bullet{
	display: inline-block;
	width: 10px;
	height: 10px;
	border-radius: 10px;
	vertical-align: middle;
	
}
.parallax-pagination .active-slide .bullet{
	display: inline-block;
	width: 20px;
	height: 20px;
	border-radius: 20px;
	vertical-align: middle;
	
}
.nav-parallax .parallax-pagination-bullet .bullet-line{
	display: inline-block;
	vertical-align: middle;	
}



@media (max-width: 600px){
	.parallax-pagination {
		visibility:hidden;
	}
	.parallax-slide {
		background-position: top!important;
		background-size: 100%!important;
		background-repeat: no-repeat;
		display: block;
		padding-top: 200px;
		background-size: cover;
	}
	.parallax-slide:not(#slide-0) {
		margin-top: 60px;
	}
	.parallax-wrapper-content {
		max-width:86%!important;
	}
}








