@charset "utf-8";
 
/*
* CSS-Design
* Website Sterrerdesign
*/

/* Farbwerte 
Gelb:
rgba(255,255,89,1)
#ffff59

Orange:
rgba(255,90,0,1)
#ff5a00

Dunkelgrau
rgba(51,51,51,1)
#333

Hellgrau
#555

*/


/* Einbindung Schrift */
@import url("https://use.typekit.net/klz1haz.css"); /* über Adobe Fonts importiert */

@font-face {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 200;
    src: url('../fonts/Outfit-ExtraLight.ttf') format('truetype');
  }
  
  @font-face {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 300;
    src: url('../fonts/Outfit-Light.ttf') format('truetype');
  }
  
  @font-face {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/Outfit-Regular.ttf') format('truetype');
  }
  
  @font-face {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/Outfit-SemiBold.ttf') format('truetype');
  }

@font-face {
  font-family: 'Font Awesome 6 Free';
  font-style: normal;
  font-weight: 900;
  font-display: block;
  src: url("../fonts/fa-solid-900.ttf") format("truetype"); }


@font-face {
  font-family: 'Font Awesome 6 Brands';
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url("../fonts/fa-brands-400.ttf") format("truetype"); }

 
/* Reset * * * * * * * * */
*{
margin: 0;
padding: 0;
-mozbox-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}

html { scroll-behavior: smooth; }

/* Basisformatierung */

body{
    font-size: 1.4rem;
    font-family: 'Outfit', Helvetica, Arial, sans-serif;
    line-height: 2rem;
    color: #333;
    font-weight: 300;
    }

img{
    max-width: 100%;
    height: auto;
    pointer-events: none;
    }

html {
    scroll-behavior: smooth;
}

.yellow{
    background: rgba(255,255,89,1);
    }

.yellow-light .column {
	/* margin: 0; */
}
 
.wrapper{
max-width: 1250px;
padding: 0 25px;
margin: 0 auto;
}
 
.column {
    float: left;
    margin: 25px 0 25px 5%;
   	/* background: #ddd;
	padding: 25px 0;
	text-align: center; */
}
    
.column:first-child{
    margin-left: 0;
}

section{
    padding: 75px 0;
}

.no-gutter .column{
    margin:0;
    padding: 60px;
    }

.no-gutter .col_1_2{
    width: 50%;
    }

.no-gutter .col_1_3{
    width: 33.33%;
    }
        
.no-gutter .col_2_3{
    width: 66.66%;
    }
        
.no-gutter .col_1_4{
    width: 25%;
    }
        
.no-gutter .col_3_4{
    width: 75%;
    }

/* Clearfix */
.row:before,
.row:after {
content: " ";
display: table;
}
 
.row::after {
clear: both;
}
 
/*
.row{
background: #aaa;
margin: 20px 0;
}
*/
 
 
/* Layout */
 
.col_1{
width: 100%;
}
 
.col_1_2{
width: 47.5%;
}
   
.col_1_3{
width: 30%;
}
 
.col_2_3{
width: 65%;
}
 
.col_1_4{
width: 21.25%;
}
 
.col_3_4{
width: 73.75%;
}


/* Logo */
#logo{
    max-height: 80px;
    }
    
#logo_link {
    padding-top: 50px;
    margin: 0;
    text-decoration: none;
}

#logo_link:hover{
    background-color: transparent;
}

/* Navigation Header */

#navigation{ 
    float: right;
    margin-top: 20px; 
    }

#navigation li{
    display: inline;
    list-style: none;
    margin-left: 10px;
    }

#navigation li a{
    text-decoration: none;
    text-transform: uppercase;
    font-size: 1.25rem; /* 20px; */
    color: #555;
    font-weight: 300;
    padding: 8px;
    }
 
#navigation li a:hover{
    color: #ff5a00;
    background-color: white;
}
    
#navigation li a.active{
    color: #ff5a00;
}


/* Drop-Down-Menü */

#navigation ul {
	position: absolute;
	top: 35px;
	left: -14px;
	background: #fff;
	width: 190px;
	box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.1);
	display: none;
    z-index: 9999;
}

#navigation li {
	position: relative;
}

#navigation ul li a {
	display: block;
	font-size: 1.125rem;
	/* 18 Pixel */
	text-transform: none;
	padding: 10px 35px 10px 15px;
	border-bottom: 1px solid rgba(70, 151, 168, .2);
}

