/*!
Theme Name: Beyond Beauty 2019
Theme URI: http://underscores.me/
Author: Eric Karkovack
Author URI: https://www.karks.com
Description: The redesigned Beyond Beauty theme.
Version: 2.0.1
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: karksus
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

karks is based on Underscores https://underscores.me/, (C) 2012-2017 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Normalize
# Typography
# Columns
# Structure
# Elements
# Forms
# Navigation
	## Links
	## Menus
# Accessibility
# Alignments
# Clearings
# Widgets
# Content
	## Posts and pages
	## Comments
# Infinite scroll
# Media
	## Captions
	## Galleries
# Responsive Items
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# CSS Variables
--------------------------------------------------------------*/

:root {
	--black: #000;
	--white: #FFF;
	--beyond-background-light: #e6f2f2;
	--beyond-background-medium: #789ba1;
	--beyond-background-dark: #526a6e;
	--beyond-background-footer: #243030;
	--beyond-blue-medium: #20A2A2;
	--beyond-blue-dark: #7ab0ba;
	--beyond-gray-light: #aeaeae;
	--beyond-gray-dark: #243030;
	--beyond-green-medium: #7cc243;
	
	--beyond-transition: all ease-in 150ms;
}

/*--------------------------------------------------------------
# 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.
 */

body {
	margin: 0;
}

/**
 * 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;
}

/**
 * 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 {
	font-display: swap;
}

body,
button,
input,
select,
optgroup,
textarea {
	color: var(--beyond-gray-dark);
	font-family: 'Raleway', sans-serif;
	font-size: 16px;
	font-size: 1rem;
	line-height: 1.5;
}

h1, h2, h3, h4, h5, h6 {
	clear: both;
	font-family: 'Bree Serif', serif;
	font-weight: normal;
}

h1 {
    font-size: clamp(3.5rem, 2vw, 2.25rem);
	margin: 0 0 30px;
	scroll-margin-top: 120px;
}

h2 {
    font-size: clamp(3.0rem, 2vw, 2.0rem);
	margin: 10px 0 30px;
	scroll-margin-top: 120px;
}

h3 {
    font-size: clamp(2.25rem, 2vw, 1.75rem);
	margin: 10px 0 30px;
	scroll-margin-top: 120px;
}

footer#colophon h3, .footer-inner h3 {
	font-size: 1.1rem;
	margin: 0 0 30px;
}

h4 {
    font-size: clamp(1.75rem, 2vw, 1.25rem);
	margin: 0 0 20px;
}

h5 {
    font-size: clamp(1.5rem, 2vw, 1.0rem);
	margin: 0 0 20px;
}

h6 {
    font-size: clamp(1.0rem, 2vw, .75rem);
	margin: 0 0 20px;
}

/*body,
button,
input,
select,
optgroup,
textarea {
	color: #252525;
	font-family: sans-serif;
	font-size: 16px;
	font-size: 1rem;
	line-height: 1.5;
}

h1, h2, h3, h4, h5, h6 {
	clear: both;
    font-family: 'Josefin Sans', sans-serif;
}

h1 {
    color: #22acac;
    font-size: 40px;
    font-weight: normal;
    line-height: 48px;
    margin:20px auto 30px;
}

h2 {
    color: #7dc243;
    font-size: 36px;
    font-weight: normal;
    line-height: 44px;
    margin:60px auto 30px;
}

h3 {
    color: #555;
    font-size: 28px;
    font-weight: normal;
    line-height: 40px;
    margin: 20px auto 8px;
}

h4 {
    color: #252525;
    font-size: 20px;
    font-weight: normal;
    line-height: 26px;
    margin: 10px auto 8px;
}

h5 {
    color: #252525;
    font-size: 18px;
    font-weight: normal;
    line-height: 24px;
    margin: 10px auto 8px;
}

h6 {
    color: #252525;
    font-size: 16px;
    font-weight: normal;
    line-height: 22px;
    margin: 10px auto 8px;
}*/

p {
    margin-top: 0;
	margin-bottom: 1.5em;
}

dfn, cite, em, i {
	font-style: italic;
}

blockquote {
	margin: 0 1.75em;
}

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%;
}



/*--------------------------------------------------------------
# Columns
--------------------------------------------------------------*/

