@import url("https://fonts.googleapis.com/css?family=Montserrat:300,400,500");
#main-menu {
z-index: 1000;
}
#main-menu input {
position: fixed;
opacity: 0;
}
#main-menu label {
position: absolute;
margin: 0;
padding: 0;
border: none;
outline: none;
background: none;
cursor: pointer;
}
#main-menu label::before {
z-index: 1000;
position: fixed;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: rgba(18, 67, 100, 0.6);
content: "";
opacity: 0;
pointer-events: none;
transition: opacity 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
#main-menu label .burger {
position: fixed;
top: 1em;
left: 1em;
z-index: 3;
width: 2em;
height: 2em;
margin: 0;
padding: 0;
transition: opacity 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
#main-menu label .burger::before,
#main-menu label .burger .bar, #main-menu label .burger::after {
position: absolute;
left: 0;
display: block;
width: 100%;
height: 12%;
background: white;
content: "";
transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
#main-menu label .burger .bar {
top: 44%;
}
#main-menu label .burger::before {
top: 0;
transform-origin: top left;
}
#main-menu label .burger::after {
bottom: 0;
transform-origin: bottom left;
}
#main-menu input:focus + label .burger,
#main-menu label:hover .burger {
opacity: 0.75;
}
#main-menu nav {
z-index: 1000;
position: fixed;
top: 0;
left: 0;
bottom: 0;
z-index: 2;
display: flex;
flex-flow: column nowrap;
justify-content: center;
align-items: flex-start;
transform: translate3d(0, 0, 0); transform: translateX(-100%);
will-change: transform;
transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
#main-menu nav ul, #main-menu nav li {
list-style: none;
display: block;
}
#main-menu nav::before {
position: absolute;
top: 0;
bottom: 0;
left: 0;
z-index: -1;
width: 30em;
background: #d62956;
content: "";
transform: skewX(15deg) translateX(-100%);
transform-origin: bottom left;
will-change: transform;
transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
@media (min-width: 40em) {
#main-menu nav::before {
width: 40em;
}
}
#main-menu nav a {
margin: 0.5em 0;
padding: 0.2em 2em;
font-size: 1.5em;
color: white;
text-decoration: none;
font-weight: 300;
transform: translateX(-100%);
transition: color 0.15s, transform 0.5s;
transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
#main-menu nav a:nth-child(1) {
transition-delay: 0s, 100ms;
}
#main-menu nav a:nth-child(2) {
transition-delay: 0s, 150ms;
}
#main-menu nav a:nth-child(3) {
transition-delay: 0s, 200ms;
}
#main-menu nav a:nth-child(4) {
transition-delay: 0s, 250ms;
}
#main-menu nav a:nth-child(5) {
transition-delay: 0s, 300ms;
}
#main-menu nav a:nth-child(6) {
transition-delay: 0s, 350ms;
}
#main-menu nav a:hover, #main-menu nav a:focus {
color: black;
}
#main-menu [id=navcheck]:checked + label::before {
opacity: 1;
pointer-events: auto;
}
#main-menu [id=navcheck]:checked + label .burger::before, #main-menu [id=navcheck]:checked + label .burger::after {
width: 141.42%;
}
#main-menu [id=navcheck]:checked + label .burger::before {
transform: rotate(45deg) translateY(-50%);
}
#main-menu [id=navcheck]:checked + label .burger::after {
transform: rotate(-45deg) translateY(50%);
}
#main-menu [id=navcheck]:checked + label .burger .bar {
transform: scale(0.1);
}
#main-menu [id=navcheck]:checked ~ nav {
transform: translateX(0);
}
#main-menu [id=navcheck]:checked ~ nav::before {
transform: skewX(15deg) translateX(0);
}
#main-menu [id=navcheck]:checked ~ nav a {
transform: translateX(0);
}
#main-menu [id=navcheck]:checked ~ main .content {
transform: translateX(3em);
transform-origin: left center;
-webkit-filter: blur(2px);
filter: blur(2px); }
#main-menu .visuallyhidden {
border: 0;
clip: rect(0 0 0 0);
height: 1px;
margin: -1px;
overflow: hidden;
padding: 0;
position: absolute;
width: 1px;
} body, html {
font-family: "Montserrat", sans-serif;
font-weight: 300;
font-size: 18px;
color: #575757;
}
body {
background-color: white;
}
.wrapper h1, .wrapper h2, .wrapper h3, .wrapper h4, .wrapper h5, .wrapper h6 {
font-weight: 300;
}
.wrapper h1 {
color: #47734f;
}
.wrapper h2 {
color: #47734f;
font-size: 1.5rem;
}
.wrapper h4 {
color: #cebd85;
}
.wrapper ul {
list-style-position: inside;
}
.wrapper a {
display: inline-block;
transition: color 0.2s ease;
font-weight: bolder;
position: relative;
color: #47734f;
cursor: pointer;
}
@media screen and (min-width: 800px) {
.wrapper a::after, .wrapper a::before {
content: "";
position: absolute;
top: 100%;
width: 0;
right: 0;
height: 3px;
}
.wrapper a::before {
transition: width 0.4s cubic-bezier(0.51, 0.18, 0, 0.88) 0.1s;
background: #cebd85;
}
.wrapper a::after {
transition: width 0.2s cubic-bezier(0.29, 0.18, 0.26, 0.83);
background: #575757;
}
.wrapper a:hover, .wrapper a:focus, .wrapper a:active {
text-decoration: none;
}
.wrapper a:hover::after, .wrapper a:hover::before, .wrapper a:focus::after, .wrapper a:focus::before, .wrapper a:active::after, .wrapper a:active::before {
width: 100%;
left: 0;
}
}
@media screen and (max-width: 800px) {
.wrapper a:hover, .wrapper a:focus, .wrapper a:active {
text-decoration: none;
}
}
.wrapper #masthead {
position: relative;
height: 70vh;
}
@media screen and (max-width: 600px) {
.wrapper #masthead {
height: 40vh;
}
}
.wrapper #masthead .slider {
position: absolute;
top: 0;
z-index: -1;
left: 0;
width: 100%;
height: 100%;
}
.wrapper #masthead .slider .slide {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
opacity: 0;
transition: 2s opacity;
}
.wrapper #masthead .slider .slide.shown {
opacity: 1;
}
.wrapper #masthead .slider .slide .image {
opacity: 1;
background-size: cover;
background-position: center;
height: 100%;
}
.wrapper #masthead .fade_ins {
position: absolute;
top: 50%;
left: 50%;
transform: translateX(-50%) translateY(-50%);
padding: 2rem 0;
}
.wrapper #masthead .fade_ins .fade {
max-width: 30rem;
width: 100%;
margin: 1rem auto;
z-index: 10;
padding: 2rem;
background-color: rgba(255, 255, 255, 0.8);
transition: 0.65s ease-out all;
transform: translateY(50px);
opacity: 0; }
@media (max-width: 1920px) {
.wrapper #masthead .fade_ins .fade {
max-width: 25rem;
}
}
.wrapper #masthead .fade_ins .fade.shown {
opacity: 1;
transform: translateY(0);
}
.wrapper #masthead .fade_ins .fade img {
width: 100%;
height: auto;
}
.wrapper #masthead .fade_ins a::before, .wrapper #masthead .fade_ins a::after {
display: none;
}
.wrapper article.page {
padding: 2rem 0;
text-align: center;
}
.wrapper .button {
background-color: #575757;
color: #f6f6f6 !important;
display: inline-block;
padding: 0.25rem;
min-width: 12rem;
transition: 0.3s ease all;
cursor: pointer;
}
.wrapper .button:before, .wrapper .button:after {
height: 0;
display: none;
}
.wrapper .button:hover {
background-color: #cebd85;
color: #575757;
}
.wrapper .entry-title {
margin-bottom: 1rem;
line-height: 1;
}
.wrapper .underline {
background-color: #47734f;
height: 2px;
margin: auto;
max-width: 25rem;
}
.wrapper .entry-header {
margin-bottom: 1rem;
}
.wrapper .bordered .entry-content {
max-width: 20rem;
margin: 1rem auto;
background-color: rgba(87, 87, 87, 0.05);
padding: 0.5rem;
text-align: left;
}
.wrapper .bordered .entry-content p {
margin: 0;
}
.wrapper .bordered .entry-content table {
width: 100%;
}
.wrapper .bordered .entry-content table td {
padding: 0.5rem;
}
.wrapper .bordered .entry-content table tr {
border-bottom: solid 2px #f6f6f6;
}
.wrapper .bordered .entry-content table tr:last-child {
border-bottom: none;
}
.wrapper #colophon {
padding-top: 2rem;
}
.wrapper #colophon .column h1, .wrapper #colophon .column h2, .wrapper #colophon .column h3 {
text-align: center;
border-bottom: 1px solid #575757;
}
.btn {
background-color: #575757;
border: none;
}
#main-menu nav a {
color: #f6f6f6;
padding: 0.3rem;
}
#main-menu nav a:after {
background: #f6f6f6;
}
#main-menu nav a:hover {
color: #f6f6f6;
}
#main-menu nav::before {
background: #47734f !important;
color: #f6f6f6 !important;
}
#main-menu label[for=navcheck]::before {
background-color: rgba(206, 189, 133, 0.4) !important;
}
#main-menu .burger:after, #main-menu .burger:before, #main-menu .burger span {
background: #47734f !important;
}
#main-menu input:checked + label .burger:after, #main-menu input:checked + label .burger:before, #main-menu input:checked + label .burger span {
background: #f6f6f6 !important;
}
form .wpcf7-submit {
margin-top: 15px;
padding: 5px 15px;
background-color: #cebd85;
color: white;
border: 1px solid #cebd85;
border-radius: 5px;
transition: 0.2s ease-in-out;
}
form .wpcf7-submit:hover {
background-color: white;
border: 1px solid #cebd85;
color: #cebd85;
}
.wpcf7-form .form-group {
position: relative;
padding-top: 0.75rem;
margin-bottom: 1rem;
display: block;
}
.wpcf7-form .form-group .label {
position: absolute;
top: 0;
font-size: 0.75rem;
transition: 0.3s ease;
}
.wpcf7-form .form-group .input {
border: none;
background: none;
outline: none;
padding: 0.25rem;
width: 100%;
}
.wpcf7-form .form-group::before, .wpcf7-form .form-group:after {
position: absolute;
content: "";
left: 0;
width: 100%;
bottom: 0;
height: 2px;
display: block;
background-color: rgba(206, 189, 133, 0.2);
}
.wpcf7-form .form-group::after {
transition: 0.3s ease;
background-color: #cebd85;
}
.wpcf7-form .form-group.empty .label {
top: 0.75rem;
font-size: 1rem;
}
.wpcf7-form .form-group.empty::after {
width: 0;
}
.ea-standard {
width: 100% !important;
margin-bottom: 3rem !important;
}
.ea-standard .step select {
width: 90% !important;
}
.ea-standard .step label {
width: 10% !important;
text-align: left !important;
font-size: 1.25rem;
}
@media screen and (max-width: 1200px) {
.ea-standard .step {
display: flex;
flex-direction: column;
}
.ea-standard .step select {
width: 100% !important;
}
.ea-standard .step label {
width: 100% !important;
}
.ea-standard .step.final label {
width: 30% !important;
}
.ea-standard .step.final input {
width: 70% !important;
}
}
@media screen and (max-width: 400px) {
.ea-standard .step.final label {
width: 40% !important;
}
.ea-standard .step.final input {
width: 60% !important;
}
}
@media screen and (max-width: 850px) {
.ea-standard .step small {
display: none;
}
}
.ea-standard .ui-datepicker {
border: none;
}
.ea-standard .ui-datepicker-next-hover, .ea-standard .ui-datepicker-prev-hover {
background: none !important;
border: none !important;
}
.ea-standard .ui-widget-header {
background: #cebd85;
border: none;
}
.ea-standard a::before, .ea-standard a::after {
display: none;
}
.ea-standard .selected-time {
background-color: #575757 !important;
}
.ea-standard .selected-time:not(:first-of-type) {
background-color: #cebd85 !important;
}
.ea-standard .section {
color: #575757 !important;
}
@media screen and (max-width: 450px) {
.ea-standard .section {
font-size: 1rem;
}
}
.ea-standard #booking-overview {
margin-bottom: 1rem !important;
}
#ui-datepicker-div {
display: none;
}
.service {
justify-content: center;
margin-bottom: 5rem;
}
.service .card {
margin-top: 7rem;
padding-top: 8.5rem;
align-items: center;
margin-left: 1rem;
margin-right: 1rem;
cursor: pointer;
display: inherit;
background-color: white;
margin-bottom: 2rem;
box-shadow: 0 14px 28px rgba(0, 0, 0, 0.15), 0 10px 10px rgba(0, 0, 0, 0.12);
}
.service .card .card-body a {
padding-top: 1rem;
}
.service .card .image {
padding-bottom: 0;
background-size: cover;
background-position: center;
background-repeat: no-repeat;
height: 15rem;
width: 15rem;
border-radius: 100%;
position: absolute;
top: -7rem;
box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
transition: 0.4s;
left: 50%;
transform: translateX(-50%);
}
.service .card:hover .image {
transform: translateY(10px) scale(1.05) translateX(-50%);
}
.modal-galerie a:focus {
outline: none;
box-shadow: none;
}
.modal-galerie a::after, .modal-galerie a::before {
display: none;
}
.modal-galerie .background-image {
background-size: cover;
background-repeat: no-repeat;
background-position: center;
margin-left: 2rem;
margin-right: 2rem;
height: 22rem;
}
@media screen and (max-width: 1300px) {
.modal-galerie .background-image {
height: 18rem;
}
}
@media screen and (min-width: 2000px) {
.modal-galerie .background-image {
height: 27rem;
}
}
.custom-arrow {
position: absolute;
top: 50%;
color: white;
transform: translateY(-50%);
z-index: 1;
cursor: pointer;
}
.custom-arrow.custom-arrow-left {
left: 12px;
transition: 0.3s ease;
}
.custom-arrow.custom-arrow-right {
right: 12px;
transition: 0.3s ease;
}
.servicemodal {
-webkit-overflow-scrolling: touch;
}
.servicemodal .modal-content {
border-radius: 0;
border: none;
background-color: transparent;
}
.servicemodal .modal-content .modal-header {
border: none;
background-color: #47734f;
color: white;
border-radius: 0;
}
.servicemodal .modal-content .modal-header .close {
color: white;
}
.servicemodal .modal-content .modal-body .reihe {
justify-content: space-between;
}
.servicemodal .modal-content .modal-body .reihe .column {
width: 49%;
height: fit-content;
}
.servicemodal .modal-content .modal-body .reihe .column.text {
background-color: white;
margin-right: 1rem;
padding: 1rem;
overflow: hidden;
position: relative;
transition: 0.3s ease all;
}
.servicemodal .modal-content .modal-body .reihe .column.text .down {
position: absolute;
bottom: 0;
right: 0.5rem;
transition: 0.3s ease all;
}
.servicemodal .modal-content .modal-body .reihe .column.text.open {
max-height: 2000px !important;
}
.servicemodal .modal-content .modal-body .reihe .column.text.open .down {
transform: rotate(180deg);
}
.servicemodal .modal-content .modal-body .reihe .column.column-gruen {
display: flex;
flex-direction: column;
justify-content: flex-start;
position: relative;
height: 100%;
}
.servicemodal .modal-content .modal-body .reihe .column.column-gruen .galerie {
padding: 1rem 0;
background-color: #47734f;
}
@media screen and (max-width: 950px) {
.servicemodal .modal-content .modal-body .reihe .column {
width: 100%;
}
.servicemodal .modal-content .modal-body .reihe .column.text {
margin-bottom: 1rem;
margin-right: 0;
max-height: 100% !important;
}
.servicemodal .modal-content .modal-body .reihe .column .down {
display: none;
}
.servicemodal .modal-content .modal-body .reihe .column.column-gruen {
display: none;
}
}
.servicemodal .modal-content .modal-body .reihe .schliessen {
margin-top: 1rem;
margin-left: auto;
}
.servicemodal .modal-content .modal-body .reihe .schliessen .btn {
background-color: #47734f;
color: white;
border-radius: 0;
}
.servicemodal ul {
list-style-position: outside;
}
.modal-backdrop {
background-color: #cebd85;
}
@media (min-width: 576px) {
.modal-dialog {
max-width: 90%;
margin: 1.75rem auto;
}
}
footer h3 {
color: #47734f;
border-bottom: solid 1px #47734f !important;
}
#footer {
margin-top: 30px;
bottom: 0;
right: 0;
height: 90px;
background-color: #47734f;
width: 100%;
text-align: center;
}
#footer a {
color: #f6f6f6;
margin-top: 30px;
}
#footer a::before, #footer a::after {
display: none;
}
#footer li {
display: inline-block;
}
#footer li:not(:last-child):after {
content: " | ";
color: white;
}
.header-bild-single {
background-size: cover;
background-position: center;
height: 100%;
background-repeat: no-repeat;
}
#menu-footer {
padding-left: 0;
}