/*
Theme Name: fidnetwork
Theme URI: https://fid.network
Author: KMD Medien GmbH
Author URI: https://www.kmd.de
Description: WordPress-Theme
Version: 1.0.2

------------------------------------------------------------------------
Build in: 01.2026
Last update: 24.01.2026
Copyright: KMD Medien GmbH – www.kmd.de
Made and Maintained with ♥ by KMD®
------------------------------------------------------------------------
*/


/*----------------------------------------------------------------------
Fonts
----------------------------------------------------------------------*/

/* space-grotesk-regular - latin */
@font-face {
    font-display: swap;
    font-family: 'Space Grotesk';
    font-style: normal;
    font-weight: 400;
    src: url('fonts/space-grotesk-v22-latin-regular.woff2') format('woff2');
    }

/* space-grotesk-600 - latin */
@font-face {
    font-display: swap;
    font-family: 'Space Grotesk';
    font-style: normal;
    font-weight: 600;
    src: url('fonts/space-grotesk-v22-latin-600.woff2') format('woff2');
    }


/*----------------------------------------------------------------------
colors
----------------------------------------------------------------------*/

:root {
    --fid-lightblue: #A2DFFF;
    --fid-darkblue: #1B1065;
    --fid-lightgreen: #1BE08B;
    --fid-darkgreen: #0BB796;
    --fid-violet: #5D1A8B;
    --fid-white: #FFFFFF;
    --fid-black: #000000;
    
    --font-weight-normal: 400;
    --font-weight-bold: 600;
    --border-radius: 0px;
    }


/*----------------------------------------------------------------------
global structure & normalize
----------------------------------------------------------------------*/

html {
    font-size: 10px;
    line-height: 1.6;
    scroll-behavior: smooth;
    }

*, *::before, *::after {
    box-sizing: border-box;
    }

body {
    margin: 0;
    border: 0 none;
    padding: 0;
    color: var(--fid-black);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: var(--font-weight-normal);
    font-size: 1.8rem;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    }

p, h1, h2, h3, h4, h5, h6, ul, ol, li, dl, dt, dd, form, fieldset, legend, img {
    margin: 0;
    border: 0 none;
    padding: 0;
    }

p, h1, h2, h3, h4, h5, h6 {
    text-rendering: optimizeLegibility;
    }
 
button, input, input[type="submit"], select, textarea {
    margin: 0;
    font: inherit;
    color: inherit;
    text-transform: none;
    }

button, input[type="submit"], select {
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
    }

textarea {
    overflow: auto;
    }

a {
    color: var(--fid-violet);
    text-decoration: none;
    transition: all 0.5s ease;
    }

a:hover, a:active {
    color: var(--fid-black);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    text-decoration-style: solid;
    outline-width: 0;
    }

a:focus-visible {
    outline: 1px solid var(--fid-darkgreen);
    outline-offset: 5px;
    }

mark {
    background-color: var(--fid-darkgreen);
    color: var(--fid-white);
    padding: 1px 3px;
    border-radius: var(--border-radius);
    }

sub, sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
    }

sub {
    bottom: -0.25em;
    }

sup {
    top: -0.5em;
    }
    
strong {
    font-weight: var(--font-weight-bold);
    }

.wrapper {
    margin: 0px auto;
    max-width: 1440px;
    padding: 0 25px;
    }

.visually-hidden {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
    }

.skip-link:focus {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    height: auto;
    padding: 10px;
    background: var(--fid-darkgreen);
    color: var(--fid-white);
    text-decoration: none;
    z-index: 4000;
    display: inline-block;
    clip: auto;
    overflow: visible; 
    }

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
        }
}


/*----------------------------------------------------------------------
Forms
----------------------------------------------------------------------*/

.button-first,
a.button-violet,
a span.button-violet,
span.button-violet a {
    color: var(--fid-white);
    text-decoration: none !important;
    border-radius: var(--border-radius);
    display: inline-block;
    font-weight: var(--font-weight-bold);
    background: var(--fid-violet);
    border: 1px solid var(--fid-violet);
    padding: 8px 20px 8px 20px;
    transition: all 0.5s ease;
    }

