﻿/* style-sheet */



/* General styles --------------------------------------------------------------------------------------------------------------------- */


/* convert HTML5-elements to block-elements for older browsers other than IE */
header, nav, main, aside, section, article, figcaption, figure, footer {
	
	display: block;
}

a img {  /* disable border around linked images in IE */
	
	border: none;
}

/* automatische Silbentrennung aktivieren
p {
	
	-moz-hyphens: auto;
   	-o-hyphens: auto;
   	-webkit-hyphens: auto;
   	-ms-hyphens: auto;
   	hyphens: auto; 
}
 */

a, a:active, a:focus {
	
	color: #006137;
	text-decoration: none;
	outline: none;
}

a:hover {
	
	text-decoration: underline;
}

.anchor {  /* damit Sprungziel unterhalb von Header angezeigt wird */

	display: block;
    position: relative;
    top: -39px; 
}

ul {

	margin-left: 0.6em;
	padding-left: 0.6em;
}

.font-bold {
	
	font-weight: bold;
}

.font-normal {
	
	font-weight: normal;
}

.font-light {
	
	font-weight: lighter;
}

.center-text {
	
	text-align: center;
}

.no-line-break {
	
	white-space: nowrap;
}

.headline {
	
	margin-bottom: 40px;
}

h1 {
	
	margin: 0;
	padding: 0;
}


h2 {
	
	margin: 0;
	padding: 10px 0;
	background: #008149;
	background: -webkit-linear-gradient(top, #008149, #006137);
	background: -o-linear-gradient(top, #008149, #006137);
	background: -webkit-gradient(linear, left top, left bottom, from(#008149), to(#006137));
	background: linear-gradient(to bottom, #008149, #006137);
	font-family: 'roboto', sans-serif;
	font-size: 26px;
	font-weight: lighter;
	color: white;
	text-align: center;
}

h3 {
	
	color: #006137;
	font-family: 'roboto', sans-serif;
	font-weight: lighter;
	font-size: 24px;
	margin-top: 0;
	text-align: center;
}

h4 {
	
	font-size: 18px;
	font-weight: normal;
}

p {
	
	line-height: 140%;
}

.link-button {
	
	display: inline-block;
	padding: 5px 10px;
	background: #006137;
	color: white;
	border-radius: 3px;
}

.link-button:hover, .link-button:active, .link-button:focus {

	color: white;
	text-decoration: none;
}

.link-button:hover {
	
	background-color: #008149;
}

.big-button {

	font-size: 18px;
    padding: 10px 15px;
}

.underlined-link, .underlined-link:hover, .underlined-link:active, .underlined-link:focus {

	color: inherit;
	text-decoration: underline;
}

.important-info { /* short important information */

	margin: 30px 0;
}


/* styles for particular elements ----------------------------------------------------------------------------------------------------- */


html {
	
	height: 100%; /* important for sticky footer */
}

body {
	
	font-family: 'roboto', sans-serif;
	font-weight: lighter;
	margin: 0;
	height: 100%;   /* important for sticky footer */
	
	background: #fff; 
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;	
}

#wrapper {
	
	-webkit-box-sizing: border-box;
	box-sizing: border-box;

	position: relative; /* important for sticky footer -> footer stays at bottom of window */
	max-width: 1600px;
	margin: 0 auto;

	padding-top: 70px; /* important to show content below sticky header */
	padding-bottom: 100px; /* leave space for sticky footer */
	min-height: 100%;  /* height 100%, if content-height smaller than window height */
}

.wrapper-background {

	background: #f5f5f5;
}

header {
	
	/*font-family: 'arvo', serif;*/
	font-family: 'roboto', sans-serif;
	font-weight: lighter;
	font-size: 18px;
	text-align: center;
	background-color: #f5f5f5;
	color: white;

	-webkit-box-shadow: 0 3px 10px black;
	box-shadow: 0 3px 10px black;
	
	position: fixed;
	top: 0;
  	left: 0;
  	z-index: 10000;
  	width: 100%;
  	margin: 0;
}	

.header-content {
	
	margin: 0;
	padding: 0;

	overflow: hidden; /* bewirkt das Floats von Container umschlossen werden */
}

a.logo {
	
	width: 200px;
	float: left;
	margin: 10px 0 10px 3%;

	-webkit-transition: width 0.5s ease-in-out, margin 0.5s ease-in-out;
	-o-transition: width 0.5s ease-in-out, margin 0.5s ease-in-out;
	transition: width 0.5s ease-in-out, margin 0.5s ease-in-out;
}

.small-header a.logo {

	width: 120px;
	margin-top: 5px;
	margin-bottom: 5px;
}

a.logo > img.logo-image {
	
	display: block;
	width: 100%;
	/*-ms-interpolation-mode: bicubic;  improves down-scaling-quality of image */
}

ul#top-contact-data {

	display: none;
}

nav > #mobile-menu-button {
	
	position: absolute;
	top: 19px;
	right: 5%;
	width: 25px;
	height: 25px;
	cursor: pointer;
	background-repeat: no-repeat;
	background-size: contain;

	-webkit-transition: top 0.5s ease-in-out, width 0.5s ease-in-out, height 0.5s ease-in-out;
	-o-transition: top 0.5s ease-in-out, width 0.5s ease-in-out, height 0.5s ease-in-out;
	transition: top 0.5s ease-in-out, width 0.5s ease-in-out, height 0.5s ease-in-out;
}

.small-header nav > #mobile-menu-button {

	top: 9px;
	width: 20px;
	height: 20px;
}

nav > #mobile-menu-button > img {
	
	width: 100%;
}

