:root {
  --background-2: rgba(255, 255, 255, 1);
  --background: rgba(239, 239, 239, 1);
  --text-color: rgba(18, 18, 18, 1);
  --light: rgba(255, 255, 255, 1);
  --tertiary-4: rgba(183, 183, 164, 1);
  --heading-6-font-family: "Montserrat", Helvetica;
  --heading-6-font-weight: 700;
  --heading-6-font-size: 18px;
  --heading-6-letter-spacing: 0px;
  --heading-6-line-height: 22px;
  --heading-6-font-style: normal;
  --heading-2-font-family: "Montserrat", Helvetica;
  --heading-2-font-weight: 800;
  --heading-2-font-size: 48px;
  --heading-2-letter-spacing: -1px;
  --heading-2-line-height: 58px;
  --heading-2-font-style: normal;
}


@keyframes fadeIn {
  0% { opacity: 0; transform: translateY(10px); }
  100% { opacity: 1; transform: translateY(0); }
}
.animate-fadeIn {
  animation: fadeIn 0.4s ease-out forwards;
}
