/*!
Theme Name: ceh-theme
Theme URI: #
Author: #
Author URI: #
Description: Theme for CEH website
Version: 1.0.0

*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Normalize
# Typography
# Elements
# Forms
# Navigation
	## Links
	## Menus
# Accessibility
# Alignments
# Clearings
# Widgets
# Content
	## Posts and pages
	## Comments
# Infinite scroll
# Media
	## Captions
	## Galleries
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
/* normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */

/* Document
	 ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
	line-height: 1.15; /* 1 */
	-webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
	 ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

 @font-face {
    font-family: Roboto;
    src: url('fonts/Roboto-Regular.ttf');
    font-weight: 400;
}

@font-face {
    font-family: RobotoMedium;
    src: url('fonts/Roboto-Medium.ttf');
    font-weight: 500;
}

@font-face {
    font-family: RobotoBold;
    src: url('fonts/Roboto-Bold.ttf');
}

@font-face {
    font-family: PlayFair;
    src: url('fonts/PlayfairDisplay-Regular.ttf');
}

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit; 
}

body {
	box-sizing: border-box;
  	font-family: Roboto, Arial, sans-serif;
  	margin: auto;
  	color: #3b3b3b;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1 {
	font-size: 2em;
	margin: 0.67em 0;
}

/* Grouping content
	 ========================================================================== */

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */

hr {
	box-sizing: content-box; /* 1 */
	height: 0; /* 1 */
	overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
	font-family: monospace, monospace; /* 1 */
	font-size: 1em; /* 2 */
}

/* Text-level semantics
	 ========================================================================== */

/**
 * Remove the gray background on active links in IE 10.
 */

a {
    background-color: transparent;
    outline: none;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */

abbr[title] {
	border-bottom: none; /* 1 */
	text-decoration: underline; /* 2 */
	text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
	font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
	font-family: monospace, monospace; /* 1 */
	font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
	font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sub {
	bottom: -0.25em;
}

sup {
	top: -0.5em;
}

/* Embedded content
	 ========================================================================== */

/**
 * Remove the border on images inside links in IE 10.
 */

img {
	border-style: none;
}

/* Forms
	 ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
	font-family: inherit; /* 1 */
	font-size: 100%; /* 1 */
	line-height: 1.15; /* 1 */
	margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */

button,
input { /* 1 */
	overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select { /* 1 */
	text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
	-webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
	border-style: none;
	padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
	outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
	padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *		`fieldset` elements in all browsers.
 */

legend {
	box-sizing: border-box; /* 1 */
	color: inherit; /* 2 */
	display: table; /* 1 */
	max-width: 100%; /* 1 */
	padding: 0; /* 3 */
	white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
	vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */

textarea {
	overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */

[type="checkbox"],
[type="radio"] {
	box-sizing: border-box; /* 1 */
	padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
	-webkit-appearance: textfield; /* 1 */
	outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
	-webkit-appearance: button; /* 1 */
	font: inherit; /* 2 */
}

/* Interactive
	 ========================================================================== */

/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */

details {
	display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
	display: list-item;
}

/* Misc
	 ========================================================================== */

/**
 * Add the correct display in IE 10+.
 */

template {
	display: none;
}

/**
 * Add the correct display in IE 10.
 */

[hidden] {
	display: none;
}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
optgroup,
textarea {
	color: #404040;
	font-family: sans-serif;
	font-size: 16px;
	font-size: 1rem;
	line-height: 1.5;
}

h1, h2, h3, h4, h5, h6 {
	clear: both;
	font-family: PlayFair, Arial, Helvetica, sans-serif;
    color: #3b3b3b;
}

p {
	margin-bottom: 1em;
	color: #3b3b3b;
    font-family: Roboto, Arial, Helvetica, sans-serif;
}

main ul li {
    margin-bottom: 5px;
}

dfn, cite, em, i {
	font-style: italic;
}

blockquote {
	margin: 0 1.5em;
}

address {
	margin: 0 0 1.5em;
}

pre {
	background: #eee;
	font-family: "Courier 10 Pitch", Courier, monospace;
	font-size: 15px;
	font-size: 0.9375rem;
	line-height: 1.6;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.6em;
}

code, kbd, tt, var {
	font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
	font-size: 15px;
	font-size: 0.9375rem;
}

abbr, acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}

mark, ins {
	background: #fff9c0;
	text-decoration: none;
}

big {
	font-size: 125%;
}

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
html {
	box-sizing: border-box;
}

*,
*:before,
*:after {
	/* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
	box-sizing: inherit;
}

body {
	background: #fff;
	/* Fallback for when there is no custom background color defined. */
}

hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
}

ul, ol {
	margin: 0 0 1.5em 3em;
}

ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}

li > ul,
li > ol {
	margin-bottom: 0;
	margin-left: 1.5em;
}

dt {
	font-weight: bold;
}

dd {
	margin: 0 1.5em 1.5em;
}

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

figure {
	margin: 1em 0;
	/* Extra wide images within figure tags don't overflow the content area. */
}

table {
	margin: 0 0 1.5em;
	width: 100%;
}

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	border: 1px solid;
	border-color: #ccc #ccc #bbb;
	border-radius: 3px;
	background: #e6e6e6;
	color: rgba(0, 0, 0, 0.8);
	font-size: 12px;
	font-size: 0.75rem;
	line-height: 1;
	padding: .6em 1em .4em;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
	border-color: #ccc #bbb #aaa;
}

button:active, button:focus,
input[type="button"]:active,
input[type="button"]:focus,
input[type="reset"]:active,
input[type="reset"]:focus,
input[type="submit"]:active,
input[type="submit"]:focus {
	border-color: #aaa #bbb #bbb;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
	color: #666;
	border: 1px solid #ccc;
	border-radius: 3px;
	padding: 3px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
	color: #111;
}

select {
	border: 1px solid #ccc;
}

textarea {
	width: 100%;
}

/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important; /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	clip-path: none;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
	/* Above WP toolbar. */
}

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
	outline: 0;
}

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
	display: inline;
	float: left;
	margin-right: 1.5em;
}

