/* //////////////////////////////////// ALLGEMEIN //////////////////////////////////// */
html {
	box-sizing: border-box;
	background-color: #FAF9F6;
}
*, *:before, *:after {
	box-sizing: inherit;
}
body{
	font-family: "parabolica-light", sans-serif;
	color: #000000;
	margin: 0px;
	line-height: 1.7;
	font-size: 22px;
	scroll-behavior: smooth;
	font-weight: 100;
}
h1, h2 {
	font-family: "cormorant", sans-serif;
	font-size: 44px;
	color: #39501E;
	margin: 0 auto 20px;	
	line-height: 1.1;
	font-weight: 400;
}
h3, h4, h5, h6 {
	font-family: "parabolica-light", sans-serif;
	font-size: 18px;
	color: #39501E;
	text-transform: uppercase;
	margin: 0 auto 15px;	
	line-height: 1.1;
	font-weight: 300;
}
div p{
	margin: 0px 0px 15px 0px;
}
div p:last-child, p:last-child{
	margin: 0 auto;
}
img, svg, video{
	max-width: 100%;
	height:auto;
}
a{
	color: #AF9241;
	text-decoration: none;
}
a:active, a:hover {
	color: #39501E;
}
ul{
	padding-left: 20px;
	margin: 0 auto 15px;
}
.no_scroll{
	height: 100vh;
	overflow: hidden;
}
.textcenter{
	text-align: center;
}

.container {
    width: 100%;
    margin: 0 auto;
}

.w1280 {
    max-width: 1280px;
    padding-left: 20px;
    padding-right: 20px;
}

.w900 {
    max-width: 900px;
}

.margin_oben {
    margin-top: 80px;
}

.margin_unten {
    margin-bottom: 80px;
}


/* //////////////////////////////////// FOOTER //////////////////////////////////// */
.section_footer {
    background: #dcded3;
    padding: 70px 0;
}

.footer_inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer_logo {
    width: 300px;
    margin-bottom: 50px;
}

.footer_logo img {
    display: block;
    width: 100%;
    height: auto;
}

.footer_contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin-bottom: 40px;
    font-family: "cormorant", sans-serif;
    font-size: 40px;
    line-height: 1.2;
    font-weight: 400;
	color:#39501E;
}

.footer_adresse p {
    margin: 0;
}

.footer_link {
    color: inherit;
    text-decoration: none;
    transition: color 0.25s ease;
}

.footer_link:hover {
    color: #39501E;
}

.footer_socials {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-bottom: 40px;
}

.footer_socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.footer_socials a:hover {
    opacity: 0.7;
    transform: translateY(-2px);
}

.footer_socials img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer_bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 14px;
    line-height: 1.7;
	font-weight: 200;
}

.footer_line {
    display: block;
    width: 80px;
    height: 1px;
    background: #AF9241;
}

.footer_legal_numbers {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-top: 15px;
}

.footer_legal_links {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 15px;
}

.footer_legal_links a {
    color: inherit;
    text-decoration: none;
    transition: color 0.25s ease;
}

.footer_legal_links a:hover {
    color: #AF9241;
}

@media (max-width: 900px) {
    .footer_contact {
        font-size: 34px;
    }
}

@media (max-width: 600px) {
    .section_footer {
        padding: 55px 0;
    }

    .footer_logo {
        width: 240px;
        margin-bottom: 40px;
    }

    .footer_contact {
        font-size: 28px;
        margin-bottom: 35px;
    }

    .footer_socials {
        margin-bottom: 35px;
    }

    .footer_bottom {
        font-size: 14px;
    }
}

/* //////////////////////////////////// SLIDER //////////////////////////////////// */
.section_slider {
    width: 100%;
}

.slider_wrap {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
}

.slider,
.slider .slick-list,
.slider .slick-track,
.slider_item,
.slider_single {
    width: 100%;
    height: 100%;
}

.slider_item img,
.slider_single img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.slider_arrows {
    position: absolute;
    left: 50%;
    bottom: 30px;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    transform: translateX(-50%);
}

.slider_arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.slider_arrow:hover {
    opacity: 0.75;
    transform: translateY(-2px);
}

.slider_arrow img {
    display: block;
    width: auto;
    height: 40px;
}

