/*   
Theme Name: Mind Body Birth - Custom Theme
Theme URI: https://1348.design
Description: A custom WordPress theme created for the website of Lucy Moggridge - This theme may only be used by 1348 Design and may not be copied to another platform without express written permission.
Author: 1348 Design
Author URI: https://1348.design
Version: 1.1
*/

		
/***** Setup Custom Properties *****/
:root {
	
	--theme-accent-1: #2c529f;
	--theme-accent-2: #af3060;
	--theme-accent-3: #de7aa4;
	
	/*--theme-grey-1: #4c4c4b;
	--theme-grey-2: #b4b6b8;
	--theme-grey-3: #dfdfdf;
	--theme-grey-4: #f9f9f9;*/
	
	--theme-grey-1: #0A0A0A;
	--theme-grey-2: #c9c7c7;
	--theme-grey-3: #dbd8d7;
	--theme-grey-4: #eae9e8;
	
	--theme-purple-1: #50404d;
	--theme-purple-2: #6b5668;
	--theme-purple-3: #93768f;
	
	--theme-font-heading: "Cormorant Garamond", serif;
	--theme-font-main: "Montserrat", sans-serif;
	
}


/***** Reset *****/
html, body, div, span, applet, object, input, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, caption {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-weight: inherit;
	font-style: inherit;
	font-size: 100%;
	font-family: inherit;
	vertical-align: baseline;
	-webkit-text-size-adjust: 100%;
}
body {
	line-height: 1;
	color: black;
	background: white;
}
ul {
	list-style: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/***** Global *****/
body {
	font-family: var(--theme-font-main);
	font-size: 19px;
	font-weight: 400;
	color: var(--theme-grey-1);
	background: #fff;
}
.wrap {
	position: relative;
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 50px;
}
h1, h2 {
	margin: 0 0 30px 0;
	line-height: 1.2;
	font-family: var(--theme-font-heading);
	color: var(--theme-grey-1);
}
h3, h4, h5 {
	margin: 0 0 12px 0;
	line-height: 1.2;
	font-family: var(--theme-font-heading);
}
h1 {
	font-size: 44px;
}
h2 {
	font-size: 36px;
}
h1::after,
h2::after {
	content: '';
	display: block;
	width: 100%;
	margin: 30px 0 0 0;
	border-bottom: 1px solid var(--theme-grey-2);
}
h2::after {
	width: 80px;
}
h3 {
	font-size: 30px;
}
h4 {
	font-size: 28px;
}
h5 {
	font-size: 25px; 
}
p {
	margin: 0 0 12px 0;
	line-height: 1.6;
}
.main p a,
.main li a {
	color: var(--theme-grey-1);
	text-decoration: underline;
}
.main p a:hover,
.main li a:hover {
	opacity: 0.6;
}
a {
	transition: all 0.3s;
}
p + h1,
p + h2,
p + h3,
p + h4,
p + h5 {
	margin-top: 45px;
}
b, strong {
	font-weight: 500;
}
em {
	font-style: italic;
}
.btn,
.button,
.nf-form-content button,
.nf-form-content input[type=button],
.nf-form-content input[type=submit] {
	position: relative;
	display: inline-block;
	padding: 9px 48px;
	height: auto !important;
	border-radius: 999px !important;
	color: var(--theme-grey-1) !important;
	border: 2px solid var(--theme-grey-2) !important;
	background: var(--theme-grey-2) !important;
	text-decoration: none;
	cursor: pointer;
	font-family: var(--theme-font-main);
	font-size: 20px;
	font-weight: 500;
	line-height: 1;
	transition: all 0.3s;
}
.btn:hover,
.button:hover,
.nf-form-content button:hover,
.nf-form-content input[type=button]:hover,
.nf-form-content input[type=submit]:hover {	
	background: #fff !important;
	color: var(--theme-grey-1) !important;
}
.nf-form-fields-required {
	display: none;
}
.nf-form-title {
	display: block;
	margin: 0 0 24px 0;
	font-family: var(--theme-font-heading);
	font-size: 27px;
}
.nf-field-label .nf-label-span, .nf-field-label label {
	font-weight: 500 !important;
}
.main {
	position: relative;
	z-index: 200;
}
.main ul,
.main ol {
	margin: 30px;
	line-height: 1.4;
}
.main ul:first-child,
.main ol:first-child {
	margin-top: 0;
}
.main ul {
	list-style: disc;
}
.main ol {
	list-style: decimal;
}
.main li {
	margin: 13px 0;
}
.main ul:first-child li:first-child,
.main ol:first-child li:first-child {
	margin-top: 0;
}
blockquote {
	padding: 30px 20px;
    font-size: 23px;
    line-height: 1.6;
    quotes: "“" "”" "‘" "’";
	text-align: center;
    text-indent: -0.3em;
	font-weight: 500;
}
blockquote::before {
    content: open-quote;
    display: inline;
}
blockquote::after {
    content: close-quote;
    display: inline;
}
blockquote p {
	display: inline;
}
.blocks-section {
	padding: 40px 0;
}

/***** Header *****/
.header {
	position: relative;
	width: 100%;
	background: #fff;
	text-align: center;
	z-index: 400;
	border-bottom: 1px solid var(--theme-grey-2);
}
.header-upper {
	padding: 6px 0 5px 0;
	background: var(--theme-grey-2);
	font-size: 15px;
	font-family: var(--theme-font-main);
}
.header-contact-container {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	width: 100%;
}
.header-contact {
	display: flex;
	margin: 0 0 0 20px;
}
.header-contact:first-child {
	margin-left: 0;
}
.header-contact-icon {
	margin: 0 12px 0 0;
	font-size: 18px !important;
}
/*mobile links override*/
.header-contact a {
	color: var(--theme-grey-1) !important;
	text-decoration: none !important;
}
.header-social {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	margin: 0 0 0 20px;
	padding: 0 0 0 10px;
	border-left: 1px solid var(--theme-grey-1);
}
.header-social_a {
	margin: 0 0 0 10px;
	color: var(--theme-grey-1);
	text-decoration: none;
}
.header-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.header-logo {
	margin: 20px 0 32px 0;
}
.header-logo-a {
	display: inline-block;
	text-decoration: none;
	transition: all 0.2s;
}
.header-logo-a:hover {
	opacity: 0.8;	
}
.header-nav-mobile_toggle-container,
.header-nav-mobile_menu-container {
	display: none;
}
.header-nav-main .menu {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 6px 0 20px 0;
}
.header-nav-main .menu-item {
	position: relative;
}
.header-nav-main a {
	display: block;
	height: calc(100% - 22px);
	padding: 0 26px;
	border-right: 1px solid var(--theme-grey-2);
	font-size: 17px;
	text-align: center;
	color: var(--theme-grey-1);
	text-decoration: none;
	font-family: var(--theme-font-main);
}
.header-nav-main li:last-child a {
	border-right: none;
}	
.header-nav-main li.menu-item-has-children > a {
	display: flex;
	align-items: center;
}
.header-nav-main li.menu-item-has-children > a::after {
	content: '\f347';
	padding: 0 0 0 11px;
	font-size: 12px;
	font-family: "dashicons";
	color: var(--theme-grey-2);
}	
.header-nav-main a:hover,
.header-nav-main .current-menu-item a {
	color: var(--theme-purple-1);
}
.header-nav-main .sub-menu {
	visibility: hidden;
	position: absolute;
	top: 100%;
	left: 0;
	width: max-content;
	padding: 20px 26px 0 26px;
	transform: translateY(30px);
	opacity: 0;
	text-align: left;
	transition: all 0.3s;
}
.header-nav-main .menu-item-has-children a:hover + .sub-menu,
.header-nav-main .sub-menu:hover {
	visibility: visible;
	transform: translateY(0);
	opacity: 100;
}
.header-nav-main .sub-menu a {
	padding: 10px 20px;
	margin: 0;
	background: var(--theme-grey-2);
	font-size: 15px;
	color: var(--theme-grey-1);
	border-right: none;
}
.header-nav-main .sub-menu .current-menu-item a,
.header-nav-main .sub-menu a:hover {
	background: var(--theme-purple-3);	
}

/***** Hero *****/
.hero {
	position: relative;
	margin: 0 auto;
	z-index: 100;
}
.hero-single-image-container {
	line-height: 0;
}
.hero-single-img {
	width: 100%;
	height: auto;
}
.hero-single-image-text {
	position: absolute;
	display: flex;
	justify-content: flex-start;
	align-items: center;
    top: 0;
    left: 0;
	height: 100%;
	width: 100%;
}
.hero-single-image-text::before {
	content: '';
	background: rgba(255,255,255,.65);
	position: absolute;
	left: 0;
	top: 0;
	width: 40%;
	height: 100%;
	border-radius: 0 9999px 9999px 0;
	z-index: 101;
}
.hero-single-image-text-wrap {
	width: 100%;
}
.hero-single-image-text-content {
	position: relative;
	z-index: 102;
}
.hero-heading {
	color: var(--theme-purple-1);
	margin-bottom: 30px;
	font-size: 48px;
}
.hero-heading::after {
	display: none;
}
.hero-subheading {
	color: var(--theme-purple-2);
	margin-bottom: 4px;
}
.hero-subheading::after {
	width: 200px;
    height: 15px;
	margin-top: 40px;
	border: none;
	background-image: url("_images/hero-swoosh-purple.png");
	background-repeat: no-repeat;
	background-size: contain;
}

/***** Content Sections *****/

/*global*/
.page-title-section {
	position: relative;
	padding: 80px 0 0 0;
}
.page-title-h1 {
	margin: 0;
	font-size: 42px;
}
.page-title-h1::after {
	margin: 30px auto 0 auto;
}

.content-section {
	position: relative;
	padding: 50px 0;
}

.content-section--spacing-reduce-above {
	padding-top: 0;
}
.content-section--spacing-reduce-below {
	padding-bottom: 0;
}
.content-section--spacing-reduce-both {
	padding-top: 0;
	padding-bottom: 0;
}

.content-cols {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap;
}
.content-section--col-100 .content-cols {
	justify-content: center;
}
.col-33 {
	width: calc(33.33% - 40px);
}
.col-50 {
	width: calc(50% - 40px);
}
.col-66 {
	width: calc(66.66% - 40px);
}
.col-100 {
	width: 100%;
}
.col-content-section:not(.col-content-section--content_select_heading) + .col-content-section {
	padding-top: 40px;
}

.content-heading--text-align-centre {
	text-align: center;
}
.content-heading--text-align-centre::after {
	margin: 40px auto 0 auto;
}
.content-heading--text-align-right {
	text-align: right;
}
.content-heading--text-align-right::after {
	margin-left: calc(100% - 80px);
}

.content-image_img{ 
	width: 100%;
	height: auto;
}
.image-caption {
	margin-top: -4px;
    padding: 8px 10px 7px 10px;
    background: var(--theme-grey-4);
    line-height: 1.2;
    font-size: 15px;
}

.content-button {
	text-align: center;
}

.content-link-list {
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	flex-wrap: wrap;
	width: 100%;
	text-align: center;
	font-weight: 500;
}
.link-list-a {
	display: flex;
	justify-content: space-around;
	align-items: center;
	width: calc(33% - 70px);
	min-height: 70px;
	padding: 0 30px;
	margin: 0 0 20px 0;
	background: var(--theme-grey-4);
	color: var(--theme-grey-1);
	font-size: 20px;
	line-height: 1.3;
	text-decoration: none;
}
.link-list-a:hover {
	background: var(--theme-grey-3);	
}

.content-video video {
	width: 100%;
	height: auto;
	max-height: 70vh;
}
.content-video-embed {
	position: relative;
	padding: 56.25% 0 0 0;
}
.content-video-embed iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}


