/* STYLE
*********************************************/
@charset "utf-8";

@import 'https://fonts.googleapis.com/css?family=Martel+Sans';

@font-face {
    font-family: 'links';
    src: url('../fonts/links.woff2') format('woff2'),
         url('../fonts/links.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'headline';
    src: url('../fonts/headline.woff2') format('woff2'),
         url('../fonts/headline.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

::-moz-selection {color: white; background: #339933;}
::selection {color: white; background: #339933;}

*::-webkit-scrollbar-track{-webkit-box-shadow: none;background-color: transparent;border:0;}
*::-webkit-scrollbar{width: 8px;background-color: transparent; -webkit-appearance: none;}
*::-webkit-scrollbar-thumb{background-color: #339933; border-radius:10px; -webkit-box-shadow: 0 0 1px rgba(255,255,255,.5);}

html, body, ul, li, p {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

body {font-family: 'Martel Sans', sans-serif;font-size: 12px;line-height: 1.618em;}


b, strong {font-family: 'links';line-height: 150%;color: #339933;}

header {
    position: relative;
    width: 100%;
    background: #23a137;
    box-sizing: border-box;
    height: 7vh;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    padding: 0 25px;
}

header h1 {
    color: white;
    margin: 0;
}

main {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
}

.ghz-block {
    position: relative;
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.ghz-link {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.ghz-item {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    box-sizing: border-box;
    transition: all .4s;
}

.ghz-item:hover {background: rgba(153, 153, 153, 0.3);}

.ghz-item-website {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #23a137;
    border-radius: 100%;
    margin: 5px 10px 0 0;
    background-image: url(../images/website.png);
    background-size: 75%;
    background-position: center;
    background-repeat: no-repeat;
}

.ghz-item-mail {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #23a137;
    border-radius: 100%;
    margin: 5px 10px 0 0;
    background-image: url(../images/mail.png);
    background-size: 75%;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 2;
    position: relative;
}

.ghz-item-route {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #23a137;
    border-radius: 100%;
    margin: 5px 10px 0 0;
    background-image: url(../images/route.png);
    background-size: 75%;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 2;
    position: relative;
}

.ghz-item:nth-child(2) {
    border-top: 1px solid #999;
    border-bottom: 1px solid #999;
}

.ghz-item img {
    width: calc(100% / 13 * 5);
    padding: 0 25px;
}

article {
    position: relative;
    box-sizing: border-box;
    padding: 15px;
    /* z-index: 1; */
}

#map {
    position: relative;
    width: 100%;
    height: 86vh;
}

#map .text {color: #000; font-size:16px; line-height:100%; font-weight:normal;}
#map img {width: 130px; transition: all .4s;}
#map .pfeil {width: 50px;}

footer {
    position: relative;
    width: 100%;
    background: #999;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    height: 7vh;
    padding: 0 25px;
}

footer a {
    color: white;
    text-decoration: none;
    font-family: 'links';
    font-size: 16px;
}

.impressum {box-sizing: border-box;padding: 15px;}
.impressum h1 {color: #23a137;}
.impressum a {color: #23a137;text-decoration: none;}

a.to-start {
    position: relative;
    display: block;
    color: white;
    background: #999;
    padding: 15px 30px;
    text-decoration: none;
    margin: 15px;
    border-radius: 100px 0 0 100px;
    line-height: 100%;
    box-sizing: border-box;
}
/* STYLE ENDE
*********************************************/
/* RESPONSIVE *********************************************/
@media screen and (max-width:1024px) {
}

@media screen and (max-width:768px) {
header {height: auto;padding: 25px;}
main {flex-wrap: wrap;}
.ghz-block {width: 100%;}
.ghz-item {flex-wrap: wrap;}
.ghz-item img {width: 100%;padding: 25px;box-sizing: border-box;}
footer {padding: 10px 25px;height: auto;}
#map {height: 300px;}
#map img {width: 180px;}
}
/* RESPONSIVE ENDE *********************************************/