/*
	Theme Name: Monochrome Pro
	Theme URI: https://my.studiopress.com/themes/monochrome/
	Description: Monochrome showcases the sleek difference that white space and typography make in minimal design.
	Author: StudioPress
	Author URI: https://www.studiopress.com/

	Version: 1.0

	Tags: one-column, two-columns, left-sidebar, right-sidebar, e-commerce, accessibility-ready, custom-background, custom-colors, custom-header, custom-menu, featured-images, full-width-template, sticky-post, theme-options, threaded-comments, translation-ready

	Template: genesis
	Template Version: 2.5

	License: GPL-2.0+
	License URI: http://www.gnu.org/licenses/gpl-2.0.html

	Text Domain: monochrome-pro
*/

/* HTML5 Reset
---------------------------------------------------------------------------------------------------- */

/* Baseline Normalize
--------------------------------------------- */
/* normalize.css v4.1.1 | MIT License | http://necolas.github.io/normalize.css/ */

html{font-family:'Open Sans', sans-serif; -ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block}audio:not([controls]){display:none;height:0}progress{vertical-align:baseline}template,[hidden]{display:none}a{background-color:transparent;-webkit-text-decoration-skip:objects}a:active,a:hover{outline-width:0}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:inherit}b,strong{font-weight:bold}dfn{font-style:italic}h1{font-size:2em;margin:0.67em 0}mark{background-color:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-0.25em}sup{top:-0.5em}img{border-style:none}svg:not(:root){overflow:hidden}code,kbd,pre,samp{font-family:monospace, monospace;font-size:1em}figure{margin:1em 40px}hr{box-sizing:content-box;height:0;overflow:visible}button,input,optgroup,select,textarea{font:inherit;margin:0}optgroup{font-weight:bold}button,input{overflow:visible}button,select{text-transform:none}button,html [type="button"],[type="reset"],[type="submit"]{-webkit-appearance:button}button::-moz-focus-inner,[type="button"]::-moz-focus-inner,[type="reset"]::-moz-focus-inner,[type="submit"]::-moz-focus-inner{border-style:none;padding:0}button:-moz-focusring,[type="button"]:-moz-focusring,[type="reset"]:-moz-focusring,[type="submit"]:-moz-focusring{outline:1px dotted ButtonText}fieldset{border:1px solid #c0c0c0;margin:0 2px;padding:0.35em 0.625em 0.75em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}textarea{overflow:auto}[type="checkbox"],[type="radio"]{box-sizing:border-box;padding:0}[type="number"]::-webkit-inner-spin-button,[type="number"]::-webkit-outer-spin-button{height:auto}[type="search"]{-webkit-appearance:textfield;outline-offset:-2px}[type="search"]::-webkit-search-cancel-button,[type="search"]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-input-placeholder{color:inherit;opacity:1}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}

/* Box Sizing
--------------------------------------------- */

html,
input[type="search"]{
	-webkit-box-sizing: border-box;
	-moz-box-sizing:    border-box;
	box-sizing:         border-box;
}

*,
*:before,
*:after {
	box-sizing: inherit;
}


/* Float Clearing
--------------------------------------------- */

.author-box:before,
.clearfix:before,
.entry:before,
.entry-content:before,
.footer-widgets:before,
.nav-primary:before,
.nav-secondary:before,
.pagination:before,
.site-container:before,
.site-footer:before,
.site-header:before,
.site-inner:before,
.widget:before,
.wrap:before {
	content: " ";
	display: table;
}

.author-box:after,
.clearfix:after,
.entry:after,
.entry-content:after,
.footer-widgets:after,
.nav-primary:after,
.nav-secondary:after,
.pagination:after,
.site-container:after,
.site-footer:after,
.site-header:after,
.site-inner:after,
.widget:after,
.wrap:after {
	clear: both;
	content: " ";
	display: table;
}

/* Defaults
---------------------------------------------------------------------------------------------------- */

/* Typographical Elements
--------------------------------------------- */

html {
	font-size: 62.5%; /* 10px browser default */
}

/* Chrome fix */
body > div {
	font-size: 1.8rem;
}

body {
	background-color: #fff;
	color: #444;
	font-size: 18px;
	font-size: 1.8rem;
	font-weight: 300;
	line-height: 1.5;
	margin: 0;
}

body {
	-webkit-animation: fadein 1s;
	-moz-animation:    fadein 1s;
	-ms-animation:     fadein 1s;
	-o-animation:      fadein 1s;
	animation:         fadein 1s;
}

/* Annimations and Effects
--------------------------------------------- */

@keyframes fadein {
	from { opacity: 0; }
	to   { opacity: 1; }
}

@-moz-keyframes fadein {
	from { opacity: 0; }
	to   { opacity: 1; }
}

@-webkit-keyframes fadein {
	from { opacity: 0; }
	to   { opacity: 1; }
}

@-ms-keyframes fadein {
	from { opacity: 0; }
	to   { opacity: 1; }
}

@-o-keyframes fadein {
	from { opacity: 0; }
	to   { opacity: 1; }
}

.effect1 {
	position: relative;
}

.effect1:before {
  content: "";
  position: absolute;
  width: 75%;
  height: 4px;
  bottom: 0;
  top: 104%;
  left: 0;
  background-color: #c02310;
  visibility: hidden;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

.effect1:hover:before,
.effect1:active:before {
  visibility: visible;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.effect2 {
	width: 20%;
	height: 4px;
	background-color: rgba(0,0,0,.24);
	margin: 8px auto 80px;
	opacity: 0;
	transition: opacity .4s ease-in-out .8s, transform .6s ease-in-out .8s;
}

.home-fadeInUp .effect2 {
  opacity: 1;
  transform: translateY(25px);
}

.effect3 {
	position: relative;
}

.effect3::before {
  content: "";
  position: absolute;
  width: 75%;
  height: 4px;
  bottom: 0;
  top: 104%;
  left: 0;
  background-color: rgba(0,0,0,.24);
  visibility: hidden;
  transform-origin: left;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.active .effect3:before,
.active .effect3:before {
  visibility: visible;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

/* END Annimations and Effects
--------------------------------------------- */

a,
button,
input:focus,
input[type="button"],
input[type="reset"],
input[type="submit"],
.nav-primary .consult a,
textarea:focus,
.button,
.testimonial .testimonial-content .readmore,
.gallery img,
.header-image .site-title > a,
.header-image .title-area,
.site-header {
	-webkit-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
	-moz-transition:    background-color 0.2s ease-in-out, color 0.2s ease-in-out;
	-ms-transition:     background-color 0.2s ease-in-out, color 0.2s ease-in-out;
	-o-transition:      background-color 0.2s ease-in-out, color 0.2s ease-in-out;
	transition:         background-color 0.2s ease-in-out, color 0.2s ease-in-out;
}

/*a {
	color: rgba(209,31,19,1.00);
}

a:hover,
a:focus {
	color: rgba(159,23,14,1.00);
}*/

p {
	margin: 0 0 15px;
	padding: 0 0 0 0;
}

ol,
ul {
	margin: 0;
	padding: 0;
}

li {
	list-style-type: none;
}

hr {
	border: 0;
	border-collapse: collapse;
	border-top: 1px solid #eee;
	clear: both;
	margin: 1em 0;
}

b,
strong {
	font-weight: 600;
}

blockquote,
cite,
em,
i {
	font-style: italic;
}

mark {
	background-color: #ddd;
	color: #000;
}

blockquote {
	margin: 40px;
}

blockquote::before {
	content: "\201C";
	display: block;
	font-size: 30px;
	font-size: 3rem;
	height: 0;
	left: -20px;
	position: relative;
	top: -10px;
}


/* Headings
--------------------------------------------- */

h1,
h2,
h3,
h4,
h5
 {
	font-family: 'Open Sans','Helvetica Neue', Helvetica, sans-serif;
	font-weight: 600;
	line-height: 1.2;
	margin: 10px 0 10px;
}

h1 .entry,
h2 .entry,
h3 .entry,
h4 .entry,
h5 .entry,
h6 .entry {
	margin: 15px 0 15px;
}

h1 {
	font-size: 36px;
	font-size: 3.6rem;
}

h2 {
	font-size: 30px;
	font-size: 3rem;
	color: #777777;
	
}

h3 {
	font-size: 24px;
	font-size: 2.4rem;
	color: #777777;
}

.comment-respond h3,
.entry-comments h3 {
	font-size: 36px;
	font-size: 3.6rem;
	font-weight: 700;
	letter-spacing: -0.5px;
	text-align: center;
}

.comment-respond h3::after,
.entry-comments h3::after {
	border-bottom: 1px solid #000;
	content: "";
	display: block;
	margin: 0 auto 40px;
	padding-bottom: 40px;
	width: 5%;
}

h4 {
	font-size: 20px;
	font-size: 2rem;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
	margin-bottom: 20px;
	margin-top: 10px;
}

h5 {
	font-size: 18px;
	font-size: 1.8rem;
	color: #555555;
}

h6 {
	font-family: 'Walter Turncoat', cursive;
	font-size: 16px;
	font-size: 1.6rem;
}

/* Objects
--------------------------------------------- */

embed,
iframe,
img,
object,
video,
.wp-caption {
	max-width: 100%;
}

img {
	height: auto;
}

figure {
	margin: 0;
}

#genesis-content .first-child {
	padding: 12px 0;
}

div#n2-ss-3 .nextend-bullet-bar > div {
	display: inline-block;
	cursor: pointer;
	transition: background-color 0.4s;
	vertical-align: top;
	background-color: lightgrey !important;
}

div#n2-ss-3 .n2-style-2a0a200d6a6e1fade27fb9c90af83812-dot.n2-active, div#n2-ss-3 .n2-style-2a0a200d6a6e1fade27fb9c90af83812-dot:hover {
	background: #00c1c4;
}

div#n2-ss-3 .nextend-bullet-bar > div.n2-active {
	cursor: default;
	background: #00c1c4 !important;
}

/* Gallery
--------------------------------------------- */

.gallery {
	overflow: hidden;
}

.gallery-item {
	float: left;
	margin: 0 0 30px;
	text-align: center;
}

.gallery-columns-1 .gallery-item {
	width: 100%;
}

.gallery-columns-2 .gallery-item {
	width: 50%;
}

.gallery-columns-3 .gallery-item {
	width: 33%;
}

.gallery-columns-4 .gallery-item {
	width: 25%;
}

.gallery-columns-5 .gallery-item {
	width: 20%;
}

.gallery-columns-6 .gallery-item {
	width: 16.6666%;
}

.gallery-columns-7 .gallery-item {
	width: 14.2857%;
}

.gallery-columns-8 .gallery-item {
	width: 12.5%;
}

.gallery-columns-9 .gallery-item {
	width: 11.1111%;

}

.gallery-columns-2 .gallery-item:nth-child(2n+1),
.gallery-columns-3 .gallery-item:nth-child(3n+1),
.gallery-columns-4 .gallery-item:nth-child(4n+1),
.gallery-columns-5 .gallery-item:nth-child(5n+1),
.gallery-columns-6 .gallery-item:nth-child(6n+1),
.gallery-columns-7 .gallery-item:nth-child(7n+1),
.gallery-columns-8 .gallery-item:nth-child(8n+1),
.gallery-columns-9 .gallery-item:nth-child(9n+1) {
	clear: left;
}

.gallery img {
	border: 1px solid #eee;
	height: auto;
	padding: 4px;
}

.gallery img:hover,
.gallery img:focus {
	border: 1px solid #ccc;
}

/* Forms
--------------------------------------------- */

input,
input[type="search"],
select,
textarea {
	background-color: #fff;
	border: 1px solid #eee;
	border-radius: 0;
	color: #000;
	font-size: 16px;
	font-size: 1.6rem;
	font-weight: 300;
	line-height: 1.625;
	padding: 6px;
	width: 100%;
}

input[type="search"] {
	background-color: #fff;
	border: 1px solid #eee !important;
	border-radius: 3px;
	padding: 15px !important;
	width: 100%;
}

input[type="search"] {
	-webkit-appearance: none;
}

input:focus,
input[type="search"]:focus,
textarea:focus {
	border: 1px solid #333;
	outline: none;
}

input[type="checkbox"],
input[type="image"],
input[type="radio"] {
	width: auto;
}

/*input[type="text"]:focus, input[type="email"]:focus, input[type="search"]:focus {
	outline-color: #333 !important;
}*/


::-moz-placeholder {
	color: #000;
	opacity: 1;
}

::-webkit-input-placeholder {
	color: #000;
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"],
.button,
.testimonial .testimonial-content .readmore,
.nav-primary .consult a,
.more-link {
	background-color: transparent;
	border: 1px solid #ccc;
	border-radius: 3px;
	color: #333;
	cursor: pointer;
	font-family: 'Open Sans','Helvetica Neue', Helvetica, sans-serif;
	font-size: 16px;
	font-size: 1.6rem;
	font-weight: 600;
	line-height: 1;
	padding: 10px 20px;
	text-transform: uppercase;
	text-decoration: none;
	white-space: normal;
	width: auto;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover,
.button:hover,
.testimonial .testimonial-content .readmore:hover
.nav-primary .consult a:hover,
.more-link:hover {
	background-color: #000000;
	color: #FFF;
}

button:hover,
button:focus,
input:hover[type="button"],
input:focus[type="button"],
input:hover[type="reset"],
input:focus[type="reset"],
input:hover[type="submit"],
input:focus[type="submit"],
.button:hover,
.testimonial .testimonial-content .readmore:hover,
.nav-primary .consult a:hover,
.button:focus,
.more-link:hover,
.more-link:focus {
	background-color: rgba(209,31,19,1.00);
	box-shadow: 0 1px 2px 0 rgba(0,0,0,0.2);
	color: #fff;
}

.button, .testimonial .testimonial-content .readmore {
	display: inline-block;
	margin-bottom: 10px;
	margin-top: 25px;
}

.button.red {
	background-color: rgba(209,31,19,1.00);
	border: 1px solid rgba(209,31,19,0.50);
	color: #FFF;
}

.button.red:hover{
	background-color: rgba(159,23,14,1.00) !important;
	color: #FFF;
}

.button.green {
	background-color: rgba(55,163,0,1.00);
	color: #FFF;
}

.button.green:hover{
	background-color: rgba(41,121,0,1.00) !important;
	color: #FFF;
}

.button.redframe {
	border: 1px solid rgba(209,31,19,1);
	-webkit-box-shadow: inset 0px 0px 0px 1px rgba(209,31,19,.2);
	-moz-box-shadow: inset 0px 0px 0px 1px rgba(209,31,19,.2);
	box-shadow: inset 0px 0px 0px 1px rgba(209,31,19,.2);
	color: #333;
}

.purpleframe {
	text-decoration: none;
	background: transparent;
	border: 1px solid rgba(208,64,48,1);
	padding: 8px 20px;
	font-size: 1.8rem;
	border-radius: 4px;
	text-transform: uppercase;
	letter-spacing: .8px;
	font-weight: 500;
	max-width: 165px;
	width: 100%;
	text-align: center;
	transition: .3s ease-in-out;
}

.purpleframe:hover,
.purpleframe:active,
.purpleframe:focus {
	background-color: rgba(208,64,48,1);
	color: #fff;
}

.yellowframe {
	text-decoration: none;
	background: transparent;
	border: 1px solid #f3f0ad;
	padding: 8px 20px;
	font-size: 1.8rem;
	border-radius: 4px;
	text-transform: uppercase;
	letter-spacing: .8px;
	font-weight: 500;
	max-width: 165px;
	width: 100%;
	text-align: center;
	transition: .3s ease-in-out;
}

.yellowframe:hover,
.yellowframe:active,
.yellowframe:focus {
	background-color: #f2f8b0;
	color: #272727;
	border: 1px solid #f2f8b0 !important;
}

.whiteframe {
	text-decoration: none;
	background: transparent;
	border: 1px solid #fff;
	padding: 8px 20px;
	font-size: 1.8rem;
	border-radius: 4px;
	text-transform: uppercase;
	letter-spacing: .8px;
	font-weight: 500;
	max-width: 165px;
	width: 100%;
	text-align: center;
	transition: .3s ease-in-out;
	color: #fff !important;
}

.whiteframe:hover,
.whiteframe:active,
.whiteframe:focus {
	background-color: #fff;
	color: #333 !important;
	border: 1px solid #fff !important;
}

.redframe {
	text-decoration: none;
	background: transparent;
	border: 3px solid #d04030;
	padding: 8px 20px;
	font-size: 1.8rem;
	border-radius: 4px;
	text-transform: uppercase;
	letter-spacing: .8px;
	font-weight: 500;
	max-width: 200px;
	width: 100%;
	text-align: center;
	transition: .3s ease-in-out;
	margin: 0 20px !important;
}

.redframe:hover,
.redframe:active,
.redframe:focus{
	    color: #fff;
    background-color: #d04030;
}


.button.greenframe, .testimonial .testimonial-content .readmore {
	border: 1px solid rgba(55,163,0,1);
	-webkit-box-shadow: inset 0px 0px 0px 1px rgba(55,163,0,.2);
	-moz-box-shadow: inset 0px 0px 0px 1px rgba(55,163,0,.2);
	box-shadow: inset 0px 0px 0px 1px rgba(55,163,0,.2);
	color: #333;
}

.greenframe:hover, .testimonial .testimonial-content .readmore:hover{
	background-color: rgba(55,163,0,1.00) !important;
	color: #FFF;
}


.button.large {
	font-size: 20px;
	font-size: 2rem;
}

.landing-page .button {
	margin-top: 20px;
}

.more-link {
	display: inline-block;
	margin-top: 10px;
}

.fix {
	display: block;
	clear: both;
	height: 0;
}

/* #menu-main-nav li a::after {
    content: '/';
    padding-left: 20px;
    color: #c0c0c0;
} */

.toggle-header-search::after {
	content: '' !important;
}

a.button.small,
button.small,
input[type="button"].small,
input[type="reset"].small,
input[type="submit"].small {
	padding: 5px 10px;
}

.genesis-nav-menu .consult.current-menu-item > a {
	color: #FFF;
}

.site-container button:disabled,
.site-container button:disabled:hover,
.site-container input:disabled,
.site-container input:disabled:hover,
.site-container input[type="button"]:disabled,
.site-container input[type="button"]:disabled:hover,
.site-container input[type="reset"]:disabled,
.site-container input[type="reset"]:disabled:hover,
.site-container input[type="submit"]:disabled,
.site-container input[type="submit"]:disabled:hover {
	background-color: #eee;
	border-width: 0;
	box-shadow: none;
	color: #999;
	cursor: not-allowed;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button {
	display: none;
}

/* Tables
--------------------------------------------- */

table {
	border-collapse: collapse;
	border-spacing: 0;
	line-height: 2;
	margin-bottom: 40px;
	width: 100%;
	word-break: break-all;
}

tbody {
	border-bottom: 1px solid #eee;
}

td,
th {
	text-align: left;
}

td {
	border-top: 1px solid #eee;
	padding: 6px;
}

th {
	font-weight: 400;
	padding: 0 6px;
}

td:first-child,
th:first-child {
	padding-left: 0;
}

/* Screen Reader Text
--------------------------------------------- */

.screen-reader-shortcut,
.screen-reader-text,
.screen-reader-text span {
	border: 0;
	clip: rect(0, 0, 0, 0);
	height: 1px;
	overflow: hidden;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}

.genesis-nav-menu .search input[type="submit"]:focus,
.screen-reader-shortcut:focus,
.screen-reader-text:focus,
.widget_search input[type="submit"]:focus {
	background-color: #fff;
	box-shadow: 0 0 2px 2px rgba(0,0,0,.6);
	clip: auto !important;
	color: #000;
	display: block;
	font-size: 1em;
	font-weight: bold;
	height: auto;
	padding: 15px 23px 14px;
	text-decoration: none;
	width: auto;
	z-index: 100000; /* Above WP toolbar. */
}

.more-link {
	position: relative;
}


/* Structure and Layout
---------------------------------------------------------------------------------------------------- */

/* Site Container
--------------------------------------------- */

.site-container {
	background-color: #fff;
	z-index: 99;
}

.gmm-active .site-container {
	margin-bottom: 0 !important;
}

.site-container {
	margin-bottom: 0 !important;
}

/* Site Inner
--------------------------------------------- */

.site-inner,
.wrap {
	margin: 0 auto;
}

.site-inner {
	background-color: #fff;
	clear: both;
	margin-bottom: 100px;
	margin-top: 20px;
	max-width: 1200px;
	position: relative;
	word-wrap: break-word;
	z-index: 999;
}

.page .site-inner {
    max-width: calc(100% - 20vw);
}

.full-width-content.featured-image .site-inner {
	margin-top: -220px;
}

.landing-page .site-inner {
	margin-bottom: 80px;
	margin-top: 80px;
	max-width: 680px;
}

/* Column Widths and Positions
--------------------------------------------- */

/* Content */

.content {
	float: right;
	position: relative;
	width: 720px;
}

.home #genesis-sidebar-primary {
	display: none;
}

.content-sidebar .content {
	float: left;
	padding-top: 20px;
	width: 66%;
	max-width: 780px;
	border-right: 0px solid #EAEAEA;
}

.content-sidebar .content .entry {
	padding-right: 0;
}

.content .entry .content {
	float: none;
	padding-top: 0px;
	width: 100%;
	max-width: 100%;
	border-right: 0px;
}

.full-width-content .content {
	float: none;
	margin-left: auto;
	margin-right: auto;
	width: 100%;
}

/* Sidebar */

.sidebar {
	float: right;
	width: 30%;
	max-width: 360px;
}

.sidebar-content .sidebar {
	float: left;
}

/* Column Classes
--------------------------------------------- */
/* Link: http://twitter.github.io/bootstrap/assets/css/bootstrap-responsive.css */

.first {
	clear: both;
	margin-left: 0;
}

.row {
	display: -webkit-flex;
	display: flex;
	flex-direction: row;
}

.col {
	display: -webkit-flex;
	display: flex;
	flex-direction: column;
}

.col1, .col2 {
	width: 60%;
	margin-left: 40px;
}

.third {
	width: 33.3%; 
}

/* Common Classes
---------------------------------------------------------------------------------------------------- */

/* Avatar
--------------------------------------------- */

.avatar {
	border-radius: 50%;
	float: left;
}

.author-box .avatar,
.alignleft .avatar {
	margin-right: 24px;
}

.alignright .avatar {
	margin-left: 24px;
}

.comment .avatar {
	margin: 0 16px 24px 0;
}

.entry-avatar .avatar {
	background-color: #fff;
	float: none;
	margin-bottom: 40px;
	margin-top: -60px;
	padding: 5px;
}

/* Genesis
--------------------------------------------- */

.breadcrumb {
	font-size: 16px;
	font-size: 1.6rem;
	margin-bottom: 20px;
}

.breadcrumb a {
	text-decoration: none;
}

.featured-image .breadcrumb {
	margin-bottom: 0;
	position: absolute;
	top: -220px;
	width: 100%;
}

.featured-image .breadcrumb,
.featured-image .breadcrumb a {
	color: #fff;
}

.featured-image .breadcrumb a:hover,
.featured-image .breadcrumb a:focus {
	color: #ccc;
}

.after-entry,
.archive-description,
.author-box {
	margin-bottom: 20px;
}

.after-entry {
	box-shadow: 0 10px 80px rgba(0,0,0,.10);
	padding: 60px 80px;
}

.archive-description p:last-of-type,
.author-box p:last-of-type {
	margin-bottom: 0;
}

/* Search Form
--------------------------------------------- */

.search-form {
	overflow: hidden;
	position: relative;
}

.entry-content .search-form {
	margin-bottom: 40px;
	margin-top: 20px;
}

.error404 .entry-content .search-form input[type="search"] {
	margin-right: 10px;
	width: 50%;
}

.post-password-form input[type="submit"],
.search-form input[type="submit"] {
	margin-top: 10px;
}

.widget_search input[type="submit"],
.header-search-wrap input[type="submit"] {
	border: 0;
	clip: rect(0, 0, 0, 0);
	height: 1px;
	margin: -1px;
	padding: 0;
	position: absolute;
	width: 1px;
}

.widget_search input[type="submit"] {
	right: 0;
	top: 0;
}

.widget_search input[type="submit"]:focus,
.site-header .header-search-wrap input[type="submit"]:focus {
	background-color: #000;
	box-shadow: none;
	clip: auto;
	color: #fff;
	height: auto;
	padding: 22px 20px;
	width: auto;
}


/* Titles
--------------------------------------------- */

.archive-description .entry-title,
.archive-title,
.author-box-title {
	font-size: 16px;
	font-size: 1.6rem;
	font-weight: 500;
	text-transform: uppercase;
}


.archive-description .entry-title,
.archive-title {
	margin-bottom: 20px;
}

.author-box-title {
	margin-bottom: 10px;
}

.entry-title {
	font-size: 42px;
	font-size: 4.2rem;
	font-weight: 700;
	letter-spacing: -0.5px;
}

.blog-header .entry-title {
	font-weight: 300;
	text-align: center;
}

.blog-header .entry-title span {
	font-weight: 600;
}

.page .entry-title {
	margin-bottom: 0;
}

.page-template-page_blog-php.page .entry-title {
	margin-bottom: 10px;
}

.entry-title a,
.sidebar .widget-title a {
	color: #D04030;
	text-decoration: none;
	text-transform: uppercase;
	font-size: 2.8rem;
}

.entry-title a:hover,
.entry-title a:focus {
	color: rgba(209,31,19,1.00);
}

.widget-title {
	font-family: 'Open Sans','Helvetica Neue', Helvetica, sans-serif;
	font-size: 16px;
	font-size: 1.6rem;
	font-weight: 500;
	letter-spacing: -0.5px;
	margin-bottom: 10px;
	text-transform: uppercase;
}

.sidebar .widget-title {
	margin: 10px 10px 20px;
	font-size: 2.5rem;
	font-weight: 600;
	text-align: center;
	line-height: 1.3;
}

/* About Page
--------------------------------------------- */

.col1.aboutTop h3 {
	text-align: center;
}

.col2.aboutTop h1 {
	color: rgba(208,64,48,1);
}

.col2.aboutTop .topText {
	margin-top: 32px;
	font-size: 2.2rem;
	text-align: center;
	font-weight: 500;
	color: rgba(208,64,48,1);
}

.row.about-footer {
	padding-top: 20px;
}

.row.about-footer .col1 {
	width: 75% !important;
	padding: 4px 12px 0 0;
}

.row.about-footer .col2 {
	width: 25% !important;
}

.about-footer .talkBubble {
	margin: 12px;
	background: rgba(0,0,0,.038);
	padding: 22px;
	border-radius: 4px;
	font-size: 1.6rem;
	font-style: italic;
	color: #777;
}

.about-footer .talkBubble .arrowEffect {
    width: 30px;
    height: 30px;
    position: absolute;
    left: 10.5rem;
    transform: rotate(45deg);
    border-radius: 4px;
    background-color: #F5F5F5;
}

.col1.about-footer h2 {
	font-weight: 500;
	color: rgba(208,64,48,1);
}

.col1.about-footer img {
	max-width: 62px;
	margin: auto 38px;
}






/* WordPress
--------------------------------------------- */

a.aligncenter img {
	display: block;
	margin: 0 auto;
}

a.alignnone {
	display: inline-block;
}

.alignleft {
	float: left;
	text-align: left;
}

.alignright {
	float: right;
	text-align: right;
}

a.alignleft,
a.alignnone,
a.alignright {
	max-width: 100%;
}

img.centered,
.aligncenter {
	display: block;
	margin: 0 auto 24px;
}

img.alignnone,
.alignnone {
	margin-bottom: 12px;
}

a.alignleft,
img.alignleft,
.wp-caption.alignleft {
	margin: 0 20px 20px 0;
	width: 500px;
}



.gallery-caption,
.wp-caption-text {
	font-size: 14px;
	font-size: 1.4rem;
	font-weight: 500;
	margin: 0;
	text-align: center;
}

.entry-content p.wp-caption-text {
	margin-bottom: 0;
}

.entry-content .wp-audio-shortcode,
.entry-content .wp-playlist,
.entry-content .wp-video {
	margin: 0 0 30px;
}


/* Widgets
---------------------------------------------------------------------------------------------------- */

.widget {
	margin-bottom: 40px;
	word-wrap: break-word;
}

.widget p:last-of-type,
.widget ul > li:last-of-type,
.widget-area .widget:last-of-type {
	margin-bottom: 0;
}

.widget ul {
	padding: 0 0 20px 20px;
}

.sidebar .widget ul > li {
	margin-bottom: 0px;
	padding-bottom: 0px;
	list-style: circle;
}

.widget ul > li:last-of-type {
	padding-bottom: 0;
}

.widget ol > li {
	list-style-position: inside;
	list-style-type: decimal;
	padding-left: 20px;
	text-indent: -20px;
}

.widget li li {
	border: 0;
	margin: 0 0 0 30px;
	padding: 0;
}

.widget_calendar table {
	width: 100%;
}

.widget_calendar td,
.widget_calendar th {
	text-align: center;
}

.widget .addtoany_list {
    display: table;
    margin: 0 auto;
}



/* Featured Content
--------------------------------------------- */

.featured-content .aligncenter,
.featured-content .aligncenter:hover,
.featured-content .alignleft,
.featured-content .alignleft:hover,
.featured-content .alignnone,
.featured-content .alignnone:hover,
.featured-content .alignright,
.featured-content .alignright:hover {
	border-width: 0;
}

.featured-content .entry {
	padding: 0;
}

.sidebar .featured-content .entry {
	margin-bottom: 20px;
}

.featured-content .entry:last-of-type {
	margin-bottom: 0;
}

.featured-content .entry-title {
	font-size: 20px;
	font-size: 2rem;
}

.sidebar .featured-content .entry-title {
	font-size: 16px;
	font-size: 1.6rem;
	margin-bottom: 5px;
	margin-top: 10px;
}

.sidebar .featured-content .entry-meta {
	margin-bottom: 5px;
}

.sidebar .featured-content a.alignleft,
.sidebar .featured-content a.alignright {
	margin-bottom: 0;
}

/**************************************************************************/
/**************************************************************************/
/***************************    Plugins    ********************************/
/**************************************************************************/
/**************************************************************************/
/* 
---------------------------------------------------------------------------------------------------- */

/* Jetpack
--------------------------------------------- */

#wpstats {
	display: none;
}

/* Ninja Forms
--------------------------------------------- */

.entry-content .nf-field-label label {
	font-weight: 500;
}

#nf-field-3 {
	height: 100% !important;
}

#nf-field-4-wrap .nf-field-element {
	display: flex !important;
	justify-content: right !important;
	align-items: right !important;
}