.alignright {
	display: inline;
	float: right;
	margin-left: 1.5em;
}

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
	content: "";
	display: table;
	table-layout: fixed;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
	clear: both;
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widget {
	margin: 0 0 1.5em;
    /* Make sure select elements fit in widgets. */
    padding: 0 10px;
}

.widget select {
	max-width: 100%;
}

/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/
.sticky {
	display: block;
}

.hentry {
	margin: 0 0 1.5em;
}

.updated:not(.published) {
	display: none;
}

.page-content,
.entry-content,
.entry-summary {
	margin: 1.5em 0 0;
}

.page-links {
	clear: both;
	margin: 0 0 1.5em;
}

/*--------------------------------------------------------------
# Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
	/* Theme Footer (when set to scrolling) */
	display: none;
}

/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */
.infinity-end.neverending .site-footer {
	display: block;
}

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
	max-width: 100%;
}

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
	display: inline-block;
}

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}

.wp-caption-text {
	text-align: center;
}

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery {
	margin-bottom: 1.5em;
}

.gallery-item {
	display: inline-block;
	text-align: center;
	vertical-align: top;
	width: 100%;
}

.gallery-columns-2 .gallery-item {
	max-width: 50%;
}

.gallery-columns-3 .gallery-item {
	max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
	max-width: 25%;
}

.gallery-columns-5 .gallery-item {
	max-width: 20%;
}

.gallery-columns-6 .gallery-item {
	max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
	max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
	max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
	max-width: 11.11%;
}

.gallery-caption {
	display: block;
}

/*--------------------------------------------------------------
## Header
--------------------------------------------------------------*/

.header-top {
    padding: .5rem 15px;
    display: flex;
    justify-content: flex-end; 
}

.header-top .navbar-nav {
    margin-right: 2rem;
}

.header-top .navbar a {
    color: #959665;
}

.header-top .navbar a.active, .header-top .navbar a:hover {
    color: #9fb33c;
    transition: all 0.2s ease-in;
}

.header-social, .footer-social {
    display: flex;
    align-items: center;
    margin: 0 10px;
}

.header-social > div, .footer-social > div {
    width: 20px;
    height: 20px;
    margin: 0 10px;
    display: flex;
}

.header-social .fab {
    color: #959665;
    transition: all .2s ease-in;
}

.header-social .fab:hover {
    color: #9fb33c;
}

.header-phone {
    display: flex;
    align-self: center;
    margin-left: 20px;
    padding: 11px 25px;
    border: 1px solid #aabf46;
    border-radius: 30px;
    background: #f5f5f5;
    position: relative;
    color: #959665;
}

.header-phone:before {
    content: "";
    position: absolute;
    top: 17px;
    bottom: auto;
    left: auto;
    right: -6px;
    border-style: solid;
    border-width: 5px 0 5px 6px;
    border-color: transparent #aabf46;
    display: block;
}

.header-phone:after {
    content: "";
    position: absolute;
    top: 18px;
    bottom: auto;
    left: auto;
    right: -5px;
    border-style: solid;
    border-width: 4px 0 4px 6px;
    border-color: transparent #f5f5f5;
    display: block;
}

.header-phone .phone-icon {
    margin-right: 15px;
}

.header-bottom {
    position: relative;
    padding: 0;
}

.logo {
    /* position: absolute; */
    margin: 5px 0 0 0;
    padding: 0;
    z-index: 999;
    width: 350px;
    height: auto;
}

.header-top .navbar-nav .menu-item a {
    padding: 0 1rem;
}

.header-bottom .navbar-nav .menu-item a {
    padding: 0 1rem;
    text-transform: uppercase;
    color: #fff;
    transition: .2s all ease-in;
}

.header-bottom .navbar-nav .menu-item a:hover {
	text-decoration: none;
	color: #3b3b3b;
}

.navbar-light .navbar-nav .menu-item:focus, .navbar-light .navbar-nav .menu-item:hover {
	color: rgba(0,0,0,.7);
}

.header-bottom .navbar {
    padding: .4rem 1rem;
    background: #959665;
}

.header-bottom a {
    color: #fff;
}

.menu-main-menu-container {
	margin-left: auto;
}

/*--------------------------------------------------------------
## Content
--------------------------------------------------------------*/

.jumbotron.page-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
}

.home-banner {
    background: url('img/home-banner.png') no-repeat center 25%;
    background-size: cover;
    padding-bottom: 8rem;
}

.contact-banner {
    background: url('img/home-banner.png') no-repeat center 25%;
    background-size: cover;
}

.event-banner {
    background-size: cover !important;
}

.training-banner {
    background: url('img/training-banner.png') no-repeat center bottom;
    background-size: cover;
}

.locations-banner {
    background: url('img/locations-header.png') no-repeat center bottom;
    background-size: cover;
}

.choose-banner {
    background: url('img/why-choose-ceh-banner.png') no-repeat center bottom;
    background-size: cover;
}

.media-banner {
    background: url('img/media-header.png') no-repeat center bottom;
    background-size: cover;
}

