@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

html {
    font-size: 16px;
    box-sizing: border-box;
	scroll-behavior: smooth;
}
body {
	font-family: Roboto, sans-serif;
	margin: 0;
	padding: 0;
	overflow-x: hidden;
}

/* Colors */
a, body, a.site-branding, .button, .hero-button, ul#menu-main-menu .menu-item:last-child a, .footer-cta {
	color:white;
}
a.button, button, .hero-button, ul#menu-main-menu .menu-item:last-child a, .footer-cta, .ninja-forms-field[type="submit"] {
	background-color: #dc7f03;
	color: #fcfaf0 !important;
	transition: all .2s ease-in;
}
.hero-section::before {
	background: #226d78;
}

.section-bg-1 {
	background: rgba(34, 109, 120, 1);
}
.section-bg-2 {
	background: #ffd885;
	color: #49564f;
}
.section-bg-2 a {
	color: #49564f;
}
.section-bg-3 {
	background:#425a5a;
}
.section-bg-cream {
	background-color: #fff3df;
	color: #273326;
}
.section-bg-cream a {
	color: #273326;
}
/* Typography */
h1, h2, h3, h4, h5, h6 {
	font-family: 'Montserrat', sans-serif;
	font-weight: bold;
}
h1 {
    font-size: 2.5rem;
}
h2 {
    font-size: 2.5rem;
}
h2:first-child {
	margin-top: 0;
}
h3 {
	letter-spacing: .05em;
}
h4 {
	font-size: 1.4rem;
}
p {
	line-height: 1.6;
}
hr {
	border: none;
	margin-top: 3em;
	margin-bottom: 3em;
    width: 100%;
    height: 1px;
    border-width: 0px;
    background-color: rgba(0, 0, 0, 0.4);
    background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0)), color-stop(rgba(0, 0, 0, 0.2)), to(rgba(0, 0, 0, 0)));
    background: linear-gradient(90deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0));
}
p:empty {
	display: none;
}
.larger-p, .hero-section p{
	font-size: 1.2em;
}
.larger-p {
	text-align: center;
	max-width: 540px;
	margin: auto;
}
.button, .hero-button, ul#menu-main-menu .menu-item:last-child a, .footer-cta, button, .ninja-forms-field[type="submit"] {
	border-radius: 20px;
	padding: .8rem 1.4em;
	text-decoration: none;
	font-weight: 500;
	letter-spacing: .05rem;
	text-transform: uppercase;
	white-space: nowrap;
	border: 1px solid rgba(0,0,0,.1);
}
a.button:hover, a.button:focus, .hero-button:hover, .hero-button:focus, ul#menu-main-menu .menu-item:last-child a:hover, ul#menu-main-menu .menu-item:last-child a:focus, .footer-cta:hover, .footer-cta:focus, .ninja-forms-field[type="submit"]:hover, .ninja-forms-field[type="submit"]:focus {
	transform: translate(0,-1px) !important;
	cursor: pointer;
}
.center, .cta-wrap {
	text-align: center;
	margin-top: 40px;
}
@media (max-width: 850px) {
	.center-mobile {
		text-align: center;
	}
	h1 {
		font-size: 2rem !important;
	}
	h2 {
    	font-size: 1.7rem;
	}
}

/* Header */
header {
	position: fixed;
	z-index: 1000;
	display: flex;
	justify-content: space-between;
	width: 100%;
	align-items: center;
	padding-top: 15px;
	padding-bottom: 15px;
	background: rgba(34, 109, 120, 0); /* or your preferred color */
	transition: all .4s ease-in;
}
.logo-area {
	display: flex;
	transition: opacity .2s ease-in;
}
.logo-area:hover,
.logo-area:focus{
	opacity: .8;
}
a.site-branding {
	display: flex;
	align-items: center;
	text-decoration: none;
	font-family: Montserrat;
	font-weight: 500;
	font-size: 1.4em;
	text-transform: uppercase;
}
.site-logo img {
	width: 2.8rem;
	margin: 10px;
}
.site-header.scrolled {
	background: rgba(34, 109, 120, 1);
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Header Menu */
nav.main-nav {
	width: 100%;
	max-width: 1200px;
	margin: auto;
}
ul#menu-main-menu {
	list-style-type: none;
	display: flex;
	justify-content: space-between;
	padding: 0;
}
ul#menu-main-menu li {
	margin: 0 20px;
	transition: opacity .2s ease-in;
}
ul#menu-main-menu li:not(:last-child):hover,
ul#menu-main-menu li:not(:last-child):focus{
	opacity: .8;
}
ul#menu-main-menu a {
	text-decoration: none;
	font-weight: 600;
	letter-spacing: .04rem;
	text-transform: uppercase;
	font-family: 'Montserrat';
	font-weight: 400;
}


