/* GENERAL */

html, body{
	width: 100%;
	margin: 0px;
	font-size: 16px;
}

.btn-1{
	font-size: 1.2em;
	color: var(--white);
	background: none;
	border: solid 1.5px var(--white);
	padding: 10px 30px;
	border-radius: 30px;
	cursor: pointer;
	transition: 400ms ease;
	display: block;
}

.btn-1:hover{
	background: var(--blue-2);
}

.btn-1-right{
	font-size: 1.2em;
	color: var(--white);
	background: none;
	border: solid 1.5px var(--white);
	padding: 10px 30px;
	border-radius: 30px;
	cursor: pointer;
	transition: 400ms ease;
	margin-left: auto;
	display: block;
}

.btn-1-right:hover{
	background: var(--blue-2);
}

.btn-1-center{
	font-size: 1.2em;
	color: var(--white);
	background: none;
	border: solid 1.5px var(--white);
	padding: 10px 30px;
	border-radius: 30px;
	cursor: pointer;
	transition: 400ms ease;
	margin: auto;
	display: block;
}

.btn-1-center:hover{
	background: var(--blue-2);
}

/* COLOR */

:root{
	--white: #ffffff;
	--blue: #1e2a36;
	--blue-2: #2768b1;
}

/* SPACE */

:root{
	--page-max-width: 1400px;
	--page-lr-margin: 80px;
	@media screen and (max-width: 992px){
		--page-lr-margin: 20px;
	}
}

.boxed{
	width: calc( 100% - ( 2 * var(--page-lr-margin) ) );
	max-width: var(--page-max-width);
	margin: 0px auto;
}

/* TEXT */

html, body{
	font-size: 16px;
}

@media screen and (max-width: 962px){
	html, body{
		font-size: 14px;
	}
}

* {
	color: white;
	font-family: "itc-avant-garde-gothic-pro", sans-serif;
	font-weight: 300;
	font-style: normal;
}

h2{
	font-size: 3.5em;
	text-align: right;
	margin: 0px;
}

@media screen and (max-width: 1400px){
	h2{
		font-size: 2.5em;
	}
}

@media screen and (max-width: 1000px){
	h2{
		text-align: center;
	}
}

h3{
	text-align: right;
	margin: 0px;
	margin-top: 40px;
	font-size: 1.8em;
}

@media screen and (max-width: 1400px){
	h3{
		font-size: 1.6em;
	}
}

@media screen and (max-width: 1000px){
	h3{
		text-align: center;
	}
}

h4{
	margin: 0px;
	margin-top: 40px;
	font-size: 1.4em;
	margin-bottom: -20px;
}

p{
	text-align: right;
	margin: 0px;
	margin-top: 40px;
	font-size: 1.4em;
	line-height: 1.4em;
}

@media screen and (max-width: 1000px){
	p{
		text-align: center;
		margin: 0px;
		margin-top: 40px;
		font-size: 1.2em;
		line-height: 1.2em;
	}
}

/* UNDERCONSTRCUTION */

.underconstruction .hero{
	width: 100vw;
	height: 100vh;
	position: relative;
	display: flex;
	flex-direction: row;
}

@media screen and (max-width: 1000px){
	.underconstruction .hero{
		flex-direction: column-reverse;
		min-height: unset;
	}
}

.underconstruction .hero .column{
	width: 50%;
	height: 100%;
}

@media screen and (max-width: 1000px){
	.underconstruction .hero .column{
		width: 100%;
		height: unset;
	}
}

.underconstruction .hero .column:nth-of-type(1){
	background: var(--blue);
	display: flex;
}

@media screen and (max-width: 1000px){
	.underconstruction .hero .column:nth-of-type(1){
		padding: 80px 0px;
		display: block;
	}
}

.underconstruction .hero .column:nth-of-type(1) .wrapper{
	margin: auto var(--page-lr-margin) auto auto;
	width: calc( 100% - ( 2 * var(--page-lr-margin) ) );
	max-width: calc( ( var(--page-max-width) - var(--page-lr-margin) ) / 2 );
}

@media screen and (max-width: 1000px){
	.underconstruction .hero .column:nth-of-type(1) .wrapper{
		margin: auto;
		width: calc( 100% - ( 2 * var(--page-lr-margin) ) );
		max-width: var(--page-max-width);
	}
}

.underconstruction .hero .column:nth-of-type(1) .wrapper img{
	width: 100%;
	max-width: 350px;
	margin: auto 0px 40px auto;
	display: table;
}

@media screen and (max-width: 1000px){
	.underconstruction .hero .column:nth-of-type(1) .wrapper img{
		width: 100%;
		max-width: 350px;
		margin: 0px auto 40px auto;
		display: table;
	}
}
					
.underconstruction .hero .column:nth-of-type(1) .wrapper .contactTable{
	width: 100%;
	margin-top: 20px;
}

@media screen and (max-width: 1000px){
	.underconstruction .hero .column:nth-of-type(1) .wrapper .contactTable{
		gap: var(--page-lr-margin);
	}
}

.underconstruction .hero .column:nth-of-type(1) .wrapper .contactTable tr td{
	width: 50%;
	text-align: right;
	padding: 4px 0px;
}

@media screen and (max-width: 1000px){
	.underconstruction .hero .column:nth-of-type(1) .wrapper .contactTable tr td{
		width: 50%;
		text-align: right;
		padding: 4px 20px 4px 0px;
	}
	.underconstruction .hero .column:nth-of-type(1) .wrapper .contactTable tr td:nth-of-type(2){
		text-align: left;
		padding: 4px 0px 4px 20px;
	}
}

.underconstruction .hero .column:nth-of-type(1) .wrapper button{
	margin-top: 40px;
}

.underconstruction .hero .column:nth-of-type(2){
	background: url("/links/underconstruction/hero.jpg");
	background-size: cover;
	background-position: center;
}

@media screen and (max-width: 1000px){
	.underconstruction .hero .column:nth-of-type(2){
		height: 600px;
		margin: 0px;
	}
}

.underconstruction .impressum{
	padding: 0px 0px 80px 0px;
	position: relative;
}

.underconstruction .impressum *{
	color: var(--blue);
}

.underconstruction .impressum .transition{
	height: 120px;
	margin-top: calc( 0px - 110px );
	width: 100%;
	background: white;
	margin-bottom: 80px;
	clip-path: polygon( 100% 0%, 100% 100%, 0% 100%, 0% calc( 100% - 10px ) );
}

@media screen and (max-width: 1200px){
	.underconstruction .impressum .transition{
		height: 80px;
		margin-top: calc( 0px - 70px );
		width: 100%;
		background: white;
		margin-bottom: 80px;
		clip-path: polygon( 100% 0%, 100% 100%, 0% 100%, 0% calc( 100% - 10px ) );
	}
}

@media screen and (max-width: 600px){
	.underconstruction .impressum .transition{
		height: 40px;
		margin-top: calc( 0px - 30px );
		width: 100%;
		background: white;
		margin-bottom: 80px;
		clip-path: polygon( 100% 0%, 100% 100%, 0% 100%, 0% calc( 100% - 10px ) );
	}
}

.underconstruction .impressum h2{
	text-align: center;
	margin-bottom: 40px;
}

.underconstruction .impressum h3{
	text-align: unset;
}

.underconstruction .impressum p{
	text-align: unset;
	font-size: 1.2em;
}

.underconstruction .impressum .area{
	min-height: 300px;
}







/* DELETE WHE IS DONE */

.placeholder{
	color: #FF2063 !important;
}