/* FONTS */
@font-face {
	font-family: 'Oswald';
	src: url('../fonts/Oswald-Medium.eot');
	src: url('../fonts/Oswald-Medium.eot?#iefix') format('embedded-opentype'),url('../fonts/Oswald-Medium.woff2') format('woff2'),url('../fonts/Oswald-Medium.woff') format('woff'),url('../fonts/Oswald-Medium.ttf') format('truetype'),url('../fonts/Oswald-Medium.svg#Oswald-Medium') format('svg');
	font-weight: 800;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Roboto Lt';
	src: url('../fonts/Roboto-Medium.eot');
	src: url('../fonts/Roboto-Medium.eot?#iefix') format('embedded-opentype'),url('../fonts/Roboto-Medium.woff2') format('woff2'),url('../fonts/Roboto-Medium.woff') format('woff'),url('../fonts/Roboto-Medium.ttf') format('truetype'),url('../fonts/Roboto-Medium.svg#Roboto-Medium') format('svg');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Roboto';
	src: url('../fonts/Roboto-Regular.eot');
	src: url('../fonts/Roboto-Regular.eot?#iefix') format('embedded-opentype'),url('../fonts/Roboto-Regular.woff2') format('woff2'),url('../fonts/Roboto-Regular.woff') format('woff'),url('../fonts/Roboto-Regular.ttf') format('truetype'),url('../fonts/Roboto-Regular.svg#Roboto-Regular') format('svg');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}
