/*
Theme Name: Revive and Thrive System
Description: Customized theme for revivethrivesystem.com.
Version: 1.0
Author: Sterr Bros
Author URI: http://www.sterr-bros.com
*/

/* THEME VARIABLES */
:root {
	--color-gold: #D4AF37;
	--color-gray: #999999;
	--color-gray-dark: #333333;
	--color-gray-light: #f2f2f2;
	--color-red: #fe7f6e;
	--color-red-dark: #8b0000;
	--color-pink: #fca299;
	
	--font-el-messiri: "El Messiri", sans-serif;
	--font-open: "Open Sans", Helvetica, Arial, sans-serif;
}

body {
	margin: 110px 0 0 0;
	padding: 0;
	font-size: 18px;
	font-family: var(--font-open);
	line-height: 1.6em;
	color: #4a4a4a;
	background: #fff;
}

body * {
	box-sizing: border-box;
}

img {
	max-width: 100%;
	height: auto;
}

a, a * {
	transition: .3s all;
	outline: none;
}

h1, h2, h3, h4, h5, h6 {
	margin: 1em 0 .5em 0;
	font-family: var(--font-open);
	font-weight: normal;
	line-height: 1.3em;
}

.inner {
	position: relative;
	width: 100%;
	max-width: 800px;
	margin: 0 auto;
	padding: 0 15px;
}

/* MENU */
#header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	height: 110px;
	text-align: right;
	z-index: 900;
	box-shadow: 1px 0 5px #444;
	background: #fff;
}
body.admin-bar #header {
	top: 32px;
}
#header .inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

#header #logo {
	flex-shrink: 0;
	padding-right: 32px;
}
#header #logo a {
	line-height: 0;
	display: block;
	padding: 5px 0;
}
#header #logo a img {
	height: 100px;
}

#header #main-menu {
	flex-basis: 100%;
	flex-shrink: 1;
	text-align: right;
}

#header .mobile-menu-toggle {
	display: none;
}
.menu-wrap {
	display: block;
	position: relative;
}
.menu {
	margin: 0;
	padding: 0;
	display: block;
	list-style: none;	
}
.menu > li {
	display: inline-block;
	position: relative;
}
.menu > li > a {
	display: block;
	position: relative;
	height: 60px;
	line-height: 54px;
	border-top: 3px solid #fff;
	padding: 0 16px;	
	font-size: 18px;
	color: #8e8f8e;
	text-decoration: none;
	z-index: 900;
	font-family: var(--font-open);
}
.menu > li > a:hover {
	color: var(--color-red);
	border-top-color: var(--color-red);
}
.menu > li.current-menu-item > a {
	color: var(--color-red);
	border-top-color: var(--color-red);
}
.menu > li.current-menu-parent > a {
	color: var(--color-red);
	border-top-color: var(--color-red);
}
.menu > li > ul {
	display: none;
	height: auto;
	margin: 0;
	padding: 0;
	position: absolute;
	top: 99%;
	padding-top: 10%;
	left: 0;
	background: none;
	border: none;
	min-width: 275px;
	text-align: center;
	transition: .3s all;
	z-index: 800;
}
.menu > li:hover > ul {
	display: block;
}
.menu > li.menu-item-has-children .mobile-sub-toggle {
	display: none;
}
.menu > li > ul > li {
	display: block;
}
.menu > li > ul > li > a {
	border-left: 2px solid #ccc;
	border-right: 2px solid #ccc;
	display: block;
	background: #fff;
	padding: .5em 1em;
	text-decoration: none;
	font-size: 16px;
	line-height: 1.2em;
	color: #8e8f8e;
	text-align: left;
}
.menu > li > ul > li:first-of-type > a {
	border-top: 2px solid #ccc;
}
.menu > li > ul > li:last-of-type > a {
	border-bottom: 2px solid #ccc;
}
.menu > li > ul > li > a:hover {
	color: var(--color-red);
	text-decoration: underline;
}
.menu > li > ul > li.current-menu-item > a {
	color: var(--color-red);
}
*/