#nf-field-14-wrap, .g-recaptcha {
	display: flex !important;
	justify-content: right !important;
	align-items: right !important;
}

/* Testimonials */

.testimonial-inner {
	position: relative;
}
.testimonial .testimonial-content .readmore {
	position: absolute;
	bottom: 10px;
	left: 20px;
}

.mailchimp_intro {
	width: 70%;
	margin: auto;
}

/*
input#yikes-easy-mc-form-1-EMAIL.yikes-easy-mc-email.field-no-label:focus {
	outline-color: #37A300;
}

input#yikes-easy-mc-form-1-FNAME.yikes-easy-mc-text.field-no-label:focus {
	outline-color: #37A300;
}
*/

/* popup Mailchimp Form */

section.yikes-mailchimp-form-description.yikes-mailchimp-form-description-2, 
section.yikes-mailchimp-form-description.yikes-mailchimp-form-description-3 {
	width: 75%;
	text-align: center;
	margin: 0 auto;
	padding: 14px 0;
	color: rgba(0,0,0,.45);
}

h3.yikes-mailchimp-form-title.yikes-mailchimp-form-title-2,
h3.yikes-mailchimp-form-title.yikes-mailchimp-form-title-3 {
	font-size: 3.4rem;
	color: #333;
	text-align: center;
}

