@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 */
.Width650, .Width800, .Width1200, .Width1920, article > *:not(.CustomBlock):not(.CustomSection) {
	width: 90%;
    position: relative;
    margin-left: auto;
    margin-right: auto;
}
.Width650 {
    max-width: 650px;
}
.Width800, article > *:not(.CustomBlock):not(.CustomSection) {
    max-width: 800px;
}
.Width1200 {
    max-width: 1200px;
}
.Width1920 {
	max-width: 1920px;
}
.NoPadLR {
	width: 100%;
}
/*.PadLR {
    padding-left: 5%;
    padding-right: 5%;
}*/
article > ul, article > ol {
    padding-left: 20px !important;
}

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

/* 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 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;
}
.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 margins */
	article > *:not(.CustomBlock) + .CustomBlock,
	article > *:not(.CustomBlock) + .mgl-tiles-container,  /* Meow Gallery */
	article > *:not(.CustomBlock) + .gform_wrapper,
	footer {
		margin-top: 100px;
	}
	.CustomBlock, .SectionBtmMargin, .mgl-tiles-container {
		margin-bottom: 100px;
	}
}

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

/* colors: backgrounds */
.BgGray {
	background-color: #f8faf8;
}
.BgBlue {
	background-color: #1d3b41;
}
/*.has-gray-background-color {
    background-color: #444;
}*/
/*.has-vivid-cyan-blue-to-vivid-purple-gradient-background {
    background: linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%);
}*/
/* colors: text */
.TxCoWhite {
	color: #fff;
}
/*.has-gray-color {
    color: #444;
}*/

/* font: default */
@font-face {
	font-family: 'Montserrat';
	src: url('../font/montserrat-regular.woff2') format('woff2'),
		url('../font/montserrat-regular.woff') format('woff');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../font/montserrat-semi-bold.woff2') format('woff2'),
		url('../font/montserrat-semi-bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
	font-display: swap;
}

/* font: special */
@font-face {
    font-family: 'Gotham';
    src: url('../font/gotham-medium.woff2') format('woff2'),
		url('../font/gotham-medium.woff') format('woff');
	font-weight: bold;
	font-style: normal;
	font-display: swap;
}
.FontGotham {
    font-family: 'Gotham', 'Helvetica Neue', Helvetica, Arial, sans-serif;
	font-weight: bold;
    font-style: normal;
}

/* text: general */
body, button, input, select, textarea {
    font-family: 'Montserrat', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 15px;
    font-weight: normal;
    color: #5f6165;
    line-height: 1.5;
    /* font smoothing */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
/* text: sizes */
.TxSz12 {
    font-size: 12px;
}
.TxSz14, .has-small-font-size {
    font-size: 14px;
}
.has-regular-font-size {
    font-size: 15px;
}
.TxSz20, .has-large-font-size {
    font-size: 20px;
}
/* text: styles */
.TxUppercase {
	text-transform: uppercase;
}
/* text: headings */
h1, h2, h3, h4, h5, h6 {
	font-family: 'Gotham', 'Helvetica Neue', Helvetica, Arial, sans-serif;
	line-height: normal;
	margin-bottom: .5em;
}
h1 {
    font-size: 34px;
	text-transform: uppercase;
}
h2 {
    font-size: 34px;
	text-transform: uppercase;
}
h3 {
    font-size: 30px;
}
h4 {
    font-size: 25px;
}
h5 {
    font-size: 20px;
}
h6 {
    font-size: 18px;
}
/*@media only screen and (min-width: 768px) {
	h1 {
		font-size: 45px;
	}
	h2 {
		font-size: 40px;
	}
	h3 {
		font-size: 35px;
	}
}*/
/* quotes */
blockquote cite {
	display: block;
}
/* lists */
ul, ol {
    margin-left: 20px;
}
.NoListStyle, #NavMenu {
    list-style: none;
	margin: 0;
}
/* drop caps */
.has-drop-cap::first-letter {
	font-size: 300% !important;
	margin-top: .2em !important;
}

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

/* links */
a, a:link, a:visited {
	color: #be654e;
	text-decoration: underline;
	transition: all .3s;
}
a:hover, a:focus, a:active {
	color: #df6647;
}
/* links: borderless */
a.BorderlessLink, .BorderlessLinks a, .BorderlessLinks a:link, .BorderlessLinks a:visited,
nav a, nav a:link, nav a:visited,
a.wp-block-button__link,
.ui-datepicker a {
	text-decoration: none;
}

/* buttons */
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"] {
	display: inline-block;
	font-family: 'Gotham', 'Helvetica Neue', Helvetica, Arial, sans-serif;
	font-weight: 500;
	font-size: 13px;
	color: #fff !important;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 1px;
	text-align: center;
	padding: 15px 30px;
	background: #be654e;
	border: none;
	border-radius: 0;
	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,
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: #df6647;
}
button, button svg {
	transition: all .3s;
}
button.NoBtnStyle {
	color: inherit;
	padding: 0;
	border: none;
	background: none;
	cursor: pointer;
}

