
header 
{
	height: 80vh;
	position: relative;
	background-color: var(--black);
}

header video
{
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
header #logo 
{
	position: relative;
	max-width: 400px;
	height: auto;
}

.headerIntro 
{
	max-width: 80%;
	min-width: 360px;
	min-height: 220px;

	position: absolute;
	bottom: -10%;
	left: 50%;
	transform: translateX(-50%);

	display: flex;
	align-items: center;
	border-bottom: 4px solid var(--green);
	
	background-color: var(--white);
	background-color: rgba(255, 255, 255, 0.97);
	outline: 2px solid rgba(125, 152, 107, 0.25);
}

.headerIntroSection 
{
	flex: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 20px;
	line-height: 1.2;
}

.headerIntroSection:nth-child(1) 
{
	border-right: 10px solid var(--tan);
}
.headerIntroSection:nth-child(2) 
{
	flex: 2; 
	flex-direction: column;
	text-align: center;
}
.headerIntroSection img 
{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.headerIntroSection h2 
{
	color: var(--black);
	font-family: headingFont;
	font-size: 4.6rem;
}
.headerIntroSection span 
{
	display: block;
	color: var(--green);
	font-family: headingFont;
	font-size: 4.6rem;
}


/* What we do section */
#whatWeDo
{
	position: relative; 
	display: block;
	width: 100%;
	height: auto;
	margin-top: 210px;
}
.whatWidth
{
	display: block;
	position: relative;
	width: 100%;
	height: auto;
	background-color: #fafafa;
	padding: 20px 0;
}
.whatInfo
{
	width: 90%;
	max-width: 1350px;
	min-width: 380px;
	margin: auto;
	display: flex;
	flex-direction: row;
	height: 500px;
	overflow: hidden;
}

.whatInfoText
{
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	color: var(--black);
	font-family: boldFont;
	padding: 0 80px 0 0;
}
.serviceLabel
{
	width: 80%;
	background-color: var(--tan);
	text-align: center;
	color: var(--black);
	font-size: 2rem;
	letter-spacing: 1px;
	
	font-family: headingFont;
	/* border-top-left-radius: 20px; */
	border-radius: 8px;
	padding: 4px 0;
	color: var(--black);
}
.whatInfoText h2
{
	font-family: headingFont;
	font-size: 6rem;
	letter-spacing: 2px;
	color: var(--black);
}
.whatButton 
{
  display: inline-block;
  background-color: var(--green);
  color: var(--white);
  font-family: headingFont;
  font-size: 2.2rem;
  letter-spacing: 1px;
  border: 2px solid var(--green);
  transition: 0.2s ease;
  height: 48px;
  line-height: 48px;
  text-align: center;
  width: auto;
  align-self: flex-start;
  padding: 0 24px;
}
.whatButton:hover 
{
  background-color: transparent;
  color: var(--green);
  letter-spacing: 2px;
}
.whatInfoBullets
{
	display: flex;
	flex-direction: row;
	gap: 20px;
	justify-content: space-between;
	height: 80px;
}
.bullet
{
	border-right: 1px solid var(--green);
	border-right: 1px solid rgba(125, 152, 107, 0.50);
	padding-right: 20px;
	width: 33.333%
}
.whatInfoImage
{
	display: flex;
	align-items: center;
	justify-content: center;
}
.whatInfoImage img
{
	max-width: auto;
	max-height: 98%;
	align-self: center;
	border-radius: 20px;
}
.whatInfo.right 
{
	text-align: right;
}
.whatInfo.right img
{
	border-right: none;
	/* border-left: 4px solid var(--green); */
}
.whatInfo.right .whatInfoText
{
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	color: var(--black);
	font-family: boldFont;
	padding: 0 0 0 80px;
}
.whatInfo.right h3
{
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	color: var(--black);
	font-family: boldFont;
	padding: 0 0 0 80px;
}
.whatInfo.right .serviceLabel
{
	align-self: flex-end;
}
.whatInfo.right .whatButton
{
	align-self: flex-end;
}

/*--- ourLocation ---*/
#ourLocation
{
	position: relative; 
	display: block;
	width: 100%;
	height: auto;
	font-family: boldFont;
}
#ourLocation h2
{
	font-size: 6rem;
	color: var(--black);
	color: var(--green);
	font-family: headingFont;
	text-align: center;
}
#map 
{
	display: block;
	width: 100%; 
	max-width: 1200px;
	aspect-ratio: 16/9;
	background-color: var(--black);
	margin: 30px auto 0;
	
	border-radius: 12px;
	border: 2px solid var(--black);
}
.leaflet-tile
{
	filter: grayscale(80%) contrast(1.2);
}
.leaflet-popup-content
{
	font-size: 1.6rem;
	font-family: boldFont;
	letter-spacing: 1px;
}
#mapAttribution
{
	font-size: 1.4rem;
	width: 100%;
	text-align: right;
	max-width: 1200px;
	margin: auto;
	cursor: pointer;
	user-select: none;
}

.countyList 
{
/* 	display: flex;
	flex-wrap: wrap;
	justify-content: space-between; */
	max-width: 1200px;
	margin: 40px auto;
	display: grid;
	gap: 20px;
	grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}
.counties 
{
	position: relative;
	display: flex;
	align-items: center;
	background: #fafafa;
	font-family: headingFont;
	letter-spacing: 1px;
	font-size: 2rem;
	
	height: 63px;
	border-bottom: 2px solid var(--green);
	cursor: pointer;
	border-top-right-radius: 7px;
	border-top-left-radius: 7px;
	transition: letter-spacing .6s ease;
}
.counties::after
{
	content: '';
	position: absolute; 
	bottom: 0px;
	left: 0px;
	width: 100%;
	height: 0px;
	background-color: var(--tan);
	transition: height .6s ease;
}
.counties.active
{
	letter-spacing: 2px;
}
.counties:hover::after,
.counties.active::after
{
	height: 6px;
}
.pinIcon
{
	width: 32px;
	height: 32px;
	fill: none;
	stroke: var(--green);
	stroke-width: 2px;
	stroke-linecap: round;
	stroke-linejoin: round;
	margin-right: 12px;
}


/*--- Why Choose Us ---*/
#whyChooseUs
{
	position: relative;
	display: block;
	width: 100%;
	height: 500px;
	height: auto;
	
	background-color: var(--black);
	color: var(--white);
	border-bottom: 1px solid var(--green);
}
.whyWrap
{
	max-width: 1350px;
	margin: auto;
	padding: 90px 0;
}
.whyInfoWrap
{
	display: flex;
	justify-content: space-between;
	margin-bottom: 60px;
}
.whyHeadlines
{
	color: var(--tan);
	font-family: headingFont;
	font-size: 6rem;
	max-width: 49%;
}
.whyHeadlines .serviceLabel
{
	padding: 0 20px;
	width: auto;
	margin-bottom: 30px;
}
.whyHeadlines h2
{
	color: var(--tan);
	font-family: headingFont;
	font-size: 6rem;
}
.whyInfo
{
	max-width: 49%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-content: space-between;
}
.whyInfo p
{
	margin-bottom: 30px;
}
.whyInfo .whatButton
{
	margin: auto;
}
.exampleWrap
{
	width: 100%;
	position: relative;
	width: 100%;
	display: flex;
	justify-content: space-between;
	gap: 32px;
}
.example
{
	background-color: #fafafa;
	padding: 30px;
	border-radius: 7px;
	color: var(--black);
	font-family: boldFont;
}
.example h4
{
	color: var(--black);
	font-family: headingFont;
	letter-spacing: 1px;
	font-size: 2.0rem;
	border-bottom: 2px solid var(--green);
	margin-bottom: 12px;
}




