@charset "utf-8";
 /* Styling */
* {
	margin: 0;
	padding: 0;
	scroll-margin-top: 80px;
	scroll-behavior: smooth;
}
a:link, a:visited {
	color: #333;
	text-decoration: none;
}
a p1 {
	transition: 0.3s;
}
a:hover p1, a:active p1 {
	filter: brightness(150%) drop-shadow(5px 5px 5px #999);
	text-decoration: none;
}
a img {
	border-style: none;
}
a img:hover {
	border-style: none;
}
ul {
	list-style: none;
}
.desktop-only {
	display: none;
}
/* --- Scrollbar --- */
::-webkit-scrollbar {
	width: 15px;
}
::-webkit-scrollbar-track {
	background: #f1f1f1; 
}
::-webkit-scrollbar-thumb {
	background: #888; 
}
::-webkit-scrollbar-thumb:hover {
	background: #555; 
}
body {
	background-color: #EEE;
	display: flex;
}
#wrapper {
	position: relative;
	width: 100%;
	min-width: 300px;
	max-width: 1800px;
	min-height: 100vh;
	margin: 0 auto;
	background-color: #EEE;
	flex: 1 0 auto;
	overflow-x: hidden;
	overflow-y: auto;
}
 /* --- Header --- */
.header {
	position: relative;
	height: 60px;
	width: inherit;
	max-width: inherit;
	top: 0px;
	user-select: none;
	background-color: #EEEEEEDD;
}
.header,
#header-buffer #skip-link {
	display: flex;
	align-items: center;
	justify-content: center;
}
#header {
	position: fixed;
	visibility: visible;
	z-index: 2;
}
.header a {
	padding: 10px;
}
/* --- Skip Link --- */
#header-buffer {
	visibility: hidden;
}
#header-buffer #skip-link {
	flex: none;
	position: absolute;
	top: -50px;
	height: 30px;
	background: #e77e23;
	transform: translateY(0);
	transition: transform 0.3s;
	z-index: 3;
	visibility: visible;
}
#header-buffer #skip-link:focus-within {
	transform: translateY(200%);
}
/* Logo */
#header #logo {
	display: none;
	flex: 0 0 auto;
}
#header #logo a img {
	display: block;
}
#header #nav-buffer{
	flex: 1;
}
/* --- Menu --- */
#header #nav {
	flex: 0 0 auto;
	display: block;
	position: relative;
	align-content: center;
	justify-content: center;
	padding: 0 25px;
	z-index: 4;
	visibility: visible;
}
#header ul li {
	flex: 1 0 auto;
	text-align: left;
	margin: 10px 0;
}
#header ul li p1 {
	font-size: 20px;
}
/* Menu Hidden Button */
#header #nav input {
	display: flex;
	position: absolute;
	height: 55px;
	width: 100%;
	top: -15px;
	left: 0;
	cursor: pointer;
	opacity: 0;
	z-index: 5;
}
#header #nav input:checked {
	height: 100px;
	left: -15px;
}
/* Menu Background */
#header #nav #menu {
	position: absolute;
	top: -430px;
	right: -290px;
	display: flex;
	width: 180px;
	padding: 40px 25px 25px 40px;
	background: #FFFFFFFE;
	border: 5px #222;
	border-style: solid;
	border-radius: 5px;
	box-shadow: 0 0 0 1000vmax rgba(0,0,0,0);
	visibility: visible;
	z-index: 3;
	transform-origin: 0% 0%;
	transform: translate(0, 0);
	transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0), box-shadow 0.5s ;
}
/* Menu Slide */
#header #nav input:checked ~ #menu {
	transform: translate(-300px, 420px);
	box-shadow: 0 0 0 1000vmax rgba(0,0,0,.5);
}
/* Menu Hidden Background Label*/
#header #nav #menu-checkbox-label {
	position: fixed;
	display: none;
	top: 0;
	left: 0;
	z-index: 1;
	height: 100vh;
	width: 100vw;
}
#header #nav input:checked ~ #menu-checkbox-label {
	display: block;
}
/* Menu Icon Design and Transition */
#header #nav span {
	display: block;
	width: 40px;
	height: 5px;
	margin-bottom: 5px;
	position: relative;
	background: #000;
	border-radius: 3px;
	transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0), 
				background 0.5s cubic-bezier(0.77,0.2,0.05,1.0), 
				opacity 0.55s ease;
	z-index: 4;
}
#header #nav span:nth-of-type(2) {
	transform-origin: 0% 0%;
}
#header #nav span:nth-of-type(3) {
	transform-origin: 0% 100%;
}
/* Transform Menu Icon into X */
#header #nav input:checked ~ span {
	width: 50px;
	transform: rotate(45deg) translate(12px, 10px);
}
#header #nav input:checked ~ span:nth-of-type(2) {
	transform: rotate(0) translate(0);
	opacity: 0;
}
#header #nav input:checked ~ span:nth-of-type(3) {
	transform: rotate(-45deg) translate(-17px, 21px);
}
 /* --- Body --- */