/* 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 */
figure {
	max-width: 100% !important;
}
figure.wp-block-image {
	display: inline-block;
}
.wp-block-image img, svg {
	display: block;
}
/* block: image: captions */
.wp-block-image figcaption {
	color: inherit;
	margin: 0;
	padding: .5em;
	border: 1px solid #5f6165;
	border-top: none;
}
/* block: gallery: captions */
.blocks-gallery-caption {
	width: 100%;
	color: inherit;
	padding: .5em;
	border: 1px solid #5f6165;
}
/* image: photo credit */
[data-credit] {
	position: relative;
}
[data-credit]::after {
	content: attr(data-credit);
    position: absolute;
    bottom: 5px;
    right: 10px;
    width: calc(100% - 20px);
    text-align: right;
    font-size: 10px;
    color: #fff;
    text-shadow: 1px 1px rgba(0,0,0,.5);
    opacity: .8;
}

/* forms */
label {
	font-family: 'Gotham', 'Helvetica Neue', Helvetica, Arial, sans-serif;
	font-weight: bold;
}
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="checkbox"]):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="checkbox"]):not([type="reset"]):not([type="submit"]),
select:not(.ui-datepicker-month):not(.ui-datepicker-year),
textarea {
	border: 1px solid #000;
	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="checkbox"]):not([type="reset"]):not([type="submit"]):focus,
select:not(.ui-datepicker-month):not(.ui-datepicker-year):focus,
textarea:focus {
	border-color: #df6647;
}
/* 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 */
}
.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 {
	margin-top: 30px;
}
@media only screen and (min-width: 641px) {
	.gform_wrapper .gform_body {  /* counter right padding so form fills width */
		width: calc(100% + 16px) !important;
	}
}
.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;
}
/* forms: jQuery UI: datepicker */
#ui-datepicker-div {
	display: none;
}
.ui-datepicker-title select { /* selected month & year */
	margin-top: 0 !important;
}
.ui-datepicker-prev,  /* previous month */
.ui-datepicker-next {  /* next month */
}
.ui-datepicker td a {  /* days */
}
.ui-datepicker-calendar .ui-state-default {  /* day: default */
	background: #ededed !important;  /* default */
}
.ui-datepicker-calendar .ui-state-highlight {  /* day: today */

}
.ui-datepicker-calendar .ui-state-hover {  /* day: hover */
	background: #f7f7f7 !important;  /* default */
}
.ui-datepicker-calendar .ui-state-active {  /* day: selected */
	width: 30px !important;
	height: 30px !important;
    border: none !important;
	background: #abe83f !important;
    color: #fff !important;
	text-shadow: 1px 1px 2px rgba(0,0,0,.7) !important;
	box-shadow: none !important;
	margin: 0 !important;
}
.ui-datepicker-calendar td:last-child .ui-state-active {  /* day: selected (last day in row) */
	width: 30px !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;
}
body.NavOpen #TopNote {
	display: none !important;
}
#TopNote p {
	padding-right: calc(5% + 20px);
}
#TopNoteX {
	position: absolute;
	width: 40px;
	height: 40px;
	right: -15px;
	top: 50%;
	transform: translateY(-50%);
	line-height: 1;
}
#TopNoteX svg {
	width: 20px;
	height: 20px;
	fill: #be654e;
}
#TopNoteX svg:hover {
	fill: #df6647;
}
#SiteHeadNav {
	height: 60px;
}
#SiteHeadNav > div {
	height: 100%;
}
.TopLogo {
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	max-width: calc(100% - 80px);
}
@media screen and (max-width: 480px) {
	.TopLogo img {
		width: auto;
		max-height: 40px;
	}
}

