/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Roboto+Serif:ital,opsz,wght@0,8..144,100..900;1,8..144,100..900&display=swap');
@font-face {
	font-family: 'Impact';
	src: local('?'), url('../fonts/Impact.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}

* {
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

:root {
  interpolate-size: allow-keywords;
}

html {
	padding: 0;
	margin: 0;
	border: 0;
	scroll-behavior: smooth;
	width: 100%;
	min-height: 100vh;
}

body {
	padding: 0;
	margin: 0;
	border: 0;

	width: 100%;
	min-height: 100vh;
	
	background-color: rgba(255,255,255,1.00);
	color: rgba(78, 81, 88, 1);
	font-family: Raleway,verdana,sans-serif!important;
	font-weight: 400;
	font-size: clamp(65%, 1vw, 80%);	
	line-height: 2em;
	
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

h1, .h1 {
	margin: 0;
	font-family: 'Raleway', sans-serif;
	font-size: min(10vw, 2.5em);
	line-height: 1.3em;
	font-weight: 700;
	text-align: left;
	color: rgba(50,56,117,1.00);
}

h2, .h2 {
	margin: 0;
	font-size: min(10vw, 3.5em);
	color: rgba(129,130,133,1.00);
	line-height: 1em;
	font-weight: 600;
	text-align: center;
	font-style: italic;
}

h1 + h2 {
	margin-bottom: 1em;
}

h3 {
	font-weight: 600;
	font-size: 1.8em;
	color: rgba(210,35,42,1.00);
}

a{
	font-weight: 600;
	color: rgba(210,35,42,1.00);
	text-decoration: none;
}

p {
	font-size: 1.2em;
	font-weight: 500;
	color: black;
}

img, svg {vertical-align: top;}

.tbl{display: table}
.tr{display: table-row}
.td{display: table-cell; vertical-align: top;}


/* --------------------------- SITE HEADER ------------------------------ */

.title-container {
	display: contents;
}
.title {
	padding: 1em;
	display: flex;
	align-items: center;
	justify-content: center;
	background-image: url('../images/title-back-left.webp'), url('../images/title-back-right.webp');
	background-size: auto 100%, auto 100%;
	background-position: top left, top right;
	background-repeat: no-repeat, no-repeat;
}
nav {
	width: 100%;
	height: 3.125em;
	padding: 0 50px;
	display: flex;
	align-items: stretch;
	justify-content: space-between;
	gap: 1em;
	background-color: rgba(34,102,102,1.00);
	position: sticky;
	top: 0;
	filter: drop-shadow(0 0 50px rgba(0,0,0,0.2));
	z-index: 10;
}
nav a {
	display: flex;
	align-items: center;
	text-decoration: none;
	padding: 0 1em;
	height: 100%;
	color: white;
	font-size: 1.4em;
	font-weight: 600;
	letter-spacing: 0.05em;
	transition: all 0.5s;
	line-height: 1em;
	text-align: center;
}
nav a:hover,
nav a:active{
	background-color: rgba(255,255,255,0.3);
}
#navcontrol {
	position: fixed;
	left: -10000px;
}
.mobile-nav-banner{
	display: none;
}

#header-logo {
	width: 37.5em;
	max-width: 100%;
	filter: drop-shadow(0 0 30px white);
}


/* ---------------------- SITE FOOTER ------------------------------- */

.footer-services {
	background-color: rgba(37,109,96,1.00);
	color: white;
	font-size: 1.2em;
	padding: 0.3em 0;
	white-space: nowrap;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

.footer-services > div {
	display: inline-block;
	position: relative;
	transform: translateX(0%);
	animation-name: scroller;
	animation-duration: 40s;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
	white-space: nowrap;
}

@keyframes scroller{
	0%{transform: translateX(0%)}
	100%{transform: translateX(-100%)}
}

.footer-contact {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2em;
	padding: 1.5em;
	position: relative;
}

.footer-contact > div {
	position: relative;
}

.footer-back {
	position: absolute!important;
	top: 0;
	left: 0;
	width: 100%;
	bottom: 0;
	padding-top: 1.5em;
	text-align: right;
	overflow: hidden;
}

.footer-back svg {
	width: 55%!important;
	opacity: 0.1;
	margin-right: -5%;
}

.footer-logo svg{
	width: 100%!important;
}

.footer-location {
	color: rgba(25,31,88,1.00);
	font-size: 1.9em;
	font-weight: 750;
	text-align: center;
	line-height: 1.5em;
}

.footer-phone {
	color: rgba(72,136,119,1.00);
	font-size: 4.5em;
	font-weight: 800;
	text-align: center;
	line-height: 0.8em;
	letter-spacing: -0.04em;
}

.footer-graphic {
	width: 22em;
	margin-bottom: -2.5em;
	position: relative;
	z-index: 2;
}

.footer-copyright {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 4em;
	font-size: 0.8em;
	color: white;
	background-color: rgba(25,32,89,1.00);
	line-height: 1.4em;
	padding: 2.3em 1em 1em 1em;
}
.footer-copyright > div:last-of-type {
	text-align: right;
}

.footer-copyright a{
	text-decoration: none;
	font-weight: 800;
	color: white;
}

/* ------------------------------ ALL PAGES ---------------------------------------------- */

section {
	position: relative;
	min-height: calc(100dvh - 3.125em);
	display: grid;
	grid-template-rows: auto 1fr;
	grid-template-columns: 1fr;
}
section header {
	position: sticky;
	top: 1.041666em;
	color: white;
	text-transform: uppercase;
	font-size: 3em;
	letter-spacing: 0.2em;
	text-align: center;
	height: max(100px, 2em);
	line-height: 1em;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
}
section header.brown{
	background-color: rgba(170,103,57,1.00);
	background-image: url('../images/header-mountains-left.svg'), url('../images/header-mountains-right.svg');
	background-position: bottom left, bottom right;
	background-size: auto 5rem, auto 5rem;
	background-repeat: no-repeat, no-repeat;
}
section header.green{
	background-color: rgba(68,136,122,1.00);
	background-image: url('../images/header-trees-full.webp'), url('../images/header-trees-full.webp');
	background-position: bottom left -20px, bottom right -20px;
	background-size: auto 6rem, auto 6rem;
	background-repeat: no-repeat, no-repeat;
}
section header.blue{
	background-color: rgba(83,90,147,1.00);
	background-image: url('../images/header-rvs-left.svg'), url('../images/header-rvs-right.svg');
	background-position: bottom left, bottom right;
	background-size: auto 4.5rem, auto 4.5rem;
	background-repeat: no-repeat, no-repeat;
}
section .double-wide{
	display: flex;
	align-items: stretch;
	justify-content: space-between;
	gap: 0;
}
section .double-wide > div {
	flex: 1 1 400px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
section .img-container {
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}
section .double-wide .content{
	padding: clamp(2em, 5vw, 6em);
	text-align: left;	
}
.green-gradient{
	background-color: white;
	background-image: linear-gradient(0deg, rgba(109,163,152,0.5), white);
}
.blue-gradient{
	background-color: white;
	background-image: linear-gradient(0deg, rgba(125,130,176,0.5), white);
}
.brown-gradient{
	background-color: white;
	background-image: linear-gradient(0deg, rgba(255,203,170,0.5), white);
	padding-bottom: 10em;	
}
section .double-wide .content h1{
	width: 100%;
	line-height: 1.1em;
	
}
section .double-wide .content p{
	padding-left: 2em;
}
section .double-wide .content > div {
}
section .double-wide .content > div p:last-child{
	margin-bottom: 0;
}
section .double-wide .content div + div{
	margin-top: 0.9em;
}
section.areas h1{
	text-align: center!important;
}
section.areas .subhead{
	font-size: 2em;
	font-weight: 700;
}
section.areas .locations {
	padding: 1em 0 0 0;
	font-size: 1.6em;
	line-height: 1.4em;
	text-align: center;
}

.image-right {
	float: right;
	margin: 0 0 1em 2em;
}



/* ------------------------ FAQ PAGE ----------------------------------------------------- */




/* -------------------------- HOME PAGE - HERO SECTION --------------------------------------- */



.hero {
	display: grid;
	grid-template-rows: min(500px, 35vw) auto;
	grid-template-columns: 1fr;
	min-height: 0;
	gap: 0;
	position: relative;
	font-size: clamp(80%, 1vw, 100%);
}
.hero > div {
	position: relative;
}
.hero .left{
	grid-row: 1;
	grid-column: 1;
}
.hero .left img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.hero .right{
	grid-row: 1;
	grid-column: 2;
}
.hero .right img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.hero .contact{
	grid-row: 2;
	grid-column: 1 / 3;
	display: grid;
	grid-template-rows: 1fr;
	grid-template-columns: auto 1fr auto;
	padding: 2em;
}
.hero .john {
	grid-row: 1;
	grid-column: 1;
	display: flex;
	align-items: center;
	justify-content: center;
}
.hero .john > div {
	background-color: rgba(25,32,89,1.00);
	color: white;
	padding: 1em;
	margin: 1em;
	transform: rotate(-10deg);
	text-align: center;
	filter: drop-shadow(0 0 15px black);
	white-space: nowrap;
}
.hero .contact div:nth-of-type(2) {
	grid-row: 1;
	grid-column: 2;
	display: flex;
	align-items: center;
	justify-content: center;
}
.hero .carol {
	grid-row: 1;
	grid-column: 3;
	display: flex;
	align-items: center;
	justify-content: center;
}
.hero .carol > div {
	background-color: rgba(25,32,89,1.00);
	color: white;
	padding: 1em;
	margin: 1em;
	transform: rotate(10deg);
	text-align: center;
	filter: drop-shadow(0 0 15px black);
	white-space: nowrap;
}
.hero .john > div > div:nth-of-type(1),
.hero .carol > div > div:nth-of-type(1) {
	text-transform: uppercase;
	font-size: 1.2em;
	font-weight: 600;
	text-decoration: underline;
	text-underline-offset: 0.3em;
}
.hero .john > div > div:nth-of-type(2),
.hero .carol > div > div:nth-of-type(2) {
	text-transform: uppercase;
	font-size: 2.4em;
	line-height: 1.2em;
	font-weight: 700;
}
.hero .john > div > div:nth-of-type(3),
.hero .carol > div > div:nth-of-type(3) {
	font-size: 1.5em;
	font-weight: 600;
	color: rgba(125,130,176,1.00);
}
.hero .central {
	display: inline-grid;
	grid-template-rows: auto auto auto;
	grid-template-columns: auto auto;
	gap: 0 1em;
}
.hero .central > div {
	white-space: nowrap;
}
.hero .central div:nth-of-type(1){
	grid-row: 1 / 4;
	grid-column: 1;
}
.hero .central div:nth-of-type(2){
	grid-row: 1;
	grid-column: 2;
	color: rgba(25,32,89,1.00);
	font-size: 2.7em;
	font-weight: 800;
	text-align: center;
} 

.hero .central div:nth-of-type(3){
	grid-row: 2;
	grid-column: 2;
	color: rgba(25,32,89,1.00);
	font-size: 1.8em;
	font-weight: 700;
	text-align: center;
} 

.hero .central div:nth-of-type(4){
	grid-row: 3;
	grid-column: 2;
	color: rgba(64,135,118,1.00);
	font-size: 4em;
	font-weight: 800;
	text-align: center;
	letter-spacing: -0.01em;
} 

.hero .central img {
	width: 15.625em;
	margin-top: -5.2em;
	margin-right: -2em;
}

.hero .overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	color: white;
	font-size: clamp(4.5em, 8vw, 6em);
	font-weight: 700;
	line-height: 1.2em;
	filter: drop-shadow(0 0 20px black) drop-shadow(0 0 30px black);
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: space-around;
} 

.septic-service .double-wide > div:first-of-type,
.mobile .double-wide > div:first-of-type {
	order: 2;
}

.cabin-service-banner{
	background-color: rgba(34,102,102,1.00);
	color: white;
	border: 2px solid white;
	padding: 0.25em 0.4em;
	line-height: 1em;
	font-size: 2.8em;
	position: absolute;
	bottom: 0.8em;
	left: 50%;
	transform: translateX(-50%);
	text-align: center;
	width: 100%;
	max-width: 22em;
}

.cps-map-container {
	background-color: grey;
}

.cps-map-container #BGM_contactMap {
    padding-bottom: 0;
    height: 100%;
}


/* -------------------- SociableKIT styles ----------------------- */


div.sk_yelp_biz_reviews_grid-content{
	font-family: Raleway, sans-serif!important;
	font-size: 1.2em!important;
   font-weight: 500!important;
   color: black!important;
}

div.sk_yelp_biz_reviews_grid-content a{
	color: rgba(50,56,117,1.00)!important;
	color: rgba(72,136,119,1.00)!important;
	font-weight: 800!important;
	line-height: 1.2em!important;
}
.sk-reviewer-name-action {
	line-height: 1.4em;
}
.sk_fb_stars {
	clear: left;
	color: rgba(0,74,130,1.00)!important;
}
.inner-page section .sk_branding {
	display: none!important;
	opacity: 0;
	height: 0;
}
body.inner-page .sk-ww-yelp-reviews .yelp-videos-profile-pic {
	display: none!important;
}
.sk-yelp-reviews-profile-info{
	width: 100%!important;
}
.sk-yelp-reviews-profile-info :nth-child(1) {
	display: none;
}
.sk-yelp-follow-btn-container {
	width: 100%!important;
	text-align: center!important;
}
.sk-ww-yelp-reviews-content-container{
	margin-bottom: 1em!important;
}
body .sk-ww-yelp-reviews {
	background-color: transparent!important;
}

/* -------------------- INNER PAGES ------------------------ */

.inner-page {
	
	section {
		display: block;
		padding: clamp(2em, 5vw, 6em);
	}
	.content {
		width: 1300px;
		max-width: 100%;
		margin: 0 auto;
	}
	
}

@media screen and (min-width: 800px) 
		 and (orientation: landscape) 
		 and (min-aspect-ratio: 1) {

	.inner-page .title-container {
		display: grid;
		grid-template-rows: 1fr;
		grid-template-columns: auto 1fr;
		background-color: rgba(34,102,102,1.00);
		filter: drop-shadow(0 0 50px rgba(0, 0, 0, 0.2));
		position: sticky;
		top: 0;
		z-index: 10;
	}
	.inner-page .title-container nav {
		filter: none;
		height: 100%;
	}
	.inner-page .title {
		background-image: none;
		height: auto;
		padding: 0;
	}
	.inner-page .title svg {
		height: 75px;
		width: auto;
		padding: 0.5em;
	}
	.inner-page .title #header-logo .st1 {
		fill: #FFFFFF;
	}
	.inner-page #header-logo {
		width: auto;
		filter: none;
		margin: 0 1em;
	}

}


