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

.wrap {
  display: flex;
}

.one {
  width: 50%;
  border: 0px solid green;
  text-align:center;
}

.one img {
	width:90%;
	margin:0 auto;
}

.two {
  width: 50%;
  border: 0px solid blue;
  text-align:center;
}

.two img {
	width:90%;
	margin:0 auto;
}

.loudoun {
	display:inline-block;
	width: 100%;
}

.loudoun p {
	float: left;
}

/* TWO COLUMN RESIDENTIAL */

.oneres {
  width: 28%;
  border: 0px solid green;
  text-align:center;
  float:left;
}

.oneres img {
	width:95%;
	margin:0 auto;
}

.twores {
  width: 72%;
  border: 0px solid blue;
  text-align:left;
  float:left;
}

.twores p {
	padding:0 15px 0 15px;
}
.twores h1 {
	padding:0 15px 0 15px;
	
}
.twores h1 a {
	color:#000;
}
.twores h2 {
	padding:0 15px 0 15px;
}

/* TWO COLUMN 70/30 SPLIT */

.onegen {
  width: 60%;
  border: 0px solid green;
}

.onegen img {
	width:95%;
	margin:0 auto;
}

.twogen {
  width: 40%;
  border: 0px solid blue;
}

.twogen p {
	padding:0 15px 0 15px;
}
.twogen h2 {
	padding:0 15px 0 15px;
}

/* 1/3 COLUMNS */

.onethird {
	width:33%;
	border: 0px solid green;
	text-align:center;
	float:left;
}
.twothird {
	width:33%;
	border: 0px solid blue;
	text-align:center;
	float:left;
}
.threethird {
	width:33%;
	border: 0px solid red;
	text-align:center;
	float:left;
}

.onethird img {
	width:90%;
	margin:0 auto;
	padding:15px 0 15px 0;
}
.twothird img {
	width:90%;
	margin:0 auto;
	padding:15px 0 15px 0;
}
.threethird img {
	width:90%;
	margin:0 auto;
	padding:15px 0 15px 0;
}

@media (max-width: 767px) {
  .wrap {
    flex-direction: column;
  }
  .one,
  .two {
    width: auto;
	text-align:center;
	margin-bottom:15px;
  }
  .oneres {
  	width: 100%;
	text-align:center;
	margin-bottom: 15px;
	}
  .oneres img {
	  width:60%;
	  margin:0 auto;
  }
  .twores {
    width: auto;
	text-align:center;
	margin-bottom:15px;
  }

  .onegen,
  .twogen {
    width: auto;
	text-align:center;
	margin-bottom:15px;
  }
  .onethird,
  .twothird,
  .threethird {
    width: auto;
	text-align:center;
	margin-bottom:15px;
  }
}