
@font-face{
    font-family: "Gothic";
    src: url("../fonts/GOTHIC.TTF") format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face{
    font-family: "GothicB";
    src: url("../fonts/GOTHICB.TTF") format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face{
    font-family: "GothicBI";
    src: url("../fonts/GOTHICBI.TTF") format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face{
    font-family: "GothicI";
    src: url("../fonts/GOTHICI.TTF") format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face{
    font-family: "Rage";
    src: url("../fonts/RAGE.TTF") format('truetype');
    font-weight: normal;
    font-style: normal;
}

:root{
    --white:#FFFFFF;
    --black:#282C34;
    --light-gray: #F8F9FA;
    --green:#78C2AD;
    --green-bs: #D1E7DD;
    --green-hover:#6CAF9C;
    --mint:#E4F3EF;
    --red: #EB4C42;
}

body{
    padding-top: 56px;
    font-family: Gothic;
    font-size: 1.2em;
}

#unterschrift-klein{
    background-color: #87997A;
    color: var(--white);
    font-size: 1.2em;
    /* display: flex; */
    flex-direction: column;
    justify-content: start;
    align-items: center;
    display: none;
}

#unterschrift-klein-hp{
    font-size: 0.8em;
}

.zitat{
    font-family: Gothic;
    font-size: 1.5em;
}

.zitat-quelle{
    font-family: Rage;
    font-size: 1.8em;
}

@media only screen and (max-width: 768px){
    .zitat{
        font-size: 1.2em;
    }
    .zitat-quelle{
        font-size: 1.4em;
    }
}

@media only screen and (max-width: 576px){
    .zitat{
        font-size: 1.0em;
    }
    .zitat-quelle{
        font-size: 1.2em;
    }
    #unterschrift-klein{
        display: flex;
    }
    .header h1{
        display: none;
    }
    .header p{
        display: none;
    }
}

.std-font{
    font-family: Gothic;
}

.std-font-b{
    font-family: GothicB;
}

.mt-100{
    margin-top: 100px;
}

.pt-90{
    padding-top: 90px;
}

.pt-30{
    padding-top: 30px;
}

.card-green{
    /* border: 1px solid var(--green); */
    border-radius: 15px;
    background-color: var(--mint);
}

.green-button{
    color: var(--white);
    background-color: var(--green);
    border: 0;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
    margin-top: 5px;
    margin-bottom: 5px;
}

.green-button:hover{
    background-color: var(--green-hover);
}

.header{
    position: relative;
}

.header img{
    filter: brightness(70%);
    filter: contrast(90%);
    /* opacity: 80%; */
    /* filter: saturate(80%); */
    /* filter: grayscale(30%); */
    /* filter: sepia(10%); */
}

.header h1{
    position: absolute;
    left: 40px;
    bottom: 60px;
    color: var(--white);
}

.header p{
    position: absolute;
    left: 40px;
    bottom: 10px;
    color: var(--white);
    font-size: 1.7rem;
}

.icon{
    color: var(--green);
}

.angebot-icon{
    color: var(--green);
    margin-right:10px;
    width: 35px;
    height: 35px;
}

.angebot-text{
    font-size: x-large;
}

#footer{
    background-color: var(--light-gray);
}

#footer a{
    text-decoration: none;
    color: var(--black);
}

#footer a:hover{
    color: var(--green-hover);
}

.google-map{
    border-radius: 15px;
    background-color: var(--mint);
}

.nachricht{
    display: none;
}

.error{
    color: var(--red);
    font-size: 0.8em;
}