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

:root{
    --maincolor: #fc8158;
	--secondcolor: #1d2656;
	--dunkelgrau: #2e2e2e;
	--grau: #bab9c1;
}

html{
    overflow-x: hidden!important;
}

body{
	font-size: 1rem;
	line-height: 1.6rem;
	font-weight: 300;
}
.body_leistung{
	background-color: var(--dunkelgrau);
}

.jumper{
    padding-top: 50px;
	margin-top: -50px;
}

/*------------------------------------------- Schriften */

h1{
	font-size: 3.4rem;
	line-height: 1.2;
	font-family: 'Oswald';
	font-weight: 300;
	color: #fff;
}

#startheadline{
	position: absolute;
	left: 100px;
	font-size: 4.5rem;
	line-height: 1.2;
	font-family: 'Oswald';
	font-weight: 300;
	color: #fff;
	bottom: 100px;
	max-width: 300px;
}

h2{
	font-size: 1.8rem;
	line-height: 1.2;
	font-family: 'Oswald';
	margin-bottom: 15px;
	font-weight: 300;
	color: var(--dunkelgrau);
}

h5{
	font-family: 'Oswald';
	line-height: 1.2;
	font-weight: 300;
	color: var(--dunkelgrau);
	text-transform: uppercase;
  	font-size: 4rem;
}

h3{
	font-family: 'Oswald';
	font-size: 1.4rem;
	text-decoration: underline;
	margin-bottom: 10px;
	font-weight: 300;
}

p{
    font-size: 1.2rem;
    font-family: 'Roboto';
    font-weight: 300;
    color: var(--dunkelgrau);
    line-height: 1.8rem;
}



strong{
	color: var(--maincolor);
}

/*------------------------------------------- Button */

.iconbutton{
	text-decoration: 1px underline;
	color: var(--dunkelgrau);
	transition: all 0.2s;
	font-family: 'Oswald';
  	text-transform: uppercase;
	color: #fff;
}

.buttonArea p a{
	text-decoration: 1px underline;
	color: var(--dunkelgrau);
	transition: all 0.2s;
	font-family: 'Oswald';
  	text-transform: uppercase;
}

.buttonarea_hell p a{
	color: #fff;
}

.buttonArea p a:hover, button:hover{
	color: var(--maincolor);
}

button{
	-webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
	text-decoration: 1px underline;
	color: var(--dunkelgrau);
	transition: all 0.2s;
	font-family: 'Oswald';
  	text-transform: uppercase;
	display: inline-block;
	border: 0px;
	margin-top: 40px;
	font-size: 1.2rem;
    color: var(--dunkelgrau);
}

button:hover{
	color: var(--maincolor);
}

/*------------------------------------------- Header */

header{
	width: 100%;
	/*height: 100vh;*/
}

/*-------- Eingeklapptes Menu */

.menu_circle{
	width: 100px;
	height: 100px;
	border-radius: 0px 0px 20px 0px;
	background-color: var(--maincolor);
	position: fixed;
	z-index: 10000;
	transition: all 1s;
	cursor: pointer;
}

#navOpener {  
	width: 26px;
	height: 18px;
	position: relative;
	left: 50%;
	top: 50%;
	cursor: pointer;
	transform: translate(-50%, -50%);
}

.line {
	width: 100%;
	height: 2px;
	background-color: #fff;
	left: 50%;
	transform: translateX(-50%);
	position: absolute;
	transition: all 0.5s;
}

#navOpener .line:nth-child(1) {
	top: 0px;
}

#navOpener .line:nth-child(2) {
	top: 50%;
	transform: translate(-50%, -50%);
}

#navOpener .line:nth-child(3) {
	bottom: 0px;
}

#navOpener.active .line:nth-child(1) {
	top: 50%;
	transform: translate(-50%, -50%) rotate(45deg);
}

#navOpener.active .line:nth-child(2) {
	width: 0px;
}

#navOpener.active .line:nth-child(3) {
	bottom: auto;
	top: 50%;
	transform: translate(-50%, -50%) rotate(-45deg);
}