.column { width:100%; margin-right:4%; position:relative; float:left; }
.column.last { clear:right; margin-right:0; }
.one_half { width:48%; }
.one_third { width:30.66%; }
.two_thirds { width:65.33%; }
.one_fourth { width:22%; }
.three_fourths { width:74%; }
.one_fifth { width:16.8%; }
.two_fifths { width:37.6%; }
.three_fifths { width:58.4%; }
.four_fifths { width:79.2%; }
.one_sixth { width:13.33%; }
.five_sixths { width:82.67%; }


/* Flexbox Columns */

.flex-columns {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}

.justify-flexstart {
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.justify-center {
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.justify-spacebetween {
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.align-items-flexstart {
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.align-items-center {
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.align-items-stretch {
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}

/* align-content is for multiline columns */
.align-content-flexstart {
    -webkit-align-content: flex-start;
    -ms-flex-line-pack: start;
    align-content: flex-start;
}

.align-content-center {
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
}

.align-content-spacebetween {
    -webkit-align-content: space-between;
    -ms-flex-line-pack: justify;
    align-content: space-between;
}

/* Individual Column Width */

.flexfallback { } /* ALWAYS include this in each column, plus an individual size below. */

.flexcol-auto {
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
    -webkit-flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    -webkit-align-self: auto;
    -ms-flex-item-align: auto;
    align-self: auto;
    width: auto;
}

.flexcol-single {
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
    -webkit-flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    -webkit-align-self: auto;
    -ms-flex-item-align: auto;
    align-self: auto;
    width: 100%;
}

.flexcol-half {
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
    -webkit-flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    -webkit-align-self: auto;
    -ms-flex-item-align: auto;
    align-self: auto;
    width: 48%;
}

.flexcol-third {
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
    -webkit-flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    -webkit-align-self: auto;
    -ms-flex-item-align: auto;
    align-self: auto;
    width: 31%;
}

.flexcol-two-thirds {
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
    -webkit-flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    -webkit-align-self: auto;
    -ms-flex-item-align: auto;
    align-self: auto;
    width: 66%;
}

.flexcol-fourth {
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
    -webkit-flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    -webkit-align-self: auto;
    -ms-flex-item-align: auto;
    align-self: auto;
    width: 23%;
}

.flexcol-three-fourths {
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
    -webkit-flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    -webkit-align-self: auto;
    -ms-flex-item-align: auto;
    align-self: auto;
    width: 75%;
}

.flexcol-fifth {
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
    -webkit-flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    -webkit-align-self: auto;
    -ms-flex-item-align: auto;
    align-self: auto;
    width: 18%;
}

/* No Flexbox? No Problem. */

.no-flexbox .flex-columns {
    display: block;
    clear: both;
}

.no-flexbox .flexfallback {
    width:100%; margin-right:4%; position:relative; float:left;
}

.no-flexbox .flexfallback:last-child {
    clear:right; margin-right:0;
}

.no-flexbox .flexcol-auto {
    display: inline-block;
    width: auto;
}

.no-flexbox .flexcol-single {
    display: block;
    width: 100%;
}

.no-flexbox .flexcol-half {
    display: block;
    width: 48%;
}

.no-flexbox .flexcol-third {
    display: block;
    width: 30.66%;
}

.no-flexbox .flexcol-two-thirds {
    display: block;
    width: 65.33%;
}

.no-flexbox .flexcol-fourth {
    display: block;
    width: 22%;
}

.no-flexbox .flexcol-three-fourths {
    display: block;
    width: 74%;
}

.no-flexbox .flexcol-fifth {
    display: block;
    width: 16.8%;
}



/*--------------------------------------------------------------
# Structure
--------------------------------------------------------------*/

/* Uncomment this for wider page widths */
/*#page {
	width: auto;
	max-width: 1100px;
	padding:0px 0px;
	margin:0px auto;
	background-color:#FFF;
}*/

/* Tall header, if needed in the future.
header#masthead {
    position: relative;
	width:100%;
	height:307px;
	margin:0;
    background-color: #e6f2f2;
    transition: all ease-in 200ms; 
    border-bottom: 1px solid #3f5b92;
    -webkit-box-shadow: 0px 3px 18px 0px rgba(17, 17, 18, 0.3);
    -moz-box-shadow: 0px 3px 18px 0px rgba(17, 17, 18, 0.3);
    box-shadow: 0px 3px 18px 0px rgba(17, 17, 18, 0.3);
    z-index: 2;
}*/


header#masthead {
    position: relative;
	width:100%;
	height:110px;
	margin:0;
	background-color: var(--beyond-background-light);
	border-bottom: 2px solid var(--beyond-background-medium);
	box-shadow: -1px 5px 5px 0px rgba(0,0,0,0.20);
    transition: all ease-in 200ms; 
    z-index: 2;
}

/*header#masthead.sticky*/
header#masthead.js-is-sticky--change,
header#masthead.js-is-stuck {
    height: 110px;
    /*border-bottom: 2px solid #22acac;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;*/
    z-index: 999;
}


header#masthead .site-branding {
	margin:0px auto;
    text-align: center;
}

header#masthead .site-branding,
header#masthead.js-is-sticky--change .site-branding,
header#masthead.js-is-stuck .site-branding {
    width: 98%;
	max-width: 1140px;
    text-align: left;
}

a.custom-logo-link {
	line-height:0px;
	vertical-align: top;
	clear: both;
	display: none;
}

img.custom-logo {
    display: none;
    margin: 10px 0 10px;
    opacity: 1.0;
    transition: opacity ease-in 200ms; 
	width: auto;
	height: 94px;
}

img.secondary-logo {
    display: inline-block;
    opacity: 1.0;
    margin: 5px 0 0;
    transition: all ease-in 200ms; 
	width: auto;
	height: 94px;
}

header#masthead.js-is-sticky--change img.custom-logo, header#masthead.js-is-sticky--change a.custom-logo-link,
header#masthead.js-is-stuck img.custom-logo, header#masthead.js-is-stuck a.custom-logo-link {
    display: none;
}
/*
header#masthead,
header#masthead.js-is-sticky--change img.secondary-logo,
header#masthead.js-is-stuck img.secondary-logo{
    display: inline-block;
    opacity: 1.0;
    transition: all ease-in 200ms; 
}*/

