/*
Theme Name: Context Productions, Redux
Theme URI: https://www.contextproductions.com/
Author: James Johnson, updated by statenweb
Author URI: https://www.jamesjohnson.net/
Description: The main theme for contextproductions.com
Version: 3.0.1
License: Copyright 2018 Context Productions
License URI: https://www.contextproductions.com/
Text Domain: context
Tags: one-column
*/

/*
 * *** TOC ***
 *
 * 1. Normalize
 * 2. Typography
 * 3. Media
 * 4. Forms
 * 5. Header
 * 6. Footer
 * 7. Posts & Pages
 * 8. Homepage
 * 9. Books/Stories
 * 10. Utility Styles
 * 11. Media Queries
 */

/*
 * *** 1. Normalize ***
 */

/*! normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */
:root {
	--gold: rgb(243, 195, 0);
	--marigold: #faa61a;
	--red: rgb(210, 69, 30);
	--blue: rgb(0, 167, 225);
	--dark-gray: rgb(99,100,102);
	--white: #fff;
	--black: #000;
	--dark-gray-hover: #797b7d;

	--button-color: var(--dark-gray);
	--button-color-hover: var(--dark-gray-hover);
	--button-color-accent: var(--marigold);
}
/**
 * 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;
}

* {
	box-sizing: border-box;
}

/*
 * *** 2. Typography ***
 */

body {
	color: #58585a;
	color: var(--dark-gray);

	font-family: 'Roboto', sans-serif;
	font-size: 1.125rem;
	line-height: 1.5;
}

a {
	color: var(--dark-gray);
	text-decoration: underline;
	font-weight: bold;
}

a:hover {

	text-decoration: none;
}

h2 a, h3 a, h4 a, h5 a, h6 a {text-decoration:none;}
h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover, h6 a:hover {text-decoration:underline;color:var(--marigold)}

h1 {
	color: #000;
	font-size: 2.25rem;
	line-height: 1.2;
}

h2 {
	color: #000;
	font-size: 1.875rem;
	line-height: 1.2;
}

h3 {
	color: #000;
	font-size: 1.5rem;
	line-height: 1.2;
}

h4, h5, h6 {
	color: #000;
	line-height: 1.5;
}

h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
	color: #000;
	margin: 0;
}

ol, ul {
	/*color: #000;*/
	display: inline-block;
}

blockquote {
	border-left: 10px #faa61a solid;
	color: #000;
	font-size: 1.5rem;
	font-weight: bold;
	padding-left: 16px;
}

pre {
	background: #ebebeb;
	font-family: Consolas, monospace;
	padding: 16px;
}

hr {
	border: none;
	border-bottom: 1px #ccc solid;
}

.wp-caption,
figure {
	background: #ebebeb;
	display: inline-block;
	margin: 0 16px;
	padding: 5px;
}

.wp-caption-text,
figcaption {
	color: #000;
	display: block;
	font-weight: bold;
	margin: auto;
}

/*
 * *** 3. Media ***
 */

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

.alignright {
	margin: 16px 0 16px 16px;
}

.alignleft {
	margin: 16px 16px 16px 0;
}

.aligncenter {
	margin: 16px;
}

.wp-caption img {
	display: block;
	margin: auto;
}

img.wp-post-image {
	margin: 0;
}

/*
 * *** 4. Forms ***
 */

.wpcf7-form {
	max-width: 300px;
}

input,
textarea {
	background: #ebebeb;
	border: none;
	color: #000;
	max-width: 280px;
	padding: 16px 8px;
}

/*input[type='submit'],*/
/*button {*/
/*	background: #faa61a;*/
/*	border: none;*/
/*	border-radius: 5px;*/
/*	color: #fff;*/
/*	cursor: pointer;*/
/*	font-weight: bold;*/
/*	padding: 16px;*/
/*}*/

/*input[type='submit']:hover,*/
/*button:hover{*/
/*	background: #58585a;*/
/*}*/

label {
	color: #000;
	font-size: 1rem;
	font-weight: bold;
}

.btn {
	background: #faa61a;
	border: none;
	border-radius: 5px;
	color: #fff;
	cursor: pointer;
	font-weight: bold;
	padding: 16px;
}

.btn:hover {
	background: #58585a;
}

.book a.btn-buy {
	color: #fff;
	display: inline-block;
	max-width: 400px;
}

.book a.btn-buy:hover {
	text-decoration: none;
}

.btn-buy {
	background: #1687ef;
	margin-top: 5px;
}

