.row {
	display: flex;
	flex-direction: row;
/* flex-direction (row, row-reverse, column, column-reverse) */	
	flex-wrap: wrap;
	/* flex-wrap: (nowrap, wrap, wrap-reverse);
	justify-content: space-between;
/*	justify-content: (aligns items horizontally)
	justify-content: space-around, flex-start, flex-end, center */	
	align-items: center;
/*	align-items: (aligns items vertically);
	align-items: (flex-start, flex-end, center, baseline, stretch); */
}
.row .column {
	padding: 1em;
	flex: 1;
	width: 95%;
}
.column.span-2 {
	flex: 2;
}


@media screen and (max-width: 768px) {
  .row {
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }

  .column h3 {
    margin-top: 0px;
  }

  img {
    max-width: 105%;
     
    
    margin-top: -18px;
  }

  .text {
    margin-left: 0px;
  }

  .left {
    margin-left: -2px;
  }

  .row .column {

  }
}


/* order: (- numbers and positive numbers); */
/* align-self: flex-start, flex-end, baseline, center, stretch; */
/* flex-flow: Created to combine flex-wrap and flex-direction (ex: flex-flow: column wrap;) */
/*header {
   background-image: url('img/logo.png'); 
   background-color: #000;
   background-repeat: no-repeat;
   color: #ffffff;
   width: auto;
   height: 230px; 
   padding: 1.3%; 
   padding-bottom: 3%; 
  }
  .subscript {
 margin-top: 80px;
 font-size: 100%;
  }
#logo {
  margin-left: -15px;
  }
  #address {
  display: flex;
  align-items: flex-start;
  font-family: Helvetica, sans-serif;
  font-size: 100%;
  margin-left: 20px;
  }
body {
   background-color: #778899;
   font-family: sans-serif;
  }
.tagline {
  display: flex;
  align-items: flex-start;
  padding-bottom: 10px;
  margin-left: 40px;
  font-family: Helvetica, sans-serif;
  font-size: 18px;
  font-style: italic; 
  }
  .subscript {
 margin-top: 80px;
 margin-left: 20px;
 font-size: 100%;
  }
#phone {
  display: flex;
  align-items: flex-start;
  margin-left: 20px;
  font-family: Helvetica, sans-serif;
  font-size: 130%;
  color: #cc0000;
  text-decoration: none;
  margin-top: 25px;
  }*/