body {
  font-family: "Ubuntu", "sans-serif";
}

/* Header Text */
.heading-text {
  font-weight: 700;
  padding: 115px 0;
}

/* Pulsing Ripple Effect */
.pinkBg {
  background-color: #ed184f;
  background-image: linear-gradient(90deg, #fd5581, #fd8b55);
}

.intro-banner {
  width: 60px;
  height: 60px;
  top: 50%;
  left: 50%;
  position: absolute;
  cursor: pointer;
  margin: -30px 0 0 -30px;
  border-radius: 100px;
  z-index: 1;
}

.intro-banner .ripple {
  width: 160px;
  height: 160px;
  top: 50%;
  left: 50%;
  opacity: 0;
  position: absolute;
  margin: -80px 0 0 -80px;
  border-radius: 100px;
  z-index: -1;
  -webkit-animation: ripple 1.8s infinite;
  -moz-animation: ripple 1.8s infinite;
  animation: ripple 1.8s infinite;
}

@-webkit-keyframes ripple {
  0% {
    opacity: 1;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    transform: scale(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes ripple {
  0% {
    opacity: 1;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    transform: scale(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    transform: scale(1);
  }
}

.intro-banner .ripple:nth-child(2) {
  -webkit-animation-delay: 0.3s;
  -moz-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.intro-banner .ripple:nth-child(3) {
  -webkit-animation-delay: 0.6s;
  -moz-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

/*# sourceMappingURL=style.css.map */