/* top nav: hamburger */
#HamburgerBtn {
    position: absolute;
    width: 60px;
    height: 60px;
    top: 0;
    right: 0;
    background: #fff;
    z-index: 1001;
}
#Hamburger {
	position: relative;
    height: 25px;
    width: 25px;
}
#Hamburger div {
    position: absolute;
    width: 25px;
    height: 4px;
    left: 0;
    background: #be654e;
    -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 {
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	width: 100%;
	height: calc(100% - 60px);
	top: 60px;
	right: -100%;
	text-align: center;
	padding: 20px 0;
	background: #fff;
	overflow: auto;
	opacity: 0;
    z-index: 1000;
	transition: opacity .5s;
}
#NavFrame.NavOpen {
	right: 0;
    opacity: 1;
}
#NavMenu {
	width: 100%;
}
#NavMenu > li {
	display: block;
	margin-bottom: 20px;
	padding: 0 15px;
}
#NavMenu > li.menu-item-has-children {
	padding: 0;
}
#NavMenu > li.NavHorzMenuContact {
	margin-bottom: 10px;
}
#NavMenu > li:last-child {
	margin-bottom: 0;
}
#NavMenu a, #NavMenu a:link, #NavMenu a:visited {
	display: inline-block;
	font-family: 'Gotham', 'Helvetica Neue', Helvetica, Arial, sans-serif;
	font-size: 16px;
	font-weight: bold;
	color: #4b4f55;
}
#NavMenu .current_page_item > a {
	color: #df6647;
}
#NavMenu a:hover, #NavMenu a:focus, #NavMenu a:active {
	color: #df6647;
}
.NavMenuContact a, .NavMenuContact a:link, .NavMenuContact a:visited {  /* button */
	display: inline-block;
	background: #be654e;
	font-size: 13px !important;
}
.NavMenuContact a:hover, .NavMenuContact a:focus, .NavMenuContact a:active {  /* button */
	background: #df6647;
}
.NavMenuCall a {
	font-size: 14px !important;
}
#NavMenu > li.menu-item-has-children > a::after {
	content: '';
	position: relative;
	display: inline-block;
	width: 8px;
	height: 8px;
    top: -2px;
	margin-left: 10px;
	background: url("../img/icon-arrow.svg") no-repeat center;
	background-size: contain;
	transition: all .3s;
}
#NavMenu > li.menu-item-has-children > a.open::after {
	transform: rotate(-180deg);
}
/* top nav: submenu */
#NavMenu .sub-menu {
	display: none;
	padding: 10px 0;
	margin: 10px 0 0 0;
	background: #f8faf8;
}
#NavMenu .sub-menu > li:not(:last-child) {
	margin-bottom: 10px;
}
#NavMenu .sub-menu > li a {
	font-size: 14px;
	display: block;
}
@media only screen and (min-width: 481px) {
	/* site header */
	#SiteHeadNav {
		height: 100px;
	}
	.TopLogo {
		max-width: calc(100% - 120px);
	}
	/* top nav: menu */
	#NavFrame {
		top: 100px;
		height: calc(100% - 100px);
	}
	/* top nav: hamburger */
    #HamburgerBtn {
        width: 100px;
        height: 100px;
    }
    #Hamburger {
        width: 50px;
        height: 40px;
    }
    #Hamburger div {
        width: 50px;
    }
	/* top nav: menu */
	#NavVertFrame {
		top: 100px;
	}
}
@media only screen and (min-width: 1150px) {
	/* site header */
	body.NavOpen {
		overflow: visible;
	}
	/* top nav: hamburger */
	#HamburgerBtn {
        display: none;
    }
	/* top nav: menu */
	#NavFrame, #NavFrame.NavOpen {
		display: block;
		position: absolute;
		width: auto;
		height: auto;
		top: 0;
		right: 0;
		text-align: right;
		opacity: 1;
		background: none;
		padding: 0;
		overflow: visible;
	}
	#NavMenu {
		width: auto;
		height: 100%;
	}
	#NavMenu > li {
		display: inline-block;
		position: relative;
		height: 100%;
		padding: 0;
		margin-right: 20px;
		margin-bottom: 0;
	}
	#NavMenu > li:last-child {
		margin-right: 0;
	}
	#NavMenu > li.NavMenuContact {
		margin-right: 0;
	}
	#NavMenu > li.NavMenuCall {
		display: none;
	}
	#NavMenu > li:not(.NavMenuContact) > a {
		line-height: 100px;
		display: inline-block;
	}
	#NavMenu a, #NavMenu a:link, #NavMenu a:visited {
		font-size: 14px;
		font-weight: 500;
	}
	/* top nav: submenu */
	#NavMenu li .sub-menu {
		display: none;
		list-style: none;
		text-transform: none;
		position: absolute;
		min-width: 160px;
		top: 80px;
		left: 0;
		padding: 15px;
		margin: 0;
		background: #fff;
		text-align: left;
		border: 1px solid #000;
		z-index: 200;
	}
	#NavMenu .sub-menu li {
		padding: 0;
	}
	#NavMenu .sub-menu li:not(:last-child) {
		margin-bottom: 7px;
	}
	#NavMenu .sub-menu a {
		white-space: nowrap;
	}
}
@media only screen and (min-width: 1400px) {
	#NavMenu > li {
		margin-right: 40px;
	}
}
@media only screen and (min-width: 1600px) {
	#NavMenu > li {
		margin-right: 60px;
	}
}

