@keyframes in-animation {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  50% {
    transform: scale(1);
  }
  100% {
    opacity: 1;
  }
}

@keyframes out-animation {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scale(0.7);
  }
}
#num_one {
  animation: none;
}
#num_one_icon {
  animation: none;
}
#num_two_icon {
  animation: none;
}
#num_three_icon {
  animation: none;
}
#num_four_icon {
  animation: none;
}
#num_five_icon {
  animation: none;
}
#num_six_icon {
  animation: none;
}

#vdj {
  display: flex;
  align-items: center;
}

#vdj-text-container {
  color: white;
  margin-top: 200px;
}
#vdj-text-container > h4 {
  font-family: "Helvetica", Sans-serif !important;
  text-transform: uppercase;
  font-weight: 800;
  background: linear-gradient(90deg, #7ad4ff 0%, #3c83d6 50%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

#vdj-text-container > h2 {
  font-family: "Helvetica", Sans-serif !important;
  text-transform: uppercase;
  font-weight: 800;
  margin-top: 30px;

  background: linear-gradient(90deg, #3c83d6 0%, #7ad4ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

#vdj-svg {
  width: 70%;
}

