/*
Theme Name: Peaberry 322
Theme URI: https://demo.studiopress.com/
Description: This is the sample theme created for the Genesis Framework.
Author: StudioPress
Author URI: https://www.studiopress.com/

Version: 3.4.100


Tags: accessibility-ready, block-styles, custom-colors, custom-logo, custom-menu, editor-style, featured-images, footer-widgets, full-width-template, left-sidebar, one-column, right-sidebar, rtl-language-support, sticky-post, theme-options, threaded-comments, translation-ready, two-columns, wide-blocks

Template: genesis

License: GPL-2.0-or-later
License URI: https://www.gnu.org/licenses/gpl-2.0.html

Text Domain: genesis-sample
Requires at least: 5.4
Requires PHP: 5.6
*/

/* Table of Contents
- HTML5 Reset
	- Baseline Normalize
	- Box Sizing
	- Float Clearing
- Defaults
	- Typographical Elements
	- Headings
	- Objects
	- Gallery
	- Forms
	- Tables
	- Screen Reader Text
- Structure and Layout
	- Site Container
	- Site Inner
- Common Classes
	- Avatar
	- Genesis
	- Search Form
	- Titles
	- WordPress
- Widgets
	- Featured Content
- Plugins
	- Genesis eNews Extended
	- Genesis Simple FAQ
	- WPForms
- Skip Links
- Site Header
	- Title Area
- Site Navigation
	- Responsive Menu
	- Header Menu
	- Footer Menu
- Content Area
	- Entry Content
	- Entry Meta
	- Pagination
	- Entry Comments
- Sidebar
- Footer Widgets
- Site Footer
- Media Queries
	- Min-width: 960px
		- Site Header
		- Genesis Menu
		- Responsive Menu
		- Header Menu
		- Site Inner
		- Content
		- Sidebar
		- Author Box
		- After Entry
		- Column Classes
		- Entry Misc.
		- Footer Widgets
- Print Styles
*/

@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;0,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Licorice&display=swap');

/* HTML5 Reset
---------------------------------------------------------------------------- */

/* normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css
---------------------------------------------------------------------------- */
/* stylelint-disable */
html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}h1{font-size:2em;margin:.67em 0}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}[hidden],template{display:none}
/* stylelint-enable */

/* Box Sizing
--------------------------------------------- */

html {
	box-sizing: border-box;
}

*,
*::before,
*::after {
	box-sizing: inherit;
}

/* Float Clearing
--------------------------------------------- */

.author-box::before,
.clearfix::before,
.entry::before,
.entry-content::before,
.footer-widgets::before,
.nav-primary::before,
.nav-secondary::before,
.pagination::before,
.site-container::before,
.site-footer::before,
.site-header::before,
.site-inner::before,
.widget::before,
.wrap::before {
	content: " ";
	display: table;
}

.author-box::after,
.clearfix::after,
.entry::after,
.entry-content::after,
.footer-widgets::after,
.nav-primary::after,
.nav-secondary::after,
.pagination::after,
.site-container::after,
.site-footer::after,
.site-header::after,
.site-inner::after,
.widget::after,
.wrap::after {
	clear: both;
	content: " ";
	display: table;
}


/* Defaults
---------------------------------------------------------------------------- */

/* Typographical Elements
--------------------------------------------- */

html {
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
}

body {
	background-color: #fff;
	color: #022e03;
	font-family: 'Roboto', sans-serif;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.625;
	margin: 0;
	overflow-x: hidden;
}

button,
input:focus,
input[type="button"],
input[type="reset"],
input[type="submit"],
textarea:focus,
.button,
.gallery img {
	transition: all 0.2s ease-in-out;
}

a {
	color: #035b0b;
	text-decoration: none;
	transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out;
	font-weight: 600;
}

a:focus,
a:hover {
	color: #035b0b;
	text-decoration: none;
	border-bottom: 2px solid #f3cc57;
	padding-bottom: 2px;
}

p {
	margin: 0 0 28px;
	padding: 0;
}

ol,
ul {
	margin: 0;
	padding: 0;
}

li {
	list-style-type: none;
}

hr {
	border: 0;
	border-collapse: collapse;
	border-bottom: 1px solid currentColor;
	clear: both;
	color: #eee;
	margin: 0;
}

b,
strong {
	font-weight: 700;
}

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

mark {
	background: #ddd;
	color: #333;
}

blockquote {
	margin: 30px;
}

/* Headings
--------------------------------------------- */

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 400;
	line-height: 1.2;
	margin: 0 0 20px;
}

h1 {
	font-size: 38px;
}

h2 {
	font-size: 30px;
}

h3 {
	font-size: 24px;
}

h4 {
	font-size: 20px;
}

.entry-content h3,
.entry-content h4 {
	font-weight: 500;
}

.entry-content h4 {
	margin-top: 40px;
}

h5 {
	font-size: 18px;
}

h6 {
	font-size: 16px;
}

/* Objects
--------------------------------------------- */

embed,
iframe,
img,
object,
video,
.wp-caption {
	max-width: 100%;
}

img {
	height: auto;
	vertical-align: top;
}

figure {
	margin: 0;
}

/* Forms
--------------------------------------------- */

input,
select,
textarea {
	background-color: #fff;
	border: 2px solid #022e03;
	color: #333;
	font-size: 18px;
	font-weight: 400;
	padding: 15px;
	width: 100%;
}

input:focus,
textarea:focus {
	border: 1px solid #999;
	outline: none;
}

input[type="checkbox"],
input[type="image"],
input[type="radio"] {
	width: auto;
}

:-ms-input-placeholder {
	color: #333;
	opacity: 1;
}