.menu_circle:hover, .menu_circle.active{
	transform: translate(15px, 15px) scale(1.3);
}

/*-------- Ausgeklapptes Menu */

.header_wrap{
	display: none;
	position: fixed;
	font-size: 2rem;
	width: 100%;
	height: 100vh;
	background-color: var(--maincolor);
	z-index: 1000;
	font-family: 'Oswald';
}

.header_wrap ul{
	list-style: none;
	position: absolute;
	top: 150px;
	left: 100px;
	width: calc(100% - 100px);
}

.header_wrap ul li ul{
	position: relative;
	left: 0;
	top: 0;
}

.header_wrap ul li ul{
	font-size: 0.75em;
}

.header_wrap ul li ul li{
	display: inline-block;
	margin-right: 20px;
	margin-top: 20px;
	font-family: 'Roboto';
}

.header_wrap ul li{
	margin-top: 40px;
}

.header_wrap ul li:first-child{
	margin-top: 0px;
}

.header_wrap ul li a{
	text-decoration: none;
	text-transform: none;
	color: #fff;
}

.header_wrap ul li a:hover{
	color: var(--secondcolor);
}

/*------------------------------------------- Opener */

.opener{
	display: flex;
	width: 100%;
	height: 100vh;
	position: relative;
}

.opener_unterseite{
	width: 100%;
	height: 40vh;
	background-position: top center;
	background-size: cover;
	background-repeat: no-repeat;
}

.stripe{
	padding: 15px 100px;
	background-color: var(--maincolor);
	box-shadow: 0px 0px 40px rgba(0,0,0,0.2);
	position: relative;
	z-index: 100;
}

video{
	position: relative;
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: relative;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
}

.logo_box{
	width: 10%;
  	background-color: var(--maincolor);
  	position: absolute;
  	left: 50%;
  	height: 100%;
  	transform: translateX(-50%);
	box-shadow: 0px 0px 20px rgba(0,0,0,0.2);
}

.logo_box img{
	position: relative;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 175%;
	height: auto;
}

.logo_box_unterseite{
	position: relative;
	top: 0;
	box-shadow: 0px 0px 0px rgba(0,0,0,0);
}

.logo_box_unterseite img{
	width: 70%;
	height: auto;
}

/*------------------------------------------- Dreier Content Bild Box */
.dreier_content_bild_box{
	width: 100%;
	display: flex;
	margin: 50px 0px;
}

.right_box{
	width: 50%;
	position: relative;
}

.left_box{
	width: 30%;
	position: relative;
}

.left_box article{
	position: absolute;
  	bottom: 0;
	max-width: 300px;
	left: 100px;
}

.middle_box{
	width: 20%;
}

.middle_box div{
	background-position: center right -70px;
	background-size: cover;
	background-repeat: no-repeat;
	height: 450px;
	position: relative;
	top: 50%;
	transform: translateY(-50%);
}

.right_box article{
	background-color: var(--maincolor);
	padding: 50px;
	width: 80%;
	position: relative;
	left: 50%;
	transform: translateX(-50%);
}

.right_box article a:hover{
	color: #fff;
}

/*------------------------------------------- Volles Bild mit Inhalt drauf */
.vollflaechiges_bild{
	background-position: right;
	background-size: cover;
	background-repeat: no-repeat;
	width: 100%;
	padding: 50px 0px 50px 100px;
}

.quadratbox{
	transition: all 0.2s;
	width: 300px;
	height: 300px;
	text-align: center;
	padding: 30px;
}

.quadratbox:hover{
	transform: scale(1.05);
    box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.1);
}

.quadratbox_outline{
	border: 5px solid var(--secondcolor);
	background-color: #fff;
	margin-bottom: 50px;	
	color: var(--dunkelgrau);
}

.quadratbox_vollflaechig{
	background-color: var(--maincolor);
	padding: 30px;
	color: var(--dunkelgrau);
}

.quadratbox article{
	position: relative;
	top: 50%;
	transform: translateY(-50%);
}