.group-banner {
    background: url('img/group-header.png') no-repeat center;
    background-size: cover;
}

.specialty-programs-banner {
    background: url('http://thecenterforemotionalhealth.com/wp-content/uploads/2018/12/specialty-programs-hero.jpg') no-repeat center;
    background-size: cover;
    padding: 150px 0;
}

.specialty-programs-banner .page-title {
    margin: 1rem 0;
    padding: 2rem 2rem;
    background-color: rgba(0, 0, 0, .2);
}

/* .group-sub-banner {
    background: url('img/group-subbanner.png') no-repeat;
    background-size: cover;
    background-position: 50% 0;
} */

.page-banner {
    margin-bottom: 0;
}

.page-title {
    margin: 7rem 0 1rem;
    color: #fff;
    font-family: PlayFair, Arial, Helvetica, sans-serif;
    padding: 1rem 1rem;
    background-color: rgba(255, 255, 255, .2);
}

.group-sub-banner .page-title {
    background-color: rgba(0, 0, 0, .2);
}

.contact-banner .page-title, .event-banner .page-title {
    padding: 1rem 3rem;
    margin: 3rem auto;
}

.page-title h1 {
    font-size: 3rem;
    color: #fff;
    margin: 0;
}

.group-banner .page-title {
    background-color: rgba(0, 0, 0, .2);
}

.cta-button {
    background: #98ae2e;
    border-radius: 30px;
    color: #fff;
    padding: 15px 25px;
    border: 0;
    cursor: pointer;
    min-width: 200px;
    font-family: RobotoMedium, Arial, Helvetica, sans-serif;
    letter-spacing: 1.4px;
    margin-top: 20px;
    font-size: .9rem;
}

a.cta-button {
    display: inline-block;
}

a.cta-button:hover {
    text-decoration: none;
    color: #fff;
}

.the-content .cta-button {
    text-transform: capitalize;
}

.cta-button .fa-angle-right {
    margin-left: 10px;
}