::placeholder {
	color: #333;
	opacity: 1;
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"],
.site-container div.wpforms-container-full .wpforms-form input[type="submit"],
.site-container div.wpforms-container-full .wpforms-form button[type="submit"],
.button {
	background-color: #035b06;
	border: 0;
	border-radius: 5px;
	color: #fff;
	cursor: pointer;
	font-size: 16px;
	font-weight: 600;
	padding: 15px 30px;
	text-align: center;
	text-decoration: none;
	white-space: normal;
	width: auto;
}

button:focus,
button:hover,
input[type="button"]:focus,
input[type="button"]:hover,
input[type="reset"]:focus,
input[type="reset"]:hover,
input[type="submit"]:focus,
input[type="submit"]:hover,
.site-container div.wpforms-container-full .wpforms-form input[type="submit"]:focus,
.site-container div.wpforms-container-full .wpforms-form input[type="submit"]:hover,
.site-container div.wpforms-container-full .wpforms-form button[type="submit"]:focus,
.site-container div.wpforms-container-full .wpforms-form button[type="submit"]:hover,
.button:focus,
.button:hover {
	background-color: #022e03;
	border-width: 0;
	color: #fff;
}

.entry-content .button:focus,
.entry-content .button:hover {
	color: #fff;
}

.button {
	display: inline-block;
}

.site-container button:disabled,
.site-container button:disabled:hover,
.site-container input:disabled,
.site-container input:disabled:hover,
.site-container input[type="button"]:disabled,
.site-container input[type="button"]:disabled:hover,
.site-container input[type="reset"]:disabled,
.site-container input[type="reset"]:disabled:hover,
.site-container input[type="submit"]:disabled,
.site-container input[type="submit"]:disabled:hover {
	background-color: #eee;
	border-width: 0;
	color: #777;
	cursor: not-allowed;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button {
	display: none;
}

/* Tables
--------------------------------------------- */

table {
	border-collapse: collapse;
	border-spacing: 0;
	margin-bottom: 0;
	width: 100%;
	word-break: break-all;
}

td,
th {
	line-height: 2;
	text-align: left;
	vertical-align: top;
}

th {
	font-weight: 600;
	padding: 0.5em;
}

td {
	font-size: 13px;
	font-weight: 500;
}

td:first-of-type {
	padding: 5px 0 0 7px;
}

td:last-of-type {
	padding: 5px 7px 0 0;
}

tr:first-of-type td {
	padding-top: 20px;
}

@media only screen and (min-width: 400px) {
	td {
		font-size: 16px;
		font-weight: 500;
	}
}

@media only screen and (min-width: 480px) {
	table {
		table-layout: auto;
		word-break: normal;
	}
}

@media only screen and (min-width: 769px) {
	td:first-of-type {
		padding: 0 0 0 30px;
	}

	td:last-of-type {
		padding: 0 30px 0 0;
	}

	tr:first-of-type td {
		padding-top: 30px;
	}
}

@media only screen and (min-width: 960px) {
	td:first-of-type {
		padding: 0 0 0 20px;
	}

	td:last-of-type {
		padding: 0 20px 0 0;
	}

	tr:first-of-type td {
		padding-top: 20px;
	}
}

/* Screen Reader Text
--------------------------------------------- */

.screen-reader-shortcut,
.screen-reader-text,
.screen-reader-text span {
	border: 0;
	clip: rect(0, 0, 0, 0);
	height: 1px;
	overflow: hidden;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}

.screen-reader-text:focus,
.screen-reader-shortcut:focus,
.widget_search input[type="submit"]:focus {
	background: #fff;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: #333;
	display: block;
	font-size: 1em;
	font-weight: 700;
	height: auto;
	padding: 15px 23px 14px;
	text-decoration: none;
	width: auto;
	z-index: 100000; /* Above WP toolbar. */
}

.more-link {
	display: inline-block;
	position: relative;
	margin-bottom: 30px;
}


/* Structure and Layout
---------------------------------------------------------------------------- */

/* Site Container
--------------------------------------------- */

.site-container {
	animation: fadein 1s;
	word-wrap: break-word;
}

@keyframes fadein {

	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}

}

/* Site Inner
--------------------------------------------- */

.home .site-inner {
	clear: both;
	margin: 0 auto;
	padding: 60px 30px 0;
}


/* Common Classes
---------------------------------------------------------------------------- */

/* Genesis
--------------------------------------------- */

.after-entry,
.archive-description,
.author-box {
	margin-bottom: 40px;
}

.after-entry {
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
	padding: 20px 30px;
}

.after-entry .widget:last-of-type {
	margin-bottom: 0;
}

.breadcrumb {
	border-bottom: 1px solid #eee;
	font-size: 16px;
	margin-bottom: 40px;
	padding-bottom: 10px;
}

.genesis-title-hidden .breadcrumb {
	margin-top: 40px;
}

.archive-description p:last-child,
.author-box p:last-child {
	margin-bottom: 0;
}

@media only screen and (min-width: 960px) {
	.after-entry {
			padding: 40px 60px;
		}
}

/* Search Form
--------------------------------------------- */

.search-form {
	overflow: hidden;
}

.entry-content .search-form {
	margin-bottom: 40px;
	width: 50%;
}

.post-password-form input[type="submit"],
.search-form input[type="submit"] {
	margin-top: 10px;
}

.widget_search input[type="submit"] {
	border: 0;
	clip: rect(0, 0, 0, 0);
	height: 1px;
	margin: -1px;
	padding: 0;
	position: absolute;
	width: 1px;
}

/* Titles
--------------------------------------------- */

.archive-description .entry-title,
.archive-title,
.author-box-title {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 10px;
}

.entry-title {
	font-size: 30px;
	margin-bottom: 10px;
}

.entry-title a,
.sidebar .widget-title a {
	color: #333;
	text-decoration: none;
}

.entry-title a:focus,
.entry-title a:hover {
	color: #0073e5;
}

.widget-title {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 20px;
}

.genesis-title-hidden .site-inner {
	padding-top: 0;
}

/* WordPress
--------------------------------------------- */

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

a.alignnone {
	display: inline-block;
}

.alignleft {
	float: left;
	text-align: left;
}

.alignright {
	float: right;
	text-align: right;
}

a.alignleft,
a.alignnone,
a.alignright {
	max-width: 100%;
}

img.centered,
.aligncenter,
.singular-image {
	display: block;
	margin: 0 auto 30px;
}

img.alignnone,
.alignnone {
	margin-bottom: 15px;
}

a.alignleft,
img.alignleft,
.wp-caption.alignleft {
	margin: 0 20px 20px 0;
}

a.alignright,
img.alignright,
.wp-caption.alignright {
	margin: 0 0 20px 20px;
}

figcaption,
.gallery-caption,
.wp-caption-text {
	font-size: 14px;
	font-weight: 600;
	margin-top: 0.5em;
	margin-bottom: 1em;
	padding-left: 10px;
	padding-right: 10px;
	text-align: center;
}

.entry-content p.wp-caption-text {
	margin-bottom: 0;
}

.entry-content .wp-audio-shortcode,
.entry-content .wp-playlist,
.entry-content .wp-video {
	margin: 0 0 30px;
}

@media only screen and (max-width: 350px ) {
	.alignleft.size-large.is-resized, .alignright.size-large.is-resized {
		float: none;
		margin: 0 auto !important;
	}
	
	.wp-block-image img {
		width: 100%;
	}	
}

.wp-block-image.botmargin .alignleft img {
  margin-bottom: 30px;
}

/* Widgets
---------------------------------------------------------------------------- */

.widget p:last-child,
.widget ul > li:last-of-type {
	margin-bottom: 0;
}

.widget ul > li {
	margin-bottom: 10px;
}

.widget ul > li:last-of-type {
	padding-bottom: 0;
}

.widget ol > li {
	list-style-position: inside;
	list-style-type: decimal;
	padding-left: 20px;
	text-indent: -20px;
}

.widget li li {
	border: 0;
	margin: 0 0 0 30px;
	padding: 0;
}

.widget_calendar table {
	width: 100%;
}

.widget_calendar td,
.widget_calendar th {
	text-align: center;
}

/* Featured Content
--------------------------------------------- */

.featured-content .entry {
	border-bottom: 1px solid #eee;
	margin-bottom: 20px;
}

.featured-content .entry:last-of-type {
	border-bottom: none;
	margin-bottom: 0;
}

.featured-content .entry-title {
	font-size: 16px;
	margin-bottom: 5px;
	margin-top: 10px;
}


/* Plugins
---------------------------------------------------------------------------- */

/* Genesis eNews Extended
--------------------------------------------- */

.after-entry .enews {
	text-align: center;
	padding: 10px;
}

.sidebar .enews {
	background-color: #f5f5f5;
	padding: 30px;
}

.enews-widget input {
	font-size: 16px;
	margin-bottom: 10px;
}

.after-entry .enews-widget input {
	text-align: center;
}

.enews-widget input[type="submit"] {
	margin: 0;
	width: 100%;
}

.enews form + p {
	margin-top: 20px;
}

/* Skip Links
---------------------------------------------------------------------------- */

.genesis-skip-link {
	margin: 0;
}

.genesis-skip-link .skip-link-hidden {
	display: none;
	visibility: hidden;
}

.genesis-skip-link li {
	height: 0;
	list-style: none;
	width: 0;
}

/* Display outline on focus */
:focus {
	color: #333;
	outline: #ccc solid 1px;
}


/* Site Header
---------------------------------------------------------------------------- */

.site-header {
	background-color: #fff;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
	padding: 0 5%;
}

@media only screen and (min-width: 960px) {	
	.site-header {
		position: -webkit-sticky;
		position: sticky;
		top: 0;
		z-index: 9999;
		padding: 0 2.5%;
	}

	.admin-bar .site-header {
		top: 32px;
	}
}

@media only screen and (min-width: 1250px) {	
	.site-header {
		padding: 0 5%;
	}
}

.manhasset-color-line, .manhasset-color-line1 {
	height: 5px;
	width: 90%;
	margin: 10px auto;
	background: -webkit-gradient(linear,
      left top, right top,
      color-stop(48%, #0038bc), color-stop(48%, transparent), color-stop(52%, #fd7e00) );
	background: -o-linear-gradient(left,
      #0038bc 48%, transparent 48% 52%, #fd7e00 52% );
	background: linear-gradient(to right,
      #0038bc 48%, transparent 48% 52%, #fd7e00 52% );
}

.manhasset-color-line1 {
	margin:40px auto;
}

@media only screen and (min-width: 768px ){
	.manhasset-color-line  {
		width: 75%;
	}
	
	.manhasset-color-line1 {
		width: 75%;
		
	}
}

@media only screen and (min-width: 960px ){
	.manhasset-color-line {
		width: 35%;
	}
	
	.manhasset-color-line1 {
		width: 70%;
		margin: 60px auto;
	}
}


/* CTA Utility (Mobile)
--------------------------------------------- */
.utility-bar-mobile {
	padding: 0 17.5px;
}

.CTA-utility {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: space-evenly;
	    -ms-flex-pack: space-evenly;
	        justify-content: space-evenly;
	height: 70px;
	-ms-flex-line-pack: center;
	    align-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	}

.CTA-utility a {
	text-decoration: none;
}

.register-mobile, .donate-mobile {
	padding: 10px;
	border-radius: 5px;
	text-transform: uppercase;
	font-size: 16px;
	color: #fff;
	font-weight: 700;
	padding: 9px 22px;		
}

.register-mobile {
	background-color: #f3cc57;
}

.donate-mobile {
	background-color: #035b0b;
}

.CTA-utility {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

@media only screen and (min-width: 768px){
	.CTA-utility {
		-webkit-box-pack: end;
		    -ms-flex-pack: end;
		        justify-content: flex-end;
		padding: 0 5%;
	}
	
	.CTA-utility a:last-of-type {
		margin-left: 40px;
	}
	
	
}

@media only screen and (min-width: 1100px){
	.utility-bar {
		display: none;
	}
	
	.CTA-utility {
		-webkit-box-pack: space-evenly;
		    -ms-flex-pack: space-evenly;
		        justify-content: space-evenly;
	}
	
	.CTA-utility a:last-of-type {
		margin-left: 0;
	}
}

/* Title Area
--------------------------------------------- */

.title-area {
	float: left;
	padding: 20px 0 20px 85px;
}

.title-area.scroll-down {
	padding: 20px 0 25px 90px;
}

.crest-logo {
	background: url(https://www.farrellboygolf.org/wp-content/uploads/2022/10/FB-Golf-Ball.png) no-repeat center center/cover;
    width: 75px;
    height: 74px;
    margin-top: 10px;
	position: absolute;	
}

.crest-logo.scroll-down {
	width: 70px;
	height: 69px;
}

.wp-custom-logo .title-area {
	max-width: 350px;
	padding-bottom: 5px;
	padding-top: 5px;
	width: 100%;
}

.wp-custom-logo .custom-logo-link {
	display: block;
}

.wp-custom-logo .title-area img {
	width: auto;
}

.site-title {
	font-size: 21px;
	font-weight: 500;
	line-height: 1;
	margin-bottom: 0;
	text-transform: uppercase;
	font-family: 'Gelasio', serif;
	width: 164px;
}

.dashicons, .dashicons-before::before {
	width: 30px !important;
	height: 30px !important;
	font-size: 30px !important;
}

.site-title a,
.site-title a:focus,
.site-title a:hover {
	color: #333;
	text-decoration: none;
	border-bottom: none;
	letter-spacing: 1px;
}



.site-description,
.wp-custom-logo .site-title {
	border: 0;
	clip: rect(0, 0, 0, 0);
	height: 1px;
	overflow: hidden;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}

@media only screen and (min-width: 400px) {
	.dashicons, .dashicons-before::before {
		width: 45px !important;
		height: 45px !important;
		font-size: 45px !important;
	}
	
	.site-title {
		width: 175px;
	}
}

@media only screen and (min-width:768px) {
	.site-title {
		width: inherit;
		padding-top: 20px;
		font-size: 23px;
	}
}

@media only screen and (min-width: 1100px) {
	.site-header .wrap {
  		display: inline;
	}
	
	.site-title {
		font-size: 21px;
		padding-top: 0;
	}
	
	.crest-logo {
		width: 125px;
    	height: 124px;
		margin-top: 5px;
	}
	
	.title-area {
		float: left;
		padding: 35px 0 20px 130px;
	}

	.crest-logo.scroll-down {
		margin-top: 2px;
	}
	
	.title-area.scroll-down {
		padding: 25px 0 25px 90px;
	}
	
	.site-title a,
.site-title a:focus,
.site-title a:hover {
	letter-spacing: 0;
}
	
	
}

@media only screen and (min-width: 1400px) {
	.site-title {
		font-size: 24px;
	}
}

/* Site Navigation
---------------------------------------------------------------------------- */

.genesis-nav-menu {
	clear: both;
	line-height: 1;
	width: 100%;
}

.genesis-nav-menu .menu-item {
	display: block;
	float: none;
	position: relative;
}

.genesis-nav-menu a {
	color: #022e03;
	display: block;
	font-size: 18px;
	font-weight: 500;
	outline-offset: -1px;
	padding-bottom: 12px;
	padding-top: 12px;
	text-decoration: none;
	text-transform: uppercase;
}

.genesis-nav-menu .sub-menu,
.genesis-nav-menu .sub-menu a {
	width: 100%;
}

.genesis-nav-menu .sub-menu {
	clear: both;
	display: none;
	left: -9999px;
	margin: 0;
	opacity: 1;
	padding-left: 15px;
	position: static;
	z-index: 99;
}

.genesis-nav-menu .sub-menu a {
	background-color: #fff;
	font-size: 14px;
	position: relative;
	word-wrap: break-word;
}

	.genesis-nav-menu .menu-item:focus,
	.genesis-nav-menu .menu-item:hover {
		border-bottom: 4px solid #f3cc57;
		width: -webkit-fit-content;
		width: -moz-fit-content;
		width: fit-content;
	}

@media only screen and (min-width: 1100px) {
	.genesis-nav-menu .menu-item:focus,
	.genesis-nav-menu .menu-item:hover, .genesis-nav-menu .menu-item:focus,
	.genesis-nav-menu .menu-item:hover {
		position: relative;
		-webkit-transform: translateY(-4px)scale(1.02);
	  	  -ms-transform: translateY(-4px)scale(1.02);
	    	    transform: translateY(-4px)scale(1.02);
		border-bottom: none;
	}
	
	.genesis-nav-menu a:focus, .genesis-nav-menu a:hover {
		border-bottom: none;
	}
}

.genesis-nav-menu .menu-item:hover > .sub-menu {
	display: block;
	left: auto;
	opacity: 1;
}

/* Responsive Menu
--------------------------------------------- */

.menu .menu-item:focus {
	position: static;
}

.menu .menu-item > a:focus + ul.sub-menu,
.menu .menu-item.sfHover > ul.sub-menu {
	left: auto;
	opacity: 1;
}

.js .nav-primary {
	display: none;
	position: relative;
}

.genesis-responsive-menu .genesis-nav-menu .menu-item:hover > .sub-menu {
	display: none;
}

.menu-toggle,
.sub-menu-toggle {
	background-color: transparent;
	border-width: 0;
	color: #333;
	display: block;
	margin: 0 auto;
	overflow: hidden;
	text-align: center;
	visibility: visible;
}

.menu-toggle:focus,
.menu-toggle:hover,
.sub-menu-toggle:focus,
.sub-menu-toggle:hover {
	background-color: transparent;
	border-width: 0;
	color: #035b0b;
}

.menu-toggle {
	float: right;
	line-height: 20px;
	margin-bottom: 10px;
	margin-top: 10px;
	padding: 15px 0;
	position: relative;
	z-index: 1000;
}

.menu-toggle.activated::before {
	content: "\f335";
}

.site-header .dashicons-before::before {
	transition: none;
}

.site-header .menu-toggle::before {
	float: left;
	margin-right: 5px;
	position: relative;
	text-rendering: auto;
	top: 1px;
}

.sub-menu-toggle {
	float: right;
	padding: 9px 10px;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 100;
}

.sub-menu .sub-menu-toggle {
	padding: 12px 10px;
}

.sub-menu-toggle::before {
	display: inline-block;
	text-rendering: auto;
	transform: rotate(0);
	transition: transform 0.25s ease-in-out;
}

.sub-menu-toggle.activated::before {
	transform: rotate(180deg);
}

/* Header Menu
--------------------------------------------- */

.nav-primary {
	clear: left;
	padding-bottom: 15px;
	padding-top: 15px;
	width: 100%;
}

/* Footer Menu
--------------------------------------------- */

.nav-secondary {
	margin-top: 10px;
}

.nav-secondary .genesis-nav-menu {
	line-height: 1.5;
}

.nav-secondary .menu-item {
	display: inline-block;
}

.nav-secondary a {
	margin-left: 10px;
	margin-right: 10px;
	padding: 0;
}

@media only screen and (min-width: 1100px) {

	/* Genesis Menu
	--------------------------------------------- */
	
	.genesis-nav-menu a {
		font-size: 14px;
	}
	
	.genesis-nav-menu .menu-item {
		display: inline-block;
	}

	.genesis-nav-menu .menu-item:focus,
	.genesis-nav-menu .menu-item:hover {
		position: relative;
	}

	.genesis-nav-menu > .menu-bold > a {
		font-weight: 700;
	}

	.genesis-nav-menu > .menu-highlight > a {
		background-color: #333;
		border-radius: 3px;
		color: #fff;
		font-weight: 600;
		margin-left: 15px;
		padding-left: 20px;
		padding-right: 20px;
	}

	.genesis-nav-menu > .menu-highlight > a:focus,
	.genesis-nav-menu > .menu-highlight > a:hover {
		
	}

	.genesis-nav-menu .sub-menu,
	.genesis-nav-menu .sub-menu a {
		width: 180px;
	}

	.genesis-nav-menu .sub-menu {
		border-top: 1px solid #eee;
		opacity: 0;
		padding-left: 0;
		position: absolute;
		transition: opacity 0.4s ease-in-out;
	}

	.genesis-nav-menu .sub-menu a {
		border: 1px solid #eee;
		border-top: 0;
		padding-bottom: 15px;
		padding-top: 15px;
	}

	.genesis-nav-menu .sub-menu .sub-menu {
		margin: -46px 0 0 179px;
	}

	/* Responsive Menu
	--------------------------------------------- */

	.js .nav-primary {
		display: block;
		padding-top: 26px;
	}
	
	.js .nav-primary.scroll-down {
		padding-top: 18px;
	}

	.menu-toggle,
	.sub-menu-toggle {
		display: none;
		visibility: hidden;
	}

	/* Header Menu
	--------------------------------------------- */

	.nav-primary {
		clear: none;
		float: right;
		width: auto;
	}

	.nav-primary .genesis-nav-menu a {
		padding-left: 12px;
		padding-right: 12px;
	}
	
	.yellow-cta.menu-item {
		background-color: #f3cc57;
		margin-right: 15px;
		text-shadow: 1px 1px #ccc;
	}
	
	.green-cta {
		background-color: #035b0b;
	}
	
	.yellow-cta, .green-cta {
		border-radius: 7px;	
	}
	
	.genesis-nav-menu .yellow-cta a, .genesis-nav-menu .green-cta a {
		color: #fff;
		text-transform: uppercase;
		letter-spacing: 1px;
		font-weight: 900;
		font-size: 13px;
		padding: 10px 12px;
	}		
}

@media only screen and (min-width: 1250px) {
	.genesis-nav-menu .yellow-cta a, .genesis-nav-menu .green-cta a {
		font-size: 14px;
	}		
}


.blink {
        animation: blink-animation 2s steps(5, start) 2;
        -webkit-animation: blink-animation 2s steps(5, start) 2;
}
      @keyframes blink-animation {
        to {
          visibility: hidden;
        }
      }
      @-webkit-keyframes blink-animation {
        to {
          visibility: hidden;
        }
      }

@media only screen and (min-width: 1450px) {
	.nav-primary .genesis-nav-menu a {
		padding-left: 20px;
		padding-right: 20px;
	}
	
	.yellow-cta.menu-item {
	    margin-right: 25px;
	}
	
	.genesis-nav-menu a {
		font-size: 15px;
	}	
}

/* Content Area
---------------------------------------------------------------------------- */

/* Entry Content
--------------------------------------------- */

.entry-content ol,
.entry-content ul {
	margin-bottom: 30px;
	padding-left: 40px;
}

.entry-content ol > li {
	list-style-type: decimal;
}

.entry-content ul > li {
	list-style-type: disc;
}

.entry-content ol ul > li,
.entry-content ul ul > li {
	list-style-type: circle;
}

.entry-content ol ol,
.entry-content ul ul {
	margin-bottom: 0;
}

.entry-content code {
	background-color: #f5f5f5;
}

.content .sticky {
	background-color: #f5f5f5;
	padding: 30px;
}

.content {
	padding: 0 17.5px;
}

@media only screen and (min-width: 768px) {
	.content {
		padding: 0 35px;
	}	
}

@media only screen and (min-width: 960px) {
	.content {
		float: left;
		width: 65%;
	}

	.sidebar-content .content {
		float: right;
	}

	.full-width-content .content {
		float: none;
		margin-left: auto;
		margin-right: auto;
	}
}

/* Entry Meta
--------------------------------------------- */

p.entry-meta {
	font-size: 16px;
	margin-bottom: 0;
}

.entry-header .entry-meta {
	margin-bottom: 20px;
}

.entry-footer .entry-meta {
	border-top: 1px solid #eee;
	padding-top: 20px;
}

.entry-categories,
.entry-tags {
	display: block;
}

/* Pagination
--------------------------------------------- */

.pagination {
	clear: both;
	margin: 60px 0;
}

.adjacent-entry-pagination {
	margin-bottom: 0;
}

.archive-pagination li {
	display: inline;
}

.archive-pagination li a {
	background-color: #f5f5f5;
	color: #333;
	cursor: pointer;
	display: inline-block;
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 4px;
	padding: 8px 12px;
	text-decoration: none;
}

.archive-pagination li a:focus,
.archive-pagination li a:hover,
.archive-pagination li.active a {
	background-color: #333;
	color: #fff;
}

/* Sidebar
---------------------------------------------------------------------------- */

.sidebar {
	font-size: 16px;
	line-height: 1.5;
}

.sidebar .widget {
	margin-bottom: 40px;
}

.sidebar p {
	margin-bottom: 20px;
}

/* Carousel Slider
---------------------------------------------------------------------------- */
.bx-wrapper {
  width: 100% !important;
  max-width: 100% !important;
}

/* Footer Widgets
---------------------------------------------------------------------------- */

#genesis-footer-widgets {
	position: relative;
}

.footer-widgets {
	background-color: #024405;
	clear: both;
	padding: 70px 0;
}

.footer-widget-area {
	color: #fff;
	font-size: 20px;
	font-weight: 700;
}

.footer-widget-area:last-child,
.footer-widgets .widget:last-child {
	margin-bottom: 0;
}

.footer-widgets .wrap {
	padding: 0 17.5px;
}

.widget-area.footer-widgets-2.footer-widget-area, .widget-area.footer-widgets-3.footer-widget-area {
  	margin-top: 40px;
}

.footer-widgets-1 .textwidget a {
	color: #fff;
}

.simple-social-icons .widget-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #f3cc57;
}
#simple-social-icons-2 ul li {
  margin: 0 0 12px !important;
}
#simple-social-icons-2 ul li a {
  padding: 0 !important;
    font-size: 40px !important;
}
.footer-widgets-4 img {
        width: 90%;
    }
.widget-area.footer-widgets-4.footer-widget-area {
    text-align: center; 
}

@media only screen and (min-width: 480px) {
    .footer-widgets-4 img {
        width: 50%;
    }
}

@media only screen and (min-width: 767px) {
	.footer-widgets .wrap {
		padding: 0 35px;
	}
	
	.footer-widget-area {
		font-size: 18px;
	}
	
	.footer-widgets-4 img {
		width: 37%;
	}
}


@media only screen and (min-width: 960px) {

    .footer-widgets {
        padding: 40px 0;
        
    }

	.footer-widgets .wrap {
		padding: 0 2.5%;
		margin: 0 auto;
	}

	.footer-widget-area {
		float: left;
		margin-bottom: 0;
	}
	
	.footer-widgets-1, .footer-widgets-4 {
        width: 25%;
    }
    
    .footer-widgets-2 {
        width: 20%;
    }
	
	.footer-widgets-3 {
        width: 30%;
    }
    
	.footer-widgets-4 img {
		width: 37%;
	}
	
	.widget-area.footer-widgets-2.footer-widget-area, .widget-area.footer-widgets-3.footer-widget-area {
  		margin-top: 0;
	}
	
	.footer-widget-area {
		font-size: 16px;
	}
	    .widget-area.footer-widgets-4.footer-widget-area {
        position: absolute;
        left: 75%;
        top: 16%;
    }
    
    .footer-widgets-4 img {
        width: 60%;
    }
    
    #simple-social-icons-2 ul li a {
        font-size: 32px !important;
    }
    
    .widget-area.footer-widgets-4.footer-widget-area {
        text-align: left; 
    }
}

@media only screen and (min-width: 1250px) {
	.footer-widgets .wrap {
		padding: 0 5%;
	}
	.footer-widgets-4 img {
        width: 50%;
    }
	
}

@media only screen and (min-width: 1600px) {
	.footer-widgets .wrap {
		padding: 0 10%;
	}
	
	 .widget-area.footer-widgets-4.footer-widget-area {
        top: 16%;
    }
}


/* Site Footer
---------------------------------------------------------------------------- */
.site-footer {
	background-color: #fff;
	border-top: 1px solid #eee;
	font-size: 15px;
	line-height: 1.5;
	padding: 15px;
	text-align: center;
}

.site-footer p {
	margin-bottom: 0;
}

.site-footer a {
	font-weight: 700;
	text-decoration: none;
}

/* Gravity Forms
---------------------------------------------------------------------------- */
.gform_wrapper {
	background-color: #fff !important;
	padding: 30px 5px;
}

.gform_wrapper.gravity-theme select {
	padding: 10px !important;
}

.gsection_title {
	margin-bottom: 5px;
	text-transform: uppercase;
	font-size: 24px;
	color: #035b06;
	background-color: #035b06;
	color: #fff;
	height: 60px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-line-pack: center;
	    align-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	padding: 0 0 0 10px;
	letter-spacing: .5px;
}

.gform_title {
	margin-bottom: 35px;
}

.gform_wrapper.gravity-theme .gsection {
  	border-bottom: none !important;
	padding: 0 0 8px 0 !important;
	margin-top: 20px !important;
}

h2.gform_title {
	font-size: 32px;
}

.gform_button.button {
  	margin: 30px 0 40px;
	text-transform: uppercase !important;
	letter-spacing: 1px !important;
	border-radius: 7px !important;
	padding: 15px 24px !important;
}

.gform_wrapper.gravity-theme .gform_footer, .gform_wrapper.gravity-theme .gform_page_footer {
  	margin: 0 !important;
	padding: 0 !important;
}


@media only screen and (max-width: 959px) {
	.gform_wrapper.gravity-theme .gfield input.small, .gform_wrapper.gravity-theme .gfield select.small {
  		width: 100% !important;
	}
}

@media only screen and (min-width: 769px) and (max-width: 959px) {
	.gform_wrapper {
		border:1px solid #022e03;
		border-radius: 5px;
		padding: 15px;
	}
}

@media only screen and (min-width: 960px) {
	.gform_wrapper {
		padding: 70px 50px !important;
	}
	
	.gsection_title {
		height: 50px;
		font-size: 26px;
	}
	
	.gsection_title {
		padding: 0 0 0 20px;
	}
	
	.gform_wrapper.gravity-theme select {
		padding: 10px 20px !important;
	}
}
 
/* Registration Form
---------------------------------------------------------------------------- */

.gform_wrapper.gravity-theme .gfield_label {
	font-size:24px !important;
	margin-bottom: 0;
}

.gform_wrapper.gravity-theme .preference .gfield_label {
	font-size: 22px !important;
}

.gform_wrapper.gravity-theme input[type="text"], .gform_wrapper.gravity-theme input[type="email"], .gform_wrapper.gravity-theme .ginput_product_price {
		font-size: 18px !important;
}

.gform_wrapper .gfield_required {
  	font-size: 16.008px !important;
  	font-weight: 700 !important;
}

.ginput_container.ginput_container_consent {
  margin-bottom: 15px;
}

.gform_wrapper.gravity-theme .ginput_product_price_wrapper {
  	display: -webkit-box !important;
  	display: -ms-flexbox !important;
  	display: flex !important;
	-webkit-box-align: center !important;
	    -ms-flex-align: center !important;
	        align-items: center !important;	
}

.hr-section .gsection_title {
	border-bottom: 2px solid #022e03;
	height:1px;
	margin: 10px 0;
	padding: 0;
	background-color: #022e03;
}

.gform_wrapper.gravity-theme .gfield.gfield--width-third .gfield_label {
  	font-size: 16px !important;
}

.gform_wrapper.gravity-theme .gfield.gfield--width-third .gfield_label {
  	font-size: 16px !important;
}

.gform_wrapper.gravity-theme .gfield.gfield--width-full.recognition .gfield_label {
  	font-size: 16px !important;
}

.gform_wrapper.gravity-theme .gfield_checkbox label, .gform_wrapper.gravity-theme .gfield_radio label {
  display: inline-block;
  font-size: 16px;
}

.ginput_product_price {
  	margin-left: 10px;
}

.gpi-available-inventory-message {
  	color: green;
  	font-size: 19px;
	font-weight: 900;
}

.sold-out-message {
	font-weight: 900;
	color: red;
	font-size: 18px;
}

.supp-donation {
	margin: 20px 0 !important;
}

.subtotal-input input {
  	border: none;
  	font-size: 21px !important;
  	color: red;
  	padding: 0 !important;
}

.payment-choice .gchoice {
	margin-bottom: 20px;
}

.gfield.payment-choice label {
  	font-size: 18px !important;
}

.register.button {
	text-transform: uppercase;
	letter-spacing: 1px;
	border-radius: 7px;
	padding: 15px 24px;
	margin: 20px 0 50px;
}

.gfield.total-bold .ginput_total {
	font-size: 21px !important;
}

.gform_wrapper.gravity-theme .total-bold .ginput_product_price {
	font-size: 20px !important;
}

.gform_wrapper.gravity-theme .gfield.total-bold input[type="text"] {
	font-size: 21px !important;
	border: none;
}

.preference {
	margin-top: 20px !important;
}

@media only screen and (min-width: 960px) {
	.gform_wrapper.gravity-theme .gfield_label {
		font-size:22px !important;
		margin-bottom: 0;
	}
	
	.gform_wrapper.gravity-theme .preference .gfield_label {
		font-size: 20px !important;
	}
	
	.gform_wrapper.gravity-theme .ginput_product_price_label {
		font-size:18px !important;
	}
}

.gform_wrapper.gravity-theme fieldset {
  margin: 0 0 20px !important;
}

.gform_wrapper.gravity-theme .gfield {
  margin: 0 0 20px !important;
}

.gform_wrapper.gravity-theme .gsection {
  margin: 0 !important;
}


/* GOLF REGISTRATION IS CLOSED  - only use important on display none, not inline-block */

.golf-avail {
	display: none !important; 
}


/* DINNER REGISTRATION IS CLOSED */

.dinner-avail {
	display: inline-block !important;
}

/* SPONSORSHIPS ARE CLOSED */

.sponsor-avail {
    display: inline-block;
}

#field_13_4 {
	display: inline-block !important;
}

/* MOBILE REGISTRATION BAR - WHEN LIVE, USE INLINE ONLY, NOT INLINE-BLOCK */

.utility-bar-mobile {
	display: inline;
	padding:0;
}

/* Correcting weird description adding on the 2024 Registration Form - must be addressed each year. This is for the Golf Shirt Sponsor, Gold Cocktail Sponsor, and Silver Brunch Sponsor */

#gfield_description_13_283, #gfield_description_13_282, #gfield_description_13_284 {
  display: none !important;
}


