:root {
    --global-color-green: rgb(5,66,32);
    --global-color-green-o: rgba(5,66,32, .4);
    --global-color-text: rgb(28,28,27);
    --global-font-text: "Source Sans 3", sans-serif;
}


html {
}

body {
    font-size: 17px;
    font-family: var(--global-font-text);
    color: var(--global-font-text);
    font-weight: 400;
    line-height: 140%;
   /* height: 100%;
    min-height: 100%;*/
    position: relative;
}

a {
    color: var(--global-color-green);
}

strong, b {
    font-weight: 600;
}

h1, h2, h3, h4, h5 {
    position: relative;
    font-family: var(--global-font-text);
    font-weight: 600;
    display: inline-block;
    color: var(--global-color-green);
    line-height: 135%;
}

h1 {
    font-size: 30px;
    margin-bottom: 0.5em;
}
h2 {
    font-size: 26px;
    margin-bottom: 0.25em;
}
h3 {
    font-size: 22px;
}
h4 {
    font-size: 20px;
}
h5 {
    font-size: 17px;
}

p {
    margin-bottom: 0.8em;
}

.body ul {
    list-style: none;
    padding: 0;
    margin: 0 0 0.8em 0;
}

.body ul li {
    padding-left: 1.5em;
    text-indent: -.7em;
}

.body ul li::before {
    content: "> ";
    color: var(--global-color-green);
}

.body ol {
    list-style-type: none;
    margin-bottom: 0.8em;
    margin-left: 1.5em;
}
.body ol li {
    counter-increment: count-me;
}
.body ol li::before {
    content: counter(count-me) ". ";
    display: block;
    position: relative;
    max-width: 0;
    max-height: 0;
    left: -1.3em;
    top: .05em;
    color: var(--global-color-green);
    font-weight: 600;
}

.body img {
    display: block;
    width: 100%;
}

.content {
    position: relative;
    clear: both;
    width: 95%;
    max-width: 1160px;
    margin: 0 auto;
}

.content.home {
    text-align: center;
}
.dot {
    display: flex;
    width: 10px;
    height: 10px;
    background-color: var(--global-color-green);
    border-radius: 50%;
    margin: 30px auto;
}
/*******************************************/
/* Header-Bereich
/*******************************************/

.header {
    position: relative;
    width: 100%;
    text-align: right;
    top: 0;
    z-index: 999;
}

.header .content {
    max-width: 95%;
    display: flex;
    flex-basis: auto;
    flex-direction: row;
}

.header a#logo {
    position: relative;
    width: 230px;
    margin: 0 auto;
}
.header a#logo img {
    display: block;
    width: 100%;
}

.header ul {
    display: none;
}

/*******************************************/
/* Responsive-Navigation
/*******************************************/

a#offcanvas-menu {
    display: none;
    width: 30px;
    margin: auto 0 auto auto;
    height: 30px;
}


a#offcanvas-menu span.bar {
    background-color: var(--global-color-green);
    display: block;
    float: left;
    height: 2px;
    margin-left: 0;
    margin-top: 6px;
    width: 100%;
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}

#offcanvas-menu.toggled span:first-child {
    transform: translateY(8px) rotate(45deg);
}

#offcanvas-menu.toggled span {
    transform-origin: center center 0;
}

#offcanvas-menu.toggled span:nth-child(2) {
    opacity: 0;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

#offcanvas-menu.toggled span:last-child {
    transform: translateY(-8px) rotate(-45deg);
}

.sidr-open #sidr-body-overlay {
    display: block;
}

#sidr-body-overlay {
    background-color: rgba(0, 0, 0, 0.2);
    bottom: 0;
    display: none;
    height: 100%;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 999998;
}


.sidr {
    background: #262626 none repeat scroll 0 0;
    box-shadow: none;
    color: #FFF;
    display: block;
    font-family: var(--global-font-text);
    font-size: 18px;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    position: fixed;
    top: 0;
    width: 230px;
    z-index: 999999;
    padding-top: 15px;
}

.sidr ul {
    border: 0 none;
}

.sidr ul li {
    border: 0 none;
    line-height: 40px;
}

.sidr ul li a, .sidr ul li span {
    color: #FFFFFF;
    display: inline-block;
}
.sidr ul li.indent {
    padding-left: 30px;
}

.sidr ul li a span {
    padding: 0;
}