.button-first:hover,
a.button-violet:hover,
a:hover span.button-violet,
span.button-violet a:hover {
    text-decoration: underline !important;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    text-decoration-style: solid;
    outline-width: 0;
    background-color: var(--fid-black) !important;
    border: 1px solid var(--fid-black) !important;
    color: var(--fid-white) !important;
    box-shadow: 0 0 0 0 transparent !important;
    } 

a.button-violet-second,
a span.button-violet-second,
span.button-violet-second a {
    color: var(--fid-violet);
    text-decoration: none !important;
    border-radius: var(--border-radius);
    display: inline-block;
    font-weight: var(--font-weight-bold);
    background: transparent;
    border: 1px solid var(--fid-violet);
    padding: 8px 20px 8px 20px;
    transition: all 0.5s ease;
    }

a.button-violet-second:hover,
a:hover span.button-violet-second,
span.button-violet-second a:hover {
    text-decoration: underline !important;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    text-decoration-style: solid;
    outline-width: 0;
    background: transparent !important;
    border: 1px solid var(--fid-black) !important;
    color: var(--fid-black) !important;
    box-shadow: 0 0 0 0 transparent !important;
    }

form * {
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    }

input:focus,
select:focus,
textarea:focus,
button:focus {
    outline: 1px solid var(--primary-orange);
    outline-offset: 5px;
    box-shadow: none;
    }


/*----------------------------------------------------------------------
Header
----------------------------------------------------------------------*/

header * {
    transition: color 0.5s ease, background 0.5s ease;
    }

.header-items {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.5s ease;
    }

.header-items .wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 40px 25px;
    transition: all 0.5s ease;
    }
 
 .portal-logo {
    font-size: 0;
    line-height: 0;
    background: url(img/logo-fidnetzwerk.svg) left center no-repeat;
    background-size: auto 60px;
    }

.header-items .portal-logo a {
    display: block;
    width: 235px;
    height: 60px;
    }
 
.header-items .nav-and-info {
    text-align: right;
    list-style: none;
    margin: 0;
    padding: 0;
    width: auto;
    display: flex;
    justify-content: center;
    align-items: center; 
    }

.nav-and-info nav {
    transition: none;
    }

.nav-and-info nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    }

.nav-and-info nav li {
    position: relative;
    }

.nav-and-info nav a {
    display: block;
    text-decoration: none;
    color: var(--fid-black);
    font-weight: var(--font-weight-bold);
    padding: 5px 10px;
    }

.nav-and-info nav a:hover {
    background: var(--fid-lightgreen);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    text-decoration-style: solid;
    outline-width: 0;
    }

.nav-and-info #menu-toggle {
    display: none;
    }

.nav-and-info nav div > ul {
    display: flex;
    gap: 20px;
    }

.nav-and-info nav li ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--fid-white);
    border: 1px solid var(--fid-lightgreen);
    min-width: 320px;
    text-align: left;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
    }

.nav-and-info nav li ul a {
    padding: 5px 10px;
    }

.nav-and-info nav li ul li {
    border-bottom: 1px solid var(--fid-lightgreen);
    }

.nav-and-info nav li ul li:last-child {
    border-bottom: 0;
    }

.nav-and-info nav li ul li ul {
    left: 100%;
    top: calc(0% - 1px);
    }

.nav-and-info nav li:hover > ul,
.nav-and-info nav li:focus-within > ul {
    display: block;
    }

.language-switch {
    display: block;
    padding: 0 0 0 30px;
    margin: 0 0 0 60px;
    background: url(img/icon-lang-black.svg) no-repeat center left;
    background-size: 24px 24px;
    color: var(--fid-black);
    }

.language-switch a {
    display: inline-block;
    color: var(--fid-black);
    font-weight: var(--font-weight-bold);
    text-decoration: none;
    padding: 5px 10px;
    }

.language-switch a:hover  {
    background: var(--fid-lightgreen);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    text-decoration-style: solid;
    outline-width: 0;
    }

.while-scrolling {
    background-color: rgba(255, 255, 255, 0.95);
    }

.while-scrolling .wrapper {
    padding: 25px 25px;
    z-index: 2001;
    }