.quadratbox article p{
	margin-bottom: 25px;
}

.quadratbox_vollflaechig article .buttonArea p a:hover{
	color: #fff;
}

.quadratbox_outline article .buttonArea p a:hover{
	color: var(--maincolor);
}

.quadratbox_outline article .buttonArea p a{
	color: var(--secondcolor);
}

/*------------------------------------------- Icon Streifen */

.icon_stripe{
	background-color: var(--dunkelgrau);
	width: 100%;
	display: flex;
	padding: 50px 100px;
	color: #fff;
}

.icon_stripe article{
	width: 50%;
}

.icon_stripe article h2{
	color: var(--maincolor);
}

.icon_stripe article p{
	color: #fff;
}

.icons_row{
	display: flex;
	width: 50%;
	justify-content: center;
}

.icon_box{
	margin: 0px 20px;
	width: 100px;
	text-align: center;
}

.icon{
	position: relative;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 60px;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	margin-bottom: 10px;
}

/*------------------------------------------- Slider */
.slider_text{
    position: absolute;
    z-index: 10;
    bottom: 10px;
    left: 105px;
	color: #fff;
	width: 600px;
}

.slider_text h2{
	color: var(--maincolor);
}

.slider_text p{
	margin-bottom: 25px;
}

.slide, .slide img
{
    height: 100%;
}

.slide img 
{
    height: 800px;
	margin-bottom: 50px;
}

.slick-initialized .slick-slide{
    display: block;
    position: relative !important;
}

/*.filter{
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    top: 0;
    left: 0;
    position: absolute;
}*/

/*------------------------------------------- Bildtrenner */
.bildtrenner{
	width: 100%;
    height: 250px;
}

/*------------------------------------------- Bild Text Box */
.text_bild_box{
	display: flex;
	width: 100%;
}

.text_box{
	width: 50%;
	color: var(--dunkelgrau);
	padding: 20px 50px;
}

.text_box article{
	position: relative;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
}

.text_box article p{
	margin-bottom: 25px;
}

.bild_box{
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	width: 50%;
	height: 500px;
}

.bild_box_mockup{
	height: 360px;
}

.bild_box_farbig{
	background-color: var(--secondcolor);
	width: 50%;
	height: 500px;
}

.mockup{
	width: 280px;
	height: auto;
	position: relative;
	top: 50%;
	left: 60%;
	transform: translate(-60% , -50%);
}

.text_bild_box_responsive{
	display: none;
}

/*------------------------------------------- Text Box */

.text_block{
	width: 100%;
	text-align: center;
	padding: 25px;
	color: #fff;
	box-shadow: 0px 0px 40px rgba(0,0,0,0.2);
}

.text_block_farbig{
	background-color: var(--maincolor);
}

/*------------------------------------------- Unterseite Einzelne Leistungen  */

.flexbox_zwei_bloecke{
	display: flex;
	width: 100%;
	gap: 100px;
}

.linke_spalte{
	background-color: var(--maincolor);
	width: 40%;
	padding: 50px 50px 50px 100px;
	color: #fff;
}

.linke_spalte article{
	margin: 30px 0px;
}

.flexbox_linker_spaltentitel{
	font-family: 'Oswald';
	font-size: 1.4rem;
	text-decoration: underline;
	margin-bottom: 10px;
	font-weight: 300;
	cursor: pointer;
	text-transform: uppercase;
	text-decoration: none;
  	color: #fff;
}

.flexbox_linker_spaltentitel:hover{
	color: var(--dunkelgrau);
}

.rechte_spalte{
	width: 60%;
	padding: 30px 100px 30px 0px;
	color: #fff;
}

.rechte_spalte article h5{
	color:  var(--maincolor);
	position: relative;
	bottom: 0px;
}

.versteckter_text{
	margin: 30px 0px;
	display: none;
	color: #fff;
}

.versteckter_text h3{
	color: var(--maincolor);
}

.versteckter_text p{
	color: #fff;
}
/*-------------------------------------------Unterseite alle Leistungen übersicht */
.wrapper{
	margin: 50px 100px;
}

