/*fullpage.js slide fadein effect. start*/
.fp-slidesContainer {
	width: 100%!important;
	transform: none!important;
}
.fp-slide {
	width: 100%!important;
	position: absolute;
	left: 0;
	top: 0;
	visibility: hidden;
	opacity: 0;
	z-index: 0;
	transition: all .7s ease-in-out;
}
.fp-slide.active {
	visibility: visible;
	opacity: 1;
	z-index: 1;
}
/*fullpage.js slide fadein effect. end*/