
@charset "UTF-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,400i,900&display=swap');
:root{
	--grey: #8b9199;
	--dark-grey: #555555;
	--orange: #ff9900;
	--black: #000;
	--white: #fff;
	--font: 'Source Sans Pro', sans-serif;
}
html{
	font-family: var(--font);
}
/* Site Structure */
#site-grid{
	padding: 0;
	display:grid;
	/*grid-template-columns: [grass-start rocky-start] 1fr 1fr [grass-end rocky-end dunes-start] 1fr [dunes-end];
	  grid-template-rows: [grass-start dunes-start] 1fr [grass-end rocky-start] 1fr [rocky-end dunes-end];*/
	  /*grid-template:
	  ". rocky rocky ." 1fr
	  ". . dunes ." 1fr
	  ". . dunes ." 1fr
	  ". . dunes ." 1fr
	   / 1fr 1fr 1fr 1fr;*/
	   grid-template-columns: 1fr 1fr 1fr 1fr;
	   /*grid-template-rows: 196px 55px 25px 1fr auto auto 60px 55px;*/
	   grid-template-rows: auto auto auto auto auto auto auto auto auto;
}
#site-branding{
	grid-area: 1/1/2/5; /* row start/column start/row end/columns end*/
	text-align:center;
	display:flex;
	flex-direction:row;
	justify-content:space-around;
	align-items: center;
	flex-wrap: wrap;
}
#header-touch-points{
	position: relative;
	grid-area: 2/1/3/5;
	display:flex;
	flex-direction:row;
	justify-content: space-around;
	align-items: center;
	flex-wrap: wrap;
}
#header-touch-points>*{
	flex: 1 1 260px;
}
#menuh{
	grid-area: 3/1/4/5;
	position:-webkit-sticky; 
	position:sticky; 
	top:0;
	z-index:1
}
#main{
	position: relative;
	grid-area: 4/1/5/5;
	padding: 15px;
	border-left: none;
}
#page-sidebar{
	grid-area: 5/1/6/5;
	padding:0;
	border-right:none;
}
#sidebar{
	position: relative;
	/*grid-area: 3/1/5/2;*/
	grid-area: 6/1/7/5;
	padding: 25px 0;
}
#footer{
	position: relative;
	grid-area:7/1/8/5;
	text-align:center;
	padding: 25px 0;
}
#site-bottom{
	position: relative;
	grid-area:8/1/9/5;
}
#maker_badge{
	position: relative;
	grid-area: 9/1/10/5;
}

@media (min-width: 1005px) {
	#main{
		grid-area:4/1/5/5;
	}
	#sidebar{
		grid-area:5/1/6/5;
	}
	#footer{
		grid-area:6/1/7/5;
	}
	#site-bottom{
		grid-area:7/1/8/5;
	}
	#maker_badge{
		grid-area:8/1/9/5;
	}
}
@media (min-width: 768px){
	#main{
		border-left: 1px solid var(--grey);
	}
	#page-sidebar{
		grid-area:4/4/5/5;
		border-right: 1px solid var(--grey);
		padding:15px;
	}
}
p{
	font-family: var(--font);
	font-size: 14px;
	font-weight: normal;
	line-height: 18px;
	color: var(--black);
}
ul{
	font-size: 14px;
	line-height:20px;
}
#main_content ul li{
	color:var(--orange);
	font-size: 14px;
	margin-bottom: 7px;
}
a:link {
	color:var(--grey);
}
a:visited {
	color:var(--grey);
} 
a:hover {
	color:var(--grey);
} 
a:active {
	color:var(--grey);
}  
h1 {
	font-family: var(--font);
	font-size: 24px;
	font-weight: 900;
	color: var(--orange);
	}
	
h2 {
	font-family: var(--font);
	font-size: 18px;
	font-weight: 900;
	color: var(--grey);
	}