nav > ul.nav-menu {
	
	display: block;
	width: 100%;
	margin: 0;
	padding: 0;
	background: #f4f4f4;
	border-top: 0px solid #ddd;
		
	max-height: 0; /* wichtig für Transition */
	overflow: hidden; /* macht Liste unsichtbar, da height = 0 */
	
	/* Transition für height und border */
	-webkit-transition: max-height 0.3s ease-in, border-width 0.3s; 	
	-o-transition: max-height 0.3s ease-in, border-width 0.3s;     
	-webkit-transition: max-height 0.3s ease-in-out, border-width 0.3s;     
	-o-transition: max-height 0.3s ease-in-out, border-width 0.3s;     
	transition: max-height 0.3s ease-in-out, border-width 0.3s;	
}

nav > ul.nav-menu.show-menu {  /* Menu sichtbar machen */
	
	max-height: 280px;
	border-width: 1px;	
}

nav > ul.nav-menu > li {
	
	list-style: none;
    text-align: center;
    width: 100%;
}

nav > ul.nav-menu > li > a {
	
	display: inline-block;
	padding: 15px 0;
	width: 100%;
	
	font-size: 18px;
	font-weight: normal;
	color: #302E29; 
	text-decoration: none;	
	border-bottom: 1px solid #ddd;
}

nav > ul.nav-menu > li > a::before {

	content: "[ ";
	opacity: 0;

	-webkit-transition: opacity .5s ease-in-out;
	-o-transition: opacity .5s ease-in-out;
	transition: opacity .5s ease-in-out;	
}

nav > ul.nav-menu > li > a::after {

	content: " ]";
	opacity: 0;

	-webkit-transition: opacity .5s ease-in-out;
	-o-transition: opacity .5s ease-in-out;
	transition: opacity .5s ease-in-out;
}
	
nav > ul.nav-menu > li > a:hover, nav > ul.nav-menu > li > a.brackets {

	color: #006137;	
}

nav > ul.nav-menu > li > a:hover::after, nav > ul.nav-menu > li > a:hover::before,  
nav > ul.nav-menu > li > a.brackets::after, nav > ul.nav-menu > li > a.brackets::before {

	opacity: 1;
}

/* don't make slider visible until fully loaded */
.slider {

    visibility: hidden;
}

.slider.slick-initialized { 
    
    visibility: visible; 
}

.slider .slider-item {

	position: relative; /* set reference element for slider-caption */
	display: block !important;
}

.slider img {

	width: 100%;
}

.slider .slider-overlay {

	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background: transparent;
	background: rgba(121, 102, 42, 0.2);
}

.slider .slider-caption {

	position: absolute;
	left: 50%;
	top: 50%;

	-ms-transform: translate(-50%,-50%); /* IE 9 */ /* Mozilla Firefox */
    -webkit-transform: translate(-50%,-50%); /* Chrome, Safari, Opera */
	transform: translate(-50%,-50%);

	display: none;
	color: rgb(46, 41, 22);
	font-weight: normal;
	font-size: 16px;
}

.slider-caption:hover {

	text-decoration: none;
}