/* Contact Us
---------------------------------------------------------------------------- */
#gform_wrapper_2 {
		padding: 0;
		margin-bottom: 40px;
	background-color: #f6f7f8 !important;
	border: none !important;
	}

@media only screen and (min-width: 768px) {
	#gform_wrapper_2 {
		padding: 30px;
		margin-bottom: 40px;
	}
}

@media only screen and (min-width: 1400px) {
	#gform_wrapper_2 {
		padding: 40px 50px;
		width:80%;
	}
}

#gform_submit_button_2 {
  margin: 20px 0 40px;
	text-transform: uppercase !important;
	letter-spacing: 1px !important;
	border-radius: 7px !important;
	padding: 15px 24px !important;
}

#gform_submit_button_2:focus, #gform_submit_button_2:hover, #gform_submit_button_2:active {
    background-color: #eccd6b !important;
}

#gform_wrapper_2 .gfield_label {
  font-size: 18px;
}

a.gfield_consent_label {
  font-size: 16px;
}

.ginput_container.ginput_container_number {
  margin-bottom: 20px;
}

/* Custom Donate Button for DonorBox PopUp
---------------------------------------------------------------------------- */
.donate {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;	
}

.donate-button {
	border-radius: 5px;
	background: #f3cc57;
	font-weight: 700;
	color: #fff;
	font-size: 18px;
	box-shadow: 0 0 0 2px rgba(120,120,120,0.1) !important;
	padding: 12px 16px;
	text-transform: uppercase;
}

