@charset "utf-8";

/*
==================================================================
Style-Sheet Werbemanufaktur - Dominik Wolff
Copyrights: Dominik Wolff
Stand: April 2022 | Januar 2024
Inhalt:

1. Kalibrierung
2. Allgemeine Styles
3. Layout-Styles
4. Formular
==================================================================
*/

/*
==================================================================
1. Kalibrierung
==================================================================
*/

* {
	margin: 0;
	padding: 0;
	border: 0;
}

html { height: 101%; } /* Kein Sprung bei Mozilla, wenn die Seite sehr kurz ist (Erscheinen und Verschwinden der Scrollbalken). */

main { display: block; } /* main - Element nicht im IE unterstüzt. */

html { scroll-behavior: smooth; } /* Softes Scrollen mit CSS */

/*
==================================================================
2. Allgemeine Styles
==================================================================
*/

/*
Schrift
*/

@font-face {
    font-family: 'Muli-Bold';
    src: url('../fonts/Muli-Bold.woff2') format('woff2'),
         url('../fonts/Muli-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Muli-Regular';
    src: url('../fonts/Muli-Regular.woff2') format('woff2'),
         url('../fonts/Muli-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

body {
	font-family: 'Muli-Regular', sans-serif;
	font-size: 16px;
	color: #000000;
	-webkit-text-size-adjust: none; /* Unterdrueckung Skalierung der Schrift im Landscape Modus */
	text-size-adjust: none;
}

p {	
	line-height: 1.6;
	padding-bottom: 20px;
	text-align: justify;
    hyphens: auto; /* Silbentrennung */
}

.rot { color: #c20016; }

.fett { font-family: 'Muli-Bold', sans-serif; }

.klein { font-size: 13px; }

strong { font-weight: normal; }

/*
Überschriften
*/

h1, h2, h3, h4 {
	font-family: 'Muli-Bold', sans-serif;
	font-weight: bold;
	color: #b9b9b9;
	line-height: 1.4;
}

h1 { 
	font-size: 48px;
	text-align: center;
	padding-bottom: 180px;
}

h2 { 
	font-size: 36px;
	text-align: center;
	padding-bottom: 180px;
}

h3 { 
	font-size: 24px;
	color: #000000;
	padding-bottom: 20px;
}

h4 { 
	font-size: 16px;
	line-height: 1.6;
	color: #000000;
	padding: 0px;
}

@media only screen and (max-width : 980px) {
	
	h1 { 
		font-size: 30px;
		padding-bottom: 60px;
	}
	
	h2 { 
		font-size: 24px;
		padding-bottom: 60px;
	}
	
	h3 { 
		font-size: 18px;
		padding-bottom: 60px;
		text-align: center;
	}
}

/*
Hyperlinks
*/

a {
	outline: none;
	text-decoration: none;
	border-bottom: 1px dashed;
	line-height: 1.6;
}

a:link, a:visited {
	color: #000000;
	-webkit-transition: color 0.5s ease-in-out;
	transition: color 0.5s ease-in-out;
}

a:hover, a:focus { 
	color: #c20016;
	border-bottom: 1px dashed;
}

.nodashed,
#zeichenOben,
#scrollZeichen a,
#navigationObenResponsive,
.dreispaltenLogo a,
#untenLogo a { border-bottom: none !important; }

/* Trennlinie */

hr {
	border-bottom: 1px dashed #000000;
	border-width: thin;
	width: 100%;
	margin: 160px 0px 180px 0px;
	text-align: left; /* Extra für Opera und IE - das Sie eine Linie automatisch in der Mitte zentrieren und damit margin nicht wirkt. */
}

@media only screen and (max-width : 980px) {
	
	hr { margin: 40px 0px 60px 0px;	}
}

/*
==================================================================
3. Layout-Styles
==================================================================
*/

body { background-color: #FFFFFF; }

#wrapper {
	width: 100%;
	-webkit-animation: fadeinWrapper 1s ease-in;
	animation: fadeinWrapper 1s ease-in;
}

@-webkit-keyframes fadeinWrapper {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeinWrapper {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Overlay Navigation */

.overlay {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 10;
    top: 0;
    left: 0;
    background-color: #FFFFFF;
    overflow-x: hidden;
    transition: 0.5s;
}

.overlay-content {
    position: relative;
    top: 25%;
    width: 100%;
    text-align: center;
    margin-top: 30px;
}

.overlay a {
    display: block;
	font-size: 18px;
    color: #b9b9b9;
	padding: 12px;
	border-bottom: none !important;
}

.overlay a:hover,
.overlay a:focus { color: #c20016; }

.overlay .closebtn {
    position: absolute;
    top: 0px;
    right: 10px;
    font-size: 60px;
}

/* Ende Overlay Navigation */


/* Scroll-Navigation */

#obenScroll { 
	width: 100%;
	padding: 20px 0px;
	background-color: #FFFFFF;
	position: fixed;
	top: -70px; /* verstecken */
	transition: top 1s; /* Sliding-Effekt */
	z-index: 3;
}

#obenScrollNavigationRahmen {
	width: 90%;
	margin: 0 auto;
}

#scrollZeichen a { 
	font-family: 'Muli-Bold', sans-serif;
	color: #b9b9b9 !important;
}

#scrollZeichen a:hover, #scrollZeichen a:focus { color: #c20016 !important; }

#obenScrollNavigation { 
	float: right;
	padding-top: 0px;
}

#obenScrollNavigation a:link,
#obenScrollNavigation a:visited,
#scrollObenResponsive:link,
#scrollObenResponsive:visited { 
	font-family: 'Muli-Bold', sans-serif;
	font-size: 14px;
	color: #b9b9b9;
	border-bottom: none;
}

#scrollObenResponsive:link,
#scrollObenResponsive:visited { font-size: 15px; }

#obenScrollNavigation a:hover,
#obenScrollNavigation a:focus,
#scrollObenResponsive:hover,
#scrollObenResponsive:focus {
	color: #c20016;
	border-bottom: 1px dashed;
}

#scrollObenResponsive { display: none; }

#kontaktScrollOben {
	padding: 8px 14px 10px 14px;
	color: #FFFFFF !important;
	background-color: #c20016;
	border: 2px solid #c20016 !important;
	cursor: pointer;
	-webkit-transition: all 1s ease-in-out !important;
	transition: all 1s ease-in-out !important;
}