button#sgcboxClose {
	bottom: 10px;
	right: 10px;
	color: #ccc !important;
}

#sgcboxClose:hover {
	color: #333 !important; 
}

button.yikes-easy-mc-submit-button.yikes-easy-mc-submit-button-2.btn.btn-primary,
button.yikes-easy-mc-submit-button.yikes-easy-mc-submit-button-3.btn.btn-primary {
	width: 30%;
	margin: 0 auto;
}

input#yikes-easy-mc-form-2-FNAME.yikes-easy-mc-text.field-no-label,
input#yikes-easy-mc-form-3-FNAME.yikes-easy-mc-text.field-no-label {
	width: 90% !important;
	margin: 0 auto;
}

input#yikes-easy-mc-form-2-EMAIL.yikes-easy-mc-email.field-no-label,
input#yikes-easy-mc-form-3-EMAIL.yikes-easy-mc-email.field-no-label {
	width: 90% !important;
	margin: 0 auto;
}

.sg-show-popup span.button.redframe {
	margin-top: 0 !important;
}



/* My Book Table */

.mbt-book.mbt-book-single.mbt-display-mode-singlecolumn .mbt-book-blurb {
    background: none;
    border: none;
    padding: 0;
    margin: 0 0 0 30px;
    font-size: 18px;
    text-align: left;
    line-height: 1.5;
    color: #444;
}



