* {
  margin: 0;
  box-sizing: content-box;
}

nav {
  display: flex;
  width: 100vw;
  height: 180px;
  background-color: black;
  justify-content: center;
  align-items: center;
}
#logoImg{
max-width: 100%;
height: auto;
}
.container {
  display: flex;
  margin: 0 auto;
  width: 85vw;
  padding: 20px 0px;
  flex-direction: column;
  /* justify-content: space-between; */

}

.courseContainer {
  background-color: white;
  padding: 30px 20px 10px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  border-radius: 10px;
  font-family: 'Manrope', sans-serif;
  display: flex;
  flex-direction: column;
  position: relative;
  margin-bottom: 25px;
  /* width: 40vw; */
  /* flex: 1; */
}

.department {
  font-size: 12px;
  align-self: flex-end;
  background-color: red;
  position: absolute;
  top: 0;
  right: 0;
  padding: 5px 20px;
  border-radius: 0px 10px 0px 10px;
  color: white;
  /* position: relative; */
}

.module {
  font-size: 20px;
  /* line-height: 22px; */
}

.infoContainer {
  margin-top: 10px;
}

.category {
  color: grey;
  font-size: 14px;
}
.code {
  font-size: 14px;
}
.cost {
  font-weight: 500;
  font-size: 16px;
}

.costContainer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.title {
  font-family: 'Manrope', sans-serif;
  /* width: 85vw; */
  /* margin: 0 auto; */
  margin-bottom: 20px;

  flex: 1;

}

.btn {
  font-family: 'Manrope', sans-serif;
  height: 35px;
  padding: 0 20px;
  color: #1893f7;
  text-align: center;
  align-self: flex-start;
  font-size: 11px;
  font-weight: 500;
  line-height: 35px;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border-radius: 4px;
  border: 1px solid #1893f7;
  cursor: pointer;
  box-sizing: border-box;
  margin-top: 10px; 
}

.amount { 
  /* display: none;  */
  align-items: flex-start; 
  margin: 0px;
}

.tabContainer {
  display: flex;
  margin: 0 auto;
  width: 85vw;
  flex-direction: row;
  flex-wrap: wrap;
  /* justify-content: ; */
}

.categoriesCotainer {
  width: 85vw;
  margin: 0 auto;
  font-family: 'Manrope', sans-serif;
  /* margin: 20px 0px; */
  margin-bottom: 20px;
}

.courseOuterContainer {
  flex-direction: column;
  display: flex;
  justify-content: space-between;
}

.selected {
  background-color: #1893f7;
  color: #fff;
}

.about{
  font-family: 'Manrope', sans-serif;
  margin: 50px auto;
  width: 85vw;
}

@media only screen and (min-width: 800px) {
  .courseContainer {
   width: 35vw;
  }

  .courseOuterContainer {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