#navigation ul li {
	margin-left: 0;
}

#navigation ul li a:hover {
	background: white;
	color: #ff5a00;
}

#navigation li:hover ul {
	display: block;
}

/* Responsive Navigation */

.nav-toggle {
	display: none;
}

.nav-toggle {
	background: #ff5a00;
	padding: 10px 15px;
	color: white;
    border: 1px solid white;
    border-radius: 50px;
    text-decoration: none;
    text-align: center;
}

.nav-toggle:hover {
	background: white;
	text-decoration: none;
    color:#ff5a00;
    border: 1px solid #ff5a00;
}

/* Breadcrumb */

.breadcrumb{
    background: rgba(255,255,89,0.25);
    padding: 5px;
    padding-left: 26px;
    }

.breadcrumb .column{
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 16px;
    }

/* Subnavigation */

#subnavigation li{
    list-style: none;
    border-bottom: 1px solid #ccc;
    }

#subnavigation li a{
    text-decoration: none;
    color: #333;
    font-weight: 300;
    font-size: 20px;
    display: block;
    padding: 15px 0 15px 20px;
    }

#subnavigation{
    border-top: 1px solid #ccc;
    }

#subnavigation li a:hover, #subnavigation li a.active{
    color: #ff5a00;
    }

#subnavigation li a:hover{
    background-color:#ff5a00;
    color: white;
}

/* to top-Button */

#totop {
	position: fixed;
	right: 30px;
	bottom: 30px;
	background:#ff5a00;
	color: #fff;
	padding: 6px;
	border-radius: 15px;
	font-size: 35px;
	line-height: 1;
	display: none;
}

#totop:hover {
	text-decoration: none;
	background: white;
    color:#ff5a00;
    border: 2px solid  #ff5a00;
}

/* Typo */

h1, h2, h3, h4, h5, h6{
    font-family: 'zooja-pro', sans-serif;
    font-weight: 400;    
    margin-bottom: 40px;
    color: #ff5a00;
    line-height: 1.1;
    }

h1{     
    font-size: 11.875rem; /* 190px; */     
    margin-bottom: -10px;     
    font-weight: 400; 
    color: black;
    font-size: clamp(8rem, 20vw, 13rem);
    } 
        
h2{     
    font-size: 7.5rem; /* 120px; */     
    font-weight: 400; 
    line-height: 1;
    margin-bottom: 10px;
    } 

h3{
    font-size: 5.5rem; 
    font-weight: 300; 
    line-height: 1;
    margin-top: 20px;
    margin-bottom: 10px;
}

h4{
    font-size: 4.5rem;   
    font-weight: 300; 
    line-height: 1;
    margin-bottom: 20px;
}

h5{
    font-family: 'zooja-pro', sans-serif;
    font-size: 3.5rem;   
    font-weight: 300; 
    line-height: 4rem;
    color:#ff5a00;
    margin-bottom: 15px;
}

h6{
    font-family: 'zooja-pro', sans-serif;
    font-size: 2.8rem;   
    font-weight: 300; 
    line-height: 3.5rem;
    color:#ff5a00;
	margin-top: 15px;
    margin-bottom: 10px;
}

a{ 
    color: #ff5a00;
    text-decoration: none;
    }

a:hover{     
    text-decoration: underline; 
    }     

.alignleft{
    float: left;
    margin: 5px 25px 15px 0;
    }

.alignright{
    float: right;
    margin: 5px 0 15px 25px;
    }

blockquote {
    font-size: 2.7rem;
    font-weight: 400;
    line-height: 3.3rem;
    margin: 70px 50px 20px 50px;
    color:rgba(255,90,0,1);
    text-align: center;
}

.autor {
    text-align: center;
    color:#555;
    font-size: 2rem;
    font-weight: 300;
    line-height: 2.5rem;
    margin-bottom: 70px;
}
    
.button{
    background-color: white;
    border: 1px solid #ff5a00;
    padding: 8px 20px 8px;
    text-decoration: none;
    color:#ff5a00;
    letter-spacing: 1px;
    display: inline-block;
    transition: all 0.15s ease-out 0s;
    margin: 10px 0px 20px 0;
    border-radius: 50px;
}

.button:hover {
    background-color: #ff5a00;
    color: white; 
    text-decoration: none;
}

.center{
    text-align: center;
}

hr{
    border: 0.5px solid #555;
    margin: 50px auto;
    max-width: 700px;
    }