.accordion-title {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	width: calc(100% - 80px);
	margin: 20px 0 0 0;
	padding: 20px 40px;
	background: var(--theme-grey-4);
	color: var(--theme-grey-1);
	transition: all 0.3s;
	cursor: pointer;
}
.accordion-title:hover,
.accordion-title.ui-state-active {
	background: var(--theme-purple-2);
	color: #fff;
}
.accordion-title::after {
	content: '\f347';
	display: block;
	line-height: 1.3;
	font-family: "dashicons";
	transition: all 0.3s;
}
.accordion-title:hover::after {
	color: #fff;
}
.accordion-title.ui-accordion-header-active::after {
	transform: rotate(180deg);
	color: #fff;
}
.accordion-title-h4 {
	width: calc(100% - 60px);
	margin: 0;
	transition: all 0.3s;
}
.ui-accordion-header-icon {
	display: none;
}
.accordion-content {
	background: var(--theme-grey-4);
}
.accordion-content-inner {
	width: calc(100% - 80px);
	padding: 40px 40px 20px 40px;
}
.accordion-content-inner a{
	color: var(--theme-grey-1);
}
.accordion-content-inner a:hover{
	color: var(--theme-grey-1);	
}

.content-image-links {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: flex-start;
}
.image-link {
	width: calc(25% - 30px);
	text-align: center;
	text-decoration: none;
	margin: 0 15px 30px 15px;
}
.col-66 .image-link,
.col-50 .image-link {
	width: calc(33% - 30px);
}
.col-33 .image-link {
	width: calc(50% - 20px);
	margin: 0 10px 25px 10px;
}
.image-link-img {
	width: 100%;
	height: auto;
	margin: 0 auto -3px auto;
	transition: all 0.3s;
}
.image-link-title {
    padding: 10px 0 0 0;
	font-family: var(--theme-font-main);
	color: var(--theme-grey-1);
	font-size: 20px;
	font-weight: 500;
	text-align: left;
	line-height: 1.2;
	transition: all 0.3s;
}
.image-link-text {
    padding: 7px 0 0 0;
	color: var(--theme-grey-1);
	font-size: 15px;
	text-align: left;
	line-height: 1.2;
	transition: all 0.3s;
}
.image-link:hover .image-link-img {
	opacity: 0.7;
}

