
/* HOMEPAGE PORTFOLIO 2 ANIMATION */
.og-grid li{
	opacity: 0;
}
.og-grid li.acyuta-animation{
	-webkit-animation: acyuta-ltr 1s 1 ease; /* Safari 4+ */ /* linear|ease|ease-in|ease-out|ease-in-out|cubic-bezier(0.175, 0.885, 0.320, 1.275) */
	-moz-animation:    acyuta-ltr 1s 1 ease; /* Fx 5+ */
	-o-animation:      acyuta-ltr 1s 1 ease; /* Opera 12+ */
	animation:         acyuta-ltr 1s 1 ease; /* IE 10+ */
	opacity: 1;
}


/* ENTRY TITLE ANIMATION */
.entrytitle h4, .entrytitle p{
	opacity: 0;
}
.entrytitle.acyuta-animation h4{
	-webkit-animation: acyuta-ltr 1s 1 ease; /* Safari 4+ */ /* linear|ease|ease-in|ease-out|ease-in-out|cubic-bezier(0.175, 0.885, 0.320, 1.275) */
	-moz-animation:    acyuta-ltr 1s 1 ease; /* Fx 5+ */
	-o-animation:      acyuta-ltr 1s 1 ease; /* Opera 12+ */
	animation:         acyuta-ltr 1s 1 ease; /* IE 10+ */
	opacity: 1;
}
.entrytitle.acyuta-animation p{
	-webkit-animation: acyuta-rtl 1s 1 ease; /* Safari 4+ */ /* linear|ease|ease-in|ease-out|ease-in-out|cubic-bezier(0.175, 0.885, 0.320, 1.275) */
	-moz-animation:    acyuta-rtl 1s 1 ease; /* Fx 5+ */
	-o-animation:      acyuta-rtl 1s 1 ease; /* Opera 12+ */
	animation:         acyuta-rtl 1s 1 ease; /* IE 10+ */
	opacity: 1;
}

/* TIMELINE ANIMATION */
.timeline li{
	opacity: 0;
}

.timeline li.acyuta-animation{
	-webkit-animation: acyuta-btt 1s 1 ease; /* Safari 4+ */ /* linear|ease|ease-in|ease-out|ease-in-out|cubic-bezier(0.175, 0.885, 0.320, 1.275) */
	-moz-animation:    acyuta-btt 1s 1 ease; /* Fx 5+ */
	-o-animation:      acyuta-btt 1s 1 ease; /* Opera 12+ */
	animation:         acyuta-btt 1s 1 ease; /* IE 10+ */
	opacity: 1;
}

/* PORTFOLIO-1 & BLOG ANIMATION */
.item{
	opacity: 0;
}

.item.acyuta-animation{
	-webkit-animation: acyuta-btt 1s 1 ease; /* Safari 4+ */ /* linear|ease|ease-in|ease-out|ease-in-out|cubic-bezier(0.175, 0.885, 0.320, 1.275) */
	-moz-animation:    acyuta-btt 1s 1 ease; /* Fx 5+ */
	-o-animation:      acyuta-btt 1s 1 ease; /* Opera 12+ */
	animation:         acyuta-btt 1s 1 ease; /* IE 10+ */
	opacity: 1;
}


/* HOMEPAGE PARALLAX SERVICE ANIMATION */

.service-blocks-wrap-2 li:hover .icon-wrap-2{
	-webkit-animation: acyuta-rotate 1s 1 ease; /* Safari 4+ */ /* linear|ease|ease-in|ease-out|ease-in-out|cubic-bezier(0.175, 0.885, 0.320, 1.275) */
	-moz-animation:    acyuta-rotate 1s 1 ease; /* Fx 5+ */
	-o-animation:      acyuta-rotate 1s 1 ease; /* Opera 12+ */
	animation:         acyuta-rotate 1s 1 ease; /* IE 10+ */
}
.service-blocks-wrap-2 li{
	opacity: 0;
}

.service-blocks-wrap-2 li.acyuta-animation{
	-webkit-animation: acyuta-btt 1s 1 ease; /* Safari 4+ */ /* linear|ease|ease-in|ease-out|ease-in-out|cubic-bezier(0.175, 0.885, 0.320, 1.275) */
	-moz-animation:    acyuta-btt 1s 1 ease; /* Fx 5+ */
	-o-animation:      acyuta-btt 1s 1 ease; /* Opera 12+ */
	animation:         acyuta-btt 1s 1 ease; /* IE 10+ */
	opacity: 1;
}

/* PRICING ANIMATION */
.pricing-table .pricing{
	opacity: 0;
}

.pricing-table .pricing.acyuta-animation{
	-webkit-animation: acyuta-btt 1s 1 ease; /* Safari 4+ */ /* linear|ease|ease-in|ease-out|ease-in-out|cubic-bezier(0.175, 0.885, 0.320, 1.275) */
	-moz-animation:    acyuta-btt 1s 1 ease; /* Fx 5+ */
	-o-animation:      acyuta-btt 1s 1 ease; /* Opera 12+ */
	animation:         acyuta-btt 1s 1 ease; /* IE 10+ */
	opacity: 1;
}