#content {
	width:100%;
    max-width: 1130px;
	margin:0px auto;
    padding: 40px 0;
}

.home #content {
	width:100%;
    max-width: 100%;
	margin:0px auto;
    padding: 0 0;
}

footer#colophon, .footer-background {
	width:100%;
	height:auto;
	margin:0;
    line-height:0;
}

.footer-background {
    background-color: #22acac;
    line-height: 1;
}

footer#colophon .footer-inner {
    background-color: #22acac;
	width:100%;
    max-width: 1050px;
	margin:0px auto 30px;
    line-height: 1.75;
    color: #FFF;
}

footer#colophon .footer-inner a {
    color: #FFF;
    text-decoration: none;
}

footer#colophon .footer-inner a:hover {
    color: #FFFEC4;
}

.footer-inner .gform_wrapper ul.gform_fields li.gfield{

  padding-right:0;

}

.footer-columns {
    margin: 30px auto;
}

.footer-columns h4 {
    margin: 10px auto 20px;
    color: #FFF;
}

.footer-social {
    margin-bottom: 30px;
}

.footer-social a {
    display: inline-block;
    width: 48px;
    height: 48px;
    margin-right: 4px;
}

.footer-social a:last-child {
    margin-right: 0;
}

.sub-footer {
    border-top: 2px solid #FFF;
    font-size: 13px;
    line-height: 23px;
    padding-top: 20px;
    text-align: center;
}


#backtop {
	display:none;
}

/*--------------------------------------------------------------
# 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;
    color: #555;
	/* Fallback for when there is no custom background color defined. */
    overflow-x: hidden;
}

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;
	/* Make sure images are scaled correctly. */
	max-width: 100%;
	/* Adhere to container width. */
}

figure {
	margin: 1em 0;
	/* Extra wide images within figure tags don't overflow the content area. */
}

table {
	border:1px solid #ddd;
	width:100%;
	margin:18px 0px;
    border-collapse: collapse;
}
table th {
	padding:5px 20px;
	text-align:left;
	font-weight:bold;
	color:#111;
}
table td {
	border-top:1px solid #ddd;
	padding:5px 20px;
}