.content-map iframe {
	width: 100%;
	height: 400px;
}

.price-list {
	display: flex;
    flex-wrap: wrap;
    gap: 52px 42px;
	justify-content: space-between;
}
.price-list-item {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: calc(33% - 80px);
    padding: 20px 26px 30px 26px;
    border-radius: 2px;
    background: #f2f2f2;
}
.price-list-service {
	border-bottom: 1px solid var(--theme-purple-2);
    padding: 0 0 22px 0;
}
.price-list-description {
	padding: 12px 0 20px 0;
	font-size: 18px;
}
.main .price-list-description ul,
.main .price-list-description ol {
	margin: 0 0 10px 25px;
}
.main .price-list-description li {
	margin: 10px 0;
}
.price-list-description a {
	font-size: 15px;
}
.price-list-cost {
	font-weight: 500;
}
	
/***** Blog *****/
.archive-filters-container {
	position: relative;
	display: table;
	table-layout: fixed;
	width: calc(100% + 40px);
	margin: 60px 0 0 -20px;
}
.archive-filter {
	position: relative;
	display: table-cell;
	vertical-align: top;
	padding: 0 20px 40px 20px;
	font-size: 15px;
}
.archive-filter select {
	font-size: 15px !important;
	height: 38px !important;
	width: 100% !important;
	padding: 0 0 0 10px !important;
	border: 1px solid var(--theme-grey-2) !important;
	border-radius: 4px !important;
	background-color: #fff !important;
	line-height: 40px !important;
	font-family: var(--theme-font-main) !important;
    font-weight: 300 !important;
	color: var(--theme-grey-1) !important;
}
.archive-filter .search-form {
	position: relative;
	height: 38px;
	width: calc(100% - 12px);
	padding: 0 0 0 10px;
	border: 1px solid var(--theme-grey-2);
	border-radius: 4px;
	background-color: #fff;
	line-height: 38px;
    font-weight: 300 !important;
	color: var(--theme-grey-1) !important;
	overflow: hidden;
}
.archive-filter .search-form .search-field {
	width: calc(100% - 27px);
}
.archive-filter input[type=submit].search-submit {
	position: absolute;
	right: 0;
	top: 0;
	height: 38px;
	width: 27px;
	cursor: pointer;
	padding: 0 10px !important;
	border-radius: 0;
}
.grid {
	display: block;
	position: relative;
	width: calc(100% + 40px);
	margin-left: -20px;
}
/* clearfix */
.grid:after {
	content: '';
	display: block;
	clear: both;
}
.grid-sizer,
.grid-item {
	width: 33.33%;
}
.archive-post-container {
	padding: 0 20px 40px 20px;
}
.archive-post {
	display: block;
	padding: 20px;
	background: var(--theme-grey-4);
}
.archive-post:nth-child(3n+3) {
	margin-right: 0;
}
h1.archive-post_title {
	margin: 0 0 20px 0;
	font-size: 26px;
}
h1.archive-post_title::after {
	display: none; 
}
.archive-post_date {
	margin: 0 0 20px 0;
	padding: 0 0 10px 0;
	font-size: 15px;
	border-bottom: 1px solid var(--theme-grey-2);
}
.archive-post_image-container {
	position: relative;
	display: block;
	padding: 0 0 20px 0;
}
.archive-post_img {
	display: block;
	width: 100%;
	height: auto;
}
.archive-post_excerpt {
	font-size: 15px;
	padding: 0 0 20px 0;
}
.archive-post_links {
	display: table;
	table-layout: fixed;
	width: 100%;
	padding: 20px 0 0 0;
	border-top: 1px solid var(--theme-grey-2);
}
.archive-post_btn {
	display: table-cell;
	font-size: 16px;
	text-align: center;
}
.archive-post-nav {
	text-align: center;
}
.page-numbers {
	display: inline-block;
	vertical-align: middle;
	padding: 8px;
	background: var(--theme-grey-4);
	color: var(--theme-grey-1);
	text-decoration: none;
}
.page-numbers.current,
a.page-numbers:hover {
	background: var(--theme-grey-1);
	color: #fff;
}
.page-title-section--single {
	text-align: left;
}
.page-title-section--single .page-title-h1::after {
    margin: 30px 0 0 0;
}
.single-post-meta {
	max-width: 600px;
	margin-top: 20px;
    font-size: 14px;
}
.single-post-meta_date,
.single-post-meta_author {
	margin: 0;
}
.single-post-meta a {
	color: var(--theme-grey-1);
}
.single-post-meta a:hover {
	color: var(--theme-grey-1);
}
.single-post-entry {
	line-height: 1.6;
	padding: 0 0 80px 0;
}
.single-post-nav {
	line-height: 2;
	padding: 0 0 50px 0;
}
.post-navigation .nav-links {
	display: flex;
	justify-content: flex-start;
	gap: 40px 70px;
	width: 100%;
}
.post-navigation .nav-links a {
	text-decoration: none;	
}
.post-navigation .nav-links .meta-nav {
	font-weight: 500;
}
.post-navigation .nav-links .post-title {
	display: block;
	text-decoration: underline;
	line-height: 1.4;
}
.single-post-nav .screen-reader-text {
	display: none;
}
.single-post-nav a {
    color: var(--theme-grey-1);
}
.single-post-nav a:hover {
    color: var(--theme-grey-2);
}
.blog-lower-heading {
	display: inline-block;
	margin: 0 0 30px 0;
	padding: 0 0 10px 0;
	border-bottom: 1px solid var(--theme-grey-3);
}
.search-list .search-item {
	display: block;
	border-bottom: 1px solid var(--theme-grey-2);
	padding: 30px 0;
}
.search-list .search-item .search-item_a {
	text-decoration: none;
	color: var(--theme-grey-1);
}
.search-list .search-item .search-item_a h3 {
	color: var(--theme-grey-1);
}
.search-list .search-item .search-item_a p {
	max-width: 800px;
}
.search-list .search-item .search-item_a .search-item_date,
.search-list .search-item .search-item_a .search-item_read-more {
	font-size: 15px;
}
.search-list .search-item .search-item_a:hover .search-item_read-more {
	text-decoration: underline;
}
.page-links {
	display: flex;
	justify-content: space-between;
	width: 100%;
	margin: 30px 0 0 0;
	gap: 20px;
}
.page-links a {
	color: var(--theme-grey-1);
	text-decoration: none;
	font-weight: 500;
}
.page-links a:hover {
	color: var(--theme-grey-2);
}

