.row{
padding-left:15%;
}
#boxmembers{
	height: auto !important;
	min-height: 100px;
	margin-top:8%;
	padding-bottom:8%;
}		
*, *:before, *:after {
  box-sizing: inherit;
}
#column {
  float: left;
  width: 33.3%;
  margin-bottom: 16px;
  padding: 40px 8px; 
}
@media (max-width: 760px) {
.row{padding-left:0px}
  #column {
    width: 95%;
    display: block;
  }
}
.card {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}
.entry-meta {
  padding: 0 16px;
}
.entry-meta::after, .row::after {
  content: "";
  clear: both;
  display: table;
}
.title {
  color: grey;
}
.effect {
	animation-delay: 0.5s; 
    animation-duration: 3s; 
    animation-fill-mode: both; 
    animation-timing-function: linear; 
} 
@keyframes bounceInUp { 
    0% { 
        opacity: 0; 
        transform: translateY(2000px); 
    } 
    60% { 
        opacity: 1; 
        transform: translateY(-30px); 
    } 
    80% { 
        transform: translateY(10px); 
    } 
    100% { 
        transform: translateY(0); 
    } 
} 

.bounceInUp { 
    animation-name: bounceInUp; 
}
#column:first-child { 
animation-delay: 0s;
}