/* //////////////버튼 에니메이션////////////// */
.active {
-webkit-animation-delay:0s;
-webkit-animation-duration: 200ms;
-webkit-animation-iteration-count:1;
-webkit-animation-name: btn_click;

-moz-animation-delay:0s;
-moz-animation-duration: 200ms;
-moz-animation-iteration-count:1;
-moz-animation-name: btn_click;

animation-delay:0s;
animation-duration: 200ms;
animation-iteration-count:1;
animation-name: btn_click; }


@-webkit-keyframes btn_click {
  from {
    -webkit-animation-timing-function: ease;
	-webkit-transform: translate(1px,1px);
	opacity:1;
  }
  to {
    -webkit-animation-timing-function: ease-out;
	opacity:0.3;
  }
}

@-moz-keyframes btn_click {
  from {
    -moz-animation-timing-function: ease;
	-moz-transform: translate(1px,1px);
	opacity:1;
  }
  to {
    -moz-animation-timing-function: ease-out;
	opacity:0.3;
  }
}

@keyframes btn_click {
  from {
    animation-timing-function: ease;
	transform: translate(1px,1px);
	opacity:1;
  }
  to {
    animation-timing-function: ease-out;
	opacity:0.3;
  }
}



.txtani {
	font-size:7em;
	font-family: 'noto-Bold';
}

.txtani span {
    display: inline-block;
}

a.repeat {
  display: inline-block;
  font-size: 12px;
  text-transform: none;
  text-decoration: none;
  color: orange;
  padding: 5px 12px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  font-weight: normal;
  margin: 0 0 0 50px;
  border-radius: 3px;
  position: relative;
  bottom: 15px;
}

a.repeat:hover {
  background: rgba(0, 0, 0, 0.7);
  color: white;
}

.txtani span:nth-of-type(2) {
    animation-delay: .05s;
}
.txtani span:nth-of-type(3) {
    animation-delay: .1s;
}
.txtani span:nth-of-type(4) {
    animation-delay: .15s;
}
.txtani span:nth-of-type(5) {
    animation-delay: .2s;
}
.txtani span:nth-of-type(6) {
    animation-delay: .25s;
}
.txtani span:nth-of-type(7) {
    animation-delay: .3s;
}
.txtani span:nth-of-type(8) {
    animation-delay: .35s;
}
.txtani span:nth-of-type(9) {
    animation-delay: .4s;
}
.txtani span:nth-of-type(10) {
    animation-delay: .45s;
}
.txtani span:nth-of-type(11) {
    animation-delay: .5s;
}
.txtani span:nth-of-type(12) {
    animation-delay: .55s;
}
.txtani span:nth-of-type(13) {
    animation-delay: .6s;
}
.txtani span:nth-of-type(14) {
    animation-delay: .65s;
}
.txtani span:nth-of-type(15) {
    animation-delay: .7s;
}
.txtani span:nth-of-type(16) {
    animation-delay: .75s;
}
.txtani span:nth-of-type(17) {
    animation-delay: .8s;
}
.txtani span:nth-of-type(18) {
    animation-delay: .85s;
}
.txtani span:nth-of-type(19) {
    animation-delay: .9s;
}
.txtani span:nth-of-type(20) {
    animation-delay: .95s;
}


/* Animation One */

.one span {
    color: #24a8e6;
    opacity: 0;
    transform: translate(-150px, -50px) rotate(-180deg) scale(3);
    animation: revolveScale .4s forwards;
}

@keyframes revolveScale {
    60% {
        transform: translate(20px, 20px) rotate(30deg) scale(.3);
    }

    100% {
        transform: translate(0) rotate(0) scale(1);
        opacity: 1;
    }
}


/* Animation Two */

.two span {
    color: #a5cb21;
    opacity: 0;
    transform: translate(200px, -100px) scale(2);
    animation: ballDrop .3s forwards;
}

@keyframes ballDrop {
    60% {
        transform: translate(0, 20px) rotate(-180deg) scale(.5);
    }

    100% {
        transform: translate(0) rotate(0deg) scale(1);
        opacity: 1;
    }
}


/* Animation Three */


.three span {
    color: #b10e81;
    opacity: 0;
    transform: translate(-300px, 0) scale(0);
    animation: sideSlide .5s forwards;
}

@keyframes sideSlide {
    60% {
        transform: translate(20px, 0) scale(1);
        color: #b10e81;
    }

    80% {
        transform: translate(20px, 0) scale(1);
        color: #b10e81;
    }

    99% {
        transform: translate(0) scale(1.2);
        color: #00f0ff;
    }

    100% {
        transform: translate(0) scale(1);
        opacity: 1;
        color: #b10e81;
    }
}


/* Animation Four */


.four span {
    color: #8d6a00;
    opacity: 0;
    transform: translate(0, -100px) rotate(360deg) scale(0);
    animation: revolveDrop .3s forwards;
}


@keyframes revolveDrop {
    30% {
        transform: translate(0, -50px) rotate(180deg) scale(1);
    }

    60% {
        transform: translate(0, 20px) scale(.8) rotate(0deg);
    }

    100% {
        transform: translate(0) scale(1) rotate(0deg);
        opacity: 1;
    }
}


/* Animation Five */


.five span {
    color: #dd3f0f;
    opacity: 0;
    transform: translate(0, -100px) rotate(360deg) scale(0);
    animation: dropVanish .5s forwards;
}


@keyframes dropVanish {
    30% {
        transform: translate(0, -50px) rotate(180deg) scale(1);
    }

    50% {
        transform: translate(0, 20px) scale(.8) rotate(0deg);
        opacity: 1;
    }

    80% {
        transform: translate(-100px, -100px) scale(1.5) rotate(-180deg);
        opacity: 0;
    }

    100% {
        transform: translate(0) scale(1) rotate(0deg);
        opacity: 1;
    }
}



/* Animation Six */


.six span {
    color: #ddb40f;
    opacity: 0;
    transform: rotate(-180deg) translate(150px, 0);
    animation: twister .5s forwards;
}


@keyframes twister {
    10% {
        opacity: 1;
    }
    100% {
        transform: rotate(0deg) translate(0);
        opacity: 1;
    }
}



/* Animation Seven */


.seven span {
    color: #fff;
    opacity: 0;
    transform: translate(-150px, 0) scale(.3);
    animation: leftRight 2s forwards;
}


@keyframes leftRight {
    40% {
        transform: translate(50px, 0) scale(.7);
        opacity: 1;
        color: #5d56a3;
    }

    60% {
        color: #0f40ba;
    }

    80% {
        transform: translate(0) scale(2);
        opacity: 0;
    }

    100% {
        transform: translate(0) scale(1);
        opacity: 1;
    }
}
