@charset "utf-8";

/* html5doctor.com Reset v1.6.1 */
html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,abbr,address,cite,code,del,dfn,em,img,ins,kbd,q,samp,small,strong,sub,sup,var,b,i,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,figcaption,figure,footer,header,hgroup,menu,nav,section,summary,time,mark,audio,video{
	margin:0;
	padding:0;
	border:0;
	outline:0;
	font-size:100%;
	vertical-align:baseline;
	background:transparent
}
body{
	line-height:1
}
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{
	display:block
}
nav ul{
	list-style:none
}
blockquote,q{
	quotes:none
}
blockquote::before,blockquote::after,q::before,q::after{
	content:none
}
a{
	margin:0;
	padding:0;
	font-size:100%;
	vertical-align:baseline;
	background:transparent
}
ins{
	background-color:#ff9;
	color:#000;
	text-decoration:none
}
mark{
	background-color:#ff9;
	color:#000;
	font-style:italic;
	font-weight:bold
}
del{
	text-decoration:line-through
}
abbr[title],dfn[title]{
	border-bottom:1px dotted;
	cursor:help
}
table{
	border-collapse:collapse;
	border-spacing:0
}
hr{
	display:block;
	height:1px;
	border:0;
	border-top:1px solid #ccc;
	margin:1em 0;
	padding:0
}
input,select{
	vertical-align:middle
}

/* additional custom resets... */

/* width & height */
img, svg, object, embed, video {
    max-width: 100%;
    height: auto;
}
iframe {
    max-width: 100%;
}
/* box sizing */
html {
	box-sizing: border-box;
}
*, *::before, *::after {
	box-sizing: inherit;
}
/* remove focus styles: dotted outline in Firefox & blue border in Chrome */
a:focus, a:active,
button:focus,
input:focus,
select:focus,
textarea:focus {
	outline: none;
}
a::-moz-focus-inner {
    border: 0;
}

/* framework */

/* widths */
.Width640, .Width840, .Width980, .Width1300, .Width1800,
.page article > *:not(.CustomBlock), .single-post [itemprop="articleBody"] > * {
	width: 90%;
    position: relative;
    margin-left: auto;
    margin-right: auto;
}
.Width640, .page article > *:not(.CustomBlock):not(.Width840):not(.wp-block-gallery) {
    max-width: 640px !important;
}
.Width840, .page article > .wp-block-gallery {
    max-width: 840px !important;
}
.Width980, .single-post [itemprop="articleBody"] > * {
    max-width: 980px;
}
.Width1300,
.single-post [itemprop="articleBody"] > .Width1300,
.single-post [itemprop="articleBody"] > .wp-block-image.size-1300x700 {
    max-width: 1300px;
}
.Width1800 {
	width: 100%;
	max-width: 1800px;
}
.Width100Percent {
	width: 100%;
}
.PadLR {
    padding-left: 5%;
    padding-right: 5%;
}
article > ul, article > ol,
[itemprop="articleBody"] > ul, [itemprop="articleBody"] > ol {
    padding-left: 20px !important;
}

/* display */
.DisplayInline {
	display: inline;
}
.DisplayInlineBlock {
	display: inline-block;
}
.DisplayBlock {
	display: block;
}
.DisplayFlex {
	display: flex;
}
.DisplayInlineFlex {
	display: inline-flex;
}

/* position */
.PosRelative {
	position: relative;
}

/* centering */
.CenterXY {
	justify-content: center;
	align-items: center;
}
.CenterX {
	justify-content: center;
}
.CenterY {
	align-items: center;
}
.TxCenter {
	text-align: center;
}

/* columns: custom (infinite rows) */
.TwoColumns, .ThreeColumns, .FourColumns {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;  /* last row left aligned (with spacer elements)*/
	align-items: stretch;
}
.LastRowCenter {  /* last row centered */
	justify-content: center;
}
.TwoColumns.VrtGapSm, .ThreeColumns.VrtGapSm, .FourColumns.VrtGapSm {
	margin-bottom: -2% !important;
}
.TwoColumns.VrtGapLg, .ThreeColumns.VrtGapLg, .FourColumns.VrtGapLg {
	margin-bottom: -5% !important;
}
.TwoColumns > *, .ThreeColumns > *, .FourColumns > * {
	flex-basis: 100%;
}
.TwoColumns.VrtGapSm > *, .ThreeColumns.VrtGapSm > *:not([aria-hidden="true"]), .FourColumns.VrtGapSm > *:not([aria-hidden="true"]) {
	margin-bottom: 2%;
}
.TwoColumns.VrtGapLg > *, .ThreeColumns.VrtGapLg > *:not([aria-hidden="true"]), .FourColumns.VrtGapLg > *:not([aria-hidden="true"]) {
	margin-bottom: 5%;
}
/* columns: 2 */
@media only screen and (min-width: 481px) {
	/* 0 gap */
	.TwoColumns > *, .ThreeColumns > *, .FourColumns > * {
		flex-basis: 50%;
	}
	/* 2% gap */
	.TwoColumns.HrzGapSm > *, .ThreeColumns.HrzGapSm > *, .FourColumns.HrzGapSm > * {
		flex-basis: 49%;
	}
	.TwoColumns.HrzGapSm.LastRowCenter > *:not(:nth-child(2n + 1)),
	.ThreeColumns.HrzGapSm.LastRowCenter > *:not(:nth-child(2n + 1)),
	.FourColumns.HrzGapSm.LastRowCenter > *:not(:nth-child(2n + 1)) {
		margin-left: 2%;
	}
	/* 5% gap */
	.TwoColumns.HrzGapLg > *, .ThreeColumns.HrzGapLg > *, .FourColumns.HrzGapLg > * {
		flex-basis: 47.5%;
	}
	.TwoColumns.HrzGapLg.LastRowCenter > *:not(:nth-child(2n + 1)),
	.ThreeColumns.HrzGapLg.LastRowCenter > *:not(:nth-child(2n + 1)),
	.FourColumns.HrzGapLg.LastRowCenter > *:not(:nth-child(2n + 1)) {
		margin-left: 5%;
	}
}
/* columns: 3*/
@media only screen and (min-width: 768px) {
	/* 0 gap */
	.ThreeColumns > *, .FourColumns > * {
		flex-basis: 33.33%;
	}
	/* 2% gap */
	.ThreeColumns.HrzGapSm > *, .FourColumns.HrzGapSm > * {
		flex-basis: 32%;
	}
	.ThreeColumns.HrzGapSm.LastRowCenter > *:not(:nth-child(2n + 1)),
	.FourColumns.HrzGapSm.LastRowCenter > *:not(:nth-child(2n + 1)) {  /* reset */
		margin-left: 0;
	}
	.ThreeColumns.HrzGapSm.LastRowCenter > *:not(:nth-child(3n + 1)),
	.FourColumns.HrzGapSm.LastRowCenter > *:not(:nth-child(3n + 1)) {
		margin-left: 2%;
	}
	/* 5% gap */
	.ThreeColumns.HrzGapLg > *, .FourColumns.HrzGapLg > * {
		flex-basis: 30%;
	}
	.ThreeColumns.HrzGapLg.LastRowCenter > *:not(:nth-child(2n + 1)),
	.FourColumns.HrzGapLg.LastRowCenter > *:not(:nth-child(2n + 1)) {  /* reset */
		margin-left: 0;
	}
	.ThreeColumns.HrzGapLg.LastRowCenter > *:not(:nth-child(3n + 1)),
	.FourColumns.HrzGapLg.LastRowCenter > *:not(:nth-child(3n + 1)) {
		margin-left: 5%;
	}
}
/* columns: 4 */
@media only screen and (min-width: 900px) {
	/* 0 gap */
	.FourColumns > * {
		flex-basis: 25%;
	}
	/* 2% gap */
	.FourColumns.HrzGapSm > * {
		flex-basis: 23.5%;
	}
	.FourColumns.HrzGapSm.LastRowCenter > *:not(:nth-child(3n + 1)) {  /* reset */
		margin-left: 0;
	}
	.FourColumns.HrzGapSm.LastRowCenter > *:not(:nth-child(4n + 1)) {
		margin-left: 2%;
	}
	/* 5% gap */
	.FourColumns.HrzGapLg > * {
		flex-basis: 21.25%;
	}
	.FourColumns.HrzGapLg.LastRowCenter > *:not(:nth-child(3n + 1)) {  /* reset */
		margin-left: 0;
	}
	.FourColumns.HrzGapLg.LastRowCenter > *:not(:nth-child(4n + 1)) {
		margin-left: 5%;
	}
}