.donate-button:hover, .donate-button:focus {
	  -webkit-box-shadow: 0 4px 10px -2px #0003;
	          box-shadow: 0 4px 10px -2px #0003;
-webkit-transform: translateY(-4px) scale(1.05);
    -ms-transform: translateY(-4px) scale(1.05);
        transform: translateY(-4px) scale(1.05);
	border-bottom: none;
	color: #fff;
}

a.dbutton {
	color: #fff;
}

/* 404 Error
---------------------------------------------------------------------------- */
body.error404 .site-inner {
  padding: 70px 17.5px;
}

body.error404 .content {
	width: 100%;
}

@media only screen and (min-width:768px){
	body.error404 .site-inner {
  		padding: 70px 35px;
	}
}

@media only screen and (min-width:960px){
	body.error404 .site-inner {
  		padding: 70px 2.5%;
	}
}

@media only screen and (min-width:1250px){
	body.error404 .site-inner {
  		padding: 70px 10%;
	}
}

@media only screen and (min-width:1600px){
	body.error404 .site-inner {
  		padding: 70px 20%;
	}
}

@media only screen and (min-width:1900px){
	body.error404 .site-inner {
  		padding: 70px 20%;
	}
}


/* Back to Top Button
---------------------------------------------------------------------------- */
/* To Top Button
--------------------------------------------------------------
 */