.bild_text_box_verlinkt{
	text-decoration: none;
}

.bild_text_box_verlinkt:hover{
	transform: scale(1.06);
	margin: 16px 0px;
	box-shadow: 0px 0px 6px rgba(0,0,0,0.2);
}

/*------------------------------------------- Blog Seite */

.flexbox{
	display: flex;
	gap: 50px;
	flex-wrap: wrap;
}

.flexbox_item{
	flex: auto;
	border: 3px solid var(--secondcolor);
	text-decoration: none;
}

.flexbox_item_verlinkt:hover{
	transform: scale(1.06);
	margin: 16px 0px;
	box-shadow: 0px 0px 6px rgba(0,0,0,0.2);
	border: 3px solid var(--maincolor);
}

.flexbox_item article{
	padding: 30px;
	width: 350px;
	text-align: center;
}

.flexbox_item article h2{
	color: var(--maincolor);
}

.flexbox_bild{
	padding-bottom: 70%;
	width: 100%;
	background-size: cover;
	background-position: center;
}

/*------------------------------------------- Kontakt */
.kontakt{
	display: flex;
	width: 100%;
}

.kontakt_box_eins{
	width: calc(75%);
}

.kontakt_box_zwei {
    margin-right: 50px;
    width: calc(25%);
}

.konatkt_item{
	margin-bottom: 30px;
}

input[type=text], [type=email] , select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    padding: 12px 20px;
    margin: 0px 0 8px;
    display: inline-block;
    border: 1px solid #000;
    border-radius: 4px;
    background-color: #fff;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 1.2rem;
}

select{
    background-image: url(../img/arrow.svg);
    background-position: center right 20px;
    background-size: 20px;
    background-repeat: no-repeat;
    cursor: pointer;
}

textarea{
    width: 100%;
    height: 200px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 12px 20px;
    border: 1px solid #000;
    border-radius: 4px;
    resize: none;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 400;
    font-size: 1.2rem;
}

label{
	font-family: 'Oswald';
	color: var(--maincolor);
	font-size: 1.2rem;
}

#honeypot
{
    position: fixed;
    top: 200%;
    right: 200%;
}

input[type=checkbox]{
    margin-top: 30px;
}
/*------------------------------------------- Footer */

footer{
	text-align: center;
	position: relative;
	padding: 15px;
	margin-top: 130px;
}

.footer_unterseite a{
	color: #fff;
}

.footer_unterseite::before, .footer_unterseite::after{
	background-color: #fff;
}

footer::before{
	content: "";
	position: absolute;
	height: 90px;
	width: 2px;
	left: 50%;
	transform: translateX(-50%);
	background-color: var(--dunkelgrau);
	top: -90px;
	z-index: 100;
}

footer::after {
	content: "";
	position: absolute;
	height: 90px;
	width: 2px;
	left: 50%;
	transform: translateX(-50%);
	background-color: var(--dunkelgrau);
	bottom: -90px;
	z-index: 100;
  }

footer a{
	display: block;
}

footer a{
	display: block;
}

.buttonfooter{
	margin-top: 20px;
	text-decoration: 1px underline;
	color: var(--dunkelgrau);
	transition: all 0.2s;
	font-family: 'Oswald';
  	text-transform: uppercase;
}

#copyNote{
	color: var(--maincolor);
	font-size: 1.4rem;
	margin-bottom: 10px;
}

/*-------------------------------------------Cookies */

#cookieNotice
{
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	font-size: 0.85em;
	background-color: rgba(0,0,0,0.5);
	z-index: 500000;
	display: none;
	align-items: center;
	justify-content: center;
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
}

#cookieBox
{
	padding: 34px 40px 40px 40px;
	max-height: calc(100vh - 80px);
	max-width: 420px;
	overflow: auto;
	display: block;
	margin: auto;
	position: relative;
	background-color: #fff;
}

#cookieBoxInner
{
	position: relative;
	z-index: 100;
}