.scroll-up {
    top: -150px;
    }


/*----------------------------------------------------------------------
Main
----------------------------------------------------------------------*/

.stage-home {
    background: var(--fid-darkblue);
    margin: 0 0 80px 0;
    }

.stage-home-inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    width: 100%;
    padding: 80px 0;
    }

.stage-home-inner article {
    width: 50%;
    }

.stage-home-inner img {
    width: 100%;
    height: auto;
    }

main {
    margin-top: 140px;
    }

.main-content h1 {
    font-size: 4.2rem;
    line-height: 1.3;
    font-weight: var(--font-weight-bold);
    margin: 40px 0 20px 0;
    }
    
.main-content h2 {
    font-size: 3.2rem;
    line-height: 1.3;
    font-weight: var(--font-weight-bold);
    margin: 40px 0 20px 0;
    }

.main-content h3 {
    font-size: 2.8rem;
    line-height: 1.3;
    font-weight: var(--font-weight-bold);
    margin: 40px 0 20px 0;
    }
    
.main-content h4 {
    font-size: 2.4rem;
    line-height: 1.3;
    font-weight: var(--font-weight-bold);
    margin: 40px 0 20px 0;
    }
    
.main-content h5 {
    font-size: 2.0rem;
    line-height: 1.3;
    font-weight: var(--font-weight-bold);
    margin: 40px 0 20px 0;
    }
    
.main-content h6 {
    font-size: 1.8rem;
    line-height: 1.3;
    font-weight: var(--font-weight-bold);
    margin: 40px 0 20px 0;
    }

.main-content p {
    margin: 0 0 40px 0;
    }

.main-content ul,
.main-content ol {
    margin: 0 0 40px 0;
    padding: 0 0 0 20px;
    }

.main-content ul li,
.main-content ol li {
    margin: 0 0 5px 0;
    }

.main-content img,
.main-content .wp-caption {
    max-width: 100%;
    height: auto;
    }

.main-content a {
    text-decoration: underline;
    text-decoration-style: solid;
    text-decoration-thickness: auto;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    text-decoration-style: solid;
    }

.main-content a:hover {
    background: var(--fid-lightgreen);
    color: var(--fid-black);
    text-decoration: none;
    box-shadow: 0 0 0 5px rgba(27,224,139,1);
    }

.main-content .alignleft {
    float: left;
    margin: 40px 40px 40px 0;
    }

.main-content .alignright {
    float: right;
    margin: 40px 0 40px 40px;
    }

.main-content .aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
    }

.main-content .responsive-table {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    }
    
.main-content table {
    border: 0 none;
    border-collapse: collapse;
    }

.main-content .sow-accordion .sow-accordion-panel .sow-accordion-panel-header {
    background: var(--fid-violet) !important;
    transition: all 0.5s ease;
    }

.main-content .sow-accordion .sow-accordion-panel .sow-accordion-panel-header:hover {
    background: var(--fid-black) !important;
    }

.main-content .sow-accordion .sow-accordion-panel .sow-accordion-panel-content .sow-accordion-panel-border {
    background: var(--fid-lightblue) !important;
    }

.main-content .blue-ground {
    background: var(--fid-lightblue);
    padding: 40px 40px 1px 40px;
    }

.main-content .border-ground {
    border: 1px solid var(--fid-lightblue);
    padding: 40px 40px 1px 40px;
    }

    .main-content .blue-ground h2:first-child,
    .main-content .blue-ground h3:first-child,
    .main-content .blue-ground h4:first-child,
    .main-content .blue-ground h5:first-child,
    .main-content .blue-ground h6:first-child,
    .main-content .border-ground h2:first-child,
    .main-content .border-ground h3:first-child,
    .main-content .border-ground h4:first-child,
    .main-content .border-ground h5:first-child,
    .main-content .border-ground h6:first-child {
        margin: 0 0 20px 0;
        }


.notfound-content {
    box-shadow: 0 0 20px rgba(0,0,0,0.2);
    padding: 40px 40px 1px 40px;
    }

.notfound-content img {
    width: 100px;
    max-width: 100%;
    height: auto;
    }

