@charset "UTF-8";
/* CSS Document */

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	background: #131415;
	color: #D4D4D4;
	height: 100%;
	font-family: 'Montserrat', Helvetica, Arial, sans-serif;
	font-size: 100%;
	line-height: 23px;
	font-weight: lighter;
}

.content {
	max-width: 1800px;
	margin: auto;
	padding: 0px 30px;
}


/* ----------------
------ Navigation -----
-----------------*/

.navbar {
	position: fixed;
	z-index: 5;
	width: 100%;
	padding: 25px 0;
	transition: all 0.4s ease;
}

.navbar.sticky {
	padding: 10px 0;
	background: rgba(19,20,21,0.95);
}

.navbar.sticky a{
	color: #D4D4D4;
}
.navbar .content {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.navbar .nav-links {
	display: inline-flex;
}

.navbar .logo {
	margin-left: 10px;
}

.nav-links li {
	list-style: none;
}

.nav-links li a {
	color: #D4D4D4;
	font-size: 18px;
	font-weight: 300;
	text-transform: uppercase;
	margin-left: 25px;
	text-decoration: none;
	transition: all 0.4s ease;
}

.nav-links li a:hover {
	color: #fff;
}

.nav-links li a:active {
	color: #505050;
}

.icon {
	font-size: 20px;
	cursor: pointer;
	display: none;
}

.icon.cancel-btn {
	position: absolute;
	right: 30px;
	top: 25px;

}

@media (max-width: 868px) {
	
	body.disabledScroll {
		oberflow: hidden;
	}
	
	.navbar .nav-links {
		position: fixed;
		top: 0;
		left: -100%;
		height: 100vh;
		width: 100%;
		background: #131415;
		display: block;
		padding: 40px 0;
		text-align: center;	
		transition: all 0.4s ease;
	}
	
	.navbar .nav-links.active{
		left: 0%;
	}

	
	.navbar .nav-links li{
		margin-top: 45px;
	}
	
	.navbar .nav-links li a {
		font-size: 23px;
		color: #D4D4D4;
	}
	
	.icon {
		display: block;
		color: #D4D4D4;
	}
	
	.icon.cancel-btn {
		color: #D4D4D4;
	}
	
	.icon.hide {
		display: none;
	}
}


/* ----------------
------ Intro -----
-----------------*/



#intro {
	width: 100%;
	height: 100vh;
	background: url("../img/intro-pic-desk.jpg") no-repeat;
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	animation-name: boat;
	animation-duration: 5s;
	animation-iteration-count: 1;
	animation-fill-mode: forwards;
	}

.intro-logo {
	display: flex;
	z-index: 2;
	justify-content: center;
	align-items: center;
	height: 100vh;
}

.intro-logo img {
	opacity: 0.8;
	filter: contrast(10px);
	 
}

@media (max-width: 868px) {
	.intro-logo img {
		width: 300px;
	}
}




	
	@keyframes boat {
	  0% {right: 0px;}
	  25% {right: 0;}
	  50% {right: 200px;}
	  75% {right: 100px;}  
	  100%  {right: 1000px;}
	}

/* ----------------
------ Hauptbereich -----
-----------------*/


.wrapper {
	position: relative;
	max-width: 1800px;
	margin: auto;
}



h1 {
	font-family: 'Montserrat', Helvetica, sans-serif;
	line-height: 3.5rem;
	color: #D4D4D4;
	text-transform: uppercase;
	letter-spacing: 3px;
	font-weight: 400;
	text-align: center;
	font-size: 4rem;
	margin-top: 150px;
	margin-bottom: 50px;
}

h2 {
	font-family: 'Montserrat', Helvetica, sans-serif;
	line-height: 3.8rem;
	color: #D4D4D4;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-weight: 400;
	text-align: center;
	font-size: 3rem;
	margin-top: 150px;
	margin-bottom: 10px;	
}

h3 {
	font-family: 'Montserrat', Helvetica, sans-serif;
	line-height: 3rem;
	color: #D4D4D4;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-weight: 400;
	text-align: center;
	font-size: 2rem;
	margin-top: 120px;
}