/* vertical padding */
.PadTop40 {
	padding-top: 20px;
}
.PadBtm40 {
	padding-bottom: 20px;
}
.PadTop60 {
	padding-top: 30px;
}
.PadBtm60,
.ContactPgFormBlock #gf_page_steps_8 {
	padding-bottom: 30px;
}
.PadTop80 {
	padding-top: 40px;
}
.PadBtm80 {
	padding-bottom: 40px;
}
.PadTop100 {
	padding-top: 50px;
}
.PadBtm100 {
	padding-bottom: 50px;
}
.PadTop120 {
	padding-top: 60px;
}
.PadBtm120 {
	padding-bottom: 60px;
}
/* vertical margins */
article > *:not(.CustomBlock) + .CustomBlock,
article > *:not(.CustomBlock) + .mgl-tiles-container,  /* Meow Gallery */
article > *:not(.CustomBlock) + .gform_wrapper,
footer {
	margin-top: 50px;
}
.CustomBlock,
.SectionBtmMargin,
.mgl-tiles-container {
	margin-bottom: 50px;
}
.CustomBlock.MarginBtmSm,
.SectionBtmMargin.MarginBtmSm,
.mgl-tiles-container.MarginBtmSm {
	margin-bottom: 30px;
}
.NoBtmMargin, .h2.NoBtmMargin,
.wp-block-columns,
article > *:last-child,
p:last-child, figure:last-child, ul:last-child, ol:last-child,
.wp-block-buttons:last-child, .wp-block-image:last-child, .wp-block-gallery:last-child, .mgl-tiles-container:last-child, .wp-block-column:last-child {
	margin-bottom: 0;
}
p, figure, ul, ol, .wp-block-buttons, .wp-block-image, .wp-block-gallery, .mgl-tiles-container, .wp-block-column {
    margin-bottom: 1.5em;
}
@media only screen and (min-width: 768px) {
	/* vertical padding */
	.PadTop40 {
		padding-top: 40px;
	}
	.PadBtm40 {
		padding-bottom: 40px;
	}
	.PadTop60 {
		padding-top: 60px;
	}
	.PadBtm60,
	.ContactPgFormBlock #gf_page_steps_8 {
		padding-bottom: 60px;
	}
	.PadTop80 {
		padding-top: 80px;
	}
	.PadBtm80 {
		padding-bottom: 80px;
	}
	.PadTop100 {
		padding-top: 100px;
	}
	.PadBtm100 {
		padding-bottom: 100px;
	}
	.PadTop120 {
		padding-top: 120px;
	}
	.PadBtm120 {
		padding-bottom: 120px;
	}
	/* vertical margins */
	article > *:not(.CustomBlock) + .CustomBlock,
	article > *:not(.CustomBlock) + .mgl-tiles-container,  /* Meow Gallery */
	article > *:not(.CustomBlock) + .gform_wrapper,
	footer {
		margin-top: 100px;
	}
	h2 + .CustomBlock {
		margin-top: 50px !important;
	}
	.CustomBlock,
	.SectionBtmMargin,
	.mgl-tiles-container {
		margin-bottom: 100px;
	}
	.CustomBlock.MarginBtmSm,
	.SectionBtmMargin.MarginBtmSm,
	.mgl-tiles-container.MarginBtmSm {
		margin-bottom: 60px;
	}
}

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

/* colors: backgrounds */
.BgWhite {
	background-color: #fff;
}
.BgTan {
	background-color: #f4f3e7;
}
.BgGreenLight {
	background-color:  #007a56;
}
.BgGreenDark {
	background-color: #004f37;
}
/* colors: text */
.TxCoWhite {
	color: #fff;
}
.TxCoGreen {
	color: #004f37;
}
.TxCoGray {
	color: #7c7c7c;
}