#body-area {
	padding: 0 0 20px 0;
	transform-style: preserve-3d;
}
#body-area .heading {
	text-align: center;
}
#body-area img {
	box-shadow: 5px 5px 5px #888888;
}
#body-area .flex-container,
#body-area .flex-container .flex-item,
#body-area .flex-container .flex-item a {
	display: flex;
	align-content: center;
	justify-content: center;
}
#body-area .flex-container {
	flex: 1;
	flex-flow: row wrap;
	width: 100%;
	z-index: 1;
}
#body-area .flex-container .flex-item {
	flex: 1;
	position: relative;
	flex-flow: row nowrap;
	margin: 15px;
	height: 300px;
	min-width: 300px;
	max-width: 600px;
	overflow: visible;
	z-index: 1;
}
#body-area .flex-container .flex-item a {
	width: 100%;
}
#body-area .flex-container .flex-item a h2 {
	position: absolute;
	line-height: normal;
	margin: 0 auto;
	top: 50%;
	background: white;
	transition: 0.3s ease;
	z-index: 1;
}
#body-area .flex-container .flex-item a:hover h2,
#body-area .flex-container .flex-item a:active h2 {
	font-size: 36px;
}
#body-area .flex-container .flex-item a img {
	height: 100%;
	width: 100%;
	object-fit: cover;
	transition: 0.3s ease;
}
#body-area .flex-container .flex-item a:hover img,
#body-area .flex-container .flex-item a:active img {
	height: 105%;
	width: 105%;
	filter: blur(3px);
}
 /* --- Footer --- */
.footer {
	position: fixed;
	clear: both;
	height: 50px;
	width: inherit;
	max-width: inherit;
	bottom: 0;
	user-select: none;
}
.footer,
.footer .pre-footer,
.footer ul {
	display: flex;
	align-items: center;
	justify-content: center;
}
#footer {
	z-index: 1;
	background-color: #EEEEEEDD;
}
.footer ul li {
	flex: 0 0 auto;
}
.footer ul li > * {
	padding: 10px;
}
#footer .buffer {
	flex: 1;
	display: flex;
}
#footer #contact-buffer-1 {
	justify-content: flex-start;
	filter: drop-shadow(5px 5px 5px #999)

}
#footer #contact-buffer-2 {
	justify-content: flex-end;	
}
/* Pre-Footer */
#footer-buffer {
	position: sticky;
	display: block;
	top: 100vh;
	height: auto;
	background-color: transparent;
}
#footer-buffer .pre-footer {
	position: relative;
}
#footer-buffer #pre-footer {
	height: 40px;
	z-index: 2;
}
#footer-buffer #pre-footer-buffer {
	visibility: hidden;
}
 /* Fonts */
p {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 16px;
	color: #333;
	margin: 20px;
	text-indent: 0px;
	line-height: 1.5;
	letter-spacing: 1px;
	font-weight: bold;
	font-style: italic;
}
p1 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	font-weight: bold;
	margin-left: 0px;
	line-height: 1;
	letter-spacing: 0px;
}
p2 {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 18px;
	line-height: 2;
	letter-spacing: 1px;
	font-weight: bold;
}
h1 {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 20px;
	margin: 10px;
	text-indent: 0px;
	line-height: 1.5;
	letter-spacing: 0px;
	font-weight: bold;
	text-decoration: underline;
}
h2 {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 30px;
	margin: 10px;
	text-indent: 0px;
	line-height: 1.5;
	letter-spacing: 0px;
	font-weight: bold;
	text-decoration: underline;
}
h3 {
	font-family: Georgia, "Times New Roman", Times, serif;
	color: red;
	font-size: 20px;
	margin: 10px;
	text-indent: 0px;
	line-height: 1.5;
	letter-spacing: 0px;
	font-weight: bold;
	text-decoration: underline;
}
@media screen and (min-width: 768px) {
	html {
		overflow-y: scroll;
	}
	p {
		font-size: 100%;
	}
	p1 {
		font-size: 100%;
	}
	p2 {
		font-size: 100%;
	}
	h1 {
		font-size: 100%;
	}
	h2 {
		font-size: 100%;
	}
	h3 {
		font-size: 100%;
	}
	.desktop-only {
		display: inherit;
	}
	.mobile-only {
		display: none;
	}
	/* Logo */
	#header #logo {
		display: flex;
	}
	/* Menu Position */
	#header #nav {
		flex: 0 0 auto;
		padding: inherit;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	#header ul {
		display: flex;
	}
	#header ul li {
		flex: 0 1 auto;
	}
	/* Menu Hidden Button */
	#header #nav input {
		display: none;
	}
	#header #nav span {
		display: none;
	}
	#header #nav #menu {
		flex: 1 0 auto;
		position: inherit;
		top: inherit;
		right: inherit;
		width: auto;
		padding: inherit;
		background: inherit;
		border: inherit;
		z-index: inherit;
	}
	#header #nav input:checked ~ #menu {
		transform: none;
		box-shadow: none;
	}
	#body-area .flex-container .flex-item {
		height: 400px;
		min-width: 450px;
		max-width: 1000px;
	}
}