@media screen and (max-width:767px) {
.texts p{
	margin: 0;
	padding: 0;
	position: absolute;
	top: 40%;
	left: 50%;
	transform: translateX(-40%);
	-webkit-transform: translateX(-50%);
	text-align: center;
	color: rgb(0, 0, 0);
	font-size: 6.2vw;
	word-break: keep-all;
	opacity: 0;
  /* transform: scale(1,1); */
  font-family: serif;
  /* text-shadow:0 0 10px rgb(255, 255, 255); */
  font-weight: 600;
}

.texts p:nth-child(1) { animation: text-anim 41s ease 0s infinite;}
.texts p:nth-child(2) { animation: text-anim 41s ease 5s infinite;}
.texts p:nth-child(3) { animation: text-anim 41s ease 13s infinite;}
.texts p:nth-child(4) { animation: text-anim 41s ease 21s infinite;}
.texts p:nth-child(5) { animation: text-anim 41s ease 28s infinite;}
.texts p:nth-child(6) { animation: text-anim 41s ease 34s infinite;}

@keyframes text-anim {
	  2%{opacity: 1;}
    20% {opacity: 0;
    /* transform: scale(2.2)} */
}
}

}