/*
#header .header-social {
	position: absolute;
	top: 50px;
	width: 240px;
	text-align: center;
}
#header .header-social a {
	display: inline-block;
	text-align: center;
	width: 20px;
	height: 20px;
	margin: 10px 2px;
	color: var(--color-red);
	text-decoration: none;
	transition: .3s all;
	line-height: 20px;
	font-size: 16px;
}
#header .header-social a:hover {
	color: var(--color-red-dark);
}
*/

/* DIVIDER */
.divider {
	height: 4px;
	display: block;
	width: 100%;
	margin: 0;
	padding: 0;
	background: var(--color-gold);
}

/* MAIN CONTENT */
#main {
	padding-top: 60px;
	padding-bottom: 60px;
}
#main .inner {
	background: #fff;
}
body.blog #main .inner {
	background: none;
}
#main .content a {
	transition: .3s all;
}
#main .content p {
	margin: 0 0 1em 0;
}
#main .content ul {
	margin: 0 0 1em 0;
	padding-left: 30px;
}
#main .content ol {
	margin: 0 0 1em 0;
	padding-left: 30px;
}
#main .content table {
	margin: 1em 0 1.5em 0;
	border-collapse: collapse;
}
#main .content table td {
	vertical-align: top;
	padding: .5em 1em;
	border: 1px solid #4497d2;
	background: #fffcf1;
}
#main .content table td li {
	padding: 0;
}
.page-title {
	margin-top: 0;
	line-height: 1em;
	text-align: center;
}
.subtitle {
	margin: -.5em 0 .5em 0;
	text-align: center;
	font-variant: small-caps;
	font-size: 36px;
	font-style: italic;
}
.subtitle::before {
	content: '';
	display: block;
	border-bottom: 6px dotted;
	width: 3em;
	margin: 0.75em auto .3em auto;
	color: #4497d2;
}

/* PAGES */
#main h1 {
	font-size: 42px;
}
#main h2 {
	font-size: 42px;
}
#main h3 {
	font-size: 32px;
}
#main h4 {
	font-size: 28px;
}
#main h5 {
	font-size: 24px;
}
#main h6 {
	font-size: 20px;
}
#main .content a {
	color: var(--color-red-dark);
}
#main .content a:hover {
	color: var(--color-red);
}
#main .content .alignleft {
	float: left;
	margin: 0 2em 1em 0;
}
#main .content .alignright {
	float: right;
	margin: 0 0 1em 2em;
}
#main .content .aligncenter {
	display: block;
	margin: 1em auto;
}
#main .content .wp-caption {
	border: 3px solid #ddd;
	background: #fffef4;
	line-height: 0;
	border-radius: 12px;
	overflow: hidden;
}
#main #post-single.content .wp-caption {
	background: #fff;
	border: none;
	border-radius: 0;
}
#main .content .wp-caption img {
	width: 100%;
}
#main #post-single.content .wp-caption img {
	width: 100%;
	border: 3px solid #ddd;
	border-radius: 12px;
}
#main  .content.wp-caption-text {
	margin: 0;
	text-align: center;
	color: #888;
	font-size: 20px;
	line-height: 1.2em;
	padding: .2em;
}
#main #post-single.content .wp-caption-text {
	font-size: 14px;
	padding: .5em;
}
#main .content blockquote {
	margin: 1.5em 6em;
	color: #1073bc;
	line-height: 1.3em;
	font-size: 20px;
	font-style: italic;
	letter-spacing: 1px;
	text-align: center;
}

/* HOME PAGE */
#hero-video {
	display: flex;
	justify-content: center;
	align-items: center;
	max-height: 800px;
	overflow: hidden;
	background: var(--color-gray);
}
#hero-video .hero-title {
	position: absolute;
	color: #fff;
	font-size: 42px;
	font-weight: normal;
	text-shadow: 2px 2px 10px #000, 1px 1px 4px #000;
	margin: 0;
	line-height: 1em;
}
#hero-video video {
	width: 100%;
}

