﻿/*
	Theme Name: Keep Your Cadence v2
	Theme URI: http://briandesposito.com
	Description: Custom theme for Cadence
	Version: 2.1
	Author: Brian DEsposito
	Author URI: http://briandesposito.com
	Tags: Blank, HTML5, CSS3

	License: MIT
	License URI: http://opensource.org/licenses/mit-license.php
*/
/************************** FONTS ******************************/


@font-face {
	font-family: 'SharpGrotesk';
	src: url('fonts/SharpGroteskDBBook.woff') format('woff');
	font-weight: 400;
	font-style: normal;
}

@font-face {
	font-family: 'SharpGrotesk';
	src: url('fonts/SharpGroteskMedium20.WOFF') format('woff');
	font-weight: 600;
	font-style: normal;
}

@font-face {
	font-family: 'SharpGrotesk';
	src: url('fonts/SharpGroteskMediumItalic20.WOFF') format('woff');
	font-weight: 600;
	font-style: italic;
}

@font-face {
	font-family: 'SuisseInt';
	src: url('fonts/SuisseIntl-Regular.woff') format('woff');
	font-weight: 400;
	font-style: normal;
}

@font-face {
	font-family: 'SuisseInt';
	src: url('fonts/SuisseIntl-SemiBold.woff') format('woff');
	font-weight: 600;
	font-style: normal;
}

/*------------------------------------*\
    MAIN
\*------------------------------------*/
/* VARIABLES */
:root {
	/* COLORS */
	--light-gray: #eee;
	--dark-gray: #212121;
	--gray: #9B9B9B;
	--medium-gray: #999;
	--border-color: #333;
	--border-width: 2px;
	--primary-color: #924e42;
	--primary-color-light: #c67b6e;
	--primary-color-dark: #552a23;
	--cream: #f8ebda;
	--secondary-color: #3d59a4;
	--white: #f6f6f6;
	--off-white: #f4f0ed;
	/* OLD FONT SIZES 
 --small-font: 0.8vw;
 --base-font:0.95vw;
 --medium-font: 1.2vw;
 --large-font: 1.5vw;
 --larger-font: 1.8vw;
 --largest-font: 2.4vw;
 --hero-font: 6vw;*/

	--small-font: 13px;
	--base-font: 15px;
	--medium-font: 17px;
	--large-font: 22px;
	--larger-font: 26px;
	--largest-font: 30px;
	--hero-font: 47px;
	/* Font Styles */
	--normal-font: 'SuisseInt', sans-serif;
	--heading-font: 'SharpGrotesk', serif;
	/* PADDINGS */
	--double-pad: 9vw;
	--pad: 4.5vw;
	--half-pad: 2.25vw;
}

.white {
	color: #fff;
}

.primary {
	color: var(--primary-color);
}

.primary-back {
	background-color: var(--primary-color);
	color: #fff;
}

.secondary {
	color: var(--secondary-color);
}

.secondary-back {
	background-color: var(--secondary-color);
	color: #fff;
}

.light-gray-back {
	background: var(--light-gray);
}

.dark-gray-back {
	background: var(--dark-gray);
	color: #fff;
}

.black-back {
	background-color: #000;
	color: #fff;
}

.large {
	font-size: var(--large-font);
}

.larger {
	font-size: var(--larger-font);
}

.largest {
	font-size: var(--largest-font);
}

.medium {
	font-size: var(--medium-font);
}
.hide {

	display:none;
}
/* global box-sizing */
*,
*:after,
*:before {
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-font-smoothing: antialiased;
	/* font-smoothing: antialiased; */
	text-rendering: optimizeLegibility;
}

/* html element 62.5% font-size for REM use */
html {
	font-size: 62.5%;
}

body {
	font-family: var(--normal-font);
	font-weight: 300;
	margin: 0;
	padding: 0;
	line-height: 1.66;
	font-size: var(--base-font);
	background: #fff;
	color: var(--dark-gray);
}

img {
	max-width: 100%;
	vertical-align: bottom;
	height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 1.5rem 0;
	line-height: 1.3;
	font-weight: 400;
	font-family: var(--heading-font);
}

h1 {
	font-size: var(--largest-font);
	margin: 0.67em 0;
}

/* clear */
.clear:before,
.clear:after {
	content: ' ';
	display: table;
}

.clear:after {
	clear: both;
}

.clear {
	*zoom: 1;
}

a {
	color: inherit;
	text-decoration: none;
	transition: color 0.5s ease;
}

a:hover {
	color: inherit;
	text-decoration: none;
}

a:focus {
	outline: 0;
}

:focus {
	outline: none;
}

a:hover,
a:active {
	outline: 0;
}
	/*
input:focus,
textarea:focus {
outline-width: 2px;
	outline-style: solid;
	outline-color: var(--secondary-color);
} */

blockquote {

	font-weight: 800;
	line-height: 1.2;
	padding: 0 0 0 1em;
	margin: 1em 0em 1em 2em;
	border-left: 6px solid var(--primary-color);
	font-style: italic;
}

p {
	margin: 0 0 0.5em;
}

.visually-hidden {
    position: absolute !important;
    height: 1px; 
    width: 1px;
    overflow: hidden;
    clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
    clip: rect(1px, 1px, 1px, 1px);
    white-space: nowrap; /* added line */

}
/*scroll bars for chrome webkit */



/*------------------------------------*\
    STRUCTURE
\*------------------------------------*/

main {
	width: 100%;
	position: relative;
	background: #fff;
	padding: 0;
}

/* GRID */
.section {
	width: 100%;
}

.full-width,
.main {
	width: 100%;
}

.full {
	width: 100%;
}

.row {
	width: 100%;
}

.ten {
	width: 10%;
}

.twenty {
	width: 20%;
}

.twenty-five {
	width: 25%;
}

.thirty {
	width: 30%;
}

.thirty-three {
	width: 33.33%;
	min-width: 33.33%;
}

.forty {
	width: 40%;
}

.fifty {
	width: 50%;
	min-width: 50%;
}

.sixty {
	width: 60%;
}

.sixty-six {
	width: 66.66%;
	min-width: 66.66%;
}

.seventy {
	width: 70%;
}

.seventy-five {
	width: 75%;
}

.eighty {
	width: 80%;
}

.ninety {
	width: 90%;
}

.relative {
	position: relative;
}

.spads {
	padding: 0 0.15em;
}

.pad {
	padding: 0.5em;
}

.padt {
	padding: 0.5em 0;
}

.pads {
	padding: 0 0.5em;
}

.pad1 {
	padding: 1.5em;
}

.pad1s {
	padding: 0 1.5em;
}

.pad2 {
	padding: 2em;
}

.pad2s {
	padding: 0 2em;
}

.pad2t {
	padding: 2em 0;
}

.pad4 {
	padding: 4em;
}

.pad4s {
	padding: 0 4em;
}

.pad4t {
	padding: 4em 0;
}

.pad8t {
	padding: 8em 0;
}

/* alignments */
.center {
	text-align: center;
}

.clear {
	clear: both;
}

.hidden {
	display: none;
}

.show {
	display: block;
}

.small {
	font-size: var(--small-font);
}

.narrow {
	width: 769px;
	max-width: 100%;
	margin: auto;
}

.thin {
	font-weight: 300;
}

.normal {
	font-weight: 400;
}

.bold {
	font-weight: 600;
}

.underline {
	border-bottom: 1px solid;
}

.flex {
	display: flex;
	flex-flow: wrap;
}

.flex-row {
	flex-flow: row;
	display: flex;
}

.flex-column {
	display: flex;
	flex-flow: column;
}

.flex-center {
	align-self: center;
}

.just-center {
	justify-content: center;
}

.just-right {
	justify-content: flex-end;
}

.flex-right {
	flex-flow: row-reverse wrap;
}

.align-center {
	align-items: center;
}

.row-reverse {
	flex-flow: row-reverse wrap;
}

.flex-left {
	align-items: left;
}

.flex-bottom {
	align-self: flex-end;
}

.flex-grow {
	flex-grow: 1;
}

.spaced {
	justify-content: space-between;
}

.espaced {
	justify-content: space-evenly;
}

.parallax {
	background-attachment: fixed;
	background-position: 50%;
	background-repeat: no-repeat;
	background-size: cover;
	height: 100%;
}

.parallax-content {
	padding: 2em 0;
}

.hidden {
	display: none;
}

/* IFRAME AND VIDEOS */
iframe {
	width: 100%;
}

.video-container {
	box-sizing: border-box;
	height: 0;
	padding-bottom: 56.25%;
	position: relative;
	width: 100%;
	cursor: pointer;
}