@media (max-width: 900px) {
    .slider_wrap {
        height: 60vh;
    }

    .slider_arrows {
        bottom: 24px;
    }
}

@media (max-width: 600px) {
    .slider_wrap {
        height: 50vh;
    }

    .slider_arrow {
        width: 40px;
        height: 40px;
    }

    .slider_arrow img {
        height: 36px;
    }
}



/* //////////////////////////////////// TITEL TEXT LINK //////////////////////////////////// */
.section_titel_text_link {
    width: 100%;
}

.titel_text_link_inner {
    text-align: center;
}

.block_link_wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 40px;
}

.block_link_line {
    display: block;
    width: 80px;
    height: 1px;
    background: #AF9241;
    margin: 0 auto;
}

.footer_angebot_content_inner .block_link_line, .bild_text_content_inner .block_link_line {
    margin: 0;
}

.block_link {
    display: inline-block;
    margin: 15px 0;
    color: #39501E;
    font-size: 18px;
    line-height: 1.3;
    text-decoration: none;
    transition: color 0.25s ease;
    font-family: "cormorant", serif;
    font-weight: 300;
    text-transform: uppercase;
}
.footer_angebot_content_inner .block_link, .bild_text_content_inner .block_link {
    font-weight: 600;
}

.block_link:hover {
    color: #AF9241;
}

.titel_text_link_inner ul,
.titel_text_link_inner ol {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 40px 0;
    padding: 0;
    list-style: none;
}

.titel_text_link_inner li {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 15px 0 0;
    text-align: center;
}

.titel_text_link_inner li::before {
    content: "";
    display: block;
    width: 80px;
    height: 1px;
    margin: 0 auto 15px;
    background: #AF9241;
}

.titel_text_link_inner li:last-child::after {
    content: "";
    display: block;
    width: 80px;
    height: 1px;
    margin: 15px auto 0;
    background: #AF9241;
}



/* //////////////////////////////////// ACCORDEON //////////////////////////////////// */
.section_accordeon {
    width: 100%;
}

.accordeon_wrap {
    width: 100%;
}

.accordeon_item {
    border-bottom: 1px solid #39501E;
    padding: 15px 0;
}

.accordeon_item:first-child {
    border-top: 1px solid #39501E;
}

.accordeon_title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    text-align: left;
    font-family: "cormorant-garamond", serif;
    font-size: 26px;
    font-weight: 400;
    color: #39501E;
    line-height: 1.25;
    cursor: pointer;
}

.accordeon_icon {
    position: relative;
    flex: 0 0 18px;
    width: 18px;
    height: 18px;
}

.accordeon_icon::before,
.accordeon_icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 18px;
    height: 1px;
    background: #39501E;
    transform: translateY(-50%);
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.accordeon_icon::after {
    transform: translateY(-50%) rotate(90deg);
}

.accordeon_item.active .accordeon_icon::after {
    opacity: 0;
    transform: translateY(-50%) rotate(0deg);
}

.accordeon_content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding-top: 0;
    transition: max-height 0.35s ease, opacity 0.25s ease, padding-top 0.35s ease;
}

.accordeon_item.active .accordeon_content {
    opacity: 1;
    padding-top: 18px;
}

.accordeon_content p {
    margin-top: 0;
}

.accordeon_content p:last-child {
    margin-bottom: 0;
}



/* //////////////////////////////////// GALERIE //////////////////////////////////// */
.section_galerie {
    width: 100%;
}

.galerie_wrap {
    width: 100%;
    column-count: 3;
    column-gap: 20px;
}

.galerie_item {
    display: block;
    width: 100%;
    margin-bottom: 20px;
    break-inside: avoid;
    overflow: hidden;
}

.galerie_item img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.45s ease;
}

.galerie_item:hover img {
    transform: scale(1.04);
}

@media (max-width: 900px) {
    .galerie_wrap {
        column-count: 2;
    }
}

@media (max-width: 600px) {
    .galerie_wrap {
        column-count: 1;
        column-gap: 0;
    }

    .galerie_item {
        margin-bottom: 15px;
    }
}


/* //////////////////////////////////// BILD TEXT LX RX //////////////////////////////////// */
.section_bild_titel_text_link {
    position: relative;
    width: 100%;
    padding: 75px 0 85px;
    overflow: hidden;
}

