@charset "UTF-8";





.donc1  {
			   -webkit-animation-name: fadeIn;
			   animation-name: fadeIn;
			   -webkit-animation-duration: 0.5s;
			   animation-duration: 0.5s;
			   -webkit-animation-delay: 0.1s;
			   animation-delay: 0.1s; 
			   -webkit-animation-fill-mode: both;
			   animation-fill-mode: both;
	}
	
.donc2  {
			  -webkit-animation-name: fadeIn;
			  animation-name: fadeIn;
			  -webkit-animation-duration: 0.8s;
			  animation-duration: 0.8s;
			  -webkit-animation-delay: 0.3s;
			  animation-delay: 0.3s; 
			  -webkit-animation-fill-mode: both;
			  animation-fill-mode: both;
	}
	
.donc3  {
			  -webkit-animation-name: fadeIn;
			  animation-name: fadeIn;
			  -webkit-animation-duration: 0.12s;
			  animation-duration: 0.12s;
			  -webkit-animation-delay: 0.5s;
			  animation-delay: 0.5s; 
			  -webkit-animation-fill-mode: both;
			  animation-fill-mode: both;
	}
	
.donc3b  {
			  -webkit-animation-name: fadeIn;
			  animation-name: fadeIn;
			  -webkit-animation-duration: 1.12s;
			  animation-duration: 1.12s;
			  -webkit-animation-delay: 1.5s;
			  animation-delay: 1.5s; 
			  -webkit-animation-fill-mode: both;
			  animation-fill-mode: both;
	}
	
.donc4  {
			  -webkit-animation-name: fadeIn;
			  animation-name: fadeIn;
			  -webkit-animation-duration: 0.16s;
			  animation-duration: 0.16s;
			  -webkit-animation-delay: 0.8s;
			  animation-delay: 0.8s; 
			  -webkit-animation-fill-mode: both;
			  animation-fill-mode: both;
	}


.donc5  {
			  -webkit-animation-name: fadeInRight;
			  animation-name: fadeInRight;
			  -webkit-animation-duration: 0.6s;
			  animation-duration: 0.6s;
			  -webkit-animation-delay: 0.2s;
			  animation-delay: 0.2s; 
			  -webkit-animation-fill-mode: both;
			  animation-fill-mode: both;
	}
.donc6  {
			  -webkit-animation-name: slideInLeft;
			  animation-name: slideInLeft;
			  -webkit-animation-delay: 0.0s;
			  animation-delay: 0.0s; 
			  -webkit-animation-fill-mode: both;
			  animation-fill-mode: both;
	}
.donc7  {
			  -webkit-animation-name: fadeInDownBig;
			  animation-name: fadeInDownBig;
			  -webkit-animation-duration: 0.8s;
			  animation-duration: 0.8s;
			  -webkit-animation-delay: 0.0s;
			  animation-delay: 0.0s; 
			  -webkit-animation-fill-mode: both;
			  animation-fill-mode: both;
	}
.donc8  {
			  -webkit-animation-name: fadeOutUpBig;
			  animation-name: fadeOutUpBig;
			  -webkit-animation-duration: 1.6s;
			  animation-duration: 1.6s;
			  -webkit-animation-delay: 0.2s;
			  animation-delay: 0.2s; 
			  -webkit-animation-fill-mode: both;
			  animation-fill-mode: both;
	}
	
.donc9  {
			  -webkit-animation-name: fadeOut;
			  animation-name: fadeOut;
			  -webkit-animation-duration: 0.8s;
			  animation-duration: 0.8s;
			  -webkit-animation-delay: 0.3s;
			  animation-delay: 0.3s; 
			  -webkit-animation-fill-mode: both;
			  animation-fill-mode: both;
	}
.donc10 {
			  -webkit-animation-name: fadeInUp;
			  animation-name: fadeInUp;
			  -webkit-animation-duration: 0.6s;
			  animation-duration: 0.6s;
			  -webkit-animation-delay: 0.0s;
			  animation-delay: 0.0s;
			  -webkit-animation-fill-mode: both;
			  animation-fill-mode: both;
}
.donc11  {
			  -webkit-animation-name: slideInRight;
			  animation-name: slideInRight;
			  -webkit-animation-duration: 4.6s;
			  animation-duration: 4.6s;
			  -webkit-animation-delay: 0.2s;
			  animation-delay: 0.2s;
			  -webkit-animation-fill-mode: both;
			  animation-fill-mode: both;
	}

.donc12  {
			  -webkit-animation-name: slideInLeft;
			  animation-name: slideInLeft;
			  -webkit-animation-fill-mode: both;
			  animation-fill-mode: both;
	}



@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes zoomInDown {
  from {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}
@keyframes slideInLeft {
  from {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes fadeInDownBig {
  from {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}


@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}





@keyframes slideInRight {
  from {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.slideInRight {
  animation-name: slideInRight;
}



@-webkit-keyframes move {

	 0% {
	   -webkit-transform-origin: bottom left;
	   -moz-transform-origin: bottom left;
	   -ms-transform-origin: bottom left;
	   -o-transform-origin: bottom left;
	   transform-origin: bottom left;
	   transform: scale(1.0);
	   -ms-transform: scale(1.0);
	   /* IE 9 */
	
	   -webkit-transform: scale(1.0);
	   /* Safari and Chrome */
	
	   -o-transform: scale(1.0);
	   /* Opera */
	
	   -moz-transform: scale(1.0);
	   /* Firefox */
	 }
  	70% {
		transform: scale(1.25);
		-ms-transform: scale(1.25);
		/* IE 9 */
	
		-webkit-transform: scale(1.25);
		/* Safari and Chrome */
	
		-o-transform: scale(1.25);
		/* Opera */
	
		-moz-transform: scale(1.25);
	
		}
	
	100% {
		transform: scale(1.0);
		-ms-transform: scale(1.0);
		/* IE 9 */
	
		-webkit-transform: scale(1.0);
		/* Safari and Chrome */
	
		-o-transform: scale(1.0);
		/* Opera */
	
		-moz-transform: scale(1.0);
	
		}