h3 {
	font-family: var(--font);
	font-size: 14px;
	font-weight: 900;
	color: var(--orange);
}
/* Styles */
.section-flex{
	display:block;
	text-align: center;
}
@media (min-width: 1005px) {
	.section-flex{
		display:flex;
		flex-direction: row;
		justify-content: center;
		align-items: center;
		flex-wrap:wrap;
	}
}
.embelish:before, .embelish:after{
  content: "\2212";  /* Some fancy character */
}
.embelish:before{
	margin-right: 10px;
}
.embelish:after{
	margin-left:10px;
}
#footer .embelish,
#sidebar .embelish{
	color:var(--white);
}
/* Header */
#site-branding{
	padding:15px;
}
#site-branding .sub-brand{
	display:none;
}
#site-branding .alpha{
	font-family: var(--font);
	font-size: 18px;
	font-weight: bold;
	color: var(--grey);
	text-transform: uppercase;
}
#site-branding .beta{
	font-family: var(--font);
	font-size: 18px;
	font-weight: bold;
	color: var(--orange);
}
/* Touch Points */
#header-touch-points{
	color: white;
	background: var(--grey);
	border-radius: 25px 25px 0px 0px;
	padding: 15px 0px
}
.latch{
	display: block;
	position: absolute;
	bottom: 0px;
	width: 100%;
	filter: drop-shadow(0px -5px 5px rgba(0, 0, 0, 0.7));
}
#header-touch-points .latch{
	border-top: solid var(--orange) 1px;
}
#footer .latch{
	border-top: solid var(--grey) 1px;
}
#sidebar .latch{
	border-top: solid var(--grey) 1px;
}
.tp-1,
.tp-2,
.tp-3{
	text-align:center;
	font-weight: 900;
	text-transform:uppercase;
	margin: 10px 0px;
}
#header-touch-points a{
	color: var(--white)
}
/* Navigation */
/* See Smart Menu */
#menuh{
	border-left: solid 1px var(--grey);
	border-right: solid 1px var(--grey);
	border-bottom: solid 1px var(--orange);
	background-color: var(--grey);
	text-align: center;
}
/* Sidebar */
#sidebar{
	font-family: var(--font);
	font-size: 13px;
	line-height: 20px;
	font-weight: normal;
	color: var(--white);
	text-decoration: none;
	border-left: 1px solid var(--grey);
	border-right: 1px solid var(--grey);
	text-align:center;
	background-color: var(--dark-grey);
}

@media (min-width: 1005px) {
	#sidebar .section-flex{
		text-align:left;
	}
}
.section-flex div {
    display: block;
    text-align: center;
}
#tankless_services{
	font-family: var(--font);
	font-size: 11px;
	line-height: 12px;
	font-weight: normal;
	color: #fff;
	text-decoration: none;
	margin-bottom: 5px;
	margin-top: 5px;
}
/* Testimonial Slider */
#testimonial-slider{
	display:block;
	margin-top:25px;
}
/* Slideshow container */
.slideshow-container {
	max-width: 1000px;
	position: relative;
	margin: auto;
  }
  
  /* Caption text 
  .text {
	color: #f2f2f2;
	font-size: 15px;
	padding: 8px 12px;
	position: absolute;
	bottom: 8px;
	width: 100%;
	text-align: center;
  }
  */
  /* Number text (1/3 etc) */
  .numbertext {
	color: #f2f2f2;
	font-size: 12px;
	padding: 8px 12px;
	position: absolute;
	top: 0;
  }
  
  /* The dots/bullets/indicators */
  .dot {
	height: 15px;
	width: 15px;
	margin: 0 2px;
	background-color: #bbb;
	border-radius: 50%;
	display: inline-block;
	transition: background-color 0.6s ease;
  }
  
  .active {
	background-color: #717171;
  }
  
  /* Fading animation */
  .fade {
	-webkit-animation-name: fade;
	-webkit-animation-duration: 1.5s;
	animation-name: fade;
	animation-duration: 1.5s;
  }
  
  @-webkit-keyframes fade {
	from {opacity: .4} 
	to {opacity: 1}
  }
  
  @keyframes fade {
	from {opacity: .4} 
	to {opacity: 1}
  }
  
  /* On smaller screens, decrease text size */
  @media only screen and (max-width: 300px) {
	.text {font-size: 11px}
  }
