@import url("fonts.css");
@import url("fontawesome.min.css");
@import url("lightbox.css");
@import url("vegas.min.css");

:root {
	--primary: #707d83;
	--secondary: #333333;
	--tertiary: #f5f5f5;
}

/* SITE */
html, body {
	height: 100%;
	font-size: 16px;
	font-weight: 200;
	font-family: 'Verdana', sans-serif;
	line-height: 2;
	color: var(--secondary);
	background: var(--tertiary);
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
	margin: 0 0 15px 0;
	color: var(--primary);
	line-height: 1.8;
	text-transform: uppercase;
	letter-spacing: 5px;
}
h1 {
	font-size: 34px;
}
h2 {
	font-size: 30px;
}
h3 {
	font-size: 26px;
}
h4 {
	font-size: 22px;
}
h5 {
	font-size: 18px;
}
h6 {
	font-size: 14px;
}

p {
	text-align: justify;
	margin: 15px 0;
	-moz-hyphens: auto; 
  -o-hyphens: auto; 
  -webkit-hyphens: auto; 
  -ms-hyphens: auto; 
  hyphens: auto;
}

a {
	color: var(--primary);
	transition: all .25s;
}
a:hover {
	color: var(--secondary);
	text-decoration: none;
}

small {
	display: block;
	font-size: 65%;
	font-weight: 300;
	letter-spacing: 0;
	text-transform: none;
}

strong {
	font-weight: 600;
}

hr {
	margin: 30px 0;
}

ul.ul {
	list-style-image: url("../img/list.png");
	padding-left: 25px;
}
ul.ul li {
	margin-bottom: 15px;
}

h2.special {
	font-size: 24px;
	font-family: 'Verdana', sans-serif;
	letter-spacing: 0;
	text-transform: none;
	margin: 0 0 30px 0;
	line-height: 1.8;
}
hr.special {
	border: none;
	background-image: url("../img/line.png");
	background-position: center;
	background-repeat: repeat-x;
	background-size: auto;
	height: 30px;
	margin: 45px 0;
}


/* INFOLINE */
.infoline {
	padding: 30px 0;
	background: rgba(255,255,255,0.9);
	font-size: 16px;
	line-height: 1.5;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	transition: all .25s;
	color: var(--primary);
}
.infoline .logo {
	width: 300px;
}
.infoline p {
	margin: 0;
}
.infoline i {
	width: 20px;
}
.infoline a {
	color: var(--primary);
}

.infoline.set {
	background: var(--white);
	box-shadow: 0 0 5px 0 rgba(33,33,33,0.5);
	padding: 10px 0;
}

.infoline .btn-tel,
.infoline .btn-mail {
	width: 40px;
	height: 40px;
	display: none;
	align-items: center;
	justify-content: space-around;
	background: var(--primary);
	color: var(--white) !important;
	font-size: 18px;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 5;
}
.infoline .btn-tel i,
.infoline .btn-mail i {
	width: auto;
}
.infoline .btn-tel {
	right: 15px;
}
.infoline .btn-mail {
	left: 15px;
}


/* SECTION */
section {
	display: block;
	position: relative;
	background: var(--tertiary);
}
section.bg-colored {
	background: var(--white);
}

section#start {
	min-height: 75%;
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: space-around;
	padding: 0;
}
section#start .centered {
	padding: 15px;
	display: block;
	text-align: center;
	color: var(--white);
	line-height: 1.2;
}
section#start .centered .logo {
	width: 90%;
	max-width: 600px;
	margin: 0 auto;
}
section#start .centered .slogan {
	line-height: 1.2;
	font-size: 20px;
	text-transform: uppercase;
	letter-spacing: 10px;
	font-weight: 400;
}

/* MAIN */
section main {
	padding: 20px 30px;
	position: relative;
	z-index: 1;
	top: -75px;
	background: var(--tertiary);
}
section.bg-colored main {
	background: var(--white);
}


/* FOOTER */
footer {
	padding: 30px 0;
	line-height: 1;
}
footer p {
	margin: 0;
}
footer .links {
	margin-bottom: 15px;
}
footer .links a {
	margin-right: 15px;
	font-size: 14px;
}
footer .tischlernrw {
	width: 100px;
	margin: 15px 0;
	display: inline-block;
	vertical-align: bottom;
	margin-left: 15px;
}
footer .ihk {
	width: 125px;
	margin: 15px 0;
	display: inline-block;
	vertical-align: bottom;
}
footer .designby {
	text-align: center;
	padding: 7.5px 0;
	display: block;
	background: var(--primary);
	color: var(--white);
	font-size: 12px;
	line-height: 1;
	margin-top: 30px;
	margin-bottom: 15px;
}
footer .designby img {
	width: 22px; 
	display: inline-block;
	vertical-align: middle;
}


/* PARALLAX */
.parallax {
	min-height: 400px;
	display: block;
	position: relative;
}


/* BUTTONS */
.btn {
	border-radius: 0;
	border: none;
}
.btn:focus {
	box-shadow: none !important;
}

.btn-primary {
	background: var(--primary) !important;
}
.btn-primary:hover,
.btn-primary:focus {
	background: var(--secondary) !important;
}


/* FORM */
.form-control {
	border-radius: 0;
}
.form-control:focus {
	box-shadow: none;
	border-color: var(--primary);
}

.has-error .form-control {
	border-color: var(--danger);
}

#danke {
	display: none;
}


/* CONTENT IMG */
.content-img {
	width: 100%;
	max-width: 380px;
	box-shadow: 5px 5px 3px 0 rgba(33,33,33,0.25);
}
.content-img.float-left {
	margin: 0 30px 15px 0;
}
.content-img.float-right {
	margin: 0 0 15px 30px;
}

/* ccm19 */
.ccm-settings-summoner {
	display: none !important;
}


/* MOBILE */
@media (max-width: 1199.98px) {}
@media (max-width: 991.98px) {
	/* TYPOGRAPHY */
	h1 {
		font-size: 34px;
		letter-spacing: 0;
	}
	h2 {
		font-size: 30px;
		letter-spacing: 0;
	}
	h3 {
		font-size: 26px;
		letter-spacing: 0;
	}
	h4 {
		font-size: 22px;
		letter-spacing: 0;
	}
	h5 {
		font-size: 18px;
		letter-spacing: 0;
	}
	h6 {
		font-size: 14px;
		letter-spacing: 0;
	}
	
	/* INFOLINE */
	.infoline .logo {
		margin: 0 auto;
		display: block;
		width: 250px;
	}
	
	.infoline .btn-tel,
	.infoline .btn-mail {
		display: flex;
	}
	
	/* SECTION */
	section#start .centered .slogan {
		font-size: 16px;
	}
}
@media (max-width: 767.98px) {
	/* SECTION */
	section#start {
		min-height: 100%;
	}
	
	/* CONTENT IMG */
	.content-img {
		width: 100%;
		display: block;
		margin: 15px auto !important;
		float: none !important;
	}
}
@media (max-width: 575.98px) {}