.video-container iframe,
.video-container>.ytvideo {
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

.video-container img {
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.play-button {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	color: #fff;
	font-size: 80px;
	height: 80px;
	width: 80px;
	z-index: 9;
	line-height: 80px;
	cursor: pointer;
	opacity: 0.5;
	pointer-events: none;
}

video {
	max-width: 100%;
}

.italic {
	font-style: italic;
}

.serif {
	font-family: var(--heading-font);
}

/* FONT SIZES */
.title-area {
	font-size: 60px;
	margin-bottom: 0.5em;
}

/* wrapper */
.wrapper {
	width: 100%;
	margin: 0 auto;
	padding: 0 3vw;
}

.overlay {
	color: #fff;
}

.overlay::before {
	background-color: rgba(0, 0, 0, 0.33);
	content: "";
	height: 100%;
	position: absolute;
	width: 100%;
	top: 0;
}

.cover-image {
	background-size: cover;
}

.background-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.background-image {
	height: 100%;
	width: 100%;
	position: relative;
}
.background-image.fixed {
	z-index: 1;
	position: fixed;
	top: 0;
	left: 0;
}


.image-top img {
	object-position: top;
}
.upper {
	text-transform: uppercase;
}

p a {
	border-bottom: 1px solid;
}

main a {
	color: var(--primary-color);
}

/* HEADER AREA */
.admin-bar .header,
.admin-bar.dark.header {
	top: 32px;
}

.header {
	position: absolute;
	z-index: 9999;
	width: 100%;
	top: 0;
	left: 0;
}

.dark.header {
	color: #fff;
}

.dark.header svg {
	fill: var(--cream);
}

.main-header {
	position: relative;
	padding: var(--half-pad) 0;

}

.header {
	width: 100%;
}

.logo {
	text-align: center;
	position: relative;
}

.logo svg {
	height: 15vh;
	max-height: 160px;
	width: auto;
	text-align: center;
	margin: auto;
}

.user-area {
	justify-content: flex-end;
	text-transform: uppercase;
	letter-spacing: 0.1em;

}

.user-area svg {
	height: var(--largest-font);
	width: var(--largest-font);
}

.account-area>span {
	cursor: pointer;
}

.search-area {
	margin-left: 2em;
	position: relative;
}

.notification-bar {
	font-weight: 600;
	letter-spacing: 0.05em;
	font-size: var(--small-font);
	padding: 0.25em;
	text-align: center;
	background-color: var(--primary-color);
	color: #fff;
	transition: all 0.5s ease;
}

/* HEADER NAVIGATION */
.head-nav ul {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	letter-spacing: 0.1em;
}

.head-nav>ul>li {
	margin-right: var(--half-pad);
	text-transform: uppercase;
	font-size: inherit;
	color: inherit;
}

/* OLD  nav 

.nav-area {
	padding: 0.5em;
	text-align: right;
}

.main-nav .nav > ul li.cta-nav-offset a {
	padding: 0.25em 0;
}
.main-nav .nav > ul {
	margin: 0;
	list-style: none;
	padding: 0;
	display: flex;
	flex-flow: wrap;
}
.main-nav .nav > ul > li {
	position: relative;
		margin-left: 2em;
}
.main-nav .nav > ul li a {
	display: block;
	padding: 0;
}
.main-nav .nav > ul li a:hover {
	color: var(--gray);
}
.cta-nav-offset a::before {
	display: none;
}

/*
.main-nav .nav > ul li a::before {
	content: "";
	transition: all 0.5s ease;
	height: 2px;
	width: 0;
	position: absolute;
	bottom: 0;
	left: 0;
	margin: auto;
	right: 0;
}
.main-nav .nav > ul li a:hover::before {
	width: 100%;
}
.main-nav .nav > ul li ul {
	background: #ffffff none repeat scroll 0 0;
	border-radius: 0 0 5px 5px;
	box-shadow: 2px 2px 7px rgba(0, 0, 0, 0.6);
	text-align: left;
	left: 0;
	position: absolute;
	top: 100%;
	min-width: 200px;
	flex-flow: column;
	overflow: hidden;
	margin: 0;
	padding: 0;
	display: flex;
	transform: scaley(0);
	transform-origin: top;
	width: 200%;
	font-size: var(--small-font);
	transition: all 0.5s ease;
	border-top: 7px solid var(--secondary-color);
	font-size: var(--small-font);
	position: absolute;
	padding: 0.5em;
	top: 100%;
	transition: all 0.5s ease 0s;
}
.main-nav .nav > ul li:hover ul {
	transform: scaley(1);
}
.main-nav .nav > ul li ul li {
	display: block;
}
*/
/**************** DRAWER NAVIGATION ************************/
.main-nav {
	position: fixed;
	background: var(--light-gray);
	top: 0;
	height: 100%;
	z-index: 9;
	left: -100%;
	transition: all 0.5s ease;
	width: 20%;
	min-width: 300px;
	padding-top: 10%;
	color: #000;
	opacity: 0.9;

}

.man-nav svg {
	fill: #000;
}

.main-nav.opened {
	left: 0;
}

.main-nav nav {
	flex-grow: 1;
}

.main-nav nav ul {
	list-style: none;
	font-size: var(--medium-font);
	padding: 0;
}

.nav-container {
	display: flex;
	flex-flow: column;
	padding: var(--half-pad);
	height: 100%;
	overflow: auto;
}

/* Menu Toggle Targets when opened */
.menu-opened #MenuToggle span,
.menu-opened #MenuToggle span::before,
.menu-opened #MenuToggle span::after {
	background: #000;
}

/* BLOG CATEGORIES */
.main-nav .cat-list {
	font-size: var(--large-font);
	color: var(--primary-color);
	font-family: var(--heading-font);
}

.main-nav .cat-list ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.main-nav .cat-list li {
	margin-bottom: 0.5em;
}

.special-link {
	font-size: var(--large-font);
	margin-bottom: 0.5em;
}

/** MAIN NAV SEARCH */
.main-nav .search-toggle {
	height: 25px;
	width: 25px;
}

.search-toggle {
	cursor: pointer;
	display: inline-block;
	position: relative;

}

.search-toggle #closeIcon {
	display: none;
}

.search-toggle.close #closeIcon {
	display: inline;
}

.search-toggle.close #searchIcon {
	opacity: 0;
}

.search-box {
	position: absolute;
	right: 0;
	height: auto;
	font-size: var(--large-font);
	width: 0;
	top: 0px;
	overflow: hidden;
	transition: all 0.5s ease;
	z-index: 99;
}

.search-box.searchme {
	width: 300px;
}

.search-input[type="search"] {
	box-sizing: border-box;
	font-size: var(--base-font);
	border: 1px solid;
	resize: none;
	width: calc(100% - 40px);
	position: relative;
	height: 28px;

}

.search-input {
	border: 1px solid black;
	overflow: hidden;
	margin-right: 40px;
	background: #fff;
}

.search-input-text {
	border: none;
}

.search-submit {
	background: var(--primary-color);
	color: #fff;
	position: absolute;
	right: 0;
	padding: 0;
	top: 0px;
	height: 100%;
	width: 40px;
	border: 1px solid var(--border-color);
	display: flex;
	align-items: center;
	justify-content: center;
}

.search-submit:hover {
	background: var(--secondary-color);

}

.search-submit svg {
	fill: #fff;

	height: 20px;

}

.search {
	position: relative;
	z-index: 9;
}

.footer-head .search-submit svg {
	fill: #000;
}

/* MINI HEADER STICKY NAV STUFF*/
.mini-head:not(.footer-head) {
	background: #fff;
	color: #000;
}

.mini-head .notification-bar {
	height: 1px;
	line-height: 0;
	padding: 0;
	overflow: hidden;
	font-size: 0;
}

/*
.mini-head:not(.footer-head) .logo svg {
	height: 5vh;
}
.mini-head:not(.footer-head) .mini-logo svg{
transform: scale(1);
}
.mini-head:not(.footer-head) .normal-logo svg {
transform: scale(0);	
}
*/
.mini-head .logo svg {
	height: 5vh;
}

.mini-head:not(.footer-head) svg {
	fill: #000;
}

.mini-logo {
	position: absolute;
	left: 0;
	right: 0;
}

.mini-logo svg {
	transform: scale(0);
	transition: all 0.5s ease;
}

.mini-head .mini-logo svg {
	transform: scale(1);
}

.mini-head .normal-logo svg {
	transform: scale(0);
}

.normal-logo svg {
	transform: scale(1);
	transition: all 0.5s ease;
}

.footer-head {
	color: #fff;
}

.footer-head svg {
	fill: #fff;
}

/* MINI MENU TOGGLE */

body:not(.menu-opened) .mini-head.footer-head #MenuToggle span,
body:not(.menu-opened) .dark.header:not(.mini-head) #MenuToggle span {
	background: #FFF;
}

body:not(.menu-opened) .mini-head.footer-head #MenuToggle span::after,
body:not(.menu-opened) .dark.header:not(.mini-head) #MenuToggle span::after {
	background: #FFF;
}

