#footer{
    display: block;
    position: relative;
    width: 100%;
    height: 170px;
}

.footer_background_left{
    position: absolute;
    width: 70%;
    background: url(/images/footer_left.png);
    height: 153px;
    bottom: 0;
    left: 0;
    z-index: -1;
}

.footer_background_middle{
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    background: url(/images/footer_curve.png);
    background-position: bottom right;
    background-repeat: no-repeat;
    width: 1024px;
    height: 167px;
    margin: 0 auto;
    z-index: -1;
}


.footer_background_right{
    position: absolute;
    width: 30%;
    background: url(/images/footer_right.png);
    height: 170px;
    bottom: 0;
    right: 0;
    z-index: -1;
}

.address_holder {
    display: block;
    margin: 0 auto;
    max-width: 1024px;
    padding: 20px;
}

.address_holder a, .footer_impressum ul a{
    cursor: pointer;
    color: #fff;
    text-decoration: none;
}

.address_holder a:hover, .footer_impressum ul a:hover{
    color: maroon;
    text-shadow: 1px 1px 1px #fff;
}

.footer_address{
    width: 350px;
    float: left;
}

.impressum_holder{
    float: left;
}

.footer_impressum ul li{
    list-style: none;
    text-align: center;
    padding: 5px 0;
    display: block;
}

.bottom_link_holder{
    /*position: absolute;*/
    bottom: 10px;
    left: 0;
    right: 0;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    margin-top: 15px;
}

.bottom_link_holder a{
    font-size: 24px;
    color: maroon;
    font-weight: bold;
}

/* mobile footer */
@media screen and (max-width: 1023px){
    .footer_background_left, .footer_background_right, .footer_background_middle{
        display: none;
    }
    #footer{
        background-color: rgba(0,0,0,0.4);
        text-align: center;
        height: auto;
        padding-bottom: 20px;
    }
    .footer_address {
        width: auto;
        float: none;
    }
    .impressum_holder {
        float: none;
    }
    .bottom_link_holder {
        text-align: center;
        position: initial;
        display: block;
        margin: 20px auto 0;
    }
    .bottom_link_holder a {
        font-size: 20px;
        color: #eee;
        font-weight: bold;
    }
}
/* mobile footer */