#acceptWrap
{
	text-align: center;
}

#cookieCheckboxes
{
	margin-top: 1em;
	margin-bottom: 1em;
}

#cookieCheckboxes label
{
	position: relative;
	margin-right: 1.6em;
	padding-left: 1.6em;
	cursor: pointer;
	display: block;
	margin-top: 0.2em;
}

#cookieCheckboxes input
{
	position: absolute;
	left: 0;
	top: 48.5%;
	transform: translateY(-50%);
}

#accepted
{
	margin-top: 0.6em;
	cursor: pointer;
}


/*------------------------------------------- Responsive */
@media screen and (max-width: 1400px){
	h5{
		font-size: 3rem;
	}

	p{
		font-size: 1rem;
		line-height: 1.6rem;
	}

	.middle_box div{
		height: 380px;
	}

	.left_box article {
		top: 50%;
		transform: translateY(-50%);
	}

	.middle_box div{
		height: 350px;
	}

	.flexbox_zwei_bloecke {
		gap: 80px;
	}

}

@media screen and (max-width: 1200px){
	.opener {
		height: 80vh;
	}

	.left_box{
		width: 35%;
	}

	.middle_box{
		width: 15%;
	}

	.middle_box div{
		height: 250px;
	}

	.slide img {
		height: 600px;
		margin-bottom: 60px;
	}

}

@media screen and (max-width: 950px){
	p{
		line-height: 1.4rem;
	}

	
	.menu_circle {
		width: 80px;
		height: 80px;
	}

	.wrapper {
		margin: 80px 80px;
	}

	.opener {
		height: 60vh;
	}

	.opener_unterseite {
		height: 25vh;
	}

	.logo_box {
		width: 15%;
	}

	#startheadline{
		left: 80px;
		font-size: 3.5rem;
		bottom: 80px;
		max-width: 250px;
	}

	.dreier_content_bild_box {
		display: block;
	}

	.left_box {
        padding: 0px 80px;
		width: 100%;
    }

	.left_box article{
		position: relative;
		bottom: 0;
		max-width: 100%;
		left: 0;
		top: 0;
		transform: translateY(0);
		text-align: center;
	}

	.middle_box {
		width: 100%;
		padding: 0px 80px;
		margin: 30px 0px;
	}

	.middle_box div {
		background-position: top center;
		height: 500px;
		top: 0;
		transform: translateY(0);
	}

	.right_box {
		width: 100%;
		padding: 0px 80px;
	}

	.right_box article {
		padding: 30px 30px;
		width: 100%;
		left: 0;
		transform: translateX(0);
	}

	.icon_stripe{
		padding: 50px 80px;
	}

	.icon_stripe article{
		width: 30%;
	}
	
	.icons_row{
		width: 70%;
	}
	
	.flexbox_zwei_bloecke {
		gap: 60px;
	}

}

@media screen and (max-width: 800px){
	h1 {
		font-size: 3rem;
	}

	.icon_stripe {
		width: 100%;
		display: block;
		padding: 50px 80px;
	}

	.icon_stripe article {
		width: 100%;
		margin-bottom: 50px;
		text-align: center;
	}

	.icons_row {
		width: 100%;
		display: block;
	}

	.icon_box {
		margin: 0px 0px 40px 0px;
		width: 100px;
		position: relative;
  		left: 50%;
  		transform: translateX(-50%);
	}

	.icon_box:nth-child(4) {
		margin: 0px 0px 0px 0px;
	}

	.text_bild_box_responsive{
		display: block;
	}

	.text_bild_box_ausgeblendet_mobile{
		display: none! important;
	}

	.text_bild_box {
		display: block;
	}

	.text_box {
		width: 100%;
		padding: 40px;
	}

	.bild_box {
		width: 100%;
		height: 300px;
	}

	.bild_box_farbig {
		width: 100%;
	}

	.mockup {
		width: 150px;
		top: 50%;
		left: 50%;
		transform: translate(-50% , -50%);
	}

	.text_box article {
		position: relative;
		top: 0;
		left: 0;
		transform: translate(0, 0);
	}

	.slide img {
        height: 470px;
        margin-bottom: 80px;
    }

	.flexbox_zwei_bloecke {
		display: block;
	}

	.linke_spalte {
		padding: 50px 50px 50px 80px;
		width: 100%;
	}

	.rechte_spalte {
		width: 100%;
		padding: 50px 80px;
	}
}


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

	.menu_circle {
		width: 60px;
		height: 60px;
	}

	.wrapper {
		margin: 60px 60px;
	}

	.opener {
		height: 50vh;
	}

	#startheadline{
		left: 60px;
		font-size: 3rem;
		bottom: 60px;
		max-width: 200px;
	}

	.left_box {
        padding: 0px 60px;
    }

	.middle_box div {
		height: 400px;
	}

	.middle_box {
		padding: 0px 60px;
	}

	.right_box {
		padding: 0px 60px;
	}

	.icon_stripe {
		padding: 50px 60px;
	}

	.linke_spalte {
		padding: 50px 50px 50px 60px;
	}

	.rechte_spalte {
		padding: 50px 60px;
	}


}