.services-slider {
	margin: 0 0 60px 0;
	padding-bottom: 60px;
	text-align: center;
}
.services-slider > h2 {
	margin: 0;
}
.services-slider > p {
	margin: 0 0 2em 0;
}
.services-slider .service {
	padding: 1.5em 2em .5em 2em;
	margin: 1px 25px 1px 25px;
	border: 1px solid var(--color-gold);
	background: var(--color-gray-light);
	text-align: center;
}
.services-slider .service h3 {
	margin: 0 0 .5em 0;
	font-weight: normal;
	font-size: 27px;
}
.services-slider .service .video-wrap {
	position: relative;
}
.services-slider .service video {
	width: 100%;
	max-width: 100%;
}
.services-slider .service .unmute {
	position: absolute;
	background: var(--color-red);
	width: 30px;
	height: 30px;
	border-radius: 15px;
	bottom: 30px;
	right: 25px;
	background-image: url('img/mute-icons.png');
	background-position: -30px 0;
	transition: none;
}
.services-slider .service .unmute.active {
	background-position: 0px 0;
}
.services-slider .service p {
	margin: .5em 1em 0 1em;
}
.services-slider .service .more {
	display: inline-block;
	background: var(--color-red);
	color: white !important;
	padding: .5em 1em;
	border-radius: 10px;
	margin: 1em;
	text-decoration: none;
}
.services-slider .service .more:hover {
	background: var(--color-red-dark);
}

.about-slider {
	margin: 0 0 60px 0;
	padding-top: 40px;
	padding-bottom: 60px;
	text-align: center;
	background-image: url(https://all-about-love-wellness.com/wp-content/uploads/2025/10/water-cliffs-bg.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}
.about-slider > h2 {
	margin: 0;
	padding-top: 20px;
	background: #ffffffcc;
}
.about-slider > p {
	margin: 0 0 2em 0;
	padding-bottom: 20px;
	background: #ffffffcc;
}
.about-slider .service {
	padding: 1.5em 2em .5em 2em;
	margin: 1px 25px 1px 25px;
	border: 1px solid var(--color-gold);
	background: var(--color-gray-light);
	text-align: center;
}
.about-slider .service h3 {
	margin: 0 0 .5em 0;
	font-weight: normal;
	font-size: 27px;
}
.about-slider .service .video-wrap {
	position: relative;
}
.about-slider .service video {
	width: 100%;
	max-width: 100%;
}
.about-slider .service .unmute {
	position: absolute;
	background: var(--color-red);
	width: 30px;
	height: 30px;
	border-radius: 15px;
	bottom: 30px;
	right: 25px;
	background-image: url('img/mute-icons.png');
	background-position: -30px 0;
	transition: none;
}
.about-slider .service .unmute.active {
	background-position: 0px 0;
}
.about-slider .service p {
	margin: .5em 1em 0 1em;
}
.about-slider .service .more {
	display: inline-block;
	background: var(--color-red);
	color: white;
	padding: .5em 1em;
	border-radius: 10px;
	margin: 1em;
	text-decoration: none;
}
.about-slider .service .more:hover {
	background: var(--color-red-dark);
}

.review-slider {
	margin: 60px 0;
	text-align: center;
}
.review-slider > h2 {
	margin: 0;
}
.review-slider > p {
	margin: 0 0 2em 0;
}
.review-slider .review {
	width: calc(100% - 50px);
	margin: 1px 25px 1px 25px;
	padding: 1.5em 2em .5em 2em;
	border: 1px solid var(--color-gold);
	background: var(--color-gray-light);
	text-align: left;
}
.review-slider .review .text {
	max-height: 96px;
	overflow: hidden;	
}
.review-slider .review .text.full {
	max-height: 100em;
}
.review-slider .review .text p {
	margin: 24px 0 0 0;
	line-height: 24px;
}
.review-slider .review .author {
	font-family: var(--font-open);
	font-weight: bold;
}
.review-slider .review .moreless {
	display: none;
	color: blue;
}
.review-slider .more-reviews {
	text-align: center;
	margin-top: 60px;
}

/* Sound Bath FAQ */
.faq {
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	margin: 2em 0;
}
.faq .questions {
	flex-basis: 48%;
}
.faq .questions .q {
	display: block;
	position: relative;
	padding: 16px 32px 16px 0px;
	cursor: pointer;
	border-bottom: 1px solid var(--color-gold);
}
.faq .questions .q > p {
	margin: 0 !important;
	font-weight: bold;
}
.faq .questions .q::after {
	content: '+';
	position: absolute;
	right: 10px;
	top: 16px;
	font-size: 32px;
}
.faq .questions .q.active::after {
	content: '—';
	font-size: 20px;
	font-weight: bold;
	top: 15px;
}
.faq .questions .q:hover::after {
	color: var(--color-red);
}
.faq .questions .q .a {
	display: none;
	padding-top: 1em;
}
.faq .questions .q.active .a {
	display: block;
}

.faq .media {
	flex-basis: 48%;
	padding-top: 1em;
}
.faq .media .m {
	display: none;
	flex-wrap: nowrap;
	justify-content: space-between;
}
.faq .media .m.active {
	display: flex;
}
.faq .media .m * {
	width: 100%;
}
.faq .media .m *:first-child {
	margin-top: 0;
}
.faq .media .m.twocol * {
	width: 48%;
}

/* BLOG PAGE */
#bloglist {
	padding-top: 40px;
}
#bloglist::after {
	content: '';
	display: block;
	clear: both;
	height: 0;
}
#bloglist .blog-title {
	font-size: 48px;
	margin: 0px 0 20px 0;
	line-height: 1em;
	text-align: center;
}
#bloglist .subtitle {
	margin: -.5em 0 .5em 0;
	text-align: center;
	font-variant: small-caps;
	font-size: 26px;
	font-style: italic;
}
#bloglist .subtitle::before {
	content: '';
	display: block;
	border-bottom: 6px dotted;
	width: 5em;
	margin: 0.85em auto .5em auto;
	color: #4497d2;
}

