/* About School template */

.about-school-wrap {
	padding: 0 10vw;
	
}

.about-school-main-container {
	display: flex;
	flex-wrap: row;
	
}

.about-school-logo-cell {
	width: 20vw;
}

.about-school-logo-cell img {
	width: 10vw;
	/* is also media regulated */
}

.about-school-text-cell {
	
}

/* On screens that are 600px wide or less, make the columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .about-school-main-container {
  	display:flex;
    flex-direction: column;
  }
  
  .about-school-logo-cell img {
  	  width: 50vw;
  	  margin: 0 auto;
  	  display: block
  }
  
  .about-school-text-cell {

  }
}


/* all the staff css */

.staff-card-wrap {
	display:flex;
	margin-bottom: 2em;
}

.staff-img {
	border:1em;
	margin-right: 3em;
}

.staff-img-right {
	border-right: 0em;
	margin-left: 3em;
}