.heading-container101 {
  position: relative;
  float:left;
	width:100%;
	height:100%;
  overflow: hidden;
}

.heading2 {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeSlide 11.55s infinite; /* 3.85s per heading × 3 headings = 11.55s */
  font-size: 55px;
  font-family: 'Oswald', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 80px;
  color: #fff;
}

.heading2:nth-child(1) {
  animation-delay: 0s;
}
.heading2:nth-child(2) {
  animation-delay: 3.85s;
}
.heading2:nth-child(3) {
  animation-delay: 7.7s;
}

@keyframes fadeSlide {
  0% {
      opacity: 0;
      transform: translateY(20px);
  }
  8% {
      opacity: 1;
      transform: translateY(0);
  }
  25% {
      opacity: 1;
      transform: translateY(0);
  }
  33% {
      opacity: 0;
      transform: translateY(-20px);
  }
  100% {
      opacity: 0;
      transform: translateY(-20px);
  }
}

@media only screen and (max-width: 768px) {
  .heading2 {
      font-size: 35px;
      line-height: 45px;
  }
}

.heading5 {
  font-size: 20px;
  font-family: 'Oswald', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 40px;
  color: #9b38aa;
  text-shadow: 1px 1px 1px rgb(0, 0, 0);
  text-align: left;
}

.contain5{
  /* padding: 100px; */
  margin-bottom: 100px;
}

.heading1{
   font-size: 50px;
  font-family: 'Oswald', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 55px;
  color: #ffffff;
  text-shadow: 1px 1px 1px rgb(0, 0, 0);
  text-align: left;
  
}

@media only screen and (max-width: 768px) {
  .heading1 {
      font-size: 35px;
      line-height: 45px;
  }
}