/* site footer */
.FootColumns {
	text-align: center;
	padding-bottom: 30px;
}
.FootColumns > *:not(:last-child) {
	margin-bottom: 30px;
}
.FootContact img {
	margin-bottom: 10px;
}
.SocialList {
	margin: -10px !important;
}
.SocialList li {
	display: inline-block;
}
.SocialList li a {
	width: 40px;
	height: 40px;
}
.SocialList svg {
	width: 20px;
	height: 20px;
	fill: #be654e;
	transition: all .3s;
}
.SocialList a:hover svg {
	fill: #df6647;
}
.FootLegal {
	padding-top: 20px;
	padding-bottom: 20px;
}
@media only screen and (min-width: 481px) {
	.FootColumns {
		display: flex;
		flex-wrap: wrap;
		align-items: stretch;
		justify-content: space-between;
	}
	.FootContact {
		flex-basis: 100%;
		margin-bottom: 40px;
	}
	.FootEvents, .FootCompany, .FootSocial {
		flex-basis: 30%;
		margin-bottom: 0 !important;
	}
}
@media only screen and (min-width: 900px) {
	.FootColumns {
		text-align: left;
	}
	.FootContact {
		flex-basis: 40%;
		margin-bottom: 0 !important;
	}
	.FootEvents, .FootCompany, .FootSocial {
		flex-basis: 15%;
	}
}

/* block: cta */
.CtaBlock {
	padding-top: 50px;
	padding-bottom: 50px;
}
@media only screen and (min-width: 600px) {
	.CtaBlock {
		padding-top: 100px;
		padding-bottom: 100px;
	}
}

