/* Baiseinstellungen */


body {
	background-color: rgba(255,255,255,1.00);
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
}
* {
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.floating {
	float: left;
}
.float-right {
	float: right;
}
.clearing-both {
	clear: both;
}
.responsive {
  max-width: 100%;
  height: auto;
}

/* font style und color */

.bg-col-darkblue {
	background-color: rgba(53,61,74,1.00);
}
.bg-col-orange {
	background-color: rgba(245,169,12,1.00);
}
.bg-col-silver {
	background-color: rgba(153,153,153,1.00);
}
.txt-col-darkblue {
	color: rgba(53,61,74,1.00);
}
.txt-col-orange {
	color: rgba(245,169,12,1.00);
}
.txt-col-silver {
	color: rgba(153,153,153,1.00);
}

.Greycliff-CF-Bold {
	font-family: greycliff-cf, sans-serif;
	font-weight: 700;
	font-style: normal;
}
.Greycliff-CF-Demi-Bold {
	font-family: greycliff-cf, sans-serif;
	font-weight: 600;
	font-style: normal;
}
.Greycliff-CF-Medium {
	font-family: greycliff-cf, sans-serif;
	font-weight: 500;
	font-style: normal;
}
.Greycliff-CF-Regular {
	font-family: greycliff-cf, sans-serif;
	font-weight: 400;
	font-style: normal;
}
.Greycliff-CF-Bold-Oblique {
	font-family: greycliff-cf, sans-serif;
	font-weight: 700;
	font-style: italic;
}
.Greycliff-CF-Regular-Oblique {
	font-family: greycliff-cf, sans-serif;
	font-weight: 400;
	font-style: italic;
}
.Greycliff-CF-Medium-Oblique {
	font-family: greycliff-cf, sans-serif;
	font-weight: 500;
	font-style: italic;
}
.Greycliff-CF-Demi-Bold-Oblique {
	font-family: greycliff-cf, sans-serif;
	font-weight: 600;
	font-style: italic;
}

/* Layout DIV´s */




/* Burger Navigation */

.header {
	position: fixed;
	width: 100%;
	z-index: 3;
}

.header nav ul {
  margin-left: 30px;
  height: 110px;
  list-style: none;
  overflow: hidden;
  float: right;
}
.header nav li a {
	display: block;
	padding: 2px 10px;
	text-decoration: none;
}
.header .menu {
	position: relative;
	top: 17px;
}

.header nav li a:hover,
.header .menu-btn:hover {
	text-decoration: none;
}

.header .logo {
	display: block;
	float: right;
	margin-right: 30px;
	padding-left: 35px;
	padding-right: 35px;
	padding-bottom: 10px;
	padding-top: 5px;
	background-color: rgba(233,233,233,1.00);
	-webkit-box-shadow: 5px 5px 15px 3px rgba(102,102,102,1);
	-moz-box-shadow: 5px 5px 15px 3px rgba(102,102,102,1);
	box-shadow: 5px 5px 15px 3px rgba(102,102,102,1);
	-webkit-border-radius: 0px 0px 10px 10px;
	-moz-border-radius: 0px 0px 10px 10px;
	border-radius: 0px 0px 10px 10px;
}

.header .subnav {
	position: absolute;
	top: 100px;
	right: 55px;
	z-index: -1;
	padding-top: 10px;
	padding-bottom: 5px;
	padding-left: 15px;
	padding-right: 15px;
	background-color: rgba(245,169,12,1.00);
	-webkit-box-shadow: 5px 5px 15px 3px rgba(102,102,102,1);
	-moz-box-shadow: 5px 5px 15px 3px rgba(102,102,102,1);
	box-shadow: 5px 5px 15px 3px rgba(102,102,102,1);
	-webkit-border-radius: 0px 0px 10px 10px;
	-moz-border-radius: 0px 0px 10px 10px;
	border-radius: 0px 0px 10px 10px;
}
.header .subnav li {
	float: left;
	list-style-position: inside;
	list-style-type: none;
	display: block;
	margin-left: 5px;
	margin-right: 5px;
	font-size: 13px;
	font-family: greycliff-cf, sans-serif;
	font-weight: 300;
	font-style: normal;
	color: rgba(255,255,255,1.00);
}
.header .subnav li a {
	color: rgba(255,255,255,1.00);
	text-decoration: none;
}
.header .subnav li a:hover {
	text-decoration: underline;
	color: rgba(53,61,74,1.00);
}


/* menu */


.header .menu {
  clear: both;
  max-height: 0;
  transition: max-height .2s ease-out;
}

/* menu icon */

.header .menu-icon {
  background-color: rgba(255,255,255,1.00);
  cursor: pointer;
  display: inline-block;
  float: right;
  padding: 19px 20px;
  position: relative;
  user-select: none;
}

.header .menu-icon .navicon {
  background: #333;
  display: block;
  height: 2px;
  position: relative;
  transition: background .2s ease-out;
  width: 18px;
}

.header .menu-icon .navicon:before,
.header .menu-icon .navicon:after {
  background: #333;
  content: '';
  display: block;
  height: 100%;
  position: absolute;
  transition: all .2s ease-out;
  width: 100%;
}

.header .menu-icon .navicon:before {
  top: 5px;
}

.header .menu-icon .navicon:after {
  top: -5px;
}

/* menu btn */

.header .menu-btn {
  display: none;
}

.header .menu-btn:checked ~ .menu {
  max-height: 3000px;
}

.header .menu-btn:checked ~ .menu-icon .navicon {
  background: transparent;
}

.header .menu-btn:checked ~ .menu-icon .navicon:before {
  transform: rotate(-45deg);
}

.header .menu-btn:checked ~ .menu-icon .navicon:after {
  transform: rotate(45deg);
}

.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before,
.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
  top: 0;
}
main {
	width: 100vw;
	height: 100%;
}
.main-img {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	width: 100vw;
	height: 100vh;
	overflow-x: hidden;
	object-fit: cover;
}
main .breadcrump {
	width: 100vw;
	height: 30px;
	padding-top: 10px;
	background-color: rgba(53,61,74,1.00);
	position: absolute;
	bottom: 0px;
	overflow: hidden;
}
main .breadcrump ul {
	margin-left: 30px;
}
main .breadcrump li {
	color: rgba(255,255,255,1.00);
	float: left;
	margin-right: 25px;
	list-style-position: inside;
	list-style-type: none;
	font-size: 12px;
}
main .breadcrump li a {
	color: rgba(255,255,255,1.00);
	text-decoration: none;
}
main .breadcrump li a:hover {
	text-decoration: underline;
}
main .quicklink {
	position: absolute;
	top: 30vh;
	left: 0;
	background-color: rgba(233,233,233,1.00);
	padding: 15px 0px 5px 10px;
	-webkit-box-shadow: 5px 5px 15px 3px rgba(102,102,102,1);
	-moz-box-shadow: 5px 5px 15px 3px rgba(102,102,102,1);
	box-shadow: 5px 5px 15px 3px rgba(102,102,102,1);
	-webkit-border-radius: 0px 5px 5px 0px;
	-moz-border-radius: 0px 5px 5px 0px;
	border-radius: 0px 5px 5px 0px;
}
main .tip-box .tipp-1 {
	width: calc(100% - 20px);
	background-color: rgba(245,169,12,1.00);
	padding-top: 5px;
	padding-bottom: 5px;
	position: absolute;
	top: 99px;
	visibility: hidden;
	cursor: pointer;
}
main .tip-box .tipp-2 {
	width: calc(100% - 20px);
	background-color: rgba(245,169,12,1.00);
	padding-top: 5px;
	padding-bottom: 5px;
	position: absolute;
	top: 194px;
	visibility: hidden;
	cursor: pointer;
}
main .tip-box .tipp-3 {
	width: calc(100% - 20px);
	background-color: rgba(245,169,12,1.00);
	padding-top: 5px;
	padding-bottom: 5px;
	position: absolute;
	top: 289px;
	visibility: hidden;
	cursor: pointer;
}
main .tip-box .tipp-4 {
	width: calc(100% - 20px);
	background-color: rgba(245,169,12,1.00);
	padding-top: 5px;
	padding-bottom: 5px;
	position: absolute;
	top: 384px;
	visibility: hidden;
	cursor: pointer;
}
main .tip-box h6 {
	font-family: greycliff-cf, sans-serif;
	font-weight: 600;
	font-style: normal;
	font-size: 10px;
	text-align: center;
	text-transform: uppercase;
	color: rgba(255,255,255,1.00);
}
main .quicklink p {
	font-family: greycliff-cf, sans-serif;
	font-weight: 600;
	font-style: normal;
	font-size: 12px;
	text-transform: uppercase;
	margin-bottom: 5px;
	margin-right: 10px;
	text-align: end;
	color: rgba(150,150,150,1.00);
}
main .tip-box:hover .tipp-1,
main .tip-box:hover .tipp-2,
main .tip-box:hover .tipp-3,
main .tip-box:hover .tipp-4 {
	visibility: visible;
}
main .tip-box .tipp-1,
main .tip-box .tipp-2,
main .tip-box .tipp-3,
main .tip-box .tipp-4 {
	visibility: visible;
}
main .quicklink figure {
	margin-bottom: 5px;
}
main .quicklink img {
	border-right: 10px solid rgba(233,233,233,0.00);
}
main .quicklink img:hover {
	cursor: pointer;
}
main .teaser {
	position: absolute;
	left: 22vw;
	top: 40vh;
	width: 40vw;
}
main .teaser h1 {
	font-family: greycliff-cf, sans-serif;
	font-weight: 600;
	font-style: normal;
	line-height: 1.2;
	margin: 10px;
	padding: 15px 30px;
	background-color: rgba(53,61,74,0.75);
	color: rgba(255,255,255,1.00);
	-webkit-box-shadow: 5px 5px 7px 0px rgba(102,102,102,1);
	-moz-box-shadow: 5px 5px 7px 0px rgba(102,102,102,1);
	box-shadow: 5px 5px 7px 0px rgba(102,102,102,1);
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	font-size: 30px;
}
main .teaser p {
	font-family: greycliff-cf, sans-serif;
	font-weight: 700;
	font-style: normal;
	line-height: 1;
	margin: 10px;
	padding: 10px 30px;
	background-color: rgba(245,169,12,0.75);
	color: rgba(53,61,74,1.00);
	-webkit-box-shadow: 5px 5px 7px 0px rgba(102,102,102,1);
	-moz-box-shadow: 5px 5px 7px 0px rgba(102,102,102,1);
	box-shadow: 5px 5px 7px 0px rgba(102,102,102,1);
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	font-size: 22px;
	text-align: center;
}
main .teaser h2 {
	font-family: greycliff-cf, sans-serif;
	font-weight: 700;
	font-style: normal;
	line-height: 1;
	margin: 10px;
	padding: 10px 30px;
	background-color: rgba(153,153,153,0.75);
	color: rgba(255,255,255,1.00);
	-webkit-box-shadow: 5px 5px 7px 0px rgba(102,102,102,1);
	-moz-box-shadow: 5px 5px 7px 0px rgba(102,102,102,1);
	box-shadow: 5px 5px 7px 0px rgba(102,102,102,1);
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	font-size: 22px;
	text-align: center;
}
main .teaser p a {
	font-family: greycliff-cf, sans-serif;
	font-weight: 700;
	font-style: normal;
	line-height: 1;
	color: rgba(53,61,74,1.00);
	text-decoration: none;
}
main .teaser h2 a {
	font-family: greycliff-cf, sans-serif;
	font-weight: 700;
	font-style: normal;
	line-height: 1;
	color: rgba(255,255,255,1.00);
	text-decoration: none;
}
main .teaser a:hover {
	text-decoration: underline;
}
main .main-c-box {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	background-color: rgba(245,169,12,1.00);
	width: calc(100vw - 60px);
	padding: 100px 30px 75px 30px;
	align-content: center;
	-ms-flex-line-pack : center;
	-webkit-flex-line-pack : center;
}
main .main-c-box h2 {
	color: rgba(255,255,255,1.00);
	text-align: center;
	font-family: greycliff-cf, sans-serif;
	font-weight: 500;
	font-style: normal;
	font-size: 25px;
	margin-bottom: 75px;
}