/* CSS RESET */
html, body, div, span, applet, object, iframe,h1, h2, h3, h4, h5, h6, p, blockquote, pre,a, abbr, acronym, address, big, cite, code,del, dfn, em, img, ins, kbd, q, s, samp,small, strike, strong, sub, sup, tt, var,b, u, i, center,dl, dt, dd, ol, ul, li,fieldset, form, label, legend,table, caption, tbody, tfoot, thead, tr, th, td,article, aside, canvas, details, embed,figure, figcaption, footer, header, hgroup,menu, nav, output, ruby, section, summary,time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	vertical-align: baseline;
	font-family: 'Roboto', Arial, Helvetica, sans-serif;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,footer, header, hgroup, menu, nav, section {
	display: block;
}
:focus {
	outline: 0;
}
ol, ul {
	list-style: none;
}
a{
	text-decoration: none;
	margin: 0;
	padding: 0;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
img {
	width: 100%;
	display: block;
	-ms-interpolation-mode: nearest-neighbor;
	image-rendering: -webkit-optimize-contrast;
	image-rendering: -moz-crisp-edges;
	image-rendering: -o-pixelated;
	image-rendering: pixelated;
}
html{
	font-size: 100%;
	scroll-behavior: smooth;
}
body{
}
/* BASE STYLES */
:root{
	--gold: #C49C48;
	--schwarz:#000000;
	--weiß: #FFFFFF;
}
h1{
	font-size: 3.5rem;
	font-family: 'Oswald', Arial, Helvetica, sans-serif;
	line-height: 1;
	
}
span.heading{
	font-size: 3.5rem;
	color: var(--gold);
	font-family: 'Oswald', Arial, Helvetica, sans-serif;
}
span.akzent{
	font-size: 1.3rem;
	color: var(--gold);
	font-family: 'Roboto Lt', Arial, Helvetica, sans-serif;
}
p.medium{
	font-size: 1.3rem;
	font-family: 'Roboto Lt', Arial, Helvetica, sans-serif;
	white-space: pre-wrap;
	letter-spacing: 1.2px;
}
p.regular{
	font-size: 1.3rem;
	font-family: 'Roboto', Arial, Helvetica, sans-serif;
	white-space: pre-wrap;

	letter-spacing: 1.2px;
}
p.small{
	font-size: 16px;
	font-family: 'Roboto', Arial, Helvetica, sans-serif;
	white-space: pre-wrap;
}
section{
	padding: 0 2rem;
}
.container{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	max-width: 1364px;
	margin: 0 auto;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	row-gap: 100px;
	-ms-flex-pack: distribute;
	    justify-content: space-around;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.flex-buttons{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-top: 20px;
	text-align: center;
}
.btn-gold{
	color: white;
	background-color: var(--gold);
	padding: 8px 22px;
	border-radius: 5px;
	-webkit-transition: 0.3s ease;
	-o-transition: 0.3s ease;
	transition: 0.3s ease;
	margin-right: 24px;
	position: relative;
	z-index: 10;
}
.btn-gold:hover{
	color: rgb(0, 0, 0);
	background-color: white;
	border-radius: 5px;
	-webkit-transition: 0.3s ease;
	-o-transition: 0.3s ease;
	transition: 0.3s ease;
}
.btn-white{
	color: rgb(0, 0, 0);
	background-color: white;
	padding: 8px 22px;
	border-radius: 5px;
	-webkit-transition: 0.3s ease;
	-o-transition: 0.3s ease;
	transition: 0.3s ease;
	position: relative;
	z-index: 10;
}
.btn-white:hover{
	color: white;
	background-color: var(--gold);
	border-radius: 5px;
	-webkit-transition: 0.3s ease;
	-o-transition: 0.3s ease;
	transition: 0.3s ease;
}
.btn-black{
	color: rgb(255, 255, 255);
	background-color: rgb(0, 0, 0);
	padding: 8px 22px;
	border-radius: 5px;
	-webkit-transition: 0.3s ease;
	-o-transition: 0.3s ease;
	transition: 0.3s ease;
	position: relative;
	z-index: 10;
}
.btn-black:hover{
	color: rgb(255, 255, 255);
	background-color: var(--gold);
	border-radius: 5px;
	-webkit-transition: 0.3s ease;
	-o-transition: 0.3s ease;
	transition: 0.3s ease;
}
.btn-gold-black{
	color: rgb(255, 255, 255);
	background-color: var(--gold);
	padding: 8px 22px;
	border-radius: 5px;
	-webkit-transition: 0.3s ease;
	-o-transition: 0.3s ease;
	transition: 0.3s ease;
	margin-right: 24px;
	position: relative;
	z-index: 10;
}
.btn-gold-black:hover{
	color: rgb(255, 255, 255);
	background-color: black;
	border-radius: 5px;
	-webkit-transition: 0.3s ease;
	-o-transition: 0.3s ease;
	transition: 0.3s ease;
	margin-right: 24px;
}
.btn{
	display: inline-block;
	-webkit-box-shadow: inset 0 0 0 0 var(--gold);
	box-shadow: inset 0 0 0 0 var(--gold);
	-webkit-transition:color 0.3s ease, background-color 0.5s ease, -webkit-box-shadow 0.6s ease;
	transition:color 0.3s ease, background-color 0.5s ease, -webkit-box-shadow 0.6s ease;
	-o-transition:box-shadow 0.6s ease, color 0.3s ease, background-color 0.5s ease;
	transition:box-shadow 0.6s ease, color 0.3s ease, background-color 0.5s ease;
	transition:box-shadow 0.6s ease, color 0.3s ease, background-color 0.5s ease, -webkit-box-shadow 0.6s ease;
	position: relative;
	overflow: hidden;
}
.btn::before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: -o-linear-gradient(left, transparent, rgba(255, 255, 255, 0.5), transparent);
	background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(rgba(255, 255, 255, 0.5)), to(transparent));
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
	-webkit-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
}
.btn:hover::before {
	left: 100%;
}
.button-icon-container{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.scroll-margin{
	scroll-margin: 80px;
}


/* Scroll Spy */



.navigation li a.isactive {
color: var(--gold);
	
  }



  /* scroll SPy end */


/* .button-icon{
	width: 17px;
	height: 17px;
	background-image: url('../img/anfragenwhats-icon.svg');
	margin-right: 8px;
	transition: 0.3s ease;
}
.button-icon:hover{
	width: 17px;
	height: 17px;
	background-image: url('../img/anfragenwhats-icon-mo.svg');
	margin-right: 8px;
}
*/
/* NAV */
/* NAV */
.impdat{
	display: none;
}

/* HOMESECTION */




header {
	position: -webkit-sticky;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background: rgba(0, 0, 0, 0.7);
	-webkit-backdrop-filter: blur(4px);
	backdrop-filter: blur(4px);
	border-bottom: 2px solid var(--gold);
	z-index: 1000000;
	-webkit-filter: drop-shadow(0px -8px 10px rgba(0, 0, 0, 0.5));
	        filter: drop-shadow(0px -8px 10px rgba(0, 0, 0, 0.5));
}
/* NAVIGATION */
.navbar {
	max-width: 1500px;
	margin: 0 auto;
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 1fr 1fr;
	grid-template-columns: 1fr 1fr;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-line-pack: center;
	align-content: center;
	height: 80px;
	overflow: hidden;
	padding: 0 1rem;
	/* gap: 50px;
	*/
}
.logo{
	width: 100%;
	max-width: 180px;
}
.navbar ul {
	list-style: none;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-ms-grid-column-align: end;
	justify-self: end;
}
.navbar ul li a{
	font-family: 'Oswald', Arial, Helvetica, sans-serif;
	font-size: 18px;
	letter-spacing: 1.8px;
	color: #fff;
	margin: 0px 8px;
	/* padding: 0.5rem 0rem 0.2rem 0rem;
	*/
	padding-bottom: 0.2rem;
	-webkit-transition: color 0.3s ease;
	-o-transition: color 0.3s ease;
	transition: color 0.3s ease;
}
.navbar ul li a:hover{
	color: var(--gold);
}


/* START BUTTON */




.anfrage-button{
	width: 120px;
	height: 26px;
	background-image: url('../img/anfragen-button.webp');
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	background-size: contain;
	background-repeat: no-repeat;
	margin-left: 10px;
}
.anfrage-button:hover{
	width: 120px;
	height: 26px;
	background-image: url('../img/anfragen-button-mo.webp');
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	background-size: contain;
	background-repeat: no-repeat;
}
/* MOBILE MENU & ANIMATION */
.menu-toggle .bar{
	width: 25px;
	height: 3px;
	background-color: var(--gold);
	margin: 5px auto;
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.menu-toggle {
	-ms-grid-column-align: end;
	justify-self: end;
	margin-right: 15px;
	top: 30%;
	display: none;
	z-index: 10000
}
.menu-toggle:hover{
	cursor: pointer;
}
#mobile-menu.is-active .bar:nth-child(2){
	opacity: 0;
}
#mobile-menu.is-active .bar:nth-child(1){
	-webkit-transform: translateY(8px) rotate(45deg);
	-ms-transform: translateY(8px) rotate(45deg);
	transform: translateY(8px) rotate(45deg);
	background-color: var(--gold);
}
#mobile-menu.is-active .bar:nth-child(3){
	-webkit-transform: translateY(-8px) rotate(-45deg);
	-ms-transform: translateY(-8px) rotate(-45deg);
	transform: translateY(-8px) rotate(-45deg);
	background-color: var(--gold);
}
/* NAV END --> */