#bloglist .post {
	width: calc(50% - 20px);
	float: left;
	margin: 40px 40px 0px 0;
	padding: 15px;
	border: 2px solid #ddd;
	background: #fff;
}
#bloglist .post:nth-child(2n + 1) {
	clear: both;
}
#bloglist .post:nth-child(2n + 2) {
	margin: 40px 0 0px 0;
}
#bloglist .post:nth-child(1) {
	margin-top: 0;
}
#bloglist .post:nth-child(2) {
	margin-top: 0;
}
#bloglist .post.sticky {
	background: #fffef4;
}
#bloglist .post .posttitle {
	margin: 0;
	font-size: 32px;
	font-weight: normal;
	line-height: 1.3em;
}
#bloglist .post .posttitle a {
	color: var(--color-red);
	text-decoration: none;
}
#bloglist .post .posttitle a:hover {
	color: #fe73ff;
}
#bloglist .post .meta {
	font-size: 14px;
	color: #177bc2;
	letter-spacing: 1px;
	text-transform: uppercase;
	line-height: 1em;
	font-weight: bold;
}
#bloglist .post.sticky .meta {
	display: none;
}
#bloglist .post .meta a {
	text-decoration: none;
	font-weight: normal;
	text-transform: none;
	letter-spacing: 0;
	color: #23aa1f;
}
#bloglist .post .meta a:hover {
	color: #67c565;
}
#bloglist .post .postimg {
	margin: .5em 0;
	text-align: center;
	line-height: 0;
	background: #ffffff;
	background: -moz-linear-gradient(left, #ffffff 0%, #83c4ff 50%, #ffffff 100%);
	background: -webkit-linear-gradient(left, #ffffff 0%,#83c4ff 50%,#ffffff 100%);
	background: linear-gradient(to right, #ffffff 0%,#83c4ff 50%,#ffffff 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ffffff',GradientType=1 );
}
#bloglist .post .postimg a {
	display: inline-block;
}
#bloglist .post .postimg a img {
	margin: 0 auto;
	opacity: 1;
}
#bloglist .post .postimg a:hover img {
	opacity: 0.8;
}
#bloglist .post .excerpt {
	font-size: 16px;
	line-height: 1.4em;
	margin-top: 1em;
}
#bloglist .post.sticky .excerpt {
	margin-top: .5em;
}
#bloglist .post.sticky .excerpt p:last-of-type {
	margin-bottom: 0;
}
#bloglist .post .readmore {
	display: inline-block;
	margin: 1em 0 0 0;
	text-transform: uppercase;
	font-size: 14px;
	line-height: 1.6em;
	color: #fff;
	text-decoration: none;
	padding: .3em 2em;
	border: 2px solid #fff;
	border-radius: 8px;
	background: #177bc2;
}
#bloglist .post .readmore:hover {
	background: #4497d2;
}
#bloglist .post .more-link {
	display: inline-block;
	margin: 2em 0 0 0;
	text-transform: uppercase;
	font-size: 14px;
	line-height: 1.6em;
	color: #fff;
	text-decoration: none;
	padding: .3em 2em;
	border: 2px solid #fff;
	border-radius: 8px;
	background: #177bc2;
}
#bloglist .post .more-link:hover {
	background: #4497d2;
}