/*
 * *** 5. Header ***
 */

/* Branding & Social Icons */
#cp-header {
	border-bottom: 1px #ccc solid;
	margin: 0;
}

#cp-banner {
	align-items: center;
	display: flex;
	flex-direction: column;
}

#cp-logo {
	margin: 8px 32px 8px 16px;
	width: 220px;
	height: 79px;
}

#cp-social-icons {
	margin: 1rem 0;
}

#cp-social-icons i {
	color: #faa61a;
	margin-right: 16px;
}

#cp-social-icons i:hover {
	color: #58585a;
}

/* Main Menu */
#cp-main-navbar {
	border-top: 2px #ccc solid;
}

#cp-main-menu-button {
	background: #58585a;
	border: 0;
	border-radius: 0;
	color: #fff;
	height: 50px;
	width: 100%;
}

#cp-main-menu-button:hover {
	background: #faa61a;
}


#cp-main-menu-items {
	display: none;
	width: 100%;
}

#cp-main-menu ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

#cp-main-menu ul li a {
	border-bottom: 1px #ccc solid;
	color: #58585a;
	display: block;
	padding: 16px;
	text-transform: uppercase;
}

#cp-main-menu ul li a:hover {
	background: #faa61a;
	color: #fff;
	text-decoration: none;
}

#cp-main-menu ul li.current-menu-item a,
#cp-main-menu ul li.current-post-ancestor a {
	color: #faa61a !important;
}

#cp-main-menu ul li.current-menu-item a:hover,
#cp-main-menu ul li.current-post-ancestor a:hover {
	color: #fff !important;
}

/* Search Box */
.cp-search-form {
	display: flex;
}
.cp-search-field {
	background: #ebebeb;
	border: none;
	flex-grow: 1;
	margin: 8px 0 8px 16px;
	padding: 16px 8px;
}

.cp-search-button {
	background: #ebebeb;
	border: none;
	border-radius: 0;
	color: #faa61a;
	margin: 8px 16px 8px 0;
	padding: 16px;
}

/*
 * *** 6. Footer ***
 */

#cp-footer {
	border-top: 2px #ccc solid;
	font-size: 1rem;
	margin-top: 16px;
	padding: 16px;
}

#cp-footer-menu {
	margin: 16px 0;
}

#cp-footer-menu ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

#cp-footer-menu ul li {
	display: inline;
	margin-right: 32px;
}

/*
 * *** 7. Posts & Pages ***
 */

/* All content edit - well */
article {
	/* Clearfix */
	clear: both;
	content: "";
	display: table;
	width: 100%;
}

#cp-content {
	max-width: 100%;
	padding: 0 16px;
}

body.page {
	margin: 0;
}

.cp-contact h1#cp-post-title,
.cp-about h1#cp-post-title {
	border: none;
	color: #000;
	font-weight: bold;
}

.post,
.page {
	border-bottom: 1px #ccc solid;
	margin: 32px 0 10px 0;
	padding-bottom: 32px;
}

.post:last-child,
.page:last-child {
	border-bottom: none;
}

/* Post pagination */
#cp-post-nav {
	border-bottom: 1px #ccc solid;
	padding-bottom: 10px;
}

#cp-post-nav ul {
	align-items: center;
	list-style: none;
	display: flex;
	margin: 0;
	padding: 0;
}

#cp-post-nav ul li {
	display: inline;
}

/* Single */
#cp-post-category {
	border-bottom: 1px #ccc solid;
	margin-top: 32px;
}
#cp-post-category a {
	color: #58585a;
	font-size: 1.875rem;
	font-weight: normal;
	line-height: 1;
}

#cp-post-category a:hover {
	text-decoration: none;
}

#cp-post-title {
	font-size: 3rem;
	line-height: 1;
}

#cp-byline {
	color: #959595;
	font-style: italic;
}

/* Category Archive */
#cp-post-category.cp-archive a {
	font-size: 3rem;
}

/*
 * *** 8. Homepage ***
 */

#cp-hero {
	align-items: center;
	background: #000;
	display: flex;
	flex-direction: column;
	max-height: 800px;
	max-width: 1920px;
}


#cp-intro {
	background: #ebebeb;
	padding: 32px 16px;
}

.cp-big-quote {
	margin: auto;
	max-width: 914px;
	width: 100%;
}

#cp-intro h2 {
	color: #58585a;
	font-size: 1.5rem;
}

#cp-news {
	border-bottom: 1px #ccc solid;
	margin: auto;
	max-width: 914px;
	padding: 32px 16px 16px 16px;
	width: 100%;
}

