@charset "UTF-8";

html {
	box-sizing: border-box;
	-webkit-text-size-adjust:none;
}
*, *:before, *:after {
	box-sizing: inherit;
	margin: 0;
	padding: 0;
}
body {
	font-family: 'Open Sans', sans-serif;
	font-style:normal;
	font-weight:400;
}
:focus {
    outline: 0 none;
}
h1,h2,h3,h4 {
	font-weight: 700;
}
h2 {
	font-size: 1.7em;
	color: #710F00;
	margin: 0 0 10px 0;
	letter-spacing: -1px;
}
h3 {
	font-size: 2.2em;
	color: #4e6359;
	margin: 0 0 10px 0;
	letter-spacing: -1px;
}
h4 {
	font-size: 1.35em;
	color: #710F00;
	margin-bottom: 8px;
	letter-spacing: -1px;
}
p {
	font-size: 1em;
	line-height: 1.65;
	color: #717973;
	margin-bottom: 14px;
}
a {
	color: #710F01;
	text-decoration: none;
}
p a:hover, li a:hover {
	text-decoration: underline;
}
.clear {
	clear:both;
}
img {
	border:0;
}
#container {
	width:100%;
	max-width:1500px;
	margin: 0 auto;
	background-color: #FFFFFF;
	overflow:hidden;
}
.col-left {
	width: 60%;
	float: left;
	padding: 32px 40px 0 60px;
}
.col-right {
	width: 40%;
	float: left;
	padding: 38px 60px 0 0;
}

/* -------------------------------------- HEADER ---------------------- */
#header {
	background-color: #710F00;
	overflow:hidden;
	width: 100%;
	padding:0 60px 0 60px
}
.logo {
	float:left;
	padding:28px 0 28px 0;
}
.button {
	float:right;
	color: #fff;
	font-family: 'Open Sans', sans-serif;
	font-size: 1em;
	display: inline-block;
	padding:7px 15px 8px 15px;
	margin: 20px 0 0 12px;
	-webkit-appearance: none;
	-moz-appearance: none;
	border:1px solid #fff;
	-webkit-transition: all .2s;
    -moz-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
}
.button:hover {
	cursor: pointer;
	border:1px solid #d69408;
	color:#d69408;
	-webkit-transition: all .3s;
    -moz-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

/* -------------------------------------- SPLASH ---------------------- */
#splash {
	position:relative;
	text-align:center;	
}
#splash img {
	width:100%;
	height:auto;	
}
#splash #services {
	position:absolute;
	width:100%;
	top: 47%;
	left: 50%;
	transform: translate(-50%, -50%);
}
#splash #services h1 {
	font-size: 4.2em;
	line-height:1.15;
	color: #FFF;
	padding:0 18px;
	letter-spacing:-1px;
	text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.6);
}
@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale(.3, .3);
    transform: scale(.3, .3);
  }

  50% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale(.3, .3);
    transform: scale(.3, .3);
  }

  50% {
    opacity: 1;
  }
}

#badge {
	position:absolute;
	width:15%;
	height:auto;
	top:16px;
	right:16px;
	-moz-animation: zoomIn .5s ease;
    -webkit-animation: zoomIn .5s ease;
	-ms-animation: zoomIn .5s ease;
	animation: zoomIn .5s ease;
}
/* -------------------------------------- RECENT PROJECTS ---------------------- */
#recent-projects {
	margin: 32px 0 0 0;
}
#recent-projects ul {
	list-style-type: none;
    -moz-column-count: 2;
    -moz-column-gap: 8px;
    -webkit-column-count: 2;
    -webkit-column-gap: 8px;
    column-count: 2;
    column-gap: 8px;
	margin-top:4px;
}
#recent-projects ul li {
	display: list-item;
	color: #717973;
	font-size: 1em;
	line-height: 1.65;
	padding-bottom:8px;
}

