.heading-section,
.heading-section h1 {
  position: relative;
  font-weight: 700;
  text-transform: uppercase;
}
.heading-section {
  font-size: 20px;
  text-align: center;
  align-content: center;
  margin: 20px;
  display: block;
  animation: 0.6s ease-in-out fadeInDown;
}
.heading-section h1 {
  display: inline-block;
  font-size: 32px;
  color: #094830;
  letter-spacing: 2px;
}
.heading-section h1::after {
  content: "";
  display: block;
  height: 4px;
  width: 100%;
  background-color: #00c6ff;
  margin: 8px auto 0;
  border-radius: 2px;
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
