@import url("reset.css");

/* teko-regular - latin */
@font-face {
	font-display: swap;
	/* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: 'Teko';
	font-style: normal;
	font-weight: 400;
	src: url('../fonts/teko-v20-latin-regular.woff2') format('woff2');
	/* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* teko-700 - latin */
@font-face {
	font-display: swap;
	/* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: 'Teko';
	font-style: normal;
	font-weight: 700;
	src: url('../fonts/teko-v20-latin-700.woff2') format('woff2');
	/* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* roboto-regular - latin */
@font-face {
	font-display: swap;
	/* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: 'Roboto';
	font-style: normal;
	font-weight: 400;
	src: url('../fonts/roboto-v47-latin-regular.woff2') format('woff2');
	/* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* roboto-italic - latin */
@font-face {
	font-display: swap;
	/* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: 'Roboto';
	font-style: italic;
	font-weight: 400;
	src: url('../fonts/roboto-v47-latin-italic.woff2') format('woff2');
	/* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* roboto-700 - latin */
@font-face {
	font-display: swap;
	/* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: 'Roboto';
	font-style: normal;
	font-weight: 700;
	src: url('../fonts/roboto-v47-latin-700.woff2') format('woff2');
	/* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* roboto-700italic - latin */
@font-face {
	font-display: swap;
	/* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: 'Roboto';
	font-style: italic;
	font-weight: 700;
	src: url('../fonts/roboto-v47-latin-700italic.woff2') format('woff2');
	/* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Roboto';
	font-size: 16px;
	line-height: 26px;
	color: #2e2e2e
}

* {
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

header {
	background: url(../images/header.jpg);
	background-size: cover;
	background-attachment: fixed;
	background-position: center;
	padding: 300px 10%;
	text-align: center;
}

h1 {
	color: #fff;
	font-size: 80px;
	line-height: 90px;
	padding-bottom: 20px;
	font-family: 'Teko';
	text-transform: uppercase;
}

h2 {
	font-size: 30px;
	line-height: 40px;
	font-family: 'Teko';
	color: #c32d2d;
	text-transform: uppercase;
}

h3 {
	font-size: 40px;
	line-height: 50px;
	padding-bottom: 20px;
	font-family: 'Teko';
	text-transform: uppercase;
}

h4 {
	font-size: 24px;
	line-height: 34px;
	font-family: 'Teko';
	text-transform: uppercase;
}

strong {
	font-weight: 700;
}

header p {
	color: #c32d2d;
	font-size: 30px;
	line-height: 40px;
	font-style: italic;
}

header .button {
	background: #f0f0f0;
	color: #000;
	font-style: italic;
	font-size: 20px;
	padding: 10px;
	text-decoration: none;
	display: inline-block;
	margin-top: 30px;
}

nav {
	display: flex;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: #000;
	padding: 5px 10%;
	align-items: center;
	z-index: 2;
}

nav ul {
	display: flex;
	width: 50%;
	text-align: center;
	width: 100%;
	justify-content: center;
}

nav ul li a {
	text-decoration: none;
	color: #ccc;
	margin: 0px 15px;
}

nav .kontaktieren {
	display: flex;
}

.logo {
	width: 200px;
}

nav .kontaktieren img {
	padding: 10px;
}

#vorteile {
	padding: 0px 30% 0px 10%;
	background: #eee;
	display: flex;
	align-items: center;
}

#vorteile .box {
	background: #fff;
	padding: 0px 30% 0px 10%;
	height: 650px;
	display: table;
}

.center {
	display: table-cell;
	vertical-align: middle;
}

#vorteile .image {
	position: absolute;
	right: 10%;
	width: 30%;
	-webkit-filter: grayscale(1);
	/* Safari 6.0 - 9.0 */
	filter: grayscale(1);
}



#direktfahrten {
	background: #111111;
	display: flex;
	padding: 100px 10%;
	color: #bfbfbf;
	align-items: center;
	column-gap: 50px;
}

#direktfahrten .col {
	width: 50%;
}

#direktfahrten .col img, #galerie .bilder img {
	width: 100%;
	-webkit-filter: grayscale(1);
	/* Safari 6.0 - 9.0 */
	filter: grayscale(1);
}

#direktfahrten .col img:hover, #ueber-uns .image:hover, #galerie .bilder img:hover {
	-webkit-filter: grayscale(0);
	/* Safari 6.0 - 9.0 */
	filter: grayscale(0);
	transition: 0.5s;
}


.dropdown {
	display: none;
}

#parallax {
	padding: 200px 10%;
	background: url(../images/transportwagen-umzug.jpg);
	background-attachment: fixed;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	text-align: center;
}