body:not(.menu-opened) .mini-head.footer-head #MenuToggle span::before,
body:not(.menu-opened) .dark.header:not(.mini-head) #MenuToggle span::before {
	background: #FFF;
}



/* NOTICE */
.notice p {
	margin: 0;
}

/* PAGE */

/* FOOTER */
footer {
	background: var(--secondary-color);
	width: 100%;
	color: #fff;
	transition: all 0.5s ease;
}

footer>.wrapper {
	display: flex;
	flex-flow: column;
	height: 100%;
	min-height: 100vh;
}

footer svg {
	fill: #fff;
}

.footer-content {
	font-size: var(--larger-font);
	text-align: center;
	font-family: var(--heading-font);
}

footer a:hover {
	color: var(--light-gray);
}

.footer-bottom {
	align-items: center;
}

#submit {
	background: transparent;
	border: none;
}

.upper-footer {
	flex-grow: 1;
	align-items: center;
	margin-top: 10vh;
}

.middle-footer {
	display: flex;
	justify-content: center;
	flex-grow: 1;
	flex-flow: column;
	justify-content: center;
	align-items: center;
}

.copyright {
	text-align: center;
}

.back-to-top {
	text-align: right;
}

.back-to-top svg {
	height: 5vh;
	width: auto;
	max-height: 45px;
}

.footer-head {
	background: var(--secondary-color);
}

.footer-head .category-header {
	display: none;
}

/* FOOTER FORM */
footer .wpcf7-form-control {
	border: none;
	background: transparent;
	border-bottom: 2px solid #fff;
	text-align: center;
	color: #fff;
}

footer .wpcf7-form-control.wpcf7-text::placeholder,
footer .wpcf7-form-control.wpcf7-textarea::placeholder {
	font-style: normal;
	color: #FFF;
}



.newsletter-box {
	align-items: center;
}
.submit-arrow {
	display:none;
}
.newsletter-box svg,
.submit-arrow {
	height: var(--larger-font);
}
.submit-arrow button {
	background: none;
}
.email-input {
	padding-bottom: calc(var(--larger-font) / 2);
	height: calc(var(--larger-font) * 2.7);
}

.under-newsletter {
	flex-grow: 1;
}

/* MINIMAL FOOTER */
.min-footer .social-media-links {
	justify-content: center;
}

/********************* NEWSLETTER POPUP **********************/
.newsletter-pop {
	display: none;
	position: fixed;
	top: 50%;
	left: 0;
	right: 0;
	transform: translateY(-50%);
	background: #FFF;
	width: 50%;
	margin: auto;
	box-shadow: 0.1vw 0.1vw 1vw rgba(0, 0, 0, 0.5);
	border-radius: 3px;
	z-index: 99999;
	height: auto;
}

.newsletter-pop .inner {
	display: flex;
	flex-flow: column;
	justify-content: space-evenly;
	align-items: center;
	margin: auto;
	text-align: center;
	padding: 10%;
}

.newsletter-pop .heading {
	font-size: var(--larger-font);
}

.no-thanks {
	cursor: pointer;
	color: var(--secondary-color);
}

.newsletter-pop-form .newsletter-box svg {
	fill: #000;
}

/*------------------------------------*\
    Special Lists
\*------------------------------------*/
ul.arrow-list {
	margin: 0;
	padding: 0;
}

.arrow-list li {
	list-style: none;
	position: relative;
	padding-left: 25px;
}

.arrow-list li::before {
	color: var(--primary-color);
	content: "\f0da";
	position: absolute;
	left: 0;
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
}

footer ul.menu {
	margin: 0;
	padding: 0;
}

footer ul.menu li {
	list-style: none;
	position: relative;
}

/*
footer ul.menu li::before {
	color: var(--primary-color);
	content: "\f0da";
	position: absolute;
	left: 0;
	font-family: "Font Awesome 5 Free";
    font-weight: 900;
} */
/* SOCIAL ICON MENU */
.social-media-menu {
	padding: 0;
}

.social-media-menu li {
	position: relative;
	width: 40px;
	height: 40px;
	background: var(--secondary-color);
	color: #fff;
	font-size: 20px;
	text-align: center;
	border-radius: 100%;
	line-height: 40px;
	margin: 0 3px;
	display: inline-block;
	transition: all 0.5s ease;
}

.social-media-menu li:hover {
	background: var(--primary-color);
}

.social-media-menu a {
	font-size: 0;
	position: absolute;
	height: 100%;
	width: 100%;
	display: block;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
}

/****** SOCIAL MEDIA LINKS **************/
.social-media-links {
	list-style: none;
	padding: 0;
	margin: 0;
	font-size: var(--medium-font);
	display: flex;
	flex-flow: wrap;
}

.social-icon {
	width: calc(var(--medium-font) + 10px);
	margin: 0 3px 0 3px;
}

.social-icon i {
	line-height: calc(var(--large-font) + 15px);
}

.social-icon:hover {
	opacity: 0.5;
}

/* sidebar */
 

.sidebar svg {
	fill: #000;
}

.sidebar a:hover {
	color: var(--primary-color);
}

aside {
	position: relative;
}

.sidebar>div>div {
	background: #fff;
	border: 1px solid var(--light-gray);
	padding: 1em;
	margin: 0 0 1em var(--half-pad);
}

.sidebar-widget h3 {
	border-bottom: 1px solid;
	margin: 0;
	padding: 0;
}

.sidebar-widget ul {
	margin: 1em 0;
	padding: 0;
}

.sidebar-widget li::before {
	content: "\f105";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	margin-left: -1em;
	position: absolute;
	top: 4px;
	color: var(--primary-color);
}

.sidebar-widget li {
	display: block;
	padding-left: 1em;
	position: relative;
	margin-bottom: 0.5em;
}

.widget_search {
	padding-bottom: 1.5em;
}

div.wpcf7 .ajax-loader {
	display: none;
}

.sidebar .section-title {
	margin-bottom: 0.5em;
	line-height: 1.15;
}

/* SIDE BAR NEWSLETTER SIGN UP */
#text-2 {
	/*
	background: var(--primary-color);
	color: #fff;
	*/

	padding: var(--half-pad);
	text-align: center;
}

#text-2 .section-title {
	border-bottom: none;
}

/*
#text-2 input {
	
	background: transparent;
	color: #fff;
	border-color: #fff;

}

#text-2 svg {
	fill: #fff;
}
#text-2 ::placeholder {
	color: #fff;
}
	*/
#text-2 .large {
	font-size: var(--small-font);
}

#text-2 .newsletter-box {
	margin-top: var(--half-pad);
}

/* SHOP CADENCE */
.shop-cadence {
	margin: var(--half-pad) 0;
	border: none;
	padding: 0;
	display: flex;
	justify-content: flex-end;
	position: fixed;
	right: -5px;
	bottom: 5%;
	background: transparent;
	z-index: 99999;
	letter-spacing: 0.15em;
	opacity: 0;
	transition: all 0.5s ease;
	display:none;
}

.scrolled .shop-cadence {
	opacity: 1;
}

.reached-footer .shop-cadence {
	opacity: 0;
}

.cadence-btn {
	background: var(--primary-color);
	color: #fff;
	padding: 0.5em 2em;
	text-transform: uppercase;
	transform: rotateZ(-20deg) skew(-20deg);
	display: inline-flex;
}

/* POPULAR SIDE BAR */
.popular-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.popular-list li {
	display: flex;
	margin-bottom: 1em;
	border-bottom: 1px solid var(--light-gray);
	padding-bottom: 1em;
	align-items: center;
}

.popular-list .post-category a {
	color: #000;
}

.popular-list .post-title {
	text-transform: initial;
	line-height: 1.2;
}

.single .popular-list .post-category {

	line-height: 1.2;
	text-transform: uppercase;
}

.popular-list .post-image {
	height: 45px;
}

/*------------------------------------*\
    COMMENT Forms
\*------------------------------------*/
.comments {
	margin: var(--pad) auto;
}

.comments h2 {
	color: var(--primary-color);
	font-weight: 600;
	font-size: var(--largest-font);
}

.comment-respond {
	border: 2px solid var(--light-gray);
	padding: var(--half-pad);
}

.comment-form-comment label {
	display: block;
	text-transform: uppercase;
}

.comment-form-comment textarea {
	resize: none;
	height: 133px;
}

.comments ul {
	list-style: none;
	padding: 0;
}

.comments li {
	margin-bottom: 2em;
	padding-bottom: 2em;
}

.comments ul .children {
	padding-left: var(--pad);
	margin: var(--half-pad) auto;
}

.comments ul .children li {
	border-bottom: 1px solid var(--light-gray);
}

.comments ul .children li:last-child {
	border-bottom: none;
}