/* SHOWCASE */
.showcase .add-animation{
	opacity:0;
}

.showcase .add-animation.acyuta-animation{
	-webkit-animation: acyuta-ltr 1s 1 ease; /* Safari 4+ */ /* linear|ease|ease-in|ease-out|ease-in-out|cubic-bezier(0.175, 0.885, 0.320, 1.275) */
	-moz-animation:    acyuta-ltr 1s 1 ease; /* Fx 5+ */
	-o-animation:      acyuta-ltr 1s 1 ease; /* Opera 12+ */
	animation:         acyuta-ltr 1s 1 ease; /* IE 10+ */
	opacity: 1;
}


/*
=====================================================
	CORE ANIMATIONS
=====================================================
*/


/*appearing animation*/
@-webkit-keyframes acyuta-appear {
  0%   { -webkit-transform:scale(0.5); opacity: 0.1;  }
  100% { -webkit-transform:scale(1); opacity: 1; }
}
@-moz-keyframes acyuta-appear {
  0%   { -moz-transform:scale(0.5); opacity: 0.1;  }
  100% { -moz-transform:scale(1);opacity: 1;  }
}
@-o-keyframes acyuta-appear {
  0%   { -o-transform:scale(0.5); opacity: 0.1;  }
  100% { -o-transform:scale(1);  opacity: 1; }
}
@keyframes acyuta-appear {
  0%   { transform:scale(0.5); opacity: 0.1;  }
  100% { transform:scale(1); opacity: 1;  }
}

/*slide down (height increase) animation*/
@-webkit-keyframes acyuta-slide-down {
  0%   { height:0%; }
  100% { height:100%; }
}
@-moz-keyframes acyuta-slide-down {
  0%   { height:0%; }
  100% { height:100%; }
}
@-o-keyframes acyuta-slide-down {
  0%   { height:0%; }
  100% { height:100%; }
}
@keyframes acyuta-slide-down {
  0%   { height:0%; }
  100% { height:100%; }
}

/*expand width animation*/
@-webkit-keyframes acyuta-expand {
  0%   { width:0%; }
  100% { width:100%; }
}
@-moz-keyframes acyuta-expand {
  0%   { width:0%; }
  100% { width:100%; }
}
@-o-keyframes acyuta-expand {
  0%   { width:0%; }
  100% { width:100%; }
}
@keyframes acyuta-expand {
  0%   { width:0%; }
  100% { width:100%; }
}

/*fade in animation*/

@-webkit-keyframes acyuta-ltr {
  0%   { -webkit-transform:translate(-10%,0); opacity: 0;  }
  100% { -webkit-transform:translate(0,0); opacity: 1; }
}
@-moz-keyframes acyuta-ltr {
  0%   { -moz-transform:translate(-10%,0); opacity: 0;  }
  100% { -moz-transform:translate(0,0); opacity: 1; }
}
@-o-keyframes acyuta-ltr {
  0%   { -o-transform:translate(-10%,0); opacity: 0;  }
  100% { -o-transform:translate(0,0); opacity: 1; }
}
@keyframes acyuta-ltr {
  0%   { transform:translate(-10%,0); opacity: 0;  }
  100% { transform:translate(0,0); opacity: 1; }
}

@-webkit-keyframes acyuta-rtl {
  0%   { -webkit-transform:translate(10%,0); opacity: 0;  }
  100% { -webkit-transform:translate(0,0); opacity: 1; }
}
@-moz-keyframes acyuta-rtl {
  0%   { -moz-transform:translate(10%,0); opacity: 0;  }
  100% { -moz-transform:translate(0,0); opacity: 1; }
}
@-o-keyframes acyuta-rtl {
  0%   { -o-transform:translate(10%,0); opacity: 0;  }
  100% { -o-transform:translate(0,0); opacity: 1; }
}
@keyframes acyuta-rtl {
  0%   { transform:translate(10%,0); opacity: 0;  }
  100% { transform:translate(0,0); opacity: 1; }
}

@-webkit-keyframes acyuta-btt {
  0%   { -webkit-transform:translate(0,20%); opacity: 0;  }
  100% { -webkit-transform:translate(0,0); opacity: 1; }
}
@-moz-keyframes acyuta-btt {
  0%   { -moz-transform:translate(0,20%); opacity: 0;  }
  100% { -moz-transform:translate(0,0); opacity: 1; }
}
@-o-keyframes acyuta-btt {
  0%   { -o-transform:translate(0,20%); opacity: 0;  }
  100% { -o-transform:translate(0,0); opacity: 1; }
}
@keyframes acyuta-btt {
  0%   { transform:translate(0,20%); opacity: 0;  }
  100% { transform:translate(0,0); opacity: 1; }
}

