/*
  *********** Glowing Text Animation style ***********
 */
.glow {
  color: #fff;
  -webkit-animation: glow 0.5s ease-in-out infinite alternate;
  -moz-animation: glow 0.5s ease-in-out infinite alternate;
  animation: glow 0.5s ease-in-out infinite alternate;
}

@-webkit-keyframes glow {
  from {
    text-shadow: 0 0 3px #fff, 0 0 6px #ccc;
  }
  to {
    text-shadow: 0 0 5px #fff, 0 0 8px #ddd;
  }
}

@-moz-keyframes glow {
  from {
    text-shadow: 0 0 3px #fff, 0 0 6px #ccc;
  }
  to {
    text-shadow: 0 0 5px #fff, 0 0 8px #ddd;
  }
}

@keyframes glow {
  from {
    text-shadow: 0 0 3px #fff, 0 0 6px #ccc;
  }
  to {
    text-shadow: 0 0 5px #fff, 0 0 8px #ddd;
  }
}