.comment-heading {
	border-bottom: 1px solid var(--light-gray);
}

.comment-author .fn {
	font-size: var(--medium-font);
	text-transform: uppercase;
	margin-right: 0.5em;
}

.comment-meta {
	font-size: var(--small-font);
}

.reply-area {
	text-align: right;
	font-size: var(--small-font);
}

#reply-title {
	color: var(--primary-color);
	font-size: var(--largest-font);
	border-bottom: 2px solid #000;
	display: inline-block;
	font-weight: 800;
}

.comment-form-comment textarea {
	resize: none;
	height: 133px;
	border: 1px solid var(--light-gray);
}

.comment-form-url {
	display: none;
}

.comment-form input {
	border-bottom: 1px solid var(--light-gray);
}

.required {
	color: var(--primary-color);
}

.form-submit #submit {
	color: #fff;
	background-color: var(--primary-color);
}

#comment {
	width: 100%;
}

/*------------------------------------*\
    Forms
\*------------------------------------*/
input,
select,
textbox,
textarea {
	padding: 0.5em 1em;
	border: none;
	font-weight: 300;
	border-bottom: var(--border-width) solid var(--border-color);
}

button {
	border: none;
}

select {
	box-sizing: border-box;
	width: 100%;
	/* apperance: none; */
	-moz-appearance: none;
	-webkit-appearance: none;
	cursor: pointer;
	background: transparent;
	border-radius: 0;
}

/* JAVA SELECT WRAP */
.select-wrap {
	position: relative;
}

.select-wrap::after {
	content: "\f107";
	position: absolute;
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	right: 5%;
	top: 50%;
	transform: translateY(-50%);
	cursor: pointer;
	pointer-events: none;
}

*:focus::placeholder {
	color: transparent !important;
}
*:focus::-webkit-input-placeholder { color:transparent  !important;  }
*:focus:-moz-placeholder { color:transparent  !important; } /* FF 4-18 */
*:focus::-moz-placeholder { color:transparent  !important; } /* FF 19+ */
*:focus:-ms-input-placeholder { color:transparent  !important; } /* IE 10+ */

/* Contact Us Form & Contact Form 7 Styling */

.wpcf7-form-control-wrap {
	display: flex;
	flex-flow: column;
}

.wpcf7-form-control {
	width: calc(100% - 0.66em);
}

.wpcf7-form-control {
	border-width: var(--border-width);
	border-style: none none solid;
	border-color: var(--dark-gray);
	background: #fff;
}

.wpcf7-form-control.wpcf7-text:focus::placeholder,
.wpcf7-form-control.wpcf7-textarea:focus::placeholder {
	color: transparent;
}

.wpcf7-form-control.wpcf7-text::placeholder,
.wpcf7-form-control.wpcf7-textarea::placeholder {

	color: #000;
}

 
.wpcf7-submit {
	text-align: center;
	border: none;
}

div.wpcf7 input[type="file"] {
	cursor: pointer;
	border: none;
}

div.wpcf7-mail-sent-ok {
	border: none;
	text-align: center;
}

div.wpcf7-validation-errors,
div.wpcf7-acceptance-missing {
	border: none;
}

span.wpcf7-list-item.first {
	margin: 0;
}

.wpcf7-form-control.wpcf7-radio {
	border: none;
}


.wpcf7-form:not(.invalid) .email-input.sent .wpcf7-form-control-wrap {
	display:none;
}
.wpcf7-form:not(.invalid) .email-input.sent ~ .submit {
	display: none;
}

.email-input .wpcf7-response-output {
	margin: 0;
	padding: 1em;
}

/* CONTACT PAGE */
.page-template-pageContact {
	display: flex;
	flex-flow: column;
	height: 100vh;
}

.contact-page {

	margin: auto;
}

.contact-page p {
	margin: 0;
}

.contact-form {
	position: relative;
	left: 0;
	right: 0;
	display: none;
	background: #fff;
	padding: 2rem;
	border: 1px solid var(--dark-gray);
	margin: 1rem 0;
	width: 90%;
}

.form-area {
	margin: 0 -1rem;
}

.form-area>div {
	padding: 1rem;
}

.section-divider {
	position: relative;
	padding: 65px 0;
}

.section-divider::before {
	content: "";
	height: 3px;
	width: 65px;
	background: var(--primary-color);
	position: absolute;
	left: 0;
	right: 0;
	margin: auto;
	transform: rotateZ(-20deg) skewX(-20deg);
}

/*------------------------------------*\
    Buttons
\*------------------------------------*/
.btn {
	color: var(--dark-gray);
	border: var(--border-width) solid var(--dark-gray);
	transition: all 0.5s ease;
	position: relative;
	top: 0;
	left: 0;
	z-index: 1;
	display: inline-block;
	padding: 0.5em 1em;
	text-align: center;
	cursor: pointer;
}

.btn:hover {
	color: #fff;
	background-color: var(--dark-gray);
}

.btn.reverse {
	color: #fff;
	border-color: #fff;
}

.btn.alt {
	background-color: var(--dark-gray);
	border-color: var(--dark-gray);
	color: #fff;
}

.btn.alt:hover {
	background-color: var(--gray);
}

.upload.btn {
	background: var(--light-gray);
	border-color: var(--light-gray);
	color: #fff;
}

.upload.btn:hover {
	background: var(--gray);
	border-color: var(--gray);
	color: #fff;
}
.btn.transparent {
	background-color: transparent;
	border-color: #fff;
	color: #fff;
}
.btn.transparent:hover {
	background-color: rgba(255,255,255,0.6);
}

/*------------------------------------*\
   LOGIN FORM
\*------------------------------------*/

/* login container is a hack because of a hidden character creating space i can't find */
.login-container {
	height: 0;
}

.login-screen {
	position: relative;
	height: 100vh;
	overflow: hidden;
}

.login-logo {
	text-align: center;
	padding: var(--half-pad) 0;
}

.login-logo svg {
	fill: var(--primary-color);
	height: 85px;
	width: auto;
}

.login-screen::before {
	content: "";
	height: 100%;
	width: 100%;
	background: var(--primary-color);
	position: fixed;
	z-index: 99999;
	opacity: 0.8;
	top: 0;
	left: 0;
}

.login-box svg {
	fill: #000;
}

.login-logo svg {
	fill: var(--primary-color);
}

.login-header {
	align-items: center;
	font-size: var(--large-font);
}

#loginForm {
	position: fixed;
	top: 50%;
	transform: translateY(-50%);
	background: #fff;
	left: 0;
	right: 0;
	margin: auto;
	width: 50%;
	z-index: 999;
	padding: 2% 7%;
	display: none;
}

.login-form {
	font-size: var(--medium-font);
}

.login-form input {
	width: 100%;
}

.login-form input[type='checkbox'] {
	width: auto;
}

button#wp-submit {
	background: transparent;
	border: none;
}

.login-form .text {
	margin-bottom: 3em;
}

.login-form button#wp-submit svg {
	height: var(--larger-font);
}

input#user_pass {
	padding-bottom: calc(var(--larger-font) / 2 - 2px);
}

/*------------------------------------*\
    BLOG POST & BLOG LOOP POST LOOP
\*------------------------------------*/
/********************** POST LIST ***************************/
.post-list {
	display: flex;
	list-style: none;
	padding: 0;
	margin: 0 -0.5%;
	flex-flow: wrap;

}

.post-list .post-image {
	height: 20vw;
	overflow: hidden;
}

.post-image img {
	object-fit: cover;
	height: 100%;
	width: 100%;
}

.post-item {
	padding: 2%;
	margin: var(--half-pad) 0;
}

.post-list .post-title {
	font-size: var(--larger-font);
}

.post-item .post-category {
	text-transform: uppercase;
	color: var(--primary-color);
	margin-top: 1em;
	letter-spacing: 0.05em;
	font-size: var(--small-font);
}

.post-meta {
	color: var(--gray);
}

.post-item .post-meta {
	margin-top: 1.66em;
}

.view-more {
	justify-content: flex-end;
	font-family: var(--heading-font);
	display: flex;
	align-items: center;
	color: var(--primary-color);
	padding: var(--half-pad) 0;
}

.view-more svg {
	fill: var(--primary-color);
	margin-right: 1rem;
	height: 25px;
	width: auto;
}

.view-more a {
	display: flex;
	align-items: center;
}

/*------------------------------------*\
   BLOG INDEX PAGE
\*------------------------------------*/
.blog-featured-slider {
	height: 70vh;
	position: relative;
	overflow: hidden;
	display: flex;
	margin-bottom: var(--half-pad);
}
.blog-featured-slider .btn {
	border-radius: 5px;
	margin-top: var(--half-pad);
	padding: 0.25em 2em;
}
.blog-featured-slider .slick-list {
	display: flex;
}
.blog-featured-slider .slick-track {
	display: flex;
}