.sidr ul li:hover > a, .sidr ul li:hover > span, .sidr ul li.active > a, .sidr ul li.active > span, .sidr ul li.sidr-class-active > a, .sidr ul li.sidr-class-active > span {
    box-shadow: none;
}


.sidr ul li:hover, .sidr ul li.active, .sidr ul li.sidr-class-active, .sidr ul li.selected {
    border-top: 0 none;
    line-height: 40px;
    background-color: var(--global-color-green);
}

/*******************************************/
/* Grid
/*******************************************/

.grid {
    width: calc(100% + 50px);
    float: left;
    display: flex;
    flex-basis: auto;
    margin-left: -50px;
}

.grid.row {
    flex-direction: row;
}

.grid.column {
    flex-direction: column;
}

.grid.wrap {
    flex-wrap: wrap;
}

.grid .item {
    margin-left: 50px;
    /*margin-right: auto;*/
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    margin-bottom: 30px;
    align-items: flex-start;
}

.grid .item.half {
    width: calc( 100% - 50px );
    margin-left: 50px;
}

/*******************************************/
/* Slides
/*******************************************/
.swiper-container {
    margin-bottom: 50px;
}
.swiper-wrapper {
    width: 100%;
    margin: 0;
    align-items: stretch;
    flex-basis: auto;
    height: auto;
}
.swiper-slide {
    display: flex;
    flex-direction: column;
    flex-basis: auto;
    align-items: stretch;
    height: auto;
}
.swiper-slide .slide-text h2{
    color: #FFFFFF;
    margin-bottom: 30px;
}
.swiper-slide .slide-text p{
    color: var(--global-color-text);
    margin-bottom: 0;
}

.swiper-slide .slide-text {
    display: block;
    position: relative;
    margin-top: -70px;
    padding: 20px;
    background-color: var(--global-color-green-o);
}

.swiper-nav {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    flex-basis: auto;
    margin-top: 30px;
}

.swiper-pagination {
    position: relative;
    text-align: center;
    margin: 0 auto;
}

.swiper-pagination-bullet {
    width: 80px;
    height: 10px;
    opacity: 1;
    background: var(--global-color-green-o);
    border-radius: 0;
    margin: 0 15px 0 0 !important;
}

.swiper-pagination-bullet-active {
    background: var(--global-color-green);
}

/*******************************************/
/* Inhalts-Bilder
/*******************************************/

.image-wrapper img {
    margin-bottom: 0 !important;
}

.image-wrapper p {
    color: rgba(0, 0, 0, 0.5);
    font-size: 14px;
    font-style: italic;
    font-weight: 300;
    line-height: 16px;
}

.fr-dib {
    width: auto;
    max-width: 100%;
    display: block;
    float: none;
    margin: 20px 0 20px 0;
}

.fr-dii {
    display: inline-block;
    width: auto;
    max-width: 100%;
}

/*******************************************/
/* Section
/*******************************************/

hr {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 15px;
    padding-left: -15px;
    padding-right: -15px;
    border: none;
    border-top: 1px solid #dadada;
}
section.page {
    display: flex;
    flex-direction: column;
    flex-basis: auto;
}

section .content .center {
    text-align: center;
}

/*******************************************/
/* Page Detail
/*******************************************/
.page_detail-list .item figure {
    position: relative;
    margin: 30px 0 25px 0;
    padding: 0;
    width: 100%;
}
.page_detail-list .item {
    color: var(--global-color-text);
}
.page_detail-list .item figure img{
    display: block;
    margin: 0;
    padding: 0;
    width: 100%;
}
.page_detail-list .page_detail-image-overlay{
    background-color: var(--global-color-green-o);
    color: #FFFFFF;
    display: block;
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 80%;
    padding: 10px 20px;
    font-weight: 600;
}
/*******************************************/
/* Gallery
/*******************************************/

#gallery {
    display: flex;
    flex-direction: row;
    flex-basis: auto;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-bottom: 35px;
}

#gallery .item {
    width: calc(33.33% - 15px);
    margin-left: 15px;
    margin-top: 15px;
}

#gallery .item  img{
    width: 100%;
}



/*******************************************/
/* Page intro
/*******************************************/

.intro-image {
    width: 100%;
    min-height: 180px;
    position: relative;
    text-align: center;
    background: transparent;
}

.intro-image-caption {
    margin: 0 auto;
    width: 95%;
    max-width: 1200px;
    padding: 180px 0 0 2%;
    font-size: 1.8em;
    line-height: 130%;
    font-weight: 600;
    letter-spacing: 2px;
    color: white;
    text-align: right;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 1);
}