/* HEADER */

#start{
	padding: 0;
}

.header-bild{
	border-bottom: 2px solid var(--gold);
}
.mob{
	display: none;
}
/* HEADER ENDE >>> */
/* aufbereitung */
#aufbereitung{
	background-color: black;
	/* min-height: 1283px;
	*/
	color: white;
	position: relative;
	z-index: 10;
	-webkit-filter: drop-shadow(0px 10px 6px rgba(0, 0, 0, 0.5));
	        filter: drop-shadow(0px 10px 6px rgba(0, 0, 0, 0.5));
}
.aufbereitung-container{
	padding-top: 139px;
}
#aufbereitung h1{
	margin-bottom: 30px;
}
#aufbereitung a img{
	max-width: 17px;
}
.aufbereitung-bild img{
	width: 100%;
	max-width: 573px;
}
/* AUFBEREITUNG CARDS */
.card-container{
	padding: 139px 0;
	gap: 25px;
	row-gap: 70px;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	position: relative;
	z-index: 10;
}
.card{
	width: 100%;
	max-width: 310px;
	height: 100%;
	min-height: 135px;
}
.card img{
	margin-bottom: 30px;
}
/* AUFBEREITUNG ENDE>>>> */
/* FOLIERUNG */
#folierung{
	background-color: white;
	/* min-height: 1267px;
	*/
	color: white;
	position: relative;
}
.folierung-bg{
	width: 100%;
	max-width: 665px;
	position: absolute;
	right: 0;
	bottom: 425px;
}
.folierung-container{
	padding-top: 139px;
	/* gap: 100px;
	*/
}
#folierung h1{
	margin-bottom: 30px;
	color: black;
}
.folierung-info p{
	color: rgb(3, 3, 3);
	position: relative;
	z-index: 10;
}
/* #folierung a img{
	max-width: 17px;
}
*/
.folierung-bild img{
	width: 100%;
	max-width: 560px;
	position: relative;
	z-index: 10;
}
.folierung-card p{
	color: black;
}
/* FOLIERUNG ENDE >>> */
/* DELLENTECHNIK */
#dellentechnik{
	background-color: black;
	min-height: 850px;
	color: white;
	position: relative;
	z-index: 10;
	-webkit-filter: drop-shadow(0px 10px 6px rgba(0, 0, 0, 0.5));
	        filter: drop-shadow(0px 10px 6px rgba(0, 0, 0, 0.5));
			display: -webkit-box;
			display: -ms-flexbox;
			display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.dellentechnik-container{
	padding: 139px 0;
}
#dellentechnik h1{
	margin-bottom: 30px;
}
#dellentechnik a img{
	max-width: 17px;
}
.dellentechnik-bild img{
	width: 100%;
	max-width: 620px;
}
/* DELLENTECHNIK ENDE */



