/*!
Theme Name: The Movement Paradigm
Theme URI: https://www.catalystvisuals.com
Author: david hazardous
Author URI: https://davidhazardous.com
Description: Description
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: underscores
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

Based on Underscores https://underscores.me/, (C) 2012-2017 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.
*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Typography
# Elements
# Forms
# Navigation
	## Links
	## Menus
# Accessibility
# Alignments
# Clearings
# Widgets
# Content
	## Posts and pages
	## Comments
# Infinite scroll
# Media
	## Captions
	## Galleries
--------------------------------------------------------------*/
html {
	--dark: #0d4c8e;
	--darktrans: rgba(13,76,142,.85);
	--darkgradient: linear-gradient(90deg, #15465e 0%, #0d4c8e 50%, #15465e 100%);
	--extradark: #15365e;
	--light: #8ecf17;
	--lighttrans: rgba(142, 207, 23, .85);
	--verylighttrans: rgba(142, 207, 23, .25);
	--lightgradient: linear-gradient(0deg, #c3f16c, #8ecf17);
	--extralight: #c3f16c;
	--transition: .3s all;
	--gray: #bdbec0;
	--graytrans: rgba(189, 190, 192, .85);
	--darkgray: #555;
	scroll-behavior: smooth;
}
body {
	width: 100%;
	overflow-x: hidden;
}
.fancy, .fancyButton span span {
	font-family: 'black_jackregular';
}
/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
optgroup,
textarea {
	color: #404040;
	font-family: 'Raleway', sans-serif;
	font-size: 16px;
	font-size: 1rem;
	line-height: 1.5;
}

h1, h2, h3, h4, h5, h6 {
	clear: both;
}

p {
	margin-bottom: 1.5em;
}

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

blockquote {
	margin: 0 1.5em;
}

address {
	margin: 0 0 1.5em;
}

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

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

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

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

big {
	font-size: 125%;
}

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

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

body { background: var(--extralight); }

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

ul, ol { margin: 1rem 0; }

ul { list-style: disc; }

ol { list-style: decimal; }

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

dt { font-weight: bold; }

dd { margin: 0 1.5em 1.5em; }

img {
	height: auto;
	/* Make sure images are scaled correctly. */
	max-width: 100%;
	/* Adhere to container width. */
}

figure { margin: 1em 0; }

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

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
.button,
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	border: 2px solid;
	border-color: var(--dark);
	border-radius: .25em;
	background: var(--light);
	color: var(--dark) !important;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1;
	padding: .75rem 1rem;
	text-decoration: none;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
	background: var(--lightgradient);
}

button:active, button:focus,
input[type="button"]:active,
input[type="button"]:focus,
input[type="reset"]:active,
input[type="reset"]:focus,
input[type="submit"]:active,
input[type="submit"]:focus {
	border-color: var(--darkgray);
}
.search-submit {
	margin: .25rem 0;
}
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
	width: 100%;
	color: #666;
	border: 1px solid #ccc;
	border-radius: 3px;
	padding: 3px;
}

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

select {
	border: 1px solid #ccc;
}

textarea {
	width: 100%;
}

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
a, a:visited {
	color: var(--light);
	transition: var(--transition);
}
a:hover, a:focus, a:active {
	color: var(--dark);
}
a:focus {
	outline: thin dotted;
}
a:hover, a:active {
	outline: 0;
}
/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/
.main-navigation {
    clear: both;
    display: block;
    position: absolute;
    top: 0;
    right: 0;
	padding-top: 1rem;
	padding-right: 1rem;
	background-color: transparent;
	transition: var(--transition);
}

.main-navigation ul {
	display: block;
	list-style: none;
	margin: 0;
	padding-left: 0;
}

.main-navigation ul ul {
	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
	float: left;
	position: absolute;
	top: 100%;
	left: -999em;
	z-index: 99999;
}

.main-navigation ul ul ul {
	left: -999em;
	top: 0;
}

.main-navigation ul ul li:hover > ul,
.main-navigation ul ul li.focus > ul {
	left: 100%;
}

.main-navigation ul ul a {
	width: 200px;
}

.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
	left: auto;
}

.main-navigation li {
	float: left;
	position: relative;
}

