.plants-section{
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    padding-bottom: 1rem;
    background-image: linear-gradient(to bottom, rgba(255,228,207, 0.3), rgba(255,228,207, 0.05));
}
.plants-section-img{
    flex-basis: 100%;
    height: 400px;
    background-image: url("../../img/plants.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-bottom: 10px dotted white;
}
.plants-section-text{
    padding: 0rem 2rem 2rem 2rem;
    text-align: center;
}
@media screen and (min-width: 992px){
    .plants-section{
        flex-flow: row nowrap;
        padding-bottom: 0;
    }
    .plants-section-img{
        flex-basis: 55%;
        height: 90vh;
        border-bottom: none;
        border-right: 12px dotted white;
        background-position: 10px;
    }
    .plants-section-text{
        flex-basis: 45%;
        padding: 0 8rem 0 6rem;
        text-align: left;
    }
    .plants-title{
        padding-right: 3rem;
    }
}