/* -------------------------------------- CONTACT ---------------------- */
#contact {
	background:#f8f8f8;
	border:1px solid #ccc;
	text-align:center;
}
.promo {
	width: 100%;
	background-color: #344d31;
	text-align:center;
	margin:0 0 18px 0;
	overflow:hidden;
	-webkit-transition: all .2s;
    -moz-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
}
.promo:hover {
	background-color: #355c30;
	-webkit-transition: all .2s;
	-moz-transition: all .2s;
	-o-transition: all .2s;
	transition: all .2s;
}
.headline {
	font-weight: 700;
	font-size: 2.2em;
	color: #fff;
	line-height:1em;
	margin: 16px 0 3px 0;
}
.terms {
	font-size: 0.9em;
	color: #fff;
	opacity:.5;
}
.cta {	
	color: #fff;
	font-family: 'Open Sans', sans-serif;
	font-weight:700;
	font-size: 1em;
	display: inline-block;
	padding:6px 17px 8px 17px;
	margin: 10px 0 20px 0;
	border:2px solid #FFF;
	-webkit-appearance: none;
	-moz-appearance: none;
}
#contact ul {
	list-style-type: none;
	padding-bottom: 20px;
	text-align:center;
}
#contact ul li {
	display: list-item;
	color: #717973;
	font-size: 1em;
	line-height: 1.55;
	padding-bottom:5px;
}
#contact ul li.mShow {
	display:none;
}
#contact ul li.mHide {
	display:list-item;
}

/* -------------------------------------- HOW IT WORKS ---------------------- */
#how {
	padding: 18px 30px 10px 30px;
	margin-top:16px;
	border:1px solid #ccc;
}
#how h2 {
	text-align:center;
}
#how ol {
	list-style-type: none;
	list-style-position: inside;
	padding-left:5px;
}
#how ol li {
	color: #717973;
	line-height:1.65;
	padding:4px 0 6px 30px;
	font-size: 1em;
	counter-increment: step-counter;
	margin-bottom: 10px;
	position: relative;
}
#how ol li:before {
	position: absolute;
	left: -5px;
	top:6px;
	content: counter(step-counter);
	margin-right: 5px;
	font-size: 80%;
	background-color: #ccc;
	color: white;
	font-weight: bold;
	padding: 1px 7px 2px 7px;
}
#how ol li:last-child {
	border-bottom:none;
}
/* -------------------------------------- FOR SALE ---------------------- */
#sale-items {
	width:100%;
	padding: 12px 42px 0 42px;
}
#sale-items .sale-item {
	float:left;
	width:48%;
	overflow:hidden;
	border:1px solid #ccc;
	padding:18px;
	margin:28px 1% 0 1%;
}
.clear {
	clear:left;
}
#sale-items .sale-item img {
	width:45%;
	height:auto;
	float:left;
}
#sale-items .sale-item .details {
	width:55%;
	float:left;
	padding-left:18px;
	color: #717973;
}
#sale-items .sale-item span {
	float:left;
	clear:left;
}
.for-sale {
	font-size: 1.9em;
	color: #4e6359;
	font-weight:700;	
	letter-spacing:-1px;
	line-height:1;
}
.description {
	font-weight:700;	
	color: #710F00;
	margin:12px 0 12px 0;
}
.warranty {
	font-size:.8em;
	margin:0 0 12px 0;
}
.price {
	font-weight:700;	
	font-size: 1.25em;
	color: #710F00;
	width:100%;
	margin-bottom:7px;
}
.contact {
	font-size:.8em;
	margin:8px 0 0 0;
}
.button-sale {
	float:left;
	color: #fff;
	font-family: 'Open Sans', sans-serif;
	font-size: 12px;
	display: inline-block;
	padding:4px 7px 5px 7px;
	margin:7px 7px 0 0;
	background:#d69408;
	-webkit-appearance: none;
	-moz-appearance: none;
	-webkit-transition: all .2s;
    -moz-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
}
.button-sale:hover {
	cursor: pointer;
	background:#355c30;
	-webkit-transition: all .2s;
    -moz-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
}

/* -------------------------------------- TESTIMONIALS ---------------------- */
.quotes {
	margin-top: 40px;
	text-align: center;
	padding: 29px 18% 33px 18%;
	background-color: #578052;
}