/***** comments *****/

.blog-footer-section {
	padding: 40px 0 4px 0;
	background: var(--theme-grey-4);
	border-top: 1px solid var(--theme-grey-3);
}
.main #respond {
	padding: 0 20px 20px 20px;
	margin: 20px 20px 70px 40px;
    border-left: 1px solid var(--theme-grey-2);
}
.main #respond ol,
.main .commentlist {
	list-style: none;	
	margin: 0 0 20px 0;
}
.main #respond li,
.main .commentlist li {
    border-left: 1px solid var(--theme-grey-2);
	padding: 10px 0 10px 10px;
}
.main .commentlist .depth-1 {
	margin-bottom: 10px;
}
.main .commentlist ul {
	list-style: none;
}
.main #respond h2 {
	display: block;
    padding: 0 0 10px 0;
	margin: 0 0 10px 0;
    font-size: 20px;
}
.main #respond h3 {
	margin: 0 0 20px 0;
    font-size: 18px;
	display: inline-block;
}
.comment-author img,
.says {
	display: none;
}
.main .commentlist .fn {
	font-size: 18px;
}
.main .commentlist .comment-meta {
	font-size: 14px;
	margin: 10px 0 20px 0;
}
.main .commentlist .reply {
	font-size: 14px;
	margin: 20px 0 10px 0;
}
.main #respond .required-field-message {
	display: block;
}
.main #respond .comment-form-comment label {
	display: block;
}
.main #respond .comment-reply-title {
	display: none;
}
.cancel-comment-reply {
	font-size: 14px;
	margin: -10px 0 10px 0;	
}
#commentform input,
#commentform textarea {
	border: 1px solid var(--theme-grey-2);
	padding: 10px !important;
	max-width: 95%;
	font-size: 16px !important;
	font-family: var(--theme-font-main) !important;
}
#commentform input[type=submit] {
	position: relative;
	display: inline-block;
	padding: 5px 40px !important;
	margin: 20px 0 0 0;
	border-radius: 999px;
	color: var(--theme-grey-1);
	border: 1px solid var(--theme-grey-1);
	text-decoration: none;
	cursor: pointer;
	font-weight: 500;
	font-family: var(--theme-font-main) !important;
	font-size: 16px !important;
	transition: all 0.5s;
}
#commentform input[type=submit]:hover {
	transform: scale(1.05);
	box-shadow: 0 0 10px rgba(0,0,0,0.3);
}
.comment-form-cookies-consent label {
	font-size: 16px;
}
h3#comments {
	display: none;
}
.comment a {
	color: var(--theme-grey-2);
}
.comment a:hover {
	color: var(--theme-grey-1);
}
	
