.application-section {
  margin: 35px 0 55px;
}

.application-section p {
  text-align: justify;
}

.application-section h2 {
  margin: 0 0 12px;
}

.application-section p + p {
  margin-top: 12px;
}

.training-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 25px;
  margin-top: 25px;
}

.training-card {
  padding: 28px 30px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--white);
}

.training-card h3 {
  margin-top: 0;
  margin-bottom: 15px;
  color: var(--JBAblue);
}

.training-card ul.disc {
  margin-top: 12px;
}

.application-flow {
  counter-reset: application-step;
  margin: 30px 0 0;
}

.application-flow > li {
  position: relative;
  counter-increment: application-step;
  padding: 25px 30px 25px 90px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--white);
}

.application-flow > li:not(:last-child) {
  margin-bottom: 35px;
}

.application-flow > li:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -24px;
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--blue1);
  border-bottom: 2px solid var(--blue1);
  transform: translateX(-50%) rotate(45deg);
}

.application-flow > li::before {
  content: counter(application-step);
  position: absolute;
  left: 25px;
  top: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--blue1);
  color: var(--white);
  font-weight: bold;
}

.application-flow h3 {
  margin-top: 0;
  margin-bottom: 10px;
  color: var(--JBAblue);
}

.application-flow ul.disc {
  margin-top: 10px;
}

.application-entry {
  padding: 28px 35px 40px;
  border: 1px solid var(--blue1);
  border-radius: 10px;
}

.application-entry > :last-child {
  margin-bottom: 0;
}

.application-entry .button {
  margin-top: 30px;
  text-align: center;
}

.application-entry .btn_blue {
  width: min(100%, 320px);
  margin: 0 auto;
  text-decoration: none;
}

@media only screen and (max-width: 600px) {
  .application-section {
    margin: 30px 0 45px;
  }

  .application-section p + p {
    margin-top: 10px;
  }

  .application-flow > li {
    padding: 25px 20px 25px 20px;
  }

  .application-flow > li::before {
    position: static;
    margin: 0 auto 8px;
  }

  .application-flow h3 {
    text-align: center;
  }

  .application-entry {
    padding: 20px 20px 28px;
  }
}