ul, ol{
    margin: 0 0 30px 30px;
    }

ul li::marker{
    color: #ff5a00; 
}

ol li::marker{
    color: #ff5a00; 
    font-weight: 600;
}

p {     
    margin: 0 0 10px; 
    }  

.sprungmarke{
    font-size: 2.2rem;
    font-weight: 400;
    line-height: 5rem;
    text-decoration: none;
}

/* Tabelle */ 
 
table{
    border-collapse: collapse;
    margin: 30px 0 50px;
    }
     
thead{
    background:rgba(255,90,0,1);
    color: white;
    }
    
th{
    padding: 3px 12px;
    font-size: 19px;
    text-align: left;
}

td{
    border-top: 4px solid white;
    padding: 5px 12px;
    border-right: 2px solid white;
    font-weight: 300;
    font-size: 18px;
    }
    
tbody tr:nth-child(even) {
    background-color: rgba(255,90,0,0.025)
    }
        
tbody tr:nth-child(odd) {
    background-color: rgba(255,90,0,0.1)
}

/* Formular */

.kontaktformular{
    display: none;
}

form label {
	display: block;
	font-weight: 600;
	margin: 20px 0 10px;
}

input[type='text'],
input[type='checkbox'],
input[type='radio'],
input[type='email'],
input[type='phone'],
textarea,
select {
	margin-bottom: 10px;
}

input[type='text'],
input[type='email'],
input[type='phone'],
textarea,
select {
	width: 100%;
	border: 1px solid transparent;
	padding: 5px;
	font: 400 1.125rem/1.55 'Outfit', Helvetica, Arial, sans-serif;
	border-radius: 0px;
    background-color:rgb(240, 240, 240);
}

textarea {
	height: 140px;
}

input:hover,
textarea:hover,
input:focus,
textarea:focus {
	border: 1px solid #ff5a00;
}

input[type='submit'] {
	font-size: 18px;
}

input[type='submit']:hover {
	background: #f04e37;
	color: #fff;
}

/* Header */

.abstand{
    margin-bottom: 5px;
}

/* Hero Teaser */

.hero {
    position: relative;
    background: #ffff59 url('../img/homepage/headergrafik_back-about.jpg') center center no-repeat;
    min-height: 600px;
    background-size: cover;
	background-position: center;
    background-attachment: fixed;
}

.hero .col_1{
    display: flex;
    justify-content: center; /* Horizontale Zentrierung */
}

.hero h1{ 
    text-shadow: 1px 1px 2px #333;
    font-size: clamp(8rem, 20vw, 13rem);
    text-align: center;
    margin-bottom: 20px;
}


.überlappen {
    position: relative; /* Kein absolutes Positionieren */
    max-width: 900px;
    margin: 0 auto 0; /* Zentrieren und oberhalb platzieren */
    background-color: white;
    border-radius: 20px;
    box-shadow: 0px 10px 20px 0 rgba(0, 0, 0, 0.1);
    padding: 30px;
    margin-bottom: 100px;
}

.hero p{
    font-size: 1.8rem;
    line-height: 2.7rem;
}

.orange {
    color:#ff5a00;
}

.hero a{
    text-decoration: none;
}

.hero a:hover{
    text-decoration: underline;
    background-color: transparent;
    color:#ff5a00;
}


/* Leistungen */

.leistung{
    margin-top:150px;
}

.leistung .versetzt{
    margin-top: 120px;
}

.leistung a {
    margin-bottom: 100px;
}

/* Standard-Reihenfolge (Desktop) */
.leistung .flex {
    display: flex;
    flex-direction: row; /* Elemente in einer Zeile anordnen */
}

.leistung .flex .bild {
    order: 1; /* Überschrift zuerst */
}

.leistung .flex .text {
    order: 2; /* Bild danach */
}


/* Vorstellung */

.back-about {
	background: #ecf4f6 url('../img/homepage/homepage_vorstellung.jpg') center center no-repeat;
	min-height: 500px;
    max-height: 500px;
	background-size: cover;
}

.vorstellung {
    padding-top: 0px;
    margin-bottom: 70px;
}

.vorstellung h2{
    margin-top: 35px;
}

.begrenzung {
    max-width: 800px;
}

/* Testimonial */

.testimonial {
    text-align: center;
    padding-top: 25px;
}