/* Section Background - Grey */
.content-section--bg-grey {
	background: var(--theme-grey-4);
}
.content-section--bg-grey .image-caption {
	background: #fff;
}
.content-section--bg-grey .accordion-title,
.content-section--bg-grey .accordion-content {
	background: var(--theme-grey-3);
}
.content-section--bg-grey .accordion-title:hover,
.content-section--bg-grey .accordion-title.ui-state-active {
    background: #000;
    color: #fff;
}
.content-section--bg-grey .link-list-a {
	background: var(--theme-grey-3);
}
.content-section--bg-grey .link-list-a:hover {
	background: var(--theme-grey-2);
}
	
/* Section Background - Blue */
.content-section--bg-blue {
	background: var(--theme-accent-1);
}
.content-section--bg-blue .content-text h1,
.content-section--bg-blue .content-text h2,
.content-section--bg-blue .content-text h3,
.content-section--bg-blue .content-text h4,
.content-section--bg-blue .content-heading h1,
.content-section--bg-blue .content-heading h2,
.content-section--bg-blue .content-heading h3,
.content-section--bg-blue .content-heading h4,
.content-section--bg-blue p a,
.content-section--bg-blue li a,
.content-section--bg-blue .content-text,
.content-section--bg-blue .content-quote {
	color: #fff;
}
.content-section--bg-blue h1::after,
.content-section--bg-blue h2::after {
	border-bottom: 1px solid #fff;
}
.content-section--bg-blue .image-caption {
	background: #fff;
}
.content-section--bg-blue .accordion-title,
.content-section--bg-blue .accordion-content {
	background: var(--theme-grey-3);
}
.content-section--bg-blue .accordion-title:hover,
.content-section--bg-blue .accordion-title.ui-state-active {
    background: #000;
    color: #fff;
}
.content-section--bg-blue .link-list-a {
	background: var(--theme-grey-3);
	color: var(--theme-accent-1);
}
.content-section--bg-blue .link-list-a:hover {
	background: var(--theme-grey-2);
}
.content-section--bg-blue .image-link-title,
.content-section--bg-blue .image-link-text {
	color: #fff;
}
.content-section--bg-blue .btn,
.content-section--bg-blue .button,
.content-section--bg-blue .nf-form-content button,
.content-section--bg-blue .nf-form-content input[type=button],
.content-section--bg-blue .nf-form-content input[type=submit] {
	color: var(--theme-accent-1) !important;
	border: 2px #fff !important;
	background: #fff !important;
}
.content-section--bg-blue .btn:hover,
.content-section--bg-blue .button:hover,
.content-section--bg-blue .nf-form-content button:hover,
.content-section--bg-blue .nf-form-content input[type=button]:hover,
.content-section--bg-blue .nf-form-content input[type=submit]:hover {	
	background: var(--theme-grey-3) !important;
	color: var(--theme-accent-1) !important;
}
	