.mbt-book-summary-section .mbt-book-section-content .mbt-book-images .mbt-book-image {
	border: 0px solid #DEDEDE;
	-webkit-box-shadow: 0px 0px 5px 5px rgba(152,152,152,0.3);
	-moz-box-shadow: 0px 0px 5px 5px rgba(152,152,152,0.3);
	box-shadow: 2px 2px 5px 3px rgba(152,152,152,0.3);

}

.mbt-book-section.mbt-book-summary-section {
	border: none;
	padding: 50px 20px !important;
	background-color: #333333;
}

.mbt-book-single .mbt-book-blurb {
	color: #444 !important;
	font-style: italic;
	margin: 0 0 0 40px !important;
	text-align: center !important;
}

/*h2.mbt-book-teaser {
	color: #fff;
	font-size: 35px !important;
	font-size: 3.5rem !important;
	font-weight: normal !important;
	font-family: 'Open Sans','Helvetica Neue', Helvetica, sans-serif !important;
}*/

.mbt-book-section-title {
	display: none !important;
}

.mbt-book-overview h1 {
	padding-bottom: 25px;
}

.mbt-content-excpts li:nth-child(2n) {
	padding: 30px 50px !important;
	border: solid 2px #309000 !important;
}

.mbt-content-excpts li:nth-child(2n+1) {
	padding-top: 20px !important;
	padding-bottom: 20px !important;
}

.mbt-book-overview ul li {
	list-style-type: none !important;
}

.mbt-content-excpts ul {
	margin-left: 0 !important;
}

.mbt-content-excpts h2 {
	color: #333;
}

.getbookupdates {
	text-align: center;
	font-size: 2.2rem;
	color: rgba(0,0,0,.75);
	padding: 20px;
	margin: 10px 0 20px;
	border: 1px solid #DEDEDE;
}

.centered {
	text-align: center;
}

/**************************************************************************/
/*************************   Site Specific Styles   ***********************/
/**************************************************************************/



/**************************************************************************/
/***************************   END Site Specific   ************************/
/**************************************************************************/

/* Skip Links
---------------------------------------------------------------------------------------------------- */

.genesis-skip-link {
	margin: 0;
}

.genesis-skip-link li {
	height: 0;
	width: 0;
	list-style: none;
}

/* Display outline on focus */
/*:focus {
	color: #000;
	outline: #ccc solid 1px;
}*/

/* Site Header
---------------------------------------------------------------------------------------------------- */

.site-header {
	background-color: #fff;
	border-bottom: 1px solid transparent;
	min-height: 114px;
	padding: 0px 40px;
	position: fixed !important;
	top: 0;
	width: 100%;
	z-index: 9999;
	-moz-box-shadow: 0 4px 0px 0px rgba(33, 33, 33, .6);
    -webkit-box-shadow: 0 4px 0px 0px rgba(33, 33, 33, .6);
    box-shadow: 0 4px 0px 0px rgba(33, 33, 33, .6);  
}

.front-page .site-inner {
    margin-top: 100px !important;
}

.admin-bar .site-header {
	top: 32px;
}

.site-header > .wrap > * {
	-webkit-transition: all .4s ease-in-out;
	-moz-transition:    all .4s ease-in-out;
	-ms-transition:     all .4s ease-in-out;
	-o-transition:      all .4s ease-in-out;
	transition:         all .4s ease-in-out;
	position: relative;
}

.site-header.search-visible > .wrap > :not(.header-search-wrap) {
	opacity: 0;
}

.shadow .site-header,
.site-header.search-visible {
	border-bottom: 1px solid #DEDEDE;
}

/* Title Area
--------------------------------------------- */

.title-area {
	float: left;
	padding-bottom: 20px;
	padding-top: 20px;
}

.header-image .title-area {
	height: 64px;
	padding: 0;
	margin: 10px 0;
	width: 158px;
}

.site-title {
	font-family: 'Open Sans','Helvetica Neue', Helvetica, sans-serif;
	font-size: 16px;
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 0;
	text-transform: uppercase;
}

.site-title a,
.site-title a:hover,
.site-title a:focus {
	color: #333;
	text-decoration: none;
}

.header-image .site-title > a {
	background-size: contain !important;
	background-position: left center !important;
	float: left;
	height: 80px;
	width: 400px;
	margin: 5px 0 0 0;
}

.header-image .site-title,
.site-description {
	display: block;
	height: 0;
	margin-bottom: 0;
	text-indent: -9999px;
}

.site-header .header-widget-area {
	right: 30px;
	top: 10px;
	position: absolute;
	padding: 0;
	width: 85%;
	display: block;
	
}

.site-header .header-widget-area ul li {
	display: inline-block;
	margin-bottom: 0;
	padding-bottom: 0;
	margin-right: 10px;
	float: right;
}

.site-header .header-widget-area ul li img {
	width: 30px;
	border: 1px solid #DEDEDE;
}

/* Site Navigation
---------------------------------------------------------------------------------------------------- */

.genesis-nav-menu {
	clear: both;
	line-height: 1;
	width: 100%;
}

.genesis-nav-menu li {
	float: none;
	list-style-type: none;
}

.genesis-nav-menu li li {
	margin-left: 0;
}