/* SCHULUNGEN & WORKSHOPS */
#schulung{
	/* min-height: 935px;
	*/
	background-image: url(../img/schulung-bg.wevorteile-metall-bg.webp);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center 110%;
	position: relative;
	/* z-index: 1000; */
}

/* #schulung::before{
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	background-image: url('../img/schulung-bg.jpg');
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	top: 0;
	left: 0;
	z-index: -1;
	opacity: 0.2;
} */




.schulung-container{
	padding: 139px 0;
}


.schulung-bild{
	width: 100%;
	max-width: 480px;
	-webkit-filter: drop-shadow(6px 6px 2.5px rgba(0, 0, 0, 0.3));
	        filter: drop-shadow(6px 6px 2.5px rgba(0, 0, 0, 0.3));

}

.schulung-bild img{
	border-radius: 15px;
}


.schulung-rechts-wrapper > h1{
	margin-bottom: 30px;
}


.schulung-rechts{
	/* max-width: 500px; */

}


.schulung-rechts >h1{
	font-size: 2.3rem;
	color: var(--gold);
	margin-bottom: 30px;
	
}





/* SCHULUNG CARDS FLIP */

.flip-card-holder {
	width: 100%;
    max-width: 358px;

    /* margin: 50px auto; */
    position: relative;

    -webkit-perspective: 800px;

            perspective: 800px; 

   -webkit-backface-visibility: hidden; 

           backface-visibility: hidden;
  /* z-index: 1000000; */
}



.flip-card {
    width: 100%;
    height: 100%;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
	-webkit-filter: drop-shadow(6px 6px 2.5px rgba(0, 0, 0, 0.3));
	        filter: drop-shadow(6px 6px 2.5px rgba(0, 0, 0, 0.3));
	
}



.back {
	position: absolute;
	top: 0px;
    left: 0px;
    z-index: 1;
    -webkit-transform: rotateY(-180deg);
            transform: rotateY(-180deg); 
	background-color: black;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
	border-radius: 15px;

}






.flipped{
       z-index: 1;
    -webkit-transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
    transform: rotateY(180deg);
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
  /* outline: 1px solid transparent; */
}

.backflip {
    z-index: 2;   
    -webkit-transform: rotateY(0deg);
    -ms-transform: rotateY(0deg);
    transform: rotateY(0deg);       
    -webkit-transition: all .5s;       
    -o-transition: all .5s;       
    transition: all .5s;
  /* outline: 1px solid transparent; */
}

/* SChulungs Form Styles */

.schulungs-form{

	padding: 16px 1rem !important;
}

/* CARD1 */
#auf_basic label.auf_basic-labelreq:after {
    content: ' *';
    
	display: none !important;
}


/* LABEL CECKBOX */
#auf_basic .auf_basic-cbi{
	display: -webkit-box !important;
	display: -ms-flexbox !important;
	display: flex !important;
	-webkit-box-align: center !important;
	    -ms-flex-align: center !important;
	        align-items: center !important;
}

/* CARD2 */
#auf_expert label.auf_expert-labelreq:after {
    content: ' *';
    
	display: none !important;
}


/* LABEL CECKBOX */
#auf_expert .auf_expert-cbi{
	display: -webkit-box !important;
	display: -ms-flexbox !important;
	display: flex !important;
	-webkit-box-align: center !important;
	    -ms-flex-align: center !important;
	        align-items: center !important;
}

/* CARD3 */
#auf_indi label.auf_indi-labelreq:after {
    content: ' *';
    
	display: none !important;
}


/* LABEL CECKBOX */
#auf_indi .auf_indi-cbi{
	display: -webkit-box !important;
	display: -ms-flexbox !important;
	display: flex !important;
	-webkit-box-align: center !important;
	    -ms-flex-align: center !important;
	        align-items: center !important;
}




/* SCHULUNGS BACK INFO*/

.schulung-form-info{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
	margin-top: 50px;
	position: absolute;
    bottom: 0;

}

.schulung-form-info p{
	color: white;
}

.costs{
	font-size: 18px;
}

.note{
	color: white;
	font-size: 14px;

}

div.rotatecardback{
	margin-top: 55px !important;
}


  /* SCHULUNG CARDS  FLIP ENDE---->*/




/* CARDS FRONT CONTENT */
.schulung-card{
	background-color: black;
	max-width: 358px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-filter: drop-shadow(6px 6px 2.5px rgba(0, 0, 0, 0.3));
	        filter: drop-shadow(6px 6px 2.5px rgba(0, 0, 0, 0.3));
	border-radius: 20px;
}

.schulung-card img{
	border-radius: 20px 20px 0 0;
}