.main-navigation a {
	display: block;
	text-decoration: none;
	color: var(--dark);
}
#primary-menu a {
	line-height: 2em;
	background-image: linear-gradient(to right, var(--dark) 10%, rgba(255,255,255,0) 0%);
	background-position: bottom;
	background-size: 1rem 1px;
	background-repeat: repeat-x;
}
.main-navigation a:hover,
.main-navigation a:active,
.main-navigation a:focus {
	color: var(--light);
}
.site-main .comment-navigation, .site-main
.posts-navigation, .site-main
.post-navigation {
	margin: 0 0 1.5em;
	overflow: hidden;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
	float: left;
	width: 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
	float: right;
	text-align: right;
	width: 50%;
}

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

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

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

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

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

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

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

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

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

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

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

.hentry {
	margin: 0 0 1.5em;
}

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

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

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

/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.comment-content a {
	word-wrap: break-word;
}

.bypostauthor {
	display: block;
}

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
## Galleries */
.gallery { margin-bottom: 1.5em; }
.gallery-item {
	display: inline-block;
	text-align: center;
	vertical-align: top;
	width: 100%; }
.gallery-columns-2 .gallery-item { max-width: 50%; }
.gallery-columns-3 .gallery-item { max-width: 33.33%; }
.gallery-columns-4 .gallery-item { max-width: 25%; }
.gallery-columns-5 .gallery-item { max-width: 20%; }
.gallery-columns-6 .gallery-item { max-width: 16.66%; }
.gallery-columns-7 .gallery-item { max-width: 14.28%; }
.gallery-columns-8 .gallery-item { max-width: 12.5%; }
.gallery-columns-9 .gallery-item { max-width: 11.11%; }
.gallery-caption { display: block; }

/* header ======================================================== */
#masthead {
	position: fixed;
	top: 0;
    left: 0;
    right: 0;
	z-index: 99;
}
.site-branding {
    max-width: 19rem;
    transform: rotate(355deg);
    margin-top: 1rem;
    margin-left: 1rem;
}
.site-branding a { position: relative; outline: none !important; }
.site-branding a img:last-child {
	position: absolute;
	left: 0;
	transition: var(--transition);
	opacity: 1;
}
.scrolled .site-branding a img:last-child  { opacity: 0; }

/* nav =========================================================== */
#navTrigger {
    width: 2.5rem;
    height: 2rem;
    float: right;
    z-index: 9;
    margin: 0 0 .75rem 0; }
.bars {
    height: 20%;
    width: 100%;
    background: var(--dark);
    transition: var(--transition);
    border-radius: 10%;}
.bars:nth-child(2) { margin: 20% 0; }
.navOpen .bars:nth-child(2) { opacity: 0; }
.navOpen .bars:first-child { transform: translateY(.9rem) rotate(45deg); }
.navOpen .bars:last-child { transform: translateY(-.9rem) rotate(-45deg); }
#navTrigger {
    color: var(--dark);
    transition: var(--transition);
	cursor: pointer; }
#navTrigger:hover, #navTrigger:active,
#navTrigger:focus { color: var(--light); }
#navTrigger:hover .bars, #navTrigger:active .bars,
#navTrigger:focus .bars { background: var(--light); }
.main-navigation li {
    width: 100%;
    display: block;
    text-align: right; }
.main-navigation ul {
    display: flex;
    flex-direction: column;
    justify-content: space-around; }
.menu-menu-1-container {
    height: 0;
    overflow: hidden;
    transition: var(--transition);
    margin-top: 3em; }
.navOpen .menu-menu-1-container {
    height: 12rem; }
.navOpen .main-navigation {
    z-index: 2; }
.navOpen .site-content {
    pointer-events: none; }
.tel {
    display: block;
    position: absolute;
    right: 5rem;
    top: 1rem;
    line-height: 2rem;
	z-index: 99;
	text-decoration: none;
	color: var(--darkgray);
}
.main-navigation .socials {
	text-align: center;
	font-size: 2rem;
	width: 1.25em;
	float: right;
}
.main-navigation .socials li { text-align: center; }
.navOpen .main-navigation .socials { margin-top: 2rem; }