.caption-line {

	display: inline-block;
	padding: 0.4em 0.6em; /*0.7em 1.5em;*/
	margin: 0.2em 0;
	background: #ddd;
	background: rgba(255, 255, 255, 0.8);
}

/* Header-Bild */

.header-image {

	position: relative;
}

.header-image img {

	width: 100%;
	display: block;
}

.header-image-overlay {

	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background: transparent;
	background: rgba(121, 102, 42, 0.2); /* rgba(175, 108, 0, 0.2);*/
}

.header-image .header-image-caption {

	position: absolute;
	left: 50%;
	top: 50%;

	-ms-transform: translate(-50%,-50%); /* IE 9 */ /* Mozilla Firefox */
    -webkit-transform: translate(-50%,-50%); /* Chrome, Safari, Opera */
	transform: translate(-50%,-50%);

	color: rgb(46, 41, 22);
	font-weight: normal;
	font-size: 16px;
	display: none;
}

.main-content {
	
	margin: 0 auto;
	padding: 0 5% 30px;
	overflow: auto;
}

.main-content p {
	
	font-size: 16px;
}


/* Leistungen */

#services {

	background:  rgb(173, 158, 158);
	background:  rgba(115, 102, 102, 0.6);
}

#services .main-content {
	
	padding: 0;
}

#services .headline {
	
	margin-bottom: 0;
}