#kontaktScrollOben:hover, 
#kontaktScrollOben:focus { 
	background-color: #FFFFFF;
	color: #c20016 !important;
}

#leistungenScrollOben, #referenzenScrollOben, #preiseScrollOben, #stellenangeboteScrollOben, #uebersetzerScrollOben { margin-right: 12px; }

#uebersetzerScrollOben { vertical-align: middle; }



@media only screen and (max-width : 980px) { 
	
	#obenScrollNavigation { display: none; } 
	
	#scrollObenResponsive {
		display: inline;
		float: right;
	}
}

/* Ende Scroll-Navigation */

/* Navigation */

#oben { 
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	padding: 20px 0px;
}

#obenNavigationRahmen {
	width: 90%;
	margin: 0 auto;
}

#zeichenOben {
	float: left;
	height: 173px;
	width: auto;
	-webkit-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}

#zeichenOben:hover { transform: scale(0.95); }

#obenNavigation { 
	float: right;
	padding-top: 70px;
}

#obenNavigation a:link,
#obenNavigation a:visited { 
	font-family: 'Muli-Bold', sans-serif;
	font-size: 14px;
	color: #FFFFFF;
	border-bottom: none;
}

#navigationObenResponsive a:link,
#navigationObenResponsive a:visited { 
	font-size: 14px;
	color: #FFFFFF;
	border-bottom: none;
}

#obenNavigation a:hover,
#obenNavigation a:focus,
#navigationObenResponsive a:hover,
#navigationObenResponsive a:focus { border-bottom: 1px dashed; }

#kontaktOben {
	border: 2px solid #FFFFFF !important;
	padding: 8px 14px 10px 14px;
	cursor: pointer;
	-webkit-transition: all 1s ease-in-out !important;
	transition: all 1s ease-in-out !important;
}

#kontaktOben:hover, 
#kontaktOben:focus { background-color: #c20016; }

#leistungenOben, #referenzenOben, #preiseOben, #stellenangeboteOben, #uebersetzerOben { margin-right: 12px; }

#uebersetzerOben { vertical-align: middle; }

@media only screen and (max-width : 1080px) { 
	
	#zeichenOben {  
		height: 130px;
		width: auto;
	}
	
	#obenNavigation { padding-top: 45px; }
}