.footer-widgets .back-to-top {
	position: absolute;
	right: 5vw;
	bottom: 40px;
	bottom: 4rem;
	width: 30px;
	width: 3rem;
	height: 30px;
	height: 3rem;
	border-radius: 4px;
	background-color: rgba(255, 255, 255, 0.1);
	text-align: center;
}

.footer-widgets .back-to-top:hover {
	background-color: rgba(255, 255, 255, 0.2);
}

.footer-widgets .back-to-top:before,
.footer-widgets .back-to-top:after {
	display: block;
	position: absolute;
	top: 13px;
	top: 1.3rem;
	left: 9px;
	left: 0.9rem;
	width: 8px;
	height: 2px;
	background-color: #fff;
	content: '';
	-webkit-transform: rotate(-45deg);
	    -ms-transform: rotate(-45deg);
	        transform: rotate(-45deg);
}

.footer-widgets .back-to-top:after {
	left: 13px;
	left: 1.3rem;
	-webkit-transform: rotate(45deg);
	    -ms-transform: rotate(45deg);
	        transform: rotate(45deg);
} 


@media only screen and (min-width: 960px) {
.footer-widgets .back-to-top {
	bottom: 90px;
	bottom: 9rem;
	}
}

.dashicons.dashicons-heart {
  	color: red;
	font-size: 18px !important;
	width: 18px !important;
	height: 18px !important;
	padding-top: 3px;
}