.service-item {

	background: #deebe4;
	background: url("../img/textures/p1.png") repeat, -webkit-linear-gradient(top, #ebf3ee, #cfdfd5);
	background: url("../img/textures/p1.png") repeat, -o-linear-gradient(top, #ebf3ee, #cfdfd5);
	background: url("../img/textures/p1.png") repeat, -webkit-gradient(linear, left top, left bottom, from(#ebf3ee), to(#cfdfd5));
	background: url("../img/textures/p1.png") repeat, linear-gradient(to bottom, #ebf3ee, #cfdfd5);
}

.service-item-header {

	padding-top: 35px;
}

.service-icon-block {
	
	position: relative;
	width: 75px;
	margin: 0 auto;
}

.service-icon-block img {

	width: 100%;
}

.service-icon-block .service-icon-hover {

	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
}

.service-item:hover .service-icon-hover {
	
	opacity: 1;
}

.service-item:hover .service-icon-normal {

	opacity: 0;
}

.service-headline {
	
	padding: 15px 5%;
	margin-bottom: 0;
	color: #333;
	font-size: 26px;
}

.service-item-body {

	padding: 0 5% 20px 5%;
}

.service-item-button {

	text-align: center;
}
 
.service-item-body p {

	padding: 15px 0;
	border-top: 1px solid #7b9b8d;
	border-bottom: 1px solid #7b9b8d;
}

.service-item:hover .service-item-body p {

	border-color: #a8a57b;
}

.service-item:hover .service-item-button a {

	background:  rgb(194, 179, 42);
}


.service-item:hover .service-list ul > li {

	background: url("../img/icons/checked-box-hover.png") 0 2px no-repeat;
	background-size: 20px 20px;
}

.service-list {
	
	font-weight: normal;
}

.service-list ul {

	list-style: none;	
}

.service-list ul > li {

	padding: 3px 0;
	padding-left: 2em;
	margin-left: -1.2em;
	background: url("../img/icons/checked-box.png") 0 2px no-repeat;
	background-size: 20px 20px;
	/*-ms-interpolation-mode: bicubic;  improves down-scaling-quality of image */
}

/* Merkmale */

#features {
	
	background: rgb(220, 220, 220);
	background: rgba(193, 193, 193, 0.5);
}

.feature-item {

	margin-bottom: 25px;
	padding: 25px 5%;
	background: rgb(240, 240, 240);
	background: rgba(240, 240, 240, 0.8);
	border-radius: 7px;
}

.feature-item:hover {
	
	box-shadow: rgb(100, 100, 100) 5px 5px 15px;
}

.feature-item h3 {

	margin-bottom: 20px;
}

.feature-item p {

	padding-top: 15px;
	margin: 0;
	border-top: 1px solid #7b9b8d;
}

.feature-item #price-list-link {

	display: block;
	text-align: center;
	margin-top: 15px;
}


/* Seite Kontakt */

/*Kontaktformular*/

#contact {
	
	background: #eae6e3;
	background: rgba(248, 248, 248, 0.75);
}

.contact-form-wrapper {
	
	margin-bottom: 40px;
}

.contact-form {
	
	max-width: 600px;
	margin: 0 auto;
}

.contact-form > p {  /* an Tabelle mit Kontakt-Daten anpassen */
	
	line-height: 170%;
}

.contact-form form {

	margin-bottom: 15px;
}

.contact-form-line {
	
	margin-bottom: 20px;
}

.contact-fieldname {
	
	display: block; 
	font-family: 'roboto', sans-serif;
	font-weight: normal;
	font-size: 16px;
	margin-bottom: 5px;

	display: none; /* hide label, show placeholder instead */
}

.top-aligned {
	
	vertical-align: top;	
}

.contact-field {
 
 	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	 
 	width: 100%;
  	background-color: #e9e9e9;;
  	border: 1px solid #bbb;
  	border-radius: 3px;
 	padding: 10px;
 	font-family: 'roboto', sans-serif;
 	font-weight: normal;
 	font-size: 16px;
}

.contact-field::placeholder {

	color: #777;
}

.contact-textarea {
	
	display: inline-block;
	width: 100%;
	font-family: 'roboto', sans-serif;
	font-weight: lighter;
	font-size: 16px;
}

.contact-textarea > textarea {
	
	resize: vertical;
	width: 100%;
}

.contact-submit {
 
   	border: none;
 	background-color: #006137;
 	color: white;
 	padding: 15px;
 	font-size: 18px;
	cursor: pointer;
	font-weight: normal;
}

.contact-submit:hover {

	background-color: #008149;
}

.contact-error-message {

	display: inline-block;
	padding: 4px 6px;
	margin-bottom: 15px;
	color: white;
	background-color: #BC1300;
	border-radius: 3px;
	line-height: 140%;
}

.contact-field-invalid {
	
	border-color: #BC1300;
}

#contact-overlay {

	position: fixed; /* Stay in place */
    z-index: 9999; /* Sit on top, but under header */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: #ddd; /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */   
}

.contact-success-message {
	
	max-width: 320px;
	padding: 15px;
	margin: 25% auto;
	background-color: #eee;
	border: 1px solid #006137;	
	border-radius: 3px;
	text-align: center;
}

.contact-success-message p {
 	
 	text-align: left;
 	margin-top: 0;
 }

.contact-close-message {
	
	display: inline-block;
	padding: 5px;
	color: white;
	background: #006137;
	border-radius: 3px;
}

.contact-close-message:hover {

	background: #008149;
	cursor: pointer;
}

/* Kontaktdaten */

.contact-data-wrapper {
	
	padding-bottom: 20px;
}

.contact-data {
	
	max-width: 270px;
	margin: 0 auto;
}

.contact .main-content h3 {

	padding-bottom: 20px;
	margin-bottom: 15px;
	border-bottom: 1px solid #7b9b8d;
}

.contact-data ul {
	
	list-style-type: none;
	margin: 0;
	padding: 0;
	font-size: 16px;
	width: 100%;
}

.contact-data ul li {
	
	line-height: 170%;
	padding-bottom: 5px;
}

.contact-data .fas, .contact-data .fab {

	padding-right: 5px;
	color: #006137;
}

.contact-data .fab {

	font-size: 1.2em;
}

/* Seiten zu Online-Shops, Websites*/

.content-page .main-content {
	
	max-width: 1000px;
}

.content-page h1 {

	margin: 0;
	padding: 10px 0;
	background: #008149;
	background: -webkit-linear-gradient(top, #008149, #006137);
	background: -o-linear-gradient(top, #008149, #006137);
	background: -webkit-gradient(linear, left top, left bottom, from(#008149), to(#006137));
	background: linear-gradient(to bottom, #008149, #006137);
	font-family: 'roboto', sans-serif;
	font-size: 26px;
	font-weight: lighter;
	color: white;
	text-align: center;
}

.content-page h2 {

	background: transparent;
	color: #006137;
	font-size: 26px;
	margin: 2em 0 1em;
	padding: 10px 0;
	border-top: 1px solid #006137;
	border-bottom: 1px solid #006137;
}

.content-page h3 {

	text-align: left;
	font-weight: lighter;
	margin: 1.7em 0 1em;
	color: #006137;
	font-size: 20px;
}

.content-page .shopsystem-description h4 {

	text-align: left;
	margin: 60px 0 10px;
}

.content-page .list-heading {

	margin: 1.7em 0 1em;
	color: #006137;
	font-size: 18px;
	font-weight: normal;
}


.shopsystem-list li {

	padding: 3px;
	font-weight: normal;
}

.content-page p {

	line-height: 160%;
	margin: 0.8em 0;
}

.shopsystem-description {

	margin-bottom: 40px;
}

.shopsystem-overview ul li {

	list-style-type: none;
	font-weight: normal;
	padding: 3px;
}

.shopsystem-overview > ul > li {

	padding-left: 1.7em;
	margin-left: -1.2em;
	background: url("../img/icons/rounded-plus.png") 0 3px no-repeat;
	background-size: 18px 18px;
}

.shopsystem-overview > ul.shopsystem-minus > li {

	background: url("../img/icons/rounded-minus.png") 0 3px no-repeat;
	background-size: 18px 18px;
}

.shopsystem-overview ul li ul {

	padding: 3px 0 0;
}

.shopsystem-link, .shopsystem-link:hover, .shopsystem-link:active, .shopsystem-link:focus {

	display: block;
	margin: 30px 0 60px;
	font-weight: normal;
	text-decoration: underline;
}

#onlineshops .gambio-logo {

	height: 80px;
}

#onlineshops .shopware-logo {

	height: 40px;
}

#onlineshops .prestashop-logo {

	height: 30px;
}

#onlineshops .woocommerce-logo {

	height: 40px;
}

#onlineshops .main-content strong,
#websites .main-content strong {

	font-weight: normal;
}

/* Seite Preise */

.wrapper-background-prices {

	background: transparent;
	background: rgba(65, 65, 65, 0.2);
}

#prices .headline {
	
	margin-bottom: 20px;
}

