@keyframes display {
  0% {
    transform: translateX(100%);
    opacity: 0;
  }
  10% {
    transform: translateX(0);
    opacity: 1;
  }
  20% {
    transform: translateX(0);
    opacity: 1;
  }
  30% {
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(-100%;
    opacity: 0;
  }
}

.pic-ctn {
  position: relative;
  width: 100%;
	height:2em;
	color:#fff;
	font-size:0.8em;
	background:#0b2846;
  /* height: 300px; */
  /* margin-top: 15vh; */
}

.pic-ctn > p {
  position: absolute;
	/* padding-top:6px; */
	max-width:300px;
  width:100%;
	text-align:center;
  top: 0;
  left: calc(50% - 150px);
  opacity: 0;
  animation: display 18s infinite;
}
.pic-ctn > p > a{
	color:#fff;
}

p:nth-child(2) {
  animation-delay: 6s;
}
p:nth-child(3) {
  animation-delay: 12s;
}