main .main-law-box {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	background-color: rgba(245,169,12,1.00);
	width: calc(100vw - 60px);
	padding: 25px 30px 75px 30px;
	align-content: center;
	-ms-flex-line-pack : center;
	-webkit-flex-line-pack : center;
}
main .main-law-box h2 {
	color: rgba(255,255,255,1.00);
	text-align: left;
	font-family: greycliff-cf, sans-serif;
	font-weight: 500;
	font-style: normal;
	font-size: 25px;
	margin-bottom: 25px;
	margin-top: 25px;
}
main .main-law-box h3 {
	color: rgba(255,255,255,1.00);
	text-align: left;
	font-family: greycliff-cf, sans-serif;
	font-weight: 600;
	font-style: normal;
	font-size: 20px;
	margin-bottom: 30px;
}
main .main-law-box h4 {
	color: rgba(255,255,255,1.00);
	text-align: left;
	font-family: greycliff-cf, sans-serif;
	font-weight: 600;
	font-style: normal;
	font-size: 18px;
	margin-bottom: 30px;
}
main .main-law-box address {
	color: rgba(255,255,255,1.00);
	text-align: left;
	font-family: greycliff-cf, sans-serif;
	font-weight: 300;
	font-style: normal;
	font-size: 16px;
	line-height: 1.2;
	margin-bottom: 22px;
}
main .main-law-box p {
	color: rgba(255,255,255,1.00);
	text-align: left;
	font-family: greycliff-cf, sans-serif;
	font-weight: 300;
	font-style: normal;
	font-size: 16px;
	line-height: 1.2;
	margin-bottom: 22px;
}
main .main-law-box a {
	color: rgba(255,255,255,1.00);
	text-align: left;
	font-family: greycliff-cf, sans-serif;
	font-weight: 300;
	font-style: normal;
	font-size: 16px;
	line-height: 1.2;
	margin-bottom: 22px;
}
main .main-law-box a:hover {
	text-decoration: none;
}
main .main-law-box h5 {
	margin-top: 25px;
	font-family: greycliff-cf, sans-serif;
	font-weight: 700;
	font-style: normal;
	color: rgba(53,61,74,1.00);
	font-size: 22px;
	text-align: center;
}
main .main-law-box h5 a {
	font-family: greycliff-cf, sans-serif;
	font-weight: 700;
	font-style: normal;
	color: rgba(53,61,74,1.00);
	text-decoration: none;
	margin-left: 25px;
	margin-right: 25px;
}
main .main-law-box h5 a:hover {
	text-decoration: underline;
}

