
/* MAIN PROPERTIES */

:root {
  --font-color: #191A29;
  --negative-space-bg-color: #3D4056;
  --grey-border: #F1F1F6;
  --dropbox-color: #00000026;
  --white-bg-dropbox-color: #efefef;
  --wine-red: #9B5870;
  --negativ-link-hover-color: #f0f0f0;
}

body {
	margin: 0;
}

/* REUSABLE ELEMENTS */

.header {
	position: absolute;
	width: 100%;
	background-color: white;
	box-shadow: 0 0 50px var(--dropbox-color);
	z-index: 100;
	height: 114px;
	display: flex;
	justify-content: space-between;
}

.outer {
	display: flex;
	justify-content: space-between;
}

.center {
		margin-top: -100px;
		background-color: white;
		min-width: 1403px;
		min-height: 100px;
		z-index: 1;
	}

.center-content {
		margin: 100px;
		width: auto;
	}

.header-center {
	min-width: 1403px;
	min-height: 100px;
	display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-underlay {
	height: 114px
}

.header-logo-box {
	display: flex;
	align-items: center;
	margin-left: 100px;

}

.header-text {
	margin-left: 41px;
}

.header-logo {
	width: 72px;
	height: 72px;
}

.header-links {
	margin-right: 100px;
}

.header-link {
	margin-left: 50px;
}

.top-ornamental {
	height: 274px;
	background-color: var(--wine-red);
	display: flex;
	justify-content: center;
}

.top-ornamental-headline {
	margin-top: 80px;
	font-family: 'Lato';
  font-weight: 700;
  font-style: normal;
  font-size: 30px;
  letter-spacing: .1rem;
  color: white;
  line-height: 22px;
}

.footer {
	background-color: var(--negative-space-bg-color);
	height: auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}

.footer-brand {
	
	margin-left: 56px;
}

.footer-brand-name-and-title {
	margin-left: 56px;
}

.footer-brand-inner {
	display: flex;
	justify-content: left;
	margin-top: 56px;
	margin-bottom: 56px;
}

.footer-impressum {
	margin-right: 56px;
	margin-left: 56px;
}

.button {
	background-color: #845D7C;
	border: none;
	color: white;
	/*padding: 20px;*/
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 14px;
	font-family: 'Lato';
	margin: 4px 2px;
	border-radius: 30px;
	width: 172px;
	height: 42px;
	transition: all .2s ease;
	border: 2px solid #845D7C;
	cursor: pointer;
}

.button:hover {
	border-color: #845D7C;
	color: #845D7C;
	background-color: white;
	font-weight: 700;
}


@media only screen and (max-width: 1404px ) {
	
	.header-left {
		display: none;
	}

	.header-center {
		min-width: 100%;
	}

	.header-right {
		display: none;
	}

	.left {
		display: none;	
	}

	.right {
		display: none;
	}

	.center {
		min-width: auto;
	}

}

@media only screen and (max-width: 768px ) {
	
	.center-content {
		margin: 50px 25px 50px 25px;
	}

	.header-logo-box {
		margin-left: 25px;
	}

	.header-links {
		margin-right: 25px;
	}

	.header-text {
		display: none;
	}

	.footer-brand-inner {
		flex-direction: column;
	}

	.footer-copyright {
		margin-bottom: 25px;
	}

	.footer-brand-name-and-title {
		margin-left: 0;

	}

}


@media only screen and (min-width: 769px ) and (max-width: 1404px ) {
	
	.center-content {
		margin: 50px;
	}

	.header-logo-box {
		margin-left: 50px;
	}

	.header-links {
		margin-right: 50px;
	}
}

@media only screen and (min-width: 1405px ) {

	.header-left {
		width: 100%;
		height: auto	;
		min-height: 100px;
	}

	.header-right {
		width: 100%;
		height: auto;
		min-height: 100px;
	}

	.left {
		background-color: var(--grey-border);
		width: 100%;
		height: auto;
		min-height: 100px;
	}

	.center {
		border-radius: 5px;
		box-shadow: 0 0 25px var(--dropbox-color);
	}

	.right {
		background-color: var(--grey-border);	
		width: 100%;
		height: auto;
		min-height: 100px;
	}

}