@font-face {
	font-family: ubuntu;
	src: url("../assets/Ubuntu-R.ttf");
}

* {box-sizing:border-box}

.header_container {
	text-align: center;
	width: 70%;
	margin: auto;
}

.header_container img {
	max-width: 100%;
}

.page_content {
	background-color: #eeeeee;
	max-width: 70%;
	height: auto;
	overflow: hidden;
	margin: auto;
	padding: 2% 2% 2% 2%;
}

.facebook_link {
	font-size: 8pt;
}

.timeframe, .subtitle {
	text-align: center;
}

body p {
	display: inline-block;
	vertical-align: top;
	text-align: justify;
	width: 100%;
}

.slideshow_container {
	max-width: 80%;
	position: relative;
	margin: auto;
}

.carousel_image {
	display: none;
}

.person {
	display: none;
}

.subtitle {
	text-align: center;
}

.person_desc {
	display: none;
	padding: 0 10% 0 10%;
}

.prev, .next {
	cursor: pointer;
	position: absolute;
	top: 50%;
	width: auto;
	margin-top: -22px;
	padding: 16px;
	color: white;
	font-weight: bold;
	font-size: 18px;
	transition: 0.6s ease;
	border-radius: 0 3px 3px 0;
	user-select: none;
}

.next {
	right: 0;
	border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
	background-color: rgba(0,0,0,0.8);
}

.text {
	color: #f2f2f2;
	font-size: 15px;
	padding: 8px 12px;
	position: absolute;
	bottom: 8px;
	width: 100%;
	text-align: center;
}

.numbertext {
	color: #f2f2f2;
	font-size: 12px;
	padding: 8px 12px;
	position: absolute;
	top: 0;
}

.dot {
	cursor: pointer;
	height: 15px;
	width: 15px;
	margin: 0 2px;
	background-color: #bbb;
	border-radius: 50%;
	display: inline-block;
	transition: background-color 0.6s ease;
}

.active, .dot:hover {
	background-color: #717171;
}

.fade {
	animation-name: fade;
	animation-duration:  1.5s;
}

@keyframes fade {
	from {opacity: .4}
	to {opacity: 1}
}

.footer_content {
	background-color: aliceblue;
	width: 70%;
	margin: auto;
}

.page_heading {
	text-align: center;
}

.navbar {
	display: inline-block;
	text-align: center;
	width: 70%;
	margin: auto;
	padding: 0;
}

.navbar ul {
	list-style-type: none;
	overflow: hidden;
	background-color: #715300;
	border-radius: 10px;
}

.navbar li {
	display: inline-block;
	float: left;
}


.navbar li:hover {
	background-color: #917300;
}

.navbar li a, .dropbtn {
	display: block;
	padding: 14px 16px;
	color: white;
	text-decoration: none;
}

.navbar li.dropdown {
	display: inline-block;
}

.mobile_navbar {
	display: none;
	text-align: center;
	width: 98%;
	margin: auto;
	padding: 0;
	overflow: hidden;
	background-color: #715300;
	border-radius: 10px;
	text-align: center;
}

.mobile_navbar:hover {
	background-color: #917300;
}

.mobile_navbar:hover .dropdown_content {
	display: block;
	width: 94%;
	text-align: center;
}

.mobile_navbar a {
	display: block;
	padding: 14px 16px;
	color: white;
	text-decoration: none;
}

.mobile_navbar a.dropdown {
	display: inline-block;
}

@media only screen and (max-width: 830px) {
	.navbar {display: none;}
	.mobile_navbar {display: inline-block;}
	.page_content {max-width: 98%;}
}

.dropdown_content {
	display: none;
	position: absolute;
	background-color: #EDB51C; 
	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-alight: left;
}

.dropdown_content a:hover {
	background-color: #DDA50C !important;
}

.dropdown:hover .dropdown_content {
	display: block;
}

body {
	font-family: "ubuntu" !important;
	background-image: url("../assets/bg-repeat.png");
	background-repeat: repeat-y;
	background-size: 100%;
}