.Education {
  display: flex;
  justify-content: center;
  width: 100%;
  height: auto;
  flex-wrap: wrap;
  margin-bottom: 100px;
  row-gap: 20px;
}

.Course {
  display: flex;
  width: 100%;
  padding: 25px;
  height: 250px;
  border-radius: 5%;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}


.Course .CourseImg {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 60%;
}

.CourseImg img {
  width: 60%;
  height: 60%;
  object-fit: contain;
}

.CourseTitle {
  display: flex;
  align-items: center;
  margin: 0;
  width: 100%;
  height: 30%;
  font-size: 20px;
}

.CourseDuration {
  margin: 0;
  width: 100%;
  height: 10%;
}



.Dark .Course {
  background-color: #203b5b;
}

.Dark .CourseTitle {
  color: #00E0D9;
}

.Dark #Poligran {
  filter: brightness(100);
}

.Dark #Alura {
  filter: brightness(100);
}

.Dark .CourseDuration {
  color: #B5BACF;
}

.Dark #Img-UNAB {
  filter: invert(1)
}

.Light .Course {
  background-color: #E6E8EF;
}

.Light .CourseTitle {
  color: #15273B;
}

.Light .CourseDuration {
  color: #15273B;
}




@media only screen and (min-width: 768px) {

  .Education {
    justify-content: space-evenly;
    row-gap: 5px;
    column-gap: 30px;
  }

  .Education h1 {
    width: 100%;
  }

  .Course {
    width: 30%;
    height: 200px;
    padding: 15px;
  }

  .CourseTitle {
    font-size: 14px;
  }

  .CourseDuration {
    font-size: 12px;
  }
}

@media only screen and (min-width: 1024px) {

  .Education {
    justify-content: space-between;
  }

  .Education h1 {
    width: 100%;
  }

  .Course {
    width: 30%;
    height: 260px;
    padding: 25px;
  }

  .CourseTitle {
    font-size: 16px;
  }

  .CourseDuration {
    font-size: 14px;
  }
}