/* Section Background - Pink */
.content-section--bg-pink {
	background: var(--theme-accent-2);
}
.content-section--bg-pink .content-text h1,
.content-section--bg-pink .content-text h2,
.content-section--bg-pink .content-text h3,
.content-section--bg-pink .content-text h4,
.content-section--bg-pink .content-heading h1,
.content-section--bg-pink .content-heading h2,
.content-section--bg-pink .content-heading h3,
.content-section--bg-pink .content-heading h4,
.content-section--bg-pink p a,
.content-section--bg-pink li a,
.content-section--bg-pink .content-text,
.content-section--bg-pink .content-quote {
	color: #fff;
}
.content-section--bg-pink h1::after,
.content-section--bg-pink h2::after {
	border-bottom: 1px solid #fff;
}
.content-section--bg-pink .image-caption {
	background: #fff;
}
.content-section--bg-pink .accordion-title,
.content-section--bg-pink .accordion-content {
	background: var(--theme-grey-3);
}
.content-section--bg-pink .accordion-title:hover,
.content-section--bg-pink .accordion-title.ui-state-active {
    background: #000;
    color: #fff;
}
.content-section--bg-pink .link-list-a {
	background: var(--theme-grey-3);
	color: var(--theme-accent-2);
}
.content-section--bg-pink .link-list-a:hover {
	background: var(--theme-grey-2);
}
.content-section--bg-pink .image-link-title,
.content-section--bg-pink .image-link-text {
	color: #fff;
}
.content-section--bg-pink .btn,
.content-section--bg-pink .button,
.content-section--bg-pink .nf-form-content button,
.content-section--bg-pink .nf-form-content input[type=button],
.content-section--bg-pink .nf-form-content input[type=submit] {
	color: var(--theme-accent-2) !important;
	border: 2px #fff !important;
	background: #fff !important;
}
.content-section--bg-pink .btn:hover,
.content-section--bg-pink .button:hover,
.content-section--bg-pink .nf-form-content button:hover,
.content-section--bg-pink .nf-form-content input[type=button]:hover,
.content-section--bg-pink .nf-form-content input[type=submit]:hover {	
	background: var(--theme-grey-3) !important;
	color: var(--theme-accent-2) !important;
}
.content-section--bg-pink .price-list-service {
    border-bottom: 1px solid var(--theme-accent-2);
}

/***** Footer *****/
.footer {
	position: relative;
	border-top: 2px solid var(--theme-purple-3);
	background: var(--theme-grey-4);
	font-size: 17px;
	text-align: center;
	z-index: 300;
}
.footer-content {
	padding: 30px 0;
}
.footer-text {
	margin: 20px 0 0 0;
	font-size: 15px;
	line-height: 2;
}
.footer-credit {
	font-weight: 500;
	text-decoration: none;
	color: var(--theme-grey-1);
}
.footer-credit:hover {
	opacity: 0.6;
}
.footer a {
  color: inherit !important;
}
.footer-nav-ul {
	display: block;
	line-height: 2;
}
.footer-nav-li {
	font-size: 15px;
}
.footer-nav-a:hover {
	opacity: 0.7;
}

