.courses-row {
  margin-top: 20px;
  margin-bottom: 50px;

  display: grid;
  grid-template-columns: 60% 35%;
  grid-row: auto auto;
  grid-column-gap: 5%;
}
.courses-col {
  /* padding: 20px; */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.special-col {
  padding: 50px;
  text-align: center;
  border-radius: 5px;
}
.special-col .icon {
  font-size: 46px;
  color: #1f1e5a;
}
.special-col .link {
  color: #31329b;
}

@media screen and (max-width: 768px) {
  #cal-month {
    display: none;
  }
  .courses-row {
    grid-template-columns: 100%;
  }
}
@media screen and (min-width: 768px) {
  #cal-agenda {
    display: none;
  }
}