main .main-c-box .bottom-space {
	margin-bottom: 25px;
}
main .i-box-content img {
	width: 100%;
	align-items: center;
	-ms-flex-align: center;
	-webkit-flex-align: center;
}
main .main-c-box .c-box-content {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	justify-content: space-between;
	padding-right: 30px;
	padding-left: 30px;
}
main .main-c-box .box-content {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	width: 25%;
	align-items: center;
	-ms-flex-align: center;
	-webkit-flex-align: center;
}
main .main-c-box h3 {
	color: rgba(255,255,255,1.00);
	text-align: center;
	font-family: greycliff-cf, sans-serif;
	font-weight: 600;
	font-style: normal;
	font-size: 20px;
	margin-bottom: 30px;
}
main .main-c-box p {
	color: rgba(255,255,255,1.00);
	text-align: center;
	font-family: greycliff-cf, sans-serif;
	font-weight: 300;
	font-style: normal;
	font-size: 16px;
	line-height: 1.2;
	margin-bottom: 22px;
}

main .main-c-box .i-box-content {
	padding-top: 25px;
	padding-bottom: 15px;
	margin-bottom: 15px;
	background-color: rgba(255,255,255,1.00);
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	justify-content : space-around;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	width: 24%;
}
main .main-c-box .i-box-content h3 {
	color: rgba(53,61,74,1.00);
	text-align: center;
	font-family: greycliff-cf, sans-serif;
	font-weight: 600;
	font-style: normal;
	font-size: 20px;
	line-height: 1.2;
	margin-bottom: 25px;
}
main .main-c-box .i-box-content p {
	color: rgba(153,153,153,1.00);
	text-align: left !important;
	font-family: greycliff-cf, sans-serif;
	font-weight: 300;
	font-style: normal;
	font-size: 16px;
	margin-bottom: 11px;
	margin-left: 10px;
	margin-right: 10px;
}
main .main-c-box .i-box-content a {
	color: rgba(53,61,74,1.00);
	font-family: greycliff-cf, sans-serif;
	font-weight: 600;
	font-style: normal;
	font-size: 17px;
	margin-top: 11px;
	margin-bottom: 0px;
	margin-left: 10px;
	margin-right: 10px;
	text-decoration: none;
	text-align: end !important;
}
main .main-c-box .i-box-content a:hover {
	color: rgba(245,169,12,1.00);
}

