html {
	overflow-x: hidden;
}

.site-title > a:nth-child(1) {
	height: 125px;
}

#pgh_header_contact, #genesis-nav-primary {
	margin-top: 36px;
}

#pgh_header_contact {
	display: flex;
	flex-direction: row-reverse;
	align-items: baseline;
	line-height: 1.35;
}

#pgh_header_contact a {
	text-decoration: none;
	font-size: 16px;
	font-weight: 700;
	padding: 0 12px;
}

#text-10 .textwidget {
	display: flex;
	flex-direction: row;
}

.site-header > div:nth-child(1) {
	padding: 40px 50px;
}

img, figure {
	border-radius: 10px;
}

input#SendEmail, input#getDirections, div#map{
  margin: 12px 0;
}

#footer-cta .wrap {
	display: flex;
	flex-wrap: nowrap;
}

.pgsd_payments {
	width: 100%;
	height: 32px;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: center;
}

@media screen and (max-width: 1220px) {
#pgh_header_contact, #genesis-nav-primary {
	margin-top: 12px;
}
}

@media screen and (max-width: 800px)  {
  
  .site-header > div:nth-child(1) {
	padding: 12px 24px 24px 24px;
}
	
	.header-image .title-area {
		margin: 0 auto;
	}
	
	.front-page-1 .wrap {
		padding-top: 40px;
	}
	
	#pgh_header_contact {
		margin-bottom: 12px;
		line-height: 1;
	}
	
	#text-10 .textwidget {
	flex-direction: column-reverse;
}
	div.hero-section-column:nth-child(1) {
		padding-top: 24px;
		text-align: center;
	}
	
	.alignleft, .entry-image {
		width: 100%;
	}
	#footer-cta .wrap {
		flex-wrap: wrap;
	}
	
	.site-title, .title-area {
		width: 50vw;
	}
}

/*faqs*/
.faq-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 15px;
}
.faq-container h2 {
  text-align: center;
}
.faq-container h2::after {
  border-bottom: 2px solid #e22c2f;
    border-bottom-color: rgb(226, 44, 47);
  content: "";
  display: block;
  height: 2px;
  margin: 24px auto 0;
  width: 48px;
}
.faq-container p {
	margin: 0;
}
.faq-item {
  margin-bottom: 10px;
	border-radius: 5px;
	overflow: hidden;
}
.faq-question {
  display: block;
  padding: 12px 24px 12px 12px;
  background: #f4f4f4;
  cursor: pointer;
  font-weight: bold;
  position: relative;
}
.faq-question:hover {
  background: #e0e0e0;
}
 .faq-question::after {
  content: '\002B';
  position: absolute;
  right: 12px;
  font-size: 18px;
}
.faq-question.active::after {
	content: '\002D'!important;
}
.faq-answer {
  display: none;
  padding: 12px;
  background: #fff;
  border: 1px solid #f4f4f4!important;
	border-radius: 0 0 6px 6px;
}
.faq-answer.active {
  display: block;
}
.faq-toggle {
  display: none;
}
.faq-toggle:checked + .faq-question + .faq-answer,
.faq-toggle:checked ~ .faq-answer {
  display: block;
}
.faq-question:focus {
  outline: 2px solid #007bff;
}
/* Responsive adjustments */
@media (max-width: 600px) {
  .faq-container {
    padding: 10px;
  }
  .faq-question, .faq-answer {
    padding: 10px;
  }
}