.home-news {
	border-bottom: 1px #ccc solid;
	padding: 32px 0 16px 0;
}

.home-news:last-of-type {
	border-bottom: 0;
}

#cp-email-signup h2,
#cp-news h2 {
	color: #000;
	line-height: 1;
}

h3.cp-news {
	color: #58585a;
	font-weight: normal;
	line-height: 1;
}

#cp-news:last-child {
	border-bottom: none;
}

/* Mailchimp */
.indicates-required,
.mc-field-group label {
	display: none;
}

.cp-email-btn-grp {
	display: inline-block;
	max-width: 220px;
}

#cp-email-signup h2,
#cp-news h2 {
	color: #000;
	margin: 0;
}

#cp-email-signup {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	margin: auto;
	max-width: 914px;
	padding: 32px 16px;
	width: 100%;
}

#cp-email-text {
	flex: 1;
	margin-right: 10px;
}

#cp-email-text input {
	width: 100%;
	max-width: 320px;
}

#cp-email-text input[type="submit"] {
	margin-top: 10px;
}

#cp-email-signup img {
	flex: 1;
	width: 100%;
	height: auto;
	margin-top: 16px;
	max-width: 220px;
	max-height: 340px;
}


/*
 * *** 9. Books/Stories ***
 */

/* Stories Index */
.cp-page-index .novelist-book-cover-image {
	margin-right: 16px;
}

.cp-page-index #cp-post-title {
	border-bottom: 1px #ccc solid;
	color: #58585a;
	font-size: 3rem;
	font-weight: normal;
	margin-top: 0;
}

.novelist-book-title {
	font-size: 1.875rem;
}
input[type='submit'],
button,
.btn.btn-buy,
.novelist-book-details-button a {
	cursor:pointer;
	text-decoration:none;
	background: var(--button-color);
	border: 3px solid var(--button-color);
	border-radius: 5px;
	color: var(--white);
	display: inline-block;
	font-weight: bold;
	margin-top: 32px;
	padding: 16px 32px;
	transition:
		    border 200ms linear,
			background-color 200ms linear;

}
input[type='submit']:hover,
button:hover,
.btn.btn-buy:hover,
.novelist-book-details-button a:hover {
	background: var(--button-color-hover);
	border: 3px solid var(--button-color-hover);
	color:var(--white);
	text-decoration: none;
}

.novelist-book-details-button.outline a {

	background:transparent;
	color:var(--white);
	border:3px solid var(--gold);
}

.novelist-book-details-button.outline a:hover {
	background: var(--gold);
	color:var(--black);
	text-decoration: none;
}


.novelist-book-list {
	max-width: 320px;
}

div.novelist-book {
	border-bottom: 1px #ccc solid;
	padding-bottom: 32px;

	/* Clearfix */
	content: "";
	display: table;
	clear: both;
}

div.novelist-book:last-child {
	border-bottom: none;
}

/* Book Page */
#cp-book-category {
	border-bottom: 1px #ccc solid;
	color: #58585a;
	font-size: 3rem;
	font-weight: normal;
}

#cp-book-title {
	font: 1.875rem;
	line-height: 1;
	margin-bottom: 0;
}

.book a {
	color: #58585a;
}

blockquote.novelist-synopsis {
	border: none;
	color: #58585a;
	margin: 0;
	font-size: 1.125rem;
	font-weight: normal;
	padding: 0;
}

.main-hero {
	height: 500px;
}
.context-hero-text {

}
.context-hero-text {
	background:#636466;
}



.context-hero-title {
	margin:0;
	font-size:72px;
	color:#FFF;
	padding:2rem;
	background:#000;
}
.context-hero-body {

	margin:0;
	font-size:26px;
	color:#FFF;
	padding:0 2rem 2rem 2rem;
	font-weight:bold;
}

.context-hero-body ul {
	padding-left:15px;
}
.context-hero-body ul ul li {
	padding-left:20px;
}
.context-hero-body ul ul li::marker {
	content: "»";
	font-size: 32px;
	margin-right:20px;


}

.context-hero-body ul ul {
	padding-left:20px;
}

@media screen and (max-width:768px){
	.context-hero-title {
		font-size:24px;
	}
	.context-hero-body {

		font-size:18px;

	}
}

@media screen and (max-width:1024px){
	.context-hero-title {
		font-size:24px;
	}
	.context-hero-body {

		font-size:18px;

	}
}

@media screen and (max-width:1200px) {
	.context-hero-title {
		font-size:36px;
	}
}