.scrolled .bars {
    box-shadow: 0 0 10px var(--gray);
}
.scrolled .main-navigation .socials, .scrolled .tel {
	text-shadow: 0 0 10px var(--gray);
}
.scrolled .tel {
	color: var(--light);
}
.scrolled .tel span {
	opacity: 0;
    display: none;
}
.scrolled.navOpen .tel {
	color: initial;
}
.scrolled.navOpen .bars {
    box-shadow: none;
}
.scrolled.navOpen .main-navigation,
body.navOpen:not(.home) .main-navigation {
    background: var(--graytrans);
    padding-left: 4rem;
	border-bottom-left-radius: 1rem;
}
.navOpen #overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
	background: rgba(255,255,255,.5);
	pointer-events: all;
}
#content {
	transition: var(--transition);
}
.navOpen #content {
    pointer-events: none;
	filter: blur(10px);
}


/* sauce ========================================================= */

.home .entry-header { display: none; }
.home .entry-content { margin-top: 0; }

#homeATF {
    height: 100vh;
    background-size: cover;
    background-position: right top;
}
#homeATF > div:first-child {
    height: 100vh;
    display: flex;
    justify-content: center;
	flex-direction: column;
    background-image: url(/wp-content/uploads/2019/01/arcBG.svg);
    background-size: cover;
}
#ATFleft .textwidget p {
    max-width: 19vw;
    margin-left: 1rem;
}
#homeATF > div:first-child .ow-button-align-center {
    max-width: 28vw;
}
#homeATF .testimonial {
    font-weight: 200;
    font-size: 1.5rem;
    max-width: 27rem;
    line-height: 1.6em;
    margin-left: -6em;
	position: relative;
    text-shadow: 0 0 10px #cec7cc;
	color: black;
    background: rgba(255,255,255,.25);
    padding: 1.5rem;
    border-radius: 1rem;
}
#homeATF .testimonial li:before,
.testimonialCopy:before {
    content: '“';
    position: absolute;
    left: -3rem;
    font-size: 6rem;
    font-weight: 700;
    color: var(--dark);
    top: 1rem;
}
#homeATF .testimonial li.fancy:before {
	content: '';
}
#homeATF .testimonial li.fancy span {
    font-size: 2rem;
    display: block;
    text-align: left;
    margin: 1rem auto;
    max-width: 13rem;
	color: var(--darkgray);
}
#homeATF .testimonial li.fancy span:nth-of-type(2) {
	text-align: right;
}
.testimonialCopy {
    position: relative;
    background: rgba(0,0,0,.125);
    padding: 2rem;
    border-radius: 1rem;
}
.testimonialCopy:before {
	left: 1rem;
	top: -1rem;
	opacity: .25;
}
.testimonialCopy:after {
    border: 1rem solid transparent;
    border-top: 1rem solid rgba(0,0,0,.125);
    content: '';
    position: absolute;
    bottom: -2rem;
    left: 2rem;
}
span.name {
    font-family: 'black_jackregular';
    font-size: 1.5rem;
}
span.name, span.location {
	margin-left: 1rem;
}
#homeATF .testimonial strong {
	font-weight: 700;
}
#homeATF .testimonial p {
	margin: 0;
}
#homeATF .testimonial ul {
    list-style: none;
    padding: 0;
    margin: 0;
	pointer-events: none;
}
#homeATF .testimonial ul li {
	height: 0;
	opacity: 0;
}
#homeATF .testimonial ul li.active {
	height: 100%;
	opacity: 1;
	overflow: initial;
}
#homeATF > div:nth-child(2) {
    height: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