.genesis-nav-menu .menu-item,
.genesis-nav-menu .toggle-header-search {
	display: inline-block;
	text-align: left;
}

.genesis-nav-menu .menu-item:focus,
.genesis-nav-menu .menu-item:hover {
	position: relative;
}

.genesis-nav-menu a,
.genesis-nav-menu .toggle-header-search {
	color: #333;
	display: block;
	font-family: 'Open Sans','Helvetica Neue', Helvetica, sans-serif;
	font-size: 18px;
	font-size: 1.8rem;
	font-weight: 400;
	padding: 60px 10px 32px;
	text-decoration: none;
}

.genesis-nav-menu .current-menu-item > a {

}

.genesis-nav-menu a:focus,
.genesis-nav-menu a:hover {
	
}

.genesis-nav-menu .sub-menu {
	background: transparent;
	left: -9999px;
	opacity: 0;
	position: absolute;
	-webkit-transition: opacity .5s ease-in-out;
	-moz-transition:    opacity .5s ease-in-out;
	-ms-transition:     opacity .5s ease-in-out;
	-o-transition:      opacity .5s ease-in-out;
	transition:         opacity .5s ease-in-out;
	width: 160px;
	z-index: 99;
	margin-top: -38px;
}

.genesis-nav-menu .sub-menu:before {
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-bottom: 5px solid #000;
	content: " ";
	height: 0;
	left: 15px;
	position: absolute;
	top: 0;
	width: 0;
}

.genesis-nav-menu .sub-menu .sub-menu:before {
	display: none;
}

.genesis-nav-menu > .menu-item > .sub-menu {
	padding-top: 5px;
	line-height: 1.3;
}

.genesis-nav-menu > .menu-item > .sub-menu > .menu-item:first-child {
	border-radius: 3px 3px 0 0;
}

.genesis-nav-menu > .menu-item .sub-menu > .menu-item:first-child,
.genesis-nav-menu > .menu-item > .sub-menu > .menu-item:last-child,
.genesis-nav-menu .sub-menu a {
	background-color: #333;
}

.genesis-nav-menu .sub-menu .current-menu-item a {
	background-color: rgba(0,0,0,1.00) !important;
}

.genesis-nav-menu .current-menu-ancestor > a {
	
}

.genesis-nav-menu > .menu-item .sub-menu > .menu-item:first-child {
	padding-top: 5px;
}

.genesis-nav-menu > .menu-item > .sub-menu > .menu-item:last-child {
	border-radius: 0 0 3px 3px;
}

.genesis-nav-menu > .menu-item .sub-menu > .menu-item:last-child {
	padding-bottom: 5px;
}

.genesis-nav-menu .sub-menu a {
	font-size: 13px;
	font-size: 1.3rem;
	padding: 12px 15px;
	position: relative;
	width: 160px;
}

.genesis-nav-menu .sub-menu .sub-menu {
	margin: -42px 0 0 160px;
}

.genesis-nav-menu .menu-item:hover {
	position: static;
}

.genesis-nav-menu .menu-item:hover > .sub-menu {
	left: auto;
	opacity: 1;
}

/* Header Menu
--------------------------------------------- */

.nav-primary {
	float: right;
	margin-top: 0px;
	text-align: right;
}

.nav-primary .genesis-nav-menu .sub-menu a {
	color: rgba(255,255,255,1);
}

.nav-primary .genesis-nav-menu .sub-menu li:last-child a {
	border-bottom: none;
}

.nav-primary .genesis-nav-menu .sub-menu a:focus,
.nav-primary .genesis-nav-menu .sub-menu a:hover {
	background-color: rgba(0,0,0,1.00);
	color: #FFF;
	border-bottom: 0px;
}

.nav-primary .genesis-nav-menu .sub-menu .current-menu-item > a {
	border-bottom: 0 !important;
}

/* Header Search
--------------------------------------------- */

.header-search-wrap {
	display: none;
}

.js .header-search-wrap {
	height: 100%;
	left: 0;
	padding: 10px 40px;
	position: absolute;
	-webkit-transform: translate3d(0,-100%,0);
	transform: translate3d(0,-100%,0);
	-moz-transition: none;
	-webkit-transition: none;
	transition: none;
	top: 0;
	width: 100%;
	z-index: 1001; /* Show above the menu toggle button */
}

.js .header-search-wrap .search-form,
.js .header-search-wrap input[type="search"] {
	height: 100%;
}

.search-visible .header-search-wrap {
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

.header-search-wrap:target {
	clear: both;
	display: block;
	position: relative;
}

.header-search-wrap input[type="search"] {
	border: 0;
	padding-left: 0;
	padding-right: 100px;
}

.header-search-wrap input[type="submit"]:focus {
	border-radius: 3px;
	margin-top: 1px;
	padding: 20px;
	right: 50px;
}

.toggle-header-search {
	background: transparent;
}

.js .toggle-header-search.close:focus {
	outline: 0;
}

.toggle-header-search.close {
	color: #333;
	height: 100%;
	padding: 0;
	position: absolute;
	right: 0;
	top: 0;
	transform: translate3d(-35px,0,0);
	transition: transform .2s ease-in-out;
	width: 30px;
	z-index: 100;
}

.header-search-wrap:target .toggle-header-search.close {
	-moz-transform: none;
	-webkit-transform: none;
	transform: none;
}

.toggle-header-search .ionicons {
	font-size: 12px;
	font-size: 1.2rem;
	-webkit-transform: scale(2);
	-moz-transform: scale(2);
	-ms-transform: scale(2);
	-o-transform: scale(2);
	transform: scale(2);
}

.toggle-header-search.close .ionicons {
	position: absolute;
	right: 50%;
	top: calc(50% - 5px);
	-webkit-transform: scale(3);
	-moz-transform: scale(3);
	-ms-transform: scale(3);
	-o-transform: scale(3);
	transform: scale(3);
}

/* Footer Menu
--------------------------------------------- */

.nav-secondary {
	margin-bottom: 10px;
}

.nav-secondary .genesis-nav-menu {
	font-family: 'Open Sans','Helvetica Neue', Helvetica, sans-serif;
	font-weight: 200;
	margin-top: 20px;
}

.nav-secondary .genesis-nav-menu li {
	padding-left: 2px;
}

.nav-secondary .genesis-nav-menu a {
	font-family: 'Open Sans','Helvetica Neue', Helvetica, sans-serif;
	font-size: 12px;
	font-size: 1.2rem;
	font-weight: 300;
	letter-spacing: 1px;
	margin-left: 15px;
	padding: 0;
	text-transform: uppercase;
}

.nav-secondary .genesis-nav-menu li:first-child a {
	margin-left: 0;
}

.nav-secondary .genesis-nav-menu li:first-child:before {
	content: "";
}

.nav-secondary .genesis-nav-menu li:before {
	color: #414141;
	content: "—";
	font-size: 10px;
	font-size: 1rem;
	float: left;
}

.footer-social {
    margin-left: 0;
}

.footer-social a {
	border-bottom: none !important;
}

.footer-social img {
	max-width: 36px !important;
	margin: 0 4px;
	text-align: center;
}

/* Accessible Menu
--------------------------------------------- */

.menu .menu-item:focus,
.menu .menu-item.sfHover {
	position: static;
}

.menu .menu-item > a:focus + ul.sub-menu,
.menu .menu-item.sfHover > ul.sub-menu {
	left: auto;
	opacity: 1;
}

.genesis-nav-menu .menu-item.sfHover > .sub-menu > .menu-item.sfHover > .sub-menu {
	left: 160px;
	margin-left: 0;
}

.menu-toggle,
.sub-menu-toggle {
	display: none;
	visibility: hidden;
}

/* Content Area
---------------------------------------------------------------------------------------------------- */

/* Entries
--------------------------------------------- */

.entry-background {
	display: block;
	height: 460px;
	margin-top: 80px;
	position: relative;
	width: 100%;
}

.entry {
	margin-bottom: 10px;
	border-bottom: 1px solid #DFDFDF;
	border-spacing: 3px 6px;
	font-family: 'Open Sans','Helvetica Neue', Helvetica, sans-serif;
	padding-right: 20px;
}

.landing-page .entry {
	margin-bottom: 0;
}

/*.entry-content p:last-of-type {
	margin-bottom: 0;
	float: right;
	width: 72%;
}*/

.entry-content ol,
.entry-content ul {
	margin-bottom: 30px;
	margin-left: 40px;
}

.entry-content ol > li {
	list-style-type: decimal;
}

.entry-content ul > li {
	list-style-type: disc;
}

.entry-content ol ol,
.entry-content ul ul {
	margin-bottom: 0;
}

.entry-content code {
	background-color: #333;
	color: #eee;
}

.entry-content .intro {
	font-size: 19px;
	font-size: 1.9rem;
	font-style: italic;
	font-weight: 600;
}

p.center {
	text-align: center;
}

.mailicon:hover {
	opacity: 0.7;
	transition: .1s ease;
}

.mailicon {
	margin-bottom: 20px;
	margin-top: 20px;
	max-width: 50px;
}


/* Entry Messages
--------------------------------------------- */

.message {
	padding: 25px 30px;
}

.message,
.message a {
	color: #fff;
}

.message a {
	border-bottom: 1px solid #fff;
}

.message a:hover,
.message a:focus {
	border-bottom: none;
}



/* Entry Meta
--------------------------------------------- */

p.entry-meta {
	font-size: 18px;
	font-size: 1.8rem;
	margin-bottom: 0;
	font-family: 'Open Sans','Helvetica Neue', Helvetica, sans-serif;
}

.entry-meta a {
}

.entry-meta a:hover,
.entry-meta a:focus {
	color: rgba(0,0,0,1.00);
}

.single.full-width-content .entry-header {
	text-align: center;
}

.entry-header {
	margin-top: 100px;
	-webkit-background-clip: padding-box;
	-moz-background-clip:    padding;
	background-clip:         padding-box;
	position: relative;
	z-index: 9;
	background-color: #333;
	background-position: 0% -18%;
	background-repeat: no-repeat;
	background-size:100% auto; 
	padding: 70px 60px 65px;
	color: #FFFFFF;
	background-attachment: fixed;
}

.entry-header h1.entry-title, .entry-header h2.entry-title {
    font-size: 32px;
    font-size: 4.5rem;
    font-weight: 600;
	color: #FFFFFF;
    letter-spacing: normal;
}

.entry .entry-header {
	margin-top: 20px;
	background-color: transparent;
	background-image: none;
	background-position: none;
	padding: 10px 0px;
	color: rgba(0,0,0,1.00);
}

.entry .entry-header h1.entry-title, .entry .entry-header h2.entry-title { 
    font-size: 32px;
    font-size: 3.2rem;
    font-weight: 600;
	color: rgba(0,0,0,1.00);
}

.single.full-width-content .entry-header::after {
	margin-left: auto;
	margin-right: auto;
}

.sidebar .entry-header::after {
	display: none;
}

.entry-footer {
	margin-top: 30px;
}

.entry-categories::before,
.entry-tags::before {
	display: inline-block;
	font: normal 16px/1 'ionicons';
	margin-right: 8px;
	margin-top: -5px;
	vertical-align: middle;
	-webkit-font-smoothing: antialiased;
}

.entry-categories::before {
	content: "\f3ca";
}

.entry-tags::before {
	content: "\f48d";
}

.entry-categories,
.entry-tags {
	display: inline-block;
	margin-left: 10px;
}

#homeposts-wrapper article .entry-header,
#homeposts-wrapper article .entry-content p {
	width: 82% !important;
	float: left !important;
	margin-top: 0;
	padding-top: 0;
}