/* hide the Register Now button on the private golf registration page */

body.page-id-798 #menu-item-809 {
  display: none;
}

body.page-id-798 .register-mobile {
	display: none;
}


@media only screen and (max-width: 767px){
body.page-id-798 .CTA-utility {
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	}
}

/* WHEN ACTIVATING, USE INLINE INSTEAD OF INLINE-BLOCK */

.utility-bar-mobile {
	display: inline;
}

/* Event Details Home Page
---------------------------------------------------------------------------- */

.stk-block-columns .wp-block-table td {
	border: 0;
	border-bottom: 1px solid;
}

.wp-block-table table tr:last-of-type td {
	border-bottom: none;
}

.stk-container .wp-block-table table tr td:first-of-type {
	line-height: 1.2;
}  


/* Print Styles
---------------------------------------------------------------------------- */

@media print {

	*,
	*::before,
	*::after {
		background: transparent !important;
		box-shadow: none !important;
		color: #333 !important;
		text-shadow: none !important;
	}

	a,
	a:visited {
		text-decoration: underline;
	}

	a[href]::after {
		content: " (" attr(href) ")";
	}

	abbr[title]::after {
		content: " (" attr(title) ")";
	}

	a[href^="javascript:"]::after,
	a[href^="#"]::after,
	.site-title > a::after {
		content: "";
	}

	thead {
		display: table-header-group;
	}

	img,
	tr {
		page-break-inside: avoid;
	}

	img {
		max-width: 100% !important;
	}

	@page {
		margin: 2cm 0.5cm;
	}

	p,
	h2,
	h3 {
		orphans: 3;
		widows: 3;
	}

	blockquote,
	pre {
		border: 1px solid #999;
		page-break-inside: avoid;
	}

	.content,
	.content-sidebar {
		width: 100%;
	}

	button,
	input,
	select,
	textarea,
	.breadcrumb,
	.comment-edit-link,
	.comment-form,
	.comment-list .reply a,
	.comment-reply-title,
	.edit-link,
	.entry-comments-link,
	.entry-footer,
	.genesis-box,
	.header-widget-area,
	.hidden-print,
	.home-top,
	.nav-primary,
	.nav-secondary,
	.post-edit-link,
	.sidebar {
		display: none !important;
	}

	.title-area {
		text-align: center;
		width: 100%;
	}

	.site-title > a {
		margin: 0;
		text-decoration: none;
		text-indent: 0;
	}

	.site-inner {
		padding-top: 0;
		position: relative;
	}

	.author-box {
		margin-bottom: 0;
	}

	h1,
	h2,
	h3,
	h4,
	h5,
	h6 {
		orphans: 3;
		page-break-after: avoid;
		page-break-inside: avoid;
		widows: 3;
	}


	img {
		page-break-after: avoid;
		page-break-inside: avoid;
	}

	blockquote,
	pre,
	table {
		page-break-inside: avoid;
	}

	dl,
	ol,
	ul {
		page-break-before: avoid;
	}

}