main .main-c-box h5 {
	margin-top: 50px;
	font-family: greycliff-cf, sans-serif;
	font-weight: 700;
	font-style: normal;
	color: rgba(53,61,74,1.00);
	font-size: 22px;
	text-align: center;
}
main .main-c-box h5 a {
	font-family: greycliff-cf, sans-serif;
	font-weight: 700;
	font-style: normal;
	color: rgba(53,61,74,1.00);
	text-decoration: none;
	margin-left: 25px;
	margin-right: 25px;
}
main .main-c-box h5 a:hover {
	text-decoration: underline;
}

main .sub-c-box {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	background-color: rgba(255,255,255,1.00);
	width: calc(100vw - 60px);
	padding: 30px 30px 50px 30px;
	align-content: center;
	-ms-flex-line-pack : center;
	-webkit-flex-line-pack : center;
}
main .sub-c-box h2 {
	color: rgba(53,61,74,1.00);
	text-align: center;
	font-family: greycliff-cf, sans-serif;
	font-weight: 700;
	font-style: normal;
	font-size: 25px;
	margin-bottom: 20px;
}
main .sub-c-box h3 {
	color: rgba(53,61,74,1.00);
	text-align: center;
	font-family: greycliff-cf, sans-serif;
	font-weight: 600;
	font-style: normal;
	font-size: 20px;
	margin-bottom: 15px;
}
main .sub-c-box p {
	color: rgba(53,61,74,1.00);
	text-align: center;
	font-family: greycliff-cf, sans-serif;
	font-weight: 300;
	font-style: normal;
	font-size: 16px;
	line-height: 1.1;
	margin-bottom: 15px;
}
main .sub-c-box ol {
	margin-top: 35px;
	margin-bottom: 35px;
}
main .sub-c-box li {
	color: rgba(53,61,74,1.00);
	text-align: center;
	font-family: greycliff-cf, sans-serif;
	font-weight: 300;
	font-style: normal;
	font-size: 16px;
	line-height: 1.5;
	list-style-position: inside;
	list-style-type:decimal;
}
main .sub-c-box .c-box-content {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	justify-content: space-between;
}
main .sub-c-box .box-content {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	width: 25%;
	margin-left: 3%;
	margin-right: 3%;
	align-items: center;
	-ms-flex-align: center;
	-webkit-flex-align: center;
}
main .sub-c-box .box-content h3 {
	color: rgba(53,61,74,1.00);
	text-align: center;
	font-family: greycliff-cf, sans-serif;
	font-weight: 700;
	font-style: normal;
	font-size: 20px;
	margin-bottom: 25px;
	margin-top: 35px;
}
main .sub-c-box .pic-space {
	margin-bottom: 25px;
}
main .sub-c-box .box-content p {
	color: rgba(53,61,74,1.00);
	text-align: center;
	font-family: greycliff-cf, sans-serif;
	font-weight: 300;
	font-style: normal;
	font-size: 16px;
	line-height: 1.1;
	margin-bottom: 15px;
}
main .sub-c-box h5 {
	margin-top: 20px;
	font-family: greycliff-cf, sans-serif;
	font-weight: 700;
	font-style: normal;
	color: rgba(53,61,74,1.00);
	font-size: 22px;
	text-align: center;
}
main .sub-c-box h5 a {
	font-family: greycliff-cf, sans-serif;
	font-weight: 700;
	font-style: normal;
	color: rgba(53,61,74,1.00);
	text-decoration: none;
	margin-left: 25px;
	margin-right: 25px;
}
main .sub-c-box h5 a:hover {
	text-decoration: underline;
}
main .g-map iframe {
	margin-bottom: -4px;
	border-bottom: none;
	frame-border: none;
	width: 100%;
	height: 300px;
}

