.biochar-container {
    width: 70%;
    margin-top: 30px;
    margin-bottom: 30px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
    display: flex;
    height: auto;
}

.biochar-info {
    box-sizing: border-box;
    width: 50%;
    height: 100%;
    background: #d53d29;
    padding: 20px;
}

.biochar-pic {
    background-image: url("/images/Products/Biochar.jpg");
    background-color: #000;
    background-position: center;
    background-size: cover;
    width: 50%;
    display: block;
}

/* Screen-break for Biochar box (hides picture and widens text) */

@media screen and (max-width:600px) {
    .biochar-pic {
        display: none;
    }
    
    .biochar-info {
        width: 100%;
    }
}