.loader {
    display: none;
    justify-content: center;
    margin-top: 80px;
  }
  .dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #ebebec;
    margin: 0 8px;
    animation: load 0.3s infinite ease-out alternate;
  }
  .dot:nth-child(2) {
    animation-delay:  0.1s;
  }
  .dot:nth-child(3) {
    animation-delay:  0.2s;
  }
  @keyframes load {
    to {
      transform: translateY(10px);
    }
}