.fid-overview .sow-image-grid-wrapper {
    gap: 40px;
    align-items: stretch;
    }

.fid-overview .sow-image-grid-image {
    width: calc(25% - 30px);
    border: 1px solid var(--fid-lightblue);
    padding: 40px !important;
    }

.fid-overview .sow-image-grid-image img {
    width: 100%;
    height: auto;
    }

.fid-overview .image-title {
    padding: 20px 0 0 0;
    max-width: 100%;
    }


/*----------------------------------------------------------------------
News
----------------------------------------------------------------------*/

.news-portalhome {
    background: var(--fid-lightblue);
    margin: 80px 0 240px 0;
    }

.news-portalhome h2 {
	padding: 40px 0;
    font-size: 3.2rem;
    line-height: 1.3;
    font-weight: var(--font-weight-bold);
    color: var(--fid-black);
    }

.portalhome-head {
    position: relative;
    }

.portalhome-head .archive-link {
    position: absolute;
    right: 0;
    top: 40px;
    color: var(--fid-violet);
    text-decoration: none;
    border-radius: var(--border-radius);
    display: inline-block;
    font-weight: var(--font-weight-bold);
    background: transparent;
    border: 1px solid var(--fid-violet);
    padding: 8px 20px 8px 20px;
    transition: all 0.5s ease;
    }

.portalhome-head .archive-link:hover {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    text-decoration-style: solid;
    outline-width: 0;
    border: 1px solid var(--fid-black);
    color: var(--fid-black) !important;
    }

.here-news-items {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap; 
    gap: 40px;
    width: 100%;
    position: relative;
    top: 80px;
    margin: -80px 0 0 0;
    }   

.here-news-items article {
    width: calc((100% - 80px) / 3);
    background: var(--fid-white);
    box-shadow: 0 0 20px rgba(0,0,0,0.2);
    }

.single-item-image {
    display: block;
    height: 300px;
    width: 100%;
    }

.ni-header .ni-aside {
    padding: 20px 40px 0 40px;
    color: var(--fid-black);
    }

.ni-body {
    padding: 0 40px 40px 40px;
    }

.ni-body h3 {
    font-weight: var(--font-weight-bold);
    font-size: 2.4rem;
    line-height: 1.3;
    min-height: 160px;
    padding: 20px 0 20px 0;
    hyphens: auto;
    }

.follow-news-items {
    padding: 40px 0 80px 0;
    }

.single-post-meta {
    width: 300px;
    max-width: 100%;
    height: auto;
    margin: 40px auto 20px auto;
    text-align: center;
    }

.single-post-image {
    width: 300px;
    max-width: 100%;
    height: auto;
    margin: 0 0 20px 0;
    box-shadow: 0 0 20px rgba(0,0,0,0.2);
    line-height: 0;
    }

.single-post-image img {
    width: 100%;
    height: auto;
    }


/*----------------------------------------------------------------------
Footer
----------------------------------------------------------------------*/

footer {
    color: var(--fid-white);
    margin: 90px 0 0 0;
    }

.footer-top {
    background: var(--fid-lightgreen);
    }

.footer-orientation {
    display: flex;
    align-items: top;
    justify-content: space-between;
    gap: 30px;
    width: 100%;
    padding: 40px 0 40px 0;
    color: var(--fid-black);
    }

.footer-breadcrumb {
    width: calc(100% - 100px);
    }

.footer-breadcrumb a {
    color: var(--fid-black);
    }

.footer-breadcrumb a:hover {
    color: var(--fid-darkblue);
    }

.footer-breadcrumb a:first-child {
    background: url(img/icon-home-black.svg) left center no-repeat;
    background-size: 24px 24px;
    padding: 0 0 0 35px;
    }

body.home .footer-breadcrumb .current-page {
    display: none;
    }

.page-up {
    text-align: right;
    width: 90px;
    margin: 0 0 -60px 0;
    }

.page-up button {
    display: block;
    background: url(img/icon-arrow-up-white.svg) center center no-repeat var(--fid-darkgreen);
    background-size: 45px 45px;
    width: 80px;
    height: 80px;
    font-size: 0;
    padding: 0;
    margin: 15px 0 -30px 0;
    border: 0px none;
    color: transparent;
    transition: all 0.5s ease;
    }