@media screen and (max-width: 600px){
	.menu_circle {
		width: 50px;
		height: 50px;
		border-radius: 0px 0px 10px 0px;
	}

	.wrapper {
		margin: 50px 50px;
	}

	.opener {
		height: 40vh;
	}

	#startheadline{
		left: 50px;
		font-size: 2rem;
		bottom: 50px;
		max-width: 150px;
	}

	.left_box {
        padding: 0px 50px;
    }

	.middle_box {
		padding: 0px 50px;
	}

	.middle_box div {
		height: 300px;
	}
	
	.right_box {
		padding: 0px 50px;
	}

	.vollflaechiges_bild {
		padding: 50px 0px 50px 0px;
	}

	.quadratbox{
		display: block;
		margin-left: auto;
		margin-right: auto;
	}

	.icon_stripe {
		padding: 50px 50px;
	}

	.slide img {
        height: 350px;
        margin-bottom: 100px;
    }

	.slider_text {
		left: 50px;
	}

	.linke_spalte {
		padding: 50px 50px 50px 50px;
	}

	.rechte_spalte {
		padding: 50px 50px;
	}
}

@media screen and (max-width: 500px){
	.slide img {
        height: 300px;
        margin-bottom: 130px;
    }

	.slider_text {
		max-width: 400px;
	}

}

@media screen and (max-width: 400px){
	h1 {
		font-size: 1.5rem;
	}

	h2 {
		font-size: 1.4rem;
	}

	h5 {
		font-size: 3rem;
		position: relative;
		bottom: auto;
	}

	#startheadline{
		left: 40px;
		font-size: 1.5rem;
		bottom: 20px;
		max-width: 100px;
	}

	.menu_circle {
		width: 40px;
		height: 40px;
	}

	.wrapper {
		margin: 40px 40px;
	}

	.opener {
		height: 30vh;
	}

	.opener_unterseite {
		height: 20vh;
	}

	.left_box {
        padding: 0px 40px;
    }

	.middle_box {
		padding: 0px 40px;
	}

	.middle_box div {
		height: 250px;
	}

	.right_box {
		padding: 0px 40px;
	}

	.icon_stripe {
		padding: 50px 40px;
	}

	.slide img {
		height: 250px;
	}

	.slider_text {
		left: 40px;
		max-width: 320px;
	}

	.flexbox_zwei_bloecke {
		display: block;
	}

	.linke_spalte {
		width: 100%;
		padding: 40px;
	}

	.rechte_spalte {
		width: 100%;
		padding: 40px;
	}

	.kontakt {
		display: block;
	}

	.kontakt_box_zwei {
		margin-right: 0;
		width: 100%;
	}

	.kontakt_box_eins {
		width: 100%;
	}

	label {
		font-size: 1rem;
	}

	.linke_spalte {
		padding: 50px 50px 50px 40px;
	}

	.rechte_spalte {
		padding: 50px 40px;
	}
}