.contenedor-text-animate {
	
	display: flex;
	width: 100%;
	height: 40px;
	color: #000;
	font-weight: 800;
	font-size: 35px;
	line-height: 40px;
	
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	overflow: hidden;
	
}

.textanimate {
	list-style: none;
	padding-left: 10px;
	animation: cambiar 7s infinite;
}

.textanimate {
	margin: 0;
}

@keyframes cambiar {
	
	0%{ margin-top: 0;}
	20%{ margin-top: 0;}
	
	25% {margin-top: -40px;}
	50% {margin-top: -40px;}
	
	55% {margin-top: -80px;}
	80% {margin-top: -80px;}
	
	85% {margin-top: -40px;}
	95% {margin-top: -40px;}
	
	100% {margin-top: 0;}
}