.vorschau{
    width: 100%;
    height: 400px;
}

.vorschau img{
    width: 100%;
    object-fit: cover;
    height: 100%;
}

.news_description_container{
    display: flex;
    flex-direction: row;
    margin-top: 20px;
}

.news{
    display: flex;
    flex-direction: column;
    width: 30%;
    min-width: 220px;
}

.boxes{
    border: 1px solid lightgray;
    border-radius: 4px;
    margin-left: 20px;
    margin-right: 20px;
    margin-bottom: 10px;
}

.boxes_text{
    text-align: justify;
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 10px;
}

.boxes_info{
    text-align: justify;
    white-space: nowrap;
    margin-top: 20px;
    margin-bottom: 5px;
    font-size: 12px;
    padding-left: 10px;
}

.headline_news{
    font-size: 20px;
    color: #ff8383;
    font-weight: bold;
    margin-bottom: 30px;
    margin-left: 10px;
}

.headline_boxes{
    font-weight: bold;
    margin-bottom: 15px;
    margin-top: 5px;
    padding-left: 10px;
}

.description{
    display: flex;
    flex-direction: column;
    width: 70%;
    border-left: 5px solid #fdf1ef;
}

.container_description{
    max-width: 1100px;
    height: 50%;
}

.description_text{
    margin-left: 10px;
    margin-bottom: 30px;
    text-align: justify;
}

.transfer_angebotsseite{
    padding-right: 10px;
    padding-left: 10px;    
    margin-top: 50px;
    height: 50%;
    position: relative;  
}

.transfer_angebotsseite img{
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.transfer_button{
    position: absolute;
    top: 250px;
    right: 50px;
}

.transfer_button a{
    opacity: 0.7;
}

.transfer_button a:link,
.transfer_button a:visited,
.transfer_button a:hover,
.transfer_button a:active{
    text-decoration: none;
    color: black;
    background-color: white;
    border-radius: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 20px;
    padding-right: 20px;
    text-align: center;
    white-space: nowrap;
}

.transfer_button a:hover{
    opacity: 1;
    transition: opacity 0.15s;
}

@media (max-width: 1000px) {
    .news_description_container{
        display: flex;
        flex-direction: column;
        margin-top: 20px;
    }
    .news{
        display: flex;
        flex-direction: column;
        width: 100%;
        min-width: 0;
    }
    .description{
        display: flex;
        flex-direction: column;
        width: 100%;
        border-left: none;
    }
    .boxes{
        margin-left: 0px;
        margin-right: 0px;
    }
    .headline_news{
        margin-left: 0px;
    }
    .description_text{
        margin-left: 0px;
    }
    }