.image {
  padding-top: 10rem;
  width: 40rem;
  max-width: 70%;
  height: 50%;
}
.image-box{
  width: 100%;
  text-align: center;
}
.center {
  height: 10%;
width: 70%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.column {
  margin: 0;
  top: 50%;
  width: 60%;
  position: absolute;
  display: block;
  left: 50%;
  height: 100%;
  margin-right: -50%;
  transform: translate(-50%, -50%);
}
.row {
  display: table;
  clear: both;
}
.header-default-font {
  font-family: "Neue Haas Grotesk Display Pro", sans-serif;
}
.default-font {
  font-family: "Neue Haas Grotesk Display Pro", sans-serif;
  line-height: 1.5;
}

.wave {
  width: 10px;
  height: 30px;
  background-color: #ed4846;
  margin: 10px;
  animation: wave 1s linear infinite;
  border-radius: 20px;
}
.wave:nth-child(2) {
  animation-delay: 0.1s;
}
.wave:nth-child(3) {
  animation-delay: 0.2s;
}
.wave:nth-child(4) {
  animation-delay: 0.3s;
}
.wave:nth-child(5) {
  animation-delay: 0.4s;
}

@keyframes wave {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