.page-up button:hover {
    margin: 10px 0 -35px -5px;
    width: 90px;
    height: 90px;
    }

.footer-ground {
    background: var(--fid-darkblue);
    }

.footer-ground-items  {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    width: 100%;
    padding: 60px 0;
    }

.footer-logo {
    font-size: 0;
    line-height: 0;
    background: url(img/logo-fidnetzwerk.svg) left center no-repeat;
    background-size: auto 60px;
    margin: 0 0 20px 0;
    }

.footer-logo a {
    display: block;
    width: 235px;;
    height: 60px;
    }

.footer-imprint {
    text-align: right;
    }

.footer-imprint ul {
    list-style: none;
    margin: 0 0 20px 0;
    }

.footer-imprint li {
    display: inline-block;
    margin: 0 0 0 30px;
    }

.footer-imprint li a {
    display: inline-block;
    font-weight: var(--font-weight-bold);
    color: var(--fid-white);
    }

.sponsoring-footer {
    margin: 80px 0 -20px 0;
    }

.sponsoring-footer-items {
    width: 50%;
    margin: 0 auto;
    }

.sponsoring-footer-items ul {
    list-style: none;
    display: flex;
    align-items: flex-start;
    align-items: stretch;
    justify-content: space-between;
    gap: 40px;
    width: 100%;
    }

.sponsoring-footer-items li {
    width: 50%;
    }

.sponsoring-footer-items li a {
    display: block;
    color: var(--fid-lightblue);
    }

.sponsoring-footer-items p {
	text-align: center;
    margin: 0 0 20px 0;
    }

.sponsoring-footer-items li img {
    width: 100%;
    height: auto;
    max-height: 100px;
    }


/*----------------------------------------------------------------------
Tablet-Styles (Landscape) and Touch-Devices
----------------------------------------------------------------------*/

@media only screen and (max-width: 1024px) { 
   
   .wrapper {
        max-width: 100%;
        }

    .header-items .wrapper {
        padding: 25px 25px;
        }

    main {
        margin-top: 120px;
        }

    .news-portalhome {
        margin: 80px 0 0 0;
        }

    .here-news-items {
        display: block;
        width: 100%;
        position: relative;
        top: 0;
        margin: 0;
        padding: 40px 0 40px 0;
        }   
    
    .here-news-items article {
        width: 100%;
        margin: 0 0 40px 0;
        }

    .ni-body h3 {
        min-height: auto;
        padding: 20px 0 40px 0;
        }

    .follow-news-items {
        padding: 0;
        }

    .fid-overview .sow-image-grid-image {
        width: calc(50% - 20px);
        }

    .fid-overview .image-title {
        hyphens: auto;
        }

    .footer-ground-items {
        padding: 40px 0;
        display: block;
        }

    .footer-imprint {
        width: 100%;
        text-align: left;
        }
    
    .footer-imprint ul {
        margin: 0 0 10px 0;
        }

    .footer-imprint li {
        display: block;
        margin: 0 0 10px 0;
        }

    .footer-imprint li a {
        display: block;
        }

}