.testimonial blockquote {
    margin-bottom: 30px;
    margin-top: 30px;
    font-size: 1.7rem;
    line-height: 2.2rem;
}

.testimonial p {
    color:#555;
    font-weight: 400;
}

.testimonial .subline {
    font-weight: 200;
}


/* Testimonial Beispiel Internet */

.testimonial_2 {
	 padding: 0px 0px 40px 0px;
}

.testimonial_2 .row {
    display: flex;
    justify-content: center; /* Zentriert die Figuren horizontal */
    align-items: center; /* Falls nötig, zentriert sie vertikal */
}

.testimonial_2 .column.col_1 {
    display: flex;
    gap: 20px; /* Abstand zwischen den Figuren */
    justify-content: center;
    flex-wrap: wrap; /* Falls der Platz nicht reicht, rücken sie nach unten */
}

.snip1533 {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
  color: #9e9e9e;
  display: inline-block;
  font-size: 1.4rem;
  margin: 35px 10px 10px;
  max-width: 360px;
  min-width: 250px;
  position: relative;
  text-align: center;
  width: 100%;
  background-color: #ffffff;
  border-radius: 5px;
  border-top: 5px solid #ff5a00;
}

.snip1533 *,
.snip1533 *:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.1s ease-out;
  transition: all 0.1s ease-out;
}

.snip1533 figcaption {
  padding: 13% 10% 12%;
}

.snip1533 figcaption:before {
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  color: #ff5a00;
  content: "\f10e";
  font-family: 'Font Awesome 6 Free';
  font-size: 32px;
  font-style: normal;
  left: 50%;
  line-height: 60px;
  position: absolute;
  top: -30px;
  width: 60px;
}

.snip1533 blockquote {
  font-weight: 300;
  font-style: italic;
  font-size: 1.3rem;
  line-height: 1.9rem;
  margin: 0 0 20px;
  color: #333;
  text-align: left;
}

.snip1533 hr{
 margin: 30px auto 25px;
}

.snip1533 .name {
  color: #ff5a00;
  font-size: 1.3rem;
  font-weight: 300;
  line-height: 24px;
  margin: 10px 0 5px;
}

.snip1533 .organisation {
  color: #3c3c3c;
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 24px;
  margin: 10px 0 5px;
  opacity: 0.8;
}


/* Kontakt */

.kontakt {
    text-align: center;
}

.kontakt h2{
    margin-bottom: 0px;
}

.kontakt {
    margin-top: 20px;
}

.kontaktdaten .vertical{
    vertical-align: text-top;
}

/* Footer */

.footer .navigation_footer{
    padding-bottom: 20px;
    font-weight: 800;
    text-transform:uppercase;
}

.footer .navigation_footer .unterpunkt{
    padding-bottom: 10px;
    display: inline-block;
    text-transform: none;
    font-weight: 300;
}

.footer {
    font-size: 1.1rem;
    line-height: 1.7rem;
    padding-top: 30px;
    padding-bottom: 20px;
    font-weight: 300;
}

#logo_size {
    max-width: 50%;
    height: auto;
    }

.footer .kontaktdaten{
    text-align: center;
    }

.footer a{
    color: #333;
    text-decoration: none;
}

.footer a:hover, .unterpunkt:hover {
    color:#ff5a00;
    text-decoration: underline;
    background-color: transparent;
}

.footer_impressum {
    text-align: right;
}

/* Beispielseite */

.beispielseite{
    padding: 15px 0;
}

.beispielseite h1{
    margin-bottom: 45px;
}

.beispielseite h2{
    margin-top: 60px;
    margin-bottom: 20px;
}

/* Seite Über mich */

.titel_about .back-about{
    background: #ecf4f6 url('../img/about/about_header.jpg') center center no-repeat;
	min-height: 400px;
    max-height: 400px;
	background-size: cover;    
    background-attachment: fixed;
    margin: 0;
    display: flex; /* Aktiviert Flexbox */
    justify-content: center; /* Horizontale Zentrierung */
    align-items: center; /* Vertikale Zentrierung */
    height: 100%; /* Stellt sicher, dass der Container voll genutzt wird */
}

.titel_about h1{
    text-shadow: 1px 1px 2px #333;
}

.titel_about {
    padding: 0;
    margin-bottom: 50px;
}

.kennenlernen .back-about{
    background: #ecf4f6 url('../img/about/about_kennenlernen.jpg') center center no-repeat;
	min-height: 500px;
    max-height: 500px;
	background-size: cover;    
}