/* font: sans-serif */
@font-face {
    font-family: 'Poppins';
	src: url('../font/poppins-regular.woff2') format('woff2'), url('../font/poppins-regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
	font-display: swap;
}
@font-face {
    font-family: 'Poppins';
	src: url('../font/poppins-medium.woff2') format('woff2'), url('../font/poppins-medium.woff') format('woff');
    font-weight: bold;  /* font weight = 500, but we're mapping it to bold */
    font-style: normal;
	font-display: swap;
}
/* font: serif */
@font-face {
    font-family: 'Freight Text';
    src: url('../font/freight-text-regular.woff2') format('woff2'), url('../font/freight-text-regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
	font-display: swap;
}
.FontFreight, h1, h2, .h2, h3, .h3, h5, h6 {
    font-family: 'Freight Text', Georgia, serif;
}

/* text: general */
body, button, input, select, textarea {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: normal;
    color: #2d2d2d;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
/* text: sizes */
.TxSz12 {
    font-size: 12px;
}
.TxSz14, .has-small-font-size {
    font-size: 14px;
}
.TxSz16, .has-regular-font-size {
    font-size: 16px;
}
.TxSz20 {
    font-size: 20px;
}
.has-large-font-size {
    font-size: 22px;
}
.TxSz24 {
    font-size: 24px;
}
.TxSz30 {
    font-size: 25px;
}
.TxSz50 {
	font-size: 30px;
}
@media only screen and (min-width: 768px) {
	.TxSz30 {
		font-size: 30px;
	}
	.TxSz50 {
		font-size: 50px;
	}
}
/* text: styles */
.TxUppercase {
	text-transform: uppercase;
}
.TxBold {
	font-weight: bold;
}
/* text: headings */
h1, .h1, h2, .h2, h3, .h3, h4, h5, h6 {
	font-weight: normal;
	line-height: normal;
	margin-bottom: .5em;
}
h1, .h1, h2, .h2 {
	line-height: 1.2;
}
h1, .h1 {
    font-size: 40px;
	margin-bottom: .2em;
}
h2, .h2 {
    font-size: 35px;
	margin-bottom: .3em;
}
h3, .h3 {
    font-size: 30px;
}
h4 {
	font-family: 'Poppins', sans-serif;
	font-weight: bold;
	color: #004f37;
    font-size: 20px;
}
[itemprop="articleBody"] h4 {
	font-family: 'Freight Text', Georgia, serif;
	font-weight: normal;
	color: #2d2d2d;
    font-size: 26px;
}
h5 {
    font-size: 24px;
}
h6 {
    font-size: 18px;
}
@media only screen and (min-width: 768px) {
	h1, .h1 {
		font-size: 60px;
	}
	h2, .h2 {
		font-size: 46px;
	}
	h3, .h3 {
		font-size: 36px;
	}
}
/* text: quotes */
blockquote cite {
	display: block;
}
/* text: lists */
ul, ol {
    margin-left: 20px;
}
.NoListStyle, #NavMenu {
    list-style: none;
	margin: 0;
}
/* text: drop caps */
.has-drop-cap::first-letter {
	font-size: 300% !important;
	margin-top: .2em !important;
}

/* text: highlight color */
::-moz-selection {
	color: #fff;
	background: #000;
}
::selection {
	color: #fff;
	background: #000;
}

/* links */
a, a:link, a:visited {
	color: #004f37;
	transition: all .3s;
}
a:hover, a:focus, a:active {
	color: #007a56;
}
/* links: borderless */
a.BorderlessLink, .BorderlessLinks a, .BorderlessLinks a:link, .BorderlessLinks a:visited,
a.wp-block-button__link,
.ui-datepicker a {
	text-decoration: none;
}
/* links: colorless */
a.ColorlessLink, a.ColorlessLink:link, a.ColorlessLink:visited,
.ColorlessLinks a, .ColorlessLinks a:link, .ColorlessLinks a:visited {
	color: inherit;
}
/* links: fade on hover */
.LinksFadeOnHover a:hover, .LinksFadeOnHover a:focus, .LinksFadeOnHover a:active {
	opacity: .5;
}

/* buttons: default (green bg) */
a.wp-block-button__link, a.wp-block-button__link:link, a.wp-block-button__link:visited,
button:not(.NoBtnStyle), .Btn, .Btn:link, .Btn:visited, input[type="submit"], input[type="button"],
.CatNav a, .CatNav a:link, .CatNav a:visited {
	display: inline-block;
	border: none;
	border-radius: 5px;
	background: #004f37;
	padding: 15px 30px;
	color: #fff;
	text-align: center;
	font-weight: bold;
	text-decoration: none;
	cursor: pointer;
	transition: all .3s;
}
a.wp-block-button__link:hover, a.wp-block-button__link:focus, a.wp-block-button__link:active,
button:not(.NoBtnStyle):hover, button:not(.NoBtnStyle):focus, button:not(.NoBtnStyle):active,
.Btn:hover, .Btn:focus, .Btn:active,
.CatNav a:hover, .CatNav a:focus, .CatNav a:active,
input[type="button"]:hover, input[type="button"]:focus, input[type="button"]:active,
input[type="submit"]:hover, input[type="submit"]:focus, input[type="submit"]:active {
	background: #007a56;
}
/* buttons: outline */
.BtnOutline, .BtnOutline:link, .BtnOutline:visited,
.BtnOutline[aria-selected], .BtnOutline[aria-selected]:link, .BtnOutline[aria-selected]:visited,
.CatNav a,.CatNav a:link, .CatNav a:visited,
.gform_previous_button {
	background: #fff;
	color: #004f37;
}
.BtnOutline, .BtnOutline:link, .BtnOutline:visited,
.BtnOutline[aria-selected="true"], .BtnOutline[aria-selected="true"]:link, .BtnOutline[aria-selected="true"]:visited,
.CatNav a,.CatNav a:link, .CatNav a:visited,
.gform_previous_button {
	border: 1px solid #004f37 !important;
}
.BtnOutline[aria-selected="false"], .BtnOutline[aria-selected="false"]:link, .BtnOutline[aria-selected="false"]:visited {
	border: 1px solid #bfd3cd !important;
}
.BtnOutline:hover, .BtnOutline:focus, .BtnOutline:active,
.CatNav a:hover, .CatNav a:focus, .CatNav a:active,
.gform_previous_button:hover, .gform_previous_button:focus, .gform_previous_button:active {
	background: #007a56 !important;
	border-color: #007a56 !important;
	color: #fff !important;
}
/* buttons: white bg */
.BtnWhite, .BtnWhite:link, .BtnWhite:visited {
	background: #fff;
	color: #004f37;
}
.BtnWhite:hover, .BtnWhite:focus, .BtnWhite:active {
	background: #007a56;
	color: #fff;
}
/* buttons: misc. */
button, button svg {
	transition: all .3s;
}
.acf-map button {
	border-radius: 0;
}
button.NoBtnStyle {
	color: inherit;
	padding: 0;
	border: none;
	background: none;
	cursor: pointer;
}
@media only screen and (min-width: 600px) {
	a.wp-block-button__link, a.wp-block-button__link:link, a.wp-block-button__link:visited,
	button:not(.NoBtnStyle), .Btn, .Btn:link, .Btn:visited, input[type="submit"], input[type="button"] {
		padding: 20px 50px;
	}
}

/* button: skip link */
a[href="#MainContent"] {
    position: fixed;
    top: -300px;
    left: 0px;
    transition: all .3s, top 1s ease-out;
    z-index: 2000;
}
a[href="#MainContent"]:focus {
    top: 0px;
    transition: all .3s, top .1s ease-in;
}

/* block: image */
.wp-block-image a, .wp-block-image img, svg {
	display: block;
}
.wp-block-image img {
	margin: 0 auto;
}
/* block: image: captions */
.wp-block-image figcaption {
	color: inherit;
	margin: 0;
	padding: .5em;
	border: 1px solid #004f37;
	border-top: none;
}
/* block: gallery */
.mgl-square {
	width: calc(100% + 20px) !important;
}
.mgl-square .mgl-item {
	width: 33.33% !important;
    padding-bottom: 33.33% !important;
}

/* block: gallery: captions */
.blocks-gallery-caption {
	width: 100%;
	color: inherit;
	padding: .5em;
	border: 1px solid #004f37;
}
/* image: photo credit */
.PhotoCredit {
    position: absolute;
    bottom: 5px;
    left: 5%;
    width: 90%;
    text-align: center;
    font-size: 10px;
    color: #fff;
    text-shadow: 1px 1px rgba(0,0,0,.5);
    opacity: .8;
}

/* image: logo list */
.LogoList {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	margin: -5px;
}
.LogoList li {
	margin: 5px;
}
.LogoList img {
	display: block;
	max-width: 150px;
	max-height: 150px;
}

/* forms */
input:not([type="radio"]):not([type="checkbox"]), select, textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border-radius: 0;
}
input:not([type="radio"]):not([type="button"]):not([type="reset"]):not([type="submit"]),
select:not(.ui-datepicker-month):not(.ui-datepicker-year) {
	line-height: 1;
}
input:not([type="radio"]):not([type="button"]):not([type="reset"]):not([type="submit"]),
select:not(.ui-datepicker-month):not(.ui-datepicker-year),
textarea {
	border: 1px solid #cfcfc9;
	border-radius: 2px;
	color: #828282;
	background-color: #fff;  /* must be included for input[type="file"] */
	padding: 10px 15px !important;
	transition: all .3s;
}
input:not([type="radio"]):not([type="button"]):not([type="reset"]):not([type="submit"]):focus,
select:not(.ui-datepicker-month):not(.ui-datepicker-year):focus,
textarea:focus {
	border-color: #004f37;
}
::placeholder {
	color: #2d2d2d;
}
/* forms: Gravity Forms */
body .gform_wrapper ul li.gfield:first-of-type,
body .gform_wrapper ul li.gfield.gf_right_half:nth-of-type(2) {  /* first field */
	margin-top: 0 !important;
}
.gform_wrapper label.gfield_label, .gform_wrapper legend.gfield_label {  /* labels */
}
.gform_wrapper .field_sublabel_below .ginput_complex.ginput_container label {  /* sublabels */
}
.gform_wrapper .gfield_required {  /* required asterisk */
}
.gform_wrapper.gravity-theme .gform_footer {
	flex-wrap: wrap;
}
.grecaptcha-badge {  /* invisible reCAPTCHA badge */
	visibility: hidden;
	/* if hidden, must include: This site is protected by reCAPTCHA and the Google <a href="https://policies.google.com/privacy" target="_blank" rel="noopener">Privacy Policy</a> and <a href="https://policies.google.com/terms" target="_blank" rel="noopener">Terms of Service</a> apply.*/
}
.GfCaptchaLegal {
	flex-basis: 100%;
	margin-top: 20px;
}
.gform_wrapper div.validation_error {  /* error: message above form */
	border: none !important;
}
.gform_wrapper li.gfield.gfield_error, .gform_wrapper li.gfield.gfield_error.gfield_contains_required.gfield_creditcard_warning {  /* error: wrapper around each field */
	padding-top: 0 !important;
	border: none !important;
	background: none !important;
}
.gform_wrapper li.gfield.gfield_error.gfield_contains_required label.gfield_label {  /* error: wrapper around label */
	margin-top: 0 !important;
}

/* text meant only for screen readers */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
}
.screen-reader-text:hover,
.screen-reader-text:focus,
.screen-reader-text:active {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: bold;
	height: auto;
	left: .5em;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: .5em;
	width: auto;
	z-index: 100000; /* above WP toolbar */
}

