@charset "utf-8";
*, ::before, ::after { 
	box-sizing: border-box; 
  	margin: 0;
	padding: 0;
	border: 0;
}
html {
	box-sizing: border-box;
	height: 100%;
}
body {
	font: 100%/1.0 'Open Sans', sans-serif;
	background-color: #CCC;
	margin: 0;
	padding: 0;
	color: #000;
  	height: 100%;
  	display: flex;
  	flex-direction: column;	
}
.background {
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
}
.background img {
    width: 100%;
	max-width: none;
	height: 100%;
	object-fit: cover;
	margin-bottom: 0;	
}
.ccm-edit-mode.ccm-panel-ready .background {
  position: relative;
  height: auto;
  z-index: 0;
}
/* ~~ Hamburger ~~ */
#hamburger {
	display: block;
	cursor: pointer;
	position:absolute;
	right: 0px;
	top: 0px;
	background: #000;
}
.bar1, .bar2, .bar3 {
	width: 45px;
	height: 5px;
	background-color:#FFF;
	margin: 10px;
	transition: 0.4s;
}
.change .bar1 {
transform: rotate(-41deg) translate(-10px, 12px) ;
}
.change .bar2 {
opacity: 0;
}
.change .bar3 {
transform: rotate(41deg) translate(-8px, -11px) ;
} 

/* ~~ Navigation ~~ */
nav.navi {
    display: none;
    margin-top: 0;
    position: relative;

    z-index: 10;
}
.show {
    display: block !important;
}
.navigation nav ul {
	list-style: none;
	text-transform: uppercase;
	font-weight: 700;
}
.navigation nav li {
	display: block;
	margin: 2px 0;
}
.navigation nav a {
	text-decoration: none;	
	display: block;
	background-color: #FFF;
	color: #000;
	padding: 8px 15px;
	border: #000 2px solid;
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s ease;	
}	
.navigation a:hover, .navigation a:active, .navigation a:focus { 
	text-decoration: none;
	background-color: #000;
	color: #FFF;
}
.navigation a.nav-path-selected { 
	text-decoration: none;
	background-color: #000;
	color: #FFF;
}
/* ~~ Spaltenlayout ~~ */
.ccm-layout-column-wrapper {
	margin: 0 -25px !important;
}
.ccm-layout-column-inner {
	margin: 0 25px !important;
}

/* ~~ Element-/Tag-Selektoren ~~ */
h1 {
	text-transform: uppercase;
	color: #129c4b;
	font-size: 220%;
	margin-bottom: 15px;
	font-weight: 700;
}
h1.ccm-block-page-title.page-title {
	color: #FFF;
	font-size: 400%;
	text-align: center;
	text-shadow: 0 0 10px #000;
}
h2 {
	text-transform: uppercase;	
	color: #129c4b;
	font-size: 160%;
	margin-bottom: 5px;
}
h3 {
	color: #129c4b;
	font-size: 130%;
	margin-bottom: 5px;
}
h2.ccm-block-page-title.page-title, h3.ccm-block-page-title.page-title {	
	color: #FFF;
	font-size: 280%;
	text-align: center;
	text-shadow: 0 0 10px #000;
}
h3.ccm-block-page-title.page-title {
	text-transform: uppercase;		
	font-weight: 400;
}
h4, h5, h6 {
	color: #129c4b;
	font-size: 130%;
	margin-bottom: 5px;
}
p {
	margin-bottom: 25px;
}
p + ul, p + ol {
	margin-top: -20px;
}
img { 
	max-width: 100%;
	height: auto;
}
a img { 
	border: none;
}
.contentbox img { 
	margin: 5px 0 25px 0;
}
a {
	color:#bc6d12;
	text-decoration: none;
}
a:hover, a:active, a:focus { 
	text-decoration: underline;
}
.contentbox table {
	background: #FFF;
	border-top: #000 1px solid;	
	border-left: #000 1px solid;	
	line-height: 1.0;	
}
.contentbox th {
	border-right: #000 1px solid;	
	border-bottom: #000 1px solid;
	padding: 10px;
	background: #CCC;
}
.contentbox td {
	border-right: #000 1px solid;	
	border-bottom: #000 1px solid;
	padding: 2px 10px;
}
.contentbox table img {
	margin: 0 0 0 0;	
}
.contentbox table p {
	margin-bottom: 0;	
}
.contentbox ul, .contentbox ol {
	margin-bottom: 20px;		
}
.contentbox li {
	margin: 0 0 5px 18px;		
}
.contentbox em {
	font-family: 'Walter Turncoat', cursive;
	color: #129c4b;
}