.special  {
	padding-top: 7px;
}
/* Main Content */
#main_content{
	margin-left:15px;
	margin-right:25px;
	float:left;
}
	
#video{
	float:right;
	width:320px;
	margin-left: 15px;
	margin-top: 15px;
	text-align: center;
}
#video img{
	border: none;
}
/* Page Sidebar */
#page-sidebar{
	text-align:center;
}
.featured-image img{
	max-width:300px;
	width:95%;
	height:auto;
}
/* Web Specials */
a.button{
	display:block;
	padding:5px;
	font-size: 12px;
	line-height:22px;
	border-radius: 15px;
	background: var(--orange);
	border: 1px solid var(--orange);
	margin: 0;
	color:white;
}
a.button.webSpecials{
	text-align:center;
	text-decoration: none;
}
#main a.button {
    margin: 0;
}
.webCoupons a:link{
	border: none;
	decoration:none;
}
.webCoupons img{
	width: 450px;
	float: right;
	padding: 5px;
	margin:5px;
	border: none;
}
.button{
	font-size: 17px;
	margin-bottom: 15px;
	border-radius: 15px;
	background-color: var(--orange);
	padding:15px;
	font-weight: 900;
	color: var(--white);
	text-transform: uppercase;
	width: 100%;
	max-width: 350px;
	text-align:center;
}
	
table.commerical_services{
	font-size: 14px;
	font-weight: normal;
	line-height: 18px;
	color: #000;
	text-align: left;
}

#main_content ol{
	font-family: var(--font);
	font-size: 15px;
	line-height: 18px;
}

#main_content ul{
	font-size: 15px;
	line-height: 18px;
}

p#silver{
	color: #8b9199;
}

.septic img.main{
	margin-top: 25px;
	width: 700px;
	height: auto;
}

/*FORMS SYTLING*/

ol.forms {
	float: left;
	list-style: none;
	width: 70%;
}

ol.forms li {
	clear: left;
	float: left;
	line-height: 1.5em;
	margin-bottom: 0.5em;
	width: 100%;
}

ol.forms label {
	cursor: pointer;
	display: block;
	float: left;
	line-height: 1.5em;
	padding-right: 1%;
	text-align: left;
	width: 30%;
}

ol.forms input { width: 55%;
}
ol.forms textarea {
	height: 20em; 
	width: 100%; 
}

ol.forms input, ol.forms textarea, ol.forms button { 
	font: 1em Georgia, "Times New Roman", Times, serif; 
}

ol.forms .error { 
	display: block;
	margin: 0.25em 0 0 0%;
	font-style: italic;
	color: #ff2e04;
}
ol.forms li.buttons {
	padding-left: 0;
	width: 89%;
}
/*END FORM STYLE*/