/* Menu Logo Center Adjustments*/
@media (min-width: 851px) {
	nav.main-nav ul#menu-main-menu::before {
		content: '';
		flex: 0 0 230px;
		order: 2;
	}
	.logo-area {
		display: flex;
		position: absolute;
		left: 50%;
		transform: translate(-58%, 0);
	}
	ul#menu-main-menu li {
		min-width: 140px;
		text-align: center;
	}
	ul#menu-main-menu > li:nth-child(n+3) {
		order: 3;
	}
}
/* Hamburger Menu */
.menu-toggle {
	display: none;
	flex-direction: column;
	justify-content: space-between;
	background: none;
	border: none;
	cursor: pointer;
	margin-right: 10px;
	margin-left: 10px;
}
.menu-toggle .bar {
	min-height: 2px;
	background-color: white;
	border-radius: 2px;
	width: 20px;
	margin-bottom: 6px;
}

/* Mobile Menu Styles */
@media (max-width: 850px) {
	header {
		padding: 0;
		justify-content: space-between;
	}
	.site-logo img {
		width: 2rem;
		margin: 5px 5px 0 0;
	}
	.logo-area {
		justify-content: center;
		margin-left: 10px;
	}
	a.site-branding {
		font-size: .8rem;
		display: flex;
	}
	.menu-toggle {
		display: flex;
		color: white;
		z-index: 1000;
	}
	nav.main-nav {
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		background: #fcfaf0;
		overflow: hidden;
		max-height: 0;
		transition: max-height 0.3s ease-out;
		text-align: center;
		border-bottom: 1px solid rgba(0,0,0,.1)
	}
	ul#menu-main-menu .menu-item:last-child {
		margin-top: 25px;
	}
	nav.main-nav.open {
		max-height: 500px; /* Adjust based on content */
		transition: max-height 0.5s ease-in;
	}

	ul#menu-main-menu {
		flex-direction: column;
		padding: 10px 20px;
	}

	ul#menu-main-menu li {
		margin: 10px 0;
	}
	ul#menu-main-menu li a {
		color: #226d78 !important;
		font-weight: 500;
		width: 100%;
	}
}

/* Footer */
footer{
    background-color: #226d78;
    color: white;
    padding: 4rem;
    text-align: center;
    line-height: 1.6em;
}
ul#menu-footer-menu {
	list-style-type: none;
	text-align: left;
	padding-left: 0;
	margin-top: 0;
}
ul#menu-footer-menu a {
	color: white;
	text-decoration: none;
}
ul#menu-footer-menu a:hover,
ul#menu-footer-menu a:focus {
	text-decoration: underline;
}

.footer-container {
	display: flex;
	flex-wrap: wrap;
	max-width: 1200px;
	margin: 0 auto;
	justify-content: center;
}
.footer-column {
	text-align: left;
	max-width: 350px;
}
.footer-column a:not(.footer-cta){
	color: white; 
	text-decoration: none;
}
.footer-column a:not(.footer-cta):hover,
.footer-column a:not(.footer-cta):focus,
ul#menu-main-menu-1 a:hover,
ul#menu-main-menu-1 a:focus {
	text-decoration: underline;
}
.footer-column-1 {
	flex: 0 0 150px; /* Fixed width for the narrow column */
}
.footer-column-2 {
	margin-right: 50px;
}
.footer-column-2 p:first-child {
	margin: 0;
	font-size: 1rem;
}
.footer-column-2 p:nth-child(2) {
	margin-top: 0;
	margin-bottom: 1.7rem;
}
.footer-column-3 {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-content: flex-start;
	width: 350px;
	max-width: 100%;
}
footer .privacy-disclaimer {
	max-width: 725px;
	margin: 2rem auto;
	display: none;
	text-align: left;;
}
body.home footer .privacy-disclaimer,
body.page-id-35 footer .privacy-disclaimer {
	display: block;
}