/* ~~ Layout ~~ */
.container {
	width: 90%;
	max-width: 1480px;
	margin: 0 auto;
	position: relative;
}
.header {
	padding: 15px 0;
}
.logo {
	border: #000 2px solid;
	background: rgba(255, 255, 255, 0.9);
	padding: 15px 20px;
	width: calc(100% - 85px);
	max-width: 350px;
}
.logo img {
	margin: 0;
}
.contentbox .weiss {
	border: #000 2px solid;
	background: rgba(255, 255, 255, 0.9);
	padding: 25px 35px 15px;
	margin-bottom: 25px;
}
.contentbox {
	clear: both;
	padding: 20px 0 10px 0;
	line-height: 1.4;
	margin-bottom: 80px;
	hyphens: auto;	
}
.footer {
	padding: 15px 0;
	background: rgba(255, 255, 255, 0.9);
	line-height: 1.2;
	border-top: #000 2px solid;	
}
.footer p {
	margin-bottom: 0;
}
.footer {
	visibility: hidden;
	height: 0px;
}
.clearfloat { 
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}
/* ~~ Seitenliste ~~ */
.ccm-block-page-list-thumbnail-grid-wrapper {
 	display: flex;
	flex-wrap: wrap;
  	justify-content: flex-start;
	margin: 15px -15px;
}
.ccm-block-page-list-page-entry-grid-item {
	margin: 15px;
	flex: 0 0 calc(100% - 30px);
	box-sizing: border-box;	
	border: #000 2px solid;
	background: #FFF;
	color: #000;	
}
.ccm-block-page-list-page-entry-grid-item:hover {
	background: #000;
	color: #FFF;
}
.ccm-block-page-list-page-entry-grid-item img {
	border-bottom: #000 2px solid;	
}
.ccm-block-page-list-page-entry-grid-thumbnail a {
	padding-bottom: 30px;
}
div.ccm-block-page-list-page-entry-grid-thumbnail-hover {
    opacity: 1.0 !important;
	background-color: transparent !important;
}
div.ccm-block-page-list-page-entry-grid-thumbnail-title {
    vertical-align: bottom !important;
    color: #000 !important;
	font-weight: 700;
	text-transform: uppercase;
	padding-bottom: 8px;
}
div.ccm-block-page-list-page-entry-grid-thumbnail-title:hover {
    color: #FFF !important;
}
/* ~~ Galerie ~~ */
.sg {
	line-height: 1.0;
}
.sg img{
	margin: 0px;
}
/* ~~ Slider ~~ */
.background .ccm-image-slider-inner ul.rslides, .background .ccm-image-slider-inner ul.rslides li {
	height: 100vh;
	width: 100vw;
}
.background .ccm-image-slider-inner li img {	
    width: 100%;
	max-width: none;
	height: 100%;
	object-fit: cover;
	margin-bottom: 0;	
}
a.rslides_nav, .background ul.rslides_tabs {
	display: none;
}
.ccm-image-slider-text {
	position: absolute;
	text-align: center;
	width: 100%;
	top: 40%;
	padding: 0 30px;
}
.ccm-image-slider-text h2.ccm-image-slider-title {
	color: #FFF;
	font-size: 200%;
	text-align: center;
	text-shadow: 0 0 10px #000;
}
.ccm-image-slider-text p {
	color: #FFF;
	font-weight: 700;
	font-size: 120%;
	text-shadow: 0 0 5px #000;
}
.ccm-image-slider-text a {
	display: inline-block;
	background-color: #bc6d12;
	color: #FFF;
	padding: 5px 15px;
	text-shadow: none;
	box-shadow: 0 0 5px #000;
	border-radius: 20px;
}
.ccm-image-slider-text a:hover, .ccm-image-slider-text a:active, .ccm-image-slider-text a:focus { 
	text-decoration: none;
	background-color: #000;
	color: #FFF;
}
/* ~~ Formular ~~ */
.ccm-block-type-form {
	border: #000 2px solid;
	background: rgba(255, 255, 255, 0.9);
	padding: 25px 35px 15px;
}
.ccm-block-type-form input, .ccm-block-type-form textarea {
	appearance: none;	
    display: block !important;
    padding: 5px 10px !important;
    font-size: inherit !important;
    line-height: inherit !important;
	width: 100%;
	background: #FFF;
	color: #000;
	border: #999 1px solid;
}
.ccm-block-type-form .form-control:focus {
	outline: none;
	background-color: #e1feef;
}
.ccm-block-type-form .fields {
    display: flex;
    flex-wrap: wrap;
	justify-content: space-between;
}
.ccm-block-type-form .form-group {
  width: 100%;
}
.ccm-block-type-form .form-group label.control-label {
  font-weight: 400 !important;
}
.ccm-block-type-form .alert {
	padding: 20px;
	margin-bottom: 10px;	
	text-align: center;
	font-weight: 700;
	color: #FFF;
}
.ccm-block-type-form .alert.alert-danger {
	background-color:#cc0000;
} 
.alert.alert-success {
	background-color: #090;
	color: #FFF;
	text-align: center;
} 
textarea {
	height: 150px;
	font-family: 'Open Sans', sans-serif;
	font-weight: 400;
	font-size: 100%;
	color: #000;
	resize: vertical;
}
.text-muted {
	display: inline-block;
	color: transparent !important;
}
.text-muted:before {
	content: "*" !important;
	color: #000 !important;
	font-weight: 400;
}
.form-group.captcha {
	margin: 20px 0 0 5%;
}
.ccm-block-type-form .btn.btn-primary {
	color: #000;
	background-color: #FFF;
    text-decoration: none;
    text-align: center;
    display: block;
	padding: 8px 15px;
	margin: 20px 0;
	border: #000 2px solid;
	font-size: 100%;
	cursor: pointer;
	font-weight: 700;
	width: auto;
	text-transform: uppercase;
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s ease;	

}	
.ccm-block-type-form .btn.btn-primary:hover, .ccm-block-type-form .btn.btn-primary:active, .ccm-block-type-form .btn.btn-primary:focus { 
	text-decoration: none;
	background-color: #000;
	color: #FFF;
}
/* ~~~~~~~~~~~~~~~~~~~~~~~~ S M A L L ~~~~~~~~~~~~~~~~~~~~~~~~ */
@media (min-width: 600px) {
/* ~~ Hamburger ~~ */
#hamburger {
	left: 370px;
	right: inherit;
}	
.ccm-image-slider-text h2.ccm-image-slider-title {
	font-size: 250%;
}
.ccm-image-slider-text p {
	font-size: 120%;
}	
}
/* ~~~~~~~~~~~~~~~~~~~~~~~~ M E D I U M ~~~~~~~~~~~~~~~~~~~~~~~~ */
@media only screen and (min-width: 900px) {
.logo {
	width: 350px;
}
.navigation a {
	padding: 5px 15px;
}
/* ~~ Spaltenlayout ~~ */
.breitschmal .ccm-layout-column-wrapper .ccm-layout-column:first-of-type {
	width: 75% !important;
}
.breitschmal .ccm-layout-column-wrapper .ccm-layout-column:last-of-type {
	width: 25% !important;
}
.schmalbreit .ccm-layout-column-wrapper .ccm-layout-column:first-of-type {
	width: 25% !important;
}
.schmalbreit .ccm-layout-column-wrapper .ccm-layout-column:last-of-type {
	width: 75% !important;
}	
.footer {
	visibility: visible;
	height: auto;	
	bottom: 0;
	position: fixed;
	width: 100%;
	margin-top: 0px;
	z-index: 2;
}
.ccm-edit-mode.ccm-panel-ready .footer {
  position: relative;
}	
.ccm-block-page-list-page-entry-grid-item {
	flex: 0 0 calc(33.333% - 30px);
}
.ccm-image-slider-text h2.ccm-image-slider-title {
	font-size: 300%;
}
.ccm-image-slider-text p {
	font-size: 130%;
}	
}
/* ~~~~~~~~~~~~~~~~~~~~~~~~ L A R G E ~~~~~~~~~~~~~~~~~~~~~~~~ */
@media only screen and (min-width: 1200px) {
.header .container {
	display: flex;
	justify-content: space-between;
}
.logo {
	width: 380px;
}
#hamburger {
	display: none;
}
nav.navi {
  display: block;
  margin-top: 0;
	padding: 0;
  position: relative;
  width: auto;
  height: auto;
  background-color: transparent;
  border: 0;
  right: inherit;
  left: inherit;
  top: inherit;
}
.navigation nav li {
	display: inline-block;
	margin: 0 2px;
}
.ccm-image-slider-text h2.ccm-image-slider-title {
	font-size: 350%;
}
.ccm-image-slider-text p {
	font-size: 140%;
}	
}
/* ~~~~~~~~~~~~~~~~~~~~~~~~ E X T R A  L A R G E ~~~~~~~~~~~~~~~~~~~~~~~~ */
@media only screen and (min-width: 1440px) {
.logo {
	width: 400px;
}
	/* ~~ Seitenliste ~~ */
.ccm-block-page-list-page-entry-grid-item {
	flex: 0 0 calc(20% - 30px);
}
.ccm-image-slider-text h2.ccm-image-slider-title {
	font-size: 400%;
}
.ccm-image-slider-text p {
	font-size: 150%;
}	
}
@media only screen and (max-width: 899px)  { 
.ccm-layout-column {
	width: 100% !important;
}
.ccm-layout-column-inner, .ccm-layout-column-wrapper {
	margin: 0 !important;
	}	
}