footer .f-container {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	background-color: rgba(53,61,74,1.00);
	padding: 30px 30px 30px 30px;
	width: calc(100vw - 60px);
}
footer .f-box {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	width: 30vw;
}
footer .f-box h2 {
	color: rgba(255,255,255,1.00);
	font-family: greycliff-cf, sans-serif;
	font-weight: 500;
	font-style: normal;
	font-size: 21px;
	margin-bottom: 20px;
}
footer .f-box p {
	color: rgba(255,255,255,1.00);
	font-family: greycliff-cf, sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 14px;
	margin-bottom: 20px;
	line-height: 1.5;
}
footer .f-box li {
	list-style-type: none;
	list-style-position: inside;
	color: rgba(255,255,255,1.00);
	font-family: greycliff-cf, sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 14px;
	line-height: 1.6;
}
footer .f-box a {
	color: rgba(255,255,255,1.00);
}
footer .f-box a:hover {
	color: rgba(245,169,12,1.00);
}
footer .copyright {
	background-color: rgba(51,51,51,1.00);
	padding: 15px 30px;
}
footer .copyright p {
	color: rgba(255,255,255,1.00);
	font-family: greycliff-cf, sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 14px;
}



/* Startseite Layout big */

@media screen and (min-width: 1281px) {
  .header nav li {
	float: left;
	font-size: 14px;
	font-family: greycliff-cf, sans-serif;
	font-weight: 500;
	font-style: normal;
  }
  .header nav li a {
	margin: 10px 10px;
	color: rgba(255,255,255,1.00);
  }
	.header nav li a.colnavdb {
		background-color: rgba(53,61,74,1.00); 
		-webkit-box-shadow: 5px 5px 15px 3px rgba(102,102,102,1);
		-moz-box-shadow: 5px 5px 15px 3px rgba(102,102,102,1);
		box-shadow: 5px 5px 15px 3px rgba(102,102,102,1);
		-webkit-border-radius: 5px;
		-moz-border-radius: 5px;
		border-radius: 5px;
		padding: 2px 30px;
	}
	.header nav li a.colnavdb:hover {
		border-bottom: 5px solid rgba(53,61,74,1.00);
		border-top: 5px solid rgba(53,61,74,1.00);
		margin-top: 5px;
	}
	.header nav li a.colnavo {
		background-color: rgba(245,169,12,1.00);
		-webkit-box-shadow: 5px 5px 15px 3px rgba(102,102,102,1);
		-moz-box-shadow: 5px 5px 15px 3px rgba(102,102,102,1);
		box-shadow: 5px 5px 15px 3px rgba(102,102,102,1);
		-webkit-border-radius: 5px;
		-moz-border-radius: 5px;
		border-radius: 5px;
		padding: 2px 30px;
	}
	.header nav li a.colnavo:hover {
		border-bottom: 5px solid rgba(245,169,12,1.00);
		border-top: 5px solid rgba(245,169,12,1.00);
		margin-top: 5px;
	}
	.header nav li a.colnavs {
		background-color: rgba(153,153,153,1.00);
		-webkit-box-shadow: 5px 5px 15px 3px rgba(102,102,102,1);
		-moz-box-shadow: 5px 5px 15px 3px rgba(102,102,102,1);
		box-shadow: 5px 5px 15px 3px rgba(102,102,102,1);
		-webkit-border-radius: 5px;
		-moz-border-radius: 5px;
		border-radius: 5px;
		padding: 2px 30px;
	}
	.header nav li a.colnavs:hover {
		border-bottom: 5px solid rgba(153,153,153,1.00);
		border-top: 5px solid rgba(153,153,153,1.00);
		margin-top: 5px;
	}
  .header nav .menu {
		clear: none;
		float: left;
		max-height: none;
  }
  .header nav .menu-icon {
		display: none;
  }
}

/* Startseite Layout mobile nav */

