/*
 Theme Name:	Winters Child Theme
 Author:		MSonder
 Template:		twentynineteen
 Version:		1.0
*/

* {
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;    /* Firefox, other Gecko */
	box-sizing: border-box;         /* Opera/IE 8+ */
}

html, body {  
	margin: 0px;
	
	border: 0px;
	padding: 0px;
	margin-top: 0px !important;
	
	text-align: left;

	-webkit-font-smoothing: antialiased; /* Fix for webkit rendering */
    -webkit-text-size-adjust: none;
	text-rendering: optimizelegibility;

	color: #000;
	font-family: "Cabin", sans-serif;
	font-size: 18px;
	line-height: 32px;

	background: #fff;
}

body:not(.custom-background-image).admin-bar::before {top: 0px;}
body:not(.custom-background-image)::before, body:not(.custom-background-image)::after {height: 0px;}

a {outline:none;}

ul, ol {padding-top: 0px; margin-top: 0px;}

:root {overflow-y: scroll !important;}
::-moz-selection {
    background: #393939;
	color: #6a6a6a;
    text-shadow: none;
}

::selection {
    background: #393939;
	color: #6a6a6a;
    text-shadow: none;
}

.right {float:right !important;}
.left {float:left !important;}
.clear {clear:both;}
img {border: none;}

.responsive {width: 90%;}

/*
body.admin-bar {padding-top: 32px;}
@media screen and (max-width: 782px) {
  body.admin-bar {padding-top: 46px;}
} */


