@charset "utf-8";

*{
    margin:0 auto;
}
/*------------------------BEGIN CSS RESET----------------------*/
html, body, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6,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, 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;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

/* make sure to set some focus styles for accessibility */
:focus {
    outline: 0;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}

body{
	line-height:130%;
    font-family: Arial, Helvetica, sans-serif;
}

ol, ul{
	list-style: none;
}

blockquote, q{
	quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after{
	content: '';
	content: none;
}
table{
	border-collapse: collapse;
	border-spacing: 0;
}
/*------------------------END CSS RESET----------------------*/

/*---------------- BEGIN GLOBALES SETTING ----------------------*/

:root {
	--ce-color: #e62900;
	--ce-font: Tahoma, Verdana, Arial, Helvetica, sans-serif;
}


/*---------------- END GLOBALES SETTING ----------------------*/

/*---------------- BEGIN BODY ----------------------*/

body {
	background-color: white;
	color: #2c2c2c;
	font-family: var(--ce-font);
	font-size: 100%;
}

#wrapper{
    width:100%;
}

/*---------------- END BODY ----------------------*/

/*------------------------BEGIN HEADER / NAV ----------------------*/

header {
	position: fixed;
	width: 100%;
	top: 0px;
	z-index: 9998;
	background: darkgray;
	box-sizing: border-box;
	display: flex;
}

nav {
	margin: 0 auto;
	padding: 6px 0px 6px 0px;
	box-sizing: border-box;
}

#nav-head, #nav-start, #nav-lang, #nav-mobile {
	float: left;
}



#nav-mobile, #menu-mobile {
	display: none;
}

nav ul {
	list-style-type: none;
	margin: 0 auto;
	float: left;
}

nav li {
	list-style-type: none;
	color: white;
}

/*------------------------END HEADER / NAV----------------------*/

/*------------------------BEGIN MAIN----------------------*/

main {
	margin: 0 auto;
	width: 95%;
}

#logo {
	width: 60em;
	margin-top: 150px;
	padding: 9px;
	box-sizing: border-box;
	float: left;
	text-align: left;
}

#frame {
	width: auto;
	margin-top: 150px;
	margin-right: 30px;
	padding: 9px;
	box-sizing: border-box;
	float: left;
	text-align: right;
}

#contact-bar {
	width: 20em;
    height: auto;
	margin: 0 auto;
	padding: 6px 20px 6px 20px;
    -moz-box-shadow: 0 0 9px -4px #000;
    -webkit-box-shadow: 0 0 9px -4px #000;
    box-shadow: 0 0 9px -4px #000;
	box-sizing: border-box;
	border: 1px solid var(--ce-color);
	border-radius: 50px;
	background: white;
	position: fixed;
	bottom: 90px;
	right: 30px;
	color: #2c2c2c;
	text-align: center;
	line-height: 1.3em;
	z-index: 9999;
}

article {
	margin-top: 150px;
	margin-bottom: 150px;
	width: 27em;
	float: left;
}

/*------------------------END MAIN----------------------*/

/*------------------------BEGIN FOOTER----------------------*/

footer {
	margin: 0 auto;
	width:100%;
	background: var(--ce-color);
	position: fixed;
	z-index: 9998;
	bottom: 0px;
	box-sizing: border-box;
	padding: 1em;
}

#nav-foot {
	width: 100%;
	text-align: center;
}

/*------------------------END FOOTER----------------------*/


/* -------------------LINKS & HOVER ------------------------------*/

header nav a {
	font-family: var(--ce-font);
	font-size: 1rem;
	line-height: 2rem;
	color: white;
	margin: 10px 0 10px 0;
	text-decoration: none;
	width: auto;
    height: auto;
	padding: 15px;
	box-sizing: border-box;
	background: var(--ce-color);
	transition: background 0.8s ease-in;
	float: left;
}

#nav-head li {
	float: left;
}

#nav-head li:first-of-type a, #nav-mobile li:first-of-type a  {
	border-top-left-radius: 50px;
	border-bottom-left-radius: 50px;
	padding-left: 35px;
}

#nav-head li:last-of-type a, #nav-mobile li:last-of-type a {
  	border-top-right-radius: 50px;
  	border-bottom-right-radius: 50px;
	padding-right: 35px;
}