@media screen and (max-width: 1280px) {
	.header nav ul {
	  width: 100%;
	  height: auto;
	  margin-top: 1px;
  	  float: left;
	  background-color: rgba(233,233,233,1.00);
	  -webkit-box-shadow: 5px 5px 7px 0px rgba(102,102,102,1);
	  -moz-box-shadow: 5px 5px 7px 0px rgba(102,102,102,1);
	  box-shadow: 5px 5px 7px 0px rgba(102,102,102,1);
	  -webkit-border-radius: 5px;
	  -moz-border-radius: 5px;
	  border-radius: 5px;
	}
	.header nav li a.colnavdb {
		color: rgba(53,61,74,1.00); 
		-webkit-border-radius: 5px 0px 0px 0px;
		-moz-border-radius: 5px 0px 0px 0px;
		border-radius: 5px 0px 0px 0px;
		padding: 1px 30px;
	}
	.header nav li a.colnavdb:hover {
		background-color: rgba(53,61,74,1.00);
		color: rgba(255,255,255,1.00);
	}
	.header nav li a.colnavo {
		color: rgba(53,61,74,1.00); 
		-webkit-border-radius: 0px;
		-moz-border-radius: 0px;
		border-radius: 0px;
		padding: 1px 30px;
	}
	.header nav li a.colnavo:hover {
		background-color: rgba(245,169,12,1.00);
		color: rgba(255,255,255,1.00);
	}
	.header nav li a.colnavs {
		color: rgba(53,61,74,1.00);
		-webkit-box-shadow: 5px 5px 7px 0px rgba(102,102,102,1);
		-moz-box-shadow: 5px 5px 7px 0px rgba(102,102,102,1);
		box-shadow: 5px 5px 7px 0px rgba(102,102,102,1);
		-webkit-border-radius: 0px 0px 0px 5px;
		-moz-border-radius: 0px 0px 0px 5px;
		border-radius: 0px 0px 0px 5px;
		padding: 1px 30px;
	}
	.header nav li a.colnavs:hover {
		background-color: rgba(153,153,153,1.00);
		color: rgba(255,255,255,1.00);
	}
	.header nav li {
		font-size: 14px;
		font-family: greycliff-cf, sans-serif;
		font-weight: 500;
		font-style: normal;
  }
	.header nav li a {
		margin: 0px 0px;
		padding: 7px 25px;
		color: rgba(255,255,255,1.00);
  }
	.header .logo {
		display: block;
		float: left;
		margin-left: 30px;
		max-width: 350px !important;
		-webkit-box-shadow: 5px 5px 10px 0px rgba(102,102,102,1);
		-moz-box-shadow: 5px 5px 10px 0px rgba(102,102,102,1);
		box-shadow: 5px 5px 10px 0px rgba(102,102,102,1);
	}
	.header .menu {
		position: relative;
		top: 0px;
	}
	.header .subnav {
		position: absolute;
		top: 100px;
		left: 55px;
		right: inherit;
		z-index: -1;
		padding-top: 10px;
		padding-bottom: 5px;
		padding-left: 15px;
		padding-right: 15px;
		background-color: rgba(245,169,12,1.00);
		-webkit-box-shadow: 5px 5px 10px 0px rgba(102,102,102,1);
		-moz-box-shadow: 5px 5px 10px 0px rgba(102,102,102,1);
		box-shadow: 5px 5px 10px 0px rgba(102,102,102,1);
		-webkit-border-radius: 0px 0px 10px 10px;
		-moz-border-radius: 0px 0px 10px 10px;
		border-radius: 0px 0px 10px 10px;
	}
}


@media screen and (max-width: 800px) {
	main .teaser {
		position: absolute;
		left: 22vw;
		top: 40vh;
		width: 70vw;
	}
	main .main-c-box .box-content {
		width: 90vw;
		margin-bottom: 30px;
	}
	main .main-c-box .i-box-content {
		width: 90vw;
		margin-bottom: 30px;
	}
	main .sub-c-box .box-content {
		width: 90vw;
		margin-bottom: 30px;
	}
}