#homeposts-wrapper article .entry-content img {
	float: left;
	width: 35%;
}

#homeposts-wrapper .readmorebox {
	float: left;
	width: 72%;
}

/* Search */
.search .site-inner {
	margin-top: 100px;
}

.search .archive-description {
	margin-bottom: 10px;
}

.search .archive-title{
	color: #333333;
	font-size: 24px;
	font-size: 2.4rem;
	border-bottom: 1px solid #EAEAEA;
	padding: 0 0 20px;
}

.search .entry-header {
    margin-top: 0px;
    background-color: transparent;
    background-image: none;
    padding: 20px 0px 20px;
	font-size: 24px;
	font-size: 2.4rem;
    color: #333;
}

.post-5584 p.entry-meta {
	display: none;
}

.post-5592 img.alignleft {
	margin: 0 20px 20px 0;
	width: 35%;
}

/* Pagination
--------------------------------------------- */

.pagination {
	clear: both;
}

.archive-pagination a {
	background-color: rgba(0,10,0,1.00);
	border-radius: 3px;
	color: #fff;
	font-family: 'Open Sans','Helvetica Neue', Helvetica, sans-serif;
	font-size: 12px;
	font-size: 1.2rem;
	letter-spacing: 1px;
	line-height: 1;
	padding: 10px 15px;
	text-transform: uppercase;
	text-decoration: none;
}

.archive-pagination a:hover,
.archive-pagination a:focus,
.archive-pagination li.active a {
	background-color: rgba(0,0,0,1.00);
	text-decoration: none;
	box-shadow: 0 1px 15px 0 rgba(0,0,0,0.2);
	-webkit-transform: translateY(-1px);
	-moz-transform: translateY(-1px);
	transform: translateY(-1px);
}

.adjacent-entry-pagination {
	margin-bottom: 0;
}

.archive-pagination li {
	display: inline-block;
	margin-bottom: 27px;
	padding: 10px 0 0 0;
}

/* Comments
--------------------------------------------- */

.comment-respond,
.entry-comments,
.entry-pings {
	font-size: 17px;
	font-size: 1.7rem;
}

.entry-comments,
.entry-pings {
	margin-bottom: 100px;
}

.comment-list li {
	padding: 40px 0 0 30px;
}

.comment-list .depth-1 {
	padding-left: 0;
}

.comment-header {
	font-size: 16px;
	font-size: 1.6rem;
	line-height: 1.5;
	margin-bottom: 30px;
}

.comment-content {
	clear: both;
}

.comment-content p {
	margin-bottom: 20px;
}

.comment-content ul > li {
	list-style-type: disc;
}

.comment-respond input[type="email"],
.comment-respond input[type="text"],
.comment-respond input[type="url"] {
	width: 100%;
}

.comment-respond label {
	display: block;
	margin-right: 12px;
}

.comment-header p {
	margin-bottom: 0;
}

.entry-pings .reply {
	display: none;
}

/*.mbt-book-blurb {
	border-radius: 2px;
	background: white;
	border: 1px solid #E0E2E2;
	font-size: 22px;
	color: #484949;
	line-height: 27px;
	margin: 10px 0px 0px 10px;
	padding: 15px 23px;
	min-height: 50px;
}*/

div.mbt-book-section.mbt-book-summary-section {
	border: none;
	padding: 50px 20px !important;
	background-color: #fff;
}

.mbt-book-summary-section .mbt-book-section-content .mbt-book-images .mbt-book-image {
	border: 0px;
	-webkit-box-shadow: 0px 0px 5px 5px rgba(152,152,152,0.3);
	-moz-box-shadow: 0px 0px 5px 5px rgba(152,152,152,0.3);
	box-shadow: none;
}


/* Sidebar
---------------------------------------------------------------------------------------------------- */

.sidebar {
	line-height: 1.75;
}

.sidebar,
.sidebar p {
	font-size: 16px;
	font-size: 1.6rem;
}

.sidebar .widget {
	margin-bottom: 20px;
	padding: 10px 20px;
	border: 1px solid #EAEAEA;
	border-radius: 3px;
	display: table;
	width: 100%;
}

li.cat-item a {
	text-decoration: none;
}

/* Before Footer CTA
---------------------------------------------------------------------------------------------------- */

.before-footer-cta {
	background-color: #222222;
	background: linear-gradient(45deg,#0066cc,#02cbfb);
	line-height: 1.5;
	padding-bottom: 40px;
	padding-top: 45px;
	text-align: center;
}

.site-footer > div:nth-child(1) > p:nth-child(1) {
	display: none !important;
}

.site-footer > div:nth-child(1) > p:nth-child(1) {
	display: none;
}

.before-footer-cta h2 {
	color: #fff;
	text-transform: uppercase;
	font-size: 2.55rem;
	letter-spacing: .8px;
	margin-bottom: 32px;
}

.before-footer-cta .third {
	text-align: left;
	padding: 0 20px;
	width: 45% !important;
}

.before-footer-cta ul {
    padding: 12px 0 0 !important;
}

.before-footer-cta ul li {
	margin-bottom: 2px;
}

.before-footer-cta .wrap {
	max-width: 1200px;
}

.before-footer-cta p:last-of-type,
.before-footer-cta .widget:last-of-type {
	margin-bottom: 0;
}

.before-footer-cta,
.before-footer-cta a,
.before-footer-cta p,
.before-footer-cta .widget-title {
	color: #fff;
}

.before-footer-cta, .before-footer-cta a, .before-footer-cta p, .before-footer-cta .widget-title {
    text-decoration: none !important;
}

.before-footer-cta a {
	color: #fff !important;
}

.before-footer-cta a:focus,
.before-footer-cta a:hover {
	color: #fff !important;
}

.before-footer-cta p {
	font-size: 20px;
	font-size: 2rem;
}

/*Col 3*/

.before-footer-cta .third:last-child {
	-webkit-flex-grow: 1;
	flex-grow: 1;
}

.footercta-3 span {
	font-size: 2.15rem;
	font-weight: 500;
}

.footercta-3 p {
	padding: 8px 0;
	font-size: 1.6rem;
	opacity: .5;
}

.footercta-3 .book-download {
	padding: 10px 0;
	border-bottom: 1px solid rgba(255,255,255,.2);
}


.footercta-3 img.alignleft {
	margin: 10px 20px 20px 0;
	width: 150px;
}
	
	
.footercta-3 am-author-btn {
	
	}

/* Site Footer
---------------------------------------------------------------------------------------------------- */

.site-footer {
	background-color: #242424;
	bottom: 0;
	font-size: 15px;
	font-size: 1.5rem;
	line-height: 1;
	padding-bottom: 40px;
	padding-top: 40px;
	text-align: center;
	width: 100%;
	z-index: -99;
}

.gmm-active .site-footer {
	position: inherit;
}

.site-footer a,
.site-footer p {
	color: #8c8c8c;
}

.site-footer a:hover,
.site-footer a:focus,
.site-footer .genesis-nav-menu a:hover,
.site-footer .genesis-nav-menu a:focus {
	color: #8c8c8c;
	text-decoration: none;
}

.site-footer p {
	margin-bottom: 0;
}

.site-footer .ion-heart {
	font-size: 13px;
	margin-left: 2px;
	margin-right: 2px;
}

.site-footer .site-logo {
	height: 50px;
	margin-bottom: 10px;
	width: 50px;
}

/* Footer Widgets */


/* Author */
.author-box-title {
    font-size: 32px;
    font-size: 3.2rem;
    font-weight: 600;
    color: #FFFFFF;
    letter-spacing: normal;
	margin-bottom: 0px;
}

.single.full-width-content .entry-header {
    text-align: left !important;
}

.single.full-width-content .entry-header .entry-title {
    margin-bottom: 0;
}
/* Special Pages
---------------------------------------------------------------------------------------------------- */
.more-twin .site-inner {
   max-width: 1100px !important;
}


/* Media Queries
---------------------------------------------------------------------------------------------------- */

@media only screen and (max-width: 1280px) {


.genesis-nav-menu a, .genesis-nav-menu .toggle-header-search {
	font-size: 16px !important;
	font-size: 1.6rem !important;
}

.genesis-nav-menu a, .genesis-nav-menu .toggle-header-search {
	color: #333;
	display: block;
	font-family: 'Open Sans','Helvetica Neue', Helvetica, sans-serif;
	font-size: 18px;
	font-size: 1.8rem;
	font-weight: 400;
	padding: 60px 3px 32px;
	text-decoration: none;
}
	a.alignleft, img.alignleft, .wp-caption.alignleft {
		margin: 30px 20px 20px 20px;
	}
	
	#homeposts-wrapper article .entry-header, #homeposts-wrapper article .entry-content p {
	width: 70% !important;
	float: left !important;
	margin-top: 0;
	padding-top: 0;
}

	#homeposts-wrapper .readmorebox {
		float: right;
		width: 70%;
	}
	
	.addtoany_share_save_container {
		clear: both;
		margin: 16px;
	}
	
	.before-footer-cta .row {
	display: -webkit-flex;
	display: flex;
	flex-direction: row;
	padding: 0 50px;
}

}
@media only screen and (max-width: 1200px) {

	.nav-primary {
		float: none;
		margin-top: 10px;
		text-align: center;
	}

	.header-image .title-area {
	    width: calc(50% + 200px);
	    display: block;
	    float: right;
	    margin-top: 10px;
	}
	.genesis-nav-menu a, .genesis-nav-menu .toggle-header-search {
		padding: 60px 12px 32px;
	}

	#menu-main-nav li a::after {
	    padding-left: 15px;
	}
	
	.genesis-nav-menu a, .genesis-nav-menu .toggle-header-search {
	font-size: 16px !important;
	font-size: 1.6rem !important;
}

