@charset "utf-8";
/* CSS Document */

* {
    box-sizing: border-box;
}

body {
    margin: 0;
}

.row {
	background-color: #f4f4f4;
	border-width:10px;
	border-style:solid;
	border-color:#fff;
}

/* Create two equal columns that floats next to each other */
.column1 {
    float: left;
    width: 65%;
	/*background-color: #004750;*/
    padding: 10px;
	background-image:url(../cps-images/eDelivery-brochures-3.png);
	background-repeat: no-repeat;
    background-size: 100% 650px;
	height: 650px;
}



.column2 {
    float: left;
    width: 35%;
    padding: 10px;
	background-color: #f4f4f4;
	height: 650px;
}


/* Clear floats after the columns */
.row:after {
    content: "";
    display: table;
    clear: both;
}


@media only screen and (max-width: 640px) {
.column1 {
	width: 100%; 
	background-image: none;
	background-color: #004750;
	height: 100%;
}
.column2 {
	width: 100%; 
	height: 100%;
}

.row {
	border:none;
}
}