/* post archives */
.PostArchiveHeadFrame, .PostHeader {
	margin-top: 30px;
	margin-bottom: 20px;
}
.BlogCatNav {
	list-style: none;
	margin: 20px 0 20px 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.BlogCatNav li a {
	color: #5f6165;
	padding: 5px 10px;
}
.blog .cat-item-all a,
.BlogCatNav li.current-cat a {
	color: #be654e;
}
.BlogCatNav li a:hover, .BlogCatNav li a:focus, .BlogCatNav li a:active {
	color: #df6647;
}
.BlogPostThumbImgFrame {
	position: relative;
	margin-bottom: 15px;
}
.BlogPostThumbImgFrame div {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	display: flex;
	align-items: center;
	color: #fff;
	text-transform: uppercase;
	font-size: 18px;
	font-weight: bold;
	background: rgba(224,104,67,.8);
	justify-content: center;
	z-index: 2;
	opacity: 0;
	transition: all .3s;
}
.BlogPostThumb a:hover .BlogPostThumbImgFrame div, .BlogPostThumb a:focus .BlogPostThumbImgFrame div, .BlogPostThumb a:active .BlogPostThumbImgFrame div {
	opacity: 1;
}
.BlogPostThumbImgFrame img {
	width: 100%;
}
.BlogPostCats,
.PostCats {
	margin-bottom: 5px;
}
.BlogPostCats {
	padding: 0 20px;
}
/*.PostCats a {
	color: #5f6165;
}*/
/*.BlogPostCats span[data-slug="recipes"],
.PostCats a[href*="recipes"] {
	color: #a3a94e;
}
.BlogPostCats span[data-slug="news"],
.PostCats a[href*="news"] {
	color: #3F8BB2;
}
.BlogPostCats span[data-slug="inspiration"],
.PostCats a[href*="inspiration"] {
	color: #EEA841;
}*/
.BlogPostTitle {
	padding: 0 20px;
	margin: 0;
	color: #5f6165;
}
.BlogPaginationFrame {
	margin-top: 50px;
}
.BlogPaginationFrame .page-numbers {
	display: inline-block;
	height: 50px;
	line-height: 50px;
	margin-right: 20px;
}
.BlogPaginationFrame .page-numbers:last-child {
	margin-right: 0;
}
.BlogPaginationFrame .page-numbers:not(.prev):not(.next) {  /* all numbers */
	width: 50px;
	display: none;
}
.BlogPaginationFrame .page-numbers:not(.current):not(.prev):not(.next) {  /* all non-current numbers */
	background: #be654e;
	color: #fff;
}
.BlogPaginationFrame .page-numbers:not(.current):not(.prev):not(.next):not(.dots):hover,
.BlogPaginationFrame .page-numbers:not(.current):not(.prev):not(.next):not(.dots):focus,
.BlogPaginationFrame .page-numbers:not(.current):not(.prev):not(.next):not(.dots):active {  /* all non-current numbers: hover */
	background: #df6647;
}
.BlogPaginationFrame .page-numbers.current {  /* current number */
	color: #fff;
	background-color: #5f6165;
}
@media only screen and (min-width: 768px) {
	.PostArchiveHeadFrame, .PostHeader {
		margin-top: 50px;
	}
	.BlogCatNav {
		margin: 40px 0 40px 0;
	}
	.BlogPaginationFrame {
		margin-top: 100px;
	}
	.BlogPaginationFrame .page-numbers:not(.prev):not(.next) {  /* all numbers */
		display: inline-block;
	}
}

/* post single */
.PostCats {
    font-weight: bold;
}
.PostTitle {
	font-weight: bold;
	margin-top: 15px;
	margin-bottom: 20px;
}
.PostAuthor {
	line-height: 50px;
}
.PostAuthor img {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	float: left;
	margin-right: 10px;
}
.SharePostSection a {
	display: flex;
	justify-content: center;
	align-items: center;
	float: left;
	width: 40px;
	height: 40px;
	margin-right: 5px;
	border-radius: 50%;
}
.SharePostSection a:last-child {
	margin-right: 0;
}
.SharePostSection a.ShareFacebook {
	background: #3B5998;
}
.SharePostSection a.ShareTwitter {
	background: #38A1F3;
}
.SharePostSection a.SharePinterest {
	background: #C8232C;
}
.SharePostSection a.ShareLinkedIn {
	background: #0077B5;
}
.SharePostSection a.ShareEmail {
	background: #be654e;
}
.SharePostSection a:hover, .SharePostSection a:focus, .SharePostSection a:active {
	background: #df6647;
}
.SharePostSection svg {
    width: 15px;
    height: 15px;
    fill: #fff;
}
.SharePostSection, .RelatedPostsSection {
	margin-top: 40px;
}
.RelatedPostsList a {
	color: inherit;
}
.RelatedPostImgFrame {
	position: relative;
	margin-bottom: 15px;
}
.RelatedPostImgFrame div {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	display: flex;
	align-items: center;
	color: #fff;
	text-transform: uppercase;
	font-size: 18px;
	font-weight: bold;
	background: rgba(224,104,67,.8);
	justify-content: center;
	z-index: 2;
	opacity: 0;
	transition: all .3s;
}
.RelatedPostsList a:hover .RelatedPostImgFrame div, .RelatedPostsList a:focus .RelatedPostImgFrame div, .RelatedPostsList a:active .RelatedPostImgFrame div {
	opacity: 1;
}

/* slideshows */
.cycle-slideshow {
    background-image: url("../img/spinner.svg");
	background-repeat: no-repeat;
	background-position: center;
    background-size: 64px 64px !important;
	position: relative;
}
.cycle-slideshow[data-cycle-fx="carousel"] {
	width: 100%;
}
.cycle-slideshow.NoBgImg {
	background-image: none;
}
.cycle-slideshow .slide {
	width: 100%;
}
.cycle-slideshow:not([data-cycle-auto-height="calc"]) .slide {
	height: 100%;
}
.cycle-slideshow .slide > [role="img"] {
	width: 100%;
	height: 100%;
}
.cycle-slideshow .slide:not(:first-of-type) {
	display: none;
}
.SlideshowBlock img {
	object-fit: cover;
}
.SlideshowBlock img[height="350"] {
	min-height: 150px;
}
.SlideshowBlock img[height="550"], .SlideshowBlock img[height="760"] {
	min-height: 250px;
}
.SlideshowBlock .VenueListFeatured {
    top: initial;
    right: initial;
    left: 50%;
    transform: translateX(-50%);
    bottom: -50px;
	z-index: 200;
}
/* slideshows: pagination */
.cycle-pager {
	position: absolute;
	top: 10px;
	right: 10px;
	z-index: 101;
}
.cycle-pager span {
	display: inline-block;
	width: 20px;
	height: 20px;
	padding: 5px;
	font-size: 1px;
	line-height: 1;
	color: transparent;
	overflow: hidden;
	cursor: pointer;
}
.cycle-pager span::after {
	content: '';
	display: block;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #be654e;
	box-shadow: 1px 1px 1px rgba(0,0,0,.5);
	transition: all .3s;
}
.cycle-pager span:not(.cycle-pager-active):hover::after {
	background: #df6647;
}
.cycle-pager span.cycle-pager-active::after {
	background: #fff;
}
@media only screen and (min-width: 600px) {
	.cycle-pager {
		top: 50%;
		transform: translateY(-50%);
	}
	.cycle-pager span {
		display: block;
	}
}
@media only screen and (min-width: 1400px) {
	.SlideshowBlock img[height="760"] {
		min-height: 760px;
	}
}

/* block: gallery */
.GalleryBlock h2 {
	margin-bottom: 30px;
}
@media only screen and (min-width: 600px) {
	.GalleryBlock h2 {
		margin-bottom: 50px;
	}
}

/* venue finder: filters */
.VenueFinderBlock {
	margin-top: 50px !important;
}
.VenueFilters {
	margin-bottom: 50px;
}
.FilterLabel {
	font-size: 12px;
	margin-bottom: 5px;
}
.FilterOptionsFrame {
	position: relative;
}
button.FilterBtn {
	font-size: 12px;
	letter-spacing: .1em;
	font-weight: bold;
	color: #fff;
	white-space: nowrap;
	padding: 10px 20px;
	background: #be654e;
	transition: all .3s;
}
button.FilterBtn:hover, button.FilterBtn:focus {
	background: #df6647;
}
.FilterOptions {
	display: none;
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	padding: 5px 0;
	border: 2px solid #be654e;
	z-index: 10;
	background: #fff;
}
.FilterOption {
	font-size: 12px;
	letter-spacing: .1em;
	white-space: nowrap;
	padding: 10px;
	cursor: pointer;
	line-height: 1;
	transition: all .3s;
}
.FilterOption:hover, .FilterOption:focus {
	color: #df6647;
}
/* venue finder: venues */
.VenueList li {
	position: relative;
}
.VenueListThumbFrame {
    position: relative;
    margin-bottom: 15px;
}
.VenueListThumbFrame img {
    width: 100%;
}
.VenueListFeatured {
	position: absolute;
	display: flex;
    align-items: center;
	justify-content: center;
	width: 100px;
    height: 100px;
	top: -10px;
	right: -10px;
	background: rgba(224,104,67,.8);  /* #e06843 */
	color: #fff;
	font-size: 10px;
	font-weight: bold;
	line-height: 1.3;
	text-transform: uppercase;
	border-radius: 50%;
	z-index: 2;
}
.VenueListTxtFrame{
	padding: 0 20px;
}
.VenueListFilterMetrics {
	font-size: 12px;
	margin-bottom: 10px;
}
.VenueLink svg {
	display: inline-block;
	fill: #be654e;
	width: 10px;
    height: 10px;
    margin-left: 5px;
}
/* venue finder: venue filter action */
.VenueList > * {
	opacity: 1;
	transform: scale(1);
	transition: all .5s;
}
.VenueList > *.FadeOut {
	position: absolute;
	opacity: 0;
	-moz-transform: scale(0.01);
	-webkit-transform: scale(0.01);
	-o-transform: scale(0.01);
	-ms-transform: scale(0.01);
	transform: scale(0);
	z-index: 1;
}
#EmptyQueryNotice {
	display: none;
	text-align: center;
	margin-top: 5%;
}