@media only screen and (max-width : 980px) { 
	
	#zeichenOben { display: none; }
	
	#obenNavigation {
		padding-top: 15px;
		float: none;
		text-align: center;
	}
}

@media only screen and (min-width : 650px) { #navigationObenResponsive, #uebersetzerResponsive { display: none; } }

@media only screen and (max-width : 660px) {
	
	#obenNavigation { display: none; }
	
	#obenNavigationRahmen {
		max-width: 90%;
		margin: 0 auto;
	}
	
	#navigationObenResponsive {
		display: inline;
		margin-top: 0px;
	}
	
	#navigationObenResponsive a { font-size: 16px !important; }
	
	#uebersetzerResponsive { 
		display: inline;
		margin-left: 5px;
	}
	
	#uebersetzerResponsive img { 
		vertical-align: middle;
		height: 13px;
		width: auto;
	}
}

@media only screen and (max-width : 200px) { 
	
	#navigationObenResponsive a span { display: none; }
	
	#navigationObenResponsive a { font-size: 26px !important; }
}

/* Ende Navigation */

#bildOben {
	width: 100%;
	height: auto;
}

main {
	width: 90%;
	margin: 0 auto;
	padding: 200px 0px 0px 0px;
}

@media only screen and (max-width : 980px) { main { padding: 60px 0px 0px 0px; } }

.button {
	border: 2px solid #c20016 !important;
	background-color: #FFFFFF;
	color: #c20016 !important;
	padding: 8px 14px 10px 14px;
	cursor: pointer;
	-webkit-transition: all 0.6s ease-in-out !important;
	transition: all 0.6s ease-in-out !important;
}

.button:hover, 
.button:focus { 
	background-color: #c20016;
	color: #FFFFFF !important;
}

@media only screen and (max-width : 980px) { 
	
	.button {
		display: block;
		text-align: center;
		margin-bottom: 20px;
	}
}

.buttonZeile {
    display: inline-block;
    margin: 0px 0px 5px 0px;
}

.bildInhalt {
	width: 100%;
	height: auto;
}    

/* eine Spalte - Impressum, Datenschutz etc. */

.eineSpalte { padding-bottom: 180px; }

.eineSpalteExtra h2 { padding: 100px 0px 120px 0px; }

@media only screen and (max-width : 980px) { 
	
	.eineSpalte { padding-bottom: 40px; }

	.eineSpalte h2 { padding: 40px 0px 60px 0px; }
}

/* zwei Spalten - getrennt */

.zweiSpaltenLinks {
	float: left;
	width: 47%;
	padding-right: 3%;
	margin-bottom: 180px;
}

.zweiSpaltenRechts {
	float: right;
	width: 47%;
	padding-left: 3%;
	margin-bottom: 180px;
}

.zweiSpaltenLinks img,
.zweiSpaltenRechts img {
	width: 100%;
	height: auto;
}

@media only screen and (max-width : 980px) { 
	.zweiSpaltenLinks,
	.zweiSpaltenRechts {
		float: none;
		width: 100%;
		margin-bottom: 60px;
		padding: 0%;
	}
	
	.zweiSpaltenLinks p:last-of-type,
	.zweiSpaltenRechts p:last-of-type { padding-bottom: 0px; }
	
	.zweiSpaltenLinks .button,
	.zweiSpaltenRechts .button { margin-top: 20px; }
	
}

/* 3 Spalten Floating */

.flexContainer {
   display: -webkit-flex;
   display: flex;
   -webkit-flex-wrap: wrap;
   flex-wrap: wrap;
}

.divFloater {
	float: left;
	width: 30%;
	padding-right: 5%;
}

.divFloater:nth-of-type(3),
.divFloater:nth-of-type(6) { padding-right: 0%; }

.divFloater:nth-of-type(3),
.divFloater:nth-of-type(6) { padding-bottom: 180px; }

.divFloater img {
	width: 100%;
	height: auto;
	-webkit-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}

@media only screen and (max-width : 980px) { 
	
	.divFloater {
		float: none;
		width: 100%;
		padding-right: 0;
		padding-bottom: 40px;
	}
	
	.divFloater:nth-of-type(3),
	.divFloater:nth-of-type(6) { padding-bottom: 60px; }
}

