body {
	position: relative;
	overflow-y: scroll;
	width: 100%;
	height: 100vh;
	color: #4a4a4a;
	font-size: 100%;
	line-height: 150%;
	font-family: Helvetica, Arial, Sans-Serif;
	font-weight: 200;
	background-color: #F5F5F5;	
	background-position: 50% 0;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}

.header {
	position: absolute;
	width: 100%;
	height: auto;
	max-height: 75px;
	display: flex;
	justify-content: center;
	z-index: 2;
}

.header2 {
	display: flex;
	max-width: 960px;
	width: 100%;
	justify-content: space-between;
	padding: 10px;
}

.logo {
	padding: 10px;
}

@media screen and (max-width: 450px){
	.header2{
		flex-direction: column;
		justify-content: normal;
		align-items: center;
	}
}

.slider {
	position: relative;
	width: 100%;
	height: 75vh;
	background-color: #272727;
	z-index: 1;
}

.slider > li{
	width: 100%;
	height: 100%;
}

.slider_image{
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: top center;
	filter: brightness(0.7);
}

.maincontainer {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.main {
	width: 100%;
	max-width: 960px;
	margin-top: 35px;
	padding: 0 20px;
}

h1 {
	font-size: 40px;
	color: black;
	text-align: center;
	font-family: 'Nunito', sans-serif;
	margin-top: 50px;
}

h2 {
	font-size: 17px;
	color: black;
	text-align: center;
	margin-top: 17px;
	font-weight: bold;
	font-family: 'Nunito', sans-serif;
}

h3 {
	margin: 20px;
	font-size: 22px;
	font-family: 'Nunito', sans-serif;
}

h4 {
	font-size: 22px;
	text-align: center;
	font-family: 'Nunito', sans-serif;
}

h5 {
	font-size: 14px;
	font-family: 'Nunito', sans-serif;
	margin-top: 10px;
	margin-bottom: 27px;
	color: black;
}

h6 {
	font-size: 23px;
	margin-bottom: 20px;
	color: white;
	font-family: 'Nunito', sans-serif;
}

.pictures {
	width: 100%;
	height: 100%;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	justify-items: center;
	justify-content: center;
	gap: 10px;
}

.picture_overview {
	width: 100%;
	height: auto;
	display: flex;
	flex-direction: column;
}

.picture {
	width: 150px;
	height: 150px;
	object-fit: cover;
}

.picture:hover {
	text-decoration: none;
}

@media screen and (max-width: 960px) {
	.pictures {
		grid-template-columns: repeat(4, 1fr) !important; 
	}
}

@media screen and (max-width: 768px) {
	.pictures {
		grid-template-columns: repeat(3, 1fr) !important; 
	}
}

@media screen and (max-width: 480px) {
	.pictures {
		grid-template-columns: repeat(2, 1fr) !important; 
	}
}

.content {
	float: left;
	width: 100%;
	margin-top: 40px;
}

article {
	width: 100%;
	max-width: 960px;
	padding-top: 50px;
	padding-left: 2%;
}

aside {
	float: left;
	width: 32%;
	margin-top: 35px;
	margin-right: 2%;
	border-radius: 0;
	border-radius: 4px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box; 
	background-color: white;
}

aside img {
	width: 100%;
}

.contact {
	float: left;
	width: 100%;
	padding-top: 23px;
}

.contact p {
	float: left;
	width: 100%;
	margin-bottom: 20px;
	text-align: center;
}

.contact .button {
	cursor: pointer;
}

.contact .button:hover {
	color: #424242;
}

.contact input, .contact textarea {
	width: 290px;
	padding: 8px;
	border-radius: 0;
	border: 2px solid #4a4a4a;
	color: #4a4a4a;
	background-color: white;
	font-family: 'Nunito', sans-serif;
	font-size: 14px;
	text-align: center;
	border-radius: 4px;
	-webkit-appearance: none;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box; 
}

.contact textarea {
	width: 70%;
	height: 120px;
}

.button {
	background: black;
	padding: 6px 12px !important;
	margin-bottom: 5px;
	color:#fff;
	font-family: 'Nunito', sans-serif;
	font-size: 15px;
	border-radius: 4px !important;
	-moz-border-radius: 4px !important;
	-webkit-border-radius: 4px !important;
	border: none;
	-webkit-appearance: none;
	color: white !important;
	font-weight: bold !important;
}

.button:hover {
	background:#2f2f2f;
	cursor: pointer;
	text-decoration: none;
}

footer {
	width: 100%;
	margin-top: 30px;
	padding-top: 10px;
	padding-bottom: 5px;
	background-color: black;
	box-shadow: 0 8px 6px -6px #666;
	display: flex;
	justify-content: center;
	color: white !important;
}

a {
	color: #9b9b9b;
	text-decoration: none; 
}

a:hover {
	text-decoration: underline;
}

hr {
	border: #929292 solid 1px;
	margin: 0px;
}

.copyright {
	width: 100%;
	color: white;
	text-align: right;
	border-top: 1px solid grey;
	padding-top: 5px;
	font-size: 12px;
	margin-top: 20px;
}

footer a {
	color: white;
}

.copyright a {
	text-decoration: underline;
}

input:focus,
select:focus,
textarea:focus,
button:focus {
	outline: none;
}