.animationContent{
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 2rem 0;
	margin: 0 -5%;
	overflow: hidden;
}
.dot-flashing {
  position: relative;
  width: 20px;
  height: 20px;
  border-radius: 10px;
  animation: dotFlashing .5s infinite linear alternate;
  animation-delay: .25s;
}

.dot-flashing::before, .dot-flashing::after {
  content: '';
  display: inline-block;
  position: absolute;
  top: 0;
}

.dot-flashing::before {
  left: -30px;
  width: 20px;
  height: 20px;
  border-radius: 10px;
  animation: dotFlashing .5s infinite alternate;
  animation-delay: 0s;
}

.dot-flashing::after {
  left: 30px;
  width: 20px;
  height: 20px;
  border-radius: 10px;
  animation: dotFlashing .5s infinite alternate;
  animation-delay: .5s;
}

@keyframes dotFlashing {
  0% {
	background-color: #ED7F08;
  }
  50%,
  100% {
	background-color: #ebe6ff;
  }
}