.invisible {
	opacity: 0.0;
	-webkit-transition: all 2.0s ease;
	-o-transition: all 2.0s ease;
	transition: all 2.0s ease;
}

.visible {
	opacity: 1;
}

@media screen and (max-width:1200px) {

	.invisible {
		opacity: 1;
		-webkit-transition: all 2.0s ease;
		-o-transition: all 2.0s ease;
		transition: all 2.0s ease;
	}

	.visible {
		opacity: 1;
	}
}


@media screen and (max-width:1000px) and (orientation:portrait) {
	.invisible {
		opacity: 1;
		-webkit-transition: all 2.0s ease;
		-o-transition: all 2.0s ease;
		transition: all 2.0s ease;
	}

	.visible {
		opacity: 1;
	}
}