/*header styling*/
header a, .site-header {
  border: none;
}
.site-header { overflow-x: clip; }

/* home page layout */
.home .site-inner {
	padding-top: 0;
}
.elementor-widget:not(:last-child) {
	margin-bottom: 0;
}

/* contact forms */
#emailFormInner .emailFormLine, #SendEmail,#map, #directionsFrom {
	margin-bottom:12px;
}
#SendEmail, #getDirections {
	width: 100%;
}

/* footer */
.site-footer .wrap {
	color: #FAF7F4;
	line-height: 1.6;
}
.site-footer .wrap a {
	font-weight:600;
}
.before-footer-cta a {
  border-bottom: none;
}

/* footer payments */
.pgsd_payments {
	min-height: 32px;
	display: flex;
	flex-direction:row;
	flex-wrap: wrap;
	justify-content: center;
}

/* puts footer widgets in row on desktop */
@media screen and (min-width: 800px) {
	.before-footer-cta .wrap {
		display: flex;
		flex-direction: row;
		flex-wrap: nowrap;
		justify-content:space-between;
	}
	.before-footer-cta .widget {
		margin: 12px;
	}
}

/* images on pages */
#genesis-content img {
	border-radius: 3px;
	box-shadow:0 0 6px rgba(0,0,0,.2);
}

/*hides copyright*/
.copyright { display: none; }

/*hides all featured images on pages*/
#genesis-content .entry-image {
  display:none;
}

/*text animations on homepage*/
@keyframes pulse {
  0% {
/*     font-size: 24px; */
		letter-spacing: 0px;
  }
  50% {
/*     font-size: 26px; */
		letter-spacing: .5px;
  }
  100% {
/*     font-size: 24px; */
		letter-spacing: 0px;
  }
}
.pulse {
  animation-name: pulse;
    animation-duration: .75s;
    animation-delay: .5s;
}