.grid {
  display: grid;
}
.gap-24 {
  gap: 24px;
}
.flex {
  display: flex;
}

.flex-direction-column {
  flex-direction: column;
}

.flex-start {
  justify-content: flex-start;
}

.flex-column {
  display: flex;
  flex-direction: column;
}

.ai-center {
  align-items: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-start {
  justify-content: start;
}

.justify-center {
  justify-content: start;
}

.ta-center {
  text-align: center;
}
.fz-33 {
  font-size: 33px;
}

.height-100 {
  height: 100%;
}
.color-orange {
  color: var(--orange);
}