@media screen and (max-width: 1350px) {
	
	body {
		font-size: 17px;
	}
	h1 {
		font-size: 36px;
	}
	h2 {
		font-size: 26px;
	}
	h3 {
		font-size: 23px;
	}
	h4 {
		font-size: 22px;
	}
	h5 {
		font-size: 21px;
	}
	.main ul, .main ol {
		margin: 20px 0 20px 24px;
	}
	.header-logo-img {
		width: 200px;
		height: auto;
	}
	.header-nav-main a {
		font-size: 15px;
	}
	.header-nav-main .sub-menu a {
		padding: 10px 18px;
		font-size: 14px;
	}
	.page-title-section {
		padding: 60px 0 0 0;	
	}
	.col-50 blockquote {
		padding: 50px 30px;
	}
	.col-50 .accordion-section-title-h3{
		font-size: 22px;
	}
	.col-50 .accordion-section-title-h4{
		font-size: 20px;
	}
	.image-link {
		width: calc(25% - 20px);
		margin: 0 10px 25px 10px;
	}
	.col-66 .image-link,
	.col-50 .image-link {
		width: calc(50% - 20px);
		margin: 0 10px 25px 10px;
	}
	.col-33 .image-link {
		width: 100%;
		margin: 0 0 25px 0;
	}
	.col-50 .link-list-a {
		width: calc(50% - 70px);
		min-height: 90px;
		font-size: 17px;
	}
	.col-33 .link-list-a {
		width: 100%;
		min-height: 90px;
		font-size: 17px;
	}
	.price-list-item {
		width: calc(50% - 73px);
	}
	.footer {
		border-width: 10px;
	}
	
}

@media screen and (max-width: 1150px) {

	.header-logo-img {
		width: 300px;
		height: auto;
		max-width: 95%;
	}
	.header-nav-main {
		display: none;
	}
	.header-navigation {
		text-align: right;
	}
	.header-navigation::after {
		display: none;
	}
	.header-nav-mobile_toggle-container {
		display: inline-block;
		margin: 0 0 0 30px;
	}
	.header-nav-mobile_toggle {
		display: flex;
		justify-content: center;
		align-items: center;
		background: var(--theme-purple-2);
		padding: 11px 44px;
		transition: all 0.3s;
		cursor: pointer;
	}
	.header-nav-mobile_toggle:hover {	
		background: var(--theme-grey-2);
	}
	.header-nav-mobile_text {
		font-size: 19px;
		color: #fff;
		margin: 4px 20px 0 0;
		font-weight: 300;
	}
	.header-nav-mobile_toggle-icon {
		margin-bottom: 4px;
	}
	.header-nav-mobile_bar {
		width: 25px;
		height: 2px;
		background: #fff;
		margin: 5px 0 0 0;
		transition: all 0.3s;
		border-radius: 9999px;
		overflow: hidden;
	}
	/* Rotate first bar */
	.menu-open .header-nav-mobile_bar--1 {
		-webkit-transform: rotate(-45deg) translate(-4px, 7px);
		transform: rotate(-45deg) translate(-4px, 7px);
    	width: 26px;
	}
	/* Fade out the second bar */
	.menu-open .header-nav-mobile_bar--2 {
		opacity: 0;
	}
	/* Rotate third bar */
	.menu-open .header-nav-mobile_bar--3 {
		-webkit-transform: rotate(45deg) translate(-4px, -6px);
		transform: rotate(45deg) translate(-4px, -6px);
    	width: 26px;
	}
	.header-nav-mobile_menu-container {
		display: none;
		position: absolute;
		right: 30px;
    	top: 100%;
		background: var(--theme-purple-2);
		text-align: left;
	}
	.header-nav-mobile_menu-inner {
		padding: 19px 27px 27px 27px;
	}
	.header-nav-mobile_menu-container ul li a {
		display: inline-block;
		padding: 10px 12px;
		margin: 8px 0 0 0;
		border-bottom: 1px solid rgba(255,255,255,0.2);
		color: #fff;
		font-size: 18px;
		text-decoration: none;
		cursor: pointer;
	}
	.header-nav-mobile_menu-container ul li a:hover {
		background: rgba(255,255,255,0.1);
	}
	.header-nav-mobile_menu-container .sub-menu {
		margin: 0 0 0 26px;
		border-left: 1px solid rgba(255,255,255,0.2);
	}
	.header-nav-mobile_menu-container ul li .sub-menu a {
		margin: 8px 0 0 0;
		font-size: 16px;
	}
	.hero-single-image-text-content {
		transform: scale(.9);
		transform-origin: center left;
	}
	blockquote {
		padding: 25px 130px;
	}
	.col-content-section:not(.col-content-section--content_select_heading) + .col-content-section {
		padding-top: 30px;
	}
}

@media screen and (max-width: 980px) {
	
	blockquote {
		padding: 25px 110px;
	}
	.hero-single-image-text-content {
		transform: scale(.8);
	}
	.link-list-a {
		width: calc(50% - 70px);
		min-height: 90px;
		font-size: 17px;
	}
	.accordion-title {
		width: calc(100% - 40px);
    	padding: 15px 20px;
	}
	.accordion-title::after {
		width: 20px;
		height: 20px;
	}
	.accordion-content-inner {
		font-size: 19px;
	}
	.accordion-content--accordion-section-content {
		padding: 0 20px 20px 20px;
	}
	.image-link {
		width: calc(33% - 20px);
	}
}

@media screen and (max-width: 900px) {
	
	.wrap {
		padding: 0 30px;
	}
	.header-logo {
		margin: 20px 0;
	}
	
	.archive-filters-container .archive-filter:nth-child(2) {
		display: none;
	}

}