/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	background: none;
	border: 2px solid var(--beyond-background-dark);
	border-radius: 6px;
	font-family: 'Bree Serif', serif;
	font-size: 0.9rem;
	line-height: 1;
	padding: 12px 24px;
    transition: all ease-in 125ms;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
	border: 2px solid var(--beyond-background-medium);
    cursor: pointer;
}

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%;
}

/* Gravity Forms */

body #gform_wrapper_6 ul li.gfield {

    margin-top: 0px !important;
    padding-top: 0;
}

.gform_wrapper .gform_footer {
    text-align: center;
}

body #gform_wrapper_6 .gform_footer input[type="submit"] {
  border: 2px solid #fff;
  padding: 12px 24px;
  font-size: 16px;
  background: none;
  color: #fff;
  font-family: 'Raleway', sans-serif;
}

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
a {
	color: var(--beyond-background-dark);
	transition: var(--beyond-transition);
}

a:visited {
	color: var(--beyond-background-dark);
}

a:hover, a:focus, a:active {
	color: var(--beyond-background-medium);
}

a:focus {
	outline: thin dotted;
}

a:hover, a:active {
	outline: 0;
}

footer#colophon a, footer#colophon a:visited {
	color: var(--white);
}

footer#colophon a:hover, footer#colophon a:active, footer#colophon a:focus {
	color: var(--beyond-background-light);
}

/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/
.main-navigation {
	clear: none;
	display: inline-block;
	float: right;
	width: auto;
    margin-top: 30px
}

/*
header#masthead.js-is-sticky--change .main-navigation,
header#masthead.js-is-stuck .main-navigation{
    width: auto;
    float: right;
    margin-top: 50px;
}*/

.main-navigation ul {
	display: none;
	list-style: none;
	margin: 0;
	padding-left: 0;
}

.main-navigation a {
	display: block;
	font-family: 'Bree Serif', serif;
	font-size:18px;
	text-decoration: none;
	text-transform: uppercase;
	color:#252525;
	padding:4px 10px;
	line-height:30px;
	margin:0;
}


.main-navigation li:hover > a,
.main-navigation li:active > a,
.main-navigation li:focus-within > a,
.main-navigation li:focus > a {
	color:var(--beyond-background-dark);
}


.main-navigation ul ul > a {
    text-transform: none;
}
 
.main-navigation ul ul :hover > a,
.main-navigation ul ul .focus > a {
}

.main-navigation ul ul a:hover,
.main-navigation ul ul a.focus {
}

.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
	left: auto;
}

.main-navigation ul ul li:hover > ul,
.main-navigation ul ul li.focus > ul {
	left: 100%;
}

.main-navigation .current_page_item > a,
.main-navigation .current-menu-item > a,
.main-navigation .current_page_ancestor > a,
.main-navigation .current-menu-ancestor > a {
}

.main-navigation ul ul {
	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
	float: left;
	position: absolute;
	top: 100%;
	left: -999em;
	z-index: 99999;
    width: 220px;
}

.main-navigation ul ul li {
    background-color: #F3F3F3;
    border-right: none;
}

.main-navigation ul ul li:hover {
    background-color: #FFF;
}

.main-navigation ul ul ul {
	left: -999em;
	top: 0;
}

.main-navigation ul ul ul li {
    background-color: #F3F3F3;
}

.main-navigation ul ul ul li:hover {
    background-color: #FFF;
}

.main-navigation ul ul li:hover > ul,
.main-navigation ul ul li.focus > ul {
	left: 100%;
}

.main-navigation ul ul a {
    font-size:14px;
	width: 220px;
    padding: 12px 12px;
}

.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
	left: auto;
}

.main-navigation li {
	float: left;
	position: relative;
}


/* Small menu. */
.menu-toggle,
.main-navigation.toggled ul {
	display: block;
}

.slicknav_menu {
	display:none;
}

@media screen and (min-width: 37.5em) {
	.menu-toggle {
		display: none;
	}
	.main-navigation ul {
		display: inline-block;
	}
}

.site-main .comment-navigation, .site-main
.posts-navigation, .site-main
.post-navigation {
	margin: 0 0 1.5em;
	overflow: hidden;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
	float: left;
	width: 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
	float: right;
	text-align: right;
	width: 50%;
}

/* Footer Menu */

ul#footer-menu {
	list-style:none;
	display:block;
	float:right;
	clear:both;
	padding-left:0px;
	margin-left:0px;
	margin-bottom:24px;
}