/* site header */
body.NavOpen {
	overflow: hidden;
}
#TopNote {
	display: none;
	position: relative;
	padding-top: 10px;
	padding-bottom: 10px;
}
#TopNote p {
	padding-right: calc(5% + 20px);
}
#TopNoteX {
	position: absolute;
	width: 30px;
	height: 40px;
	right: calc(5% - 10px);
	top: 50%;
	transform: translateY(-50%);
}
#TopNoteX:hover, #TopNoteX:active, #TopNoteX:focus {
	opacity: .5;
}
#TopNoteX svg {
	width: 20px;
	height: 20px;
	fill: #fff;
}
#SiteHeadNav {
	height: 60px;
}
#SiteHeadNav > div {
	height: 100%;
}
.TopLogo {
	position: absolute;
	left: 5%;
	top: 50%;
	transform: translateY(-50%);
	max-width: calc(100% - 70px);
	z-index: 500;
}

/* top nav: hamburger */
#HamburgerBtn {
    position: absolute;
    width: 40px;
    height: 60px;
    top: 0;
    right: calc(5% - 7.5px);
    background: #f4f3e7;
    z-index: 500;
}
#Hamburger {
	position: relative;
    height: 25px;
    width: 25px;
}
#Hamburger div {
    position: absolute;
    width: 25px;
    height: 4px;
    left: 0;
    background: #004f37;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}
#Hamburger div.first {
    top: 0;
}
#Hamburger div.second {
    top: calc(50% - 2px);
}
#Hamburger div.third {
    top: calc(100% - 4px);
}
#HamburgerBtn.NavOpen div.first {
    top: calc(50% - 2px);
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    transform: rotate(135deg);
}
#HamburgerBtn.NavOpen div.second {
    opacity: 0;
}
#HamburgerBtn.NavOpen div.third {
    top: calc(50% - 2px);
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    transform: rotate(-135deg);
}
/* top nav: menu */
#NavFrame {
	position: fixed;
	width: 100%;
	height: calc(100% - 60px);
	top: 60px;
	left: 100%;
	padding: 20px 5% 80px;
	background: #fff;
	opacity: 0;
	z-index: 500;
	transition: opacity .3s;
}
#NavFrame.NavOpen {
	left: 0;
    opacity: 1;
}
#NavMenu {
	max-height: 100%;
    overflow: auto;
}
#NavMenu > li {
	display: block;
	margin-bottom: 10px;
}
#NavMenu > li:last-child {
	margin-bottom: 0;
}
#NavMenu > li > a {
	font-size: 20px;
	font-weight: bold;
}
#NavMenu a, #NavMenu a:link, #NavMenu a:visited {
	text-decoration: none;
}
#NavMenu a[aria-current="page"] {
	color: #007a56;
}
#NavMenu a:hover, #NavMenu a:focus, #NavMenu a:active {

}
#NavMenu a[href="#"] {
    cursor: default;
	color: #004f37 !important;
}
/* top nav: submenu */
#NavMenu .sub-menu a {
	font-size: 18px;
}
/* top nav: extras */
#NavExtras {
	position: absolute;
	bottom: 5px;
	width: 90%;
}
#NavExtraContact a {
	display: block;
	width: 100%;
	text-align: center;
}
/* top nav: contact pg */
#NavExtraContactOnContactPg img {
	display: none;
}
#NavExtraContactOnContactPg svg {
	width: 15px;
	height: 15px;
	fill: #004f37;
	margin-right: 10px;
}
#NavExtraContactOnContactPg a {
	line-height: 60px;
}
#NavExtraContactOnContactPg a:hover svg, #NavExtraContactOnContactPg a:active svg, #NavExtraContactOnContactPg a:focus svg {
	fill: #007a56;
}
@media only screen and (min-width: 481px) {
	/* same as non contact min-width 1100px...since we just need to show it earlier on these pages */
	#NavFrame.ContactPgNavFrame {
		position: absolute;
		width: 90%;
		top: 0;
		left: 5%;
		height: 60px;
		opacity: 1;
		background: none;
		padding: 0;
	}
	#NavFrame.ContactPgNavFrame #NavExtras {
		display: flex;
		bottom: initial;
		width: auto;
		top: 50%;
		transform: translateY(-50%);
		right: 0;
	}
}
@media only screen and (min-width: 1100px) {
	/* site header */
	#SiteHeadNav {
		height: 90px;
	}
	.TopLogo {
		z-index: 501;
	}
	/* top nav: hamburger */
	#HamburgerBtn {
        display: none;
    }
	/* top nav: menu */
	#NavFrame, #NavFrame.NavOpen {
		position: absolute;
		width: 90%;
		top: 0;
		left: 5%;
		height: 90px !important;
		opacity: 1;
		background: none;
		padding: 0;
	}
	#NavMenu {
		width: fit-content;
		height: 100%;
		margin: 0 auto;
		overflow: visible;
	}
	#NavMenu > li {
		height: 100%;
		display: inline-block;
		position: relative;
		margin-right: 20px;
		margin-bottom: 0;
	}
	#NavMenu > li:last-child {
		margin-right: 0;
	}
	#NavMenu > li > a {
		line-height: 90px;
		display: inline-block;
		font-size: 16px;
	}
	#NavMenu a[href="#"] {
		cursor: pointer;
	}
	#NavMenu > li.menu-item-has-children > a::after {  /* triangle */
		content: '';
		display: inline-block;
		position: relative;
		top: -2px;
		width: 0;
		height: 0;
		border-style: solid;
		border-width: 5px 4px 0 4px;
		border-color: #92b1a1 transparent transparent transparent;
		margin-left: 5px;
	}
	/* top nav: submenu */
	#NavMenu .sub-menu {
		position: absolute;
		min-width: 160px;
		top: -5000px;
		left: -20px;
		padding: 20px;
		background: #fff;
		margin: 0;
		text-align: left;
		z-index: 200;
		border: 1px solid #004f37;
		border-radius: 2px;
		opacity: 0;
		transition: opacity .5s;
	}
	#NavMenu .sub-menu.shown {
		top: 70px;
		opacity: 1;
	}
	#NavMenu .sub-menu li:not(:last-child) {
		margin-bottom: 15px;
	}
	#NavMenu .sub-menu a {
		white-space: nowrap;
		font-size: 16px;
		font-weight: bold;
	}
	/* top nav: extras */
	#NavExtras {
		display: flex;
		bottom: initial;
		width: auto;
		top: 50%;
		transform: translateY(-50%);
		right: 0;
	}
	#NavExtraContact {
		width: auto;
	}
	#NavExtraContact a {
		padding: 15px 50px;
	}
	/* top nav: contact pg */
	#NavExtraContactOnContactPg img {
		display: block;
		width: 70px;
		height: 70px;
		border-radius: 50%;
		margin-right: 10px;
	}
	#NavExtraContactOnContactPg a {
		line-height: 90px;
	}
}
@media only screen and (min-width: 1300px) {
	#NavMenu > li {
		margin-right: 40px;
	}
}
@media only screen and (min-width: 1500px) {
	#NavMenu > li {
		margin-right: 60px;
	}
}