#bloglist .navigation {
	display: block;
	clear: both;
	text-align: center;
	padding-top: 60px;
}
#bloglist .navigation .wp-pagenavi span:not(.current) {
	border: none;
}
#bloglist .navigation .wp-pagenavi a {
	border-radius: 5px;
}
#bloglist .navigation .wp-pagenavi a, #bloglist .navigation .wp-pagenavi span {
	padding: 5px 10px;
	color: #177bc2;
	background: #fff;
}
#bloglist .navigation .wp-pagenavi a:hover, #bloglist .navigation .wp-pagenavi span.current {
	background: #177bc2;
	color: #fff;
}
#bloglist .navigation .wp-pagenavi span.current {
	font-weight: normal;
}


/* SINGLE POST */
#post-single {
	padding: 0px 0;
}	
#post-single .postimg {
	margin-bottom: 1em;
	text-align: center;
	line-height: 0;
	background: #ffffff;
	background: -moz-linear-gradient(left, #ffffff 0%, #83c4ff 50%, #ffffff 100%);
	background: -webkit-linear-gradient(left, #ffffff 0%,#83c4ff 50%,#ffffff 100%);
	background: linear-gradient(to right, #ffffff 0%,#83c4ff 50%,#ffffff 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ffffff',GradientType=1 );
}
#post-single .postimg img {
	margin: 0 auto;
	width: auto;
	max-height: 500px;
}
#post-single .posttitle {
	font-size: 48px;
	margin: 40px 0 0px 0;
	line-height: 1em;
	text-align: center;
}
#post-single .meta {
	font-size: 14px;
	margin-bottom: 1em;
	text-align: center;
	line-height: 1em;
}
#post-single .meta a {
	text-decoration: none;
}
#post-single .meta::after {
	content: '';
	display: block;
	border-bottom: 6px dotted;
	width: 3em;
	margin: 1em auto;
	color: #4497d2;
}
#post-single ul li, #posts ol li {
	padding: .25em 0;
}

/* POST COMMENTS */
#post-comments #commentform input {
	padding: .5em;
	box-sizing: border-box;
	border: 2px solid #ddd;
	width: calc((100% - 15px) / 2);
	font-size: 18px;
	margin-bottom: 15px;
	float: left;
}
#post-comments #commentform input:first-of-type {
	margin-right: 15px;
}
#post-comments input.button {
	text-transform: uppercase;
	color: #fff;
	text-decoration: none;
	border-radius: 12px;
	border: 2px solid #177bc2;
	cursor: pointer;
	background: #4f9dd4;
}
#post-comments input.button:hover {
	background: #177bc2;
}
#post-comments #commentform textarea {
	width: 100%;
	font-size: 18px;
	font-family: var(--font-open);
	padding: .2em .5em;
	border: 2px solid #ddd;
	margin-bottom: 15px;
}
#post-comments h3 {
	font-weight: bold;
	font-size: 20px;
	line-height: 2em;
	margin: 2em 0 0 0;
	border-bottom: 3px dotted #177bc2;
	color: #177bc2;
	margin-bottom: 30px;
}
#post-comments .commentlist {
	list-style: none;
	margin: 0;
	padding: 0;
}
#post-comments .commentlist .comment {
	margin: 30px 0 0 0;
	padding: 15px 30px;
	border-bottom: 1px dotted #a5b3f0;
}
#post-comments .commentlist .comment:nth-child(6n + 1) {
	color: #f05353;
	background: #fff8f2;
}
#post-comments .commentlist .comment:nth-child(6n + 2) {
	color: #ff9000;
	background: #fffef4;
}
#post-comments .commentlist .comment:nth-child(6n + 3) {
	color: #34a434;
	background: #f7fff4;
}
#post-comments .commentlist .comment:nth-child(6n + 4) {
	color: #4497d2;
	background: #f5fdff;
}
#post-comments .commentlist .comment:nth-child(6n + 5) {
	color: #833083;
	background: #f9f7ff;
}
#post-comments .commentlist .comment:nth-child(6n + 6) {
	color: var(--color-red);
	background: #fff4fb;
}
#post-comments .commentlist .comment-author .img {
	float: left;
	width: 60px;
	height: 60px;
	margin-right: 15px;
}
#post-comments .commentlist .comment-author .author {
	font-size: 16px;
}
#post-comments .commentlist .comment-author .date {
	font-size: 14px;
}
#post-comments .commentlist .comment-text {
	clear: both;
	font-size: 16px;
	line-height: 1.3em;
	padding-top: 1em;
	color: #4a4a4a;
}
#post-comments .commentlist .children {
	list-style: none;
}