.arbeitsweise .back-about{
    background: #ecf4f6 url('../img/about/about_arbeitsweise.jpg') center center no-repeat;
	min-height: 500px;
    max-height: 500px;
	background-size: cover;   
}

.interessen .back-about{
    background: #ecf4f6 url('../img/about/about_interessen.jpg') center center no-repeat;
	min-height: 500px;
    max-height: 500px;
	background-size: cover;   
}

/* Standard-Reihenfolge (Desktop) */

.kennenlernen .flex, .interessen .flex {
    display: flex;
    flex-direction: row; /* Elemente in einer Zeile anordnen */
}

.kennenlernen .flex .text {
    order:2; /* Text zuerst */
}

.kennenlernen .flex .bild {
    order: 1; /* Bild danach */
}

.interessen .flex .text {
    order:2; /* Text zuerst */
}

.interessen .flex .bild {
    order: 1; /* Bild danach */
}

.zusammenarbeiten{
    text-align: center;
}

.projekte{
    text-align: center;
}

.projekte .link:before {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    }

.projekte .elternelement{
    position:relative;
}

.projekte a:hover{
    background-color: transparent;
}

.projekte .button{
    margin: 15px 25px 20px 25px;
}

.projekte .button:hover {
    background-color: #ff5a00;
    color: white; 
    text-decoration: none;
}

.box-shadow{
    box-shadow: 0px 0px 0px 0 rgba(0, 0, 0, 0);
    padding-top: 0px;
}


.zusammenarbeiten{
    margin-bottom: 50px;
}

/* Seite Zusammenarbeiten */

.titel_kontakt .back-about{
    background: #ecf4f6 url('../img/kontakt/kontakt_header_4.jpg') center center no-repeat;
	min-height: 400px;
    max-height: 400px;
	background-size: cover;    
    background-attachment: fixed;
    margin: 0;
    display: flex; /* Aktiviert Flexbox */
    justify-content: center; /* Horizontale Zentrierung */
    align-items: center; /* Vertikale Zentrierung */
    height: 100%; /* Stellt sicher, dass der Container voll genutzt wird */
}

.titel_kontakt {
    padding: 0;
    margin-bottom: 50px;
}

.titel_kontakt h1{
    text-shadow: 1px 1px 2px #333;
}

.kontaktdaten .wrapper{
    font-size: 2rem;
    line-height: 2.8rem;
}

.kontaktdaten a{
    text-decoration: none;
}

.kontaktdaten a:hover{
    text-decoration: underline;
    background-color: transparent;
    color: #ff5a00;
}

.kontaktfeld #navigation .kontakt_hervorhebung{
    color:white;
}

.kontaktfeld #navigation .kontakt_hervorhebung:hover{
    color:#fff;
}

.kontaktdaten h3{
    text-align: center;
}

.kontaktdaten table{
    border-collapse: collapse;
    margin: 30px 0 50px;
    }
    
.kontaktdaten td{
    border-top: 0px solid #333;
    border-bottom: 0px solid #333;
    border-right: 0px solid #333;
    padding: 5px 12px;
    font-weight: 300;
    font-size: 1.5rem;
    line-height: 2.4rem;
    }
    
.kontaktdaten tbody tr:nth-child(even) {
    background-color: white;
    }
        
.kontaktdaten tbody tr:nth-child(odd) {
    background-color: white;
}

.faq h2{
    text-align: center;
}

/* Akkordeon – https://codepen.io/vinsongrant/pen/qbGKed  */

.accordion {
	margin: 30px auto;
    max-width: 800px;
}

.toggle {
	display: none;
}

.option {
	position: relative;
	border-bottom: 1px solid #ccc;
}

.title,
.content {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	-webkit-transition: all 0.2s;
	transition: all 0.2s;
}

.title {
	background: #fff;
	padding: 10px 0 10px 30px;
	display: block;
	color:#333;
	font-weight: bold;
}

.title:after,
.title:before {
	content: '';
	position: absolute;
	left: 5px;
	top: 17px;
	width: 2px;
	height: 0.75em;
	background-color: #333;
	transition: all 0.2s;
}

.title:after {
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
}

.content {
	max-height: 0;
	overflow: hidden;
	background-color: #fff;
}

.content p {
	margin: 0;
	padding: 0 0 1em;
	line-height: 1.5;
}

