#administration {
	width: 100%;
	background: #fff;
	margin-top: 10px;
	overflow: hidden;
}

#administration .title {
	width: 100%;
	text-align: center;
	font-size: 25px;
	margin: 1rem auto;
}

#administration .container {
	margin: 1rem 2rem;
	position: relative;
	background: #fff;
	box-shadow: 5px 5px 22px #0009;
	padding: 2rem 1.5rem;
	max-width: unset;
	background: #ececec;
	margin-bottom: 20px;
}

#administration .administrator-title {
	font-size: 1.2em;
	float: left;
	display: inline-block;
	width: 100%;
}

#administration .administrator-title span{
	border-top: 2px solid #000;
}

#administration .administrator-content {
	float: left;
	margin-top: 1.5rem;
	padding: 0 0.5rem;
	width: 100%;
}

#administration .members-title {
	font-size: 1.2em;
	text-align: right;
	display: inline-block;
	width: 100%;
}

#administration .members-title span {
	border-top: 2px solid #000;
}

#administration .administrator-content .photo {
	text-align: center;
	padding-top: 2rem;
}

#administration .gradient-wrapper { 
	border-radius: 100%; 
	padding: 3px;
	display: inline-block;
	background: #000; // As fallback for browsers which do not support gradient
	background: -webkit-linear-gradient(#dbdbdb,#000); 
	background: -o-linear-gradient(#dbdbdb,#000); 
	background: -moz-linear-gradient(#dbdbdb,#000); 
	background: linear-gradient(#dbdbdb,#000); 
	filter: drop-shadow(-5px 0 20px #777);
}

#administration .circle {
	background: #fff;
	width: 150px;
	height: 150px;
	border-radius: 100%;
	overflow: hidden;
}

#administration .administrator-content .circle {
	width: 200px;
	height: 200px;
}

#administration .circle img{
	height: auto;
	width: 100%;
	/* transform: scale(0.9); */
}

#administration .name-pos {
	text-align: center;
	margin-top: 1rem;
}

#administration .name-pos .name {
	font-size: 1.1em;
}

#administration .members-content {
	text-align: center;
	margin-top: 1.5rem;
	border-left: 2px dashed #a4a4a4;
}

#administration .members-content .member {
	display: inline-block;
	margin: 0 auto;
	padding: 2rem;
}

#administration .members-content .member .name-pos {
	text-align: unset;
}

@media only screen and (max-width: 993px) {
	
	#administration .administrator-title, #administration .members-title{
		text-align: center;
	}
	
	 #administration .members-title{
		margin-top: 5rem;
	}
	
	#administration .members-content {
		border-left: none;
	}
	
}