#prices .main-content {
	
	max-width: 1100px;
	padding-top: 30px;
}

.price-offer {
	
	padding: 15px 20px;	
	margin-bottom: 30px;
	border-top: 20px solid #2d805c;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;

	background: #deebe4;
	background: -webkit-linear-gradient(top, #e8f0eb, #cadad0);
	background: -o-linear-gradient(top, #e8f0eb, #cadad0);
	background: -webkit-gradient(linear, left top, left bottom, from(#e8f0eb), to(#cadad0));
	background: linear-gradient(to bottom, #e8f0eb, #cadad0);
}

.price-offer h3 {
	
	text-align: left;
	font-weight: normal;
	margin: 0;
	padding-bottom: 15px;
	border-bottom: 1px solid #7b9b8d;
}

.price-offer ul {

	list-style: none;
}

.price-offer ul > li {

	padding: 3px 0;
	padding-left: 2em;
	margin-left: -1.2em;
	background: url("../img/icons/checked-box.png") 0 2px no-repeat;
	background-size: 20px 20px;
	line-height: 1.4;
}


.price-mark {
	
	font-size: 22px;
	font-weight: bold;
	color: #006137;
	padding: 5px 0;
	border-top: 1px solid #9ab1a7;
	border-bottom: 1px solid #9ab1a7;
}

/* Seite Impressum */

.impressum .main-content {
	
	max-width: 1000px;
	padding-bottom: 40px;
}

.impressum-data {

	margin-bottom: 40px;
}

.impressum-data ul {
	
	list-style-type: none;
	margin-left: 0;
	padding-left: 0;
}

.impressum-data ul li {
	
	line-height: 150%;
}

.impressum-data ul li#ust-idnr {

	padding-top: 0.5em;
}

.impressum h3 {
	
	margin-top: 1.5em;
	padding: 10px 0;
	border-top: 1px solid #006137;
	border-bottom: 1px solid #006137;
}


/* Datenschutz */

.privacy .headline {
	
	margin-bottom: 40px;
}

.privacy .main-content {
	
	max-width: 1000px;
	padding-bottom: 40px;
}

.privacy h3 {
	
	margin-top: 1.5em;
	padding: 10px 0;
	border-top: 1px solid #006137;
	border-bottom: 1px solid #006137;
}

.privacy ul > li {

	padding-bottom: 3px;
}

#analytics-optout-link {
	
	cursor: pointer;
}

.privacy #copyright-link {

	display: block;
	max-width: 30em; 
	margin: 40px auto 0 auto;
}

/* Footer */


footer {
	
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	min-height: 100px;
	text-align: center;
	background-color: #004929;
}

#footer-menu {

	padding: 22px 10px 8px;
	background: #006137; 
}

#footer-menu > ul  {
	
	display: inline-block;
	padding: 0;
	margin: 0;
}