.toggle:checked+.title,
.toggle:checked+.title+.content {
	/*   box-shadow: 3px 3px 6px #ddd, -3px 3px 6px #ddd; */
}

.toggle:checked+.title+.content {
	max-height: 500px;
}

.toggle:checked+.title:before {
	-webkit-transform: rotate(90deg) !important;
	transform: rotate(90deg) !important;
}

label {
	cursor: pointer;
	margin: 10px 0 10px;
}

/* Leistung Grafik */

.grafikdesign h1{
    text-shadow: 1px 1px 2px #333;
}

.grafikdesign .back-about{
    background: #ecf4f6 url('../img/grafik/grafik_headerbild_3.jpg') center center no-repeat;
	min-height: 400px;
    max-height: 400px;
	background-size: cover;
    background-attachment: fixed;
    margin: 0;
    display: flex; /* Aktiviert Flexbox */
    justify-content: center; /* Horizontale Zentrierung */
    align-items: center; /* Vertikale Zentrierung */
    height: 100%; /* Stellt sicher, dass der Container voll genutzt wird */
}

.rand{
    border-left: 1px solid #333;
}

.einfuehrung .sprungmarke{
    margin-left: 30px;
}

.einfuehrung{
    margin-top: 50px;
    margin-bottom: 0px;
}

.absatz{
    margin-top: 10%;
    max-width: 40%;
}

.einfuehrung .vertikal {
  padding-top: 30px;
}

/* Slider */
.slick-prev::before,
.slick-next::before {
color: white;
}

.slick-dots li button::before {
    font-size: 30px;
    margin-top: 10px;
    color: #ff5a00;
    }

/* Projekte Grafik */

.bildergalerie p{
    border-left: 1px solid #333;
    padding-left: 30px;
}

/* Slider */
.one-time2 .slick-dots li button::before {
    font-size: 40px;
    margin-top: 10px;
    color: #ff5a00;
    font-weight: 500;
    }


/* Lightbox */
#images img {
    max-width: 300px;
    margin: 0 35px;
    }

#images video {
	 max-width: 300px;
    margin: 0 35px;
    }

/* Illustration */
.illustration h1{
    text-shadow: 1px 1px 2px #333;
}

.illustration .back-about{
    background: #ecf4f6 url('../img/illustration/illustration_headerbild_2.jpg') center center no-repeat;
	min-height: 400px;
    max-height: 400px;
	background-size: cover;
    background-attachment: fixed;
    margin: 0;
    display: flex; /* Aktiviert Flexbox */
    justify-content: center; /* Horizontale Zentrierung */
    align-items: center; /* Vertikale Zentrierung */
    height: 100%; /* Stellt sicher, dass der Container voll genutzt wird */
}

.einfuehrung .vertikal2{
    padding-top: 40px;
}

/* Video */

.video h1 {
    text-shadow: 1px 1px 2px #333;
}

#collage{
    display: none;
}

.video .back-about{
    background: #ecf4f6 url('../img/video/video_headerbild.jpg') center center no-repeat;
	min-height: 400px;
    max-height: 400px;
	background-size: cover;
    background-attachment: fixed;
    margin: 0;
    display: flex; /* Aktiviert Flexbox */
    justify-content: center; /* Horizontale Zentrierung */
    align-items: center; /* Vertikale Zentrierung */
    height: 100%; /* Stellt sicher, dass der Container voll genutzt wird */
}

/* Flex */

/* Standard-Reihenfolge (Desktop) */
.grafikdesign .flex,
.illustration .flex,
.video .flex {
    display: flex;
}

/* Standard-Reihenfolge (Desktop) */
.grafikdesign .flex .text,
.illustration .flex .text,
.video .flex .text {
    order:1; /* Text zuerst */
}

.grafikdesign .flex .bild,
.illustration .flex .bild,
.video .flex .bild {
    order: 2; /* Bild danach */
}

/* Header Leistungen*/
.grafikdesign, .illustration, .video {
    padding: 0;
}

/* Grafik, Illustration, Video Beschriftung vertikal ausgerichtet */

.grafikdesign .bildergalerie .zentriert, .illustration .bildergalerie .zentriert, .video .bildergalerie .zentriert{
    display: flex; /* Aktiviert Flexbox */
    align-items: center; /* Vertikale Zentrierung */
}