@media (max-width: 850px) {
	footer{
		padding: 1.5rem;
	}
	.footer-container {
		flex-direction: column;
	}
	.footer-cta {
		margin-bottom: 20px;
		margin-top: 20px;
	}
}


/* Footer Social Icons */
.footer-socials {
	display: flex;
	gap: 1rem;
	margin-top: 1rem;
}

.footer-socials img {
	width: 24px;
	height: 24px;
	object-fit: contain;
	filter: brightness(0) invert(1); /* optional: make them white */
}

/* Page General */
section {
	padding: 4rem;
	position: relative;
	background-size: cover;
	background-position: center;
}
.site-wrap > section:not(.hero-section):first-child {
	padding-top: 100px;
}
section.color1-bg {
	background-color:rgba(16,93,104,.9);
	color: white;
}
section.color2-bg {
	background-color:rgba(16,93,104,.1);
}
.four-up, .three-up, .two-up {
	display: flex;
	width: 100%;
	justify-content: space-between;
	max-width: 1200px;
	flex-wrap: wrap;
	margin: auto;
}
.three-up {
	 max-width: 850px;
	 margin: auto;
 }
.two-up {
	margin:auto;
}
.three-up > div,
.two-up > div,
.four-up > div {
	box-sizing: border-box;
	padding: 1%;
}
.four-up > div {
	width: 23%;
}
.three-up > div {
	max-width: 33%;
}
.two-up > div {
	width: 47%;
}
.background-image {
	background-size: cover;
	background-position: center;
}
.img-wcaption {
	transition: transform .2s ease-in;
	position: relative;
}
.img-wcaption:hover,
.img-wcaption:focus {
	transform: translate(0,-2px);
}
.img-wcaption h3 {
	margin-top: 0;
}
.img-wcaption > div, .three-up-image, .two-up-image {
	padding-top: 100%;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}
.three-up-image, .two-up-image {
	padding-top: 40%;
	background-position: center;
}
.four-up {
	max-width: 800px;
	margin-top: 40px;
}
.four-up .img-wcaption {
	padding: 0;
	max-width: 200px;
}
.img-wcaption > div {
	background-size: cover;
	height: 120px;
	overflow: hidden;
	border-radius: 20px;
	z-index: 2;
	position:relative;
}
.four-up .img-wcaption:after{
	content:'';
	display: block;
	position: absolute;
	left:0;
	top:0;
	width:100%;
	height:100%;
	border-radius: 20px;
	background: linear-gradient(rgba(50,50,50,.0), rgba(50,50,50,.4));
	z-index: 3;
}
.four-up .img-wcaption:before{
	content:'';
	display: block;
	position: absolute;
	left:0;
	bottom:0;
	width:100%;
	height:100%;
	border-radius: 20px;
	background: white;
	z-index: 1;
	max-height: 40px;
	box-shadow: 0px 10px 15px rgba(0,0,0,.15);
	transition: box-shadow .2s ease-in;
}
.four-up .img-wcaption:hover:before,
.four-up .img-wcaption:focus:before{
	box-shadow: 0px 10px 19px rgba(0,0,0,.12);
}
.four-up .img-wcaption h3 {
	position: absolute;
	bottom: 0;
	padding: 10px;
	font-weight: 400;
	font-size: 1.5em;
	letter-spacing: 0;
	margin: 0;
	color: rgb(66 90 90);
	color: white;
	z-index: 4;
}
.four-up .img-wcaption#individual-therapy-img:after{
	background: linear-gradient(rgba(154,189,195,.3), rgba(154,189,195,.7))
}
.four-up .img-wcaption#couples-therapy-img:after{
	background: linear-gradient(rgba(102,142,154,.1), rgba(102,142,154.4))
}
.four-up .img-wcaption#family-therapy-img:after{
	background: linear-gradient(rgba(236,199,121,.2), rgba(236,199,121,.7))
}
.four-up .img-wcaption#group-therapy-img:after{
	background: linear-gradient(rgba(66,90,90,.1), rgba(66,90,90,1))
}

