/* Header */

.header::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.02); 
	z-index: 1;
	pointer-events: none;
}

.header::before {
  background: rgba(0, 0, 0, var(--before-opacity, 0.02)); /* Start-Deckkraft */
  transition: background 0.01s ease;
	pointer-events: none;
}


.header {
    width: 100vw;
    height: 95vh;
    background-size: cover !important;
    position: relative;
    background-position: center center !important; 
    overflow: hidden;
   clip-path: ellipse(160% 100% at 50% 0%);
}


.header .inner-bg {
    width: 100vw;
    height: 100%;
    background-size: cover !important;
    position: relative;
    background-position: center center !important; 
    overflow: hidden;

}

.header .inner-bg .content {
    padding-top: 133px;
    color: #FFF;
    height: calc(80vh - 29px);
    width: 62% !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.header .inner-bg .content ul {
	margin: 0;
	padding: 0;
	margin-bottom: 20px;
}

.header .inner-bg .content li {
	list-style: none;
	    display: flex;
    align-items: center;
	gap:10px;
	margin-bottom: 12px;
}
.header .inner-bg .content li svg {
	width: 70px;
	height: auto;
}
.header .inner-bg .content li svg .cls-1 {
	fill: rgba(var(--color-2), 1);
}
.header .inner-bg .content li svg g {
	fill:#fff;
}

.header .inner-bg .content li .li-title {
 display: flex;
    flex-direction: column;
    gap: 0px;
	line-height: 1.5em;
	padding-top:0px;

}
  .header .inner-bg .content li .li-title b {
font-size: 20px;
} 

.header .inner-bg .content p {
	padding-bottom: 45px;
}

.header .inner-bg .content a.button_white {
	background: #fff;
	border-radius: 50px;
	padding:12px 25px;
	text-transform: uppercase;
	color:rgba(var(--color-1), 1);font-weight: bold;
	font-size: 15px;
	transition: background 0.3s;
	width:auto;
	margin-top:15px;
}

.button-arrow-holder {
	margin-top:30px !important;
}

.header .button-arrow-holder {
	position: relative;
	left: 60%;
}



.header.home-mobil {
	display: none !important;
}


@media only screen and (max-width: 767px) {
	
	.header.home-mobil {
	display: block !important;
}
	
	.header {
		height: 50vh;
		margin-top:var(--header-height);
	} 

body.home .header {
	height: 100vh;
}

	
	.header .inner-bg .content {
    padding-top: 133px;
    color: #FFF;
    height: calc(80vh - 29px);
	}
	
	.header .button-arrow-holder svg {
		 position: absolute;
        right: 50px;
        padding-bottom: 0px;
	}
	
	
	.header .inner-bg {
		background-position: right center !important;
	}
	
	
	.header .inner-bg .content {
    width: 85% !important;
		padding-top:110px;
}
	
	
	
	
.header .inner-bg .content li {
	list-style: none;
	    display: flex;
    align-items: center;
	gap:10px;
	margin-bottom: 12px;
	font-size: 12px;
}
.header .inner-bg .content li svg {
	width: 50px;
	height: auto;
}
.header .inner-bg .content li svg .cls-1 {
	fill: rgba(var(--color-2), 1);
}
.header .inner-bg .content li svg g {
	fill:#fff;
}

.header .inner-bg .content li .li-title {
 display: flex;
    flex-direction: column;
    gap: 0px;
	line-height: 1.5em;
	padding-top:10px;

}
  .header .inner-bg .content li .li-title b {
font-size: 15px;
}	
	
	.header .inner-bg .content p {
    padding-bottom: 45px;
		font-size: 15px;
		 width: calc(100vw - var(--main-padding) * 2);
		line-height: 1.5em;
}
	
	.header::before {
    background: rgba(0, 0, 0, 0.5);
		z-index: 2;
	}
	.header .content {
		z-index: 3;
		position: relative;
	}
	
	
	.header .button-arrow-holder {
    position: relative!important;
    left: 0 !important;
	 width: 100% !important;
}
	    .header .button-arrow-holder svg {
        z-index: -1;
			right: 0 !important;
    }
	
	body.home .header::before {
        background: rgba(0, 0, 0, 0.75);
        z-index: 2;
    }
	
	body.home .header.home-mobil {
    width: 100vw;
    height: 95vh;
    overflow: hidden;
   clip-path: none !important;
		background: #000;
}
	
}