/* Thank you from Elene, Jim, and Stephen */

/* Soliloquy - Sept 27, 2022
---------------------------------------------------------------------------- */

.soliloquy-container .soliloquy-image {
  	width: 100% !important;
}

#soliloquy-container-898 .soliloquy-caption.soliloquy-caption-top {
  	width: 100% !important;
  	top: 15% !important;
}

#soliloquy-container-898 .soliloquy-caption .soliloquy-caption-inside {
	  	background: none !important;
		font-size: 30px !important;
		color: #000 !important;
		padding: 0 2% !important;
}

.home-view {
	padding-top: 150px !important;
}
	
.home-view h2 {
	color: #fff;
	font-size: 40px;
	font-weight: 900;
	margin-bottom: 40px;
}

@media only screen and (min-width: 960px) {
	#soliloquy-container-898 .soliloquy-caption .soliloquy-caption-inside {
		padding: 0 15% !important;
		font-size: 32px !important
	}
	
	#soliloquy-container-898 .soliloquy-caption.soliloquy-caption-top {
  		width: 100% !important;
  		top: 25% !important;
	}
	
	.home-view {
		padding-top: 150px !important;
	}
	
	.home-view h2 {
		color: #fff;
		font-size: 50px;
		font-weight: 900;
		margin-bottom: 40px;
	}
}