.hero-icons {
    padding: 30px 0 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-icon {
    padding: 0 10px;
}

.hero-icon a {
    color: rgba(255, 255, 255, .6);
    font-size: 20px;
}

.hero-icon a:hover {
    color: white;
}

.sub-hero {
    background-size: cover;
    position: relative;
    padding: 80px 0 50px;
}

.sub-hero-content {
    margin-top: 20px;
}

.sub-hero:before, .counters-section:before {
    content: "";
    height: 100px;
    width: 100px;
    background: url('img/flower.png') no-repeat;
    background-size: contain;
    position: absolute;
    top: -50px;
    left: calc(50% - 50px);
}

.locations-sub-hero:before {
    display: none;
}

.sub-hero-services:before {
    display: none;
}

.sub-hero-title {
    font-family: PlayFair, Arial, Helvetica, sans-serif;
    max-width: 800px;
    margin: 0 auto;
}

.sub-hero-title h2 {
    font-size: 40px;
    color: #3b3b3b;
}

.sub-hero-image img {
    max-height: 300px;
}

.sub-hero-home {
    background: url('img/sub-hero.png') no-repeat center;
    background-size: cover;
    margin-bottom: 10px;
}

.sub-hero-contact .sub-hero-content {
    margin: 30px auto;
    text-align: center;
}

.sub-hero-page {
    background: #f9f9f7 url('img/wave-bg-small.png') no-repeat center top;
    background-size: cover;
}

.sub-hero-group-program {
    /* background: url('img/sub-hero-group-2.png') no-repeat center bottom, url('img/sub-hero-group.png') no-repeat center top;
    background-size: 100% 60%; */
    background: url('img/wave-bg-small.png') no-repeat center top;
    background-position-y: -150px;
}

.locations-sub-hero {
    background: url('img/wave-bg-small.png') no-repeat center top;
    background-size: cover;
    padding-bottom: 100px;
}

.wcc-sub-hero {
    background: url('img/wave-bg.png') no-repeat center top;
    background-size: cover;
    padding-bottom: 100px;
    margin-top: 10px;
}

.wcc-sub-hero::before {
    display: none;
}

.sub-hero-services {
    background-position-y: -250px;
}

.sub-hero-top {
    margin-bottom: 100px;
}

.sub-hero-bottom {
    margin: 50px auto;
}

.sub-hero-bottom.services {
    margin: 50px auto;
}

.media-page .sub-hero-page {
    background: url('img/bubble-bg.png') no-repeat;
    padding-bottom: 0;
    background-size: cover;
}

.dual-column > [class*="col-"] {
    margin: 0;
    padding: 0;
}

.dual-column {
    margin-bottom: 10px;
}

.dual-column-image-home {
    /* background: url('img/woman.png') no-repeat center; */
    background-size: cover;
}

.dual-column-content {
    background: #ddded3;
    padding: 8rem !important;
    flex-flow: column;
}

.dual-column.workshop {
    margin-bottom: 0;
}

.dual-column.image-right {
    flex-flow: row-reverse;
}

.workshop .dual-column-content {
    padding: 3rem 5rem !important;
}

.image-right.workshop .dual-column-image {
    background: url('img/workshop-1.png') no-repeat center;
    background-size: cover;
}

.image-left.workshop .dual-column-image {
    background: url('img/workshop-2.png') no-repeat center;
    background-size: cover;
}

.section-title {
    position: relative;
    font-size: 3rem;
    margin-bottom: 5rem;
}

.section-title:after {
    content:"";
    width: 197px;
    height: 18px;
    background: url('img/title-separator.png') no-repeat center;
    position: absolute;
    bottom: -40px;
    left: calc(50% - 98.5px);
}



.workshop .section-title {
    margin-bottom: 2rem;
}

.workshop .section-title:after {
    display: none;
}

.dual-column .section-title:after{
    left: 0;
}

.single-column .section-title:after {
    display: none;
}

.section {
    padding: 3rem 0;
}

.disorder-list {
    padding-left: 10px;
    margin-bottom: 20px;
}

.disorder-content ul {
    display: table;
    margin: 0 auto;
}

.disorder-list p, .programs-column p {
    margin-bottom: .5em;
    font-size: .9em;
}

.programs-column p img {
    margin-top: 10px;
}

.programs-column h5 {
    font-family: MyriadPro, Arial, Helvetica, sans-serif;
    font-weight: bold;
    font-size: 1em;
}

/***** Staff Section Home *****/

.staff-slider-container {
    background: #e9eae2;
    margin-bottom: 10px;
}

.wcc-slider .staff-slider-container {
    background: transparent;
}

.home-staff-single a:hover {
    text-decoration: none;
}

.staff-slider .clinical-staff-single {
    max-width: 100%;
}

.staff-slider .clinical-staff-single img {
    max-width: 100%;
}

.staff-slider .slick-slide {
    padding: 0 20px;
}

.staff-slider .slick-center img {
    transform: scale(1.2);
}

.staff-slider .slick-track {
    margin: 50px auto 0;
}

.staff-slider .slick-slide .staff-title {
    display: none;
}

.staff-slider .slick-center .staff-title {
    font-size: 1rem;
    margin-top: 40px;
    display: block;
    padding-bottom: 40px;
}

.staff-slider .slick-center .staff-title:after {
    content: "";
    position: absolute;
    border: 1px solid #cdcec5;
    width: 80px;
    height: 1px;
    bottom: 0;
    left: calc(50% - 40px);
}

/***** Single Column Content *****/

.single-column {
    /* background: url('img/section-bg.png') no-repeat center; */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 3rem 4rem;
    display: flex;
    align-items: center;
    min-height: 600px;
}

.single-column .section-title {
    margin-bottom: 3rem;
}

.media-home {
    background: url('img/home-blog-bg.png') no-repeat bottom;
    background-size: 100% 50%;
    margin-top: 10px;
    margin-bottom: 10px;
}

.media-home .section-title:after, .home-testimonials .section-title:after {
    background: url('img/title-separator-green.png') no-repeat center;
}

.home-posts {
    margin-top: 30px;
}

.home-posts .small-media-block {
    text-align: left;
}

.home-single-post img {
    width: 100%;
}

.excerpt-title {
    font-size: 1rem;
    color: #545454;
    margin: 10px 0;
    font-family: RobotoBold, Arial, Helvetica, sans-serif;
}

.blog-link-button {
    margin-top: 30px;
}

.home-notice-container {
    position: relative;
    min-height: 500px;
}

.notice {
    position: absolute;
    left: calc(50% - 140px);
    width: 280px;
    height: 280px;
    align-self: center;
    background: #959966;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notice p {
    font-family: PlayFair, Arial, Helvetica, sans-serif;
    color: #fff;
    font-size: 3rem;
    text-align: left;
    margin-bottom: 0;
    line-height: 1;
}

.dual-column-image-left {
    /* background: url('img/notice-left.png') no-repeat center; */
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.dual-column-image-right {
    /* background: url('img/notice-right.png') no-repeat center; */
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.locations {
    background: url('img/sub-hero.png') no-repeat center;
    background-size: cover;
    padding: 50px 0;
}

.locations-page .address-email {
    font-size: inherit;
    color: #768534;
    margin: 10px 0;
    word-break: break-all;
}

.contact-page .locations {
    background: #f8f8f6;
    padding: 90px 0;
}

.sub-hero-contact .consultation-form {
    padding: 0px 30px 10px !important;
}

.locations .cta-button {
    margin-top: 30px;
}

.home-testimonials {
    background: #f4f4f0;
    margin-top: 10px;
    margin-bottom: 10px;
}

.home-contact {
    background: url('img/home-contact-bg.png') no-repeat center;
    background-size: cover;
    min-height: 500px;
    display: block;
}

.footer {
    background: #939b60;
    padding: 50px 0;
}

.footer .widgets {
    margin-bottom: 40px;
    display: flex;
    justify-content: space-between;
    flex: 1 1 100%;
}

.footer .widgets .widget {
    flex: 1 1 20%;
}

.footer-phone, .footer-address-1, .footer-address-2, .footer-address-3 {
    color: #e5e9c6;
    font-size: 15px;
    padding: 10px 0;
    border-bottom: 1px solid #fff;
}

.footer-address-3 {
    border-bottom: 0;
}

.footer-social {
    justify-content: flex-start;
    margin: 30px 0 0 0;
}

.footer-social .fab {
    color: #fff;
}

.footer ul {
    margin: 20px 0 0 0;
    list-style-type: none;
}

.footer ul li {
    color: #ffffff;
    margin-bottom: 10px;
}

.footer ul li a {
    color: #e5e9c6;
    text-decoration: none;
}

.footer ul li a:hover {
    color: #fff;
}

.footer h4 {
    color: #fff;
    font-size: 1rem;
    text-transform: uppercase;
    font-family: Roboto, Arial, Helvetica, sans-serif;
}


.footer-copyright p {
    color: #fff;
    font-size: .8rem;
    margin-top: 30px;
}

.small-title {
    font-size: 1rem;
}

.dual-column-narrow-image-right {
    flex-direction: row-reverse;
}

.grey-bg {
    background-color: #f9f9f7;
}

.dual-column-narrow {
    margin: 0 auto;
    padding: 20px 0;
}


.dual-column-narrow:last-child {
    margin-bottom: 100px;
}

.locations-page .dual-column-narrow:last-child {
    margin-bottom: 50px;
}

.dual-column-narrow .image {
    text-align: center;
}

.dual-column-narrow .image img {
    max-width: 400px;
    width: 100%;
}

.training-page .dual-column-narrow .image img {
    max-width: 100%;
}

.the-content ul {
    list-style-image: url('img/li-bullet.png');
    list-style-position: inside;
    margin: 0;
}

.locations-page .the-content ul {
    list-style-image: none;
    margin: 1em 0 1.5em 3em;
}

.locations-page .address-item + p {
    margin-left: 44px;
}

.schedule-consultation {
    background: url('img/sub-hero.png') no-repeat top center;
    background-position-y: -300px;
    background-color: #f9f9f7;
    background-size: cover;
}

.consultation-form-container {
    padding: 50px 0;
}

.consultation-form-container > .row {
    align-items: center;
}

.consultation-form {
    padding: 40px 30px 10px !important;
    font-family: pl
}

.consultation-form .form-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
    font-family: PlayFair, Arial, Helvetica, sans-serif;
    color: #3b3b3b;
}

.consultation-form label, .consultation-form input {
    width: 100%;
}

.consultation-form select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: #fff;
}

.consultation-form input, .consultation-form select {
    border: 2px solid #c7c7c6;
    padding: 5px 15px;
    color: #919191;
    border-radius: 0;
}

.form-image-left {
    text-align: right;
}

.consultation-form {
    min-height: 600px;
    background: #fff;
    padding: 30px;
}

.sub-hero-contact .consultation-form {
    background: transparent;
}

.nf-form-title {
    text-align: center;
    margin-bottom: 20px;
    display: block;
}

.nf-form-title h5 {
    font-size: 2rem;
}

.nf-form-fields-required {
    display: none;
}

.nf-field-container {
    margin-bottom: 15px;
}

.consultation-form .submit-container {
    text-align: center;
}

.consultation-form input[type="button"] {
    background: #98ae2e;
    border-radius: 30px;
    color: #fff;
    padding: 15px 25px;
    border: 0;
    cursor: pointer;
    min-width: 200px;
    font-family: RobotoMedium, Arial, Helvetica, sans-serif;
    letter-spacing: 1.4px;
    margin-top: 20px;
    font-size: .9rem;
    text-transform: uppercase;
}

.header-separator-top {
    margin-bottom: .5rem;
}

.media-block {
    margin: 30px auto 50px;
}

.small-media-block {
    background-color: #ffffff;
    height: 100%;
    display: flex;
    flex-flow: column;
}

.media-content {
    padding: 10px 20px;
    height: 100%;
    display: flex;
    flex-flow: column;
}

.media-type {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.media-type img {
    height: 16px;
}

.media-type p {
    margin: 0 0 0 5px;
    line-height: 13px;
    font-size: .9rem;
}

.topic-description {
    font-size: .9rem;
    margin-bottom: 20px;
}

.topic-title {
    font-weight: 700;
    font-family: RobotoBold, Arial, Helvetica, sans-serif;
    font-size: 1rem;
}

.show-preview {
    font-style: italic;
    font-size: .9rem;
    margin: 10px 0;
}

.name-date {
    margin-top: auto;
}

.show-name, .air-date {
    text-align: right;
    font-size: .8rem;
    font-weight: 600;
    word-wrap: break-word;
}

.show-name {
    margin-bottom: 5px;
}

.media-page .button-container {
    bottom: -27px;
}

.magazine-row, .internet-row {
    padding: 100px 0 50px;
}

.magazine-content .small-media-block, .media-archive .small-media-block {
    box-shadow: 5px 5px 26px -5px rgba(223,222,222,1);
}

.magazine-row .button-container, .internet-row .button-container {
    bottom: 0;
}

.small-media-block-container {
    margin-bottom: 30px;
}

.radio-row {
    padding: 50px 0 0 0;
    background: url("img/bubble-bg.png") no-repeat;
    background-size: cover;
}

.internet-row .media-block .row {
    margin-bottom: 50px;
}

.service {
    display: flex;
    flex-flow: column;
    align-items: center;
}

.service .service-title {
    font-family: RobotoBold, Arial, Helvetica, sans-serif;
    margin: 20px 0;
    font-size: 1.2rem;
}

.service p {
    text-align: center;
    font-size: .8rem;
}

.service .cta-button {
    min-width: 0;
    padding: 10px 25px;
}

.service img {
    max-height: 60px;
}

.address-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.address-item .address {
    padding: 0 0 0 20px;
}

.address-title {
    font-size: 1.6rem;
    line-height: 1.6rem;
    font-family: PlayFair, Arial, Helvetica, sans-serif;
    margin-bottom: 20px;
}

.address p {
    font-size: .8rem;
    margin-bottom: .5rem;
    line-height: .8rem;
    color: #697a16;
    font-weight: 600;
}

ul.disorder-type-address {
    margin: 20px 0 0 0;
}

ul.disorder-type-address li {
    font-size: .8rem;
    line-height: 1rem;
}

.contact-page .address-item {
    justify-content: center;
    text-align: center;
}

.contact-page .address-item .address {
    padding: 0;
}

.address-email {
    font-size: .8rem;
    margin: 10px 0 30px;
}

.address-phone {
    font-weight: 600;
    font-size: 1.2rem;
}

.founder-image img {
    text-align: center;
    max-height: 300px;
}

h4.founder-title {
    font-family: RobotoBold, Arial, Helvetica, sans-serif;
    font-weight: 600;
}

.founder-info .staff-position {
    padding-bottom: 20px;
    margin-bottom: 20px;
    position: relative;
    text-align: left;
}

.founder-info .staff-position:after {
    content: "";
    border-bottom: 1px solid #a7a999;
    width: 80px;
    position: absolute;
    bottom: 0;
    left: 0;
}

.staff {
    margin-bottom: 10px;
}

.staff .staff-title:after {
    content: "";
    border-bottom: 1px solid #a7a999;
    width: 80px;
    position: absolute;
    bottom: 0;
    left: calc(50% - 40px);
}

.staff-title {
    font-family: Roboto, Arial, Helvetica, sans-serif;
    font-weight: 600;
    font-size: 1.4rem;
    position: relative;
    padding-bottom: 10px;
}

.staff-position {
    color: #8b9b52;
    font-style: italic;
    font-weight: 600;
    line-height: 1.2rem;
    margin-bottom: 10px;
    text-align: center;
}

.staff-text .cta-button {
    min-width: 0;
    padding: 10px 25px;
    font-weight: 300;
    font-family: Roboto, Arial, Helvetica, sans-serif;
}

.staff .staff-text .cta-button {
    margin: 0;
}

.senior-staff-row {
    display: flex;
}

.single-senior-staff {
    display: flex;
    flex: 50%;
    padding: 0 10px;
    text-align: center;
}

.senior-staff .round-image {
    max-height: 200px;
}

.staff .staff-text {
    padding: 0 10px;
}

.staff .staff-text p {
    font-size: .9rem;
}

.clinical-staff {
    background: #f8f8f6;
}

.clinical-staff-profiles, .administrative-staff-profiles {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.clinical-staff-single, .administrative-staff-single {
    display: flex;
    flex: 1 1 33.33%;
    flex-flow: column;
    padding: 10px;
    align-items: center;
}

.clinical-staff-single .round-image, .administrative-staff-single .round-image {
    max-width: 250px;
    margin-bottom: 20px;
}

.administrative-staff {
    padding-bottom: 8rem;
}


/***** SINGLE STAFF PROFILE PAGE *****/

.staff-page-single .page-banner {
    background: url('img/home-banner.png') no-repeat center 15%;
    background-size: cover;
}

.single-staff .founder-image img {
    width: auto;
    max-height: 350px;
}

.single-staff .founder-image {
    text-align: center;
}

.single-staff .staff-text p {
    margin-bottom: .5em;
    font-size: .9em;
}

.staff-bio {
    background: #f8f8f6;
    margin-bottom: 10px;
}

.staff-experience {
    background: #f9f6e6;
    margin-bottom: 10px;
}

.staff-connect {
    background: #eff5e3;
    margin-bottom: 10px;
}

.staff-cv {
    font-style: italic;
    font-family: Roboto, Arial, sans-serif;
}

.staff-cv a {
    display: flex;
    color: #687d21;
}

.staff-cv a img {
    margin-right: 10px;
}

.staff-email p, .staff-appointment p {
    margin-bottom: 0;
}

/***** MEDIA QUERIES *****/

/* @media (min-width: 1200px) {
    .container {
        max-width: 1600px;
    }
} */

/***** DISORDERS *****/

.disorder-content h1 {
    position: relative;
    font-size: 3rem;
    margin-bottom: 5rem;
}

.disorder-content h1::after {
    content: "";
    width: 197px;
    height: 18px;
    background: url('img/title-separator.png') no-repeat center;
    position: absolute;
    bottom: -40px;
    left: calc(50% - 98.5px);
}

.disorder-page-single .page-title {
    background-color: rgba(0, 0, 0, .2);
}

/***** SPECIALTY PROGRAMS *****/

.sub-hero-specialty-programs {
    background: #bbcc85;
    margin-bottom: 10px;
}

.sub-hero-specialty-programs p {
    font-family: PlayFair, Helvetica, Arial, sans-serif;
    font-style: italic;
    font-size: 2.5rem;
    color: #3b3b3b;
}

.large-disorder-box, .locations-page-bottom-content {
    padding: 30px;
    margin-bottom: 10px;
    background: url('img/sub-hero.png') no-repeat center;
    background-size: cover;
}

.locations-page-bottom-content {
    margin-bottom: 0;
}

.disorder-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.disorder-lists {
    margin: 30px 0;
}

.disorder-lists ul {
    margin: 0;
}

.disorder-lists ul li a, .disorder-lists ul li {
    color: #7da974;
}

.large-disorder-box h1 {
    font-size: 40px;
    word-wrap: break-word;
}

.large-disorder-box.second-box {
    background: #e3c06d;
    background: -moz-linear-gradient(left, #e3c06d 0%, #eed895 100%);
    background: -webkit-linear-gradient(left, #e3c06d 0%,#eed895 100%);
    background: linear-gradient(to right, #e3c06d 0%,#eed895 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e3c06d', endColorstr='#eed895',GradientType=1 );
}

.large-disorder-box.third-box, .sixth-box {
    background: #bbcb86;
    background: -moz-linear-gradient(left, #bbcb86 0%, #c4d47a 100%);
    background: -webkit-linear-gradient(left, #bbcb86 0%,#c4d47a 100%);
    background: linear-gradient(to right, #bbcb86 0%,#c4d47a 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#bbcb86', endColorstr='#c4d47a',GradientType=1 );
}

.fifth-box {
    background: #efdb99;
    background: -moz-linear-gradient(left, #efdb99 0%, #f1deab 100%);
    background: -webkit-linear-gradient(left, #efdb99 0%,#f1deab 100%);
    background: linear-gradient(to right, #efdb99 0%,#f1deab 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#efdb99', endColorstr='#f1deab',GradientType=1 );
}

.fourth-box, .seventh-box {
    background: url('img/disorder-4-bg.png') no-repeat center;
    background-size: cover;
}

.second-box .disorder-text p, .third-box .disorder-text p {
    margin-bottom: 20px;
}

.second-box .disorder-text ul li, .third-box .disorder-text ul li {
    color: #000;
}

.second-box .disorder-text ul li a {
    color: #705616;
}

.third-box .disorder-text ul li a {
    color: #708429
}

.second-box .bottom-section-content, .fifth-box .row, .seventh-box .row {
    flex-direction: row-reverse;
}

.small-disorder-box {
    padding: 50px 0;
    margin-bottom: 10px;
}

.small-disorder-box .title-separator {
    margin-bottom: 20px;
}

.why-choose-text-left h4 {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
}

.why-choose-text-left h4 img {
    max-height: 22px;
    margin-left: 10px;
}

.why-choose-text-left p {
    text-align: right;
    padding-right: 44px;
}

.why-choose-text-right h4 {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
}

.why-choose-text-right h4 img {
    max-height: 22px;
    margin-right: 10px;
}

.why-choose-text-right p {
    text-align: left;
    padding-left: 44px;
}

.locations-sub-hero .staff-slider-container {
    background: transparent;
    margin-top: 100px;
}

.locations-sub-hero .staff-slider-container .slick-prev:before, .locations-sub-hero .staff-slider-container .slick-next:before {
    color: #000;
}

.locations-sub-hero .staff-slider-container .staff-slider .slick-center .staff-title {
    padding-bottom: 0;
}

.locations-sub-hero .staff-slider-container .staff-slider .slick-center .staff-title:after {
    display: none;
}

.locations-sub-hero.why-choose-ceh-page {
    background-position-y: -150px;
}

.three-columns-image-middle {
    padding-bottom: 50px;
}

.why-choose-ceh-page .staff-slider-container {
    padding-bottom: 1rem;
}

.gallery-top {
    margin-top: 50px;
    padding: 100px 0 50px;
    background: url('img/why-choose-ceh-bg.png') no-repeat center bottom;
    background-position-y: 0;
    background-size: cover;
}

#wpsm_counter_b_row_695 > div {
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
}

#wpsm_counter_b_row_695 > div > div:last-of-type {
    display: none;
}

#wpsm_counter_b_row_695 > div > div:nth-of-type(5) .wpsm_counterbox::after {
    display: none;
}

.counters-section {
    position: relative;
    background: #e2bc68;
    background: -moz-linear-gradient(left, #e2bc68 0%, #efd686 100%);
    background: -webkit-linear-gradient(left, #e2bc68 0%,#efd686 100%);
    background: linear-gradient(to right, #e2bc68 0%,#efd686 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e2bc68', endColorstr='#efd686',GradientType=1 );
}

.counters-section span.counter, .counters-section .wpsm_count-title {
    font-family: playfair, Helvetica, Arial, sans-serif !important;
}

#wpsm_counter_b_row_695 .wpsm_counterbox .wpsm_number {
    font-size: 40px !important;
}

#wpsm_counter_b_row_695 .wpsm_counterbox .wpsm_count-title {
    text-transform: uppercase;
}

#wpsm_counter_b_row_695 .wpsm_counterbox {
    padding: 0 10px;
}

.wpsm_counterbox:after {
    content: url('http://thecenterforemotionalhealth.com/wp-content/uploads/2018/11/counters-border.png');
    position: absolute;
    right: 0;
    top: 35%;
}

.nf-field-element textarea {
    height: 100px !important;
}

#wpsm_counter_b_row_695 .wpsm_counterbox .wpsm_count-title {
    text-transform: inherit;
}

#wpsm_counter_b_row_695 .wpsm_row:not(:nth-last-child(2)) span.counter::after {
    content: '%';
}

.gallery.row {
    margin-top: 0;
    margin-bottom: 0;
}

.carousel-container {
    padding: 0;
}

/***** MOBILE MENU *****/

.navmenu-fixed-left {
    background-color: #959665;
}

#menu-mobile-menu {
    margin: 0;
    padding: 50px;
}

#menu-mobile-menu li a {
    color: #fff;
    font-size: 18px;
}

/***** EVENT PAGE *****/

.event-page .sub-hero {
    padding-bottom: 20px;
}

.event-data p {
    margin-bottom: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.event-data span {
    padding: 0 30px;
    margin: 10px 0;
}

.event-page .event-content {
    background: #F7F7F5;
    margin-top: 15px;
    margin-bottom: 15px;
    padding-bottom: 40px;
}

.event-page .cta-button {
    text-align: center;
}

.event-register-link {
    text-align: center;
}

.speakers-row {
    background: url('img/sub-hero.png') no-repeat center;
    background-size: cover;
    padding: 50px 0;
    margin-bottom: 15px;
}

.speaker-img img {
    max-width: 300px;
    height: auto;
}

.speaker-text .position {
    color: #8b9b52;
    margin-bottom: 0;
}

.speaker-text .speaker-name {
    font-family: Roboto, Arial, Helvetica, sans-serif;
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.speaker-text .speaker-name::after {
    content: "";
    border-bottom: 1px solid #a7a999;
    width: 80px;
    position: absolute;
    bottom: 0;
    left: 0;
}

/***** EVENTS LIST *****/
.events-list {
    padding-top: 30px;
}

.events-list .sub-hero-content .dual-column-narrow {
    margin-bottom: 50px;
}

.event-excerpt p {
    margin-bottom: 0;
}

.cta-button-light {
    background-color: #ADBD92;
}

.event-buttons a {
    text-align: center;
    font-weight: normal;
    width: auto;
    min-width: 0;
    margin-right: 10px;
    font-family: Roboto, Arial, Helvetica, sans-serif;
}

p.speakers {
    margin-top: 20px;
}

p.cost {
    font-size: 1.3rem;
    margin-top: 20px;
}

@media (min-width: 1600px) {
    .sub-hero-group-program {
        background-size: cover;
    }

    .sub-hero-top {
        margin-bottom: 0;
    }

    #group-programs-empty-block {
        min-height: 600px;
    }

    .workshop .dual-column-content {
        display: flex;
        min-height: 450px;
        justify-content: center;
        align-items: center;
    }

    .workshop .dual-column-content .the-content {
        max-width: 600px;
    }

    .dual-column-narrow .image img {
        max-width: 100%;
    }

    .media-banner {
        background-position: top;
    }
}

@media (min-width: 2000px) {
    #group-programs-empty-block {
        min-height: 900px;
    }
}

@media (min-width: 992px) {
    .header-bottom .navbar-nav .menu-item {
        font-size: 12px;
    }

    .header-bottom .navbar-nav .menu-item a {
        padding: 0 .5rem
    }
}

@media (min-width: 1300px) {
    .header-bottom .navbar-nav .menu-item {
        font-size: 14px;
    }

    .header-bottom .navbar-nav .menu-item a {
        padding: 0 .5rem
    }
}

@media (min-width: 1600px) {
    .header-bottom .navbar-nav .menu-item {
        font-size: 18px;
    }
}

@media (min-width: 1200px) {

    #main-nav {
        height: 22px;
    }

    .header-mobile {
        display: none;
    }
}

@media (max-width: 1199px) {

    .header-bottom, .header-top {
        display: none;
    }

    #top-nav {
        display: none;
    }

    .header-mobile {
        display: block;
    }

    .header-mobile-top {
        display: flex;
        justify-content: space-between;
        padding-bottom: 10px;
    }

    .header-phone {
        align-self: flex-start;
        margin: .5rem 1rem;
        position: absolute;
        right: 0;
    }

    .navbar-nav {
        padding-top: 20px;
    }

    .navbar-mobile {
        background: #959665;
        height: 36px;
        margin: 30px 0 0;
    }

    .navbar-mobile .logo {
        margin: 5px auto 0;
    }

    .mobile-menu li {
        width: 100%;
        padding: 5px 0;
    }
}

@media (max-width: 1024px) {
    .dual-column-content {
        padding: 4rem !important;
    }
}

@media (max-width: 991px) {
    .single-senior-staff {
        flex-direction: column !important;
    }

    .senior-staff .round-image {
        margin: 0 auto 20px;
        max-width: 200px;
    }

    .small-media-block img.media-image {
        flex: 1 1 100%;
    }
}

@media (max-width: 767px) {
    .dual-column.image-right {
        flex-flow: column;
    }

    .programs-column {
        padding-bottom: 20px;
    }

    .dual-column-content {
        padding: 2rem !important;
    }

    .image-right.workshop .dual-column-image, .image-left.workshop .dual-column-image {
        min-height: 400px;
    }

    .workshop .dual-column-content {
        padding: 3rem !important;
    }

    .sub-hero {
        padding: 30px 0 0;
    }

    .service {
        margin-bottom: 30px;
    }

    .footer .widgets {
        flex-direction: column;
    }

    .dual-column-image-home {
        min-height: 400px;
    }

    .single-column {
        padding: 3rem 2rem;
        background: #ddded3 !important;
    }

    .testimonial_rotator_wrap.with-prevnext {
        padding: 10px;
    }

    .home-contact {
        position: relative;
    }

    .home-contact::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255, 255, 255, .7);
        height: 100%;
    }

    .home-testimonials {
        padding-bottom: 0;
    }

    .founder-image, .speaker-img {
        text-align: center;
        margin-bottom: 20px;
    }

    .staff-text {
        padding-bottom: 20px;
    }

    .senior-staff-row {
        flex-direction: column !important;
    }

    .single-senior-staff {
        margin-bottom: 20px;
    }

    .directors > .senior-staff:nth-last-child(1) .single-senior-staff {
        flex: auto;
    }

    .staff-slider .slick-track {
        margin-top: 0;
    }

    #wpsm_counter_b_row_695 > div {
        flex-direction: column;
    }

    .wpsm_counterbox:after {
        display: none;
    }

    #wpsm_counter_b_row_695 .wpsm_counterbox {
        margin-top: 30px !important;
        margin-bottom: 0 !important;
    }

    .form-image-left, .form-image-right {
        text-align: center;
    }

    .disorder-content ul {
        margin: 0 0 1.5em 3em;
    }

    .locations-page .dual-column-narrow {
        margin: 0 -15px;
    }
}

@media (min-width: 768px) {
    #wpsm_counter_b_row_695 .wpsm_col-sm-6 {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .header-top {
        justify-content: center;
        flex-flow: column;
        align-items: center;
        flex: 1 1 100%;
        padding: 0;
    }

    .header-social {
        margin: 10px auto;
        display: none;
    }
}

.covid-banner {
    width: 100%;
    text-align: center;
    background-color: #77000b;
    padding: 15px 0;
}

.covid-banner h4 {
    color: #fff;
    margin-bottom: 0;
    font-size: 1.1rem;
}