/* Discover intro content */
/*----------------------------------------------------------------------------*/
.people-section{
	position: relative;
	width: 100%;
	min-height: 100vh;
  background-size: 100% auto;
  background-repeat: repeat-y;
  background-position: center top;
  overflow: hidden;
	background-image: url("../images/wall6_background.jpg");
	padding-top: 11vh;
}
.people-section h1{
	font-size: 2.5rem;
}
.people-items{
	position: relative;
	width: 100%;
	padding: 3vh 3vw;
}
.people-item{
	display: inline-block;
	width: 20vw;
	height: 35vh;
	text-align: center;
	border-radius: 10px;
	background-color: var(--white70);
	margin: 1vh;
	padding: 3vh 1vw;
}
.people-item img{
	width: 18vh;
	border-radius: 500px;
	opacity: 0.7;
	transition: all 300ms ease-in-out;
}
.people-item img:hover{
  transform: scale(1.05);
	opacity: 1;
}
.people-item img:active{
  transform: scale(0.98);
}
.people-item .font-blue{
	color: var(--red);
	font-size: 1rem;
}
.people-item p{
	font-size: 1.2rem;
	padding: 5% 10%;
	line-height: 0.2;
}
.people-email{
	transition: all 200ms ease-in-out;
	width: 75%;
	color: var(--white);
	background-color: var(--dyellow);
	opacity: 0.5;
	margin-top: 1vh;
	padding: 3px;
	font-size: 1.8rem;
	border-radius: 5px;
}
.people-email:hover{
	opacity: 1;
	background-color: var(--red);
}
.people-email:active{
  transform: scale(0.98);
}


/* Cell phone screen */
/*----------------------------------------------------------------------------*/
@media only screen and (max-width: 1080px){
.people-section h1{
	font-size: 5.5rem;
}
.people-items{
	display: grid;
}
.people-item{
	width: 94%;
	height: 60vh;
	padding: 3vh 3%;
}
.people-item img{
	width: 30vh;
	opacity: 1;
	margin-bottom: 4vh;
}
.people-item p{
	font-size: 5rem;
	line-height: 1;
	padding: 0;
}
.people-item .font-blue{
	font-size: 4.5rem;
}
.people-email{
	margin-top: 3vh;
	font-size: 8rem;
}
}