@media screen and (max-width:1366px) {
	.context-hero-title {
		font-size:48px;
	}
}

/*
 * *** 10. Utility Classes ***
 */


.mt-0 {
	margin-top:0 !important;
}
.bg-cover {
	background-size:cover;
}
.faded-bg-light {
	background:rgba(255,255,255,0.3);
}
.faded-bg-dark {
	background:rgba(0,0,0,0.3);
}
.object-fit-cover {object-fit:cover;}
.object-fit-contain {object-fit:contain;}
.h-100 {
	height:100%;
}
.w-100 {
	width:100%;
}
.position-relative {
	position:relative;
}
.position-absolute {
	position:absolute;
}
.top-0{top:0;}
.left-0{left:0;}
.text-black {
	color:#000;
}
.py-5 {
	padding-top:2rem;
	padding-bottom:2rem;
}
.mr-1 {
	margin-right:1rem;
}
.my-5 {
	margin-top:2rem;
	margin-bottom:2rem;
}
.mb-3 {
	margin-bottom:3rem;
}
.first-child-margin-left-1rem >  *:first-child {
	margin-right:1rem;
}
.margin-right-1rem {
	margin-right:1rem;
}
.margin-left-1rem {
	margin-left:1rem;
}

.margin-right-2rem {
	margin-right:2rem;
}
.margin-left-2rem {
	margin-left:2rem;
}
.flex-column {
	flex-direction:column
}
.fb-50 {flex-basis:50%;}
.fb-40 {flex-basis:40%;}
.fb-60 {flex-basis:60%;}
.d-flex {display:flex;}
.justify-content-center {justify-content: center}
.align-items-center {align-items: center}
.d-flex {display:flex;}
.flex-left {
	margin-right: auto;
}

.flex-right {
	margin-left: auto;
}

.alignright {
	float: right;
}

.alignleft {
	float: left;
}

.aligncenter {
	display: block;
	margin: 0 auto;
}

.clearfix:after {
	content: "";
	display: table;
	clear: both;
}

/*
 * *** 11. Media Queries ***
 */

@media (min-width: 768px) {
	.novelist-book-list {
		max-width: 100%;
	}
}

@media (min-width: 1024px) {
	.d-flex-desktop {display:flex;}
	.main-menu {
		width:100%;
	}
	#cp-main-menu {
		width:100%;
	}
	#cp-main-menu-items {
		display:flex !important;
	}
	#cp-main-menu-items > *:last-child {
		margin-left:auto;
	}
	/* Main Menu */
	#cp-main-navbar {
		display: flex;
		align-items: center;
	}

	#cp-main-menu,
	#cp-search-box {
		height: 68px;
	}

	#cp-main-menu-button {
		display: none;
	}

	#cp-main-menu-items {
		display: block;
	}

	#cp-main-menu ul li {
		display: inline-block;
	}

	#cp-main-menu ul li a {
		border-bottom: none;
		color: #58585a;
		display: block;
		height: 68px;
		padding-top: 22px;
	}

	#cp-banner {
		flex-direction: row;
	}

	#cp-social-icons {
		margin: 0;
		margin-left: auto;
	}

	/* Search Box */
	#cp-search-box {
		margin-left: auto;
	}

	/* All content, edit-well */
	#cp-content {
		margin: 0 auto;
		max-width: 914px;
		padding: 0;
	}

	.wpcf7-form {
		max-width: 100%;
	}

	input,
	textarea {
		background: #ebebeb;
		border: none;
		color: #000;
		max-width:100%;
		padding: 16px 8px;
	}

	/* Books / Series */
	.cp-page-index .novelist-book-cover-image {
		float: left;
	}
}