.genesis-nav-menu a, .genesis-nav-menu .toggle-header-search {
	color: #333;
	display: block;
	font-family: 'Open Sans','Helvetica Neue', Helvetica, sans-serif;
	font-size: 18px;
	font-size: 1.8rem;
	font-weight: 400;
	padding: 60px 3px 32px;
	text-decoration: none;
}
	
	#homeposts-wrapper #homeposts-content {
		padding-left: 20px;
	}
	
	#homeposts-wrapper article .entry-header, #homeposts-wrapper article .entry-content p {
		width: 62% !important;
	}
	
	#homeposts-wrapper .readmorebox {
		width: 64%;
	}

	.entry-header {
		margin-top: 150px;
	}

	.site-header .header-widget-area {
   	 	right: 96px;
    	top: 42px;
    }
	
	.footer-widgets .wrap {
		margin: 0 40px;
	}
	
	.site-inner {
		margin: 10px 40px 50px !important;
	}
	
	.front-page .site-inner {
		margin: 130px 0 0 !important;
	}

	.entry .entry-header {
		padding: 0 20px 0;
	}

	.first-child {
		padding: 0 20px 0;
	}

	.readmorebox {
		padding: 0 20px 0;
	}

	.addtoany_share_save_container {
		padding: 0 20px 0;
	}

	.ol, ul {
		padding: 0 0 5px;
	}

	.sidebar {
		padding-right: 20px;
	}
	.pagination {
		padding-left: 20px;
	}

	.site-inner .entry-content {
		padding: 0 25px 0;
	}
	
	.entry-header {
	margin-top: 150px;
	-webkit-background-clip: padding-box;
	-moz-background-clip: padding;
	background-clip: padding-box;
	position: relative;
	z-index: 9;
	background-color: #333;
	background-position: 0% 30%;
	background-repeat: no-repeat;
	background-size: 100% auto;
	padding: 70px 60px 65px;
	color: #FFFFFF;
	background-attachment: fixed;
}


}


@media only screen and (max-width: 1023px) {

	.nav-primary {
		float: none;
		margin-top: 10px;
		text-align: center;
	}
	
	.entry-header {
		margin-top: 150px;
	}

	.site-header .header-widget-area {
   	 	right: 96px;
    	top: 42px;
    }

    .entry {
    	padding: 0 20px 0;
	}

	.footer-widgets .wrap {
		margin: 0 40px;
	}
	
	.site-inner {
		margin: 10px 40px 50px !important;
	}
	
	.front-page .site-inner {
		margin: 130px 0 0 !important;
	}

	.entry .entry-header {
		padding: 0 20px 0;
	}

	.first-child {
		padding: 0 20px 0;
	}

	.readmorebox {
		padding: 0 20px 0;
	}

	.addtoany_share_save_container {
		padding: 0 20px 0;
	}

	.ol, ul {
		padding: 0 0 5px;
	}

	.sidebar {
		padding-right: 35px;
	}
	.pagination {
		padding-left: 20px;
	}
	
	#homeposts-wrapper article .entry-header, #homeposts-wrapper article .entry-content p {
		width: 60% !important;
	}

	 .entry-header {
		background-position: 0% 30% !important;
	}

	#sign-up-for-my-newsletter-1 input {
	    padding: 13px;
	}
	
	a.alignleft, img.alignleft, .wp-caption.alignleft {
	margin: 0 20px 20px 0;
	width: 400px;
}

}



@media only screen and (max-width: 983px) {
	
	.site-header {
		padding: 0px 20px;
	}
	
	.genesis-nav-menu a, .genesis-nav-menu .toggle-header-search {
		font-size: 16px !important;
		font-size: 1.5rem !important;
	}
	
	#homeposts-wrapper #homeposts-content {
		padding-left: 0;
	}
	
	#homeposts-wrapper #homeposts-content .entry {
		padding: 0;
	}
	
	#homeposts-wrapper article .entry-header, #homeposts-wrapper article .entry-content p {
		width: 100% !important;
	}
	
	#homeposts-wrapper {
		max-width: 900px;
		margin: 0px auto;
	}
	
	#homeposts-wrapper .entry-title {
	font-size: 42px;
	font-size: 4.0rem;
	
	}

	#homeposts-wrapper .effect2 {
		margin: 8px auto 0;
	}
	
	.before-footer-cta h2 {
		font-size: 2.0rem;
		font-size: 20px
	}
	
	.before-footer-cta img {
		max-width: 30%;
	}
	
	.footer-social img {
		max-width: 33px !important;
	}

	.front-page .site-inner {
    	margin: 156px 0 0 !important;
	}

	.fbox-container:hover .text-overlay {
    	transform: translateY(5px);
	}

	.front-page-7 .sub-title {
    	padding: 8px 20px;
    	text-align: center;
	}

	.genesis-nav-menu a, .genesis-nav-menu .toggle-header-search {
		padding-top: 45px;
	}

	#homeposts-content .entry-title {
		margin: 12px auto;
	}

	p.entry-meta {
    	margin-bottom: 25px;
	}

	.readmorebox {
    	padding: 0 50px 0;
	}


	#homeposts-wrapper article .entry-header, #homeposts-wrapper article .entry-content p {
		width: 90% !important;
		float: left;
	}
	
	#homeposts-wrapper article .entry-content img {
		float: left;
		width: 45%;
	}
}