@-webkit-keyframes acyuta-ttb {
  0%   { -webkit-transform:translate(0, -10%); opacity: 0;  }
  100% { -webkit-transform:translate(0,0); opacity: 1; }
}
@-moz-keyframes acyuta-ttb {
  0%   { -moz-transform:translate(0, -10%); opacity: 0;  }
  100% { -moz-transform:translate(0,0); opacity: 1; }
}
@-o-keyframes acyuta-ttb {
  0%   { -o-transform:translate(0, -10%); opacity: 0;  }
  100% { -o-transform:translate(0,0); opacity: 1; }
}
@keyframes acyuta-ttb {
  0%   { transform:translate(0, -10%); opacity: 0;  }
  100% { transform:translate(0,0); opacity: 1; }
}

/*background animation*/
@-webkit-keyframes acyuta-bg-move {
  0%   { background-position: -31px 0;  }
  100% { background-position: 0 0; }
}
@-moz-keyframes acyuta-bg-move {
  0%   { background-position: -31px 0;  }
  100% { background-position: 0 0; }
}
@-o-keyframes acyuta-bg-move {
  0%   { background-position: -31px 0;  }
  100% { background-position: 0 0; }
}
@keyframes acyuta-bg-move {
  0%   { background-position: -31px 0;  }
  100% { background-position: 0 0; }
}

/*caption animation*/

@-webkit-keyframes caption-right {
  0%   { -webkit-transform:translate(2000px,0); opacity: 0;  }
  100% { -webkit-transform:translate(0,0); opacity: 1; }
}
@-moz-keyframes caption-right {
  0%   { -moz-transform:translate(2000px,0); opacity: 0;  }
  100% { -moz-transform:translate(0,0); opacity: 1; }
}
@-o-keyframes caption-right {
  0%   { -o-transform:translate(2000px,0); opacity: 0;  }
  100% { -o-transform:translate(0,0); opacity: 1; }
}
@keyframes caption-right {
  0%   { transform:translate(2000px,0); opacity: 0;  }
  100% { transform:translate(0,0); opacity: 1; }
}

@-webkit-keyframes caption-left {
  0%   { -webkit-transform:translate(-2000px,0); opacity: 0;  }
  100% { -webkit-transform:translate(0,0); opacity: 1; }
}
@-moz-keyframes caption-left {
  0%   { -moz-transform:translate(-2000px,0); opacity: 0;  }
  100% { -moz-transform:translate(0,0); opacity: 1; }
}
@-o-keyframes caption-left {
  0%   { -o-transform:translate(-2000px,0); opacity: 0;  }
  100% { -o-transform:translate(0,0); opacity: 1; }
}
@keyframes caption-left {
  0%   { transform:translate(-2000px,0); opacity: 0;  }
  100% { transform:translate(0,0); opacity: 1; }
}

@-webkit-keyframes caption-top {
  0%   { -webkit-transform:translate(0,-20px); opacity: 0;  }
  100% { -webkit-transform:translate(0,0); opacity: 1; }
}
@-moz-keyframes caption-top {
  0%   { -moz-transform:translate(0,-20px); opacity: 0;  }
  100% { -moz-transform:translate(0,0); opacity: 1; }
}
@-o-keyframes caption-top {
  0%   { -o-transform:translate(0,-20px); opacity: 0;  }
  100% { -o-transform:translate(0,0); opacity: 1; }
}
@keyframes caption-top {
  0%   { transform:translate(0,-20px); opacity: 0;  }
  100% { transform:translate(0,0); opacity: 1; }
}

@-webkit-keyframes caption-bottom {
  0%   { -webkit-transform:translate(0,20px); opacity: 0;  }
  100% { -webkit-transform:translate(0,0); opacity: 1; }
}
@-moz-keyframes caption-bottom {
  0%   { -moz-transform:translate(0,20px); opacity: 0;  }
  100% { -moz-transform:translate(0,0); opacity: 1; }
}
@-o-keyframes caption-bottom {
  0%   { -o-transform:translate(0,20px); opacity: 0;  }
  100% { -o-transform:translate(0,0); opacity: 1; }
}
@keyframes caption-bottom {
  0%   { transform:translate(0,20px); opacity: 0;  }
  100% { transform:translate(0,0); opacity: 1; }
}

@-webkit-keyframes acyuta-rotate {
  0%   { -webkit-transform:rotate(0deg);}
  100% { -webkit-transform:rotate(720deg);}
}
@-moz-keyframes acyuta-rotate {
  0%   { -moz-transform:rotate(0deg); }
  100% { -moz-transform:rotate(720deg);}
}
@-o-keyframes acyuta-rotate {
  0%   { -o-transform:rotate(0deg); }
  100% { -o-transform:rotate(720deg);}
}
@keyframes acyuta-rotate {
  0%   { transform:rotate(0deg); }
  100% { transform:rotate(720deg);}
}