:root {
    --primary-color: #00759e;
    --secondary-color: #515151;
    --text-color: #000;
    --text-color-inverted: #fff;
    --lightgrey-background-color: rgba(198,198,198,0.1);
    --grey-background-color: #484846;
    --font-family-primary: 'Inter', Arial, Helvetica, sans-serif;
    --font-family-secondary: 'Inter Semibold', Arial, Helvetica, sans-serif;
}

/* inter-regular - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    src: url('/fonts/inter/inter-v13-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* inter-600 - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Inter Semibold';
    font-style: normal;
    font-weight: 600;
    src: url('fonts/inter/inter-v13-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

body {
    padding: 0;
    margin: 0;
    font-family: var(--font-family-primary);
    font-size: 18px;
    line-height: 1.4;
    display: flex;
    flex-direction: column;
    height: 100vh;

}

h1,h2,h3,h4,h5,h6,b,strong {
    font-family: var(--font-family-secondary);
}

.logos-in-header {
    display: flex;
    justify-content: space-between;
}

.header-logo {
    height: 265px;
    padding: 100px 0;
    box-sizing: border-box;
}

.header-logo--bfm {
  padding: 108px 0;
}

.header-logo--sps {
    padding: 114px 0;
}

.header-logo--blog {
    padding: 85px 0;
}

.wrapper {
    width: 100%;
    max-width: 1200px;
    padding: 0 30px;
    box-sizing: border-box;
    position: relative;
    margin: 0 auto;
}


main.wrapper {
    margin: auto;
}
main > .wrapper:last-child {
    padding-bottom: 40px;
}


.buehnenbild {
    margin-bottom: 130px;
}


.buehnenbild-img {
    width: 100%;
    margin: 0;
    padding: 60px 0 0 0;
}

.text-auf-buehne {
    position: absolute;
    display: flex;
    top: 30%;
    left: 19%;
    font-size: 36px;
}


footer {
    background-color: var(--secondary-color);
    width: 100%;
    color: var(--text-color-inverted);
    margin-top: 100px;
    font-size: 16px;
}

.index-footer {
    background-color: white;
    width: 100%;
    color: var(--text-color-inverted);
    padding-top: 20px;
    padding-bottom: 80px;
    margin-top: auto;
    background-color: var(--secondary-color);

}

.no-top-margin {
    background-color: var(--secondary-color);
    width: 100%;
    color: var(--text-color);
    position: relative;
    bottom: 0;
    margin-top: 0;
}

a {
    text-decoration: none;
    color: var(--text-color);
}


.footer-inhalt {
    display: flex;
    justify-content: space-between;
}

.footer-a {
   margin-top: 115px;
   margin-bottom: auto;
}

.zweispalter-footer {
    display: flex;
    justify-content: space-between;

}

.footer-a-index {
    padding-top: 18px;
    display: block;

}

.footer-link-abstand {
    padding-top: 40px;
}


.email-link {
    color: var(--primary-color);
    font-size: 24px;
}


.p-headline {
    font-size: 24px;
    margin-top: 0.6em;
    margin-bottom: 0.6em;
}

.buttonSmall, .buttonSmallExternal, .buttonSmallDownload, .buttonLargeDownload, .buttonLarge {
    font-family: "Inter Semibold", Arial, Helvetica, sans-serif;
    border: 2px solid #00759e;
    padding: 0.45em 2.15em;
    margin: 30px 0;
    border-radius: 2em;
    transition: .3s;
    display: inline-block;
    outline: 0;
    backface-visibility: hidden;
    transform: translateZ(0);
    -webkit-font-smoothing: subpixel-antialiased;
    background-color: #00759e;
    color: #ffffff; }
.buttonSmall:hover, .buttonSmallExternal:hover, .buttonSmallDownload:hover, .buttonLargeDownload:hover, .buttonLarge:hover {
    transform: scale(1.04); }
.buttonSmall:focus, .buttonSmall:focus-visible, .buttonSmallExternal:focus, .buttonSmallExternal:focus-visible, .buttonSmallDownload:focus, .buttonSmallDownload:focus-visible, .buttonLargeDownload:focus, .buttonLargeDownload:focus-visible, .buttonLarge:focus, .buttonLarge:focus-visible {
    border-radius: 2em;
    outline: none; }
.buttonSmall:hover, .buttonSmallExternal:hover, .buttonSmallDownload:hover, .buttonLargeDownload:hover, .buttonLarge:hover {
    color: #ffffff;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.16); }
.buttonSmall:focus, .buttonSmall:focus-visible, .buttonSmallExternal:focus, .buttonSmallExternal:focus-visible, .buttonSmallDownload:focus, .buttonSmallDownload:focus-visible, .buttonLargeDownload:focus, .buttonLargeDownload:focus-visible, .buttonLarge:focus, .buttonLarge:focus-visible {
    color: #ffffff;
    box-shadow: inset 0 0 0 1px #ffffff; }




.zweispalter {
    display: flex;
}

.footer-img {
    width: 200px;
    padding: 80px 0;
}

.zweispalter-div {
    width: 50%;
}

.dreispalter {
    display: flex;
}

.dreispalter-div {
    width: 33%;
}

hr {
    width: 95%;
}

.bg-container-lightgrey {
    background-color: var(--lightgrey-background-color);
    padding: 60px 0 65px 0;
    margin: 80px 0;
}

.bg-container-lightgrey:last-child {
    margin-bottom: 0;
}

ul {
    margin: 0;
    padding: 13px;
}

li {
    padding-bottom: 6px;
    padding-top: 6px;

}


a.primary-link, .primary-link, .primary-link-external {
    position: relative;
    color: var(--primary-color);
    padding-left: 1.2em;
    font-family: var(--font-family-secondary);
    cursor: pointer; }
a.primary-link:before, .primary-link:before, .primary-link-external:before {
    content: ' ';
    display: block;
    width: 0.8em;
    height: 0.8em;
    position: absolute;
    top: 0.2em;
    left: 0;
    background: url("/img/icons/double-arrow-right.svg") left center no-repeat;
    transition: left 300ms; }
a.primary-link:hover:before, .primary-link:hover:before, .primary-link-external:hover:before {
    left: 0.278em; }


.text-link, footer a, a {
    font-family: var(--font-family-primary);
    border: none !important;
    background-repeat: no-repeat;
    background-size: 0 1px;
    background-position: 50% 98%;
    transition: background-size 0.3s ease-in;
    padding-bottom: 0.2rem;
    position: relative;
    cursor: pointer; }
.text-link:focus, a:focus {
    color: var(--primary-color); }
.text-link:hover, footer a:hover, a:hover {
    background-size: 100% 1px; }

.text-link, a {
    color: var(--primary-color);
    background-image: linear-gradient(var(--primary-color), var(--primary-color));
}
footer a, footer a:focus {
    color: var(--text-color-inverted);
    background-image: linear-gradient(var(--text-color-inverted), var(--text-color-inverted));
}

.margin-bottom-for-bfm-impressum {
    margin-bottom: 130px;
}
.center {
   text-align: center;
}

h1 {
    margin-bottom: 80px !important;
}