.lecturerlist-grid {
  margin-top: 100px;
  text-align: center;
}
.grid { 
    margin: 100px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    grid-gap: 20px;
    align-items: stretch;
    }
  .grid > article {
    border: 1px solid #ccc;
    box-shadow: 2px 2px 6px 0px  rgba(0,0,0,0.3);
  }
  .grid > article img {
    margin: 20px;
    max-width: 70%;
    max-height: 50%;
  }
  .text {
    padding: 0 20px 20px;
  }
  .text > button {
    background: gray;
    border: 0;
    color: white;
    padding: 10px;
    width: 100%;
}

.service-card {
  font-family: "Poppins", sans-serif;
  height: auto;
  width:90%;
  color:darkgray;
  background-color: #1a76d1;
  border-radius: 5px;
  margin: 20px;
  box-shadow: 0 4px 6px rgba(50,50,93,.11), 0 1px 3px rgba(0,0,0,.08);
  transition: all .15s ease;
  cursor: pointer;
}
.title{
  margin: 20px;
  padding: 15px;
  font-size: 20px;
  font-weight: 600;
  border-bottom: 2px solid #fff;
  color:#fff;
}
.bodyin {
  font-weight: 400;
  font-size: 12px;
  padding: 15px;
  color:#fff;
}
.service-card:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.row{
  display: flex;
}
@media screen and (max-width: 900px) {
  .row{
      display: flex;
      flex-direction: column;
    }
}