section.start {
    height: max-content;
    min-height: 550px;
}
section.start .background {
    filter: blur(2px);
    -webkit-filter: blur(2px);
}
.background picture, .background .pic {
    width: calc(100vw - var(--scrollbar) + 6px);
    margin-left: -2px;
    height: auto;
    min-height: 550px;
}

/* section.soc-med-cta {
    background-color: #fff;
    padding-top: 0;
} */

/*-------------- KONTAKT ----------------*/

.kontakt > .wrapper > div p {
    max-width: 800px;
}

.kontakt .grid {
    display: flex;
    flex-direction: column;
    margin-top: var(--l-spacing);
    gap: 0; 
}
.kontakt .card > * {
    display: block;
    background-color: var(--blue);
    padding: var(--m-spacing);
}
.kontakt .card * {
    color: #fff;
}
.kontakt .card > * *:not(:last-child) {
    margin-bottom: 1rem;
}
.kontakt .card.clickable > *:hover, .kontakt .card.clickable > *:active {
    background-color: var(--dark-blue);
    transition: all 300ms ease-in-out;
}

.map-card {
    height: 50vh;
    padding: 0;
    position: relative;
}
.map-container iframe{
    position:absolute;
    left:0;
    top:0;
    height:100%;
    width:100%;
    z-index: 2;
}

@media screen and (max-width: 499px) {
    .kontakt .card.second > * {
        border-top: 1px solid #fff;
    }
}
@media screen and (min-width: 500px) {
    .kontakt .grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr 1fr;
    }
    .map-card {
        height: 100%;
        grid-column: 1 / span 2;
        grid-row: 2 / span 2;
    }
    .kontakt .card.second > * {
        display: flex;
        justify-content: flex-end;
    }
}