.frame-cover-link {
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 5;
}
.togglable-wrapper {
	cursor: pointer;
	margin-bottom: 20px;
}
.togglable-wrapper .three-up-image, .togglable-wrapper .two-up-image, .togglable-wrapper h3 {
	transition: all .2s ease-in;
}
.togglable-wrapper:hover .three-up-image, .togglable-wrapper:hover .two-up-image, .togglable-wrapper:hover h3 {
	transform:translate(0,-1px)
}
.togglable-wrapper h3 {
	margin: 10px 0;

}
.togglable-section {
	max-height: 0;
	overflow: hidden;
	transition: max-height .8s ease-in;
	transition-delay: .3s;
}
.background-cover {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	min-height: 200px;
}
.togglable-wrapper.open .togglable-section {
	max-height: 600px;
	transition: max-height .8s ease-in;
}
@media (max-width: 850px) {
	.hero-section, section {
		padding: 1.5rem;
		position: relative;
	}
	.two-up > div{
		padding: 0;
	}
	.four-up > div {
		width: 47%;
		max-width: 300px;
		margin-bottom: 20px;
	}
	.three-up > div {
		width: 48%;
	}
	.two-up > div {
		width: 100%;
	}
}

/* Homepage */
.hero-section {
	position: relative;
	padding: 0;
	display: flex;
	width: 100%;
	padding-bottom: 100px;
	background-position: top;
	background-size: cover;
	min-height: 100vh;
	padding: 0;
}
.hero-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: .4;
}
.hero-section .container {
	display: flex;
	justify-content: center;
	align-content: center;
	flex-wrap: wrap;
	width: 100%;
	text-align: center;
	z-index: 1;
}
.hero-section h1 {
	font-size: 3.6em;
	text-align:center;
	max-width: 800px;
}
.hero-grid {
	display: flex;
	gap: 2rem;
	align-items: center;
}
.hero-button {
	display: inline-block;
	margin-top: 1rem;
}
.hero-button:last-child {
	margin-left: 20px;
}
.why-choose-section div.two-up > div:nth-child(1) {
	margin-bottom: 20px;
}
.learn-more {
	text-decoration: underline;
	margin-top: 0;
}
.downlink-wrap {
	position: absolute;
	bottom: 0;
	left:  0;
	width: 100%;
	z-index: 1;
	text-align: center;
	margin-bottom: 10px;
}
.downlink-wrap a {
	text-decoration: none;
	font-weight: 600;
	cursor: pointer;
	transition: .2s ease-in;
}
.downlink-wrap a:hover {
	opacity: .85;
}
.downlink-wrap a:after {
	content:'\25bc';
	display: block;
	opacity: .3;
	font-size: 1.2em;
	transform: scaleY(50%);
}
#deeper-care-section {
	background-image: url('/wp-content/uploads/2025/10/James-office.webp');
	background-size: cover;
	background-position: center;
	min-height: 30vw;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
@media (max-width: 850px) {
	.hero-section .container {
		padding-left:1rem;
		padding-right: 1rem;
	}
	.hero-button:last-child {
		margin-left: 0;
	}
}

/* Services Page */
.specialties-columns {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-evenly;
	align-content: flex-start;
	align-items: flex-start;
}
.specialties-columns > div {
	max-width: 45%;
	margin: unset;
}
.specialties-columns h2 {
	width: 100%;
	margin-top: 20px;
}
.specialty-teams h4 {
	margin-bottom: 0;
}
.specialty-teams h4:before {
	content:'\25bc';
	margin-right: 10px;
	font-size: .9em;
	opacity: .5;
	transform: scaleY(0.7);
	display: block;
	float: left;
}
.specialty-teams ul {
	margin-left: 5px;
}
.specialty-teams li {
	margin-bottom: 10px;
}
@media (max-width: 850px) {
	.specialties-columns > div {
		max-width: 100%;
	}
	.specialties-columns h2 {
		text-align: center;
	}
	#testing-services-section .two-up > div {
		width: 100%;
	}
}


/* Contact form styles */
.ninjaform-wrapper > div {
	background: white;
	padding: 40px;
	border-radius: 20px;
	padding: 30px !important;
	color: rgba(0,0,0,.8)
}
.nf-before-form-content {
	display: none;
}
.ninja-forms-field {
	min-height: 2rem;
	border-radius: 5px;
	border-width: 1.5px !important;
	border-color: rgba(0,0,0,.2)
}
.ninja-forms-req-symbol {
	display: none;
}
.ninja-forms-field {
	font-family: Roboto;
}
.nf-field-container.submit-container {
	margin-bottom: 0;
}
@media (min-width: 851px) {
	#nf-field-5-container,
	#nf-field-6-container {
		width: 48%;
	}
	#nf-field-5-container {
		float:left;
	}
	#nf-field-6-container {
		float: right;
		clear: none;
	}
}

