html {
    height: 100%;
}

.client_18 {
    height: 100%;
    background: transparent;
    background-image: url('../images/backgrounds/bg-18.jpg');
    background-repeat: repeat-x;    
    background-size: auto 100%;
    background-position: top center;
}

.client_18 div {
    /* box-sizing: border-box; */
}

.client_18 #container {
    height: 100%;
    display: grid;
    grid-template: 
        "top" 130px
        "bottom" 1fr; 
}

.client_18 .header_container {
    grid-area: top;
}

.client_18 .content {
    grid-area: bottom;
}

.client_18 #logo img {
    width: 200px;
}

.client_18 #cont_contents {
    display: grid;
    grid-template: "margin-left left margin-mid right margin-right" / 1rem 1fr 1rem 1fr 1rem;
}

.client_18 #cont_plant_list {
    box-sizing: border-box;
    grid-area: left;
    float: none;
    width: 100%;
}

.client_18 #cont_cart {
    box-sizing: border-box;
    grid-area: right;
    position: relative;
    width: 100%;
}

.header_container {
    position: relative;
}