/*FONTS START*/
 @import url("https://use.typekit.net/nwl6rwf.css");

html {
    font-family: "zeitung", sans-serif;
}
/*FONTS END*/

:root {
  --jade-rose: #DCA59F;
  --jade-red: #83131F;
  --jade-darkred: #550016;
  --jade-slate: #263641;
  --jade-ivory: #F6F0E1;
}



body {
    background-color: var(--ergo-white);
}
main {
    min-height: 100vh;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
}
.logo{
    width: 220px;
    margin-bottom: 20px;
}
h1 {
    font-size: 62px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 64px;
    color: var(--jade-red);
    font-family: 'haboro', sans-serif;
    max-width: 600px;
}
h1 span {
    color: var(--ergo1);
}
a {
    color: var(--jade-red);
}
p, td, p span {
    color: inherit;
    letter-spacing: 0.5px;
    font-size: 16px;
    line-height: 21px;
}
.container {
    position: relative;
    flex-grow: 3;
    flex-basis: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: var(--jade-ivory);
    color: var(--jade-slate);
    background-image: url('https://.baecker-haus.de/assets/img/pattern.jpg');
    background-position: top left;
    background-size: cover;
}
.container-inner {
    padding: 80px 40px;
    flex: 1;
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
}
.split-row {
    display: flex;
    align-items: center;
}

.nav {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.nav-row {
    display: flex;
    align-items: start;
    margin: 10px 0px;
}

.col {
    width: 50%;
}

.text {
    margin-bottom: 40px;
    max-width:800px;
}
.hide-big {
    display: none;
}
.hide-small {
    display: inline-block;
}

.map {
    flex-grow: 2;
    flex-basis: 0;
    padding: 30px 40px;
    background-color: var(--jade-rose);
    background-image: url('https://baecker-haus.de/assets/img/pattern-paper.jpg');
    background-position: top left;
    background-size: cover;
}

.footer {
    /* background-color: var(--ergo4); */
    padding: 40px;
}
p a,
p span {
    display: block;
}
p a span,
p button span {
    display: inline-block;
}
p a,
p button{
    padding: 2px 0px;
    display: flex;
    align-items: center;
}
p a img,
p button img {
    margin-right:10px;
    width: 20px;
    display: inline-block;
}
h3 {
    margin-bottom: 5px;
    font-weight: 600;
}
.footer p {
    color: white;
}

table,
table tr,
table td {
    border-bottom: 1px solid #bbb;
    border-collapse: collapse;
    /* width: 100%; */
}
table td {
    padding: 8px 0px;
}
table {
    width: 300px;
}
 .down-row {
    margin-top: 40px;
 }
.col:first-child {
    margin-right:5px;
}
p {
    max-width: 380px;
    margin-bottom: 20px;
}
/*RESPONSIVE START*/
@media (max-width: 1300px) {
    main {
        display: block;
    }
    .map {
        height: 400px;
    }
    .logo {
        max-width:200px;
        text-align:center;
        /* align-self: center; */
        /* display: flex; */
        /* justify-self: center; */
    }
}
@media (max-width: 750px) {
    .split-row {
      flex-direction: column;
      align-items: start;
    }
    .nav {
        width: 100%;
    }
    .container-inner {
        padding: 80px 20px;
    }
    .logo {
                align-self: center;
        display: flex
;
        justify-self: center;
    }
}
@media (max-width: 700px) {
    .nav-row {
        flex-direction: column;
        margin:0px;
    }
    .col {
        width: 100%;
        margin-bottom: 10px;
    }
    .hide-small {
        display: none;
    }
    .hide-big {
        display: inline-block;
    }
    .container-inner{
        padding-top: 60px;
    }
    h1 {
        font-size: 58px;
        line-height: 60px;
    }
    .resp-margin {
        margin-bottom: 40px;
    }
}
a span,
button span{
    transition: all 0.3s;
}
a:hover span,
button:hover span {
    color: var(--jade-darkred);
    margin-left: 5px;
}

.inline-link {
    color: var(--jade-red);
    margin-top:5px;
}
button:hover {
    cursor: pointer;
}

.mapscreen {
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    border:5px solid #fff;
}