/*******************************************/
/* Newsletter
/*******************************************/
#newsletter-subscribe {
    background-color: var(--global-color-green);
    color: #FFFFFF;
    display: flex;
    flex-direction: column;
    flex-basis: auto;
    margin: 30px 0 0 0;
    padding: 30px 0;
}
#newsletter-subscribe h2 {
    color: #FFFFFF;
}
#newsletter-subscribe button {
    margin-left: 25%;
}
/*******************************************/
/* Form                                    */
/*******************************************/
form.newsletter-subscribe {
    width: 100%;
}
form h3 {
    margin-bottom: 0.5em;
}
label {
    display: inline-block;
    width: 25%;
    float: left;
    margin-left: 0;
    font-size: 17px;
    margin-bottom: 3px;
    line-height: 38px;
    text-align: right;
    padding-right: 15px;
}

label.required {
    font-weight: 600;
}

input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border:none;
    border-radius: 0;
    font-size: 17px;
    width: 75%
}


/*!* remove standard-styles *!
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    !* appearance: none; *!
    border-radius: 0;
}

!* hide browser-styling (arrow) in IE10 *!
select::-ms-expand {
    display:none;
}

.lt-ie10 select {
    background-image: none;
}

select {
    background: rgba(109,110,94,0.1) url("/styles/images/select-arrow.png") no-repeat scroll right center / 23px auto;
    margin-bottom: 10px;
}

select:focus {
    background: rgba(109, 110, 94, 0.1) url("/styles/images/select-arrow-active.png") no-repeat scroll right center / 23px auto;
    margin-bottom: 10px;
}*/

input[type='text'],
input[type='tel'],
input[type='email'],
input[type='password'],
textarea,
select {
    font-size: 16px;
    font-weight: 300;
    background-color: rgba(255,255,255,1);
    width: 75%;
    height: 35px;
    margin-left: 0;
    padding: 5px 6px;
    margin-bottom: 10px;
    border-radius: 8px;
    color: var(--global-color-text);
    border: 1px solid rgba(255,255,255,1);
}

select:focus,
input:focus,
textarea:focus {
    outline: 0;
    border: 1px solid var(--global-color-green) !important;
}

form div.checkbox {
    float: left;
    margin-bottom: 15px;
    width: 100%;
}

form div.small {
    width: 100%;
    padding-top: 5px;
}

form input.error, form textarea.error {
    border: 1px solid rgba(219,8,18,1);
}

form input.checkbox-type {
    width: 60%;
}

form input[type="checkbox"] {
    margin-left: 0;
}

label.checkbox input {
    display: none;
}

label.checkbox span {
    border: 1px solid ;
    display: inline-block;
    float: left;
    font-size: 22px;
    height: 18px;
    margin-right: 10px;
    margin-top: 2px;
    position: relative;
    width: 18px;
}
select.error,
label.checkbox.error span {
    border: 1px solid rgba(219,8,18,1);
}

label.checkbox i {
    padding-left: 7px;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
    font-style: normal;
    display: inline-block;
    width: calc(100% - 28px);
}

[type=checkbox]:checked + span:before {
    content: '\2714';
    position: absolute;
    color: #6d6e62;
    top: -5px;
    left: 1px;
}

[type=checkbox]:checked + label.checkbox span {
    border: 0.5px solid #6d6e62;
}

textarea {
    height: 175px !important;
}
.button,
button {
    font-weight: 600;
    display: inline-block;
    cursor: pointer;
    padding: 8px;
    color: #FFFFFF;
    font-size: 100%;
    margin-top: 15px;
    background-color: var(--global-color-green);
    vertical-align: middle;
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform;
    transition-property: transform;
    border: 1px solid #FFFFFF;
    margin-left: 0;
}
.button.active,
.button:hover,
button.active,
button:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

button:disabled{
    cursor: not-allowed;
}
button:disabled:hover {
    -webkit-transform: none;
    transform: none;
}

button.prev-next{
    margin-top: auto;
}

span.validatormessage {
    color: rgba(219,8,18,1);
    display: block;
    margin-top: -10px;
}

.checkbox span.missing {
    color: rgba(219,8,18,1);
    display: block;
    margin-left: 29px;
}
/*******************************************/
/* Footer
/*******************************************/

footer {
    float: left;
    width: 100%;
    overflow: hidden;
    padding-bottom: 10px;
}
