/* text alignment */
#text-7 p, #text-11 p {
	text-align: left;
}

/* removes blue overlay on header */
.hero-section::before {
	background: rgba(0,0,0,.6)
}
.hero-section .btn:last-of-type, #text-3 .btn {
	background-color: #2E74C1;
}

/* mobile nav &amp; title area */
@media screen and (max-width: 895px) {
	.wp-custom-logo .title-area {
		max-width: 180px;
	}
	.title-area {
		padding: 0!important;
	}
	.nav-primary .menu {
		font-family: 'Exo', sans-serif;
		font-weight: 700;
		font-style: italic;
	}
	.nav-primary .sub-menu li {
		font-family: 'Inter', 'Helvetica', sans-serif;
		font-weight: 400;
		font-style: normal;
	}
	.nav-primary .button {
		background-color: #1F85DE;
		text-align: center;
		line-height: 1.4;
	}
	#text-4 {
		margin: 48px 0;
	}
}

/* secondary button style */
.btnlite, .btnlite:hover {
	background-color: #fafafa;
	background-color: rgba(255,255,255,.9);
	color: #393E4B;
}

/* lightens shadow on slider */
.nextend-shadow-image {
	opacity: .5;
}

/* bullet hooks */
@media screen and (min-width:768px) {
	#text-6 {
		display: flex;
		align-items: center;
		justify-content: center;
	}
}
@media screen and (max-width:768px) {
	#text-6 .textwidget {
		text-align: center;
	}
}

/* front page featured pages */
.front-page-4 .wrap {
	justify-content: space-between;
	align-items: stretch;
}
.front-page-4 .widget{
	padding: 6px;
}
.front-page-4 .entry {
	padding: 1.2em;
}
.front-page-4 .widget-wrap, .front-page-4 .entry {
	height: 100%;
}
.front-page-4 .entry-title {
	margin-bottom: 0;
}
@media screen and (min-width:768px) {
	.front-page-4 .widget {
		width: 33%;
	}
}

/* pre-footer contact form */
#text-12 .emailFormLine {
	text-align: left;
}
#text-12 .emailFormLine {
	margin-bottom:6px;
}
/*hides form on contact page*/
.page-id-76 .before-footer {
  display: none;
}

/* paypal logo in footer */
.pgsd_payment.paypal {
	background-image: url(/wp-content/uploads/2021/10/paypal.png);
	background-size: contain;
	background-position: center!important; 
}

/* call button in footer */
#text-15 .button {
	text-align:center;
	line-height:1.2;
}

/* corrects font in footer */
div.wrap:nth-child(3) {
	font-family: 'Inter', sans-serif;
}

/*flexboxes for images*/
.imgFlex2, .imgFlex3, .imgFlex4 {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  margin-bottom: 24px;
}
.imgFlex2 img {
  width: 49%;
}
.imgFlex3 img {
  width: 32%;
}
.imgFlex4 img {
  width: 24%;
}
@media screen and (max-width:540px) {
  .imgFlex2, .imgFlex3, .imgFlex4 {
    flex-wrap: wrap;
  }
  .imgFlex2 img, .imgFlex3 img, .imgFlex4 img {
    margin: 6px;
  }
  .imgFlex2 img {
    width: 100%;
  }
  .imgFlex3 img, .imgFlex4 img {
    width: 47%;
  }
  .imgFlex3 img:last-of-type {
    width: 100%;
  }
}

/* buttons on review page */
.post-74 .entry-content, .reviewsButtons, .reviewsButtons .button {
	display: flex;
}
.post-74 .entry-content {
	flex-direction: column-reverse;
}
.reviewsButtons {
	margin-bottom: 48px;
}
.reviewsButtons img {
	max-width: 36px;
	margin-right: 12px;
}
.reviewsButtons .button {
	margin: 12px 0;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: center;
	line-height: 1.2;
	max-width: 400px;
}