/* site footer */
footer {
	background-image: url(../img/peas.png);
    background-repeat: no-repeat;
    background-position: 98% calc(100% - 40px);
}
.FootReviews {
	padding: 15px 0;
	background: #007a56;
	background: linear-gradient(90deg, #004f37 0%, #007a56 100%);
}
.StarsFrame {
	height: 14px;
	background: url(../img/star.svg) repeat-x left center;
	margin-right: 10px;
}
.StarsFrame[data-stars="3"] {
	width: 48px;
}
.StarsFrame[data-stars="3.5"] {
	width: 58px;
}
.StarsFrame[data-stars="4"] {
	width: 64px;
}
.StarsFrame[data-stars="4.5"] {
	width: 74px;
}
.StarsFrame[data-stars="5"] {
	width: 80px;
}
.FootColumns > * {
	margin-bottom: 30px;
}
.FootColumns > *:nth-last-child(1) {
	margin-bottom: 0;
}
.FootColumns h5 {
	margin-bottom: 20px;
}
.FootInfoTxt {
	line-height: 2;
}
.SocialList {
	margin: 20px -10px -10px !important;
}
.SocialList li {
	display: inline-block;
}
.SocialList li a {
	width: 40px;
	height: 40px;
}
.SocialList svg {
	width: 20px;
	height: 20px;
	fill: #fff;
	transition: all .3s;
}
.FootLinkList li:not(:last-child) {
	margin-bottom: 10px;
}
.FootLegal {
	padding: 10px 0;
}
@media only screen and (min-width: 481px) {
	.FootColumns {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		align-items: stretch;
	}
	.FootColumns > *:nth-child(1) {
		flex-basis: 100%;
	}
	.FootColumns > *:not(:nth-child(1)) {
		flex-basis: 47.5%;
	}
	.FootColumns > *:nth-last-child(2) {
		margin-bottom: 0;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1199px) {
	.FootColumns > *:nth-child(1), .FootColumns > *:nth-child(5) {
		flex-basis: 47.5%;
		margin-bottom: 30px;
	}
	.FootColumns > *:not(:nth-child(1)):not(:nth-child(5)) {
		flex-basis: 30%;
		margin-bottom: 0;
	}
	.FootColumns > *:nth-child(1) {
		order: 1;
	}
	.FootColumns > *:nth-child(2) {
		order: 3;
	}
	.FootColumns > *:nth-child(3) {
		order: 4;
	}
	.FootColumns > *:nth-child(4) {
		order: 5;
	}
	.FootColumns > *:nth-child(5) {
		order: 2;
	}
}
@media only screen and (min-width: 1200px) {
	.FootColumns > * {
		flex-basis: 18.4% !important;
		margin-bottom: 0 !important;
	}
}

/* archives */
.PostThumb {
	box-shadow: 0 0 10px rgba(0,0,0,.1);
}
.PostThumb a {
	height: 100%;
	border: 1px solid transparent;
}
.PostThumb a:hover, .PostThumb a:active, .PostThumb a:focus {
	border-color: #004f37;
}
.PostThumbImg {
	width: 100%;
}
.PostCats {
	position: absolute;
	top: 20px;
	left: 30px;
	width: calc(100% - 60px);
}
.PostCats span {
	padding: 10px;
	border-radius: 16px;
	line-height: 1;
	white-space: nowrap;
}
.PostCats span:not(:last-child) {
	margin: 0 5px 5px 0;
}
.PostThumbTxt {
	padding: 20px 30px 60px;
}
.PostThumb .ArrowRightSVG {
	position: absolute;
	bottom: 30px;
	left: 30px;
	transition: all .3s;
}
.PostThumb a:hover .ArrowRightSVG, .PostThumb a:active .ArrowRightSVG, .PostThumb a:focus .ArrowRightSVG {
	left: 40px;
}

/* archives: pagination */
.PaginationFrame > div {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: -10px;
}
.PaginationFrame .Btn {
	margin: 10px;
}
@media only screen and (min-width: 481px) {
	.PaginationFrame > div {
		margin: -15px;
	}
	.PaginationFrame .Btn {
		margin: 15px;
	}
}

/* single: post */
.PostHeroSection img {
	margin: 0 auto;
}
.PostHeadMeta {
	width: fit-content;
	margin: 0 auto;
	align-items: center;
}
.PostHeadMeta img {
	border-radius: 50%;
	width: 60px;
	height: 60px;
	margin-right: 20px;
}
.single-post [itemprop="articleBody"] > .Width1300,
.single-post [itemprop="articleBody"] > .wp-block-image.size-1300x700 {
	margin-top: 40px;
}

.single-post [itemprop="articleBody"] > .Width1300:not(:last-child),
.single-post [itemprop="articleBody"] > .wp-block-image.size-1300x700:not(:last-child) {
	margin-bottom: 40px;
}
.SharePostSection {
	width: fit-content;
    margin-left: auto;
    margin-right: auto;
}
.SharePostFrame a {
	float: left;
	width: 40px;
	height: 40px;
	margin-right: 5px;
	border-radius: 50%;
}
.SharePostFrame a:last-child {
	margin-right: 0;
}
.SharePostFrame a.ShareFacebook {
	background: #3B5998;
}
.SharePostFrame a.ShareTwitter {
	background: #38A1F3;
}
.SharePostFrame a.SharePinterest {
	background: #C8232C;
}
.SharePostFrame a.ShareLinkedIn {
	background: #0077B5;
}
.SharePostFrame a.ShareEmail {
	background: #004f37;
}
.SharePostFrame a:hover, .SharePostFrame a:focus, .SharePostFrame a:active {
	background: #007a56;
}
.SharePostFrame svg {
    width: 15px;
    height: 15px;
    fill: #fff;
}
.RelatedPostsSection {
	padding-left: 5%;
	padding-right: 5%;
}
@media only screen and (min-width: 768px) {
	.RelatedPostsSection {
		padding-left: 7%;
		padding-right: 7%;
	}
}

/* block: hero */
.HeroTxt {
	padding: 40px 5% 0;
}
@media only screen and (min-width: 768px) and (max-width: 1199px) {
	.HeroTxt h1 {
		font-size: 40px;
	}
}
@media only screen and (min-width: 900px) {
	.HeroTxt {
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		left: 0;
		max-width: 500px;
		max-height: 98%;
		padding: 40px 50px 40px 40px;
		box-shadow: 3px 3px 3px rgba(0,0,0,.15);
		overflow: auto;
	}
}
@media only screen and (min-width: 1200px) {
	.HeroTxt {
		padding: 50px 60px 50px 40px;
	}
}

/* block: image & contained text box */
.ImgContTxtBlock .BgWhite,
.TabbedImgDescBlock .BgWhite,
.MapBlock .BgWhite {
	padding-top: 20px;
}
@media only screen and (min-width: 900px) {
	.ImgContTxtBlock .BgWhite,
	.TabbedImgDescBlock .BgWhite,
	.MapBlock .BgWhite {
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		right: 0;
		max-width: 460px;
		padding: 40px;
		box-shadow: -2px 0 2px rgba(0,0,0,.2);
	}
}

/* block: map */
.acf-map {
	height: 300px;
}
.acf-map img {
    max-width: inherit !important;  /* fix img sizes */
}
.MapAddressFrame {
	margin-top: 20px;
	padding-left: 25px;
}
.MapAddressFrame p {
	margin-bottom: 5px;
}
.LocationSVG {
	position: absolute;
	top: 0;
	left: 0;
	fill: #004f37;
}
@media only screen and (min-width: 768px) {
	.acf-map {
		height: 500px;
	}
}
@media only screen and (min-width: 900px) {
	.acf-map {
		height: 700px;
	}
}

/* block: image & quote */
.ImgQuoteBlock::after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,.35);
	z-index: 2;
}
.page-id-2570 .ImgQuoteBlock::after {
	background: rgba(0,0,0,.05);
}
.ImgQuoteBlock img {
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	z-index: 1;
}
.ImgQuoteTxt {
	position: relative;
	padding: 60px 5%;
	max-width: 980px;
	text-shadow: 1px 1px rgba(0,0,0,.5);
	z-index: 3;
}
.ImgQuoteTxt .TxSz50 {
	line-height: 1.2;
	margin-bottom: 20px;
}
@media only screen and (min-width: 768px) {
	.ImgQuoteBlock {
		display: flex;
		align-items: center;
		min-height: 700px;
	}
}

