:root {
		--primary: #f7f7f7;
		--secondary: #4c4c4c;
		--tertiary: #b5b5b5;
		--quaternary: #C4C4C4;
}
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family:"Helvetica";
}
body{
	padding: 0;
  margin: 0;
  height: 100vh;
	background: var(--primary);
}

.container{
	margin: 0 50px;
	padding: 10px 0;

	display: flex;
	align-items: center;
	justify-content: space-between;
}

nav{
	position: fixed;
	white-space: nowrap;
	top: 0;
	left: 0;
	right: 0;
	z-index: 99;
	background-color: var(--primary);
	padding: 0;
	border-bottom: 3px solid var(--tertiary);
	overflow: hidden;
  text-overflow: clip;
	text-transform: uppercase;
}

nav h1{
	color: var(--secondary);
	margin-right: 10px;
	font-size: 20px;
	font-weight: 900;
	letter-spacing: 2px;
	text-transform: uppercase;
}

.name{
	display: flex;
	flex-direction: row;
	align-items: center;
}

nav .logo{
	margin-right: 20px;
	height: 60px;
}

.openMenu{
	display:block;
	position: relative;
	z-index: 1;

	user-select: none;

	appearance: none;
	border: none;
	outline: none;
	background: none;
	cursor: pointer;
}

.openMenu span{
	display:block;
	width: 33px;
	height: 4px;
	margin-bottom: 5px;
	margin-left: 10px;
	position: relative;

	background-color: var(--secondary);
	border-radius: 6px;
	z-index: 101;

	transform-origin: 0 0;

	transition: 0.4s;
}

.openMenu:hover span:nth-child(2){
	transform: translateX(10px);
}

.openMenu.is-aktive span:nth-child(1){
	transform: translate(0px, -2px) rotate(45deg);
}

.openMenu.is-aktive span:nth-child(2){
	opacity: 0;
	transform: translateX(15px);
}

.openMenu.is-aktive span:nth-child(3){
	transform: translate(-3px, 3px) rotate(-45deg);
}

.openMenu.is-aktive:hover span:nth-child(2){
	background-color: var(--tertiary);
}

.navBar{
	display: none;
	flex: 1 1 0%;
	justify-content: flex-end;
	margin: 0 -16px;
}

.navBar a{
	color: var(--secondary);
	margin: 0 16px;
	font-weight: 600;
	text-decoration: none;
	transition: 0.4s;
	padding: 8px 16px;
	border-radius: 99px;
}

.navBar a:hover{
	color: var(--tertiary);
}

.sideBar {
	position: fixed;
	display: block;
	right: 0;
	height: 100vH;
	z-index: 100;

	padding: 20px 15px;
	opacity: 0;
	transform: translateX(200%);
	background-color: var(--primary);
	color: var(--secondary);
	transition: 0.4s;
}

.sideBar.is-open {
	opacity: 1;
	transform: translateX(0);
}

.sideBar a:not(.imageLink) {
	display: block;
	padding: 1rem;
	color: var(--secondary);
	text-align: center;
	text-decoration: none;
	font-size: 1.25rem;
	transition: 0.3s;
}

.sideBar a:hover {
	color: var(--tertiary);
}

.sideBarInfo{
	display: flex;
	width: 100%;
	height: 60%;
	flex-direction: column;
	justify-content: space-between;
}

.sideBarImpDatLinks{
	display: flex;
	flex-direction: row;
	justify-content: center;
	font-weight: normal;
}

.sideBarImpDatLink{
	font-size: 12px !important;
	text-transform: none !important;
}

.language{
	display: inline-block;
	text-align: center;
	padding: 10px;
}

.languageSideBar{
	width: 100%;
}

.imageLink{
	height: 26px;
}

.language img{
	width: 30px;
	height: 23px;

	border: solid;
	border-color: var(--primary);
	border-radius: 5px;

	transition: 0.4s;
}

.language img:hover {
	border-color: var(--tertiary);
}

.language img.is-aktive {
	border-color: var(--secondary);
}

.language a{
	width: 30px;
	height: 23px;

	padding: 0;
	margin: 0;
}

.content{
	margin-top: 7vh;
	display: flex;
	justify-content: center;
	flex-direction: column;
}

.diashow {
	width: 100vw;
	height: 60vw;
	background-color: var(--quaternary);
	display: block;
	position: relative;
}

.slide{
	display:none;
	max-width:100%;
	max-height:100%;
	overflow: hidden;
}

.diashow img{
	width:100%;
	overflow: hidden;
	object-fit: contain;
	object-position: 50% 50%;
}

.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;
	color: var(--primary);
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
  background-color: var(--secondary);
}

.dot {

	position: relative;
  bottom: 0;

  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 10px 2px;
  background-color: var(--tertiary);
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: var(--secondary);
}

.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

.tab{
	padding-top: 12vh;
	display: inherit;
	justify-content: space-between;
	align-content: center;
	flex-direction: row;
	margin-bottom: 40vh;
}

.contentPicture{
	display: inherit;
	width: 45vw;
	align-content: center;
	justify-content: center;
}

.contentPicture img{
	overflow: hidden;
	object-fit: contain;
	object-position: 10% 25%;
}

.contentPicture .filler{
	width: 50px;
	object-fit: contain;
}

.tabContent{
	width: auto;
	color: var(--secondary);
	margin-left: 30px;
	margin-right: 40px;
	font-size: 20px;
	font-weight: 400;
}

.tabContent ul{
	padding-left: 40px;
}

.tabContent p{
	padding: 16px;
}

.headline{
	color: var(--secondary);
	font-size: 40px;
	font-weight: 900;
	letter-spacing: 2px;
	margin-bottom: 20px;
	text-transform: uppercase;
	display: inline-block;
	position: relative;
}

.headline:after{
	content: '';
  position: absolute;
  width: 120px;
  height: 4px;
	left: 0;
	bottom: 0;
  background: var(--tertiary);
}


.footer{
	width: 100%;
	padding: 32px;
	padding-bottom: 0;
	font-size: 20px;
	font-weight: 400;
	background-color: var(--secondary);
	text-align: center;
	color: var(--quaternary);
}

.footer p{
	font-size: 16px;
}

.links{
	margin-top:16px;
	padding: 12px;
	font-size: 12px;
}

.links a{
	text-decoration: none;
	padding: 0 8px;
	color: var(--quaternary);
}

.links a:hover{
	color: var(--tertiary);
}

.person tr td{
	padding-right: 20px;
	padding-bottom: 3px;
	padding-top: 3px;
}

.navLang{
	display: none;
}

@media (min-width: 1220px){
	.openMenu, .mobileNavBar{
		display: none;
	}
	.navBar{
		display: flex;
	}

	.contentPicture{
		display: inherit;
	}

	.tabContent{
		width: 45vw;
	}

	.navLang{
		display: flex;
	}
}

@media (max-width: 544px){
	nav h1{
		font-size: 16px;
	}
	.logo{
		width: 50px;
	}
}

@media (max-width: 700px){
	.container{
		margin: 0 20px;
	}
}

@media (max-width: 1220px){
	.tab{
		flex-direction: column;
	}
	.reverse{
		flex-direction: column-reverse;
	}
	.contentPicture{
		width: auto;
		margin-bottom: 25px;
	}
	.contentPicture img{
		width: 100%;
	}
}

@media (min-width: 2160px){
	.diashow{
		width: 2100px;
		height: 1400px;
		align-self: center;
	}
}
