#col{
	width: 100vw;
	height: min-content;
	display: flex;
	flex-flow: column nowrap;
	justify-content: center;
	align-items: center; 
	margin-top: 50px;
}

#col_1{
	width: 90%;
	height: min-content;
	display: flex;
	flex-flow: row nowrap;
	justify-content: center;
	align-items: center;
    
}


#img_1{
	width:40% ;
	height: 389px;
	margin-right: 20px;
	background-image: url(http://www.deluxecargopackers.com/images/advantages.jpg);
	background-size: contain;
    background-repeat: no-repeat;
    background-position: 50% 0%;
}

#text_1{
	align-self: flex-start;
	width: 60%;

	

}

#text_1 h2{
	color: #FF7129;
	margin-bottom: 20px;
}
#text_1 ul{
	margin: 20px 0px 0px 50px;
}

#col_2{
	width: 90vw;
	height: min-content;
	display: flex;
	flex-flow: row nowrap;
	justify-content: center;
	align-items: flex-start;
}


#img_2{
	margin-left: 20px;
	width: 40%;
	height: 389px;
	background-image: url(http://deluxecargopackers.com/images/whyus.jpg);
	background-size: contain;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}

#text_2{
	width: 60%;

}

#text_2 h2{
	color: #FF7129;
	margin-bottom: 20px;
}



@media only screen and (min-width: 0px) and (max-width: 800px){
	#col{
		margin: 50px 0px;
	}
	#col_1{
		flex-flow: column nowrap;
		margin: 20px 0px;
	}
	#img_1{
		margin: 10px 0px;
		width: 90vw;
		height: 30vh;

	}
	#text_1{
		width: 100%;
		height: 100%;
	}
	#col_2{
		flex-flow: column-reverse nowrap;
		margin: 10px 0px;
	}
	#img_2{
		margin: 10px 0px;
		width: 90vw;
		height: 30vh;
	}
	#text_2{
		width: 100%;
		height: 100%;
	}
}