@media screen and (max-width: 850px) {
	
	.hero-single-image-text-content {
		transform: scale(.7);
	}
	.grid-sizer, .grid-item {
		width: 100%;
	}
	.main #respond {
		margin: 20px 0;
	}
	.main .commentlist li.depth-1 {
		margin-left: 0;
	}
	.col-50 .link-list-a {
		width: 100%;
		min-height: 90px;
		font-size: 17px;
	}
	.col-66 .image-link,
	.col-50 .image-link {
		width: 100%;
		margin: 0 0 25px 0;
	}
	.content-section--col-33-33-33 .col-33 {
		width: 100%;
	}
	.content-section--col-33-33-33 .col-33 + .col-33 {
		margin-top: 30px;	
	}
	.content-section--col-33-33-33 .col-33 .image-link {
		width: calc(33% - 20px);
		margin: 0 10px 25px 10px;
	}
	
	.content-section--col-33-33-33 .col-33 .link-list-a {
		width: calc(50% - 40px);
		padding: 0 15px;
	}
	
	.link-list-a {
		width: calc(50% - 40px);
		padding: 0 15px;
	}
	.footer {
		font-size: 15px;
	}
	.footer-logo-img {
		width: 100px;
		height: auto;
	}
	.footer-social-links-a {
		margin: 40px 10px 0 10px;
	}
	
}
	
@media screen and (max-width: 700px) {

	.wrap {
		padding: 0 20px;
	}
	.header-contact-container {
		justify-content: space-between;
	}
	.header-social {
		display: none;
	}
	.header-content {
		width: calc(100% - 40px);
		padding: 0 20px 20px 20px;
	}
	.header-nav-mobile_menu-container {
		right: 20px;
	}
	.hero-single-image-container {
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
	}
	.hero-single-img {
		object-fit: cover;
		width: 100%;
		height: 100%;
	}
	.hero-single-image-text::before {
		width: 100%;
		border-radius: 0;
	}
	.hero-single-image-text {
		position: relative;
	}
	.hero-single-image-text-wrap {
		padding: 30px 20px;
	}
	.hero-single-image-text-content {
		transform: scale(1);
	}
	.hero-heading {
		font-size: 38px;
	}
	blockquote {
		padding: 20px 40px;
	}
	.btn,
	.button,
	.nf-form-content button,
	.nf-form-content input[type=button],
	.nf-form-content input[type=submit] {
		font-size: 17px;
	}
	.col-33,
	.col-50,
	.col-66 {
		width: 100%;
	}
	.col + .col {
		margin-top: 30px;
	}
	.price-list-item {
		width: calc(100% - 52px);
	}
	.footer { 
		font-size: 15px;
	}
	.footer-content {
		flex-direction: column;
		text-align: center;
	}
	.footer-text {
		text-align: center;
	}
	.content-section--col-33-33-33 .col-33 .image-link,
	.col-33 .image-link,
	.col-50 .image-link,
	.col-66 .image-link {
		width: calc(50% - 20px);
		margin: 0 10px 25px 10px;
	}
	.col-66 .link-list-a, 
	.col-50 .link-list-a {
    	width: calc(50% - 40px);
	}
	.post-navigation .nav-links {
		flex-direction: column;
	}
	.image-link {
        width: calc(50% - 30px);
    }

}

@media screen and (max-width: 660px) {
	
	.header-content {
		flex-direction: column;
		align-items: center;
	}
	.header-nav-mobile_toggle-container {
		margin: 30px 0 0 0;
	}
	.header-nav-mobile_menu-container {
    	width: calc(100% - 40px);
	}
	.archive-filters-container {
		padding: 0 0 10px 0;
	}
	.archive-filters-container .archive-filter {
		display: block;
		padding: 0 20px 10px 20px;
	}
	.footer-content-left {
		display: block;
		text-align: center;
	}
	
}
	
@media screen and (max-width: 600px) {

	body {
		font-size: 16px;
	}
	h1 {
		font-size: 34px;
	}
	.footer-text {
		font-size: 13px;	
	}
	
}
	
@media screen and (max-width: 540px) {
	
	blockquote {
		padding: 12px 20px;
		font-size: 22px;
	}
	.content-section--col-33-33-33 .col-33 .link-list-a,
	.col-33 .link-list-a, 
	.col-66 .link-list-a, 
	.col-50 .link-list-a,
	.link-list-a {
		width: calc(100% - 40px);
		min-height: 80px;
		padding: 8px 20px;
	}
	.content-section--col-33-33-33 .col-33 .image-link,
	.col-33 .image-link,
	.col-50 .image-link,
	.col-66 .image-link,
	.image-link {
		width: 100%;
		margin: 0 0 25px 0;
	}	
	.accordion-content-inner {
		width: calc(100% - 40px);
		padding: 20px 20px 10px 20px;
	}
	.footer-nav-li {
		font-size: 13px;
	}
	.footer-text {
		font-size: 13px;
	}
	
}

@media screen and (max-width: 450px) {

	
	.header-contact--email {
		display: none;
	}
	.page-links {
		flex-direction: column;
		align-items: center;
	}
	
}