@media (min-width: 1440px) {
	/* Typography */
	body {
		font-size: 1.5rem;
	}

	p {
		margin-bottom: 1.5rem;
	}

	/* Forms */
	label {
		font-size: 1.125rem;
	}

	/* Banner and Social Icons */
	#cp-social-icons,
	#cp-search-box {
		font-size: 1.125rem;
	}

	/* Main Menu */
	#cp-main-menu-items {
		display: block;
	}

	#cp-main-menu ul li a {
		padding-top: 16px;
	}

	/* Footer */
	#cp-footer {
		align-items: center;
		display: flex;
	}

	#cp-footer-menu {
		margin-left: auto;
	}

	/* Single */
	#cp-post-category a {
		font-size: 3rem;
		line-height: 1;
	}

	#cp-post-title {
		font-size: 3.75rem;
		line-height: 1;
	}

	/* Category Archive */
	#cp-post-category.cp-archive a {
		font-size: 3.75rem;
	}


	/* Homepage */
	.cp-big-quote {
		border-left: 10px #000 solid;
		padding-left: 32px;
	}

	#cp-intro {
		padding: 32px 0;
	}

	#cp-news h2,
	#cp-email-text h2,
	#cp-intro h2 {
		font-size: 2.25rem;
		line-height: 1.2;
	}

	#cp-news {
		border-bottom: 1px #ccc solid;
		max-width: 914px;
		padding: 32px 0 16px 0;
		width: 100%;
	}

	/* Mailchimp */
	#cp-email-signup {
		flex-direction: row;
		padding: 32px 0;
	}

	#cp-email-signup img {
		margin-top: 0;
	}

	#cp-email-text input[type="submit"] {
		width: 225px;
	}

	/* Books/Stories */
	.cp-page-index #cp-post-title,
	#cp-book-category {
		font-size: 3.75rem;
	}

	#cp-book-title {
		font-size: 2.25rem;
		margin-bottom: 32px;
	}

	.novelist-book-title {
		font-size: 2.25rem;
	}

	.novelist-cover-image {
		margin-top: 0;
	}

	blockquote.novelist-synopsis {
		font-size: 1.5rem;
		padding-top: 16px;
	}
}
.post-wrap .featured-image-wrap {
	flex-basis:40%;
}
.post-wrap .post-excerpt {
	flex-basis:60%;
	padding-left:12px;
}
.post-excerpt h2 {
	margin-top:-5px !important;
}
@media (min-width: 768px) {
	.d-flex-ipad-up {
		display:flex;
	}
}

.post-wrap .featured-image {

	display:flex;
	align-items:flex-start;
	justify-content:center;
	margin-left:0;

}

@media (max-width: 767px) {
	.post-wrap .featured-image-wrap {
		margin-bottom:18px;

	}
	.post-wrap .featured-image {

	}

	.post-wrap .featured-image img {
		object-fit:contain;
		width:100%;
	}
	.post-wrap .post-excerpt {
		padding-left:0;
	}
	.wp-caption,
	figure {
		margin-left:0;
		margin-right:0;
	}
}





.post-wrap .post-excerpt.no-featured-image {
	flex-basis:auto;
}



.sw-button {
	border: none;
	color: white;
	padding: 13px 20px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 16px;
	margin: 50px 20px;
	transition-duration: 0.4s;
	cursor: pointer;
	border-radius: 5%;
}

a.sw-button:hover {
	text-decoration: none;
}

@media (min-width: 1024px) {
	.sw-button {
		padding: 13px 50px;
	}
}

.sw-button1 {
	background-color: white;
	color: black;
	border: 2px solid #E4A42F;

}

.sw-button1:hover {
	background-color: #E4A42F;
	color: white;
}

.p-1 {
	padding:1rem;
}
.p-2 {
	padding:1.5rem;
}
.p-3 {
	padding:2rem;
}
body .wp-block-pullquote {
	padding-top:1.5rem;
	padding-bottom:1.5rem;
}
body .wp-block-pullquote p {
	font-size:1.5rem;
	line-height:150%;
}

header .mega-menu-item.invert {
	background: var(--button-color) !important;
}
header .mega-menu-item.invert:hover,
header .mega-menu-item.invert:hover a{
	background: var(--button-color-accent) !important;
}
header .mega-menu-item.invert a {
	color:var(--white) !important;
}

footer#cp-footer .mega-current-menu-item a.mega-menu-link {
		color: var(--marigold) !important;
}

footer#cp-footer .mega-current-menu-item a.mega-menu-link:hover {
	color: var(--button-color) !important;
}

footer#cp-footer a.mega-menu-link {
	color: var(--button-color) !important;
	background:transparent !important;
}

footer#cp-footer a.mega-menu-link:hover {
	color: var(--marigold) !important;
	background:transparent !important;
}

footer#cp-footer .mega-sub-menu {
	border:1px solid #ccc !important;
}

#mega-menu-wrap-footer-menu #mega-menu-footer-menu > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link:hover, #mega-menu-wrap-footer-menu #mega-menu-footer-menu > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link:focus {
	color:var(--marigold)!important;
}

#mega-menu-wrap-main-menu .mega-current-menu-item.invert > a {
	color:var(--white) !important;
}

.small {
	font-size:80%;
}
.smaller {
	font-size:70%;
}
