.pre-loader {
  position: fixed;
  width: 100%;
  height: 100%;
  /* background-color: #f7f9fe; */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  background-color: rgba(247, 249, 254, 0.8);
}
.pre-loader img {
  max-width: 170px;
  margin: 0 auto 10px;
  display: block;
}
.bounce {
  width: 150px;
  height: 150px;
  display: flex;
  justify-content: space-around;
  align-items: flex-end;
}

.bounce div {
  width: 25px;
  height: 25px;
  background: #153c3f;
  border-radius: 50%;
  animation: bouncing 0.5s cubic-bezier(0.19, 0.57, 0.3, 0.98) infinite
    alternate;
}

.bounce div:nth-child(2) {
  animation-delay: 0.1s;
  opacity: 0.8;
}

.bounce div:nth-child(3) {
  animation-delay: 0.2s;
  opacity: 0.6;
}

.bounce div:nth-child(4) {
  animation-delay: 0.3s;
  opacity: 0.4;
}

@keyframes bouncing {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-100px);
  }
}