/* Impressum */
.impressum2, .datenschutz {
    font-size: 1.2rem;
    font-family: 'Outfit', Helvetica, Arial, sans-serif;
    line-height: 1.9rem;
    color: #333;
    font-weight: 300;
    text-align: left;
    }

.impressum3, .datenschutz2{
    display: flex;
    justify-content: center; /* Horizontale Zentrierung */
    align-items: center; /* Vertikale Zentrierung */
}



/* Media Queries */

@media only screen and (max-width: 2000px) {
	
.titel_about .back-about, .titel_kontakt .back-about, .grafikdesign .back-about, .illustration .back-about, .video .back-about{
	background-attachment: scroll; /* Deaktiviert den Parallax-Effekt */
}
	
.hero {
	background-attachment: scroll; /* Deaktiviert den Parallax-Effekt */
}	
	
}

@media only screen and (max-width: 1200px){
.hero .col_1_2 {width: 100%;}

html{ font-size: 90%; }


h2 {
    font-size: 8rem;
}

section{
    padding: 30px 60px;
}

/* Hero Teaser */

.überlappen {
    max-width: 800px;
}

/* Leistungen */

.leistung .versetzt{
    margin-top: 80px;
}

.h2_rechts {
    margin-left: 0px;
}

.h2_links {
    position: relative;
    right: 0px;
}

/* Vorstellung */
.vorstellung {
    padding: 0;
}

/* Testiomonials */

.testimonial blockquote {
    font-size: 1.5rem;
    line-height: 2.0rem;
}


/* Seite Über mich */
.arbeitsweise, .interessen, .kennenlernen{
    padding-left: 0;
    padding-right: 0;
}

.einfuehrung .vertikal {
    padding-top: 15px;
  }

/* Projekte Illustration */
.einfuehrung .vertikal2{
    padding-top: 30px;
}

 
@media only screen and (max-width: 950px) {
.col_1, 
.col_1_2, 
.col_1_3, 
.col_2_3, 
.col_1_4, 
.col_3_4,
.no-gutter .col_1_2, 
.no-gutter .col_1_3,
.no-gutter .col_2_3 , 
.no-gutter .col_1_4, 
.no-gutter .col_3_4{
width: 100%;
}
.column{
margin-left: 0;
}

html{ font-size: 75%; }

header .col_1_4{
    text-align: center;
    margin-top: 15px;
}

h2 {
    margin-bottom: 10px;
    font-size: 7rem;
}

h3 {
    margin-bottom: 10px;
}

.titel_about .back-about, .titel_kontakt .back-about, .grafikdesign .back-about, .illustration .back-about, .video .back-about{
	min-height: 250px;
    max-height: 250px;
	background-attachment: scroll; /* Deaktiviert den Parallax-Effekt */
	background-position: top; /* Optional: andere Bildposition für kleinere Bildschirme */
	min-height: 400px; /* Optional: kleinere Höhe für Mobilgeräte */
}

.testimonial .column,
footer .wrapper {
    max-width: 360px;
    margin: 25px auto 50px;
    float: none;
}

.button{
    margin-top: 5px;
}

section{
    padding: 10px 10px;
}
	
	
.impressum3, .datenschutz2{
    display: flex;
    justify-content: center; /* Horizontale Zentrierung */
    align-items: center; /* Vertikale Zentrierung */
	padding: 20px 0;
}
	
	
.abstand{
    margin:0px;
}

hr {
    border: 0.5px solid #555;
    margin: 30px auto 50px;
    max-width: 360px;
}

.flex .text {
    order:2; /* Text danach */
}

.flex .bild {
    order: 1; /* Bild zuerst */
}

.flex {
    flex-direction: column; /* Elemente untereinander anordnen */
}

/* Responsive Navigation */

.abstand{
    margin-bottom: 25px;
}

nav {
    height: 0;
    transition:height .2s ease-in-out;
    overflow: hidden;
}
.nav-toggle {
    display: block;
}
#nav-open:target .nav-closed {
    display: block;
}
.nav-closed,
#nav-closed:target .nav-closed,
#nav-open:target .nav-open {
    display: none;
}

#nav-open:target nav {
    display: block;
    height: 370px;
}

#navigation {
    margin-top: 15px;
    float: none;
    border-bottom: 1px solid #ccc;
}
#navigation li {
    display: block;
    margin-left: 0;
    text-align: left;
    border-top: 1px solid #ccc;
}
#navigation li a {
    margin-left: 0;
    display: block;
    padding: 15px 30px;
    font-weight: 300;
}
#navigation ul {
    position: relative;
    display: block;
    top: 0;
    left: 0;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    width: 100%;
    margin-bottom: 0;
}
#navigation ul li a {
    border-bottom: 0;
    padding: 15px 15px 15px 20px;
    font-size: 1.4rem;
}