ul#footer-menu li {
	list-style:none;
	display:block;
	float:left;
	margin-left:12px;
	font-size:14px;
	line-height:14px;
	font-weight:600;
}

ul#footer-menu li a {
	text-decoration:none;
}


/*--------------------------------------------------------------
# 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;
}

.center {
    text-align: center;
}

/*--------------------------------------------------------------
# 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;
}

/* Clearfix */

.clearfix {
margin:0px auto;
clear:both;
}

.clearfix:before, .clearfix:after, .post:before, .post:after {
content: " "; /* 1 */
display: table; /* 2 */
}

.clearfix:after, .post:before {
clear:both;
}

.ie7 .clearfix {
*zoom: 1;
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widget {
	margin: 0 0 1.5em;
	/* Make sure select elements fit in widgets. */
}

.widget select {
	max-width: 100%;
}

/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/

/* Home Page Specific */

.slider-area {
    background-color: #89dad3;
    width: 100%;
    height: auto;
    line-height: 0;
    margin: 0 auto -1;
	position: relative;
}

.slider-area .master-slider-parent {
	position: relative;
	z-index: 0;
}

.ms-slide .ms-layer, .ms-fixed-layers .ms-layer, .ms-overlay-layers .ms-layer {
	width: 100% !important;
	height: auto !important;
}

.slider-area-bottom {
	background-color: transparent;
	display: block;
	height: auto;
	position: relative;
	margin-top: -8%;
}

.concerns-area {
    width: 100%;
    max-width: 1230px;
    text-align: center;
}

.ms-slide-info.ms-dir-h {
    color: #1d9f9f !important;
    font-family: 'Bree Serif', serif;
    font-size: 24px;
    line-height: 30px;
}

.home-blog-listing {
    width: 100%;
    max-width: 1130px;
    margin: 30px auto;
}

.home-blog-post-container {
    margin-right: 20px;
}

.home-blog-post-container:nth-of-type(3n) {
    margin-right: 0;
}

.home-blog-post-thumb {
    margin-right: 10px;
}


.sticky {
	display: block;
}

.hentry {
	margin: 0 0 1.5em;
}

.sticky {}
article.post {
	padding-bottom:30px;
	border-bottom:1px solid #ccc;
	margin-bottom:30px;
	position:relative;
	overflow:hidden;
}
.single article.post {
	border:0;
	margin-bottom:0;
}

.page-title {
    text-align: center;
}

.entry-title {
	font-size:28px;
	line-height:34px;
	display:block;
	margin:20px 0px 10px;
}

.entry-title a, .entry-title a:visited {
	color:#000;
}
.entry-meta {
	font-size:13px;
	margin-bottom:18px;
}
.entry-photo {
	margin:0 0 15px 15px;
	position:relative;
	float:right;
}
.entry-content {
	position:relative;
}

.entry-content h1, .entry-content h2, .entry-content h3, .entry-content h4 {
    text-align: center;
}

.entry-footer {
	position:relative;
	clear:both;
	font-size:14px;
	margin-top:18px;
}
.entry-tags {
	display:block;
	margin-bottom:15px;
	position:relative;
	float:left;
}

/* Treat Wide/Full Alignment Blocks Properly */
.alignwide, .alignfull {
	width: 100vw;
	max-width: 100vw;
	margin-left: calc(50% - 50vw);
}


.byline,
.updated:not(.published) {
	display: none;
}

.single .byline,
.group-blog .byline {
	display: inline;
}

.page-content,
.entry-content,
.entry-summary {
	margin: 0 0 0;
}

.page-links {
	clear: both;
	margin: 0 0 1.5em;
}

iframe {
	margin:18px auto;
	text-align:center;
}


.nav-previous a:before {
	content:'« ';
}

.nav-next a:after {
	content:' »';
}


/* Custom Blocks */

.featured-services-area {
    width: 100%;
    height: auto;
    background-color: #89dad3;
    padding: 20px 0 60px;
    margin-bottom: 0px;
}

.featured-services-inner {
    width: 100%;
    max-width: 1130px;
    margin: 0 auto;
}

.featured-service-columns {
    text-align: center;
}

.featured-service-columns a {
    color: #FFF;
    font-family: 'Bree Serif', serif;
    font-size: 24px;
    text-decoration: none;
}

.featured-service-columns:hover > a {
    color: #cef2f2;
}

.servicecol:nth-of-type(2n) {
    margin-top: 60px;
}

.intro-area {
    width: 100%;
    height: auto;
    background-color: #89dad3;
    padding: 20px 0 60px;
    margin-bottom:0px;
    /*border-bottom: 2px solid #22acac;*/
    /*-webkit-box-shadow: 0px 18px 18px -18px rgba(17, 17, 18, 0.3);
    -moz-box-shadow: 0px 18px 18px -18px rgba(17, 17, 18, 0.3);
    box-shadow: 0px 18px 18px -18px rgba(17, 17, 18, 0.3);*/
}

.intro-area-inner {
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    padding: 20px 0;
    text-align: justify;
}

.intro-title {
    color: #119291;
    margin: 0px auto 8px;
    text-align: center;
}

.intro-sub-title {
    /*color: #FFF;*/
    margin: 0px auto 20px;
    text-align: center;
}

.intro-testimonials {
    color: #187878;
    font-size: 20px;
    font-style: italic;
    line-height: 28px;
    margin: 60px auto 20px;
}

.testimonials-widget-testimonial .author {
    font-style: normal;
}

.related-content {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.appointment-bar {
    width: 100%;
    background-color: #7dc243;
    margin: 0 0 60px;
    padding: 30px 0;
    text-align: center;
    border-top: 2px solid #22acac;
    border-bottom: 2px solid #22acac;
    -webkit-box-shadow: 0px 3px 18px 0px rgba(17, 17, 18, 0.3);
    -moz-box-shadow: 0px 3px 18px 0px rgba(17, 17, 18, 0.3);
    box-shadow: 0px 3px 18px 0px rgba(17, 17, 18, 0.3);
}

.appointment-bar-transparent {
    margin: 0 0 60px;
    padding: 30px 0;
    text-align: center;
}

.appointment-bar-inner {
    width: 100%;
    max-width: 920px;
    margin: 0px auto;
    text-align: center;
}

h2.appointment-bar-title {
    color: #FFF;
}

.appointment-button-container {
    margin: 30px auto;
}

a.appointment-button, a.appointment-button-green {
	padding: 12px 24px 12px 24px;
	font-size: 18px;
	text-align: center;
	font-family: "Raleway";
	font-weight: 400;
	overflow-wrap: break-word;
	background-color: transparent;
	border-width: 2px;
	border-style: solid;
	border-color: var(--beyond-background-dark);
	border-radius: 6px;
	text-decoration: none;
	transition: var(--beyond-transition);
}

a:hover.appointment-button, a:hover.appointment-button-green {
	border: 2px solid var(--beyond-background-medium);
}

/*a.appointment-button {
    background-color: #22acac;
    -webkit-box-shadow: -2px 3px 8px 0px rgba(24, 24, 24, 0.5);
    -moz-box-shadow: -2px 3px 8px 0px rgba(24, 24, 24, 0.5);
    box-shadow: -2px 3px 8px 0px rgba(24, 24, 24, 0.5);
    border-radius: 6px;
    color: #FFF;
    display: inline-block;
    font-family: 'Bree Serif', serif;
    font-size: 26px;
    line-height: 26px;
    padding: 20px 40px 14px;
    text-align: center;
    text-decoration: none;
}

a:hover.appointment-button {
    background-color: #128080;
    color: #FFFEC4;
}

/*a.appointment-button-green {
    background-color: #7dc243;
    -webkit-box-shadow: -2px 3px 8px 0px rgba(24, 24, 24, 0.5);
    -moz-box-shadow: -2px 3px 8px 0px rgba(24, 24, 24, 0.5);
    box-shadow: -2px 3px 8px 0px rgba(24, 24, 24, 0.5);
    border-radius: 6px;
    color: #FFF;
    display: inline-block;
    font-family: 'Bree Serif', serif;
    font-size: 26px;
    line-height: 26px;
    padding: 20px 40px;
    text-align: center;
    text-decoration: none;
}*/

/*a:hover.appointment-button-green {
    background-color: #52901e;
    color: #FFFEC4;
}/*

.home-awards {
    
}

.award-area-inner {
    width: 100%;
    margin: 60px auto 0;
    padding: 20px 0;
    text-align: justify;
}

.award-item {
    -webkit-flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    margin-right: 20px;
    text-align: center;
}

.award-item:last-child {
    margin-right: 0;
}

/* Related Content */

.related-content {
    margin: 40px auto;
}

.related-content-ind {

}

/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.comment-content a {
	word-wrap: break-word;
}

.bypostauthor {
	display: block;
}





/*--------------------------------------------------------------
# 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;
}


/*--------------------------------------------------------------
# Responsive Items
--------------------------------------------------------------*/

@media screen and (min-width: 1100px) and (max-width: 1240px) {



}



@media screen and (min-width: 1024px) and (max-width: 1240px) {


header#masthead .site-branding, header#masthead.js-is-sticky--change .site-branding, header#masthead.js-is-stuck .site-branding {
    width: 98%;
    height: auto;
    margin: 0px auto;
}

/*header#masthead.js-is-sticky--change .main-navigation a,
header#masthead.js-is-stuck .main-navigation a
{
	display: block;
	font-size:14px;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: bold;
	text-decoration: none;
	color:#22acac;
	padding:2px 9px;
	line-height:16px;
	margin:0;
    text-transform: uppercase;
}*/

.main-navigation {
    text-align: left;
}

/*header#masthead.js-is-sticky--change img.secondary-logo,
header#masthead.js-is-sticky--stuck img.secondary-logo {
    width: 100%;
    max-width: 230px;
    height: auto;
}*/

header#masthead img.secondary-logo {
    width: auto;
    max-width: auto;
    height: 94px;
}

#content {
    width: 96%;
    max-width: 96%;
}