.featured-post-item {
	position: relative;
}
.blog-featured-slider .inner-content {
	position: absolute;
	z-index: 9;
	bottom: 0;
	padding: 0 10% 5%;
	color: #fff;
}
.blog-featured-slider .inner-content h2 {
	font-size: var(--hero-font);
	font-weight: 600;
	margin: 0;
}
.blog-featured-slider .inner-content h3 {
	margin: 0;
}
#featuredBlogArrows {
	display:flex;
	position: absolute;
	right: 0;
	bottom: 0;
}
#featuredBlogArrows .slick-arrow {
	fill: #fff;
	height: var(--largest-font);
	width: var(--largest-font);
	margin: var(--half-pad);
}
/*------------------------------------*\
   BLOG PAGES
\*------------------------------------*/

/************* BLOG HEADER ************************/

.category-header {
	border-bottom: var(--border-width) solid var(--border-color);
	padding-bottom: 0.5em;
	font-size: var(--large-font);
	width:100%;
}

.blog-categories {
	align-items: center;
}

.blog-categories>div {
	margin-right: 1em;
	padding-right: 1em;
	position: relative;
}

.blog-categories>div::after {
	content: " ";
	height: 66%;
	width: 2px;
	background: #000;
	position: absolute;
	top: 10%;
	right: 0;
}

.view-all::after {
	display: none;
}

.blog-categories .active {
	color: var(--secondary-color);
}

.blog-categories .active a {
	border-bottom: 1px solid;
}

/* SORT BOX */
.sort-box {
	display: flex;
	flex-flow: row;
	align-items: center;
}

.category-header select {
	width: auto;
	min-width: 8vw;
	padding: 0 22px 0 0;
	border-bottom: none;
}

/* CONTENT BLOCK */
/* HERO IMAGE */
.hero-image {
	width: 100%;
}

.hero-image img {
	width: 100%;
}

/* image block */
.image-block {
	text-align: center;
}

/*------------------------------------*\
    PAGES
\*------------------------------------*/
.main-title {
	font-size: var(--largest-font);
	position: relative;
	margin-bottom: 2em;
	padding-bottom: 0.5em;
}

.main-title::after {
	content: "";
	height: 2px;
	width: 100px;
	background-color: var(--secondary-color);
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
}

.section-pad {
	padding: var(--pad) 0;
}

.section-half-pad {
	padding: var(--half-pad) 0;
}

.section-title {
	font-size: var(--larger-font);
	position: relative;
	padding-bottom: 0.25em;
	border-bottom: 3px solid var(--border-color);
	font-family: var(--heading-font);
}

.heading {
	font-size: var(--large-font);
	font-family: var(--heading-font);
	margin-bottom: 1.33em;
}

/* PAGINATION */
.pagination {
	display: flex;
	margin: auto;
	text-align: center;
	justify-content: center;
	margin: 1em auto;
}

.pagination>* {
	padding: 0 0.5rem;
}

.pagination .current {
	font-weight: 600;
}

.pagination a.articleslink {
	width: 100%;
	display: block;
	padding: 10px 0px;
}

/************ HOME PAGE *****************/
.intro-area {
	background: var(--primary-color);
	/* height: 90vh; */
	color: #fff;
	font-size: var(--larger-font);
	display: flex;
	align-items: center;
	position: relative;
	margin-bottom: var(--pad);
	font-family: var(--heading-font);
	text-align: center;
	padding-top: 91px;
}

.intro-area .wrapper {
	display: flex;
	flex-flow: column;
	align-items: center;
}

.keep-going {
	position: absolute;
	bottom: 3%;
	margin: auto;
	left: 0;
	right: 0;
	text-align: center;
}

.keep-going svg {
	fill: #fff;
	width: auto;
	height: 5vh;
	max-height: 45px;
}


/**********  INTRO SLIDER ************/
.home-slider {
	background: var(--primary-color);
	height: 90vh;
	color: #fff;
	font-size: var(--medium-font);
	display: flex;
	align-items: center;
	position: relative;
	margin: 0 0 var(--pad);
	font-family: var(--heading-font);
	text-align: center;
	padding: 0;
}

.inner-container {
	margin: auto;
}

.intro.slide-container {
	position: relative;
	padding: 0;
}

.home-slide.slick-slide {
	height: 90vh;
	position: relative;
	display: flex;
}

.home-slider .background-image {
	position: absolute;
	top: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
}

.home-slider .background-image img {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	height: 100%;
	width: 100%;
	object-fit: cover;
}

.slide-cta {
	margin: var(--pad) 0 0;
}

.slide-cta .btn {
	border-color: #fff;
	border-radius: 5px;
}

.slide-heading {
	font-weight: 800;
	font-size: var(--largest-font);
}

.cta-area>div {
	margin: var(--pad) var(--half-pad) 0;
	font-size: var(--large-font);
}

.intro.slide-container:hover .slide-arrows {
	opacity: 0;
	display: none;
}

/* SLICK FIXES */
.slick-list {
	min-width: 100%;
}

/*************** POPULAR SECTION ***************/
main .slide-container a {
	color: inherit;
}

.popular-slider {
	list-style: none;
	padding: 0;
	margin: 0;
}

.popular-image img {
	object-fit: cover;
	height: 100%;
	width: 100%;
}

.popular-item::before {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.3);
}

.popular-item {
	position: relative;
	display: flex;
	width: 100%;
	flex-flow: column;
}

.popular-content {
	position: absolute;
	bottom: 8%;
	left: 5%;
	color: #fff;
	width: 50%;
}

.popular-slider .post-category {
	text-transform: uppercase;
	letter-spacing: 0.05em;
	font-size: var(--small-font);
}

.popular-title {
	font-size: var(--largest-font);
}

.popular-excerpt {
	font-size: var(--medium-font);
}

.popular-slider .slick-track {
	display: flex;
	flex-flow: row;
	height: 80vh;
}

.popular-slider .slick-slide {
	height: auto;
}

.popular-meta {
	margin: 1.66em 0;
}

.popular-image {
	height: 100%;
	width: 100%;
}

/* SLIDER CONTOL */
.draggable {
	cursor: grab;
}

.draggable:active {
	cursor: grabbing;
}

.slide-container {
	position: relative;
	
}

.slide-container:hover .slide-arrows {
	opacity: 1;
}

.slide-arrows {
	position: absolute;
	top: 0;
	align-items: center;
	display: flex;
	width: 100%;
	justify-content: space-between;
	z-index: 999;
	pointer-events: none;
	flex-flow: row-reverse;
	opacity: 0;
	transition: all 0.5s ease;
	height: 100%;
}

.slick-arrow {
	pointer-events: auto;
	cursor: pointer;
	height: 100%;
	display: flex !important;
	align-items: center;
}

.slide-arrows svg {
	fill: #fff;
	height: var(--largest-font);
}

.rec {
	height: calc(var(--small-font) / 2);
	width: var(--hero-font);
	background: rgba(255, 255, 255, 0.4);
	cursor: pointer;
}

.slick-active .rec {
	background: #fff;
}

.popular-slider .slick-dots {
	list-style: none;
	position: absolute;
	bottom: 5%;
	left: 5%;
	margin: 0;
	padding: 0;
	display: flex !important;
}

.popular-slider .slick-dots li {
	margin-right: 0.25rem;
}

/*------------------------------------*\
    About Page
\*------------------------------------*/

/* ABOUT FOOTER */


/* ABOUT PAGE */
.page-heading {
	border-bottom: 3px solid var(--primary-color);
	color: var(--primary-color);
	padding: 0 var(--pad);
	align-items: center;
}
.page-heading h1 {
	font-size: var(--large-font);
	margin: 0;
}
.page-heading a {
	color:#000;
}
.block-container {
	align-items: center;
	margin: var(--double-pad) 0;
}
.block-container:nth-child(2n+1) {
	flex-flow: row-reverse;
}
.block-container:nth-child(2n+1) .block-content {
	padding: 0 var(--pad) 0 0;
}
.block-content {
	padding: 0  0 0 var(--pad);
	font-size: var(--large-font);
	line-height: 1.2;
}
.block-content ul {
	line-height: 1.5;
}
.block-content .content-heading {
	font-size: var(--medium-font);
	color: var(--primary-color);
	text-transform: uppercase;
	font-weight: 800;
	font-family: var(--normal-font);
	letter-spacing: 0.05em;
}
.content-footer {
	display: flex;
	flex-flow: column;
	padding: var(--double-pad);
	font-size: var(--largest-font);
	text-align: center;
	background: var(--primary-color);
	color: #fff;
	font-family: var(--heading-font);
}
.no-bullet {
	list-style: none;
	margin: 1em 0;
	padding: 0;
}
.content-cta {
	font-size: var(--medium-font);
	margin-top: 1.5em;
}
.content-cta a {
	display: flex;
	color: var(--secondary-color);
}
.content-cta svg {
	height: var(--large-font);
	width: var(--large-font);
	fill: var(--secondary-color);
}