/* block: venue amenities */
.VenueAmenitiesBlock ul {
	/*max-width: 400px;*/
    margin: 0 auto;
}
.VenueAmenitiesBlock li {
	padding: 7px 0 7px 25px;
	text-transform: uppercase;
	font-size: 14px;
	position: relative;
}
.VenueAmenitiesBlock svg {
	display: block;
	position: absolute;
	top: 10px;
	left: 0;
}

/* block: venue as seen on */
.VenueAsSeenBlock a {
	color: inherit;
}
.VenueAsSeenImgFrame {
	position: relative;
    margin-bottom: 15px;
}
.VenueAsSeenImgFrame div {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
    text-transform: uppercase;
    background: rgba(224,104,67,.8);
    z-index: 2;
    opacity: 0;
    transition: all .3s;
}
.VenueAsSeenBlock ul a:hover .VenueAsSeenImgFrame div,
.VenueAsSeenBlock ul a:focus .VenueAsSeenImgFrame div,
.VenueAsSeenBlock ul a:active .VenueAsSeenImgFrame div {
    opacity: 1;
}
.VenueAsSeenImgFrame img {
	width: 100%;
}
.VenueAsSeenSource {
	color: #be654e;
}

/* block: venue contact */
.VenueContactBlock ul {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	justify-content: space-between;
	margin: -10px !important;
}
.VenueContactBlock ul li {
	padding: 10px;
}


