.members-row {
	text-align: center;
}
.members-row .members-col {
  text-align: center;
  font-family: 'Poppins',sans-serif;
  font-weight: bold;
  vertical-align: top;
  margin-bottom: 40px;
}
.members-row .members-col .member-img {
  width: 100%;
  height: 240px;
  background-size: cover;
  background-position: top center;
  border-radius: 14px;
  margin-right: 15px;
  margin-bottom:30px;
}
.members-row .members-col .member-name {
  font-size: 28px;
}
.members-row .members-col .member-title {
  font-size: 18px;
  color: #FF8D00;
}

.single-member {
  margin-bottom: 15px;
  min-height: 350px;
}
.single-member:hover {
  cursor: pointer;
}
.single-member:hover .member-img {
  opacity: 0.8;
}
.single-member:hover .member-name {
  color: #0060E0;
}

.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: hidden; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

.modal .modal-image img {
  border-radius: 14px;
}

.modal .modal-member-title {
  font-size: 16px;
  color: #FF8D00;
}

.modal .modal-member-desc {
  font-family: 'Roboto',Arial,sans-serif;
  font-size: 16px;
  line-height: 27px;
  font-weight: 400;
  height: 80%;
  overflow-y: auto;
}

/* Modal Content/Box */
.modal .modal-content {
  padding: 30px;
  width: 100%; 
  border-radius: 14px;
  background-color: #FFFFFF;
  box-shadow: 0 6px 20px 0 rgba(0,0,0,0.17);
  text-align: left;
  height: 50vh;
  margin-top: 250px; 
  overflow: auto;
}
@media only screen and (min-width: 768px) {
.modal .modal-content {
	margin: 50% auto;
	width: 90%; 
  }
}
/* The Close Button */
.modal .close {
  color: #0060e0;
  float: right;
  font-size: 40px;
  line-height: 1;
  font-weight: 100;
  position: relative;
  top: -10px;
}

.modal .close:hover,
.modal .close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

@media only screen and (min-width: 768px) {
  .members-row .members-col {
    display: inline-block;
    width: 46%;
    margin-right: 2%;
  }
  .modal .modal-content {
    margin: 15% auto;
    width: 80%;
    height: 65vh;
    overflow: inherit;
  }
}
@media only screen and (min-width: 992px) {
  .members-row .members-col {
    width: 30%;
    margin-right: 2%;
  }
  .modal .modal-image {
    width: 39%;
    vertical-align: top;
    display: inline-block;
    max-height: 100%;
    overflow: hidden;
    text-align: center;
  }
  .modal .modal-member-info {
    width: 57%;
    margin-left: 1%;
    display: inline-block;
    height: 100%;
  }
}