/*------------------------------------*\
    SINGLE POST PAGE
\*------------------------------------*/
/* post slider */
.main-slide-container {
	width: 100%;
	position: relative;
}

.main-slider {
	width: 100%;
	margin: 0;
	padding: 0;
}

.main-slide-container:hover .slide-arrows {
	opacity: 1;
}

.main-slider img {
	width: 100%;
	height: 100%;
	object-fit: cover;

}

.main-slider  .slick-list {
	min-width: 100%;
	height: 0;
	padding-bottom: 33.33%;
	position: relative;
}

.main-slider .slick-track {
	height: 100%;
	position: absolute;
}

.main-thumbs {
	width: 100%;
	margin: 0.5em 0;
	padding: 0;
}

.main-thumbs .slick-track {
	display: flex;
	justify-content: space-between;
	min-width: 100%;
	height: 15vh;
	min-height: 145px;
}

.thumb-image {
	flex-grow: 1;
	padding: 0.25em;
}

.main-thumbs img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}

/* post content */
.post-upper {
	display: flex;
	flex-flow: column;
	align-items: center;
	padding: var(--half-pad) 30%;
	text-align: center;
	justify-content: center;
	flex-grow: 1;
}

.single .post-category {
	text-transform: uppercase;
	color: var(--primary-color);
}

.to-content {
	padding: var(--half-pad) 0;
}

.single article {
	display: flex;
	flex-flow: column;
	width: 100%;
}

.main-image {
	text-align: center;
	padding: var(--half-pad) 0 0;
}

.single .content {
	margin: var(--half-pad) auto;
}


.lower-post-meta {
	font-size: var(--large-font);
}

.category-tags a {
	color: var(--medium-gray);
}

.content-blocks .content-block:first-child {
	padding-top: var(--half-pad);
}

.main-article-area {
	margin: var(--double-pad) var(--pad);
}

/* HACK IDEA */


/******************* SOCIAL SHARING ************************/
.social-sharing {
	margin: 1em 0;
}

.social-sharing ul {
	list-style: none;
	display: flex;
	flex-flow: wrap;
	font-size: var(--large-font);
	margin: 0;
	padding: 0;
}

.social-sharing ul li a {
	padding: 0.5em;
}

/******************* Post Next Prev Post Pagination ************************/
.post-pag {
	display: flex;
	justify-content: space-between;
	margin: var(--half-pad) auto;
}

.post-pag a {
	display: flex;
	align-items: center;
	font-family: var(--heading-font);
	text-transform: uppercase;
}

.post-pag .text {
	padding: 0 0.5em;
}

.post-pag svg {
	height: var(--medium-font);
	width: auto;
}

/*------------------------------------*\
   CONTACT PAGE
\*------------------------------------*/

.contact-page {
	font-family: var(--heading-font);
	font-size: var(--larger-font);
	text-align: center;

}

/*------------------------------------*\
   EVENTS PAGE
\*------------------------------------*/
.event-area,
.minimal-area {
	min-height: 60vh;
	align-items: center;
}

.small-title {
	font-size: var(--base-font);
	color: var(--primary-color);
	text-transform: uppercase;
	font-weight: 600;
}

.event-info {
	color: var(--secondary-color);
	justify-content: center;
}

.event-info {
	color: var(--secondary-color);
	justify-content: center;
}

.event-title {
	margin-bottom: 0;
	font-size: var(--larger-font);
}

.event-dates {
	margin-left: 0.5em;
}

/*------------------------------------*\
    ECOMMERCE LANDING PAGE
\*------------------------------------*/


.ecommerce-landing-page.minimal .intro-area {

}
.ecommerce-landing-page .user-area {
	display: none;
}
.ecommerce .logo .normal-logo svg {
	width: 165px;
	height: auto;
	max-width:100%;
}

.ecommerce-landing-page #submit {
	display: none;
}

.newsletter-box input {
	background: transparent;
	text-align: center;
	display:block;
}

.newsletter-box .submit {

	margin-top: 1em;
}
.intro .email-input {
	height:auto;
}

.intro .wpcf7-form-control.wpcf7-text::placeholder,
.intro .wpcf7-form-control.wpcf7-text {
	color: #fff;
}

.intro .wpcf7-form-control {
	color: #fff;
	border-color: #fff;
}

.intro .newsletter-box svg,
.submit-arrow {
	fill: #fff;
}

.intro .newsletter-box {
	font-size: var(--base-font);
	justify-content: center;
	margin: auto;
}

.intro-area .background-image {
	position: absolute;
	top: 0;
	height: 100%;
	width: 100%;
}

.intro-area .intro {
	z-index: 1;
}

.intro .sub-heading {
	font-size: var(--large-font);
}
.intro-slider .main-text {
	opacity: 0.6;
}
.ecommerce-landing-page .intro-slider {
	font-size: var(--large-font);
	margin: var(--double-pad) 3em;
}

#wordSlider {
	display: block;
}
.word-item {
	display:none;
}
.ecommerce-intake {
	margin: auto;
	width: 800px;
	max-width: 100%;
}

.point-item.flex {
	flex-flow: row;
	align-items: center;
	margin-bottom: calc(var(--pad) + 2em);
}

.point-image,
.point-non-image {
	height: 250px;
	width: 250px;
	margin-right: var(--pad);
}

.point-image img {
	height: 100%;
	width: 100%;
	object-fit: contain;
}

.pain-point {
	text-transform: uppercase;
	color: var(--primary-color);
	letter-spacing: 0.075em;
	margin-bottom: 1em;
}

.point-content {
	flex-grow: 1;
	width: 50%;
}

.point-title {
	margin-bottom: var(--half-pad);
}

#formIntake h2 {
	color: var(--secondary-color);
	font-size: var(--largest-font);
	padding: var(--pad) var(--double-pad);
}

#formIntake svg {
	fill: #000;
}

#formIntake .newsletter-box {
	margin: var(--half-pad) 0;
}

#formIntake .wpcf7-radio::before {
	content: "";
	height: 35px;
	width: 35px;
	background: url('/wp-content/uploads/2018/11/angryface.svg');
	background-size: contain;
	background-position: center;
	position: absolute;
	left: 0;
}

#formIntake .wpcf7-radio::after {
	content: "";
	height: 35px;
	width: 35px;
	background: url('/wp-content/uploads/2018/11/happyface.svg');
	background-size: contain;
	background-position: center;
	position: absolute;
	right: 0;
}

#formIntake .wpcf7-radio .wpcf7-list-item-label {
	display: none;
}

#formIntake .wpcf7-radio {
	position: relative;
	padding-left: 50px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	text-align: center;
	padding-right: 50px;
}

.landing-footer {
	padding: var(--pad);
	text-align: center;
}

.landing-footer h2 {
	font-size: var(--hero-font);
	font-weight: 600;
}

.ecommerce-landing-page .intro h2 {
	font-size: var(--larger-font);
	font-weight: 600;
	margin:0;
}

.ecommerce-landing-page .intro-area {
	background: transparent;
}

.ecommerce-landing-page .intro-area .wrapper {
	display: flex;
	flex-flow: column;
	align-items: center;
	justify-content: center;
	height: calc(100% - 12vw);
}

.background-video {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	height: 100%;
	top: 0;
	overflow: hidden;
}

/*
.background-video::before {
	content: "";

background: -moz-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(141,73,60,0.9) 100%); 
background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%,rgba(141,73,60,0.9) 100%); 
background: linear-gradient(to bottom, rgba(255,255,255,0) 0%,rgba(141,73,60,0.9) 100%); 
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#e68d493c',GradientType=0 ); 
	position: absolute;
	height: 100%;
	width: 100%;
}
*/
.background-video video {
	height: 100%;
	object-fit: cover;
	width: 100%;
}

blockquote.special {
	color: var(--primary-color);
	border: none;
	font-weight: 400;
	font-style: normal;
	line-height: 1.6;
}

/*------------------------------------*\
    IMAGES
\*------------------------------------*/



/*------------------------------------*\
	TYPOGRAPHY
\*------------------------------------*/


/*------------------------------------*\
    RESPONSIVE
\*------------------------------------*/



@media only screen and (min-width:320px) {}

@media only screen and (min-width:480px) {}

@media only screen and (min-width:768px) {}

@media only screen and (min-width:1024px) {}

@media only screen and (min-width:1140px) {}

@media only screen and (min-width:1280px) {}

@media only screen and (-webkit-min-device-pixel-ratio:1.5),
only screen and (min-resolution:144dpi) {}

/*------------------------------------*\
    MISC
\*------------------------------------*/
.grecaptcha-badge {
	opacity: 0;
}