@media screen and (max-height: 940px) and (max-width: 500px) {
	.main-img {
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		width: 100vw;
		height: 100%;
		overflow-x: hidden;
		object-fit: cover;
	}
	main .breadcrump {
		width: 100vw;
		height: 30px;
		padding-top: 10px;
		background-color: rgba(53,61,74,1.00);
		position: relative;
		bottom: 0px;
		overflow: hidden;
	}
	main .teaser {
		position: relative;
		left: 0vw;
		top: 0vh;
		width: 100vw;
		padding-top: 25px;
		padding-bottom: 25px;
	}
	main .quicklink {
		position: relative;
		top: 0;
		left: 0;
		background-color: rgba(233,233,233,1.00);
		padding: 15px 0px 5px 10px;
		-webkit-box-shadow: none;
		-moz-box-shadow: none;
		box-shadow: none;
		-webkit-border-radius: none;
		-moz-border-radius: none;
		border-radius: none;
		width: calc(100vw - 10px);
		height: auto !important;
		overflow: hidden;
	}
	main .tip-box {
		float: left;
		margin: 0px 5px;
	}
	main .tip-box .tipp-1 {
		width: calc(35% - 20px);
		background-color: rgba(245,169,12,1.00);
		padding-top: 5px;
		padding-bottom: 5px;
		position: absolute;
		top: 99px;
		visibility: hidden;
		cursor: pointer;
	}
	main .tip-box .tipp-2 {
		width: calc(35% - 20px);
		background-color: rgba(245,169,12,1.00);
		padding-top: 5px;
		padding-bottom: 5px;
		position: absolute;
		top: 99px;
		visibility: hidden;
		cursor: pointer;
	}
	main .tip-box .tipp-3 {
		width: calc(35% - 20px);
		background-color: rgba(245,169,12,1.00);
		padding-top: 5px;
		padding-bottom: 5px;
		position: absolute;
		top: 194px !important;
		visibility: hidden;
		cursor: pointer;
	}
	main .tip-box .tipp-4 {
		width: calc(35% - 20px);
		background-color: rgba(245,169,12,1.00);
		padding-top: 5px;
		padding-bottom: 5px;
		position: absolute;
		top: 194px !important;
		visibility: hidden;
		cursor: pointer;
	}
	.header .logo {
		display: block;
		float: left;
		margin-left: 15px;
		max-width: 250px !important;
		-webkit-box-shadow: 5px 5px 10px 0px rgba(102,102,102,1);
		-moz-box-shadow: 5px 5px 10px 0px rgba(102,102,102,1);
		box-shadow: 5px 5px 10px 0px rgba(102,102,102,1);
	}
	.header .menu {
		position: relative;
		top: 0px;
	}
	.header .menu-icon {
	  background-color: rgba(233,233,233,1.00);
	  cursor: pointer;
	  display: inline-block;
	  float: right;
	  padding: 19px 20px;
	  position: absolute !important;
	  top: 0px;
	  user-select: none;
	}
	.header .subnav {
		position: absolute;
		top: 100px;
		left: 40px;
		right: inherit;
		z-index: -1;
		padding-top: 10px;
		padding-bottom: 5px;
		padding-left: 15px;
		padding-right: 15px;
		background-color: rgba(245,169,12,1.00);
		-webkit-box-shadow: 5px 5px 10px 0px rgba(102,102,102,1);
		-moz-box-shadow: 5px 5px 10px 0px rgba(102,102,102,1);
		box-shadow: 5px 5px 10px 0px rgba(102,102,102,1);
		-webkit-border-radius: 0px 0px 10px 10px;
		-moz-border-radius: 0px 0px 10px 10px;
		border-radius: 0px 0px 10px 10px;
	}
	footer .f-container {
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		background-color: rgba(53,61,74,1.00);
		padding: 30px 30px 30px 30px;
		width: calc(100vw - 60px);
	}
	footer .f-box {
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-flex-direction: column;
		-ms-flex-direction: column;
		flex-direction: column;
		width: 100vw;
	}
	footer .copyright p {
		color: rgba(255,255,255,1.00);
		font-family: greycliff-cf, sans-serif;
		font-weight: 400;
		font-style: normal;
		font-size: 13px;
	}
}
@media screen and (max-height: 440px) {
	main .teaser {
		position: absolute;
		left: 22vw;
		top: 40vh;
		width: 70vw;
	}
	main .quicklink {
		position: relative;
		top: 0;
		left: 0;
		background-color: rgba(233,233,233,1.00);
		padding: 15px 0px 5px 10px;
		-webkit-box-shadow: none;
		-moz-box-shadow: none;
		box-shadow: none;
		-webkit-border-radius: none;
		-moz-border-radius: none;
		border-radius: none;
		width: calc(100vw - 10px);
		height: 29vh;
		overflow: hidden;
	}
	main .tip-box {
		float: left;
	}
	main .tip-box .tipp-1 {
		width: calc(124px - 0px);
		background-color: rgba(245,169,12,1.00);
		padding-top: 5px;
		padding-bottom: 5px;
		position: absolute;
		top: 99px;
		visibility: hidden;
		cursor: pointer;
	}
	main .tip-box .tipp-2 {
		width: calc(124px - 0px);
		background-color: rgba(245,169,12,1.00);
		padding-top: 5px;
		padding-bottom: 5px;
		position: absolute;
		top: 99px;
		visibility: hidden;
		cursor: pointer;
	}
	main .tip-box .tipp-3 {
		width: calc(124px - 0px);
		background-color: rgba(245,169,12,1.00);
		padding-top: 5px;
		padding-bottom: 5px;
		position: absolute;
		top: 99px;
		visibility: hidden;
		cursor: pointer;
	}
	main .tip-box .tipp-4 {
		width: calc(124px - 0px);
		background-color: rgba(245,169,12,1.00);
		padding-top: 5px;
		padding-bottom: 5px;
		position: absolute;
		top: 99px;
		visibility: hidden;
		cursor: pointer;
	}
	.header .logo {
		display: block;
		float: left;
		margin-left: 15px;
		max-width: 250px !important;
		-webkit-box-shadow: 5px 5px 10px 0px rgba(102,102,102,1);
		-moz-box-shadow: 5px 5px 10px 0px rgba(102,102,102,1);
		box-shadow: 5px 5px 10px 0px rgba(102,102,102,1);
	}
	.header .menu {
		position: relative;
		top: 0px;
	}
	.header .menu-icon {
	  background-color: rgba(233,233,233,1.00);
	  cursor: pointer;
	  display: inline-block;
	  float: right;
	  padding: 19px 20px;
	  position: absolute !important;
	  top: 0px;
	  right: 0px;
	  user-select: none;
	}
	footer .f-container {
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		background-color: rgba(53,61,74,1.00);
		padding: 30px 30px 30px 30px;
		width: calc(100vw - 60px);
	}
	footer .f-box {
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-flex-direction: column;
		-ms-flex-direction: column;
		flex-direction: column;
		width: 40vw;
	}
	footer .copyright p {
		color: rgba(255,255,255,1.00);
		font-family: greycliff-cf, sans-serif;
		font-weight: 400;
		font-style: normal;
		font-size: 13px;
	}
}
@media screen and (max-width: 667px) {
	.header .menu-icon {
	  background-color: rgba(233,233,233,1.00);
	  cursor: pointer;
	  display: inline-block;
	  float: right;
	  padding: 19px 20px;
	  position: absolute !important;
	  top: 0px;
	  right: 0px;
	  user-select: none;
	}
	main .teaser h1 {
		font-size: 22px;
	}
	main .teaser p {
		font-size: 17px;
	}
	main .quicklink {
		position: relative;
		top: 0;
		left: 0;
		background-color: rgba(233,233,233,1.00);
		padding: 15px 0px 5px 10px;
		-webkit-box-shadow: none;
		-moz-box-shadow: none;
		box-shadow: none;
		-webkit-border-radius: none;
		-moz-border-radius: none;
		border-radius: none;
		width: calc(100vw - 10px);
		height: 31vh;
		overflow: hidden;
	}
	main .tip-box .tipp-1 {
		width: calc(124px - 0px);
		background-color: rgba(245,169,12,1.00);
		padding-top: 5px;
		padding-bottom: 5px;
		position: absolute;
		top: 99px;
		visibility: hidden;
		cursor: pointer;
	}
	main .tip-box .tipp-2 {
		width: calc(124px - 0px);
		background-color: rgba(245,169,12,1.00);
		padding-top: 5px;
		padding-bottom: 5px;
		position: absolute;
		top: 99px;
		visibility: hidden;
		cursor: pointer;
	}
	main .tip-box .tipp-3 {
		width: calc(124px - 0px);
		background-color: rgba(245,169,12,1.00);
		padding-top: 5px;
		padding-bottom: 5px;
		position: absolute;
		top: 99px;
		visibility: hidden;
		cursor: pointer;
	}
	main .tip-box .tipp-4 {
		width: calc(124px - 0px);
		background-color: rgba(245,169,12,1.00);
		padding-top: 5px;
		padding-bottom: 5px;
		position: absolute;
		top: 99px;
		visibility: hidden;
		cursor: pointer;
	}
	main .main-c-box h5 {
		margin-top: 50px;
		font-family: greycliff-cf, sans-serif;
		font-weight: 700;
		font-style: normal;
		color: rgba(53,61,74,1.00);
		font-size: 20px;
		text-align: center;
	}
		main .sub-c-box h5 {
		margin-top: 20px;
		font-family: greycliff-cf, sans-serif;
		font-weight: 700;
		font-style: normal;
		color: rgba(53,61,74,1.00);
		font-size: 20px;
		text-align: center;
	}
	footer .copyright p {
		font-size: 12px;
	}
}
@media screen and (max-width: 375px) {
	.header .menu-icon {
	  background-color: rgba(233,233,233,1.00);
	  cursor: pointer;
	  display: inline-block;
	  float: right;
	  padding: 19px 20px;
	  position: absolute !important;
	  top: 0px;
	  right: 0px;
	  user-select: none;
	}
	main .breadcrump li {
		color: rgba(255,255,255,1.00);
		float: left;
		margin-right: 15px;
	}
	main .teaser h1 {
		font-size: 22px;
	}
	main .teaser p {
		font-size: 17px;
	}
	main .quicklink {
		position: relative;
		top: 0;
		left: 0;
		background-color: rgba(233,233,233,1.00);
		padding: 15px 0px 5px 10px;
		-webkit-box-shadow: none;
		-moz-box-shadow: none;
		box-shadow: none;
		-webkit-border-radius: none;
		-moz-border-radius: none;
		border-radius: none;
		width: calc(100vw - 10px);
		height: 31vh;
		overflow: hidden;
	}
	main .tip-box .tipp-1 {
		width: calc(124px - 0px);
		background-color: rgba(245,169,12,1.00);
		padding-top: 5px;
		padding-bottom: 5px;
		position: absolute;
		top: 99px;
		visibility: hidden;
		cursor: pointer;
	}
	main .tip-box .tipp-2 {
		width: calc(124px - 0px);
		background-color: rgba(245,169,12,1.00);
		padding-top: 5px;
		padding-bottom: 5px;
		position: absolute;
		top: 99px;
		visibility: hidden;
		cursor: pointer;
	}
	main .tip-box .tipp-3 {
		width: calc(124px - 0px);
		background-color: rgba(245,169,12,1.00);
		padding-top: 5px;
		padding-bottom: 5px;
		position: absolute;
		top: 194px;
		visibility: hidden;
		cursor: pointer;
	}
	main .tip-box .tipp-4 {
		width: calc(124px - 0px);
		background-color: rgba(245,169,12,1.00);
		padding-top: 5px;
		padding-bottom: 5px;
		position: absolute;
		top: 194px;
		visibility: hidden;
		cursor: pointer;
	}
	main .main-c-box h5 {
		margin-top: 50px;
		font-family: greycliff-cf, sans-serif;
		font-weight: 700;
		font-style: normal;
		color: rgba(53,61,74,1.00);
		font-size: 20px;
		text-align: center;
	}
		main .sub-c-box h5 {
		margin-top: 20px;
		font-family: greycliff-cf, sans-serif;
		font-weight: 700;
		font-style: normal;
		color: rgba(53,61,74,1.00);
		font-size: 20px;
		text-align: center;
	}
	footer .copyright p {
		font-size: 12px;
	}
}