/*	--------------------------------------------------
	:: Structure
	-------------------------------------------------- */

		#header-wrapper {
			width: 100%;
			height: auto;
			background: #f2ebd9 url(images/background.png) no-repeat scroll center center / cover;
			border-top: 10px solid #30270e;
			border-bottom: 4px solid #152e04;
		}
		#header {
			width: 90%; 
			height: auto;
			margin: 0 auto;
			display: flex;
		}

		.header_right {
			flex: 1;
			display: flex;
			flex-direction: column;
		}

		#logo {
			flex: 0 0 30%;
			display: flex;
			align-items: center;
			justify-content: center;
		}
		#logo img {width: 100%;}


		.header-top {
			display: flex;
			justify-content: flex-end;
			align-items: center;
			gap: 30px;
		}

			.phone {text-align: right; margin-top: 10px;}
			.phone a {
				color: #3b2b1b;
				font-size: 20px;
				font-weight: bold;
				text-decoration: none;
			}
			.phone i {color: #3e5c29; font-size: 16px;}

			.donate-btn {
				display: flex;
				justify-content: flex-end;
				align-items: center;
				padding: 11px 23px;
				background: url(images/donate-button.png) no-repeat right top;

			}
			.donate-btn a {
				color: #fff;
				text-decoration: none;
				font-family: "Libre Caslon Text", serif;
				font-size: 18px;
				text-shadow: 0 0 16px #000000;
				font-weight: bold;
				transition: all 0.25s ease-in-out;
			}
			.donate-btn a:hover {color:#f3ebd8;}

			.donate-btn a i {transition: all 0.25s ease-in-out;}
			.donate-btn a:hover i {color: #a23434; transform: scale(1.25);}



		.content-wrapper {
			width: 100%;
			height: auto;
			margin: 0px auto;
            overflow-x: hidden !important;
		}
		.content-wrapper a {color: #4b7033; text-decoration: underline; line-height: 20px;}
		.content-wrapper .has-link-color a {color: inherit;}
		.content-wrapper a:hover {color: #324f1e; text-decoration: none;}
				
		
		.wp-block-cover.alignfull {
			max-width: 100vw;
			width: auto;
			padding: 80px 0 60px 0;
            overflow-x: hidden !important;
		}
		.alignfull .wp-block-cover__inner-container {max-width: 1200px;}

        .wp-block-columns.is-layout-flex {gap: 2em !important;}

		.wp-block-cover.has-parallax,
        .wp-block-cover__image-background.has-parallax {background-attachment: fixed !important;}

        .cta {
            background: #ffffff;
            -webkit-box-shadow: 0 0 20px 0 rgba(0,0,0,.2);
            box-shadow: 0 0 20px 0 rgba(0,0,0,.2);
            padding: 25px;
			border-radius: 20px;
        }

/*	--------------------------------------------------
	:: Navigation (FULL CSS w/ DROPS)
	-------------------------------------------------- */
	

#nav-bg {
	flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
}

	button#menuToggle {display: none;}

	ul.menu {margin: 0; padding: 0px 0 0 0;}
	
	ul.menu li {list-style: none; position: relative; float: left;}
	
	ul.menu li:hover {cursor: default;}
	ul.menu li a {
		display: block;
		line-height: 40px;
		font-size: 16px;
		letter-spacing: 1px;
		font-family: "Cabin", sans-serif;
		font-weight: bold;
	  	text-align: center;
		padding: 0 10px;
		width: 100%;
		color: #000;
		text-transform: uppercase;
		position: relative;
		border-bottom: 3px solid transparent;
		text-decoration: none;
			-webkit-transition: all 0.25s ease-in-out;
			-moz-transition: all 0.25s ease-in-out;
			-o-transition: all 0.25s ease-in-out;
			transition: all 0.25s ease-in-out;
		}
		ul.menu li a::after {
			position: absolute;
			content: "";
			left: 0;
			bottom: 0;
			width: 100%;
			height: 3px;
			background: #3e5c29;
			transform: scaleX(0.7);
			opacity: 0.7;
			transition: all 0.25s ease-in-out;
		}

		ul.menu li a:hover::after,
		ul.menu li.current-menu-item a::after,
		ul.menu li a:focus::after {
			transform: scaleX(1);
			opacity: 1;
			background: #58803d;
		}

		ul.menu li a:hover,
		ul.menu li.current-menu-item a,
		ul.menu li a:focus {color: #3e5c29;}



		ul.menu li.menu-item-has-children a {
			position: relative;
			padding-right: 25px;
		}

		ul.menu li.menu-item-has-children a::before {
			content: '\f0d7';
			font-family: "Font Awesome 6 Pro";
			font-weight: 600;
			position: absolute;
			right: 8px;
			top: 50%;
			transform: translateY(-50%);
			color: #6d9849;
		}


	ul.menu li ul {
		position: absolute;
		left: -9999em;
		width: auto;
		margin: 0;
		padding: 0;
		list-style-type: none;
		white-space: nowrap;
	}

    ul.menu li:hover ul {
        left: 0;
        -webkit-box-shadow: -10px 0px 13px -7px #c7c7c7, 10px 0px 13px -7px #c7c7c7, 5px 5px 7px 5px rgba(181, 181, 181, 0);
        box-shadow: -10px 0px 13px -7px #c7c7c7, 10px 0px 13px -7px #c7c7c7, 5px 5px 7px 5px rgba(181, 181, 181, 0);
    }
    ul.menu li:hover ul li {
        float: none;
        width: 100%;
        position: relative;
        z-index: 9999;
    }
    ul.menu li:hover ul li a {
        display: block;
        line-height: 45px;
        font-size: 18px;
        font-weight: 500;
        text-transform: none;
        text-shadow: none;
        text-align: left !important;
        padding: 0 30px 0 10px;
        background: #fff;
        border-bottom: 2px solid #fff;
        width: 100%;
        color: #0e1e29;
        text-decoration: none;
    }
    ul.menu li:hover ul li a:hover {
        background: #eeeeee;
        border-bottom: 2px solid #ebeef3;
    }

    /* sub menu fix */
    ul.menu li.menu-item-has-children:hover ul li a:before {
        content: '';
        display: none;
    }
	ul.menu li:hover ul li a::after {height: 0px;}


/*	--------------------------------------------------
	:: Footer
	-------------------------------------------------- */


		#footer-wrapper {
			height: auto; 
			width: 100%;
			background: #f2ebd9 url(images/footer-bg.jpg) no-repeat scroll center center / cover;
			border-top: 10px solid #30270e;
		}		
		#footer {
			height: auto;
			width: 90%;
			margin: 0 auto;
			padding: 0 0 30px 0;
			font-family: "Libre Caslon Text", serif;
			font-size: 18px;
			line-height: 30px;
			color: #36322c;
		}
		#footer a {color: #28530b; text-decoration: underline;}
		#footer a:hover {color: #193704; text-decoration: none;}
	
			#footer .g70 .g50:nth-child(2) {padding-top: 80px;}

			/* Options - Footer Social */
			#footer ul.social-icons {list-style: none; margin: 0 !important; padding: 0; padding-left: 0px !important; text-align: center; margin-top: 40px !important;}
			#footer ul.social-icons li {display: inline; padding: 0px; margin: 0 !important;}
			#footer ul.social-icons a i {
				font-size: 20px !important;
				width: 45px;
				height: 45px;
				line-height: 45px;
				border-radius: 150px;
				text-align: center;
				color: #fff;
				background: #152e04;	
			}
			#footer ul.social-icons li a {display: inline-block; transition: transform 0.3s ease;}
			#footer ul.social-icons li a:hover {opacity: 0.8; text-decoration: none !important; transform: translateY(-6px) scale(1.02);}



			#footer .donate-btn {
				display: block;
				text-align: right;
				padding: 12px 23px;
			}
			#footer .donate-btn a {color: #fff !important; text-decoration: none;}

			#footer .footer-phone {font-weight: 400; font-size: 20px;}
			#footer .footer-phone a {color: #36322c !important; text-decoration: none;}


	        .footer-heading {
                color: #36322c;
                font-family: "Libre Caslon Text", serif;
                font-size: 20px;
                line-height: 24px;
                font-weight: bold;
                margin-bottom: 20px;
            }

			.business-hours-wrapper {font-family: "Cabin", sans-serif;}
			.hours-season {
				margin-bottom: 15px;
				font-family: "Libre Caslon Text", serif;
				color: #5c5346;
				font-size: 18px;
			}
			.business-hours {border-top: 1px solid rgba(154, 135, 77, 0.35);}
			.hours-row {
				display: flex;
				justify-content: space-between;
				align-items: baseline;
				gap: 16px;
				padding: 7px 0;
				border-bottom: 1px solid rgba(154, 135, 77, 0.2);
				font-size: 16px;
				line-height: 18px;
			}
			.hours-day {
				width: auto;
				flex-shrink: 0;
				font-weight: 600;
				color: #36322c;
			}
			.hours-time {
				flex: 0 1 auto;
				text-align: right;
				color: #36322c;
				white-space: nowrap;
			}
			.special-hours-note {font-size: 16px; color: #5c5346; margin-top: 10px;}


			.footer-nav {margin: 50px 0 25px 0; color: #000000;}
			.footer-nav a {color: #28530b; text-decoration: underline;}
			.footer-nav a:hover {color: #193704; text-decoration: none;}
			.footer-nav-donate { display: none;}


		#copyright-wrapper {
			height: auto; 
			width: 100%;
			background: transparent;
		}	
		#copyright {
			border-top: 2px solid #9a874d;
			height: auto; 
			width: 90%;
			margin: 0 auto;
			padding: 10px 0;
			background: transparent;
			font-family: "Cabin", sans-serif;
			font-size: 14px; 
			line-height: 18px; 
			color: #9a874d;
		}
		#copyright a {color: #9a874d; text-decoration: underline;}
		#copyright a:hover {color: #af9a5b; text-decoration: none;}
				
        #copyright .g50:nth-child(2) {text-align: right !important;}


			.logo-row {
				display: flex;
				justify-content: space-evenly;
				align-items: center;
				gap: 2rem;
				width: 100%;
				margin-top: 30px;
			}
			.logo-row img {
				max-height: 80px;  /* make all logos visually similar in height */
				width: auto;       /* preserve aspect ratio */
				display: block;
			}
			.logo-row a {transition: transform 0.3s ease;}
			.logo-row a:hover {transform: translateY(-6px) scale(1.02);}



/*	--------------------------------------------------
	:: Elements
	-------------------------------------------------- */

/* Accordion Paragraph fix */
.wp-block-aab-accordion-item .aagb__accordion_body .aagb__accordion_component p {margin-bottom: 0px;}


	ul.checkmark {
		--icon-space: 1.3em;
		list-style: none;
		padding: 0;
	}
	ul.checkmark li {padding-left: var(--icon-space);}

	ul.checkmark li:before {
		content: "\f00c"; 
		color: #4b7033;
        font-family: "Font Awesome 6 Pro";
		font-weight: 700;
		display: inline-block;
		margin-left: calc( var(--icon-space) * -1 );
		width: var(--icon-space);
		padding-right: 15px;
	}

h1:not(.site-title)::before, h2::before{
	background: none !important;
	content: none !important;
	height: 0px !important;
	margin: 0 !important;
	width: 0 !important;
}

.home h1 {text-shadow: 0 0 16px #000000; font-size: 60px; line-height: 64px;}

h1, .wp-block-cover h1:not(.has-text-color) {
	color: #000;
	font-family: "Libre Caslon Text", serif;
	font-size: 50px;
	line-height: 58px;
	font-weight: 400;
	margin: 0px;
	padding: 0px;
	margin-bottom: 25px;
}
h1 em, .wp-block-cover h1:not(.has-text-color) em{
	font-size: 40px;
	line-height: 44px;
	font-style: normal;
}

h2, .wp-block-cover h2:not(.has-text-color) {
	color: #224708;
	font-family: "Libre Caslon Text", serif;
	font-size: 44px;
	line-height: 50px;
	font-weight: 400;
	margin: 0px;
	padding: 0px;
	margin-bottom: 25px;
}

h3, .wp-block-cover h3:not(.has-text-color) {
	color: #224708;
	font-family: "Libre Caslon Text", serif;
	font-size: 36px;
	line-height: 40px;
	font-weight: 400;
	margin: 0px;
	padding: 0px;
	margin-bottom: 25px;
}


p {
	margin: 0px;
	padding: 0px 0px 20px 0px;
}

hr,
hr.is-style-wide {
	border: 0; 
	height: 4px; 
	background: #d8d1bd;
	text-align: center;
	line-height: 4px;
	font-size: 26px;
	border-bottom: 0px;
	margin: 30px 0 45px 0;
}

hr.wp-block-separator:not(.is-style-wide) { 
	border: 0; 
	height: 4px; 
	background: #d8d1bd;
	text-align: left;
	line-height: 4px;
	font-size: 26px;
	border-bottom: 0px;
	margin: 30px 0 45px 0;
}

	blockquote {	
		border-left: 12px solid #3e5c29 !important;
		background: #e8e3d5;
		color: #000; 
		padding: 20px 10px 20px 40px !important;
	}
	blockquote p {padding: 0;}
	blockquote a {color: #000 !important; font-weight: bold;}		
	blockquote a:hover {color: #3e5c29 !important;}		
	
	blockquote cite {
		font-size: 16px; 
		text-transform: uppercase; 
		color: #575757; 
		font-style: italic;
	}


	.clear a.wp-block-button__link {
		display: inline-block;
		background: transparent;
		font-family: "Libre Caslon Text", serif;
		color: #fff !important;
		font-size: 18px;
		border: 2px solid #fff;
		margin: 10px 0;
		padding: 20px 30px;
		border-radius: 8px;
		text-decoration: none !important;
		box-shadow: 0 2px 6px rgba(0,0,0,0.12);
		-webkit-transition: all 0.25s ease-in-out;
		-moz-transition: all 0.25s ease-in-out;
		-o-transition: all 0.25s ease-in-out;
		transition: all 0.25s ease-in-out;
	}

	.clear a.wp-block-button__link:hover {
		background: #30270e;
		border: 2px solid #30270e;
		color: #f2e1d4 !important;
		transform: translateY(-2px) scale(1.02);
		box-shadow: 0 6px 16px rgba(0,0,0,0.18);
	}



	a.wp-block-button__link {
		display: inline-block;
		background: #30270e;
		font-family: "Libre Caslon Text", serif;
		color: #fff !important;
		font-size: 18px;
		margin: 10px 0;
		padding: 20px 30px;
		border-radius: 8px;
		text-decoration: none !important;
		box-shadow: 0 2px 6px rgba(0,0,0,0.12);
		-webkit-transition: all 0.25s ease-in-out;
		-moz-transition: all 0.25s ease-in-out;
		-o-transition: all 0.25s ease-in-out;
		transition: all 0.25s ease-in-out;
	}

	a.wp-block-button__link:hover {
		background: #443818;
		color: #f2e1d4 !important;
		transform: translateY(-2px) scale(1.02);
		box-shadow: 0 6px 16px rgba(0,0,0,0.18);
	}




/*	--------------------------------------------------
	:: Grid 
	-------------------------------------------------- */

div.content > div img {width: 100%;}
 /* Override */.no-full {width: auto !important;}
 

.g10, .g20, .g30, .g40, .g50, .g60, .g70, .g80, .g90, .g100, .g33, .g25, .g75 {
	height:auto;
	float:left;
}
.g10 {width:10%;}
.g20 {width:20%;}
.g30 {width:30%;}
.g40 {width:40%;}
.g50 {width:50%;}
.g60 {width:60%;}
.g70 {width:70%;}
.g80 {width:80%;}
.g90 {width:90%;}
.g100 {width:100%;}

.g33 {width:33.33333333%;}
.g25 {width:25%;}
.g75 {width:75%;}

.padding {padding: 10px 15px;}






/*	--------------------------------------------------
	:: Table Styles
	-------------------------------------------------- */

figure.wp-block-table {}

figure.wp-block-table > table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  font-size: 0.95rem;
  line-height: 1.55;
  border: 1px solid #dde3e8;
  box-shadow: 0 1px 2px rgba(44, 62, 80, 0.05);
}

/* Hard reset of theme's default black borders */
figure.wp-block-table table,
figure.wp-block-table th,
figure.wp-block-table td {
  border: none;
  border-color: transparent;
}

/* Header row */
figure.wp-block-table thead th {
  background: #3e5c29;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-align: left;
  padding: 0.85rem 1rem;
  border-bottom: 3px solid #71b144;
  border-right: 1px solid rgba(255,255,255,0.08);
}
figure.wp-block-table thead th:last-child {
  border-right: none;
}

/* Body cells */
figure.wp-block-table tbody td {
  padding: 0.7rem 1rem;
  color: #181818;
  border-bottom: 1px solid #e4edde;
  border-right: 1px solid #e4edde;
  vertical-align: top;
}
figure.wp-block-table tbody td:last-child {
  border-right: none;
}

/* Zebra striping */
figure.wp-block-table tbody tr:nth-child(even) td {
  background: #f1f6ee;
}

/* Hover */
figure.wp-block-table tbody tr:hover td {
  background: #e6f4dd;
  transition: background 0.2s ease;
}

figure.wp-block-table tbody tr:last-child td {
  border-bottom: 0;
}

/* Caption */
figure.wp-block-table figcaption {
  margin-top: 0.5rem;
  text-align: center;
  color: #7b917a;
  font-size: 0.85rem;
  font-style: italic;
}

@media (max-width: 600px) {
  figure.wp-block-table > table,
  figure.wp-block-table thead,
  figure.wp-block-table tbody,
  figure.wp-block-table tr,
  figure.wp-block-table th,
  figure.wp-block-table td {
    display: block;
    width: 100%;
    box-sizing: border-box;
  }

  figure.wp-block-table thead {
    display: none;
  }

  figure.wp-block-table tbody tr {
    margin-bottom: 0.75rem;
    border: 1px solid #dde3e8;
    border-radius: 4px;
    background: #ffffff;
    box-shadow: 0 1px 2px rgba(44, 62, 80, 0.05);
    overflow: hidden;
  }
  figure.wp-block-table tbody tr:last-child {
    margin-bottom: 0;
  }

  figure.wp-block-table tbody td {
    padding: 0.6rem 0.85rem;
    border-bottom: 1px solid #e4edde;
    border-right: none;
  }
  figure.wp-block-table tbody tr:nth-child(even) td {
    background: #f1f6ee;
  }
  figure.wp-block-table tbody tr:last-child td {
    border-bottom: 0;
  }

  /* Title cell — dark background on ALL rows, odd or even */
  figure.wp-block-table tbody td:first-child {
    background: #3e5c29;
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.02em;
    border-bottom: 3px solid #71b144;
  }
  /* the fix: reassert it on even rows so zebra striping can't override it */
  figure.wp-block-table tbody tr:nth-child(even) td:first-child {
    background: #3e5c29;
    color: #fff;
    border-bottom: 3px solid #71b144;
  }

  figure.wp-block-table tbody td::before {
    content: attr(data-label);
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #7b917a;
    margin-bottom: 0.15rem;
    font-weight: 600;
  }
  figure.wp-block-table tbody td:first-child::before {
    color: rgba(244, 246, 247, 0.7);
  }
}

@media (max-width: 356px) {
  figure.wp-block-table tbody td {
    padding: 0.5rem 0.7rem;
    font-size: 0.85rem;
  }
  figure.wp-block-table tbody td::before {
    font-size: 0.65rem;
  }
}







/*	--------------------------------------------------
	:: Form Styles
	-------------------------------------------------- */

input, textarea, select {
    border: 0px !important;
	background: #fff !important;
	-webkit-box-shadow: 0 0 15px 0 rgba(0,0,0,.1);
	box-shadow: 0 0 15px 0 rgba(0,0,0,.1);
	border-bottom: 2px solid #e8e3d7;
    font-family: inherit;
    padding: 10px !important;
	width: 100%;
}
select {padding: 14px !important;}
input[type="checkbox"], input[type="radio"] {
	width: auto;
}
input:focus, textarea:focus, select:focus {
    border: 0px;
	background: #fff !important;
	-webkit-box-shadow: 0 0 10px 0 rgba(0,0,0,.4);
	box-shadow: 0 0 10px 0 rgba(0,0,0,.4);
	border-bottom: 2px solid #e8e3d7;
    font-family: inherit;
    padding: 10px !important;
}
select:focus {padding: 14px !important;}

    .gform_wrapper.gravity-theme .ginput_container_address span {
		flex: 0 0 100%;
	}
	.ginput_complex.ginput_container_address .address_city {
		width: 32% !important;
        margin: 0px 1% 0px 1% !important;
		padding: 0 !important;
		display: block;
		float: left;
		flex: unset !important;
	}
	.ginput_complex.ginput_container_address .address_state {
		width: 32% !important;
        margin: 0px 1% 0px 0px !important;
		padding: 0 !important;
		display: block;
		float: left;
		flex: unset !important;
	}
	.ginput_complex.ginput_container_address .address_zip {
		width: 33% !important;
        margin: 0px!important;
		padding: 0 !important;
		display: block;
		float: right;
		flex: unset !important;
	}

button, input[type="submit"], input[type="button"], input[type="reset"] {
    background: rgba(0, 0, 0, 0) linear-gradient(to bottom, #30270e 0%, #30270e 100%) repeat scroll 0 0 !important;
    border-bottom: 2px solid #30270e !important;
    color: #fff;
    display: inline-block;
    padding: 20px 30px !important;
    font-family: "Libre Caslon Text", serif;
	text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 0px;
    font-size: 18px;
    width:auto;
    border-radius: 8px;
	text-decoration: none !important;
	box-shadow: 0 2px 6px rgba(0,0,0,0.12);
	-webkit-transition: all 0.25s ease-in-out;
	-moz-transition: all 0.25s ease-in-out;
	-o-transition: all 0.25s ease-in-out;
	transition: all 0.25s ease-in-out;
}

button:hover, button:focus, input[type="submit"]:hover, input[type="submit"]:focus, input[type="button"]:hover, input[type="button"]:focus, input[type="reset"]:hover, input[type="reset"]:focus {
    background: rgba(0, 0, 0, 0) linear-gradient(to bottom, #443818 0%, #443818 100%) repeat scroll 0 0 !important;
    color: #f2e1d4 !important;
	transform: translateY(-2px) scale(1.02);
	box-shadow: 0 6px 16px rgba(0,0,0,0.18);
}



/*	--------------------------------------------------
	:: Media Queries
	-------------------------------------------------- */

@media screen and (min-width: 1200px) {
	.responsive {width: 1200px !important;}
}

@media screen and (max-width: 1200px) {
    .alignfull .wp-block-cover__inner-container {max-width: 90%;}
}

@media screen and (min-width: 801px) {.opensub {display: none;}} 

@media screen and (max-width: 800px) {
    
	
	
/* ********* Header ********** */
	#header {
		width: 100% !important;
		position: static;
		flex-direction: column;
		align-items: stretch;
		padding: 0;
	}
	#header .g70 {position: static;}
	#header #logo {
		flex: none;
		width: 100%;
		max-width: 320px;
		margin: 0 auto;
	}
	.header_right {width: 100%;}
	.header-top {
		justify-content: center;
		flex-wrap: wrap;
		gap: 12px 20px;
		padding-bottom: 10px;
	}
	.phone {text-align: center;margin-top: 0;}
	.donate-btn {display: none;}
	#nav-bg {display: block !important;}

    
	.wp-block-cover.hero .wp-block-cover__background {opacity: .6 !important;}
	
	
	#footer {text-align: center;}
	#footer ul.social-icons {margin-top: 25px !important;}
	#footer .g70 .g50:nth-child(2) {padding-top: 25px;}
	.footer-nav {margin: 0px 0 25px 0;}
	.footer-nav-donate { display: inline;}
	#footer .donate-btn {display: none;}
	
	
	.business-hours-wrapper {
		max-width: 280px;
		margin-left: auto;
		margin-right: auto;
	}
	.hours-season {
		text-align: center;
		margin-bottom: 12px;
	}
	.hours-row {
		padding: 8px 0;
		gap: 12px;
	}
	.special-hours-note {
		text-align: center;
		margin-top: 12px;
	}
	
	
    #copyright .g50 {float: none; text-align: center !important;}
    #copyright .g50:nth-child(2) {float: none; text-align: center !important;}
	

	/* ********* Mobile Navigation Styles ********** */
	button#menuToggle {
		display: block;
		border: 0;
		background: #152e04 !important;
		border-bottom: transparent !important;
		padding: 10px 0 !important;
		width: 100%;
		color: #fff;
		text-align: center;
		font-size: 24px;
		font-weight: 700; 
		border-radius: 0px !important;
	}
	button#menuToggle:hover, #menuToggle:focus {background: #152e04 !important;}

	.menu-content {display: none;}

	.menu-content .right {float: none !important;}
	ul.menu {background: #152e04;}
	ul.menu li {float: none; width: 100%; text-align: center; border-bottom: 1px solid #274e0d;}
	ul.menu li a {color: #fff;}
	ul.menu li a:hover,
	ul.menu li.current-menu-item a,
	ul.menu li a:focus {color: #fff; background: #152e04;}
	
	/* Dontate button */
	ul.menu li.menu-item-donate {background: #274e0d;}

	/* submenu */
	ul.sub-menu {display: none;}
	ul.menu li ul {
		position: static;
		left: 0;
		width: auto;
	}
	ul.menu li:hover ul li {
		float: none;
		width: 100%;
		position: static;
		text-align: center !important;
	}
	ul.menu li:hover ul li:hover {text-align: center;}
		
	ul.menu li.menu-item-has-children a::before {content: ""}
	ul.menu li a::after {display: none;}
	
    ul.menu li .opensub {
        color: #fff;
        background: #274e0d;
        position: absolute;
        right: 0px;
        font-size: 20px;
        top: 0px;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 43px;
        width: 43px;
        cursor: pointer;
    }    
		
	.g25 {width: 50% !important;}
	.g30 {width: 100% !important;}
	.g33 {width: 100% !important;}
	.g50 {width: 100% !important;}
	.g70 {width: 100% !important;}
	
}

@media screen and (max-width: 600px) {
	.responsive {width: 90% !important;}
}

@media screen and (max-width: 480px) {

	.business-hours-wrapper {max-width: 100%;}
	.hours-row {gap: 10px;}
	
	.g10 {width: 100% !important;}
	.g20 {width: 100% !important;}
	.g25 {width: 100% !important;}
	.g40 {width: 100% !important;}
	.g60 {width: 100% !important;}
	.g80 {width: 100% !important;}
	.g90 {width: 100% !important;}

}