.quotes h2, .quotes p {
	color:#fff;
}
.quotes img {
	margin: 8px 0 6px 0;
	width:100%;
	max-width:410px;
	height:auto;
}
.quotes p {
	margin-bottom: 8px;
}
p.byline {
	margin: -4px 0 24px 0;
	font-weight:bold;
}
/* -------------------------------------- REPAIR SERVICES ---------------------- */
.repairs {
	margin-top: 40px;
	padding: 29px 50px 33px;
	background-color: #f2f2f2;
}
.repairs h2 {
	font-size: 1.9em;
	color: #4e6359;
	margin: 0 0 10px 0;
	letter-spacing: -1px;
}
.repairs img {
	float: right;
	margin: 8px 0 26px 40px;
	border: solid 1px #CCC;
	padding: 7px;
	background-color: #FFF;
}

/* -------------------------------------- BRANDS ---------------------- */
.col-full {
	width:100%;
	padding: 36px 50px 0 50px;	
}
.col-third {
	width: 33%;
	float: left;
	padding: 0 3% 10px 0;
}
.col-third ul {
	list-style-type: none;
	padding-bottom: 36px;
}
.col-third ul li {
	display: list-item;
	color: #717973;
	font-size: 1em;
	line-height: 1.65;
}

/* -------------------------------------- FOOTER ---------------------- */
#credits {
	clear:both;
	background-color: #710F01;
	text-align: center;
	margin-top: 0;
	padding: 40px 0 0 0;
	width: 100%;
}
#credits img {
	display:block;
	margin:0 auto 0 auto;
}
.button-ftr {
	color: #fff;
	font-family: 'Open Sans', sans-serif;
	font-weight:700;
	font-size: 1em;
	display: inline-block;
	padding:8px 17px 9px 17px;
	margin: 22px 6px 22px 6px;
	-webkit-appearance: none;
	-moz-appearance: none;
	border:1px solid #fff;
	-webkit-transition: all .2s;
    -moz-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
}
.button-ftr:hover {
	cursor: pointer;
	border:1px solid #d69408;
	color:#d69408;
	-webkit-transition: all .3s;
    -moz-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}
.footer-base {
	margin-top:30px;
	padding:22px 0 10px 0;
	background:rgba(0,0,0,.15);;	
}
#credits p {
	padding: 0 32px 0 32px;
	font-size: 0.85em;
	line-height:1.5;
	color: #FFFFFF;
}
#credits a {
	font-size: 0.9em;
	color: rgba(255,255,255,.5);
	text-decoration: none;
}
#credits a:hover {
	color: rgba(255,255,255,1);
}

@media only screen and (max-width : 840px)
 { 
#header {
	background-color: #710F01;
	overflow:hidden;
	width: 100%;
	padding:0 36px 0 36px
}
#splash #services h1 {
	font-size: 3.5em;
}
.col-left {
	width: 60%;
	padding: 26px 40px 0 36px;
}
.col-right {
	width: 40%;
	padding: 38px 36px 0 0;
}

#how ol li {
	font-size: 0.9em;
}
#contact ul li, #recent-projects ul li {
	font-size: 0.9em;
	line-height: 1.7;
}


.terms {
	font-size: 0.7em;
}
.cta {	
	font-size: 1em;
	padding:8px 17px 10px 17px;
	margin: 10px 0 16px 0;
}

p {
	font-size:.9em;
	margin-bottom:11px;
}

h3 {
	font-size: 2.1em;
	margin-bottom: 8px;
}
.headline {
	font-size: 2em;	
}

#sale-items {
	padding: 8px 30px 0 30px;
}
#sale-items .sale-item {
	padding:14px;
}
#sale-items .sale-item .details {
	padding-left:14px;
}
.for-sale {
	font-size: 1.9em;
}
.description {
	font-size: .9em;
	margin:13px 0 8px 0;
}

.price {
	font-size: 1.2em;
}
.contact {
	font-size:.75em;
	margin:8px 0 0 0;
}
.contact {
	font-size:.75em;
	margin:8px 0 0 0;
}


.repairs {
	margin-top: 30px;
	padding: 32px 36px 22px 36px;
}
.repairs h2 {
	font-size: 1.6em;
	line-height:1.25;
}