::selection {
	background: #04A4CC;
	color: #FFF;
	text-shadow: none;
}

::-webkit-selection {
	background: #999;
	color: #FFF;
	text-shadow: none;
}

::-moz-selection {
	background: #999;
	color: #FFF;
	text-shadow: none;
}

/*------------------------------------*\
    WORDPRESS CORE
\*------------------------------------*/

.alignnone {
	margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
	display: block;
	margin: 5px auto 5px auto;
}

.alignright {
	float: right;
	margin: 5px 0 20px 20px;
}

.alignleft {
	float: left;
	margin: 5px 20px 20px 0;
}

a img.alignright {
	float: right;
	margin: 5px 0 20px 20px;
}

a img.alignnone {
	margin: 5px 20px 20px 0;
}

a img.alignleft {
	float: left;
	margin: 5px 20px 20px 0;
}

a img.aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption {
	background: #FFF;
	border: 1px solid #F0F0F0;
	max-width: 96%;
	padding: 5px 3px 10px;
	text-align: center;
}

.wp-caption.alignnone {
	margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
	margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
	margin: 5px 0 20px 20px;
}

.wp-caption img {
	border: 0 none;
	height: auto;
	margin: 0;
	max-width: 98.5%;
	padding: 0;
	width: auto;
}

.wp-caption .wp-caption-text,
.gallery-caption {
	font-size: 11px;
	line-height: 17px;
	margin: 0;
	padding: 0 4px 5px;
}

 
 

/*------------------------------------*\
    Mobile Menu
\*------------------------------------*/
.admin-bar #mobileMenu {
	top: calc(60px + 46px);
	height: calc(100vh - 60px -46px);
}

#mobileMenu {
	height: calc(100vh - 60px);
	position: fixed;
	top: 60px;
	transition: all 0.5s ease 0s;
	width: 100%;
	right: -100%;
	z-index: 9999;
	font-size: var(--medium-font);
	overflow: auto;
	color: var(--dark-gray);
	background: #fff;
}

#mobileMenu.opened {
	right: 0;
}

#mobileMenu h2 {
	padding: 0 0.5em;
	color: #fff;
}

.mobile-menu {
	padding: 10% 0;
	height: 100%;
	justify-content: flex-end;
	font-size: var(--largest-font);
	text-transform: uppercase;
	line-height: 1.5;
}

.mobile-menu a {
	display: block;
	padding: 0.25em 1em;
}

#mobileMenu ul {
	padding: 0;
	margin: 0;

}

#mobileMenu li {
	display: block;
	position: relative;
}

#mobileMenu li a {
	display: block;
}

#mobileMenu li:not(.cta-nav-offset) a:hover {
	background: rgba(0, 0, 0, 0.1) none repeat scroll 0 0;
}

#mobileMenu .sub-menu {
	display: none;
}

#mobileMenu li.menu-item-has-children>span::after {
	color: #ffffff;
	cursor: pointer;
	display: inline-block;
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	height: 100%;
	padding: 13px;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 2;
}

 

#mobileMenu li.btn {
	background: rgba(0, 0, 0, 0.2) none repeat scroll 0 0;
	font-weight: inherit;
	padding: inherit;
}

#mobileClose {
	color: #fff;
	font-size: 25px;
	padding: 0.5em;
	text-align: right;
	cursor: pointer;
}

#mobile-navigation li {
	display: inline-block;
	color: #fff;
	cursor: pointer;
}

#mobile-navigation li i {
	padding: 0 0.5em;
	font-size: 23px;
	vertical-align: middle;
}

#mobile-navigation {
	background: #0d0f0b none repeat scroll 0 0;
	display: none;
	padding: 0.5em;
	position: relative;
}

#mobile-navigation>ul {
	padding: 0;
	margin: 0;
	text-align: right;
}

#mobile-navigation li:first-child {
	float: left;
}

.mobile-menu .phone-num {
	font-size: var(--largest-font);
	text-align: center;
	font-family: var(--heading-font);
	letter-spacing: 0.1em;
	margin-top: 4em;
}

/* MOBILE MENU */
#closeSlideMenu {
	cursor: pointer;
	font-size: 25px;
	padding: 1vw;
	text-align: right;
}

#MenuToggle {
	transform: skewX(-18deg) rotateZ(-20deg);
	cursor: pointer;
	position: relative;
	z-index: 10;
	padding: 20px 10px;
	right: 0;
	height: 45px;
	width: 45px;
	top: 0;
}

#MenuToggle span {
	float: right;
	height: 3px;
	position: relative;
	width: var(--larger-font);
	background: #000;
}

#MenuToggle span::after {
	content: "";
	display: block;
	height: 3px;
	position: relative;
	top: 7px;
	width: var(--larger-font);
	transition: all 0.5s ease 0s;
	background: #000;
}

#MenuToggle span::before {
	content: "";
	display: block;
	height: 3px;
	position: relative;
	top: -9px;
	width: var(--larger-font);
	transition: all 0.5s ease 0s;
	background: #000;
}

#MenuToggle.close {
	transform: skew(0deg);
}

#MenuToggle.close span::after {
	bottom: 0;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
	transform: rotateZ(-45deg);
}

#MenuToggle.close span::before {
	bottom: 0;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
	transform: rotateZ(45deg);
}

#MenuToggle.close span {
	height: 0;
}

#mobileToggle>span {
	transition: all 0.5s ease;
}

.toggle-text {
	opacity: 0;
	font-size: 0;
}

.close .toggle-text {
	opacity: 100;
	font-size: inherit;
}

.close .initial-text {
	opacity: 0;
	font-size: 0;
}

.mobile-menu .instagram-link {
	margin-top: 10%;
}

/* MOBILE ICON NAVIGATION */

.mobile-icons {
	padding: 0.5em;
	z-index: 999;
	position: relative;
	width: 100%;
}

.mobile-icons ul {
	padding: 0;
	margin: 0;
	list-style: none;
	justify-content: space-around;
	width: 100%;
	color: var(--primary-color);
	font-size: var(--medium-font);
}

.mobile-icons>li {
	cursor: pointer;
}

.search-toggle {
	cursor: pointer;
	display: inline-block;
}

.m-search-box {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	margin: auto;
	z-index: 10;
	font-size: 14px;
	/* border: 3px solid var(--primary-color); */
	background: var(--dark-gray);
	padding: 0.5em;
}

.m-search-box .search-input {
	border: 3px solid var(--primary-color);
}

.close i::before {
	content: "\f00d";
}

/*------------------------------------*\
    PRINT
\*------------------------------------*/

@media print {
	* {
		background: transparent !important;
		color: #000 !important;
		box-shadow: none !important;
		text-shadow: none !important;
	}

	a,
	a:visited {
		text-decoration: underline;
	}

	a[href]:after {
		content: " ("attr(href) ")";
	}

	abbr[title]:after {
		content: " ("attr(title) ")";
	}

	.ir a:after,
	a[href^="javascript:"]:after,
	a[href^="#"]:after {
		content: "";
	}

	pre,
	blockquote {
		border: 1px solid #999;
		page-break-inside: avoid;
	}

	thead {
		display: table-header-group;
	}

	tr,
	img {
		page-break-inside: avoid;
	}

	img {
		max-width: 100% !important;
	}

	@page {
		margin: 0.5cm;
	}

	p,
	h2,
	h3 {
		orphans: 3;
		widows: 3;
	}

	h2,
	h3 {
		page-break-after: avoid;
	}

}

@media only screen and (min-width:980px) {

}

@media only screen and (max-width:1200px) {

	/* Small Desktop Screens */
	:root {
		/* FONT SIZES */
		--small-font: 12px;
		--base-font: 14px;
		--medium-font: 18px;
		--large-font: 22px;
		--larger-font: 26px;
		--largest-font: 30px;
		--hero-font: 40px;
	}

}

/* TABLET PORTRAIT AND LOWER */
@media only screen and (min-width: 769px) {
	.show-tablet {
		display: none;
	}

	.align-right {
		text-align: right;
	}

}

@media only screen and (min-width: 641px) {
	.show-mobile {
		display: none !important;
	}
}

@media only screen and (max-width: 768px) {
	.hide-tablet {
		display: none !important;
	}
}

/* Tablet PORTRAIT Only Sizes */
@media only screen and (min-width: 641px) and (max-width: 768px) {

	/* FONT SIZES */
	:root {
		--small-font: 13px;
		--base-font: 14px;
		--medium-font: 16;
		--large-font: 18px;
		--larger-font: 22px;
		--largest-font: 26px;
		--hero-font: 36px;
	}

	.fifty-t {
		width: 50%;
	}

	.thirty-three-t {
		width: 33.33%;
	}

	.sixty-six-t {
		width: 66.66%;
	}

	.twenty-five-t {
		width: 25%;
	}

	.pad2 {
		padding: 1em;
	}

	/* HEADER*/
	.logo svg {
		height: auto;
		width: 210px;
		text-align: center;
		margin: auto;
	}

	/* HERO */

}