#services {
	background: var(--darkgradient);
    border-top: 2rem solid var(--light);
    border-top-left-radius: 2rem;
    border-top-right-radius: 2rem;
	margin-top: -2rem;
}
#services .widget_media_image {
    border: .25rem solid var(--extralight);
    border-radius: .5rem;
    position: relative;
    padding-top: 1rem;
	transition: var(--transition);
}
#services .widget_media_image img {
	margin: auto;
	display: block;
	padding: .5rem;
	object-fit: cover;
    height: 12rem !important;
}
#services .widget-title {
    text-align: center;
	line-height: 1rem;
    color: white;
    max-width: 8rem;
    margin: auto;
    position: absolute;
    font-weight: 400;
    left: -999%;
    right: -999%;
    top: -1rem;
}
#services .widget_media_image:before {
    content: '';
    height: .25rem;
    width: 8rem;
    background: var(--dark);
    position: absolute;
    top: -.25rem;
    right: calc( 50% - 4rem );
}
#services .widget_media_image:hover {
	background-color: var(--verylighttrans);
}
.home #firstStep { position: relative; }
.home #firstStep > div {
	position: absolute;
	top: 1.5rem;
}
.so-widget-sow-button-atom-4a75a8acc3b6 .ow-button-base a.fancyButton {
    background: var(--lightgradient) !important;
    color: var(--dark) !important;
    font-weight: 700;
    font-size: 1.5rem !important;
    padding: 1rem 3.5rem 1rem 1rem;
    text-align: right;
	position: relative;
	border-color: var(--dark) !important;
    border-width: 2px;
}
.so-widget-sow-button-atom-4a75a8acc3b6 .ow-button-base a.fancyButton > span:after {
    content: '';
    position: absolute;
    width: 3rem;
    background-image: url(/wp-content/uploads/2019/01/closingGuillemet.svg);
    height: 100%;
    top: 0;
    background-size: 80% 60%;
    background-position: center;
    background-repeat: no-repeat;
	right: .5rem;
	transition: var(--transition);
}
.so-widget-sow-button-atom-4a75a8acc3b6 .ow-button-base a.fancyButton:hover > span:after {
	right: .25rem;
}
.fancyButton span span {
    color: var(--darkgray) !important;
	display: block;
}
body:not(.home) #content {
    margin: 9rem 4rem 1rem 4rem;
    background: white;
    padding: 1rem 4rem;
    border-radius: 1rem;
    min-height: calc( 100vh - 12rem);
}
.entry-title {
    border-bottom: .25rem solid var(--dark);
}
.callout {
    background: var(--lightgradient);
    color: var(--extradark);
}
.callout, .single-event {
	padding: 1rem;
    border-radius: 1rem;
}
.callout a {
	color: var(--dark);
}
.callout a:hover {
	color: var(--extradark);
}
.price {
    font-size: 1.125em;
    font-weight: 700;
    font-style: italic;
}
.callout h1, .callout h2, .callout h3,
.callout h4, .callout h5, .callout h6, .callout p {
	margin-top: 0;
}
.page-id-19 .entry-content > div .panel-grid {
    margin-bottom: 6rem !important;
}
.page-id-19 main .widget-title {
    font-size: 1.625em;
    border-bottom: 4px solid var(--dark);
    text-transform: lowercase;
}
.page-id-19 main ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
	justify-content: center;
}
.page-id-19 main li {
    margin-bottom: .5rem;
    width: 20rem;
    border: 2px solid var(--graytrans);
    border-radius: 1rem;
    margin: .5rem;
    padding: 0 1rem 1rem 1rem;
    text-align: center;
	overflow: hidden;
	display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.page-id-19 main .single-event li {
	font-size: 2em;
	max-width: 100%;
	width: 30rem;
	transition: var(--transition);
}
.page-id-19 main li:hover {
	box-shadow: 0 0 10px var(--graytrans);
}
.page-id-19 main .date {
    font-weight: 700;
	display: block;
	padding-top: 1rem;
	padding-bottom: .5rem;
    width: auto;
    background: var(--darkgradient);
    color: white;
    margin: 0 -1rem .5rem -1rem;
}
.page-id-19 main .date:before {
	content: '\f073';
	font-family: 'Font Awesome 5 Free';
	font-weight: 400;
	margin-right: .25rem;
}
.page-id-19 main a {
	margin-top: 1rem;
    display: block;
}
a.download:after, a.offsite:after {
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	margin: 0 .25rem;
}
a.download:after {
	content: '\f56d';
}
a.offsite:after {
	content: '\f360';
}
.logoList {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
}
.logoList img {
    height: auto;
    width: auto;
    max-height: 6rem;
    margin: 2rem .5rem;
}
.page-id-3615 .entry-content .so-panel,
.page-id-21 .entry-content .so-panel {
	display: flex;
	flex-wrap: wrap;
}
.page-id-3615 .entry-content article,
.page-id-21 .entry-content article {
    margin: 1%;
   	padding: 1%;
	border-radius: 1rem;
    box-shadow: 0 0 10px rgb(240,240,240);
	transition: var(--transition);
}
.page-id-3615 .entry-content article:hover,
.page-id-21 .entry-content article:hover {
	box-shadow: 0 0 10px rgb(220,220,220);
}
.certifications > div {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.certifications > div img {
    height: 4rem;
    width: auto;
    margin: .5rem;
}
.home #panel-10-0-1-1 {
    position: absolute;
    bottom: 1rem;
    width: 100vw;
    text-align: center;
    left: 0;
    font-weight: 900;
    font-size: 1.5rem;
	text-shadow: 0 0 10px white;
}
.home #panel-10-0-1-1 #teaser:after {
	content: '';
	border-top:    1rem solid var(--dark);
	border-left:   1rem solid transparent;
	border-bottom: 1rem solid transparent;
	border-right:  1rem solid transparent;
}
.page-id-160 .logo-carousel {
	min-height: 20rem;
}
/* site footer */
.site-info {color: #ffffff;width:100%;text-align:center;}
.site-info a,.site-info a:visited {text-decoration:none;transition: .3s all ease-in;}
.site-info #outerC, .site-info #innerDot {fill:var(--extradark); transition: .3s all ease-in;}
.site-info a:hover #outerC{fill:#123a5b;}
.site-info a:hover #innerDot{fill:#79cdc6;}

/* tuck + tape that admin bar */

#wpadminbar{opacity:.3;transition:.2s all ease-in-out;height:6px!important;overflow:hidden;font-family:sans-serif!important;}
#wpadminbar a{color:white!important;font-family:sans-serif!important;}
#wpadminbar:hover{opacity:.95;height:32px!important;}
html.js_active{margin-top:0!important;}
.logged-in .entry-footer{display:none;}

/* get that header offset
:target:before {
  content:"";
  display:block;
  height:90px;
  margin:-90px 0 0;
} */
.nav-previous:before {
    content: '\21e6(';
}
.nav-previous:after {
	content: ')';
}
.nav-next:before {
    content: '(';
}
.nav-next:after {
    content: ')\21e8';
}

.grecaptcha-badge {
	display: none;
}
@media (min-width: 840px) {
	.single-post #primary {
		width: 75%;
		float: left;
		padding-right: 1rem;
	}
	.single-post #secondary {
		width: 25%;
		float: left;
		margin-top: 5rem;
		padding-left: 1rem;
		border-left: 1px solid var(--gray);
	}
	.page-id-3615 .entry-content article,
	.page-id-21 .entry-content article {
    	width: 48%;
	}
}
@media (min-width: 1200px) {
	.page-id-3615 .entry-content article,
	.page-id-21 .entry-content article {
    	width: 31%;
	}
}
@media (min-width: 2200px) {
	.page-id-3615 .entry-content article,
	.page-id-21 .entry-content article {
    	width: 23%;
	}
}
@media (max-width: 1200px) {
	#homeATF .testimonial {
		font-size: 1.2rem;
	}
}
@media (max-height: 840px) {
	#homeATF > div:first-child {
        width: 60%;
		height: auto;
		min-height: 100vh;
    }
	#ATFleft .textwidget p {
		max-width: 30vw;
	}
}
@media (max-height: 600px) {
	#teaser em {
		display: none;
	}
}
@media (max-width: 780px) {
	.page-id-160 .logo-carousel {
		min-height: 40rem;
	}
	#panel-10-0-1-0 {
		width: 100%;
	}
	#homeATF {
		min-height: 100vh;
		height: auto;
	}
	#homeATF .testimonial {
		margin: 0 auto 0 auto;
	}
	.site-branding {
		max-width: 12rem;
	}
	body:not(.home) #content {
		margin: 6rem 0 0 0;
		padding: 1rem;
	}
	.entry-title {
		display: inline-block;
	}
	.tel span, .testimonial, #ATFleft .textwidget p span {
		display: none;
	}
	.tel {
		font-size: 2rem;
	}
	#homeATF > div:first-child {
		position: absolute;
        width: 100% !important;
		background-image: url(/wp-content/uploads/2019/03/arcBG-85.svg);
	}
	#pg-10-0> .panel-row-style {
		background-position: 75% 50%;
	}
	#ATFleft .textwidget p {
        max-width: 60vw;
		margin-top: 0;
		margin-bottom: 0;
    }
	.navOpen .main-navigation {
    	background: var(--graytrans);
	    padding-left: 4rem;
		border-bottom-left-radius: 1rem;
	}
}