/* block: team */
.TeamBlock h2:not(:first-child) {
	margin-top: 50px;
}
.TeamBlock img {
	width: 100%;
}
.TeamMemberTxt {
	padding: 10px 5% 0 5%;
}
.TeamMemberTxt h5 {
	margin-bottom: 5px;
}

/* block: alternating rows */
.AltRowsBlock > ul > li:not(:last-child) {
	margin-bottom: 30px;
}
.AltRowsBlock > ul > li.BgGray {
	padding-top: 30px;
	padding-bottom: 30px;
}
.AltRowsImg {
	height: 200px;
	position: relative;
}
.AltRowsImg img {
    width: 100%;
    height: 100%;
	object-fit: cover;
}
.AltRowsTxt {
	padding: 30px 5% 0 5%;
}
@media only screen and (min-width: 481px) {
	.AltRowsImg {
		height: 300px;
	}
}
@media only screen and (min-width: 768px) {
/*	.SlideshowBlock + .AltRowsBlock {
		position: relative;
		margin-top: -120px;
		z-index: 200;
	}*/
	.AltRowsBlock.WithBg {
		background: url("../img/cbd-bg.gif") no-repeat center 40px;
	}
	.AltRowsBlock > ul > li:not(:last-child) {
		margin-bottom: 50px;
	}
	.AltRowsBlock > ul > li.BgGray {
		padding-top: 70px;
		padding-bottom: 50px;
		margin-top: -70px;
		z-index: -1;
	}
	.AltRowsBlock > ul > li > div {
		display: flex;
		position: relative;
		min-height: 500px;
	}
	.AltRowsImg {
		position: absolute;
		width: 50%;
		height: 100%;
	}
	.AltRowsBlock > ul > li:nth-child(odd) .AltRowsImg {
		left: 0;
	}
	.AltRowsBlock > ul > li:nth-child(even) .AltRowsImg {
		right: 0;
	}
	.AltRowsTxt {
		flex-basis: 50%;
		display: flex;
		justify-content: center;
		padding-top: 60px;
		padding-bottom: 60px;
	}
	.AltRowsTxt > div {
		align-self: center;
	}
	.AltRowsBlock > ul > li:nth-child(odd) .AltRowsTxt {
		padding-left: 5%;
		padding-right: 0;
		margin-left: 50%;
	}
	.AltRowsBlock > ul > li:nth-child(even) .AltRowsTxt {
		padding-left: 0;
		padding-right: 5%;
	}
}
@media only screen and (min-width: 900px) {
	.AltRowsBlock > ul > li:not(:last-child) {
		margin-bottom: 100px;
	}
	.AltRowsBlock > ul > li.BgGray {
		padding-top: 130px;
		padding-bottom: 100px;
		margin-top: -130px;
	}
	.AltRowsTxt {
		padding-top: 100px;
		padding-bottom: 100px;
	}
}
@media only screen and (min-width: 1200px) {
	.SlideshowBlock + .AltRowsBlock {
		position: relative;
		margin-top: -120px;
		z-index: 200;
	}
}

/* contact page */
.page-id-40 .gform_wrapper {
	margin-top: 50px !important;
}