.divFloater a img:hover { 
    transform: scale(0.9); 
    filter: drop-shadow(0 0 40px rgba(0, 0, 0, 0.3));
}

.divFloater h2 {
	font-size: 28px;
	color: #000000;
	text-align: left;
	padding: 20px 0px 10px 0px;
}

.divFloater h2 span { display: block; }

.divFloater h3 div { display: block; }

@media only screen and (max-width : 980px) { 
	
	.divFloater h2 { 
		font-size: 22px;
		text-align: center;
		padding: 40px 0px 30px 0px;
	}
	
	.divFloater h2 span { display: inline; }
	
	.divFloater h3 div { display: inline; }
}

/* drei Spalten - getrennt */

.dreiSpaltenLinks, 
.dreiSpaltenMitte,
.dreiSpaltenRechts {
	width: 30%;
	float: left;
}

.dreiSpaltenLinks, 
.dreiSpaltenMitte { margin-right: 5%; }

.dreispaltenLogo img {
	width: 100%;
	height: auto;
	-webkit-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}

.dreispaltenLogo img:hover { 
    transform: scale(0.95);
    filter: drop-shadow(0 0 40px rgba(0, 0, 0, 0.3));
}

@media only screen and (max-width : 980px) { 
	
	.dreiSpaltenLinks, 
	.dreiSpaltenMitte,
	.dreiSpaltenRechts {
		width: 100%;
		float: none;
	}

	.dreiSpaltenLinks, 
	.dreiSpaltenMitte { margin-right: 0; }
	
	.dreispaltenLogo img {
		max-width: 240px;
		height: auto;
		margin-bottom: 30px;
	}
}

/* Spalten - nicht getrennt */

.spaltenFloating {
	column-count: 3;
	column-gap: 5%;
	margin-bottom: 180px;
}

@media only screen and (max-width : 980px) { .spaltenFloating p { text-align: left; } }

@media only screen and (max-width : 600px) { .spaltenFloating { column-count: 1; column-gap: 0%; } }

footer {
	background: #c20016; /* fallback */
	background: -webkit-linear-gradient(160deg, rgba(194,0,22,1) 43%, rgba(83,0,9,1) 100%);
	background: linear-gradient(160deg, rgba(194,0,22,1) 43%, rgba(83,0,9,1) 100%);
	padding: 200px 0px 180px 0px;
	color: #FFFFFF;
}

@media only screen and (max-width : 980px) {
	footer { padding: 80px 0px 40px 0px; }
}

#untenNavigationRahmen {
	width: 90%;
	margin: 0 auto;
}

footer h4 { 
	font-size: 22px;
	color: #FFFFFF; 
	margin-bottom: 20px;
}

footer p { text-align: left; }

#untenLogo, 
#untenKontakt,
#untenNavigation {
	width: 30%;
	float: left;
}

#untenLogo, 
#untenKontakt { margin-right: 5%; }

@media only screen and (max-width : 980px) {
	
	#untenLogo, 
	#untenKontakt,
	#untenNavigation {
		width: 100%;
		float: none;
	}
	
	#untenLogo, 
	#untenKontakt { margin-right: 0; }
}

#untenLogo img {
	width: 100%;
	height: auto;
	-webkit-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}

#untenLogo img:hover { 
    filter: drop-shadow(0 0 60px rgba(255, 255, 255, 0.7));
    transform: scale(0.95); }

@media only screen and (max-width : 980px) {
	
	#untenLogo img {
		max-width: 240px;
		height: auto;
		margin-bottom: 30px;
	}
}

footer a:link, 
footer a:visited { 
	color: #FFFFFF;
	border-bottom: none;
}

footer a:hover,
footer a:focus {
	text-decoration: none;
	border-bottom: 1px dashed;
}

footer #untenKontakt a:link, 
footer #untenKontakt a:visited { border-bottom: 1px dashed; }

footer #untenKontakt a:hover,
footer #untenKontakt a:focus { border-bottom: 1px solid; }

#emailUnten { 
	font-family: 'Muli-Bold', sans-serif;
	font-size: 24px;
}

#telefonUnten { 
	font-family: 'Muli-Bold', sans-serif;
	font-size: 38px;
}

#whatsAppUnten { 
	font-family: 'Muli-Bold', sans-serif;
	font-size: 24px;
}

