
/* Animated words ------------------------------------------------- */

.rw-words {
    position: absolute;
	display: inline;
	text-indent: -7px;
    font-size: 18px;
    font-weight: 700;
}

.rw-words-1 span{    position: absolute;   opacity: 0;   width: 20px;   text-indent: -12px;   overflow: visible;	-webkit-animation: rotateWord 11s linear infinite 0s;	-ms-animation: rotateWord 11s linear infinite 0s;	animation: rotateWord 11s linear infinite 0s;} .rw-words-1 span:nth-child(2) {    text-indent: -10px;   -webkit-animation-delay: 1s ; 	-ms-animation-delay: 1s ; 	animation-delay: 1s ; } .rw-words-1 span:nth-child(3) {    text-indent: -10px;   -webkit-animation-delay: 2s ; 	-ms-animation-delay: 2s ; 	animation-delay: 2s ; } .rw-words-1 span:nth-child(4) {    text-indent: -10px;   -webkit-animation-delay: 3s ; 	-ms-animation-delay: 3s ; 	animation-delay: 3s ; } .rw-words-1 span:nth-child(5) {    text-indent: -10px;   -webkit-animation-delay: 4s ; 	-ms-animation-delay: 4s ; 	animation-delay: 4s ; } .rw-words-1 span:nth-child(6) {    text-indent: -10px;   -webkit-animation-delay: 5s ; 	-ms-animation-delay: 5s ; 	animation-delay: 5s ; } .rw-words-1 span:nth-child(7) {    text-indent: -10px;   -webkit-animation-delay: 6s ; 	-ms-animation-delay: 6s ; 	animation-delay: 6s ; } .rw-words-1 span:nth-child(8) {    text-indent: -10px;   -webkit-animation-delay: 7s ; 	-ms-animation-delay: 7s ; 	animation-delay: 7s ; } .rw-words-1 span:nth-child(9) {    text-indent: -10px;   -webkit-animation-delay: 8s ; 	-ms-animation-delay: 8s ; 	animation-delay: 8s ; } .rw-words-1 span:nth-child(10) {    text-indent: -10px;   -webkit-animation-delay: 9s ; 	-ms-animation-delay: 9s ; 	animation-delay: 9s ; } .rw-words-1 span:nth-child(11) {    text-indent: -10px;   -webkit-animation-delay: 10s ; 	-ms-animation-delay: 10s ; 	animation-delay: 10s ; } .rw-words-1 span:nth-child(12) {    text-indent: -10px;   -webkit-animation-delay: 11s ; 	-ms-animation-delay: 11s ; 	animation-delay: 11s ; } 
@-webkit-keyframes rotateWord {
    0% { opacity: 0; }
    2% { opacity: 0; -webkit-transform: translateY(-30px); }
	 5% { opacity: 1; -webkit-transform: translateY(0px);}
    10% { opacity: 1; -webkit-transform: translateY(0px); }
	 22% { opacity: 0; -webkit-transform: translateY(30px); }
	 50% { opacity: 0; }
    100% { opacity: 0; }
}
@-ms-keyframes rotateWord {
    0% { opacity: 0; }
    2% { opacity: 0; -ms-transform: translateY(-30px); }
	 5% { opacity: 1; -ms-transform: translateY(0px);}
    10% { opacity: 1; -ms-transform: translateY(0px); }
	 22% { opacity: 0; -ms-transform: translateY(30px); }
	 50% { opacity: 0; }
    100% { opacity: 0; }
}
@keyframes rotateWord {
    0% { opacity: 0; }
    2% { opacity: 0; -webkit-transform: translateY(-30px); transform: translateY(-30px); }
	 5% { opacity: 1; -webkit-transform: translateY(0px); transform: translateY(0px);}
    10% { opacity: 1; -webkit-transform: translateY(0px); transform: translateY(0px); }
	 22% { opacity: 0; -webkit-transform: translateY(30px); transform: translateY(30px); }
	 50% { opacity: 0; }
    100% { opacity: 0; }
}
@media screen and (max-width: 768px){
	.rw-sentence { font-size: 18px; }
}
@media screen and (max-width: 320px){
	.rw-sentence { font-size: 9px; }
}