/* CONTACT FORMS */
#main .wpcf7 {
	width: 800px;
	max-width: 100%;
	margin: 2em auto;	
}
#main .wpcf7 form {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding: 1em;
	background: var(--color-gray-light);
	border: 1px solid var(--color-gold);
}
#main .wpcf7 .half {
	width: 48%
}
#main .wpcf7 .full {
	width: 100%;
}
#main .wpcf7 input {
	padding: .5em;
	box-sizing: border-box;
	border: 2px solid #ddd;
	width: 100%;
	font-size: 18px;
}
#main .wpcf7 input[type="submit"] {
	text-transform: uppercase;
	color: #fff;
	text-decoration: none;
	border-radius: 12px;
	border: 2px solid var(--color-red-dark);
	cursor: pointer;
	background: var(--color-red);
}
#main .wpcf7 input[type="submit"]:hover {
	background: var(--color-red-dark);
}
#main .wpcf7 textarea {
	width: 100%;
	font-size: 18px;
	font-family: var(--font-open);
	padding: .2em .5em;
	border: 2px solid #ddd;
}
#main .wpcf7 div.wpcf7-response-output {
	margin: 0;
	width: 100%;
}
#main .wpcf7 span.wpcf7-not-valid-tip {
	text-align: left;
	font-size: 14px;
	padding-left: .6em;
}

/* FOOTER */
#footer {
	background: var(--color-gray-light);
}
#footer .inner {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	color: var(--color-red);
	font-size: 16px;
	text-align: center;
}

#footer .social {
	width: 100%;
}
#footer .social a {
	display: inline-block;
	width: 32px;
	height: 32px;
	margin: 1em;
	color: var(--color-red);
	text-decoration: none;
	transition: .3s all;
	line-height: 32px;
	font-size: 24px;
	text-align: center;
}
#footer .social a:hover {
	color: var(--color-gray-dark);
}

#footer .copyright {
	width: 100%;
	color: var(--color-gray-dark);
}
#footer .copyright p {
	font-size: 13px;
	line-height: 1.4em;
	padding: 5px 15px;
}
#footer .copyright a {
	color: var(--color-gray-dark);
}
#footer .copyright a:hover {
	color: var(--color-red);
}

/* MISCELLANEOUS */
.video-wrapper {
	margin: 2em 0;
	max-width: 100%;
	padding: 1em;
	border: 1px solid var(--color-gold);
	background: var(--color-gray-light);
}
.video-wrapper-inner {
	float: none;
	clear: both;
	width: 100%;
	position: relative;
	padding-bottom: 56.25%;
	padding-top: 0px;
	height: 0;
}
.video-wrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

@media (max-width: 1600px) {
	.inner {
		width: 100%;
	}
}

@media (max-width: 1200px) {
}