/* Footer */
#footer{
	background: var(--grey);
	color:var(--white);
	text-align:center;
}
#footer .section-flex{
	text-align:center;
}
#footer h2,
#footer p{
	color:var(--white);
}
#footer a{
	color:var(--white);
}
#footer img.cc {
	width: 100%;
    max-width: 150px;
    height: auto;
	margin: 0 5px;
}
.guarantee{
	text-align:center;
	font-style:italic;
	font-size: 18px;
	line-height: 24px;
	color:var(--white);
	padding: 0 35px;
}
#site-bottom{
	background-color:var(--orange);
	border-radius: 0px 0px 25px 25px;
	color:white;
	font-weight:900;
	text-transform:uppercase;
	padding: 15px 0px;
}
/* Maker Section */
#maker_badge{
	padding:25px 0;
	text-align:center;
	font-size:10px;
}
#maker_badge .sub-brand{
	display:block;
}
.webCoupons a{
	border: none;
}
.boldOrange{
	color:#f9880a;
	font-weight: bold;
}
.strong{
	font-weight:bold;
}
.alignLeft{
	float:left;
	margin-right:25px;
}
.alignRight{
	float:right;
	margin-left:25px;
}
/* Desktop CSS */
@media (min-width: 768px) {
	#site-grid{
		padding: 0 5%;
	}
	#site-branding .sub-brand{
		display:block;
	}
	#main{
		position: relative;
		grid-area: 4/1/5/4;
	}
	.tp-1,
	.tp-2,
	.tp-3{
	margin: 0px 0px;
	}
	.section-flex div{
		flex: 1;
	}
	.sidebar-content {
		padding: 15px;
		margin-bottom:25px;
	}
	#maker_badge .sub-brand{
		display:none;
	}
	#site-branding{
		padding:0px;
	}
	#footer{
		padding: 0 0 25px 0;
	}
}

/* Smart Menu Theme */
.sm-clean {
	background: var(--white);
  }
