* {
  box-sizing: border-box;
}

.flex-container {
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  padding: 30px;
  margin: 20px;
}
.advisory-committe-section img{
    max-width: 300px;
    width: 100%;
    height: auto;
}
.advisory-committee-name{
    font-size: 25px;
    color: red;
}

.flex-container{
    box-shadow: rgba(136, 165, 191, 0.48) 6px 2px 16px 0px, rgba(255, 255, 255, 0.8) -6px -2px 16px 0px;
}

.flex-container.odd{
    background-color: #fff9f2;
}
.flex-container.even{
    box-shadow: rgb(235 76 70 / 30%) 0px 0px 0px 3px;
    background-color: #fff9f2;
}

.flex-item-left {
  padding: 10px;
  flex: 30%;
}
img{
  outline: none;
  border: none;
  max-height: 250px;
}
.flex-item-right {
  padding: 10px;
  flex: 70%;
}

.flex-item-right, .flex-item-left {
  width: 120px;
}

/* Responsive layout - makes a one column-layout instead of a two-column layout */
@media (max-width: 800px) {
  .flex-item-right, .flex-item-left {
    flex: 100%;
  }
}