@media (max-width: 1080px) {
	#header #main-menu {
		position: relative;
	}
	#header .mobile-menu-toggle {
		display: block;
		background: #fff;
		position: relative;
		height: 60px;
		line-height: 66px;
		padding: 0 16px;
		font-size: 20px;
		font-weight: bold;
		color: #8e8f8e;
		text-decoration: none;
		z-index: 900;
		font-family: var(--font-open);
	}
	#header .mobile-menu-toggle.active, #header .mobile-menu-toggle:hover {
		color: var(--color-red);
	}
	.menu-wrap {
		display: none;
		position: absolute;
		width: 100%;	
		clear: both;
		background: #fafafa;
		box-shadow: 0px 5px 5px #888;
	}
	.menu-wrap.active {
		display: block;
	}
	.menu {
		float: none;
		text-align: center;
		margin-top: 0;
		border-bottom: 2px solid var(--color-red);
	}
	.menu > li {
		display: block;
	}
	.menu > li.menu-item-has-children .mobile-sub-toggle {
		display: block;
		position: absolute;
		right: 0em;
		top: 0px;
		bottom: 0;
		width: 60px;
		padding: 0;
		text-align: center;
	}
	.menu > li.menu-item-has-children .mobile-sub-toggle::before {
		content: '';
		position: absolute;
		left: 20px;
		top: 20px;
		border-left: 12px solid transparent;
		border-right: 12px solid transparent;
		border-top: 12px solid #d1d1d1;
		clear: both;
		z-index: 900;
		transition: .3s all ease-in-out;
	}	
	.menu > li.menu-item-has-children .mobile-sub-toggle.active::before  {
		border-top-color: var(--color-red) !important;
		transform: rotate(180deg);
	}
	.menu > li > a {
		padding: .75em 2em;	
		height: auto;
		line-height: 1.3em;	
		border-top: 1px solid #ccc !important;
	}
	.menu > li:hover > ul {
		display: none;
	}
	.menu > li > ul.active {
		display: block;
		position: relative;
		padding: 0;
	}
	.menu > li > ul > li > a {
		border-left: none;
		border-right: none;
		text-align: center;
		padding: .75em 2em;
		background: #f9f9f9;
	}
	.menu > li > ul > li:first-of-type > a {
		padding-top: 1.25em;	
	}
	.menu > li > ul > li:last-of-type > a {
		padding-bottom: 1.25em;	
	}
	.menu > li > ul > li > a:hover {
		color: var(--color-red);
		text-decoration: none;
	}
}


@media (max-width: 980px) {
	#main {
		padding-bottom: 20px;
	}
	#main blockquote {
		margin: 1.5em 4em;
	}
	.home #main .col-left {
		flex-basis: 100%;
	}
	.home #main .col-right {
		flex-basis: 100%;
	}
	.home #main .col-right #bloglist .post {
		width: calc(50% - 10px);
		margin: 20px 20px 0px 0;
	}
	.home #main .col-right #bloglist .post:nth-child(2n+2) {
		margin: 20px 0px 0px 0;
	}
	.home #main .col-right #bloglist .post:nth-child(1) {
		margin-top: 0;
	}
	.home #main .col-right #bloglist .post:nth-child(2) {
		margin-top: 0;
	}
	#bloglist {
		padding-top: 20px;
	}
	#bloglist .post {
		width: calc(50% - 10px);
		margin: 20px 20px 0px 0;
	}
	#bloglist .post:nth-child(2n+2) {
		margin: 20px 0px 0px 0;
	}
	#bloglist .post:nth-child(2) {
		margin-top: 0;
	}
	#bloglist .navigation {
		padding: 20px 0;
	}
	#bloglist.homeblog1 .post:first-child {
		margin-bottom: 20px;
	}
	#bloglist.homeblog1 .post:nth-child(3) {
		clear: none !important;
		margin: 0 0 20px 20px;
	}
	#main .coaching-button {
		margin-bottom: 1em;
	}
}

@media (max-width: 720px) {
	.divider {
		height: 30px;
	}
	#main blockquote {
		margin: 1.5em 2em;
	}
	.home #main .col-right #bloglist .post {
		width: 100%;
		margin: 20px 0 20px 0 !important;
	}
	#bloglist .post {
		width: 100%;
		margin: 20px 0 20px 0 !important;
	}
	#footer .services {
		width: 100%;
		padding: 0 0 15px 0;
	}
	#footer .areas {
		width: 100%;
		padding: 0;
	}
}

@media (max-width: 640px) {
	#main .alignright {
		margin: 1em auto;
		float: none;	
	}
	#main .alignleft {
		margin: 1em auto;
		float: none;	
	}
	#main td .wp-caption {
		width: 100% !important;
	}
}

@media (max-width: 500px) {
	.divider {
		height: 25px;
	}
}

@media (max-width: 400px) {
	body {
		margin-top: 0;
	}
}