/*.sm-clean li {
	float: left;
}*/
  .sm-clean a, .sm-clean a:hover, .sm-clean a:focus, .sm-clean a:active {
	padding: 13px 20px;
	/* make room for the toggle button (sub indicator) */
	padding-right: 58px;
	color: var(--orange);
	font-family: var(--font);
	font-size: 12px;
	font-weight: normal;
	line-height: 0px;
	text-decoration: none;
  }
  .sm-clean a.current {
	color: var(--orange);
  }
  .sm-clean a.disabled {
	color: var(--orange);
  }
  .sm-clean a .sub-arrow {
	position: absolute;
	top: 50%;
	margin-top: -17px;
	left: auto;
	right: 4px;
	width: 34px;
	height: 34px;
	overflow: hidden;
	font: bold 16px/34px monospace !important;
	text-align: center;
	text-shadow: none;
	background: rgba(255, 255, 255, 0.5);
	border-radius: 3px;
  }
  .sm-clean a .sub-arrow::before {
	content: '+';
  }
  .sm-clean a.highlighted .sub-arrow::before {
	content: '-';
  }
  .sm-clean > li:first-child > a, .sm-clean > li:first-child > :not(ul) a {
	border-radius: 0px 0px 0 0;
  }
  .sm-clean > li:last-child > a, .sm-clean > li:last-child > *:not(ul) a, .sm-clean > li:last-child > ul, .sm-clean > li:last-child > ul > li:last-child > a, .sm-clean > li:last-child > ul > li:last-child > *:not(ul) a, .sm-clean > li:last-child > ul > li:last-child > ul, .sm-clean > li:last-child > ul > li:last-child > ul > li:last-child > a, .sm-clean > li:last-child > ul > li:last-child > ul > li:last-child > *:not(ul) a, .sm-clean > li:last-child > ul > li:last-child > ul > li:last-child > ul, .sm-clean > li:last-child > ul > li:last-child > ul > li:last-child > ul > li:last-child > a, .sm-clean > li:last-child > ul > li:last-child > ul > li:last-child > ul > li:last-child > *:not(ul) a, .sm-clean > li:last-child > ul > li:last-child > ul > li:last-child > ul > li:last-child > ul, .sm-clean > li:last-child > ul > li:last-child > ul > li:last-child > ul > li:last-child > ul > li:last-child > a, .sm-clean > li:last-child > ul > li:last-child > ul > li:last-child > ul > li:last-child > ul > li:last-child > *:not(ul) a, .sm-clean > li:last-child > ul > li:last-child > ul > li:last-child > ul > li:last-child > ul > li:last-child > ul {
	border-radius: 0 0 0px 0px;
  }
  .sm-clean > li:last-child > a.highlighted, .sm-clean > li:last-child > *:not(ul) a.highlighted, .sm-clean > li:last-child > ul > li:last-child > a.highlighted, .sm-clean > li:last-child > ul > li:last-child > *:not(ul) a.highlighted, .sm-clean > li:last-child > ul > li:last-child > ul > li:last-child > a.highlighted, .sm-clean > li:last-child > ul > li:last-child > ul > li:last-child > *:not(ul) a.highlighted, .sm-clean > li:last-child > ul > li:last-child > ul > li:last-child > ul > li:last-child > a.highlighted, .sm-clean > li:last-child > ul > li:last-child > ul > li:last-child > ul > li:last-child > *:not(ul) a.highlighted, .sm-clean > li:last-child > ul > li:last-child > ul > li:last-child > ul > li:last-child > ul > li:last-child > a.highlighted, .sm-clean > li:last-child > ul > li:last-child > ul > li:last-child > ul > li:last-child > ul > li:last-child > *:not(ul) a.highlighted {
	border-radius: 0;
  }
  .sm-clean li {
	border-top: 1px solid rgba(0, 0, 0, 0.05);
  }
  .sm-clean > li:first-child {
	border-top: 0;
  }
  .sm-clean ul {
	background: rgba(179, 179, 179, 0.1);
  }
  .sm-clean ul a, .sm-clean ul a:hover, .sm-clean ul a:focus, .sm-clean ul a:active {
	border-left: 8px solid transparent;
  }
  .sm-clean ul ul a,
  .sm-clean ul ul a:hover,
  .sm-clean ul ul a:focus,
  .sm-clean ul ul a:active {
	border-left: 16px solid transparent;
  }
  .sm-clean ul ul ul a,
  .sm-clean ul ul ul a:hover,
  .sm-clean ul ul ul a:focus,
  .sm-clean ul ul ul a:active {
	border-left: 24px solid transparent;
  }
  .sm-clean ul ul ul ul a,
  .sm-clean ul ul ul ul a:hover,
  .sm-clean ul ul ul ul a:focus,
  .sm-clean ul ul ul ul a:active {
	border-left: 32px solid transparent;
  }
  .sm-clean ul ul ul ul ul a,
  .sm-clean ul ul ul ul ul a:hover,
  .sm-clean ul ul ul ul ul a:focus,
  .sm-clean ul ul ul ul ul a:active {
	border-left: 40px solid transparent;
  }
  
  @media (min-width: 1005px) {
	/* Switch to desktop layout
	-----------------------------------------------
	   These transform the menu tree from
	   collapsible to desktop (navbar + dropdowns)
	-----------------------------------------------*/
	/* start... (it's not recommended editing these rules) */
	ul#main-menu{
		text-align: center;
	}
	ul#main-menu li{
		display: inline-block; 
	}
	.sm-clean ul {
	  position: absolute;
	  width: 12em;
	}
  
	.sm-clean.sm-rtl li {
	  float: right;
	}
  
	.sm-clean ul li, .sm-clean.sm-rtl ul li, .sm-clean.sm-vertical li {
	  float: none;
	}
  
	.sm-clean a {
	  white-space: nowrap;
	}
  
	.sm-clean ul a, .sm-clean.sm-vertical a {
	  white-space: normal;
	}
  
	.sm-clean .sm-nowrap > li > a, .sm-clean .sm-nowrap > li > :not(ul) a {
	  white-space: nowrap;
	}
  
	/* ...end */
	.sm-clean {
	  padding: 0 10px;
	  background: var(--orange);
	}
	.sm-clean a, .sm-clean a:hover, .sm-clean a:focus, .sm-clean a:active, .sm-clean a.highlighted {
	  padding: 12px 12px;
	  color: var(--white);
	  border-radius: 0 !important;
	}
	.sm-clean a:hover, .sm-clean a:focus, .sm-clean a:active, .sm-clean a.highlighted {
	  color: var(--black);
	}
	.sm-clean a.current {
	  color: var(--white);
	}
	.sm-clean a.disabled {
	  color: var(--white);
	}
	.sm-clean a.has-submenu {
	  padding-right: 26px;
	}
	.sm-clean a .sub-arrow {
	  top: 50%;
	  margin-top: -2px;
	  right: 12px;
	  width: 0;
	  height: 0;
	  border-width: 4px;
	  border-style: solid dashed dashed dashed;
	  border-color:  var(--white) transparent transparent transparent ;
	  background: transparent;
	  border-radius: 0;
	}
	.sm-clean a .sub-arrow::before {
	  display: none;
	}
	.sm-clean li {
	  border-top: 0;
	}
	.sm-clean > li > ul::before,
	.sm-clean > li > ul::after {
	  content: '';
	  position: absolute;
	  top: -16px;
	  left: 30px;
	  width: 0;
	  height: 0;
	  overflow: hidden;
	  border-width: 8px;
	  border-style: dashed dashed solid dashed;
	  border-color: transparent transparent var(--orange) transparent;
	}
	.sm-clean > li > ul::after {
	  top: -14px;
	  left: 31px;
	  border-width: 7px;
	  border-color: transparent transparent #fff transparent;
	}
	.sm-clean ul {
	  border: 1px solid #cccccc;
	  padding: 5px 0;
	  background: var(--white);
	  border-radius: 3px !important;
	  box-shadow: 0 5px 9px rgba(0, 0, 0, 0.1);
	}
	.sm-clean ul a, .sm-clean ul a:hover, .sm-clean ul a:focus, .sm-clean ul a:active, .sm-clean ul a.highlighted {
	  border: 0 !important;
	  padding: 10px 10px;
	  color: var(--orange);
	}
	.sm-clean ul a:hover, .sm-clean ul a:focus, .sm-clean ul a:active, .sm-clean ul a.highlighted {
	  background: #fff;
	  color: var(--black);
	}
	.sm-clean ul a.current {
	  color: var(--orange);
	}
	.sm-clean ul a.disabled {
	  background: #fff;
	  color: #cccccc;
	}
	.sm-clean ul a.has-submenu {
	  padding-right: 20px;
	}
	.sm-clean ul a .sub-arrow {
	  right: 8px;
	  top: 50%;
	  margin-top: -5px;
	  border-width: 5px;
	  border-style: dashed dashed dashed solid;
	  border-color: transparent transparent transparent #666666;
	}
	.sm-clean .scroll-up,
	.sm-clean .scroll-down {
	  position: absolute;
	  display: none;
	  visibility: hidden;
	  overflow: hidden;
	  background: #fff;
	  height: 20px;
	}
	.sm-clean .scroll-up:hover,
	.sm-clean .scroll-down:hover {
	  background: #fff;
	}
	.sm-clean .scroll-up:hover .scroll-up-arrow {
	  border-color: transparent transparent #008ddd transparent;
	}
	.sm-clean .scroll-down:hover .scroll-down-arrow {
	  border-color: #008ddd transparent transparent transparent;
	}
	.sm-clean .scroll-up-arrow,
	.sm-clean .scroll-down-arrow {
	  position: absolute;
	  top: 0;
	  left: 50%;
	  margin-left: -6px;
	  width: 0;
	  height: 0;
	  overflow: hidden;
	  border-width: 6px;
	  border-style: dashed dashed solid dashed;
	  border-color: transparent transparent #666666 transparent;
	}
	.sm-clean .scroll-down-arrow {
	  top: 8px;
	  border-style: solid dashed dashed dashed;
	  border-color: #666666 transparent transparent transparent;
	}
	.sm-clean.sm-rtl a.has-submenu {
	  padding-right: 12px;
	  padding-left: 26px;
	}
	.sm-clean.sm-rtl a .sub-arrow {
	  right: auto;
	  left: 12px;
	}
	.sm-clean.sm-rtl.sm-vertical a.has-submenu {
	  padding: 10px 20px;
	}
	.sm-clean.sm-rtl.sm-vertical a .sub-arrow {
	  right: auto;
	  left: 8px;
	  border-style: dashed solid dashed dashed;
	  border-color: transparent #666666 transparent transparent;
	}
	.sm-clean.sm-rtl > li > ul::before {
	  left: auto;
	  right: 30px;
	}
	.sm-clean.sm-rtl > li > ul::after {
	  left: auto;
	  right: 31px;
	}
	.sm-clean.sm-rtl ul a.has-submenu {
	  padding: 10px 20px !important;
	}
	.sm-clean.sm-rtl ul a .sub-arrow {
	  right: auto;
	  left: 8px;
	  border-style: dashed solid dashed dashed;
	  border-color: transparent #666666 transparent transparent;
	}
	.sm-clean.sm-vertical {
	  padding: 10px 0;
	  border-radius: 3px;
	}
	.sm-clean.sm-vertical a {
	  padding: 10px 20px;
	}
	.sm-clean.sm-vertical a:hover, .sm-clean.sm-vertical a:focus, .sm-clean.sm-vertical a:active, .sm-clean.sm-vertical a.highlighted {
	  background: #fff;
	}
	.sm-clean.sm-vertical a.disabled {
	  background: #fff;
	}
	.sm-clean.sm-vertical a .sub-arrow {
	  right: 8px;
	  top: 50%;
	  margin-top: -5px;
	  border-width: 5px;
	  border-style: dashed dashed dashed solid;
	  border-color: transparent transparent transparent #666666;
	}
	.sm-clean.sm-vertical > li > ul::before,
	.sm-clean.sm-vertical > li > ul::after {
	  display: none;
	}
	.sm-clean.sm-vertical ul a {
	  padding: 10px 20px;
	}
	.sm-clean.sm-vertical ul a:hover, .sm-clean.sm-vertical ul a:focus, .sm-clean.sm-vertical ul a:active, .sm-clean.sm-vertical ul a.highlighted {
	  background: #fff;
	}
	.sm-clean.sm-vertical ul a.disabled {
	  background: #fff;
	}
  }
  /* Hamburger */
  .main-menu-btn {
	position: relative;
	display: inline-block;
	width: 28px;
	height: 28px;
	text-indent: 28px;
	white-space: nowrap;
	overflow: hidden;
	cursor: pointer;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
  }
  /* hamburger icon */
  .main-menu-btn-icon, .main-menu-btn-icon:before, .main-menu-btn-icon:after {
	position: absolute;
	top: 50%;
	left: 2px;
	height: 2px;
	width: 24px;
	background: var(--white);
	-webkit-transition: all 0.25s;
	transition: all 0.25s;
  }
  .main-menu-btn-icon:before {
	content: '';
	top: -7px;
	left: 0;
  }
  .main-menu-btn-icon:after {
	content: '';
	top: 7px;
	left: 0;
  }
  /* x icon */
  #main-menu-state:checked ~ .main-menu-btn .main-menu-btn-icon {
	height: 0;
	background: transparent;
  }
  #main-menu-state:checked ~ .main-menu-btn .main-menu-btn-icon:before {
	top: 0;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
  }
  #main-menu-state:checked ~ .main-menu-btn .main-menu-btn-icon:after {
	top: 0;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
  }
  /* hide menu state checkbox (keep it visible to screen readers) */
  #main-menu-state {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	border: 0;
	padding: 0;
	overflow: hidden;
	clip: rect(1px,1px,1px,1px);
  }
  /* hide the menu in mobile view */
  #main-menu-state:not(:checked) ~ #main-menu {
	display: none;
  }
  #main-menu-state:checked ~ #main-menu {
	display: block;
  }
  @media (min-width: 1105px) {
	/* hide the button in desktop view */
	.main-menu-btn {
	  position: absolute;
	  top: -99999px;
	}
	/* always show the menu in desktop view */
	#main-menu-state:not(:checked) ~ #main-menu {
	  display: block;
	}
	#site-grid{
		padding: 0 10%;
	}
  }
  