.bild_text_bg {
    position: absolute;
    top: 0;
    bottom: 0;
    width: calc(50% - 90px);
    background: #dcded3;
    z-index: 0;
}

.bild_left .bild_text_bg {
    left: 0;
}

.bild_right .bild_text_bg {
    right: 0;
}

.bild_text_inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: stretch;
    width: 100%;
}

.bild_right .bild_text_inner {
    flex-direction: row-reverse;
}

.bild_text_bild,
.bild_text_content {
    width: 50%;
}

.bild_text_bild {
    aspect-ratio: 1 / 1;
}

.bild_text_bild img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.bild_text_content {
    display: flex;
    align-items: center;
    text-align: left;
}

.bild_text_content_inner {
    width: 100%;
    padding: 0 70px;
}

.bild_text_content .block_link_wrap {
    align-items: flex-start;
}

@media (max-width: 900px) {
    .section_bild_titel_text_link {
        padding: 0;
    }

    .bild_text_bg {
        display: none;
    }

    .bild_text_inner,
    .bild_right .bild_text_inner {
        flex-direction: column;
    }

    .bild_text_bild,
    .bild_text_content {
        width: 100%;
    }

    .bild_text_content_inner {
        padding: 40px 0 0;
    }
}

@media (max-width: 600px) {
    .bild_text_content_inner {
        padding-top: 32px;
    }
}


/* //////////////////////////////////// INFOBOX //////////////////////////////////// */
.section_infobox {
    width: 100%;
}

.infobox_inner {
    background: #dcded3;
    padding: 60px;
    text-align: center;
}

.infobox_inner .block_titel {
    margin-bottom: 25px;
}

.infobox_untertitel {
    font-weight: 300;
    text-transform: none;
    font-size: 22px;
}

.infobox_text {
    text-align: center;
}

.infobox_text ul,
.infobox_text ol {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 40px 0;
    padding: 0;
    list-style: none;
}

.infobox_text li {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 15px 0 0;
    text-align: center;
}

.infobox_text li::before {
    content: "";
    display: block;
    width: 80px;
    height: 1px;
    margin: 0 auto 15px;
    background: #AF9241;
}

.infobox_text li:last-child::after {
    content: "";
    display: block;
    width: 80px;
    height: 1px;
    margin: 15px auto 0;
    background: #AF9241;
}

.infobox_links {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-top: 40px;
}

.infobox_links.has_one_link {
    gap: 0;
}

.infobox_links.has_two_links {
    gap: 80px;
}

.infobox_link_item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.infobox_link_item .block_link {
    margin: 15px 0;
}

@media (max-width: 900px) {
    .infobox_inner {
        padding: 50px 40px;
    }

    .infobox_links.has_two_links {
        gap: 50px;
    }
}

@media (max-width: 600px) {
    .infobox_inner {
        padding: 40px 25px;
    }

    .infobox_links {
        flex-direction: column;
        align-items: center;
    }

    .infobox_links.has_two_links {
        gap: 25px;
    }
}


/* //////////////////////////////////// FERIENWOHNUNGEN //////////////////////////////////// */
.section_ferienwohnungen {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-bottom: 60px;
}

.ferienwohnungen_bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 90px);
    background: #dcded3;
    z-index: 0;
}

.ferienwohnungen_inner {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 40px;
    width: 100%;
}

.ferienwohnung_item {
    display: block;
    width: 50%;
    color: inherit;
    text-decoration: none;
}

.ferienwohnung_bild {
    width: 100%;
    aspect-ratio: 2 / 3;
    overflow: hidden;
}

.ferienwohnung_bild img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.45s ease;
}

.ferienwohnung_item:hover .ferienwohnung_bild img {
    transform: scale(1.04);
}

.ferienwohnung_content {
    padding-top: 30px;
    text-align: center;
}

.ferienwohnung_content .block_obertitel {
    margin-bottom: 15px;
      letter-spacing: 3px;
}

.ferienwohnung_content .block_titel {
    margin-bottom: 5px;
}

.ferienwohnung_preis {
    margin-top: 5px;
    color: #39501E;
    font-weight: 600;
}