.main-navigation {
    clear: both;
    display: inline-block;
    float: right;
    width: auto;
    margin-top: 50px;
}

.main-navigation a {
	display: block;
	font-size:15px;
    font-family: 'Bree Serif', serif;
	text-decoration: none;
	line-height:16px;
	margin:0;
    text-transform: uppercase;
}


.home-blog-listing {
    width: 96%;
    max-width: 96%;
    margin: 30px auto;
}


/* Custom Blocks */

.intro-area-inner {
    width: 96%;
    max-width: 96%;
    margin: 0 auto;
    padding: 20px 0;
    text-align: left;
}


}



@media screen and (min-width: 768px) and (max-width: 1023px) {
/* Navigation Adjustment for Some Tablets */
header#masthead .site-branding {
    text-align: center;
}

button.menu-toggle {
    display: none;
}

.slicknav_menu {
	display:block;
}

.main-navigation ul {
	display:none;
}

header#masthead .site-branding, header#masthead.js-is-sticky--change .site-branding, header#masthead.js-is-stuck .site-branding {
    width: 98%;
    height: auto;
    margin: 0px auto;
}

header#masthead img.secondary-logo {
    width: auto;
    max-width: auto;
    height: 94px;
}

#content {
    width: 96%;
    max-width: 96%;
}