@media only screen and (max-width: 782px) {

	.before-footer-cta .wrap,
	.site-inner {
		max-width: 80%;
		margin: 20px auto !important;
	}
	
	#yikes-mailchimp-container-1 .widgettitle widget-title {
		text-align: center;
	}

	.content-sidebar .content {
		float: none;
		width: 100%;
		max-width: 100%;
		border-right: 0px;
	}

	.sidebar {
		float: none;
		width: 100% !important;
		max-width: 100%;
		border-top: 1px solid #DEDEDE;
		padding: 0 20px 0;
	}
	
	.entry-header {
		margin-top: 100px;
		padding: 70px 30px 55px;
	}

	.entry-header h1.entry-title {
		font-size: 24px;
		font-size: 2.4rem;
	}

	.content,
	.full-width-content .content,
	.genesis-responsive-menu .genesis-nav-menu .sub-menu a,
	.genesis-responsive-menu .genesis-nav-menu .sub-menu,
	.js .nav-primary,
	.sidebar {
		width: 100%;
	}

	.entry-header {
		margin-top: 100px !important;
	}
	
	.front-page .site-inner {
		margin-top: 100px;
	}

	.site-header {
		padding-left: 20px;
		padding-right: 20px;
	}
	
	.header-image .title-area {
		height: auto;
		width: 100%;
		display: inline-block;
		clear: both;
		float: none;
	}

	.header-image .title-area h1.site-title {
		display: inline-block;
		width: 100%;
		height: auto;
		text-align: center;
	}

	.header-image .title-area h1.site-title > a {
		height: 86px;
		width: 300px;
		margin: 0 auto;
		float: none;
		display: block;
	}

	.site-header .header-widget-area {
		position: relative;
		display: block;
		right: auto;
		top: auto;
		margin: 0 auto;
	}

	.site-header .header-widget-area .widget-wrap {
		display: block;
		text-align: center;
	}

	.site-header .header-widget-area .widget-wrap ul {
		display: inline-block;
		padding: 0;
		margin: 0 auto !important;
	}

	.genesis-nav-menu li {
		float: none;
	}

	.genesis-responsive-menu .wrap {
		padding: 0;
	}

	.genesis-responsive-menu {
		display: none;
		position: relative;
	}

	.site-header > .wrap > .genesis-responsive-menu {
		-webkit-transition: none;
		-moz-transition:    none;
		-ms-transition:     none;
		-o-transition:      none;
		transition:         none;
	}

	.genesis-skip-link .skip-link-hidden {
		display: none;
		visibility: hidden;
	}

	.menu-toggle,
	.sub-menu-toggle {
		border-width: 0;
		color: #333;
		display: block;
		font-family: 'Open Sans','Helvetica Neue', Helvetica, sans-serif;
		margin: 0 auto;
		overflow: hidden;
		text-align: center;
		visibility: visible;
		width: auto;
	}

	.menu-toggle:focus,
	.menu-toggle:hover,
	.sub-menu-toggle:focus,
	.sub-menu-toggle:hover {
		background: transparent;
		border-width: 0;
		box-shadow: none;
		color: rgba(0,0,0,1.00);
	}

	.js .genesis-nav-menu > .menu-item .sub-menu > .menu-item:first-child,
	.js .genesis-nav-menu > .menu-item > .sub-menu > .menu-item:last-child,
	.js .genesis-nav-menu .sub-menu a,
	.js #genesis-mobile-nav-primary {
		background-color: #fff;
		color: #333;
	}

	#genesis-mobile-nav-primary.activated {
		border-bottom-color: transparent;
	}

	#genesis-mobile-nav-primary:focus,
	#genesis-mobile-nav-primary:hover {
		color: rgba(0,0,0,1.00);
	}


	.menu-toggle::before {
		font-size: 20px;
		font-size: 2.5rem;
		margin-right: 5px;
		text-rendering: auto;
		vertical-align: bottom;
	}

	.sub-menu-toggle {
		background: transparent;
		float: right;
		font-size: 14px;
		font-size: 1.4rem;
		padding: 10px;
		position: absolute;
		right: 0;
		top: 2px;
		z-index: 100;
	}

	.sub-menu-toggle::before {
		display: inline-block;
		text-rendering: auto;
		-webkit-transform: rotate( 0 );
		-ms-transform:     rotate( 0 );
		transform:         rotate( 0 );
		-webkit-transition: transform .25s ease-in-out;
		-ms-transition:     transform .25s ease-in-out;
		transition:         transform .25s ease-in-out;
	}

	.sub-menu-toggle.activated::before {
		-webkit-transform: rotate( 180deg );
		-ms-transform:     rotate( 180deg );
		transform:         rotate( 180deg );
	}

	.genesis-responsive-menu .genesis-nav-menu .menu-item {
		display: block;
		float: none;
		position: relative;
		text-align: left;
	}

	.genesis-responsive-menu .genesis-nav-menu .menu-item:focus,
	.genesis-responsive-menu .genesis-nav-menu .menu-item:hover {
		position: relative;
	}

	.genesis-responsive-menu .genesis-nav-menu a:focus,
	.genesis-responsive-menu .genesis-nav-menu a:hover,
	.genesis-responsive-menu .genesis-nav-menu .sub-menu .menu-item a:focus,
	.genesis-responsive-menu .genesis-nav-menu .sub-menu .menu-item a:hover,
	.genesis-responsive-menu.nav-primary .genesis-nav-menu .sub-menu .current-menu-item > a {
		color: rgba(209,31,19,1.00);
	}

	.genesis-responsive-menu .genesis-nav-menu .menu-item a,
	.genesis-responsive-menu .toggle-header-search {
		border: none;
		margin-bottom: 1px;
		padding: 15px 20px;
		width: 100%;
	}

	.genesis-responsive-menu.nav-primary .genesis-nav-menu .sub-menu a {
		color: #000;
	}

	.genesis-nav-menu > .menu-item .sub-menu > .menu-item:first-child {
		padding-top: 0;
	}

	.genesis-nav-menu > .menu-item .sub-menu > .menu-item:last-child {
		padding-bottom: 5px;
	}

	.genesis-responsive-menu .genesis-nav-menu .sub-menu::after,
	.genesis-responsive-menu .genesis-nav-menu .sub-menu::before,
	.genesis-responsive-menu .genesis-nav-menu > .menu-item-has-children > a::after {
		content: none;
	}

	.genesis-responsive-menu .genesis-nav-menu .menu-item > a:focus ul.sub-menu,
	.genesis-responsive-menu .genesis-nav-menu .menu-item > a:focus ul.sub-menu .sub-menu {
		left: 0;
		margin-left: 0;
	}

	.genesis-responsive-menu .genesis-nav-menu .sub-menu {
		clear: both;
		display: none;
		margin: 0;
		opacity: 1;
		padding-left: 15px;
		position: static;
		width: 100%;
	}

	.genesis-responsive-menu .toggle-header-search {
		display: none;
	}

	.content-sidebar .content,
	.sidebar-content .content {
		margin-bottom: 20px;
	}


	.pricing-table .one-fifth,
	.pricing-table .one-fourth,
	.pricing-table .one-half,
	.pricing-table .one-third {
		padding: 30px 40px;
	}

	.pricing-table .one-fourth,
	.pricing-table .one-fifth {
		width: 50%;
	}
	
	.entry .entry-header {
		padding: 0 25px 0;
	}

	.first-child {
		padding: 0 15px 0;
	}

	.readmorebox {
		padding: 0 15px 0;
	}

	.addtoany_share_save_container {
		padding: 0 15px 0;
	}
	
	#homeposts-wrapper #homeposts-content .entry-header {
		margin-top: 0 !important;
	}

	.before-footer-cta .row {
		padding: 0 !important;
	}
	
	.footer-social img {
	max-width: 25px !important;
	}

	.text-overlay {
		opacity: 1;
	}

	.fbox-container img {
		width: 60%;
	}

	.front-page-7 .sub-title {
    width: 60%;
    margin: auto;
	}

	#homeposts-content .entry-title {
    	margin: auto;
	}

	#homeposts-wrapper article .entry-header,
	#homeposts-wrapper article .entry-content p,
	#homeposts-wrapper article .entry-content img {
    	width: 80% !important;
	}

	#homeposts-wrapper .readmorebox {
    	width: 100%;
    	margin-bottom: 15px;
	}

	#homeposts-wrapper img.alignleft {
		margin: 30px auto 20px;
	}

	.front-page-5 .col2 p {
		padding-bottom: 25px;
	}

	.front-page .site-inner {
    	margin: 135px 0 0 !important;
	}

	.footer-social img {
    	max-width: 50px !important;
	}

	.post-14 .row.about-footer .col2 {
		width: 65% !important;
	}

	.site-inner #homeposts-content .entry-content {
    	padding: 0 45px 0;
	}
	
	a.alignleft, img.alignleft, .wp-caption.alignleft {
	margin: 0 15% 2% 15%;
	width: 100%;
	max-width: 400px;
}
}

@media only screen and (max-width: 740px) {
}

.effect3 {
	position: relative;
	margin: 0 15% 0 0;
}


@media only screen and (max-width: 692px) {

	.site-header .header-widget-area {
	    top: 80%;
	}
	
	.header-image .site-title > a {
		width: 300px;
	}

	.site-header {
		padding: 0 3%;
		position: relative !important;
	}
	
	.front-page .site-inner {
		margin: 10px 0 0 !important;
	}

	.entry-header {
		margin-top: -10px !important;
		padding: 40px 30px 45px;
	}
	
	.before-footer-cta .row {
		display: block;
	}

	.before-footer-cta .third {
    	width: 72% !important;
    	margin: auto;
	}
	
	.post-14 .row {
		display: -webkit-flex;
		display: block;
		flex-direction: row;
	}

	 .post-14 .col1, .col2 {
		width: 90%;
	}
	
		.site-inner .entry-content {
		padding: 0 5px 0;
	}

	.post-14 .row.about-footer .col1 {
		width: 95% !important;
	}
	
	 .page .site-inner {
		max-width: calc(100% + 10vw) !important;
	}
	
	.post-5592 img.alignleft {
		margin: 0 20px 20px 0;
		width: 80%;
	}
	
	
}

@media only screen and (max-width: 600px) {
	.footer-cta-button {
		display: block;
	}
	
	a.alignleft, img.alignleft, .wp-caption.alignleft {
		margin: 30px 20px 20px 0;
	}

	.before-footer-cta .third {
		text-align: left;
		padding: 0 20px;
		width: 65% !important;
	}
	

	
	.book-page {}
	
	.mbt-book .mbt-book-images {
		width: 70% !important;
	}
	
	.mbt-book.mbt-book-single.mbt-display-mode-storefront .mbt-book-blurb {
		padding: 15px 5px;
		min-height: 50px;
	}

	.fbox-container img {
    	width: 80%;
	}

	.front-page-7 .sub-title {
    	width: 80%;
	}

	.before-footer-cta .wrap, .site-inner {
    	max-width: 100% !important;
    }
	
	div#n2-ss-3 .nextend-bullet-bar {
		display: none !important;
	}

}

@media only screen and (max-width: 450px) {
	.flexible-widgets .widget {
		padding-left: 0 !important;
		padding-right: 0 !important;
	}
	
	.before-footer-cta .third {
		width: 75% !important;
	}

.entry-header {
		margin-top: -50px !important;
		padding: 40px 30px 45px;
	}
	
	

	.post-14 .about-footer .talkBubble {
		margin: 12px;
		padding: 12px;	
	}
	
	.post-14 .row.about-footer .col1 {
		width: 100% !important;
	}

	.post-14 .row.about-footer .col2 {
		width: 95% !important;
	}

	#sign-up-for-my-newsletter-1 button {
		width: 33%;
		white-space: nowrap;
	}

	.site-inner #homeposts-content .entry-content {
    	padding: 0 30px 0;
	}
	
	button.yikes-easy-mc-submit-button.yikes-easy-mc-submit-button-2.btn.btn-primary, button.yikes-easy-mc-submit-button.yikes-easy-mc-submit-button-3.btn.btn-primary {
	width: 40%;
	margin: 0 auto;
}

.col1, .col2 {
	width: 100%;
	margin-left: 0;
}
}