@media only screen and (max-width: 1024px), (hover: none) and (pointer: coarse) {

    .nav-and-info #menu-toggle {
        width: 40px;
        height: 40px;
        background: url(img/icon-menu-black.svg) no-repeat center center;
        background-size: 40px 40px;
        border: none;
        cursor: pointer;
        display: inline-block;
        z-index: 3000;
        position: absolute;
        top: 35px;
        right: 25px;
        transition: none;
        }
    
    .nav-and-info #menu-toggle[aria-expanded="true"] {
    	position: fixed;
        background: url(img/icon-menux-black.svg) no-repeat center center;
        background-size: 40px 40px;
        width: 40px;
        height: 40px;
        cursor: pointer;
        display: inline-block;
        transition: none;
        }
  
    .nav-and-info nav {
        position: fixed;
        height: 100%;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        z-index: 2002;
        background: var(--fid-white);
        width: 100%;
        text-align: left;
        left: 0;
        top: 0;
        padding: 120px 25px 0 25px;
        opacity: 0;
        visibility: hidden;
        transform: translateX(100%);
        transition: opacity 0.3s ease, transform 0.3s ease;
        pointer-events: none;
        }
    
    .nav-and-info nav.show-menu {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
        pointer-events: auto;
        }
    
    .nav-and-info nav div > ul {
        display: block;
        gap: 0;
        }
            
    .nav-and-info nav ul {
        display: block;
        border-top: 1px solid var(--fid-darkgreen);
        }

    .nav-and-info nav li ul {
        position: relative;
        top: 0;
        left: 0;
        background: transparent;
        border: 0;
        width: 100%;
        box-shadow: 0px 0px 0px transparent;
        }

    .nav-and-info nav li a {
        padding: 10px 0px;
        border-bottom: 1px solid var(--fid-darkgreen);
        }
        
    .nav-and-info nav li ul a {
        padding: 10px 0 10px 10px;
        }

    .nav-and-info nav li ul ul a {
        padding: 10px 0 10px 20px;
        }

    .nav-and-info nav li ul ul ul a {
        padding: 10px 0 10px 30px;
        }

    .nav-and-info nav li ul li {
        border-bottom: 0;
        }

    .nav-and-info nav.show-menu li ul {
        display: block;
        }
        
    .nav-and-info nav li ul li ul {
        left: 0;
        top: 0;
        }

    .language-switch {
        padding: 0 60px 0 30px;
        margin: 0;
        }
      
}


/*----------------------------------------------------------------------
Mobile-Styles
----------------------------------------------------------------------*/

@media only screen and (max-width: 700px) { 

    html {
        font-size: 9px;
        line-height: 1.5;
        }

    .wrapper {
        padding: 0 20px;
        }

    .header-items .wrapper {
        padding: 20px 20px;
        }

     .portal-logo {
        background: url(img/logo-fidnetzwerk.svg) left center no-repeat;
        background-size: auto 40px;
        }
    
    .header-items .portal-logo a {
        width: 155px;
        height: 40px;
        }

    .nav-and-info #menu-toggle {
        top: 20px;
        right: 20px;
        }

    .nav-and-info nav {
        padding: 75px 20px 0 20px;
        }

    .ni-header .ni-aside {
        padding: 20px 20px 0 20px;
        }

    .ni-body {
        padding: 0 20px 40px 20px;
        }

    .stage-home-inner {
        display: block;
        padding: 40px 20px;
        }

    .stage-home-inner article {
        width: 100%;
        }

    main {
        margin-top: 80px;
        }

    .main-content .alignleft,
    .main-content .alignright {
        float: none;
        margin: 0 0 40px 0;
        }

    .main-content .blue-ground {
        padding: 20px 20px 1px 20px;
        }
    
    .main-content .border-ground {
        padding: 20px 20px 1px 20px;
        }

    .notfound-content {
        padding: 20px 20px 1px 20px;
        }

    .fid-overview .sow-image-grid-image {
        width: 100%;
        padding: 20px !important;
        }

    .footer-orientation {
        display: block;
        width: calc(100% + 40px);
        margin: 60px -20px 0 -20px;
        padding: 20px;
        }
    
    .footer-breadcrumb {
        width: 100%;
        margin: 0 0 30px 0;
        }

	.footer-breadcrumb a:first-child {
		background-size: 20px 20px;
		padding: 0 0 0 30px;
		}
	
    .page-up {
        width: 100%;
        margin: 0;
        position: relative;
        }
    
    .page-up button {
        position: absolute;
        top: -15px;
        right: 0;
        margin: 0 0 -40px 0;
        border: 0px none;
        color: transparent;
        transition: all 0.5s ease;
        }
    
    .page-up button:hover {
        margin: -5px -5px -35px 0;
        }
    
    .footer-logo {
        background: url(img/logo-fidnetzwerk.svg) left center no-repeat;
        background-size: auto 40px;
        }
    
    .footer-logo a {
        width: 155px;
        height: 40px;
        }

    .sponsoring-footer {
        margin: 80px 0 -40px 0;
        }
    
    .sponsoring-footer-items {
        width: 100%;
        }

}