#parallax .claim {
	color: #fff;
	font-size: 70px;
	line-height: 80px;
	padding-bottom: 20px;
	font-family: 'Teko';
	text-transform: uppercase;
}

#parallax .small {
	font-size: 50px;
	line-height: 60px;
}

#parallax .button,
#kontakt .button {
	display: inline-block;
	padding: 10px;
	text-decoration: none;
	color: #fff;
	background: #c32d2d;
	font-style: italic;
	font-size: 20px;
}

#impressum a:hover{
	opacity: 0.6;
	transition: 0.3s;
}

#parallax .button:hover,
#kontakt .button:hover, .button:hover{
	background: #000;
	color: #fff;
	transition: 0.3s;
}

#kontakt {
	padding: 100px 10%;
	background: #ccc;
	display: flex;
	align-items: center;
	column-gap: 100px;
}

#kontakt .col {
	width: 50%;
}

#kontakt a,
#impressum a {
	color: #c32d2d;
	text-decoration: none;
}

.dsa-secure-plugin {
	width: 50% !important;
}

#impressum {
	padding: 100px 10%;
	background: #0f0f0f;
	color: #ccc;
}

#impressum .flex {
	display: flex;
	column-gap: 50px;
}

#impressum .flex .col {
	width: 50%;
}

/*---------------------------------------
MEDIA Queries | Tablet | Phone
---------------------------------------*/

@media screen and (max-width: 1280px) {
	
}

@media screen and (max-width: 1000px) {
	nav ul {
		display: none;
	}

	nav .kontaktieren {
		display: none;
	}

	.logo {
		width: 150px;
	}

	h1 {
		font-size: 50px;
		line-height: 60px;
	}

	header p {
		font-size: 24px;
		line-height: 34px;
	}

	header {
		padding: 200px 10%;
	}

	#parallax {
		padding: 100px 10%;
	}
	
	#galerie .bilder img{
		height: 200px;
	}

	#parallax .claim {
		font-size: 50px;
		line-height: 60px;
	}

	#parallax .small {
		font-size: 30px;
		line-height: 40px;
	}

	#parallax .button,
	#kontakt .button {
		font-size: 16px;
	}

	#vorteile .box {
		background: #fff;
		padding: 100px 10%;
		height: auto;
	}

	#vorteile {
		padding: 0px 10% 0px 10%;
		display: block;
	}

	#vorteile .image {
		height: 300px;
		width: 100%;
		position: inherit;
		margin-bottom: 100px;
		object-fit: cover;
	}

	#direktfahrten {
		display: block;
	}

	#direktfahrten .col {
		width: 100%;
	}

	#direktfahrten .col img {
		width: 100%;
		max-width: 500px;
		margin-bottom: 50px;
		-webkit-filter: grayscale(1);
		/* Safari 6.0 - 9.0 */
		filter: grayscale(1);
	}

	#kontakt {
		display: block;
	}

	.dsa-secure-plugin {
		width: 100% !important;
		margin-bottom: 50px;
	}

	#kontakt .col {
		width: 100%;
	}

	#impressum .flex {
		display: block;
	}

	#impressum .flex .col {
		width: 100%;
		margin-bottom: 30px;
	}

	.dropbtn {
		background-color: #000;
		color: white;
		padding: 0px;
		font-size: 40px;
		border: none;
		cursor: pointer;
	}

	.dropdown {
		position: fixed;
		top: 5px;
		right: 5%;
		display: inline-block;
		z-index: 99999;
		margin-left: auto;
		margin-right: auto;
	}

	.dropdown-content {
		display: none;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100vh;
		text-align: center;
		padding-top: 15vh;
		background-color: rgba(17, 17, 17, 0.94);
		min-width: 160px;
		overflow: auto;
		box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
		z-index: 1;
	}
}
@media screen and (max-width: 750px){
	
	header, #parallax{
		background-attachment: inherit;
	}
}