/* Contact Page Styling */
.contact-main {
	display: flex;
	justify-content: center;
	padding-top: 90px;
}
.contact-left {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.contact-header {
	font-size: 2rem;
	margin-bottom: 10px;
}
.contact-text {
	font-size: 1.1rem;
	line-height: 1.6;
}


/* Search form styles */
.geodir-loop-actions-container {
	display: none;
}

/* Search Form Therapist Cards */
.geodir-loop-container.bsui > div {
	display: flex;
	justify-content: space-between !important;
	margin: auto;
	margin-top: 30px;
}
.geodir-loop-container.bsui .card-body {
	padding: 20px !important;
	display: flex;
	flex-direction: column;
	/* justify-content: space-between; */
}
.geodir-loop-container.bsui .geodir-post {
	height: auto !important;
	max-width: 32%;
	line-height: 1.4em;
	cursor: pointer;
	padding: 0;
	margin-bottom: 40px !important;
	min-width: 250px;
	max-width: 350px;
}
@media (max-width: 850px) {
	.geodir-loop-container.bsui .geodir-post {
		min-width: 100%;
		max-width: 100%;
	}
}
.geodir-loop-container.bsui .card-body .card-title-description-wrap > .geodir-post-content-container {
	position: relative;
	height: 200px;
	overflow: hidden;
	margin-bottom: 20px;
}
.geodir-loop-container.bsui .card-body .card-title-description-wrap >  .geodir-post-content-container:after {
	position: absolute;
	content: '';
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background: linear-gradient(rgba(255,255,255,0) 20%,rgba(255,255,255,1));
	z-index: 1;
	overflow: hidden;
}
.geodir-loop-container.bsui .geodir-post .card {
	box-shadow: 0 10px 20px rgba(0,0,0,0);
	transition: box-shadow .2s ease-in;
}
.geodir-loop-container.bsui .geodir-post .card:hover,
.geodir-loop-container.bsui .geodir-post .card:focus {
	box-shadow: 0 10px 20px rgba(0,0,0,.2);
}
.gd-read-more {
	display: none;
}
.geodir-loop-container.bsui .geodir-post .card .cta-wrap {
	margin: 30px 0;
}
.geodir-entry-title, .geodir-entry-title a {
	color: #273326 !important;
	font-size: 1.2em;
	font-weight: 600;
	font-family: Montserrat;
	margin-bottom: 5px !important;
	pointer-events: none;
}
.geodir-loop-container.bsui .geodir-link-image {
	pointer-events: none;
}
.geodir-loop-container.bsui .geodir-post .card > .card-img-top img,
.geodir-loop-container.bsui .geodir-post .card > .card-img-top .embed-responsive{
	height: 300px !important;
	overflow: visible;
}



/* Search popup */
.therapist-popup {
	color: #273326 !important;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 90%;
	max-width: 900px;
	background: #f9f6f1;
	box-shadow: 0 8px 20px rgba(0,0,0,0.3);
	z-index: 9999;
	display: none;
	max-height: 90vh;
	border-radius: 20px;
	overflow: hidden;
}
.therapist-popup.active {
	display: block;
}
.therapist-popup-content {
	padding: 1rem;
	overflow: scroll;
	max-height: 90vh;
}
.geodir-loop-container.bsui .therapist-popup div.paragraph {
	margin-bottom: 1.25em;
}
.therapist-popup .popup-close {
	position: absolute;
	top: 10px;
	right: 10px;
	width: 30px;
	height: 30px;
	cursor: pointer;
	border-radius: 50%;
	background: rgb(200,200,200);
	text-align: center;
	font-size: 22px;
	font-family: Montserrat;
	font-weight: 800;
	color: rgba(0,0,0,.6);
	border: 1px solid rgba(0,0,0,.2);
	transition: background .2s ease-in;
	z-index: 100;
}
.therapist-popup .popup-close:hover {
	text-decoration: none;
	color: black;
	background: rgb(200,50,50);
}
.therapist-popup.geodir-entry-title{
		margin-bottom: 0 !important;
}
.therapist-popup .geodir-images .embed-responsive {
	border-radius: 50%;
	width: 200px;
	height: 200px;
	margin: auto;
	border: solid 12px #9abdc3;
	margin-bottom: 10px;
}

/* Search Responsive tweaks */
@media (max-width: 850px) {
	.therapist-popup {
		width: 95%;
		/* bottom:  0; */
	}
	.therapist-popup .popup-close {
		position: fixed;
		z-index: 100;
	}
	.therapist-popup .therapist-left-column {
	order: 1;
	}
	.therapist-popup .therapist-right-column {
		margin-top: 10px;
		}
	.therapist-popup .therapist-left-column .geodir-post-slider {
		display: block;
	}
	.therapist-popup .therapist-right-column .geodir-post-slider {
		display: none;
	}
}
@media (min-width: 851px) {
	.not-found form,
	.search-results form {
		flex-wrap: nowrap;
	}
	.therapist-popup .therapist-left-column {
		float: left;
		width: 65%;
	}
	.therapist-popup .therapist-left-column,
	.therapist-popup .therapist-right-column {
		display: inline-block;
		vertical-align: top;
		margin: 1%;
	}
	.therapist-popup .therapist-right-column {
		text-align: center;
		width: 30%;
		float: right;
	}
	.therapist-popup .therapist-left-column .geodir-post-slider {
		display: none;
	}
}

/* Clinicians Page */
.clinicians-intro {
	padding-top: 70px;
	padding-bottom: 0;
}
.clinicians-intro .two-up > div {
	padding: 0;
}
.clinician-section {
	display: flex;
	justify-content: center;
}
.clinician-section h4 {
	margin-top: 0;
}
.clinician-section:nth-child(odd),
.page-id-21 section:first-child {
	background-color:rgba(16,93,104,.1);
}
.clinician-headshot {
	width: 200px;
	height: 200px;
	background-size: cover;
	border-radius: 20px;
	margin-right: 40px;
} 
.clinician-headshot {display:none;}
	/* Hide headshots temporarily */
.clinician-copy {
	flex: 1;
	max-width: 500px;
}

/* Services Page */
.services-intro {
	padding-bottom: 20px;
}
.services-grid > .container {
	max-width: 750px;
}
.service-item {
	display: flex;
	flex-direction: column;
	margin: 20px;
	width: 200px;
	height: 200px;
	border-radius: 20px;
	border: 1px solid #ecc779; 
	padding: 2rem 1.5rem;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
	text-align: center;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
	margin-bottom: 30px;
}
.service-item:hover {
	transform: translateY(-1px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.service-item img {
	width: 80px;
	height: 80px;
	margin: auto;
	object-fit: contain;
}
.service-item h3 {
	font-size: 1.2rem;
	font-weight: 400;
	color:#ecc779;
	max-width: 150px;
	margin: auto;
	text-align: center;
}
.services-pricing .container {
	max-width: 800px;
	margin: auto;
}
.services-pricing h2 {
	font-size: 2rem;
	margin-bottom: 1rem;
}
.services-pricing .mentaya-embed {
	margin: 2.5rem 0;
}
.MuiPaper-root {
	padding: 0 !important;
}
.fine-print {
	font-size: 0.8rem;
	position: relative;
}
.fine-print h4 {
	margin-bottom: 0;
}
.fine-print h4:first-child {
	margin-top: 0;
}
.services-outro {
	background-size: cover;
	background-position: center;
	color: #fff;
	position: relative;
}
.services-outro::before {
	content: "";
	position: absolute;
	top: 0; left: 0;
	width: 100%; height: 100%;
	background: rgba(0,0,0,0.45);
	z-index: 1;
}

.services-outro .container {
	position: relative;
	z-index: 2;
}

.services-outro p {
	margin-bottom: 2.25em;
}
.services-outro h2, 
.services-outro p {
	color: #fff;
}
@media (max-width: 850px) {
	.services-intro {
		padding-top: 50px;
	}
	.services-grid {
		padding-bottom: 50px;
	}
	.service-item {
		min-width: 48% !important;
		margin: 0;
		margin-bottom: 20px;
	}
	.fine-print {
		margin-top: 0;
	}
}

/* Privacy Policy */
body.privacy-policy .site-header {
	background: rgba(34, 109, 120, 1) !important;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
}
#privacy-policy-section h2{
	font-size: 1.8rem;
}
#privacy-policy-section h4 {
	margin-bottom: 10px;
}
#privacy-policy-section ul {
	margin: 0;
}
#privacy-policy-section ul li {
	margin-bottom: 10px;
}

/* End main.css */