h4 {
	font-family: 'Montserrat', Helvetica, sans-serif;;
	margin-bottom: 30px;
	font-size: 1.15em;
	font-weight: 200;
	
}

p {
	text-align: center;
	font-size: 1rem;
	line-height: 1.5rem;
	/* padding: 0 50px; */
}

a {
	text-decoration: none;
}

/* ----------------------
--------- ABOUT ---------
------------------------*/

/* 
.column {
	float: left;
	width: 50%;
	padding: 0 30px;
	text-align: left;
}

.column h3 {
	text-align: left;
	font-size: 2rem;
	margin-top: 100px;
	margin-bottom: 10px;
}

.column p {
	text-align: left;
	padding: 0;
	max-width: 600px;
}

.column img {
	width: 100%;
	border-radius: 50%;
	max-width: 550px;
} */

.about {
	display: flex;
	align-items: center;
}

.column-pic img {
	width: 70%;
	border-radius: 50%;
}

.column-text {
	text-align: left;
	margin-right: 100px;
	max-width: 50%;
}

.column-text h3, .column-text p {
	text-align: left;
}

/* 
.row:after {
	content: "";
	display: table;
	clear: both;
} */
/* 
@media (max-width: 1350px) {

	.column img {
		width: 120%;
	}
} */

@media (max-width: 1000px) {
	.about {
		flex-direction: column;

	}
	.column-text {
		max-width: 100%;
		text-align: center;
		margin: 0 50px;
	}

	.column-text h3, .column-text p {
		text-align: center;
	}

	.column-text h3 {
		margin-top: 60px;
	}

	.column-pic {
		margin-top: 40px;
	}

}



/* ----------------------
------- PORTFOLIO -------
------------------------*/

#portfolio {
	text-align: center;
}

.portfolio-raster {
	display: inline-flex;
	transition: transform 0.4s;
	margin: 35px;
}

.portfolio-raster:hover {
	  -ms-transform: scale(1); /* IE 9 */
	  -webkit-transform: scale(1); /* Safari 3-8 */
	  transform: scale(1.2);
}

.portfolio-raster img {
	width: 80%;
}

.portfolio-section img {
	width: 100%;
	padding: 20px 50px 0px 50px;
}

article{
	text-align: center;
}

.btn-portfolio {
	display: inline-block;
	color: #131415;
	font-weight: 400;
	margin-top: 30px;
	margin-bottom: 130px;
	background-color: #d4d4d4;

	/* border: solid 1px #d4d4d4; */
	border-radius: 10px;
	padding: 10px 40px;
	transition-duration: 0.3s;
}

.btn-portfolio:hover {
	background-color: #202020;
	color: #d4d4d4;
}

.btn-portfolio a {
	text-decoration: none;
	
}




.column-port {
	float: left;
	width: 50%;
}

.column-port img {
	width: 100%;

}

.row:after {
	content: "";
	display: table;
	clear: both;
}

@media (max-width: 868px) {
	.column-port {
		width: 100%;
	}
}



/* ----------------------
------- Kontakt ---------
------------------------*/

#contact {
	text-align: center;
}

.some-icon {
	display: inline-flex;
	font-size: 60px;
	margin: 60px 60px 20px 60px;
}

.some-icon a  {
	color: #d4d4d4;
	transition: 0.4s ease;
}

.some-icon a:hover {
	 color: #505050;

}



/* ----------------
------ FOOTER -----
-----------------*/

footer{
	width: 100%;
	height: auto;
	background-color: #131415;
	font-family: 'Lato', Helvetica, Arial, sans-serif;
	color: #777;
	font-size: 0.75rem;
	line-height: 0.938rem;
	padding: 20px 0px;
	text-align: center;
	font-style: normal;
	
	

}



/*--------------------
Druckvorlage
----------------------*/

@media print{

	body{
		background-color: white;
		color: black;
		font-family: 'Lato', Helvetica, sans-serif;
		font-size: 10pt;
	}
	
	.wrapper{
		width: 100%;
	}

	nav{
		display: none;
	}

	
	a[href]:after{content: "[address:"attr(href)"]";}