/* block: special links, & team */
.SpecialLinksList,
.TeamList {
	margin-bottom: -20px !important;
}
.SpecialLinksList li,
.TeamList li:not([aria-hidden="true"]) {
	margin-bottom: 20px;
}
.TeamList li {
	text-align: center;
}
.SpecialLinksList a > img,
.TeamList a > img {
	width: 100%;
}
@media only screen and (min-width: 481px) {
	.SpecialLinksBlock::before,
	.TeamBlock::before {
		content: '';
		display: block;
		position: absolute;
		top: 0;
		right: 0;
		width: 50%;
		height: 100%;
		background: #f4f3e7;
	}
	.SpecialLinksList,
	.TeamList {
		display: flex;
		flex-wrap: wrap;
		align-content: stretch;
		justify-content: space-between;
	}
	.SpecialLinksList li,
	.TeamList li {
		flex-basis: 47.5%;  /* 5% gutter */
	}
}
@media only screen and (min-width: 768px) {
	.SpecialLinksIntro,
	.TeamIntro {
		width: 47.5%;
	}
	.SpecialLinksList,
	.TeamList {
		margin-bottom: -40px !important;
	}
	.SpecialLinksList li,
	.TeamList li {
		flex-basis: 29%;  /* 6.5% gutter */
	}
	.SpecialLinksList li[data-sum="4"] {
		flex-basis: 32%;  /* 2% gutter */
	}
	.SpecialLinksList li[data-sum="4"]:not(:last-child) {
		margin-bottom: 2%;
	}
	.SpecialLinksList li,
	.TeamList li:not([aria-hidden="true"]) {
		margin-bottom: 40px;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1199px) {
	.SpecialLinksList li[data-sum="4"]:last-child {
		flex-basis: 100%;
	}
}
@media only screen and (min-width: 1200px) {
	.SpecialLinksList li[data-sum="4"] {
		flex-basis: 23.5%;  /* 2% gutter */
		margin-bottom: 40px !important;
	}
}

/* block: staggered links */
.StaggeredLinksBlock h2, .StaggeredLinksBlock h3 {
	margin-bottom: 10px;
}
.StaggeredLinksList li:not(:last-child) {
	margin-bottom: 40px;
}
.StaggeredLinksList li > div {
	margin-bottom: 20px;
}
.StaggeredLinksList img {
	width: 100%;
}
.StaggeredLinksList .BgWhite {
	padding-top: 20px;
}
.StaggeredLinksList .Btn {
	float: right;
}
@media only screen and (min-width: 768px) {
	.StaggeredLinksIntro {
		width: 46%;
	}
	.StaggeredLinksList li > div {
		margin-bottom: 40px;
	}
	.StaggeredLinksList li {
		width: 46%;
	}
	.StaggeredLinksList li:nth-child(2) {
		position: absolute;
		top: 0;
		right: 0;
	}
}
@media only screen and (min-width: 900px) {
	.StaggeredLinksIntro {
		width: 30%;
	}
}
@media only screen and (min-width: 1200px) {
	.StaggeredLinksList .BgWhite {
		position: absolute;
		width: 83%;
		left: 0;
		bottom: 0;
		padding-right: 20px;
	}
}

/* block: buttons */
.ButtonsBlock > div,
.CtaBlock .Width1300 > div,
.TabList,
.CatNav {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-bottom: -10px;
}
.ButtonsBlock .Btn,
.CtaBlock .Btn,
.TabList [role="tab"],
.CatNav a {
	margin: 0 10px 10px 10px;
}
@media only screen and (min-width: 768px) {
	article > p + .ButtonsBlock {
		margin-top: 60px !important;
	}
}
@media only screen and (min-width: 1200px) {
	.ButtonsBlock .Btn,
	.CtaBlock .Btn,
	.TabList [role="tab"],
	.CatNav a {
		margin-left: 20px;
		margin-right: 20px;
	}
}

/* block: tabbed galleries */
.TabContents {
	padding-top: 20px;
}
.CtaPopupBtn {
	display: flex !important;
    align-items: center;
    justify-content: center;
	margin-bottom: 20px;
	width: 100%;
}
.CtaPopupBtn svg {
	margin-left: 10px;
}
.CtaPopupBtn svg * {
	fill: #fff;
}

/* block: tabbed menus */
.TabbedMenusBlock .Width1800 {
	padding-top: 20px;
}
.TabbedMenusBlock .TabList {
	margin-bottom: -10px;
}
.MenuSection:not(:last-child) .Width1300 {
	border-bottom: 2px dotted #d7d6cc;
}
.MenuSectionTitle {
	padding-bottom: 20px;
	margin-bottom: 20px;
}
.MenuSectionTitle::after {
	content: '';
	position: absolute;
	left: calc(50% - 25px);
	bottom: 0;
	width: 50px;
	height: 2px;
	background: #004f37;
}
.MenuItemList li:not(:last-child) {
	margin-bottom: 20px;
}
.MenuLeekFrame, .MenuBeetFrame, .MenuGrapesFrame {
	display: none;
}
@media only screen and (min-width: 768px) {
	.MenuSectionTitle {
		padding-bottom: 40px;
		margin-bottom: 40px;
	}
	.MenuItemList li:not(:last-child) {
		margin-bottom: 40px;
	}
	.MenuSection {
		overflow: hidden;
	}
	.MenuLeekFrame, .MenuBeetFrame, .MenuGrapesFrame {
		display: block;
		position: absolute;
		width: 100%;
		max-width: 1440px;
		left: 50%;
		transform: translateX(-50%);
		overflow-x: hidden;
		bottom: 80px;
	}
	.MenuLeekFrame {
		height: 466px;
	}
	.MenuBeetFrame {
		height: 531px;
	}
	.MenuGrapesFrame {
		height: 529px;
	}
	.MenuLeek, .MenuBeet, .MenuGrapes {
		position: absolute;
		z-index: 1;
		top: 0;
	}
	.MenuLeek {
		left: -100px;
	}
	.MenuBeet {
		right: -200px;
	}
	.MenuGrapes {
		left: -175px;
	}
}
@media only screen and (min-width: 900px) {
	.MenuLeek {
		left: -50px;
	}
	.MenuBeet {
		right: -100px;
	}
	.MenuGrapes {
		left: -100px;
	}
}
@media only screen and (min-width: 1200px) {
	.MenuLeek {
		left: 0;
	}
	.MenuBeet {
		right: 0;
	}
	.MenuGrapes {
		left: 0;
	}
}

/* block: tabbed image & desc */
.TabbedImgDescBlock .Width640 {
	padding-bottom: 40px;
}

/* block: reviews */
.ReviewsIntroStars {
	margin-top: 20px;
}
.ReviewsBlock > .Width1800 > .PosRelative {
	padding-bottom: 70px;
}
.ReviewsBlock .slick-arrow {
	position: absolute;
	top: calc(100% - 50px);
	width: 50px;
	height: 50px;
	border: 1px solid #bfd3cd;
	border-radius: 50%;
	z-index: 2;
}
.ReviewsBlock .slick-prev {
	left: 5%;
}
.ReviewsBlock .slick-next {
	right: 5%;
}
.ReviewsBlock .slick-arrow svg {
	width: 15px;
	height: 15px;
}
.ReviewsBlock .slick-arrow svg * {
	fill: #bfd3cd;
	transition: all .3s;
}
.ReviewsBlock .slick-arrow:hover, .ReviewsBlock .slick-arrow:active {
	border-color: #007a56;
}
.ReviewsBlock .slick-arrow:hover svg *, .ReviewsBlock .slick-arrow:active svg * {
	fill: #007a56;
}
.ReviewsSliderFrame {
	width: calc(90% + 20px);
}
.ReviewsSlider .slick-track {
	display: flex;
	align-items: stretch;
}
.ReviewsSlider .slick-slide {
	height: auto;
	padding: 20px;
	box-shadow: 0 0 10px rgba(0,0,0,.1);
	margin: 10px;
}
.ReviewAuthorFrame {
	margin-bottom: 30px;
}
.ReviewAuthorFrame > div > *:not(:last-child) {
	margin-bottom: 5px;
}
.ReviewAuthorImgDefault,
.ReviewAuthorImgPerson,
.ReviewAuthorImgNetwork {
	border-radius: 50%;
	margin-right: 20px;
}
.ReviewAuthorImgDefault,
.ReviewAuthorImgNetwork {
	background: #f4f3e7;
	padding: 8px;
}
.ReviewAuthorFrame .TxSz12 {
	opacity: .6;
}
.ReviewsGarlic, .ReviewsCarrot {
	display: none;
}
@media only screen and (min-width: 481px) {
	.ReviewsBlock::before {
		content: '';
		display: block;
		position: absolute;
		top: 0;
		right: 0;
		width: 50%;
		height: 100%;
		background: #f4f3e7;
	}
	.ReviewsSliderFrame {
		width: calc(90% + 40px);
	}
	.ReviewsSlider .slick-slide {
		margin: 10px 20px;
	}
}
@media only screen and (min-width: 900px) {
	.ReviewsIntroTxt {
		width: 47.5%;
	}
	.ReviewsIntroStars {
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		right: 0;
		margin: 0;
		z-index: 3;
	}
	.ReviewsBlock > .Width1800 > .PosRelative {
		z-index: 2;
	}
	.ReviewsGarlic, .ReviewsCarrot {
		display: block;
		position: absolute;
		z-index: 1;
	}
	.ReviewsGarlic {
		bottom: -100px;
		left: 30px;
	}
	.ReviewsCarrotFrame {
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		left: 0;
		width: 100%;
		height: 1023px;
		overflow-x: hidden;
	}
	.ReviewsCarrot {
		top: 0;
		right: -180px;
	}
}
@media only screen and (min-width: 1200px) {
	.ReviewsSliderFrame {
		width: calc(90% + 90px);
		max-width: 1390px;
	}
	.ReviewsSlider .slick-slide {
		padding: 30px;
		margin: 10px 45px;
	}
}
@media only screen and (min-width: 1400px) {
	.ReviewAuthorFrame > div {
		width: 100%;
	}
	.ReviewAuthorFrame h4.WithDate {
		max-width: calc(100% - 80px);
	}
	.ReviewAuthorFrame .TxSz12 {
		position: absolute;
		top: 5px;
		right: 0;
	}
}
@media only screen and (min-width: 1500px) {
	.ReviewsBlock > .Width1800 > .PosRelative {
		padding-bottom: 0;
	}
	.ReviewsBlock .slick-arrow {
		top: calc(50% - 25px);
	}
	.ReviewsBlock .slick-prev {
		left: 20px;
	}
	.ReviewsBlock .slick-next {
		right: 20px;
	}
}
@media only screen and (min-width: 1800px) {
	.ReviewsCarrot {
		right: calc(50% - 1080px);
	}
}
@media only screen and (min-width: 1850px) {
	.ReviewsBlock .slick-prev {
		left: 0;
	}
	.ReviewsBlock .slick-next {
		right: 0;
	}
}

/* block: accordion */
.AccordionList li {
	border-top: 1px solid #eeecec;
}
.AccordionList li:last-child {
	border-bottom: 1px solid #eeecec;
}
button.AccordionControl {
	position: relative;
	width: 100%;
	text-align: left;
	padding: 25px 35px 25px 0;
	color: #004f37;
}
button.AccordionControl:hover, button.AccordionControl:active {
	text-decoration: underline;
}
button.AccordionControl span {
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 10px;
	height: 10px;
	transition: all .3s;
}
button.AccordionControl span::before, button.AccordionControl span::after {
	content: '';
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: #004f37;
	transition: all .3s;
}
button.AccordionControl span::before {  /* vertical line */
	width: 2px;
	height: 10px;
}
button.AccordionControl span::after {  /* horizontal line */
	width: 10px;
	height: 2px;
}
button.AccordionControl.open span::before {
	transform: translate(-50%, -50%) rotate(90deg);
}
.AccordionContent {
	display: none;
	padding-bottom: 15px;
	margin-top: -10px;
}
.AccordionBeetFrame {
	display: none;
}
@media only screen and (min-width: 900px) {
	.AccordionBeetFrame {
		display: block;
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		left: 0;
		width: 100%;
		height: 1140px;
		overflow-x: hidden;
		z-index: -1;
	}
	.AccordionBeet {
		display: block;
		position: absolute;
		z-index: 1;
		top: 0;
		left: -400px;
	}
}
@media only screen and (min-width: 1700px) {
	.AccordionBeet {
		left: -269px;
	}
}
@media only screen and (min-width: 1800px) {
	.AccordionBeet {
		left: calc(50% - 1169px);
	}
}

/* block: partners */
.PartnersBlock li {
	padding: 20px;
}
.PartnersBlock li > .DisplayFlex {
	max-height: 100px;
	max-width: 100px;
	margin: 0 auto 10px;
}
.PartnersBlock img {
	max-height: 200px;
}
@media only screen and (min-width: 481px) {
	.PartnersBlock li > .DisplayFlex {
		height: 100px;
		margin-bottom: 20px;
	}
}
@media only screen and (min-width: 768px) {
	.PartnersBlock li > .DisplayFlex {
		height: 200px;
		max-height: 200px;
		max-width: 200px;
	}
}

/* block: venues */
.VenuesBlock > .BgTan:first-child {
	border-top: 1px solid #fff;
	overflow: hidden;
}
.VenuesIntro {
	padding-top: 40px;
	padding-bottom: 60px;
}
.PrimaryVenueList {
	margin-top: -20px;
}
.PrimaryVenueList > li:not(:last-child) {
	margin-bottom: 40px;
}
.PrimaryVenueList > li > div {
	padding-top: 20px;
	max-width: 600px;
}
.SecondaryVenueList li:not([aria-hidden="true"]) {
	border-top: 1px solid #d7d6cc;
}
.SecondaryVenueList li:nth-child(1) {
	border-top: none;
}
.SecondaryVenueList a {
	padding: 20px 30px 20px 0;
}
.SecondaryVenueList a:hover, .SecondaryVenueList a:active, .SecondaryVenueList a:focus {
	color: #007a56;
}
.SecondaryVenueList a svg {
	position: absolute;
	right: 0;
	top: calc(50% - 5.5px);
}
.SecondaryVenueList a svg * {
	transition: all .3s;
}
.SecondaryVenueList a:hover svg *, .SecondaryVenueList a:active svg *, .SecondaryVenueList a:focus svg * {
	fill: #007a56;
}
@media only screen and (min-width: 481px) {
	.VenuesIntro {
		padding-top: 60px;
		padding-bottom: 80px;
	}
	.SecondaryVenueList li:nth-child(2) {
		border-top: none;
	}
}
@media only screen and (min-width: 768px) {
	.VenuesIntro {
		width: 50%;
		padding-top: 80px;
		padding-bottom: 100px;
	}
	.PrimaryVenueList {
		margin-top: 40px;
	}
	.PrimaryVenueList > li {
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	.PrimaryVenueList > li > img {
		width: 46.153846%;
	}
	.PrimaryVenueList > li > div {
		flex-basis: 47.5%;
		padding-top: 0;
		max-width: none;
	}
	.SecondaryVenueList li:nth-child(3) {
		border-top: none;
	}
}
@media only screen and (min-width: 900px) {
	.VenuesIntro {
		padding-top: 120px;
		padding-bottom: 120px;
	}
}
@media only screen and (min-width: 1200px) {
	.VenuesIntro {
		width: 30%;
		padding-bottom: 140px;
	}
	.PrimaryVenueList {
		margin-top: -40px;
	}
}

/* block: venue intro & gallery */
.VenueIntroGalleryBlock .Width980 {
	padding-bottom: 40px;
}
.CeoPhoto {
	border-radius: 50%;
}

/* block: about pg intro */
.AboutPgIntroTop > *:nth-child(1) {
	margin-bottom: 40px;
}
.AboutPgIntroBtm .BgWhite {
	padding-top: 30px;
}
@media only screen and (min-width: 768px) {
	.AboutPgIntroTop {
		display: flex;
		justify-content: space-between;
	}
	.AboutPgIntroTop > *:nth-child(1) {
		flex-basis: 30%;
		margin: 0;
	}
	.AboutPgIntroTop > *:nth-child(2) {
		flex-basis: 60%;
	}
	.AboutPgIntroBtm .PhotoCredit {
		text-align: left;
	}
	.AboutPgIntroBtm .BgWhite {
		width: 67%;
		margin-left: 33%;
		padding: 40px 0 0 40px;
		margin-top: -100px;
	}
}
@media only screen and (min-width: 1200px) {
	.AboutPgIntroBtm .BgWhite {
		padding: 90px 0 0 90px;
		margin-top: -200px;
	}
}

/* block: team */
.TeamThumb {
	box-shadow: 0 0 10px rgba(0,0,0,.1);
}
.TeamThumbBtn {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	height: 100%;
	border: 1px solid transparent !important;
	text-align: left;
}
.TeamThumbBtn:hover, .TeamThumbBtn:active, .TeamThumbBtn:focus {
	border: 1px solid #004f37 !important;
}
.TeamThumbTxt {
	padding: 20px 30px 60px;
}
.TeamThumbBtn .ArrowRightSVG {
	position: absolute;
	bottom: 30px;
	left: 30px;
	transition: all .3s;
}
.TeamThumbBtn:hover .ArrowRightSVG, .TeamThumbBtn:active .ArrowRightSVG, .TeamThumbBtn:focus .ArrowRightSVG {
	left: 40px;
}
#TeamPopupBio p:not(:last-child) {
	margin-bottom: 1em;
}

/* block: contact pg form */
.ContactPgFormBlock > .PadBtm60 {
	padding-top: 20px;
	border-top: 1px solid #eeecec;
}
.ContactPgFormBlock #gf_page_steps_8 {
	display: none;
}
.ContactPgFormBlock #gf_page_steps_8.show {
	display: inline-flex;
	justify-content: center;
	flex-wrap: wrap;
	border: none;
	margin: -10px;
}
.ContactPgFormBlock .gf_step {
	margin: 10px !important;
}
.ContactPgFormBlock .gf_step_number {
	display: none !important;
}
.ContactPgFormBlock .gf_step_label {
	padding-left: 0 !important;
	font-weight: bold !important;
	color: #828282 !important;
}
.ContactPgFormBlock .gf_step.gf_step_completed {
	border-bottom: 2px solid #cecfc9;
}
.ContactPgFormBlock .gf_step.gf_step_completed .gf_step_label {
	color: #004f37 !important;
}
.ContactPgFormBlock input:not([type="radio"]):not([type="button"]):not([type="reset"]):not([type="submit"]),
.ContactPgFormBlock select:not(.ui-datepicker-month):not(.ui-datepicker-year) {
	width: 100%;
}
@media only screen and (min-width: 600px) {
	.ContactPgFormBlock #gf_page_steps_8.show {
		margin: -20px;
	}
	.ContactPgFormBlock .gf_step {
		margin: 20px !important;
	}
}

