.timetable header {
  margin-bottom: 30px;
}
.timetable header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
    .timetable header  {
      flex-direction: column;
      align-items: center;
      gap: 30px;
    }
}
.timetable header div:first-child {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media screen and (max-width: 1024px) {
    .timetable header div:first-child {
      text-align: center;
    }
}
.timetable header div:first-child h2 {
  font-family: 'bold-font';
  font-size: 28px;
  font-weight: 400;
  color: #111;
}
.timetable header div:first-child p {
  font-family: 'content-font';
  font-size: 14px;
  color: #777;
}