* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif
}

.posts_Courses {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px;
  text-align: ri;
  line-height: 1.5;
  width: 100%;
  margin: auto;
  
}
.Course {
  border-radius: 8px;
  width: 100%;
  background: rgb(241, 241, 241);
  box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.041);
}
.posts_Courses img {
 height: 150px;
  width: 100%;
  border-radius: 5px;
}

.Course img:hover{
  transition: all 0.9s;
  -webkit-transform:scale(1.04);transform:scale(1.04);
}


.detalles {
  margin: 15px;
  margin-bottom: 1px;
}
.title_Post h1 {
  text-align: center;
}
.title_Post {
  margin-bottom: 10px;
  color: #085080;
  text-align: justify;
}

.detalles_Text h1 {
  text-align: center;
  font-size: 18px;
  color: #218fd8;
}
.detalles_Text {
  padding: 10px;
  text-align: justify;
  color: #085080;
}

.posts_Courses button {
  width: 100%;
  padding: 10px;
  font-size: 18px;
  font-weight: 600;
  color: #085080;
  border-radius: 0px 0px 8px 10px;
  background: rgb(221, 221, 221);
  border-style: none;
  cursor: pointer;
}
.posts_Courses button:hover {
  background: rgb(212, 212, 212);
  transition: all 0.5s ease-out;
  color: #04304e;
}

/* -------------- Responsive --------------*/
@media screen and (max-width: 880px) {
  .posts_Courses {
    grid-template-columns: repeat(3, 1fr);
  }
  
}
@media (max-width: 700px) {
  .posts_Courses {
    grid-template-columns: repeat(2, 1fr);
    
  }
}

@media (max-width: 500px) {
  .posts_Courses {
    grid-template-columns: repeat(1, 1fr);

  }
  .posts_Courses img {
    height: 180px;
   }
}

