/* ########################################### */
/* general */

* {
  box-sizing: border-box;
}

body {
	font-family: Helvetica,sans-serif;
}

.center {
	text-align: center;
}

img {
	border-radius: 3%;
}

.header img {
	display: none;
	border-radius: 0%;
}

h1 {
	font-weight: bold;
	text-decoration: underline;
}

h2 {
	font-weight: normal;
	text-decoration: underline;
}

h3 {
	font-weight: normal;
	font-style: italic;
}

.sidebar img {
	display: none;
}

.column {
	float: left;
	padding: 10px 15px;
}

.row:after {
	content: "";
	display: table;
	clear: both;
}

.maintext {
	width: 100%;
}

.sidebar {
	width: 100%;
}

span.reverse {
	unicode-bidi: bidi-override;
	direction: rtl;
}

/* ########################################### */
/* navbar dropdown css styling */

.nav ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
	overflow: hidden;
	background-color: #333;
}

.nav li {
	float: left;
}

.nav li a, .dropbtn {
	/*display: inline-block;*/
	display: block;
	color: white;
	text-align: center;
	padding: 14px 16px;
	text-decoration: none;
}

.nav li a:hover, .dropdown:hover .dropbtn {
	background-color: red;
}

.nav li.dropdown {
	display: inline-block;
}

.dropdown-content {
	display: none;
	position: absolute;
	background-color: #f9f9f9;
	min-width: 160px;
	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
	z-index: 1;
}

.dropdown-content a {
	color: black !Important;
	padding: 12px 16px;
	text-decoration: none;
	display: block;
	text-align: left;
}

.dropdown-content a:hover {
	background-color: #f1f1f1 !Important;
}

.dropdown:hover .dropdown-content {
	display: block;
}

/* ########################################### */
/* image galleries */
.gallery_container {
	position: relative;
	float: left;
	
	div:nth-child(2n) {
		margin-right: 0;
	}
}

.people {
	text-align: center;
	
	float: left;
	width: 95%;
	padding: 5px;	
	height: 275px;
	
	margin-right: 5%;
	margin-bottom: 5%;
}

div.person_descript {
	padding: 5px;
	text-align: center;
}

.clearfix:after {
	content: "";
	display: table;
	clear: both;
}

/* ########################################### */
/* min 700px screen */
@media only screen and (min-width: 700px) {
	.header img {
		display: inline;
	}
	
	.sidebar img {
		display: inline;
	}
	
	.maintext {
		width: 85%;
	}
	
	.sidebar {
		width: 15%;
		min-width: 160px;
	}
	
	.people {
		width: 30%;
		height: 325px;
	}
	
	.gallery_container {
		div:nth-child(3n) {
			margin-right: 0;
		}
	}
}

/* ########################################### */
/* wide screen */
@media only screen and (min-width: 1400px) {
	.people {
		width: 16%;
		height: 325px;
	}
	
	.gallery_container {
		div:nth-child(5n) {
			margin-right: 0;
		}
	}
}