.home-blog-listing {
    width: 96%;
    max-width: 96%;
    margin: 30px auto;
}


/* Custom Blocks */

.intro-area-inner {
    width: 96%;
    max-width: 96%;
    margin: 0 auto;
    padding: 20px 0;
    text-align: left;
}


}



@media screen and (min-width: 320px) and (max-width: 768px) {


body {
	margin:0;
	padding:0;
}
	
img, .wp-caption {
	max-width:480px;
	height:auto;
}

img.alignr, .alignright, .right, img.alignl, .alignleft {
	display:block;
	position:relative;
	float:none !important;
	margin:18px auto !important;
	margin-left:auto !important;
}	

/* Structure */

header#masthead {
	width:100%;
	height:auto;
}

header#masthead .site-branding {
	width:100%;
	height:auto;
	margin:0px auto;
    text-align: center;
}

header#masthead img.secondary-logo {
    width: 100%;
    max-width: 350px;
    height: auto;
	margin: 15px 0 10px;
}


#content {
	width:100%;
	min-width:100% !important;
	max-width:100% !important;
	padding:0px;
	margin:auto;
}

.home .entry-content {
    width: 100%;
}

.entry-content {
    width: 92%;
    margin: auto;
}

footer#colophon {
	width:100%;
	height:auto;
	margin:0;
}