.repairs img {
	margin: 0 0 26px 40px;
}

.col-full {
	padding: 32px 36px 0 36px;	
}
h4 {
	font-size:1.15em;	
}
.col-third ul li {
	font-size: 0.9em;
}
 }
@media only screen and (max-width : 768px)
 { 
#sale-items {
	padding: 36px 36px 0 36px;
}
#sale-items .sale-item {
	width:100%;
	margin:0 0 22px 0;
} 
 }
 
@media only screen and (max-width : 720px)
 {
	 
.logo {
	width:246px;
	height:auto;
	padding:20px 0 21px 0;
}
.button {
	float:right;
	font-size: 0.9em;
	padding:7px 10px 8px 10px;
	margin: 12px 0 0 10px;
}
#splash #services h1 {
	font-size: 2.8em;
}
.col-left {
	width: 100%;
	padding: 26px 40px 0 36px;
}
.col-right {
	width: 100%;
	padding: 38px 36px 0 36px;
}
.headline {
	margin: 15px 0 4px 0;
}
.terms {
	font-size: 0.75em;
}
.cta {	
	font-size: 1em;
	padding:6px 20px 8px 20px;
	margin: 10px 0 20px 0;
}
.col-full {
	padding: 32px 26px 0 36px;	
}
h2 {
	font-size:1.45em;
}
h4 {
	font-size:1em;
	letter-spacing:0;	
}

#credits p {
	font-size: 0.8em;
	line-height:1.3em;
}	 
	 
 }
@media only screen and (max-width : 600px)
 { 
#header {
	padding:0 26px 0 26px;	
}
#splash #services h1 {
	font-size: 2.6em;
} 
 }
@media only screen and (max-width : 540px)
 {
#header {
	text-align:center;
	padding:0 26px 0 26px;	
}
.logo {
	float:none;
	display:block;
	padding:0;
	margin:16px auto 16px auto;
}
.button {
	float:none;	
	padding:5px 12px 5px 12px;
	margin:0 5px 12px 5px;
}
#splash img.bg {
	width:780px;
	height:auto;	
	margin-left:-100px;
}
#splash #services {
	top:50%;
}
#splash #services h1 {
	font-size: 2.4em;
}
#badge {
	width:25%;
	top:10px;
	right:10px;
}
.repairs img {
	width:31%;
	height:auto;	
	margin: 4px 0 14px 10px;
	padding: 4px;
}
.col-third {
	width:100%;	
}
h4 {
	font-size:1.2em;
}	
.quotes {
	margin-top: 40px;
	padding: 29px 12% 33px 12%;
}
 }
@media only screen and (max-width : 460px)
 {


h3, .for-sale {
	font-size: 1.8em;
}
.col-left {
	width: 100%;
	padding: 20px 30px 0 30px;
}
.col-right {
	width: 100%;
	padding: 38px 30px 0 30px;
}
.col-full {
	padding: 32px 30px 0 30px;	
}
#sale-items {
	padding: 32px 30px 0 30px;
}
.repairs {
	padding: 32px 30px 22px 30px;
}
#credits img {
	width:240px;
	height:auto;	
}

 }
@media only screen and (max-width : 412px)
 {
#splash #services h1 {
	font-size: 2.1em;
}
#badge {
	width:27%;
}
#recent-projects ul {
    -moz-column-count: 1;
    -moz-column-gap: 0;
    -webkit-column-count: 1;
    -webkit-column-gap: 0;
    column-count: 1;
    column-gap: 0;
}
#sale-items .sale-item img {
	width:100%;
	height:auto;
	float:none;
	margin-bottom:12px;
}
#sale-items .sale-item .details {
	width:100%;
	float:none;
	padding-left:0;
	text-align:center;
}
#sale-items .sale-item span {
	float:none;
	clear:none;
	display:block;
}
.button-sale {
	float:none;
}
 }

@media only screen and (max-width : 360px)
 {
h2, h3, .for-sale {
	font-size: 1.5em;
}
.headline {
	font-size: 1.7em;
	margin: 12px 0 4px 0;
}
 }