@media (max-width: 900px) {
    .ferienwohnungen_bg {
        display: none;
    }

    .ferienwohnungen_inner {
        flex-direction: column;
        gap: 50px;
    }

    .ferienwohnung_item {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .ferienwohnungen_inner {
        gap: 40px;
    }

    .ferienwohnung_content {
        padding-top: 24px;
    }
}

/* //////////////////////////////////// HEADER //////////////////////////////////// */
.site_header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px 40px;
    background: #eeede8;
}

.header_menu_button,
.header_menu_close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.header_menu_button img,
.header_menu_close img {
    display: block;
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.header_logo {
    position: absolute;
    left: 50%;
    top: 50%;
    display: block;
    width: 320px;
    transform: translate(-50%, -50%);
}

.header_logo img {
    display: block;
    width: 100%;
    height: auto;
}

.header_request {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.header_request .block_link {
    margin: 15px 0;
}

.main_menu_overlay {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1001;
    width: 700px;
    max-width: 100%;
    height: 100vh;
    padding: 20px 80px;
    background: #AF9241;
    transform: translateX(-100%);
    transition: transform 0.45s ease;
}

.main_menu_overlay.active {
    transform: translateX(0);
}

@media (max-width: 700px) {
    .main_menu_overlay {
        width: 100%;
    }
}

.header_menu_close {
    position: absolute;
    top: 20px;
    left: 40px;
}

.main_menu_nav {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.main_menu {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.main_menu li {
    position: relative;
    margin: 0;
    padding: 0;
}

.main_menu a {
    display: inline-block;
    color: #fff;
    font-family: "cormorant", serif;
    font-size: 38px;
    line-height: 1.2;
    font-weight: 300;
    text-decoration: none;
    transition: color 0.25s ease;
}

.main_menu a:hover {
    color: #39501E;
}

.main_menu .current-menu-item > a,
.main_menu .current-page-ancestor > a,
.main_menu .current-menu-ancestor > a {
    color: #fff;
}

.main_menu .current-menu-item > a::before,
.main_menu .current-page-ancestor > a::before,
.main_menu .current-menu-ancestor > a::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -25px;
    width: 15px;
    height: 15px;
    background-image: url("../images/active.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transform: translateY(-50%);
}

body.menu_open {
    overflow: hidden;
}

@media (max-width: 900px) {
    .site_header {
        padding: 18px 25px;
    }

    .header_logo {
        width: 180px;
    }

    .main_menu_overlay {
        padding: 20px 50px;
    }

    .header_menu_close {
        left: 25px;
    }

    .main_menu a {
        font-size: 34px;
    }
}

@media (max-width: 600px) {
    .site_header {
        padding: 15px 20px;
    }

    .header_logo {
        width: 150px;
    }

    .header_request {
        display: none;
    }

    .main_menu_overlay {
        padding: 20px 45px;
    }

    .header_menu_close {
        left: 20px;
    }

    .main_menu a {
        font-size: 30px;
    }
}


/* //////////////////////////////////// CAROUSELL //////////////////////////////////// */
.section_footer_angebote {
    width: 100%;
}

.footer_angebote_headline {
    text-align: center;
    margin-bottom: 50px;
}

.footer_angebote_slider_wrap {
    position: relative;
    width: 100%;
}

.footer_angebote_slider {
    width: 100%;
}

.footer_angebot_slide {
    width: 100%;
}

.footer_angebot_item {
    display: flex;
    width: 100%;
}

.footer_angebot_bild,
.footer_angebot_content {
    width: 50%;
}

.footer_angebot_bild {
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.footer_angebot_bild img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.footer_angebot_content {
    display: flex;
    align-items: center;
    background: #dcded3;
    text-align: left;
}

.footer_angebot_content_inner {
    width: 100%;
    padding: 40px;
}

.footer_angebot_titel {
    margin: 0 0 25px;
    font-family: "parabolica-light", sans-serif;
  font-size: 37px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0px;
}

.footer_angebot_text {
    margin-bottom: 12px;
}

.footer_angebot_preis {
    margin-top: 18px;
}

.footer_angebot_preis strong {
    display: block;
    font-weight: 400;
}

.footer_angebot_preis span {
    display: block;
}

.footer_angebot_content .block_link_wrap {
    align-items: flex-start;
    margin-top: 35px;
}

.footer_angebote_arrows {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-top: 30px;
}

.footer_angebote_arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.footer_angebote_arrow:hover {
    opacity: 0.75;
    transform: translateY(-2px);
}

.footer_angebote_arrow img {
    display: block;
    width: auto;
    height: 30px;
}

@media (max-width: 900px) {
    .footer_angebot_item {
        flex-direction: column;
    }

    .footer_angebot_bild,
    .footer_angebot_content {
        width: 100%;
    }

    .footer_angebot_bild {
        aspect-ratio: 3 / 2;
    }
}

@media (max-width: 600px) {
    .footer_angebote_headline {
        margin-bottom: 35px;
    }

    .footer_angebot_content_inner {
        padding: 35px 25px;
    }
}


/* //////////////////////////////////// SCHNELLANFRAGE //////////////////////////////////// */
.section_schnellanfrage {
    width: 100%;
    background: #AF9241;
    padding: 70px 0;
}

.schnellanfrage_inner {
    text-align: center;
}

.schnellanfrage_obertitel,
.schnellanfrage_titel {
    color: #fff;
}

.schnellanfrage_obertitel {
    margin-bottom: 20px;
}

.schnellanfrage_titel {
    margin-bottom: 45px;
}

.schnellanfrage_form {
    width: 100%;
}

.schnellanfrage_fields {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 100%;
}

.schnellanfrage_field_wrap {
    width: 100%;
}

.schnellanfrage_field_wrap label {
    display: block;
    margin-bottom: 8px;
    color: #fff;
    font-weight: 300;
    line-height: 1.3;
    text-align: center;
}

.schnellanfrage_field {
    width: 100%;
    padding: 10px 20px;
    border:0;
    border-bottom: 1px solid #fff;
    border-radius: 0;
    background: transparent;
    color: #fff;
    font: inherit;
    font-weight: 600;
    line-height: 1.4;
    text-align: center;
    text-align-last: center;
    appearance: none;
}

.schnellanfrage_field::placeholder {
    color: #fff;
    font-weight: 300;
    opacity: 1;
    text-align: center;
}

.schnellanfrage_field::-webkit-input-placeholder {
    color: #fff;
    font-weight: 300;
    opacity: 1;
    text-align: center;
}

.schnellanfrage_field::-moz-placeholder {
    color: #fff;
    font-weight: 300;
    opacity: 1;
    text-align: center;
}

.schnellanfrage_field option {
    color: #39501E;
    background: #fff;
}

.schnellanfrage_field:focus {
    outline: none;
    border-color: #39501E;
}

.schnellanfrage_submit_wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 45px;
}

.schnellanfrage_submit_wrap .block_link_line {
    background: #39501E;
}

.schnellanfrage_submit {
    margin: 15px 0;
    padding: 0;
    border: 0;
    background: transparent;
    color: #fff;
    cursor: pointer;
}

.schnellanfrage_submit:hover {
    color: #39501E;
}

@media (max-width: 900px) {
    .schnellanfrage_fields {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .section_schnellanfrage {
        padding: 55px 0;
    }

    .schnellanfrage_fields {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}


/* //////////////////////////////////// FORMULAR //////////////////////////////////// */
.cf7_anfrage {
    width: 100%;
}

.cf7_anfrage h3 {
    margin: 55px 0 25px;
    text-align: center;
}

.cf7_anfrage h3:first-child {
    margin-top: 0;
}

.cf7_grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    width: 100%;
}

.cf7_full {
    width: 100%;
    margin-top: 20px;
}

.cf7_field_wrap {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.cf7_field_wrap label {
    display: block;
    margin-bottom: 8px;
    color: inherit;
    font-weight: 300;
    line-height: 1.3;
    text-align: left;
}

.cf7_field_wrap p,
.cf7_grid p,
.cf7_full p {
    display: contents;
    margin: 0;
}

.cf7_field_wrap br,
.cf7_grid br,
.cf7_full br {
    display: none;
}

.cf7_field_wrap .wpcf7-form-control-wrap {
    display: block;
    width: 100%;
}

.cf7_field {
    display: block;
    width: 100%;
    padding: 14px 20px;
    border: 1px solid #39501E;
    border-radius: 0;
    background: transparent;
    color: #39501E;
    font: inherit;
    font-weight: 100;
    line-height: 1.4;
}

.cf7_field::placeholder {
    color: #39501E;
    font-weight: 300;
    opacity: 0.75;
}

.cf7_field::-webkit-input-placeholder {
    color: #39501E;
    font-weight: 300;
    opacity: 0.75;
}

.cf7_field::-moz-placeholder {
    color: #39501E;
    font-weight: 300;
    opacity: 0.75;
}

.cf7_field:focus {
    outline: none;
    border-color: #AF9241;
}

.cf7_anfrage textarea.cf7_field {
    min-height: 150px;
    resize: vertical;
}

.cf7_privacy {
    margin-top: 35px;
    font-size: 17px;
    line-height: 1.6;
}

.cf7_privacy p {
    margin: 0 0 20px;
}

.cf7_privacy .wpcf7-list-item {
    margin: 0;
}

.cf7_privacy input[type="checkbox"],
.cf7_privacy input[type="radio"] {
    margin-right: 8px;
}

.cf7_radio {
    margin-top: 20px;
}

.cf7_radio .wpcf7-list-item {
    margin-right: 20px;
}

.cf7_submit_wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 45px;
}

.cf7_submit_wrap p {
    display: contents;
}

.cf7_submit_wrap br {
    display: none;
}

.cf7_submit_wrap .wpcf7-spinner {
    margin-top: 15px;
    display: none;
}

.cf7_submit {
    margin: 15px 0;
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    cursor: pointer;
}

.cf7_submit:hover {
    color: #AF9241;
}

.wpcf7-not-valid-tip {
    margin-top: 7px;
    font-size: 13px;
    color: #AF9241;
}

.wpcf7 form .wpcf7-response-output {
    margin: 35px 0 0;
    padding: 18px 25px;
    border: 1px solid #AF9241;
    text-align: center;
}

@media (max-width: 700px) {
    .cf7_grid {
        grid-template-columns: 1fr;
    }
}


/* //////////////////////////////////// KALENDER //////////////////////////////////// */
.ui-datepicker {
    z-index: 9999 !important;
    display: none;
    width: 280px;
    padding: 18px;
    background: #eeede8;
    border: 1px solid #AF9241;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.ui-datepicker-header {
    position: relative;
    margin-bottom: 15px;
    text-align: center;
    color: #39501E;
    font-weight: 600;
}

.ui-datepicker-prev,
.ui-datepicker-next {
    position: absolute;
    top: 0;
    color: #39501E;
    cursor: pointer;
    text-decoration: none;
}

.ui-datepicker-prev {
    left: 0;
}

.ui-datepicker-next {
    right: 0;
}

.ui-datepicker table {
    width: 100%;
    border-collapse: collapse;
}

.ui-datepicker th {
    padding: 6px 0;
    color: #39501E;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
}

.ui-datepicker td {
    padding: 2px;
    text-align: center;
}

.ui-datepicker td a,
.ui-datepicker td span {
    display: block;
    padding: 6px 0;
    color: #39501E;
    text-decoration: none;
}

.ui-datepicker td a:hover,
.ui-datepicker .ui-datepicker-current-day a {
    background: #AF9241;
    color: #fff;
}

.ui-datepicker-unselectable span {
    opacity: 0.35;
}


/* //////////////////////////////////// MARKL //////////////////////////////////// */
.header_markl {
    position: fixed;
    right: 80px;
    bottom: 100px;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 170px;
    height: 170px;
    padding: 25px;
    border-radius: 50%;
    background: #AF9241;
    color: #fff;
    text-align: center;
    text-decoration: none;
    line-height: 1.4;
    font-size:17px;
    transition: transform 0.25s ease, background 0.25s ease;
}

.header_markl:hover {
    color: #fff;
    transform: scale(1.04);
    background: #39501E;
}

.header_markl span {
    position: relative;
    z-index: 2;
}

.header_markl_img {
    position: absolute;
    left: 50%;
    top: -35px;
    z-index: 1;
    display: block;
    width: 80px;
    height: auto;
    transform: translateX(-50%);
    pointer-events: none;
}

@media (max-width: 900px) {
    .header_markl {
        right: 35px;
        bottom: inherit;
        top: 150px;
    }
}

@media (max-width: 500px) {
    .header_markl {
        display:none;
    }
}