.slider-area img {
    width: 100%;
    max-width: 100%;
    height: auto;
}

footer#colophon img {
    width: 100%;
    max-width: 250px;
    height: auto;
}

footer#colophon img.footer-shape {
    width: 100%;
    max-width: 100%;
    height: auto;
}

footer#colophon .footer-inner {
	width:96%;
	margin:0px auto;
}

#backtop {
	display:block;
	font-size:36px;
	line-height:36px;
	text-align:center;
	margin:15px auto;
}

/* Navigation */

button.menu-toggle {
    display: none;
}

.slicknav_menu {
	display:block;
}

.main-navigation ul {
	display:none;
}

/* Home Page Specific */

.home-blog-listing {
    width: 96%;
    max-width: 96%;
    margin: 30px auto;
}


/* Custom Blocks */

.intro-area-inner {
    width: 96%;
    max-width: 96%;
    margin: 0 auto;
    padding: 20px 0;
    text-align: left;
}

a.appointment-button {
    margin-bottom: 14px;
}



/* Footer Menu */

ul#footer-menu {
	list-style:none;
	display:block;
	float:none;
	clear:both;
	padding-left:0px;
	margin-left:0px;
	margin-bottom:24px;
}

ul#footer-menu li {
	list-style:none;
	display:block;
	float:none;
	margin-left:0px;
	margin-bottom:14px;
	font-size:18px;
	line-height:24px;
	text-align:center;
	font-weight:600;
}

ul#menu-footer-menu li a {
	text-decoration:none;
}

/* Flexbox Columns */

.flex-columns {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

/* Individual Column Width */

.flexcol-auto {
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
    -webkit-flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    -webkit-align-self: auto;
    -ms-flex-item-align: auto;
    align-self: auto;
    width: auto;
}

.flexcol-half {
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
    -webkit-flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    -webkit-align-self: auto;
    -ms-flex-item-align: auto;
    align-self: auto;
    width: 100%;
}

.flexcol-third {
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
    -webkit-flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    -webkit-align-self: auto;
    -ms-flex-item-align: auto;
    align-self: auto;
    width: 100%;
}

.flexcol-two-thirds {
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
    -webkit-flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    -webkit-align-self: auto;
    -ms-flex-item-align: auto;
    align-self: auto;
    width: 100%;
}

.flexcol-fourth {
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
    -webkit-flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    -webkit-align-self: auto;
    -ms-flex-item-align: auto;
    align-self: auto;
    width: 100%;
}

.flexcol-three-fourths {
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
    -webkit-flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    -webkit-align-self: auto;
    -ms-flex-item-align: auto;
    align-self: auto;
    width: 100%;
}

.flexcol-fifth {
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
    -webkit-flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    -webkit-align-self: auto;
    -ms-flex-item-align: auto;
    align-self: auto;
    width: 100%;
}

.flexfallback {
    margin-bottom: 10px;
}

/* Columns */

.column, .one_half, .one_third, .two_thirds, .one_fourth, .three_fourths, .one_fifth, .two_fifths, .three_fifths, .four_fifths, .one_sixth, .five_sixths { width:100%; display:block; clear:both; margin-right:0%; position:relative; float:none; margin-bottom:26px; }

.column.last { clear:both; margin-right:0; }


/* Featured Services */

.featured-service-columns a {

    color: #FFF;
    font-family: 'Bree Serif', serif;
    font-size: 18px;
    text-decoration: none;

}

.flexcol-fifth.servicecol {
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
    -webkit-flex: 1 0 auto;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
    -webkit-align-self: auto;
    -ms-flex-item-align: auto;
    align-self: auto;
    width: 30%;
}

.flexcol-fifth.servicecol img {
    width: 100%;
    max-width: 150px;
    height: auto;
}
	
}



@media screen and (min-width: 320px) and (max-width: 640px) {


img, .wp-caption {
	max-width:300px;
	height:auto;
}
	
table {
	border:1px solid #7d7d7d;
	width:auto;
	margin:18px auto;
}
table th {
	display:block;
	width:100%;
	padding:5px 20px;
	text-align:left;
	font-weight:bold;
	color:#FFF;
}
table td {
	display:block;
	width:100%;
	border-top:0px solid #7d7d7d;
	padding:5px 20px;
}
	




}