/* Hero Teaser */


.hero {
	background-attachment: scroll; /* Deaktiviert den Parallax-Effekt */
	background-position: top; /* Optional: andere Bildposition für kleinere Bildschirme */
	min-height: 400px; /* Optional: kleinere Höhe für Mobilgeräte */
}

.überlappen {
    position: relative; /* Kein absolutes Positionieren */
    max-width: 800px;
    margin: 0 auto 0; /* Zentrieren und oberhalb platzieren */
    background-color: white;
    border-radius: 20px;
    box-shadow: 0px 10px 20px 0 rgba(0, 0, 0, 0.1);
    padding: 25px;
    margin-bottom: 100px;
}

/* Leistungen */

.leistung{
    margin-top:90px;
}

.leistung .versetzt{
    margin-top: 30px;
}

.leistung a {
    margin-bottom: 0;
}

.leistung {
    margin-left: 25px;
    margin-right: 25px;
}

.leistung .flex {
    flex-direction: column; /* Elemente untereinander anordnen */
}

.leistung .flex .text {
    order: 1; /* Text vor dem Bild */
}

.leistung .flex .bild {
    order: 2; /* Bild nach dem Text */
}

/* Vorstellung */

.vorstellung {
    margin-top: 20px;
    margin-bottom: 0px;
    padding: 30px 0px 0px;
}

.vorstellung h2{
    margin-top: 15px;
}

/* Kontakt */

.kontakt {
    text-align: center;
}

.kontakt h2{
    margin-bottom: 0px;
}

.kontakt .button {
    margin-left: 25px;
}

.kontakt a{
    font-size: 1.2rem;
    line-height: 1.7rem;
}

/* Footer */

.footer .kontaktdaten{
    text-align: left;
    }

.footer_impressum {
    text-align:left
}

.bildnachweise {
    max-width: 360px;
}

/* Seite Über mich */

.kennenlernen .col_1_2, .interessen .col_1_2, .arbeitsweise .col_1_2 {
    padding-bottom: 30px;
}

.kennenlernen .back-about, .arbeitsweise .back-about, .interessen .back-about{
    margin-bottom: 40px;
}

.kennenlernen .flex, .interessen .flex {
    flex-direction: column; /* Elemente untereinander anordnen */
}

.kennenlernen .flex .text {
    order:1; /* Text zuerst */
}

.kennenlernen .flex .bild {
    order: 2; /* Bild danach */
}

.interessen .flex .text {
    order:1; /* Text zuerst */
}

.interessen .flex .bild {
    order: 2; /* Bild danach */
}

.box-shadow{
    box-shadow: 0px 10px 20px 0 rgba(0, 0, 0, .1);
    padding-top: 50px;
}

/* Grafikdesign */
.absatz{
    margin-top: 5%;
    max-width: none;
}

/* Illustration */


.bildergalerie .textblock{
    margin-top: 20px;
    margin-bottom: 90px
}

.einfuehrung{
    margin-top: 20px;
    margin-bottom: 60px;
}

/* Slider */
.one-time2 .slick-dots li button::before {
    font-size: 30px;
    margin-top: 10px;
    color: #ff5a00;
    font-weight: 500;
    }


/*Flex*/

/* Standard-Reihenfolge (Desktop) */
.grafikdesign .flex,
.illustration .flex, 
.video .flex {
    display: flex;
}

/* Standard-Reihenfolge (Desktop) */
.grafikdesign .flex .text,
.illustration .flex .text,
.video .flex .text {
    order:2; /* Text zuerst */
}

.grafikdesign .flex .bild,
.illustration .flex .bild,
.video .flex .bild {
    order: 1; /* Bild danach */
}

}

/* Druckformatierung */
 
@media print {
 
    header, footer {
    display: none;
    }
     
    p, blockquote{ 
    font-family: Arial, sans-serif;
    font-size: 10pt;
    }
     
    h1, h2, h3, h4, h5, h6 { 
    font-family: Arial, sans-serif; 
    font-size: 18pt; 
    color: #000;
    font-style: normal;
    }
     
    section{
    padding: 0;
    }
     