#nav-start a {
	font-family: var(--ce-font);
	font-size: 1rem;
	line-height: 2rem;
	color: white;
	margin: 10px 0 10px 0;
	text-decoration: none;
	width: auto;
    height: auto;
	padding: 15px;
	margin-right: 15px;
	border: 1px white solid;
	border-radius: 50px;
	background: darkgray;
	box-sizing: border-box;
	transition: background 0.5s ease-in;
	float: left;
}

#nav-sprech a:link {
	font-family: var(--ce-color);
	font-size: 1rem;
	line-height: 2rem;
	color: white;
	margin: 10px 0 10px 0;
	text-decoration: none;
	width: auto;
    height: auto;
	padding: 15px;
	border: none;
	border-radius: 50px;
	background: var(--ce-color);
	box-sizing: border-box;
	transition: background 0.5s ease-in;
	float: left;
}

p a:link {
	text-decoration: none;
	color: var(--ce-color);
}

nav a:hover, #nav-lang a:hover, #nav-start a:hover, #nav-sprech a:hover {
	text-decoration: none;
	background: #625754;
}

p a:visited {
	color: var(--ce-color);
}

.activated {
	color: white;
	text-decoration: none;
	background: #625754;
}

footer a:link {
	margin-right: 20px;
	text-decoration: none;
	color: white;
}

footer a:visited {
	color: white;
}

footer a:hover {
	text-decoration: underline;
	color: white;
	background: none;
}

footer #nav-foot #activated-foot a {
	color: red;
	text-decoration: underline;
}

/*------------------------BEGIN IMG / MEDIA ----------------------*/

img {
	width: 100%;
	height: 100%;
	border: 1px solid var(--ce-color);
}

#logo {
	width: 60em;
}

#border-none {
	width: 100%;
	border: none;	
}

#ce-logo {
	border: none;
	-webkit-animation: einblenden 3s ease-in;
	-moz-animation: einblenden 3s ease-in;
	animation: einblenden 3s ease-in;
}

#logo-aside {
	margin-top: 10px;
	width: 100%;
	border: none;
	-webkit-animation: einblenden 3s ease-in;
	-moz-animation: einblenden 3s ease-in;
	animation: einblenden 3s ease-in;
}

@-webkit-keyframes einblenden {
	from {
		opacity: 0;
		transform: scale(0);
	}
	
	to {
		opacity: 1;
		transform: scale(1);
	}
}

@-moz-keyframes einblenden {
	from {
		opacity: 0;
		transform: scale(0);
	}
	
	to {
		opacity: 1;
		transform: scale(1);
	}
}


@keyframes einblenden {
	from {
		opacity: 0;
		transform: scale(0);
	}
	
	to {
		opacity: 1;
		transform: scale(1);
	}
}


.kontakt {
	width: 700px;
	height: 500px;
	border: solid 1px var(--ce-color);
}

/*------------------------END IMG / MEDIA----------------------*/

/*------------------------BEGIN FONTS----------------------*/

h1 {
	font-size: 2.1em;
	line-height: 1.2em;
	font-weight: bold;
	margin-bottom: 0.5em;
	text-align: left;
	color: var(--ce-color);
}

h3, h2 {
	font-size: 1.8em;
	line-height: 2.1em;
	font-weight: bold;
	text-align: center;
	margin-bottom: 0.5em;
}

h4 {
	font-size: 1.3em;
	line-height: 1.3em;
	font-weight: bold;
	text-align: center;
	margin-top: 0.5em;
	margin-bottom: 0.5em;
	color: var(--ce-color);
}

.fa {
	margin-left: 100px;
	margin-right: 10px;
}

p {
	font-size: 1em;
	line-height: 1.5em;
	margin-bottom: 10px;
	margin-top: 10px;
}

/*------------------------BEGIN LISTEN & TABELLEN & Formulare ----------------------*/
ul.ce-liste {
	list-style-type: disc;
	list-style-position: inside; 
	box-sizing: border-box;
	padding-left: 0px;
	margin-left: 0px;
}

.ce-liste li:nth-child(odd) {
	background: lightgrey;
}

.ce-liste li {
	margin-left: 5px;
	padding-left: 5px;
	line-height: 1.5em;
}