/* ----------------- MEDIA QUERIES ------------------ */

@media screen and (max-width: 1200px){
/*	body {font-size: 80%;}*/
}
@media screen and (max-width: 1000px){
}

@media screen and (max-aspect-ratio: 1), 
screen and (orientation: portrait),
screen and (max-width: 800px){
	
	body {
		padding-top: 2.4em;
	}

	.title-container {
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		position: fixed;
		top: 0;
		left: 0;
		width: 250px;
		height: 100dvh;
		background-color: rgba(34,102,102,1.00);
		padding: 50px 1em 1em 1em;
		z-index: 10;
		filter: drop-shadow(0 0 50px rgba(0,0,0,0.4));
		transform: translateX(-101%);
		transition: all 0.5s;
	}
	nav {
		position: relative;
		display: flex;
		flex-direction: column;
		width: 100%;
		text-align: left;
		order: 1;
		padding: 0;
	}
	.title {
		width: 100%;
		background-image: none;
		order: 2;
		height: auto;
		padding: 1em 0;
	}
	
	.mobile-nav-banner {
		display: flex;
		align-items: center;
		justify-content: space-between;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 11;
		width: 100%;
		padding: 5px 10px;
		font-family: Impact;
		font-size: 2em;
		color: white;
		background-color: rgba(25,32,89,1.00);
		pointer-events: none;
		height: 1.6em;
	}
	 .mobile-nav-button{
		width: 25px;
		height: 18px;
		position: relative;
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		cursor: pointer;
		background-image: linear-gradient(0deg, transparent calc(50% - 1px), white calc(50% - 1px), white calc(50% + 1px), transparent calc(50% + 1px));
		pointer-events: all;
		transition: all 0.5s;
	}
	.mobile-nav-button:before {
		content: '';
		display: block;
		border: none;
		width: 100%;
		height: 2px;
		background-color: white;
		transition: all 0.5s;
	}
	.mobile-nav-button:after {
		content: '';
		display: block;
		border: none;
		width: 100%;
		height: 2px;
		background-color: white;
		transition: all 0.5s;
	}
	#navcontrol:checked + label + header{
		transform: translateX(0%)
	}
	#navcontrol:checked + label .mobile-nav-button {
		background-image: none;
		pointer-events: none;
	}
	#navcontrol:checked + label .mobile-nav-button:before {
		transform: translateY(8px) rotate(45deg);
		background-color: red;
	}
	#navcontrol:checked + label .mobile-nav-button:after {
		transform: translateY(-8px) rotate(-45deg);
		background-color: red;
	}
	
	footer{
		font-size: clamp(75%, 1vw, 100%);
	}
	.footer-contact {
		flex-direction: column;
	}
	.footer-back {
		display: none;
	}
	.footer-copyright{
		flex-direction: column;
		gap: 1em;
	}
	.footer-copyright > div {
		text-align: center!important;
	}
	
	section {
		min-height: 0;
	}
	section .double-wide {
		display: block;
	}
	.hero {
		display: flex;
		flex-direction: column;
		align-items: center;
	}
	.hero .double-wide > div:nth-of-type(1){
		aspect-ratio: auto;
	}
	.double-wide > div:nth-of-type(1){
		aspect-ratio: 1.5 / 1;
	}
	.double-wide .left img,
	.double-wide .right img {
		aspect-ratio: 2 / 1!important;
		object-position: center bottom;
		vertical-align: top;
	}
	.hero .contact {
		grid-template-columns: 1fr 1fr;
		grid-template-rows: auto auto;
		gap: 2em;
	}
	.hero .john {
		grid-row: 2;
		grid-column: 1;
	}
	.hero .contact > div:nth-of-type(2) {
		grid-row: 1;
		grid-column: 1 / 3;
	}
	.hero .carol {
		grid-row: 2;
		grid-column: 2
	}
	.emergency-box {
		transform: none!important;
	}
}

@media screen and (max-width: 500px){
	.hero {
		grid-template-rows: auto 1fr;
		display: flex;
		flex-direction: column;
		align-items: center;
	}
	.hero .central {
		grid-template-rows: auto auto auto auto;
		grid-template-columns: auto;
	}
	.hero .central > div {
		text-align: center;
		padding: 0.25em;
	}
	.hero .central > div:nth-of-type(1){
		grid-row: 1;
		grid-column: 1;
	}
	.hero .central > div:nth-of-type(2){
		grid-row: 2;
		grid-column: 1;
	}
	.hero .central > div:nth-of-type(3){
		grid-row: 3;
		grid-column: 1;
	}
	.hero .central > div:nth-of-type(4){
		grid-row: 4;
		grid-column: 1;
	}
	.hero .central img{
		margin-top: 2em;
	}
	.hero .contact {
		padding: 1em 0;
		gap: 2em 1em;
	}
}