.schulung-card h1{
	font-size: 1.6875rem;
	color: white;
	text-align: center;
	margin: 12px 0;
}

.schulung-card span{
	font-size: 1.6875rem;
	font-family: 'Oswald',Arial, Helvetica, sans-serif;
	color: var(--gold);
}

.linie{
	width: 100%;
	max-width: 283px;
	margin: 0 auto;
	height: 1px;
	background-color: white;
}

.schulung-card p{
	color: white;
	font-size: 14px;
	padding: 0px 20px 12px 25px;
	white-space: pre-wrap;
	-webkit-hyphens: auto;
	    -ms-hyphens: auto;
	        hyphens: auto;
	

}

.schulung-card p.kurs-text{

	min-height: 165px;

}




.schulung-card p.schulung-beschreibung{
	padding: 12px 20px;
	font-size: 14px;
}

.schulung-info{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	width: 100%;
	margin: 15px 0;
}

.schulung-info img{
	max-width: 20px;
}

.time{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
	margin-bottom: 10px;
	
}

.person{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;

    -webkit-box-pack: center;

        -ms-flex-pack: center;

            justify-content: center;
	
}


.time p, .person p{
	padding: 0;
	margin-left: 6px;
	/* white-space: normal !important; */
	
	
}

.schulung-info p{
	font-size: 13px;
}

.flip-card-holder .btn-gold{
	margin: 2px 0 20px 0;
	cursor: pointer;
	font-size: 14px;
}

.schulungs-btn{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	padding: 139px 0;
}

/* CARDS FRONT CONTENT ENDE */


/* CARDS BACK CONTENT */





