@charset "utf-8";
/* CSS Document */
<link href='http://fonts.googleapis.com/css?family=Titillium+Web:200,300,400,200italic' rel='stylesheet' type='text/css'>


.container { 
    word-wrap:break-word;
	text-align: left;
}

/*.take-input {
  margin: 50px 0 0;
}

.take-input input {
  width: 400px;
  height: 35px;
  padding: 0 10px;
  border-radius: 5px;
  border: 1px solid #ececec;
  margin: 0 15px 0 0;
  font-size: 15px;
}*/

.animate {
    font-size: 26px;
	font-weight: 400italic;
	letter-spacing: -2px;
}

.animate span {
    display: inline-block;
}

.animate span:nth-of-type(2) {
    animation-delay: .05s;
}
.animate span:nth-of-type(3) {
    animation-delay: .1s;
}
.animate span:nth-of-type(4) {
    animation-delay: .15s;
}
.animate span:nth-of-type(5) {
    animation-delay: .2s;
}
.animate span:nth-of-type(6) {
    animation-delay: .25s;
}
.animate span:nth-of-type(7) {
    animation-delay: .3s;
}
.animate span:nth-of-type(8) {
    animation-delay: .35s;
}
.animate span:nth-of-type(9) {
    animation-delay: .4s;
}
.animate span:nth-of-type(10) {
    animation-delay: .45s;
}
.animate span:nth-of-type(11) {
    animation-delay: .5s;
}
.animate span:nth-of-type(12) {
    animation-delay: .55s;
}
.animate span:nth-of-type(13) {
    animation-delay: .6s;
}
.animate span:nth-of-type(14) {
    animation-delay: .65s;
}
.animate span:nth-of-type(15) {
    animation-delay: .7s;
}
.animate span:nth-of-type(16) {
    animation-delay: .75s;
}
.animate span:nth-of-type(17) {
    animation-delay: .8s;
}
.animate span:nth-of-type(18) {
    animation-delay: .85s;
}
.animate span:nth-of-type(19) {
    animation-delay: .9s;
}
.animate span:nth-of-type(20) {
    animation-delay: .95s;
}


.seven span {
    color: #5b8e41;
    opacity: 0;
    transform: translate(-50px, 0) scale(0.5);
    animation: leftRight 4s forwards;
}


@keyframes leftRight {
    40% {
        transform: translate(50px, 0) scale(1);
        opacity: 1;
        color: #5b8e41;
    }

    60% {
        color: #5b8e41;
    }

    80% {
        transform: translate(0) scale(1.4);
        opacity: 0;
    }

    100% {
        transform: translate(0) scale(1.0);
        opacity: 1;
    }
}