input, textarea{
	width: 100%;
	height: 40px;
	background: lightgrey;
	margin-bottom: 9px;
	padding: 9px;
	box-sizing: border-box;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
	border: none;
	-webkit-box-shadow: 2px 2px 5px 2px rgba(64,64,61,0.25) inset;
	-moz-box-shadow: 2px 2px 5px 2px rgba(64,64,61,0.25) inset;
	box-shadow: 2px 2px 5px 2px rgba(64,64,61,0.25) inset;
}

textarea{
	height:150px;
	resize:none;
}

.checkbox{
	width:auto;
	height:auto;
	margin-right:9px;
}

.btn{
	background:var(--ce-color);
	border:none;
	padding:6px 18px;
	font-size:90%;
	color:white;
	font-weight:bold;
	cursor:pointer;
	border-radius:5px;
}
.btn:hover{
	opacity:0.8;
}

#contactform a:link,#contactform a:visited{
	text-decoration:none;
	color:var(--ce-color);
}
#contactform a:hover{
	text-decoration:underline;
}

#privacy{
	margin-top:10px;
}

/*-------------------END LISTEN & TABELLEN-------------------*/

/*------------------------BEGIN MEDIA-QUERRY ----------------------*/

@media only screen and (max-width:1200px){

/*---------------------Hauptelemente  -----------------*/

#wrapper {
		width: 95%;
	}
	
header {
	background: none;
}	
	
#nav-head, #nav-start, #nav-lang, #nav-sprech {
	display: none;
}
	
#logo {
	width: 100%;
	margin-top: 90px;
}

#nav-mobile {
	display: inline-block;
	margin: 0 auto;
	-webkit-animation: einblenden 0.5s ease-in;
	-moz-animation: einblenden 0.5s ease-in;
	animation: einblenden 0.5s ease-in;
}
	
#menu-mobile {
	display: none;
	margin: 0;
	padding-left: 20px;
	-webkit-animation: einblenden 0.5s ease-in;
	-moz-animation: einblenden 0.5s ease-in;
	animation: einblenden 0.5s ease-in;
}

#mobile {
	display: block;
	background: rgba(0, 0, 0, 0.6);
	padding: 20px;
	border-radius: 50px;
	box-sizing: border-box;
	-webkit-animation: einblenden 0.5s ease-in;
	-moz-animation: einblenden 0.5s ease-in;
	animation: einblenden 0.5s ease-in;
	overflow: scroll;
	z-index: 9999;
}
	
#frame {
	width: 100%;
	margin-top: 120px;
	margin-right: 10px;
	margin-left: 10px;
}
	
#contact-bar {
	width: 100%;
    height: auto;
	margin: 0 auto;
	padding: 6px 20px 6px 20px;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
	box-sizing: border-box;
	border: none;
	position: inherit;
	text-align: center;
	line-height: 1.3em;
	float: left;
}

article {
	margin-top: 0px;
	margin-bottom: 50px;
	padding: 20px;
	box-sizing: border-box;
	width: 100%;
	float: none;
}	

footer {
	position: relative;
	float: left;
	background: var(--ce-color);
}

#nav-foot {
	width: 100%;
	float: left;
	line-height: 3rem;
	text-align: center;
}

/*---------------------Links Mobile Listen Tabellen Mobile -----------------*/

nav a {
	font-size: 1.2rem;
	line-height: 1.8rem;
}

nav a:link {
	font-size: 1.2rem;
	line-height: 1.0rem;
}	
	
nav li {
	list-style-type: none;
	padding: 0px;
	margin: 0 auto;
	float: none;
	text-align: left;
}

#nav-mobile a {
	display: inline-block;
	margin-left: 20px;
}
	
/*---------------------HEADLINES - FONTS Mobile-----------------*/
	
h1 {
	line-height: 1.2em;
}

h2, h3 {
	font-size: 1.8em;
	line-height: 2.1em;
	font-weight: bold;
	text-align: center;
	margin-bottom: 0.5em;
}
	
p {
	font-size: 1em;
	line-height: 1.5em;
	margin-bottom: 15px;
}

/*---------------------HEADLINES - FONTS-----------------*/

/*------------------------BEGIN MEDIA----------------------*/

img {
	width: 100%;
	height: auto;
	border: 1px solid var(--ce-color);
}	

.kontakt {
	width: 100%;
}
	
/*------------------------END MEDIA----------------------*/

}/*-----Klammer Media Query----*/