*{
    box-sizing: border-box;
}

/** Breakpoint: 576px+ */
@media (min-width: 36em) {}

/** Breakpoint: 768px+ */
@media (min-width: 48em) {}

/** Breakpoint: 992px+ */
@media (min-width: 62em) {}

/** Breakpoint: 1200px+ */
@media (min-width: 75em) {}

/** Breakpoint: 1400px+ */
@media (min-width: 87.5em) {}

html {
    font-size: 1em; /* 16px */
}


body {
    font-family: "kalam", sans-serif;
    background-color:darkgreen;
    margin: 0px;
    padding: 0px;
   
}

.container {
    max-width: 75rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right:1rem;
}

@media (min-width: 62em) {
    .container {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

.form__input{
    margin:0;
    font-family: inherit;
    font-size: 1rem;
    padding: 0.5rem;
    background-color: white;
    border: 0.12rem solid rgba(200,200,200);
    border-radius:0.5rem;
    width: 20rem;
    resize: none;
    width:100%;
}

.form__input:focus{
    border: 0.125rem solid rgba(150,150,150);
    outline: none;
}

.form__input--textarea{
    min-height: 6rem;
}

.form__input-container {
    text-align: center;
    padding-bottom: 1rem;
}



header {
    padding-bottom: 2rem;
    background-image: linear-gradient(90deg, rgba(13, 100, 0, 0.2), rgba(0,0,0,0), rgba(13,100,0,0.2) ), url("../Bilder/index/Haus.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 20%;
   
}


@media (min-width: 62em){
    .header {
        background-image: linear-gradient(90deg, rgba(13, 100, 0, 0.2), rgba(0,0,0,0), rgba(13,100,0,0.2) ), url("../Bilder/index/Haus.jpg"); 
    }
}

.header::after {
    content: "";
    display: block;
    width: 7.5rem;
    height: 0.25rem;
    background-color: rgba(240,164,114);
    margin-left: auto;
    margin-right: auto;  
    box-shadow: 0 0 0.5rem rgb(0,0,0);
}

@media (min-width: 62em) {
    .header::after {
        width: 12.5rem;
    }
}

.button {
    -webkit-appearance: none;
    appearance: none;
    display: inline-block;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 99999999px;
    border:none;
    /*background-color: rgba(171,184,91);*/
    background-color: rgb(240, 148, 86);
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 0.25rem 0.5rem rgba(0,0,0, 0.9);
    text-shadow: 0 0 0.5rem rgb(0,0,0,0.5);
}

.button:hover {
    text-decoration: underline;
    background-color: rgb(215, 228, 128);
}

.button--primary {
    background-color:rgb(240, 148, 86);
}

.button--primary:hover {
    background-color:rgb(215,228,128);
}

.button--transparent {
    -webkit-backdrop-filter: blur(0.1rem);
    backdrop-filter: blur(0.1rem);
    background-color: transparent;
    border: 0.125rem solid white;
    filter:hue-rotate(50deg);
}

.button--transparent:hover {
    background-color: rgba(255,255,255,0.2);

} 

.button--card{
    box-shadow: 0 0.25rem 0.5rem rgba(0,0,0,0.5);
    margin-top:1rem;
    font-size:0.75rem;
}

.text-primary {
    color: rgb(238, 161, 120);
}

.desktop-only {
    display:none;
}

@media (min-width: 62em) {
    .desktop-only {
        display:initial;
    }
}

.header__logo-link {
    display: block ; 
    width: 6rem;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 62em){
    .header__logo-link {
        margin-left: 0;
        margin-right: 0;
    }
}
.header__logo {
    width: 6rem;
    /*width: 100%;*/
    padding: 0;
    filter:drop-shadow(0 0 0.5rem rgba(0,0,0));
}

.header__nav-ul {
    margin:0;
    padding: 0;
    text-align: center;
 }

.header__nav-link {
    display: inline-block;
    color: white;
    text-decoration: none;
    padding: 1rem 1rem;
    font-weight: bold;
    text-shadow: 0 0 1rem rgba(0,0,0,0.9);
}

.header__nav-li {
    display: inline-block;
    list-style-type:none;   
}

.header__nav-li--desktop-only {
    display: none;
}

@media (min-width: 62em){
    .header__nav-li--desktop-only {
        display: inline-block;
    }
}
.header__nav {
  padding-top: 2rem;
  padding-bottom: 0.5rem;  
}
@media (min-width: 62em) {
    .header__nav {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }
}

.header__heading {
    font-size: 2rem;
    color: white;
    margin: 0rem;
    padding-top: 1rem;
    text-shadow: 0 0.25rem 1.5rem rgba(0,0,0, 0.9);
    
}

@media (min-width: 36em) {
    .header__heading {
        font-size: 3rem;
        padding-top: 3rem;
    }
}

@media (min-width: 62em) {
    .header__heading {
        padding-top: 6rem;
    }
}

.header__sub-heading {
    font-size: 1rem;
    color: white;
    margin:0;
    padding-top: 1rem;
    padding-bottom: 2rem;
    text-shadow: 0 0.25rem 1rem rgba(0,0,0,0.9);
}

@media (min-width: 36em) {
    .header__sub-heading {
     font-size: 1.33rem;
    }
}

@media (min-width: 62em) {
    .header__sub-heading {
        padding-bottom: 7.5rem;
    }
}
.header__button-container {
    display: flex;
    justify-content: center;
    padding-bottom: 2rem;
}

@media (min-width: 62em) {
    .header__button-container {
        display: none;
    }
}

.heading {
    /*color: rgb(63, 83, 50);*/
    color:#244d2d;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 2.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding:2rem 0;
}

.heading--white{
    color:white;
    text-shadow: 0 0 0.5rem rgb(0,0,0);
}


.heading--centered {
    text-align: center;
}

.heading__pre-text {
    display: block;
    font-size: 1.5rem;
}

.header--top-box::before {
    content:"";
    display: block;
    height: 0.25rem;
    width: 7.5rem;
    background-color:rgba(171,184,91);
    margin-bottom: 2rem;
}

.info {
    background-color:rgb(243, 237, 228);

}

.info__card-container {
    display: flex;
    flex-direction: row;
    flex-wrap:wrap;
    justify-content: center;
    margin-left:-1rem;
    margin-right:-1rem;
    }


.info__card {
    position:relative;
    text-align:center;
    background-color: white;
    flex: 0 0 22.333333rem;
    margin-top: 1rem;
    margin-bottom: 5rem;
    margin-left: 1rem;
    margin-right: 1rem;
    border-radius: 1rem;
    overflow: hidden;
    transition: transform 0.25s ease-in-out;
    box-shadow:0 0.25rem 0.5rem rgba(0,0,0,0.5);

}

.info__card:hover{
    transform: scale(1.05);
}

.info__card-img {
    display: block;
    height: 30rem;
    width:100%;
    object-fit:cover;
    object-position: 50% 90%;
}
.info__card-img2 {
    display: block;
    height: 30rem;
    width:100%;
    object-fit:cover;
    object-position: 30% 50%;
}

.info__card-img3 {
    display: block;
    height: 30rem;
    width:110%;
    object-fit:cover;
    object-position: 50% 100%;
}



.info__card-box{
    position:absolute;
    bottom:0;
    left:0;
    right:0;
    padding-bottom:1.5rem;
    background-color: rgba(15, 27, 7, 0.5);
    -webkit-backdrop-filter: blur(0.5rem);
    backdrop-filter: blur(0.3rem);
}

.info__card-heading {
    margin:0;
    padding-top: 1rem;
    padding-bottom: 0.5rem;
    font-size: 1.25rem;
    color: white;
    text-transform: uppercase;
    text-align: center;
}

.info__card-text {
    text-transform: uppercase;
    text-align:center;
    font-size: 0.8rem;
    margin:0;

}

.welcome {
background-image: url(../Bilder/index/Rhododendron.jpg);
background-position: 90% 50%;
background-size:cover;
background-repeat: no-repeat;
padding-bottom: 5rem;
padding-top: 4rem;
}

@media (min-width:62em){
    .welcome{
        background-image:
        linear-gradient(180deg,rgba(0,0,0,0.6) 0%, transparent 10%, transparent 95%, rgba(0,0,0,0.6)), 
        url(../Bilder/index/Rhododendron.jpg);
        background-size: 100% 100%, 150% auto;
        background-position: 54% 30%;
        background-attachment: local, fixed;
    }
}
@media (min-width:62em){
    .welcome__inner{
        padding-left:50%;
    }
}

.welcome__text {
margin: 0;
font-size: 1.2rem;
color:white;
padding-bottom: 1.5rem;
line-height: 1.4em;
text-shadow: 0 0 0.5rem rgb(0,0,0);
} 

.welcome__text-frame{
    background-color:rgba(0,0,0,0.25);
    margin-bottom: 2rem;
    backdrop-filter: blur(0.1rem); 
}

.contact {
    background-color:rgb(243, 237, 228);
    padding-top: 3rem;
    padding-bottom:3rem;
}

@media (min-width:62em) {
    .contact::after {
        content:"";
        display:block;
        background-color: #244d2d;
        width:7.5rem;
        height:0.25rem;
        margin-left:auto;
        margin-right:auto;
        margin-top: 3rem;
    }
}

.contact__logo{
    width:13rem;
    display:block;
    margin-left:auto;
    margin-right:auto;
    opacity: 0.7;
    }


.contact__cta{
    font-weight: normal;
    margin:0;
    font-size: 1.5rem;
    text-align: center;
    color:white;
    padding-top: 2rem;
    padding-bottom:1rem;
    /*text-shadow: 0 0 0.5rem rgb(0,0,0);*/
    text-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.5);
}

.contact__phone {
    display:inline-block;
    color: #244d2d;
    padding: 1.75rem;
    text-decoration: none;
}

.contact__phone2 {
    display:inline-block;
    color: #244d2d;
    padding: 1.75rem;
    text-decoration: none;
}


.contact__phone:hover {
    text-decoration: underline;
} 


.contact__phone-container {
    text-align: center;
    font-size: 2rem;
}

.contact__info::after{
    content:"";
    display: block;
    width: 7.5rem;
    height: 0.25rem;
    background-color:rgba(171,184,91);
    margin: 3rem auto;  
}

@media (min-width:62em) {
    .contact__info::after {
        content:none;
    }
}

@media (min-width:62em){
    .contact__row {
        display:flex;
        flex-direction: row;
        padding-top:1rem;
        padding-bottom:1rem;
        background-image: linear-gradient(90deg, 
            transparent calc(50% - 0.125rem), 
            rgba(238, 161, 120) calc(50% - 0.125rem), 
            rgba(238, 161, 120) calc(50% + 0.125rem), 
            transparent calc(50% + 0.125rem));
    }
}

@media (min-width:62em){
    .contact__info {
        flex: 0 0 50%;
    }
}

.contact__form {
    max-width:25rem;
    margin-left: auto;
    margin-right:auto;
}
@media (min-width:62em){
    .contact__form {
        flex: 0 0 50%;
        padding-left:2rem;
        padding-right:2rem;
        max-width:initial;
        margin-left: initial;
        margin-right:initial;
    }
}

.contact__form-submit-container {
    text-align: center;
}

@media (min-width:62em){
    .contact__form-submit-container {
        text-align: right;
    }
}

.quote {
    background-color:rgb(208, 212, 179);
    color:#244d2d;
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.quote__figure {
    margin:0;
        
}

.quote__blockquote {
    margin:0;
    font-weight: bold;
    padding-bottom: 1.5rem;
    font-size: 2rem;
    text-transform:uppercase;
    text-align: center;
    letter-spacing: 0.075em;
}

.quote__figcaption {
    font-size: 1.25rem;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 0.075em;
}

.quote__paragraph {
    margin:0;
}

.quote__paragraph::before {
    content:"„";
}

.quote__paragraph::after {
    content:"“"
}


