
.footer-tape p {
	font-family:'gt_pressura_regularregular', Helvetica, Arial, sans-serif;
	font-size: 22px;
	color: #222;
	letter-spacing: 2px;
	text-transform: uppercase;
	border-bottom:  1px solid #222;
	text-transform: uppercase;
}
.footer-tape p a {
	color: #222;
}
.footer-tape {
	position: relative;
	width: 100%;
	height: 30px;
	padding-top: 2px;
	overflow: hidden;
}
.footer-tape p a span {
	display: inline-block;
	padding-right: 4px;
}
.footer-tape p {
	position: absolute;
	width: 3000px;
	height: 30px;
	margin: 0;
	/* Starting position */
	-moz-transform:translateX(0%);
	-webkit-transform:translateX(0%);	
	transform:translateX(0%);
	/* Apply animation to this element */	
	-moz-animation: example1 40s linear infinite;
	-webkit-animation: example1 40s linear infinite;
	animation: example1 40s linear infinite;
}
/* Move it (define the animation) */
@-moz-keyframes example1 {
0% {
	-moz-transform: translateX(0%);
}
100% {
	-moz-transform: translateX(-60%);
}
}
@-webkit-keyframes example1 {
0% {
 	-webkit-transform: translateX(0%);
}
100% {
	-webkit-transform: translateX(-65%);
}
}
@keyframes example1 {
0% { 
	-moz-transform: translateX(0%);
	-webkit-transform: translateX(0%);
	transform: translateX(0%);
}
100% { 
	-moz-transform: translateX(-65%);
	-webkit-transform: translateX(-65%);
	transform: translateX(-65%); 
}

}

.animate {
	-webkit-transition: width 0.2s ease, height 0.2s ease;
	-moz-transition: width 0.2s ease, height 0.2s ease;
	-o-transition: width 0.2s ease, height 0.2s ease;
	-ms-transition: width 0.2s ease, height 0.2s ease;
	transition: width 0.2s ease, height 0.2s ease;
}
.animated {
-webkit-animation-duration: 1s;
		animation-duration: 1s;
-webkit-animation-fill-mode: both;
		animation-fill-mode: both;
}
.for-half-second {
-webkit-animation-duration: 0.5s;
		animation-duration: 0.5s;
-webkit-animation-fill-mode: both;
		animation-fill-mode: both;
}
.for-1-second {
-webkit-animation-duration: 1s;
		animation-duration: 1s;
-webkit-animation-fill-mode: both;
		animation-fill-mode: both;
}
.for-2-seconds {
-webkit-animation-duration: 2s;
		animation-duration: 2s;
-webkit-animation-fill-mode: both;
		animation-fill-mode: both;
}
.for-3-seconds {
-webkit-animation-duration: 3s;
		animation-duration: 3s;
-webkit-animation-fill-mode: both;
		animation-fill-mode: both;
}
.for-4-seconds {
-webkit-animation-duration: 4s;
		animation-duration: 4s;
-webkit-animation-fill-mode: both;
		animation-fill-mode: both;
}
.for-5-seconds {
-webkit-animation-duration: 5s;
		animation-duration: 5s;
-webkit-animation-fill-mode: both;
		animation-fill-mode: both;
}
.for-6-seconds {
-webkit-animation-duration: 6s;
		animation-duration: 6s;
-webkit-animation-fill-mode: both;
		animation-fill-mode: both;
}
.for-7-seconds {
-webkit-animation-duration: 7s;
		animation-duration: 7s;
-webkit-animation-fill-mode: both;
		animation-fill-mode: both;
}
.for-this-long {
-webkit-animation-duration: 13s;
		animation-duration: 13s;
-webkit-animation-fill-mode: both;
		animation-fill-mode: both;
}
.infinite {
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}
.delayed {
	opacity:0;
}
.delayed-quarter-sec {
	-webkit-animation-delay: 0.25s;
	-moz-animation-delay: 0.25s;
	-ms-animation-delay: 0.25s;
	-o-animation-delay: 0.25s;
	animation-delay: 0.25s;
}
.delayed-half-sec {
	-webkit-animation-delay: 0.5s;
	-moz-animation-delay: 0.5s;
	-ms-animation-delay: 0.5s;
	-o-animation-delay: 0.5s;
	animation-delay: 0.5s;
}
.delayed-1-sec {
	-webkit-animation-delay: 1s;
	-moz-animation-delay: 1s;
	-ms-animation-delay: 1s;
	-o-animation-delay: 1s;
	animation-delay: 1s;
}
.delayed-2-secs {
	-webkit-animation-delay: 2s;
	-moz-animation-delay: 2s;
	-ms-animation-delay: 2s;
	-o-animation-delay: 2s;
	animation-delay: 2s;
}
.delayed-3-secs {
	-webkit-animation-delay: 3s;
	-moz-animation-delay: 3s;
	-ms-animation-delay: 3s;
	-o-animation-delay: 3s;
	animation-delay: 3s;
}
.delayed-3-half-secs {
	-webkit-animation-delay: 3.5s;
	-moz-animation-delay: 3.5s;
	-ms-animation-delay: 3.5s;
	-o-animation-delay: 3.5s;
	animation-delay: 3.5s;
}

/* spinMe */
@-webkit-keyframes spinMe {
0% {
	opacity:1;
	-webkit-transform: rotate(0deg);
}
100% {
	opacity:1;
	-webkit-transform: rotate(359deg);
}
}
@keyframes spinMe {
0% {
	opacity:1;
	transform: rotate(0deg);
}
100% {
	opacity:1;
	transform: rotate(359deg);
}
}
.spinMe {
	-webkit-animation-name:spinMe;
			animation-name:spinMe;
}
.spin-anim {
	-webkit-animation: spinMe linear 15s 9000 forwards;
    animation: spinMe linear 15s 9000 forwards;
}
.spin-stop {
	-webkit-animation-play-state: paused;
    -moz-animation-play-state: paused;
    -o-animation-play-state: paused;
    animation-play-state: paused;
}

