.academy-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  max-width: var(--page-width);
  margin: 25px auto;
  padding: 0 20px;
}
.academy-wrapper a {
  height: 79px;
  background-color: var(--brand-medium);
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.academy-wrapper a .address {
  font-family: "Open Sans Condensed", serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 30px;
  text-transform: uppercase;
  color: #FFFFFF;
}
.academy-wrapper a .location {
  font-family: "Open Sans Condensed", serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 22px;
  text-transform: uppercase;
  color: #FFFFFF;
}
.academy-wrapper a:hover {
  background-color: var(--brand-light);
}

@media screen and (max-width: 768px) {
  .academy-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 500px) {
  .academy-wrapper {
    display: grid;
    grid-template-columns: 1fr;
  }
}
