@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@400&display=swap');
.otherCourses {
  position: fixed;
  top: 91vh;
  left: 5%;
  width: 90%;
  text-align: center;
}

.otherCourses .more {
  position: absolute;
  left: 5px;
  
  font-size: 1.2rem;
  color: aliceblue;
  cursor: pointer;
  border: 1px solid aliceblue;
  border-radius: 40px;
  padding: 4px 10px;
  transition: .5s;
}

.otherCourses .more:hover {
  transform: scale(1.1);
}

.otherCourses ul {
  position: absolute;
  width: 150px;
  left: 0;
  bottom: 0;
  justify-content: center;
  flex-direction: column;
  display: none;
  background-color: #4d4a4a96;
  box-shadow: 2px 3px 5px;
}

.otherCourses ul li {
  flex-grow: 1;
  list-style: none;
  padding: 5px;
  margin-top: 5px;
}

.otherCourses ul li a {
  text-decoration: none;
}

.otherCourses .show {
  display: flex;
  font-size: 1.1rem;
}

@media only screen and (max-width:769px) {
  .otherCourses {}
}