/* block: cta */
.CtaBlock .Width640 {
	padding-bottom: 30px;
}

/* section: subscribe */
.SubscribeSection .gform_footer {
	margin-top: 0 !important;
	padding-top: 0 !important;
	padding-bottom: 0 !important;
}
.SubscribeSection .GfCaptchaLegal {
	margin-top: 10px;
}
@media only screen and (max-width: 641px) {
	.SubscribeSection input[type="submit"] {
		width: 100%;
	}
}
@media only screen and (min-width: 642px) {
	.SubscribeSection form {
		position: relative;
	}
	.SubscribeSection .gform_body {
		height: 55px;
	}
	.SubscribeSection #gform_fields_7 {
		min-height: 55px;
	}
	.SubscribeSection #field_7_1 {
		position: absolute;
		height: 55px;
		top: 0;
		left: 0;
		width: calc(100% - 180px);
	}
	.SubscribeSection #input_7_1 {
		height: 55px;
	}
	.SubscribeSection input[type="submit"] {
		position: absolute;
		width: 165px;
		height: 55px;
		top: 0;
		right: 0;
		padding: 0;
		margin-bottom: 0 !important;
	}
}

/* popup */
.Popup {
	position: fixed;
	width: 100%;
	height: 100%;
	top: -100%;
	left: 0;
	display: flex;
    justify-content: center;
    align-items: center;
	background: rgba(255,255,255,.5);
	opacity: 0;
	z-index: 500;
	cursor: zoom-out;
}
.Popup[aria-hidden="false"] {
	top: 0;
	opacity: 1;
}
body.PopupOpen {
	overflow: hidden;
}
.PopupWindow {
	box-shadow: 0 0 10px rgba(0,0,0,.1);
	width: 94%;
	max-height: 94%;
	padding: 20px 5%;
	overflow: auto;
	cursor: default;
}
.PopupX {
	position: absolute;
    width: 40px;
    height: 40px;
	top: 0;
	right: 0;
	background: #fff;
}
.PopupX svg {
    width: 15px;
    height: 15px;
    fill: #004f37;
}
.PopupX:hover svg {
    fill: #007a56;
}
.Popup .gfield input.datepicker {
	width: 100% !important;
}
.Popup .gform_confirmation_wrapper {
	border-top: 1px solid #cfcfc9 !important;
	border-bottom: 1px solid #cfcfc9 !important;
	padding: 20px 0 !important;
	margin: 2em 0 !important;
}
@media only screen and (min-width: 768px) {
	.PopupWindow {
		max-width: 800px;
		height: auto;
		padding: 40px;
	}
}