@media only screen and (min-width : 980px) and (max-width : 1800px) { 
	
	#emailUnten { font-size: 16px; }

	#telefonUnten { font-size: 16px; }

	#whatsAppUnten { font-size: 16px; }
}

@media only screen and (max-width : 550px) { 
	
	#emailUnten { font-size: 16px; }

	#telefonUnten { font-size: 26px; }

	#whatsAppUnten { font-size: 24px; }
}

#responsiveFooterDiv { height: 170px; }

.clear {
	clear: both;
	width: 0px;
	height: 0px;
}

/* Startseite */

#referenzKunden { padding-bottom: 180px; }

#referenzKunden img {
	width: 10%;
	height: auto;
	padding: 1%;
    filter: none;
    opacity: 1;
    transition: filter 0.5s, opacity 0.5s;;
}

#referenzKunden img:hover {
    filter: grayscale(100%);
    opacity: 0.5;
}

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

	#referenzKunden img {
		width: 15.5%;
		height: auto;
		padding: 2%;
	}
}

@media only screen and (max-width : 980px) {
	
	#referenzKunden { padding-bottom: 20px; }

	#referenzKunden img {
		width: 28%;
		height: auto;
		padding: 2%;
	}
}

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

	#referenzKunden img {
		width: 45%;
		height: auto;
		padding: 2%;
	}
}

.startBilder {
    width: 100%;
    height: auto;
    padding-bottom: 20px;
}

/* Referenzen-Seite */

.referenzRahmen {
    width: 23%;
    margin: 1%;
	background-color: #F7F7F7;
}

@media only screen and (max-width :1400px) { 
	
	 .referenzRahmen {
		width: 31%;
		margin: 1%;
	}
}

@media only screen and (max-width : 980px) { 
	
	 .referenzRahmen {
		width: 46%;
		margin: 2%;
	}
}

@media only screen and (max-width : 550px) { 
	
	 .referenzRahmen {
		width: 100%;
		margin: 3% 0;
	}
}

.referenzRahmen img {
    width: 100%;
    height: auto;
}

.referenzRahmen h3 { padding: 20px; }

.referenzRahmen p { padding: 0px 20px 20px 20px; }

/* Impressum */

#impressumSicherheit { max-width: 100%; height: auto; }

#impressumFahne {
	width: 200px;
	height: auto;
	padding-top: 10px;
}

/*
==================================================================
4. Formular
==================================================================
*/

form {
    margin: 60px 0px 0px 0px;
}

label {
	display: block;
	font-size: 16px;
	padding-bottom: 10px;
}

input {
	height: 26px;
	width: 100%;
	padding: 3px;
	margin: 0px auto;
	margin-bottom: 30px;
	background-color: #F4F4F4;
	font-family: 'Muli-Regular', sans-serif;
	font-size: 16px;
	color: #000000;
}

textarea {
	height: 223px;
	width: 100%;
	padding: 3px;
	margin-bottom: 40px;
	background-color: #F4F4F4;
	font-family: 'Muli-Regular', sans-serif;
	font-size: 16px;
	color: #000000;
}

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

.checkboxContainer { 
    white-space: nowrap;
    margin-bottom: 40px;
}

.checkboxContainer label, .checkboxContainer input {
    margin: 0;
    padding: 0;
    display: inline-block;
    vertical-align: middle;
}

.checkboxContainer input {
    width: 24px;
    height: 24px;
}

#senden {
	height: 60px;
	width: auto;
	padding: 0px 20px;
	cursor: pointer;
	background-color: #FFFFFF;
	border: 2px solid #c20016;
	font-family: 'Muli-Regular', sans-serif;
	font-size: 16px;
	color: #c20016;
	-webkit-transition: all 1s ease-in-out;
	transition: all 1s ease-in-out;
}

#senden:hover, 
#senden:active { 
	background-color: #c20016;
	color: #FFFFFF;
}

@media only screen and (max-width : 980px) {
	
	label { text-align: center; }
	
    #email { margin-bottom: 0px; }
    
    textarea { margin-bottom: 50px; }
    
    .checkboxContainer { margin-bottom: 50px; }
    
	#senden { 
        width: 100%;
        margin-bottom: 20px;
    }
}

#fehlermeldung { margin: 20px 0px 0px 0px; }

/*
==================================================================
Ende Stylesheet
==================================================================
*/