.leave-application-help {
  text-align: center;
}

.leave-application-steps {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  margin: 2rem 0;
  gap: 2rem;
}
.leave-application-steps-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: space-evenly;
}
.step-card {
  background-color: rgba(128, 0, 128, 0.155);
  padding: 1rem 1.2rem;
  text-align: left;
  border-radius: 0.6rem;
}

.step-card p {
  font-size: 1.1rem;
  font-weight: 500;
}

.step-card p span {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--purple);
}

.step-card a {
  /* padding-left: 1.2rem; */
  text-decoration: none;
  font-size: 0.7rem;
  color: var(--purple);
  /* font-weight: 600; */
}
.steps-image{
    display: flex;
    flex-direction: column;
    gap: 2rem;
    justify-content: space-between;
}
.steps-image img{
    max-width: 100%;
    border-radius: 0.3rem;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1), 0 6px 20px 0 rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 450px){
    .leave-application-steps {
        grid-template-columns: repeat(1,1fr);
      }
}

@media screen and (max-width: 1150px) and (min-width: 500px){
    .leave-application-steps {
        grid-template-columns: repeat(1,1fr);
      }
}
