.academy {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  margin: 30px 0;
  width: 100%;
}
.academy__item {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  margin: 30px 0;
  width: 100%;
}
.academy__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 25px;
  min-height: 200px;
  background-color: #ffffff;
}
.academy__content__name {
  padding: 15px 0;
  width: 100%;
  color: #1b191c;
  font-size: 28px;
  font-size: 1.75rem;
  line-height: 39px;
  line-height: 2.4375rem;
  font-feature-settings: "kern" 1;
  font-kerning: normal;
  font-weight: 600;
  text-decoration: none;
}
.academy__content__name:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.academy__detail {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
.academy__detail__icon {
  width: 15px;
  height: 15px;
  transform: rotate(180deg);
}
.academy__detail__text {
  padding-left: 7px;
  color: #e22927;
  font-size: 11px;
  font-size: 0.6875rem;
  line-height: 17.6px;
  line-height: 1.1rem;
  font-feature-settings: "kern" 1;
  font-kerning: normal;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.academy__visual {
  height: 280px;
  background-color: transparent;
  overflow: hidden;
}
.academy__visual.-done .academy__visual__inner {
  transform: scale(1);
}
.academy__visual__inner {
  width: 100%;
  object-fit: cover;
  transform: scale(1.2);
  transition: transform 0.5s;
}

.academy-detail {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
}

@media only screen and (min-width: 920px) {
  .academy {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    margin: 50px 0;
  }
  .academy__item {
    margin: 12px;
    max-width: 490px;
  }
  .academy__item:hover {
    box-shadow: 0 12px 12px 0 rgba(212, 210, 210, 0.4);
  }
  .academy__item:hover .-done .academy__visual__inner {
    transform: scale(1.2);
  }
  .academy__content {
    padding: 25px 40px;
  }
  .academy__visual__inner {
    height: 280px;
  }
}

@media only screen and (min-width: 1400px) {
  .academy__content {
    padding: 45px 60px;
    min-height: 260px;
  }
  .academy__content__name {
    font-size: 36px;
    font-size: 2.25rem;
    line-height: 47px;
    line-height: 2.9375rem;
    font-feature-settings: "kern" 1;
    font-kerning: normal;
  }
}

@media only screen and (max-width: 919px) {
  .academy__item {
    max-width: 450px;
  }
}