.person {
    display: inline-block;
    width: 25%;
    float: left;
    position: relative;
    height:250px;
    overflow:hidden;

}
.person-active .person {
	background-color: white;
    padding: 10px;
}

.person-active .person .pronouns {
	display:inline;
}
.person-name {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px;
    z-index:30;
	font-size: 20px;
    font-family: 'Roboto Condensed';
    font-weight: 800;
}

.pronouns{
	display:none;
}

.person img {
    width: 100%;
    max-width: initial;
    transition: all .2s;
}

.person:hover img{
    transform: scale(1.1);
}

.person:hover{
	cursor: pointer;
}

.person:hover:before{
	left:0;
}

.person:before{
	content:'';
	position: absolute;
	display:block;
	width:100%;
	height:100%;
	background:linear-gradient(90deg,rgba(0,60,235,0.8) 0%,rgba(192,24,190,0.8) 100%);
	left:-100%;
	transition:all .3s ease-in-out;
	z-index: 20;
}

.person-active {
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 400300;
    max-width: 650px;
    width: 80%;
    max-height:500px;
    height:50%;
    overflow-y:scroll;
    transform: translate(-50%, -50%);
/*     background-color: white; */
	background-image: linear-gradient(90deg,#003ceb 0%,#c018be 100%)!important;
    padding: 10px;
}


.person-active .person {
    height: auto;
    width: 100%;
}

.person-active .person img{
    width:250px;
    float:left;
    display: inline-block;
}

.person-active .person-name{
    position: relative;
    padding-left: 0;
    float:left;
    display: inline-block;
    color:black;
}

.person-active .person-bio {
    float: left;
    color:black;
}
.person-active .person:hover img{
	transform:scale(1);
}

.person-active .person:hover:before{
	left:-100%;
}

span.close-span {
    position: absolute;
    top: 5px;
    right: 5px;
    background-color: black;
    padding: 10px;
    z-index: 20;
    border-radius: 100%;
    width: 20px;
    height: 20px;
    line-height: 18px;
    text-align: center;
    padding: 0;
    font-weight: bold;
    font-size: 20px;
	border:2px solid;
}

span.close-span:hover{
	cursor:pointer;
	color:black;
	background-color:white;
}

@media(max-width:1400px){
	.person img{
		height: 100%;
    	width: auto;
	}
}
@media(max-width:980px){
	.person img{
		height: auto;
    	width: 100%;
	}
	.person{
		width: 50%;
	}
}

@media(max-width:700px){
	.person{
		width: 100%;
	}
}