.grateful {
	text-align: left !important;
	line-height: 1.4 !important;
}

button.home-slider {
	border-radius: 5px;
	padding: 18px 40px;
	background: #f3cc57;
	cursor: pointer;
	text-align: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin: 0 auto;
}
	
button.home-slider:focus, button.home-slider:hover {
	-webkit-box-shadow: 0 4px 10px -2px #0003;
	box-shadow: 0 4px 10px -2px #0003;
	-webkit-transform: translateY(-4px)scale(1.05);
	-ms-transform: translateY(-4px)scale(1.05);
	transform: translateY(-4px)scale(1.05);
	border-bottom: none;
}
	
.home-slider a {
	color: #fff;
	font-size: 18px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 1px;		
}
	
.home-slider a:focus, .home-slider a:hover {
	border-bottom: none;
}


.ty-signatures {
  font-family: 'Licorice', cursive;
  font-size: 45px !important;
}


@media only screen and (min-width: 1200px) {
	.ty-signatures {
  		font-size: 60px !important;
	}
}

@media only screen and (min-width: 1500px) {
	.ty-signatures {
  		font-size: 65px !important;
	}
}

@media only screen and (min-width: 1800px) {
	.ty-signatures {
  		font-size: 70px !important;
	}
	
	#soliloquy-container-898 .soliloquy-caption .soliloquy-caption-inside {
		font-size: 36px !important
	}
}