#footer-menu > ul > li {
	
    float: left;
    list-style: none;
    margin-bottom: 10px;
    padding: 0;
}

#footer-menu > ul  > li > a {

	font-size: 18px;
	color: white;
	text-decoration: none;
	padding: 0 2px;
}

#footer-menu > ul  > li > a::before {

	content: "[ ";
	opacity: 0;

	-webkit-transition: opacity .5s ease-in-out;
	-o-transition: opacity .5s ease-in-out;
	transition: opacity .5s ease-in-out;
}

#footer-menu > ul  > li > a::after {

	content: " ]";
	opacity: 0;

	-webkit-transition: opacity .5s ease-in-out;
	-o-transition: opacity .5s ease-in-out;
	transition: opacity .5s ease-in-out;
}

#footer-menu > ul  > li > a:hover::after, #footer-menu > ul  > li > a:hover::before,
#footer-menu > ul  > li > a.brackets::after, #footer-menu > ul  > li > a.brackets::before {

	opacity: 1;
}

#footer-bottom-line {

	margin: 10px 0;
	font-size: 13px;
	color: white;	
}


/* Styles für unterschiedliche Bildschirmgrößen und Druck */

@media only screen and (min-width: 550px) {

	.slider .slider-caption, .header-image .header-image-caption {

		font-size: 20px;
	}

}

/* niedrige Auflösung - Tablets */
@media only screen and (min-width: 768px) {

	a.anchor {  /* damit Sprungziel unterhalb von Header angezeigt wird */

		top: -50px; 
	}

	.header-inner {

		max-width: 1600px;
		margin: 0 auto 0 auto;
	}

	.header-content {
		
		padding: 0 2%;
	}
	
	a.logo {
	
		margin-left: 0;
	}

	#contact-nav-block {

		float: right;	
	}

	ul#top-contact-data {

		display: block;
		margin: 9px 12px 0 0;
		overflow: hidden;
	}

	ul#top-contact-data li {

		float: right;
		list-style: none;
		padding-left: 15px;
		font-size: 14px;
		color: #006137;
	}

	ul#top-contact-data li .fas {

		padding-right: 3px;
	}

	.small-header ul#top-contact-data {

		display: none;
	}

	/* Navigation */

	nav {

		margin-top: 11px;
	}

	.small-header nav {

		margin-top: 14px;
	}

	.small-header a.logo {

		width: 150px;
		margin-top: 7px;
		margin-bottom: 7px;
	}
	
	nav > #mobile-menu-button {
	
		display: none;
	}
	
	nav > ul.nav-menu {
		
		position: static;
		max-height: none;
		margin: 0;
		padding: 0;
		background-color: transparent;
		border: none;
	}
	
	nav > ul.nav-menu > li {
		
		float: left;
		width: auto;
		padding: 0;
		list-style: none;
		-webkit-transition: margin 0.5s ease-in-out;
		-o-transition: margin 0.5s ease-in-out;
		transition: margin 0.5s ease-in-out;
	}

	nav > ul.nav-menu > li > a {
		
		display: block;	
		padding: 0;
		border: none;
		font-size: 18px;
		font-weight: normal;
	}

	.slider .slider-caption, .header-image .header-image-caption {

		font-size: 26px;
		font-weight: lighter;
	}
	
	.headline {
	
		/*background: linear-gradient(to bottom, #83A14D, #C0D598);
		/*background-color: #766481;
		background: linear-gradient(to bottom, #766481, #B9A6C5);	*/
		border-top: 15px solid #008149;
	}
	
	.headline-tab {
		
		width: 500px;
		margin: 0 auto;
		padding: 0 30px;
		background: url("../img/elements/tab-links.png") left top no-repeat, url("../img/elements/tab-rechts.png") right top no-repeat;
		background-size: auto 100%;
		
		/* border-top: 1px solid #008149; /* Lücke in Webkit-Browsern schließen (Bug) */
		position: relative; 
		top: -1px;
	}
	
	h2 {
	
		padding: 0 10px 10px 10px;
	}

	
	/* Leistungen */

	/*
	#services {

		background: -webkit-gradient(linear, left top, left bottom, from(rgb(255, 255, 255)) , to(rgb(228, 228, 221)));	
		background: -webkit-linear-gradient(top, rgb(255, 255, 255) , rgb(228, 228, 221));		
		background: -o-linear-gradient(top, rgb(255, 255, 255) , rgb(228, 228, 221));	
		background: linear-gradient(to bottom, rgba(200, 200, 200, 0.7) , rgba(180, 180, 180, 0.7));
	}
	*/
	
	#services .main-content {
	
		padding: 0 1% 80px 1%;
	}
	
	#services .headline {
		
		margin-bottom: 20px;
	}
	
	#services .headline-tab {
		
		width: 300px;
	}
		
	#services > div.main-content {
		
		overflow: hidden;
	}
	
	.service-item-row {
	
		display: table;
		border-spacing: 50px 0;
		margin-top: 50px;
	}
	
	.service-item-row > .service-item {
		
		display: table-cell;
		width: 50%;
		border-top-left-radius: 15px;
		border-top-right-radius: 15px;
	}

	.service-item:hover {

		box-shadow: rgb(50, 50, 50) 5px 5px 15px;
	}
	
	.service-item-header {

		border-top: 30px solid #2d805c; /* #cadad0;*/
		border-top-left-radius: 7px;
    	border-top-right-radius: 7px;
	}

	.service-item:hover .service-item-header {

		border-color: rgb(211, 198, 78);
	}
			
	/* Grundprinzipien */

	#features .main-content {

		padding: 0 4% 40px;
	}
	
	#features .headline-tab {
		
		width: 320px;
	}
	
	.feature-item-row {
		
		display: table;
		border-spacing: 30px 15px;
	}

	
	.feature-item-row > .feature-item {
		
		display: table-cell;
		width: 50%;
		padding: 25px 3% 30px;
	}
	
	.single-feature-item-row {

		width: 55%;
		margin: 25px auto;
	}

	.single-feature-item-row .feature-item {

		margin: 0;
	}
	
	
	/* Kontakt */
	
	#contact .headline-tab {
		
		width: 270px;
	}

	/* Seiten zu Onlineshops, Websites */

	.content-page h1 {
	
		padding: 0 10px 10px 10px;
	}

	#onlineshops .headline-tab {
		
		width: 470px; /*345px;*/
	}

	#websites .headline-tab {
		
		width: 300px;
	}
	
	/* Impressum */
	
	.impressum .headline-tab {
		
		width: 150px;
	}
	
	/* Datenschutz */
	
	.privacy .headline-tab {
		
		width: 270px;
	}
	
	/* Preisliste */
	
	#prices .main-content {
	
		padding: 10px 2% 50px 2%;
	}
	
	#prices .headline-tab {
	
		width: 185px;
	}
	
	.price-list {
	
		display: table;
		width: 100%;
		border-spacing: 20px 30px;
	}
	
	.price-list-row {
	
		display: table-row;
}
	
	.price-offer {
	
		position: relative;
		display: table-cell;
		width: 50%;	
		padding-bottom: 60px;
	}
	
	.price-mark {
	
		position: absolute;
		left: 15px;
		right: 15px;
		bottom: 20px;
	}
		
}

