ul.partners-list{
	position: relative;
	display: block;
	margin: 0;
    list-style: none;
	font-size: 1em;
	clear: both;
}

ul.partners-list li{
	position: relative;
	display: inline-block;
	width: 20%;
	min-height: 200px;
	float: left;
	background: rgba(150, 202, 45, 0.5);
	overflow: hidden;
}

ul.partners-list li:nth-child(odd){ 
	background: rgba(189, 241, 85, 0.5)
}

ul.partners-list li:hover .personAbout{
	display: block;
}

ul.partners-list li img{
	width: 100%;
	margin: 0;
}

ul.partners-list li .personsInfo{
	right: 0;
	bottom: 10%;
	padding: 10px;
}

ul.partners-list li .personsInfo .personsName{
	font-size: 1.2em;
	font-weight: bold;
}

ul.partners-list li .personAbout{
    padding: 10px;
    font-size: .8em;
	color: #fff;
}

ul.partners-list li .bio{
	position: absolute;
	right: 15px;
	bottom: 15px;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 40px;
	height: 40px;
	color: #fff;
	border: 2px solid #fff;
	border-radius: 50%;
	cursor: pointer;
}

ul.partners-list li.core{
	position: relative;
	display: inline-block;
	width: 33.33%;
	min-height: 510px;
	height: auto;
	float: left;
	overflow: hidden;
}

ul.partners-list li.core img{
	width: 100%;
	margin-bottom: 10px;
}

ul.list-institutions{
	position: relative;
	display: block;
	margin: 0 !important;
    list-style: none;
	font-size: 1em;
	clear: both;
}

ul.list-institutions li{
	position: relative;
	display: block;
	width: auto;
	min-height: auto;
	float: none;
	background: #fff;
	overflow: hidden;
}

ul.list-institutions li:nth-child(odd){ 
	background: #eee;
}

.bio-container{
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.2);
	z-index: 5454;
}

.bio-container .container{
	position: absolute;
	max-height: 80%;
	top: 50%;
	left: 50%;
	color: #000;
	padding: 50px;
	background: #edf7f2;
	overflow: hidden;
	transform: translate(-50%, -50%);
}

.bio-container .container .text{
	position: relative;
    overflow: auto;
    max-height: 600px;
}

.bio-container .container .closeBtn{
	position: absolute;
	top: 1%;
    right: 1%;
	font-size: 2em;
	cursor: pointer;
}

.bio-container .container .name{
	margin-bottom: 10px;
	font-weight: bold;
}

@media only screen and (min-width: 281px) and (max-width: 1024px) {
	ul.partners-list li{
		position: relative;
		display: inline-block;
		width: 100%;
	}
}