/* CSS Document */
/* make keyframes that tell the start state and the end state of our object */

@-webkit-keyframes fadeIn { from { opacity:0;  /* IE9 only */ } to { opacity:1; } }
@-moz-keyframes fadeIn { from { opacity:0;  /* IE9 only */ } to { opacity:1; } }
@keyframes fadeIn { from { opacity:0;  /* IE9 only */ } to { opacity:1; } }


.fade-in {
	
	opacity:0;  /* make things invisible upon start */
	-webkit-animation:fadeIn ease-in 1;  /* call our keyframe named fadeIn, use animattion ease-in and repeat it only 1 time */
	-moz-animation:fadeIn ease-in 1;
	animation:fadeIn ease-in 1;

	-webkit-animation-fill-mode:forwards;  /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
	-moz-animation-fill-mode:forwards;
	animation-fill-mode:forwards;

	-webkit-animation-duration:1.2s;
	-moz-animation-duration:1.2s;
	animation-duration:1.2s;
}

.fade-in.Oferta {
-webkit-animation-delay: 0s;
-moz-animation-delay: 0s;
animation-delay: 0s;
position: relative;
}

.fade-in.Galeria {
-webkit-animation-delay: 0.3s;
-moz-animation-delay: 0.3s;
animation-delay: 0.3s;
position: relative;
}

.fade-in.Kontakt {
-webkit-animation-delay: 0.6s;
-moz-animation-delay: 0.6s;
animation-delay: 0.6s;
position: relative;
}
.fade-in.Kartoteka {
-webkit-animation-delay: 0.9s;
-moz-animation-delay: 0.9s;
animation-delay: 0.9s;
position: relative;
}

.fade-in.Tekst {
-webkit-animation-delay: 1.2s;
-moz-animation-delay: 1.2s;
animation-delay: 1.2s;
position: relative;
}


.fade-in-start {
	
	opacity:0;  /* make things invisible upon start */
	-webkit-animation:fadeIn ease-in 1;  /* call our keyframe named fadeIn, use animattion ease-in and repeat it only 1 time */
	-moz-animation:fadeIn ease-in 1;
	animation:fadeIn ease-in 1;

	-webkit-animation-fill-mode:forwards;  /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
	-moz-animation-fill-mode:forwards;
	animation-fill-mode:forwards;

	-webkit-animation-duration:0.9s;
	-moz-animation-duration:0.9s;
	animation-duration:0.9s;
}

.fade-in-start.buttonOferta1 {
-webkit-animation-delay: 0s;
-moz-animation-delay: 0s;
animation-delay: 0s;
position: relative;
}

.fade-in-start.buttonOferta2 .fade-in-start.buttonOferta3 .fade-in-start.buttonOferta4 .fade-in-start.buttonOferta5 {
-webkit-animation-delay: 0.3s;
-moz-animation-delay: 0.3s;
animation-delay: 0.3s;
position: relative;
}

.fade-in-start.buttonGalerii1 {
-webkit-animation-delay: 0.6s;
-moz-animation-delay: 0.6s;
animation-delay: 0.6s;
position: relative;
}

.fade-in-start.buttonGalerii2 .fade-in-start.buttonGalerii3 .fade-in-start.buttonGalerii4 .fade-in-start.buttonGalerii5 {
-webkit-animation-delay: 0.9s;
-moz-animation-delay: 0.9s;
animation-delay: 0.9s;
position: relative;
}


