.space_top{
    padding-top: 100px;
    display: table;
}

.main_img{
    height: 270px;
    width: 270px;
    margin-right: 130px;
    position: relative;
    float: left;
}

.main_img .img_frame{
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
}

.main_img .img_frame img{
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
}

.main_img .img_dot{
    display: block;
    position: absolute;
    right: -40px;
    top: 15px;
    height: 50px;
    width: 50px;
    display: block;
    border-radius: 25px;
}

/* Textblock */

.text_content{
    width: calc(100% - 400px);
    float: right;
    display: block;
    height: auto;
}

.text_content .grey_text{
    width: 100%;
    margin-bottom: 50px;
}

.text_content div .ueber.pink_text{
    font-size: 45px;
    line-height: 53px;
    font-weight: 400;
    margin: 0;
    padding: 0;
    display: block;
}



/* Partner Links */
#partner_list{
    padding-top: 25px;
    padding-bottom: 50px;
    display: table;
    height: auto;
}


#partner_list .producer_box{
    width: 30%;
    height: 300px;

    margin-right: 5%;
    margin-top: 25px;
    
    display: block;
    box-sizing: border-box;
    padding: 25px 5%;
    border: solid 1px #afafaf;
    float: left;

    text-align: center;
}

#partner_list .producer_box:nth-of-type(3n){
    margin-right: 0;
}

#partner_list .producer_box:hover{
    border: solid 1px #d891a0;
}

#partner_list .producer_box:hover .txt_holder{
    border-top: solid 1px #d891a0;
}

#partner_list .producer_box .img_holder{
    width: 100%;
    height: 100px;
    display: block;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

#partner_list .producer_box .txt_holder{
    width: 100%;
    margin-top: 25px;
    padding-top: 25px;
    height: 100px;
    line-height: 50px;
    border-top: solid 1px #AfAfAF;
        word-break: break-all;
    line-height: 25px;
}

#partner_list .producer_box .txt_holder font{
    display: block;
    width: 100%;
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 15px;
}

/*Responsive Anpassungen*/
@media screen and (max-width: 1000px) {
    .text_content{
        width: 100%; 
        margin-top: 50px;
        
        float: none;
        clear: left;
        display: inline-block;
    }
    
    .main_img{
        margin: 0;
    }
    
    #partner_list .producer_box{
        width: 45%;
    }
}

@media screen and (max-width: 850px) {
    .space_top{
        padding-top: 50px;
    }
    
    .text_content .grey_text{
        margin-bottom: 25px;
    }
    
    .text_content div .ueber.pink_text {
        font-size: 30px;
        line-height: 38px; 
        font-weight: 400;
    } 
    
    .main_img{
        height: 180px;
        width: 180px;
    }
    
    .main_img .img_dot{
        height: 35px;
        width: 35px;
    }
}

@media screen and (max-width: 600px) {
    #partner_list .producer_box{
        width: 100%;
    }
}