/* mittlere Auflösung */
@media only screen and (min-width: 980px) {


	/* Slider */

	.slider .slider-item-2 .slider-caption {

		left: 35%;
	}

	.slider .slider-item-3 .slider-caption {

		left: 65%;
	}
	
	.slider .slider-item-4 .slider-caption {
	
		left: 35%;
	}
	
	/* Kontakt */
	
	#contact .main-content {
	
		overflow: hidden;
	}
		
	.contact-form-wrapper {
	
		float: left;

		-webkit-box-sizing: border-box;
		box-sizing: border-box;

		width: 50%;
		padding-right: 3%;
		border-right: 1px solid #bbb;
		margin-right: 5%;
	}
	
	.contact-data-wrapper {
	
		float: left;
		width: 45%;
	}
	
	.contact-data {
	
		margin: 0;
	}
	
}


/* hohe Auflösung */
@media only screen and (min-width: 1280px) {

	.slider .slider-caption, .header-image .header-image-caption {

		font-size: 30px;
	}
}


/* sehr hohe Auflösung */
@media only screen and (min-width: 1600px) {

	.slider .slider-caption, .header-image .header-image-caption {

		font-size: 36px;
	}

}

/* Drucker */
@media print {

	header {
	
		display: none;
	}
	
	main {
	
		padding-top: 0;
		padding-bottom: 0; 
	}
	
	footer {
	
		display: none;
	}
	
}