@media only screen and (min-width: 641px) {
	.show-mobile {
		display: none;
	}

	.align-right {
		text-align: right;
	}
}

/* MOBILE */
@media screen  and (max-width: 737px) {
	
		:root {
			--small-font: 12px;
			--base-font: 14px;
			--medium-font: 16px;
			--large-font: 20px;
			--larger-font: 22px;
			--largest-font: 26px;
			--hero-font: 36px;
		}

		html #wpadminbar {
			position: fixed;
		}

		.hide-mobile {
			display: none !important;
		}

		.ten,
		.twenty,
		.twenty-five,
		.thirty,
		.thirty-three,
		.forty,
		.fifty,
		.sixty,
		.sixty-six,
		.seventy,
		.seventy-five,
		.eighty,
		.ninety {
			width: 100%;
		}

		.m-full {
			width: 100%;
		}

		.m-ten {
			width: 10%;
		}

		.m-twenty {
			width: 20%;
		}

		.m-twenty-five {
			width: 25%;
		}

		.m-forty {
			width: 40%;
		}

		.m-thirty-three {
			width: 33.33%;
		}

		.m-sixty {
			width: 60%;
		}

		.m-sixty-six {
			width: 66.66%;
		}

		.m-fifty {
			width: 50%;
		}

		.pad2s {
			padding: 0 2rem;
		}

		.pad2 {
			padding: 2rem;
		}

		.pad2t {
			padding: 2rem 0;
		}

		.pad4s {
			padding: 0 4rem;
		}

		.pad4t {
			padding: 2rem 0;
		}

		.pad8t {
			padding: 4rem 0;
		}

		.wrapper {
			padding: 0 20px;
		}

		.m-full .wrapper {
			width: 100%;
			padding: 0;
		}

		.mobile-small {
			font-size: var(--small-font);
		}

		/* POPUP */
		.newsletter-pop {
			width: 90%;
		}

		/* HEADER */
		.admin-bar .header,
		.admin-bar .project-page .door-types {
			top: 46px;
		}

		.main-header {

			padding: var(--half-pad) 0;
		}

		.header svg {
			width: 100%;
		}

		.logo svg {
			height: 55px;
		}

		.mini-logo {
			top: 0;
		}

		.account-area {
			display: none;
		}

		.user-area svg {
			height: var(--largest-font);
			width: var(--largest-font);
		}

		.search-area {
			margin-left: 1em;
		}

	 

		.acc-toggle {
			cursor: pointer;
		}

		.account-area {
			position: absolute;
			background: #fff;
			top: 100%;
			width: 70%;
			color: #000;
			padding: 1em;
			text-align: right;
		}

		.account-area a {
			display: block;
		}

		#loginForm {
			width: 90%;
		}

		#MenuToggle span::after {
			top: 5px;
		}

		#MenuToggle span::before {
			top: -8px;
		}

		/* NAVIGATION */
		.main-nav {
			width: 100%;
			display: flex;
			opacity: 1;
		}

		.menu-opened .logo {
			display: none;
		}

		.menu-opened header,
		.menu-opened header.mini-head {
			background-color: transparent;
		}

		.main-nav .cat-list li {
			margin-bottom: 0.25em;
		}

		.main-nav nav {
			flex-grow: 0;
		}

		.nav-container {
			/*height: auto;
			align-self: flex-end;*/
			padding: 30px;
		}

		/* FOOTER */
		.upper-footer {
			align-items: flex-end;
			margin-bottom: 10vh;
		}

		 

	 

		.email-input {
			height: calc(var(--larger-font) * 3);
		}

		/* HOME PAGE */
		.intro-area {
			font-size: var(--base-font);
			text-align: center;
			height: auto;
			padding: 80px 0;
		}

		/* HERO SLIDER */
		.home-slider {
			font-size: var(--base-font);
		}

		.slide-heading {
			font-size: var(--larger-font);
		}

		.intro.slide-container ul {
			padding: 0;
			height: auto;
		}

		.inner-container {
			margin: auto;
			padding: 0 30px;
		}

		/* Popular Slider */

		.popular-content {
			position: initial;
			color: initial;
			width: 100%;
		}

		.popular-content .post-category {
			margin-top: 1em;
		}

		.popular-title {
			font-size: var(--larger-font);
		}

		.popular-slider .slick-track {
			height: auto;
		}

		.popular-image {
			height: 75vw;
		}

		.popular-item::before {
			display: none;
		}

		.popular-excerpt {
			font-size: var(--base-font);
		}

		.popular-posts .slick-arrow {
			margin-top: 75vw;
			align-items: flex-start;
		}

		.popular-posts .slick-dots {
			display: none !important;
		}

		/* POSTS LISTS */
		.post-list .post-image {
			height: 68vw;
		}

		.post-item {
			padding: 2%;
			margin-bottom: 2em;
		}

		/* BLOG PAGES */


		.post-upper {
			height: auto;
			padding: 5%;

		}

		.category-header {
			font-size: var(--small-font);
		}

		.sort-box select {
			min-width: 25vw;
		}

		.main-slider {
			height: 40vh;

		}

		.main-slider .slick-slide {
			height: 40vh;
		}

		.main-thumbs li {
			height: 80px;
		}

		.main-thumbs .slick-track {
			height: 80px;
			min-height: auto;
		}

		/* PAGE SECTIONS */
		.section-title {
			margin: 1rem auto;
		}

		.blog-post {
			margin-bottom: 1rem;
		}

		/* FORMS */
	 

		textarea {
			height: 150px;
		}

		.help-text {
			font-size: var(--small-font);
			margin-bottom: 2rem;
		}

		/************ MOBILE  HOME PAGE *****************/
		/* CONTACT PAGE */
		.contact-page {
			font-size: var(--medium-font);

		}

	/************ MOBILE BLOCK INDEX PAGE **********/
	.blog-featured-slider .inner-content h2 {
		font-size: var(--largest-font);
		margin-bottom: var(--double-pad);
	}
		.blog-featured-slider {
			height: 90vh;

		}
		.blog-featured-slider .inner-content {
			text-align: center;
			margin-bottom: calc(var(--double-pad) * 2);
		}
		
		#featuredBlogArrows {
			bottom: var(--half-pad);
		}
		#featuredBlogArrows {
			display: flex;
			justify-content: center;
			width: 100%;
			left: 0;
		}
		/************ MOBILE ECOMMERCE PAGE **********/


	

		.ecommerce-landing-page .intro-slider {
			padding-bottom: var(--half-pad);
			margin: calc(var(--double-pad) * 2) 0;
			font-size: var(--large-font);	
		}


		.ecommerce .intro-area {
			height: auto;
		}
		.ecommerce-landing-page .intro h2 {
			
			font-weight: 600;
		}
	

		.ecommerce .logo .normal-logo svg {
			height: 55px;
			width: auto;
		}

		.point-title {
			margin-bottom: 2em;
		}

		.ecommerce-intake {
			width: 100%;
		}


		.point-item.flex {
			margin-bottom: calc(var(--pad) + 4em);
			flex-flow: column;
		}

		.pain-point {
			margin-bottom: 0;
		}

		.point-content {
			flex-grow: 1;
			width: 100%;
			margin-top: var(--pad);
			text-align: center;
		}

		.point-image {
			height: 150px;
			width: 150px;
			margin-right: 0;
		}

		.point-non-image {
			height: auto;
			width: auto;
		}
		/* ABOUT PAGE */
		.block-container:nth-child(2n+1) {
			flex-flow: wrap;
		}
		.block-content {
			padding: 0 var(--pad) 0 0;
			font-size: var(--larger-font);
			line-height: 1.2;
		}
	}


@media only screen and  (min-width: 640px) and (max-width: 768px) and (orientation: landscape) {

		body::before {
			content: "Turn Your Device to a Portrait Orientation.";

			position: fixed;
			z-index: 99999;
			font-size: 5vw;
			top: 50%;
			transform: translatey(-50%);
			left: 0;
			right: 0;
			color: #fff;
			margin: auto;
			text-align: center;
			padding: 0 10%;
		}

		body::after {
			content: "";
			position: fixed;
			top: 0;
			left: 0;
			height: 100%;
			width: 100%;
			background: rgba(0, 0, 0, 0.8);
			z-index: 9999;
		
	}
}

/* IHPONE HACKS */
@media screen and (-webkit-min-device-pixel-ratio:0) {

	select,
	textarea,
	input {
		font-size: 16px;
	}
}

/* FOR OLD IE HACK */
@media screen and (-ms-high-contrast: active),
(-ms-high-contrast: none) {}