/* SCHULUNG ENDE>>>> */
/* VORTEILE */
#vorteile{
	min-height: 500px;
	background-color: black;
	background-image: url(../img/vorteile-metall-bg.webp);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	position: relative;
	-webkit-filter: drop-shadow(0px 10px 6px rgba(0, 0, 0, 0.5));
	        filter: drop-shadow(0px 10px 6px rgba(0, 0, 0, 0.5));
}
#vorteile::before{
	content: '';
	display: block;
	height: 100%;
	width: 100%;
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	background: inherit;
	-webkit-transform: skew(0, -1deg);
	    -ms-transform: skew(0, -1deg);
	        transform: skew(0, -1deg);
	-webkit-transform-origin: top left;
	    -ms-transform-origin: top left;
	        transform-origin: top left;
}
#vorteile::after{
	content: '';
	display: block;
	height: 100%;
	width: 100%;
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	background: inherit;
	-webkit-transform: skew(0, -1deg);
	    -ms-transform: skew(0, -1deg);
	        transform: skew(0, -1deg);
	-webkit-transform-origin: bottom right;
	    -ms-transform-origin: bottom right;
	        transform-origin: bottom right;
}
/* SKEW END */
#vorteile>h1{
	text-align: center;
	padding-top: 60px;
	color: white;
	/* font-size: 60px;
	*/
}
.vorteile-container{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	max-width: 1364px;
	margin: 0 auto;
	-webkit-box-pack: space-evenly;
	    -ms-flex-pack: space-evenly;
	        justify-content: space-evenly;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	row-gap: 100px;
	-webkit-column-gap: 20px;
	   -moz-column-gap: 20px;
	        column-gap: 20px;
	padding: 60px 0 65px 0;
}
.vorteile-container img{
	max-width: 200px;
}
/* VORTEILE ENDE>>> */
/* KONTAKT */
#kontakt{
	/* min-height: 500px;
	*/
}
.kontakt-container{
	padding: 139px 0;
}
.kontakt-links{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
}
.kontakt-links p.medium{
	font-size: 17px;
	margin-top: 20px;
}
.kontakt-infos{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	row-gap: 35px;
	width: 100%;
	max-width: 600px;
	margin: 50px auto 0 auto;
	-ms-flex-pack: distribute;
	    justify-content: space-around;
}
.kontakt-infos img{
	max-width: 67px;
}
.kontakt-infos p.medium{
	font-family:'Oswald', Arial, Helvetica, sans-serif;
	margin: 0 0 6px 0px;
}
/* .kontakt-infos p.medium,.kontakt-infos p.small{
	white-space: normal;
	hyphens: auto;
}
*/
.kontakt-flex{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	max-width: 290px;
}
.kontakt-text{
	margin-left: 24px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
}
.kontakt-infos a{
	color: black;
	-webkit-transition: 0.3s ease;
	-o-transition: 0.3s ease;
	transition: 0.3s ease;
}
.kontakt-infos a:hover{
	color: var(--gold);
}
/* FORM */
.form{
	width: 100%;
	max-width: 605px;
	/* height: 480px;
	*/
}
#awf input[type="text"] {
	width: 100%;
	height: 50px !important;
	background-color: white;
	border: 1px solid black;
	-webkit-box-shadow: none;
	        box-shadow: none;
	border-radius: 3px!important;
	color: black;
	font-family: inherit;
	font-size: 16px!important;
	font-weight: inherit;
	line-height: normal;
	margin: 0;
	padding: 0 15px!important;
}
#awf select {
	width: 100%;
	height: 40px !important;
	background-color: white;
	border: 1px solid black;
	-webkit-box-shadow: none;
	        box-shadow: none;
	border-radius: 3px !important;
	color: black;
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
	line-height: normal;
	margin: 10px 0 !important;
	padding: 0 1.8em 0 18px !important;
}
#awf .awf-selico {
	width: auto;
	height: auto;
	background-color: transparent;
	color: dimgray;
	font-family: 'Material Icons';
	font-size: 1.4em;
	margin: 0;
	padding: 0.2em 0.2em 0 0;
	position: absolute;
	top: 14px !important;
	right: 0;
	pointer-events: none;
}
#awf textarea {
	display: block;
	width: 100%;
	background-color: white;
	border: 1px solid black;
	-webkit-box-shadow: none;
	        box-shadow: none;
	border-radius: 3px !important;
	color: black;
	font-family: inherit;
	font-size: 16px!important;
	font-weight: inherit;
	line-height: normal;
	margin: 0;
	padding: 15px !important;
	resize: none;
	overflow: auto;
	white-space: pre-wrap;
}
/* AGB */
#awf input[type="checkbox"]+label {
	display: inline-block;
	width: calc(1em + 2px);
	height: calc(1em + 2px);
	background-color: white;
	border: 1px solid #000000 !important;
	font-family: 'Material Icons';
	font-size: 16px !important;
	font-weight: normal;
	line-height: 1;
	text-align: center;
	vertical-align: middle;
}
#awf .awf-cbi {
	display: -webkit-box !important;
	display: -ms-flexbox !important;
	display: flex !important;
	width: auto;
	vertical-align: top;
	-webkit-box-align: center!important;
	    -ms-flex-align: center!important;
	        align-items: center!important;
}
#awf .awf-cbi :nth-child(3){
	width: 100% !important;
}
#awf-form a{
	color: black !important;
	-webkit-transition: 0.3s ease !important;
	-o-transition: 0.3s ease !important;
	transition: 0.3s ease !important;
	text-decoration: underline !important;
}
#awf-form a:hover{
	color: var(--gold) !important;
}
#awf button {
	font-family:'Oswald', Arial, Helvetica, sans-serif !important;
	font-size: 1.3125rem !important;
	border-radius: 3px !important;
}
/* KONTAKT ENDE >>*/
/* HERSTELLER */
#hersteller{
	/* min-height: 200px;
	*/
	background-color: black;
	background-image: url(../img/hersteller-metall-bg.webp);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	-webkit-filter: drop-shadow(0px 10px 6px rgba(0, 0, 0, 0.5));
	        filter: drop-shadow(0px 10px 6px rgba(0, 0, 0, 0.5));
}
.hersteller-wrapper {
	width: 90%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	/* max-width: 1536px;
	*/
	margin: 0 auto;
	position: relative;
	height: 100px;
	overflow: hidden;
	padding-top: 5px;
	-webkit-mask-image: -webkit-gradient(linear,left top, right top,from(rgba(0, 0, 0, 0)),color-stop(20%, rgba(0, 0, 0, 1)),color-stop(80%, rgba(0, 0, 0, 1)),to(rgba(0, 0, 0, 0)));
	-webkit-mask-image: linear-gradient(to right,rgba(0, 0, 0, 0),rgba(0, 0, 0, 1) 20%,rgba(0, 0, 0, 1) 80%,rgba(0, 0, 0, 0));
	        mask-image: -webkit-gradient(linear,left top, right top,from(rgba(0, 0, 0, 0)),color-stop(20%, rgba(0, 0, 0, 1)),color-stop(80%, rgba(0, 0, 0, 1)),to(rgba(0, 0, 0, 0)));
	        mask-image: linear-gradient(to right,rgba(0, 0, 0, 0),rgba(0, 0, 0, 1) 20%,rgba(0, 0, 0, 1) 80%,rgba(0, 0, 0, 0));
}
.item1 {
	-webkit-animation-delay: calc(30s / 8 * (8 - 1) * -1);
	        animation-delay: calc(30s / 8 * (8 - 1) * -1);
}
.item2 {
	-webkit-animation-delay: calc(30s / 8 * (8 - 2) * -1);
	        animation-delay: calc(30s / 8 * (8 - 2) * -1);
}
.item3 {
	-webkit-animation-delay: calc(30s / 8 * (8 - 3) * -1);
	        animation-delay: calc(30s / 8 * (8 - 3) * -1);
}
.item4 {
	-webkit-animation-delay: calc(30s / 8 * (8 - 4) * -1);
	        animation-delay: calc(30s / 8 * (8 - 4) * -1);
}
.item5 {
	-webkit-animation-delay: calc(30s / 8 * (8 - 5) * -1);
	        animation-delay: calc(30s / 8 * (8 - 5) * -1);
}
.item6 {
	-webkit-animation-delay: calc(30s / 8 * (8 - 6) * -1);
	        animation-delay: calc(30s / 8 * (8 - 6) * -1);
}
.item7 {
	-webkit-animation-delay: calc(30s / 8 * (8 - 7) * -1);
	        animation-delay: calc(30s / 8 * (8 - 7) * -1);
}
.item8 {
	-webkit-animation-delay: calc(30s / 8 * (8 - 8) * -1);
	        animation-delay: calc(30s / 8 * (8 - 8) * -1);
}
@-webkit-keyframes scrollLeft {
	to {
		left: -200px;
	}
}
@keyframes scrollLeft {
	to {
		left: -200px;
	}
}
.item {
	width: 100%;
	max-width: 200px;
	height: 100%;
	max-height: 50px;
	/* border-radius: 6px;
	*/
	position: absolute;
	left: max(calc(200px * 8), 100%);
	-webkit-animation-name: scrollLeft;
	        animation-name: scrollLeft;
	-webkit-animation-duration: 30s;
	        animation-duration: 30s;
	-webkit-animation-timing-function: linear;
	        animation-timing-function: linear;
	-webkit-animation-iteration-count: infinite;
	        animation-iteration-count: infinite;
}
/* HERSTELLER ENDE>>> */
/* FAQ */
.faq-container{
	padding: 139px 0;
}
.faq-bild{
	width: 100%;
	max-width: 450px;
}
.accordion-container{
	width: 100%;
	max-width: 750px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.accordion-container>h1{
	margin-bottom: 30px;
}
.accordion-container p.medium{
	white-space: normal !important;
	font-size: 1.1875rem;
	font-family:'Oswald', Arial, Helvetica, sans-serif;
}
.accordion-container p.regular{
	white-space: normal !important;
	font-size: 16px;
	padding: 20px 0 40px 0;
	font-weight: 600;
}
.accordion {
	background-color: #000000;
	color: #ffffff;
	cursor: pointer;
	padding: 12px 50px;
	width: 100%;
	border: none;
	/* text-align: left;
	*/
	outline: none;
	/* font-size: 15px;
	*/
	-webkit-transition: 0.4s ease;
	-o-transition: 0.4s ease;
	transition: 0.4s ease;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	position: relative;
}
.accordion:after {
	content: '▼';
	color: var(--gold);
	font-weight: bold;
	/* float: right;
	*/
	position: absolute;
	right: 15px;
	font-size: 19px;
	font-family:'Oswald', Arial, Helvetica, sans-serif;
	/* margin-left: 5px;
	*/
}
button{
	text-align: center;
}
button:hover{
	color: var(--gold);
}
.active{
	color:var(--gold);
}
.active:after {
	content: "✘";
}
.panel {
	/* padding: 0 18px;
	*/
	background-color: white;
	max-height: 0;
	overflow: hidden;
	-webkit-transition: max-height 0.2s ease-out;
	-o-transition: max-height 0.2s ease-out;
	transition: max-height 0.2s ease-out;
	margin-bottom: 14px;
}
.faq-cta{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	padding-bottom: 139px;
}
.faq-cta p{
	white-space: normal;
	text-align: center;
	margin-bottom: 20px;
}
.faq-cta a{
	color: black;
	font-family:'Oswald', Arial, Helvetica, sans-serif;
	font-size: 3.4375rem;
	-webkit-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
	text-align: center;
}
.faq-cta a:hover{
	color: var(--gold);
}
/* FAG ENDE >>> */
/* FOOTER */
footer{
	padding: 55px 2rem 50px 2rem;
	/* min-height: 270px;
	*/
	background-color: black;
	margin-bottom: 15px;
	text-align: center;
}
.footer-aufzahlung p{
	color: white;
	font-family:'Oswald', Arial, Helvetica, sans-serif;
	font-size: 1.375rem;
	margin-bottom: 40px;
}
.footer-aufzahlung span{
	color: var(--gold);
	font-family:'Oswald', Arial, Helvetica, sans-serif;
}
.footer-socials{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
}
.social-icon{
	width: 100%;
	max-width: 25px;
	margin: 0 10px;
}
.instagram{
	width: 25px;
	height: 25px;
	background-image: url('../img/insta-icon.svg');
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	background-size: contain;
	background-repeat: no-repeat;
}
.instagram:hover{
	width: 25px;
	height: 25px;
	background-image: url('../img/insta-icon-mo.svg');
	background-size: contain;
}
.tiktok{
	width: 25px;
	height: 25px;
	background-image: url('../img/tiktok-icon.svg');
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	background-size: contain;
	background-repeat: no-repeat;
}
.tiktok:hover{
	width: 25px;
	height: 25px;
	background-image: url('../img/tiktok-icon-mo.svg');
	background-size: contain;
}
/* .facebook{
	width: 25px;
	height: 25px;
	background-image: url('../img/face-icon.svg');
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	background-size: contain;
	background-repeat: no-repeat;
	margin-left: 15px;
}
*/
/* .facebook:hover{
	width: 25px;
	height: 25px;
	background-image: url('../img/face-icon-mo.svg');
	background-size: contain;
}
*/
.whats{
	width: 25px;
	height: 25px;
	background-image: url('../img/whats-icon.svg');
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	background-size: contain;
	background-repeat: no-repeat;
}
.whats:hover{
	width: 25px;
	height: 25px;
	background-image: url('../img/whats-icon-mo.svg');
	background-size: contain;
}
footer p.small{
	color: white;
	white-space: normal;
	text-align: center;
}
footer p{
	color: white;
}
.footer-copyright{
	margin-top: 15px;
}
footer a{
	color: white;
	-webkit-transition: 0.3s ease;
	-o-transition: 0.3s ease;
	transition: 0.3s ease;
}
footer a:hover{
	color: var(--gold);
}


/* FOOTER ENDE----> */


/* IMPRESSUM */
.impressum{
	max-width: 1364px;
	margin: 0 auto;
	-ms-grid-row: 2;
	-ms-grid-column: 1;
	-ms-grid-column-span: 6;
	grid-area: datenschutz;
	color: black;
	padding:2rem 2rem;
	z-index: 1;
	margin-top: 4rem;
}
.impressum p{
	font-size: 1rem;
	line-height: 2;
	letter-spacing: 2px;
	text-align: justify;
}
.impressum span{
	font-size: 1.1rem;
	font-weight: bold;
	color: var(--gold);
}
.impressum a{
	font-size: 1.05rem;
	color: black;
	-webkit-transition: color 0.2s ease-in-out;
	-o-transition: color 0.2s ease-in-out;
	transition: color 0.2s ease-in-out;
}
.impressum a:hover{
	color: #c49d4891;
}
/* IMPRESSUM ENDE ---> */



/* AGB */


.agb{
	max-width: 1364px;
	margin: 0 auto;
	-ms-grid-row: 2;
	-ms-grid-column: 1;
	-ms-grid-column-span: 6;
	grid-area: datenschutz;
	color: black;
	padding:2rem 2rem;
	z-index: 1;
	margin-top: 4rem;
}
.agb p{
	font-size: 1rem;
	line-height: 2;
	letter-spacing: 2px;
	text-align: justify;
	
}
.agb span{
	font-size: 1.1rem;
	font-weight: bold;
	color: var(--gold);
}
.agb a{
	font-size: 1.05rem;
	color: black;
	-webkit-transition: color 0.2s ease-in-out;
	-o-transition: color 0.2s ease-in-out;
	transition: color 0.2s ease-in-out;
}
.agb a:hover{
	color: #c49d4891;
}

/* AGB ENDE---> */



/* DATENSCHUTZ */
.datenschutz{
	max-width: 1364px;
	margin: 0 auto;
	-ms-grid-row: 2;
	-ms-grid-column: 1;
	-ms-grid-column-span: 6;
	grid-area: datenschutz;
	color: black;
	padding:2rem 2rem;
	z-index: 1;
	margin-top: 4rem;
}
.datenschutz p{
	font-size: 1rem;
	line-height: 2;
	letter-spacing: 2px;
	text-align: justify;
}
.datenschutz span{
	font-size: 1.1rem;
	font-weight: bold;
	color: var(--gold);
}
.datenschutz a{
	font-size: 1.05rem;
	color: black;
	-webkit-transition: color 0.2s ease-in-out;
	-o-transition: color 0.2s ease-in-out;
	transition: color 0.2s ease-in-out;
}
.datenschutz a:hover{
	color: #c49d4891;
}
/* DATENSCHUTZ ENDE ---> */