/* block: cookies for good */
.CookiesVideo {
    position: relative;
    padding-bottom: 56.25%;
}
.CookiesVideo iframe {
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.CookiesColumns {
	background: url(../img/cookies-for-good-logo.jpg) no-repeat top 60px center;
    padding-top: 60px;
}
.CookiesLeft {
	margin-top: 100px;
	padding-top: 60px;
}
.CookiesList {
	margin: 60px 0 !important;
}
.CookiesList li:not(:last-child) {
	margin-bottom: 60px;
}
.CookieTxt {
	margin-bottom: 40px;
}
.CookieImg img {
	display: block;
}
.CookiesRight > *:not(:last-child) {
	margin-bottom: 40px;
}
.CookiesRight .LogoList {
	justify-content: flex-start;
}
@media only screen and (min-width: 768px) {
	.CookiesColumns {
		background: url(../img/cookies-for-good-cookie-dunk.jpg) no-repeat right top;
		display: flex;
		justify-content: space-between;
	}
	.CookiesLeft {
		flex-basis: 55%;
		padding-top: 0;
	}
	.CookiesList {
		margin: 60px 0 0 0 !important;
	}
	.CookiesList > li {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	.CookiesList > li .CookieTxt,
	.CookiesList > li .CookieImg {
		flex-basis: 47.5%;
		margin: 0;
	}
	.CookiesList > li:nth-child(odd) .CookieTxt {
		text-align: right;
	}
	.CookiesList > li:nth-child(even) .CookieTxt {
		order: 2;
	}
	.CookiesList > li:nth-child(even) .CookieImg {
		order: 1;
	}
	.CookiesList > li .CookieImg img {
		margin: 0 auto;
	}
	.CookiesRight {
		flex-basis: 35%;
		padding-top: 675px;
		margin-top: 60px;
	}
}
@media only screen and (min-width: 1000px) {
	.CookiesLeft {
		flex-basis: 65%;
		margin-left: 5%;
	}
	.CookiesRight {
		flex-basis: 25%;
		margin-top: 60px;
	}
}