/* fadeOff */
@-webkit-keyframes fadeOff {
0% {
	opacity:1;
}
99% {
	z-index: 4;
}
100% {
	opacity:0;
	z-index: -1;
}
}
@keyframes fadeOff {
0% {
	opacity:1;
}
99% {
	z-index: 4;
}
100% {
	opacity:0;
	z-index: -1;
}
}
.fadeOff {
	-webkit-animation-name:fadeOff;
			animation-name:fadeOff;
}

/* fadeIn */
@-webkit-keyframes fadeIn {
0% {
	opacity:0;
    padding-top: 0;
}
100% {
	opacity:1;
    padding-top: 0;
}
}
@keyframes fadeIn {
0% {
	opacity:0;
    padding-top: 0;
}
100% {
	opacity:1;
    padding-top: 0;
}
}
.fadeIn {
	-webkit-animation-name:fadeIn;
			animation-name:fadeIn;
}

/* fadeInUp */
@-webkit-keyframes fadeInUp {
0% {
	opacity:0;
	padding-top:25px;
}
100% {
	opacity:1;
	padding-top:0;
}
}
@keyframes fadeInUp {
0% {
	opacity:0;
	padding-top:25px;
}
100% {
	opacity:1;
	padding-top:0;
}
}
.fadeInUp {
	-webkit-animation-name:fadeInUp;
			animation-name:fadeInUp;
}

/* fadeInUpLrg */
@-webkit-keyframes fadeInUpLrg {
0% {
	opacity:0;
	padding-top:60px;
}
100% {
	opacity:1;
	padding-top:0;
}
}
@keyframes fadeInUpLrg {
0% {
	opacity:0;
	padding-top:60px;
}
100% {
	opacity:1;
	padding-top:0;
}
}
.fadeInUpLrg {
	-webkit-animation-name:fadeInUpLrg;
			animation-name:fadeInUpLrg;
}

/* fadeInLeft */
@-webkit-keyframes fadeInLeft {
0% {
	opacity:0;
	margin-left:30px;
	margin-right: -30px;
}
100% {
	opacity:1;
	margin-left:0;
	margin-right: 0;
}
}
@keyframes fadeInLeft {
0% {
	opacity:0;
	margin-left:30px;
	margin-right: -30px;
}
100% {
	opacity:1;
	margin-left:0;
	margin-right: 0;
}
}
.fadeInLeft {
	-webkit-animation-name:fadeInLeft;
			animation-name:fadeInLeft;
}

/* fadeInRight */
@-webkit-keyframes fadeInRight {
0% {
	opacity:0;
	margin-right:30px;
	margin-left: -30px;
}
100% {
	opacity:1;
	margin-right:0;
	margin-left: 0;
}
}
@keyframes fadeInRight {
0% {
	opacity:0;
	margin-right:45px;
	margin-left: -30px;
}
100% {
	opacity:1;
	margin-right:0;
	margin-left: 0;
}
}
.fadeInRight {
	-webkit-animation-name:fadeInRight;
			animation-name:fadeInRight;
}

@media screen and (max-width: 1023px) {

/* fadeInUp */
@-webkit-keyframes fadeInUp {
0% {
	opacity:0;
	padding-top:25px;
}
100% {
	opacity:1;
	padding-top:0;
}
}
@keyframes fadeInUp {
0% {
	opacity:0;
	padding-top:25px;
}
100% {
	opacity:1;
	padding-top:0;
}
}
.fadeInUp {
	-webkit-animation-name:fadeInUp;
			animation-name:fadeInUp;
}

/* fadeInUpLrg */
@-webkit-keyframes fadeInUpLrg {
0% {
	opacity:0;
	padding-top:25px;
}
100% {
	opacity:1;
	padding-top:0;
}
}
@keyframes fadeInUpLrg {
0% {
	opacity:0;
	padding-top:25px;
}
100% {
	opacity:1;
	padding-top:0;
}
}
.fadeInUpLrg {
	-webkit-animation-name:fadeInUpLrg;
			animation-name:fadeInUpLrg;
}

/* fadeInLeft */
@-webkit-keyframes fadeInLeft {
0% {
	opacity:0;
	padding-left:0;
	padding-top: 35px;
	margin-right: 0;
}
100% {
	opacity:1;
	padding-left:0;
	margin-right: 0;
}
}
@keyframes fadeInLeft {
0% {
	opacity:0;
	padding-left:0;
	padding-top: 25px;
	margin-right: 0;
}
100% {
	opacity:1;
	padding-left:0;
	margin-right: 0;
}
}
.fadeInLeft {
	-webkit-animation-name:fadeInLeft;
			animation-name:fadeInLeft;
}

/* fadeInRight */
@-webkit-keyframes fadeInRight {
0% {
	opacity:0;
	padding-right:0;
	padding-top: 25px;
	margin-left: 0;
}
100% {
	opacity:1;
	padding-right:0;
	padding-top: 0;
	margin-left: 0;
}
}
@keyframes fadeInRight {
0% {
	opacity:0;
	padding-right:0;
	padding-top: 25px;
	margin-left: 0;
}
100% {
	opacity:1;
	padding-right:0;
	margin-left: 0;
}
}
.fadeInRight {
	-webkit-animation-name:fadeInRight;
			animation-name:fadeInRight;
}


}

@media screen and (max-width: 1023px) {

.footer-tape p {
	width: 1400px;
}

}