/*
Amrbroise Demi - 600
Amrbroise Bold Italic - 700
Sweet Sans Pro Regular - 600
Sweet Sans Pro Medium - 700
*/
:root {
	--black: #000000;
	--dark-gray: #37342F;
	--light-gray: #CCCCCC;
	--white: #FFFFFF;
	--red: #FF0000;
	--cream: #F9F6EF;
	--dark-cream: #ACA49A;
	--peach: #FFD5C7;
	--light-peach: #FBE6DF;
	--pink: #B15E65;
	--dark-pink: #AE565E;
	--light-pink: #DB7C84;
	--brown: #625950;
	--light-brown: #99948F;
	--light-brown2: #7E7570;
	--tan: #C5944B;;
	--light-tan: #DCB06F;
	--yellow: #FAEBCC;
	--dark-yellow: #EAD1A5;

	--c7-bg: var(--cream);
	--c7-bg-alt: var(--yellow);
	--c7-primary-color: var(--pink);
	--c7-primary-color-dark: var(--light-pink);
	--c7-primary-color-focus: var(--light-pink);
	--c7-alt-button-bg-hover: var(--light-pink);
	--c7-link-color: var(--pink);
	--c7-font-family: "sweet-sans-pro", Arial, Helvetica, sans-serif;
	--c7-body-text-color: var(--brown);
	--c7-font-size: 17px;
	--c7-heading-font-family: "ambroise-std", Georgia, "Times New Roman", Times, sans-serif;
	--c7-cart-count-bg: var(--peach);
	--c7-cart-count-bg-focus: var(--c7-primary-color-focus);
	--c7-cart-count-text-color: var(--brown);
	--c7-header-text-color: var(--brown);
	--c7-field-bg: transparent;
	--c7-field-border-color: var(--pink);
	--c7-border-radius: 5px;
	--c7-field-border-radius: 5px;
	--c7-button-border-radius: 5px;
	--c7-success: var(--white);
	--c7-success-bg: var(--pink);
	--c7-border-color: var(--light-pink);
}

/*
	--c7-page-width: 1300px;
	--c7-page-width-checkout: 1500px;
	--c7-alt-text-color: #50505a;
	--c7-font-size: 16px;
	--c7-font-size-sub: 14px;
	--c7-heading-text-color: #000;
	--c7-heading-font-weight: bold;
	--c7-primary-color-text: #3251ae;
	--c7-link-color: var(--c7-primary-color-text);
	--c7-loading-bg: rgba(255, 255, 255, 0.5);
	--c7-modal-border-radius: 8px;
	--c7-modal-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.1);
	--c7-overlay-bg: rgba(0, 0, 0, 0.1);
	--c7-progress-bar: var(--c7-primary-color);
	--c7-pill-bg: #f3f6ff;
	--c7-pill-text-color: var(--c7-primary-color-text);
	--c7-field-focus-color: rgba(0, 0, 0, 0.07);
	--c7-field-focus-border-color: rgba(0, 0, 0, 0.54);
	--c7-field-option-selected-color: var(--c7-primary-color);
	--c7-field-option-focus-color: var(--c7-primary-color-focus);
	--c7-field-placeholder: #b2b2b8;
	--c7-field-dropdown-shadow: 2px 2px 10px 0 rgb(0 0 0 / 8%);
	--c7-primary-button-bg: var(--c7-primary-color);
	--c7-primary-button-bg-hover: var(--c7-primary-color-dark);
	--c7-primary-button-text-color: #fff;
	--c7-alt-button-bg: #dedfe3;
	--c7-alt-button-text-color: #232324;
	--c7-info-bg: #f1f1f4;
	--c7-error: #ca0505;
	--c7-error-bg: #ffebeb;
	--c7-warning: #fba213;
	--c7-warning-bg: #fff6e5;
	--c7-notification: #ca0505;
	--c7-side-cart-shadow: 0 0 15px 5px rgb(0 0 0 / 10%);
	--c7-dropdown-border-radius: 8px;
	--c7-dropdown-shadow: 0 1px 7px 0 rgb(0 0 0 / 15%);
	--c7-dropdown-hover: #e6e8ed;
	--c7-block-bg: var(--c7-bg);
	--c7-block-border-radius: var(--c7-border-radius);
	--c7-block-shadow: 0 1px 3px 0 rgba(222, 222, 227, 0.3);
*/

/* BASE CSS */
* {
	margin: 0px;
	padding: 0px;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

html {
	background-color: var(--cream);
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
}

body {
	font-family: "sweet-sans-pro", Arial, Helvetica, sans-serif;
	font-size: 17px;
	line-height: 2em;
	font-weight: 600;
	color: var(--brown);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

body.iframe {
	padding: 20px;
}

body.editor, body.short_editor {
	background-image: none;
	background-color: var(--cream);
	min-height: 400px;
	transition: none;
	outline: none !important;
}

body.short_editor {
	min-height: 200px;
}

.tox-edit-area__iframe {
	padding: 0px 10px !important;
	background-color: transparent !important;
}

.table_container {
	-webkit-overflow-scrolling: touch;
	overflow-x: auto;
}

table {
	border-collapse:collapse;
	border-spacing: 0px;
	border: 0px;
	margin-bottom: 1em;
}

table.data_table {
	width: 100%;
}

table th {
	text-align: left;
}

table td {
	vertical-align: top;
}

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

table.data_table th:first-child, table.data_table td:first-child {
	text-align: left;
}

p, .block p {
	margin-bottom: 1em;
}

.block p:last-child, #content .block ul:last-child {
	margin-bottom: 0px;
}

#content ul, #content ol, .editor ul, .editor ol, .short_editor ul, .short_editor ol {
	padding-left: 15px;
	margin-bottom: 1em;
}

#content li, #content_blocks li, .editor li, .short_editor li {
	line-height: 1.4em;
	margin-bottom: .5em;
}

h1, h2.title, h1.c7-h1, .c7-error-page__recommendations h2 {
	font-family: "ambroise-std", Georgia, "Times New Roman", Times, sans-serif;
	font-size: 70px;
	line-height: 1em;
	font-weight: 600;
	color: var(--pink);
	margin-bottom: .5em;
}

h1.medium, h2.medium.title, .c7-error-page__recommendations h2 {
	font-size: 60px;
}

@media only screen and (max-width: 899px) {

	h1, h2.title, h1.c7-h1 {
		font-size: 60px;
	}

	h1.medium, h2.medium.title, c7-error-page__recommendations h2 {
		font-size: 50px;
	}

}

@media only screen and (max-width: 499px) {

	h1, h2.title, h1.c7-h1 {
		font-size: 50px;
	}

	h1.medium, h2.medium.title, .c7-error-page__recommendations h2 {
		font-size: 40px;
	}

}

.bgcolor1 h1, .bgcolor1 h2.title {
	color: var(--tan);
}

.bgcolor3 h1, .bgcolor3 h2.title, .c7-error-page__recommendations h2 {
	color: var(--brown);
}

h1 em, h2.title em {
	display: block;
	font-size: .5em;
	line-height: 1.2em;
	color: var(--brown);
}

h2, h3 {
	font-family: "ambroise-std", Georgia, "Times New Roman", Times, sans-serif;
	font-size: 30px;
	line-height: 1em;
	font-weight: bold;
	margin-bottom: .25em;
}

hr {
	border: 0px;
	height: 1px;
	margin: 1em auto;
	color: var(--black);
	background-color: var(--black);
}

img {
	max-width: 100%;
	height: auto;
	border: none;
}

#content img, .editor img {
}

a {
	text-decoration: none;
	cursor: pointer;
	color: var(--pink);
}

a:hover {
	color: var(--light-pink);
}

a, a:after, .overlay:after, button, .button, input[type="button"], input[type="submit"], .block_instagram .posts span, .block_collection .product .photo img, .block_featured_collection .product .photo img, .fancybox-button svg path, .block_team .photo:after {
	transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-webkit-transition: all .2s ease-in-out;
}

:focus-visible {
	outline: 2px solid var(--black);
}

blockquote {
	margin: 10px 0px 10px 15px;
}

.cl {
	clear: left;
}

.cr {
	clear: right;
}

.cb {
	clear: both;
}

.cf:before, .cf:after {
	content: "";
	display: table;
}

.cf:after {
	clear: both;
}

.cf {
	zoom: 1;
}

.sr {
	position: absolute;
	height: 1px;
	width: 1px;
	clip: rect(1px 1px 1px 1px);
	clip: rect(1px,1px,1px,1px);
	clip-path: polygon(0px 0px, 0px 0px, 0px 0px);
	-webkit-clip-path: polygon(0px 0px, 0px 0px, 0px 0px);
	overflow: hidden !important;
}

#content .embed_container, #content_blocks .embed_container {
	position: relative;
	padding-bottom: 56.25%;
	height: 0px;
	overflow: hidden;
	max-width: 100%;
	margin-bottom: 20px;
}

#content_blocks .block_content_photo .embed_container, #content_blocks .block_video .embed_container {
	height: 100%;
	margin-bottom: 0px;
}

#content .embed_container iframe, #content .embed_container object, #content .embed_container embed,
#content_blocks .embed_container iframe, #content_blocks .embed_container object, #content_blocks .embed_container embed {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	border: 0px;
}

.right_photo {
	float: right;
	margin: 5px 0px 20px 40px;
	display: block;
	max-width: 50%;
}

.left_photo {
	float: left;
	margin: 5px 40px 20px 0px;
	display: block;
	max-width: 50%;
}

.right_photo img, .left_photo img {
	display: block;
}

@media only screen and (max-width: 699px) {

	.right_photo, .left_photo {
		float: none;
		margin: 0px 0px 20px 0px !important;
		max-width: 100%;
	}

	.right_photo img, .left_photo img {
		width: 100%;
	}

}

.col2 {
	margin-bottom: 1em;
}

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

	.cols {
		display: flex;
		flex-wrap: wrap;
		width: 100%;
		justify-content: space-between;
	}

	.cols .col2 {
		width: calc(50% - 15px);
	}

	.cols .col3 {
		width: calc(33.3333333333% - 20px);
	}

}

/* FORM CSS */

fieldset {
	border: 0px;
}

label, .label, fieldset legend {
	display: inline-block;
	font-weight: bold;
	line-height: 1.5em;
}

fieldset label {
	font-weight: normal;
}

input, select, textarea, .extension {
	font-family: "sweet-sans-pro", Arial, Helvetica, sans-serif;
	font-size: 17px !important;
	line-height: 22px;
	padding: 6px 10px;
	background-color: var(--white);
	border: 1px solid var(--light-gray);
	-webkit-border-radius: 0px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

/*
input:focus, select:focus, textarea:focus {
	outline: 1px solid var(--black);
}
*/

input[type="checkbox"], input[type="radio"] {
	display: inline-block !important;
	width: 18px !important;
	height: 18px !important;
	padding: 0px;
	margin-right: 3px;
	vertical-align: text-top;
}

input[type="checkbox"] + label, input[type="radio"] +label {
	margin-right: 10px;
}

button, .button, input[type="button"], input[type="submit"], .layout_admin .ui-dialog-buttonset .ui-button {
	border: 0px;
	background-color: var(--black);
	color: var(--white);
	font-size: 14px;
	font-weight: bold;
	padding: 4px 10px;
	-webkit-appearance: none;
	cursor: pointer;
	vertical-align: top;
}

button:hover, .button:hover, input[type="button"]:hover, input[type="submit"]:hover, .layout_admin .ui-dialog-buttonset .ui-button:hover {
	background-color: var(--dark-gray);
}

button:disabled, button[disabled], input[type="button"]:disabled {
	background-color: var(--light-gray);
	cursor: default;
}

a.button {
	display: inline-block;
	padding: 1px 10px;
	margin-bottom: 5px;
}

.fancy_button, input[type="submit"].fancy_button, .c7-btn {
	display: inline-block;
	background-color: var(--tan);
	color: var(--dark-gray);
	font-size: 14px;
	line-height: 40px;
	font-weight: 600;
	text-transform: uppercase !important;
	letter-spacing: .05em;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	min-height: 40px;
	height: 40px;
	padding: 0px 20px;
}

p.links .fancy_button {
	margin: 10px 10px 0px 10px;
}

.bgcolor1 .fancy_button, .c7-btn, .fancy_button.pink {
	background-color: var(--pink);
	color: var(--white);
}

.fancy_button:hover, input[type="submit"].fancy_button:hover {
	background-color: var(--light-tan);
	color: var(--dark-gray);
}

.bgcolor1 .fancy_button:hover, .c7-btn:hover, .fancy_button.pink:hover {
	background-color: var(--light-pink);
	color: var(--white);
}

.alert, .red {
	color: var(--red);
}

#loading {
	display: none;
	position: fixed;
	top: 0px;
	left: 0px;
	right: 0px;
	bottom: 0px;
	width: 100%;
	background-color: rgba(0,0,0,0.5);
	z-index: 10000;
	color: var(--white);
	text-align: center;
	justify-content: center;
	align-items: center;
}

.contact_form .form_fields {
}

.contact_form .form_fields + h2 {
	margin-top: 1em;
}

.contact_form div {
	width: 100%;
	margin-bottom: 20px;
	line-height: 1.5em;
}

.contact_form label {
	white-space: normal;
	display: inline-block;
	margin-bottom: 3px;
}

.contact_form input:not([type='radio']):not([type='checkbox']):not([type='submit']):not([type='button']), .contact_form select, .contact_form textarea {
	width: 100%;
}

.contact_form div.other {
	display: none;
	margin-top: 5px;
	margin-bottom: 0px;
}

.contact_form select:has(> option[value="Other"]:checked) + div.other {
	display: inline-block;
}

.contact_form span.other input {
	width: 200px !important;
}

.contact_form textarea {
	width: 100%;
	height: 100px;
}

.contact_form input.button {
	width: auto;
}

.contact_form .option {
	white-space: nowrap;
}

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

	.contact_form .form_fields {
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
	}

	.contact_form div.half {
		width: calc(50% - 10px);
	}

}

/* CONTAINER CSS */

.container {
	width: 100%;
	max-width: 1200px;
	margin: 0px auto;
	position: relative;
}

.block.wide .container {
	max-width: 1400px;
}

.padding_left { padding-left: 100px; }
.padding_right { padding-right: 100px; }
.padding_top1 { padding-top: 100px; }
.padding_bottom1 { padding-bottom: 100px; }
.padding_top2 { padding-top: 50px; }
.padding_bottom2 { padding-bottom: 50px; }
.padding_top3 { padding-top: 25px; }
.padding_bottom3 { padding-bottom: 25px; }
.overlap_top { margin-top: -100px; }

@media only screen and (max-width: 1499px) {
	.container { max-width: 1150px; }
	.padding_left {	padding-left: 75px; }
	.padding_right { padding-right: 75px; }
	.padding_top1 { padding-top: 80px; }
	.padding_bottom1 { padding-bottom: 80px; }
	.padding_top2 { padding-top: 40px; }
	.padding_bottom2 { padding-bottom: 40px; }
	.padding_top3 { padding-top: 20px; }
	.padding_bottom3 { padding-bottom: 20px; }
	.overlap_top { margin-top: -80px; }
}

@media only screen and (max-width: 1199px) {
	.container { max-width: 1100px; }
	.padding_left { padding-left: 50px; }
	.padding_right { padding-right: 50px; }
	.padding_top1 { padding-top: 60px; }
	.padding_bottom1 { padding-bottom: 60px; }
	.padding_top2 { padding-top: 30px; }
	.padding_bottom2 { padding-bottom: 30px; }
	.padding_top3 { padding-top: 15px; }
	.padding_bottom3 { padding-bottom: 15px; }
	.overlap_top { margin-top: -60px; }
}

@media only screen and (max-width: 959px) {
	.padding_left { padding-left: 30px; }
	.padding_right { padding-right: 30px; }
	.padding_top1 { padding-top: 40px; }
	.padding_bottom1 { padding-bottom: 40px; }
	.padding_top2 { padding-top: 20px; }
	.padding_bottom2 { padding-bottom: 20px; }
	.padding_top3 { padding-top: 10px; }
	.padding_bottom3 { padding-bottom: 10px; }
	.overlap_top { margin-top: -40px; }
}

@media only screen and (max-width: 599px) {
	.padding_left { padding-left: 15px; }
	.padding_right { padding-right: 15px; }
}

/* LAYOUT CSS */

header {
	position: relative;
}

#skip_content {
	position: absolute;
	top: 0px;
	left: 10px;
	transform: translateY(-150%);
	background-color: var(--black);
	color: var(--white);
	padding: 0px 10px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	outline: none;
	z-index: 500;
}

#skip_content:focus {
	transform: translateY(10px);
}

#header_inner {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	max-width: none;
	z-index: 50;
}

#header_inner .container {
	max-width: none;
}

#logo {
	position: absolute;
	top: 14px;
	left: 0px;
	width: 100%;
	text-align: center;
}

.layout2 #logo {
	top: 10px;
}

#logo a {
	display: inline-block;
}

.layout2 #logo a {
	height: 80px;
	overflow: hidden;
}

#logo img {
	width: 100%;
	max-width: 150px;
	display: inline-block;
	position: relative;
	z-index: 50;
}

.layout2 #logo a img {
	max-width: 320px;
}

#header_photo_wrapper {
	padding-top: 100px;
	position: relative;
}

#header_photo img {
	display: block;
	width: 100%;
	max-width: none;
}

@media only screen and (max-width: 799px) {

	#header_photo {
		height: 260px;
		overflow: hidden;
	}

	#header_photo img {
		width: 800px;
	}

	#header_photo.center img {
		position: relative;
		left: 50%;
		margin-left: -400px;
	}

	#header_photo.right img {
		float: right;
	}

	#header_photo.left_center img {
		position: relative;
		left: 25%;
		margin-left: -200px;
	}

	#header_photo.right_center img {
		position: relative;
		left: 75%;
		margin-left: -600px;
	}

}

.collapsed_temp #header_inner, .collapsed #header_inner {
	position: fixed;
	top: -70px;
	width: 100%;
	height: 70px;
	background-color: var(--cream);
	z-index: 1200;
}

.collapsed #header_inner {
	top: 0px;
}

.scrollup .collapsed_temp #header_inner, .collapsed #header_inner {
	-webkit-transition: top 0.4s ease-in;
	transition: top 0.4s ease-in;
}

.collapsed_temp #logo, .collapsed #logo {
	top: 10px;
	height: 50px;
	overflow: hidden;
}

.collapsed_temp #logo img, .collapsed #logo img {
	max-width: 200px !important;
}

.collapsed_temp #nav_trigger, .collapsed #nav_trigger, .collapsed_temp #top_left_nav, .collapsed #top_left_nav, .collapsed_temp #top_right_nav, .collapsed #top_right_nav {
	top: 16px;
}

#content {
	position: relative;
}

.block_ctas .container {
	max-width: 2000px;
}

.cta {
	position: relative;
	z-index: 10;
}

footer .cta {
	margin-top: -50px;
}

.cta img {
	display: block;
	width: 100%;
	height: auto;
}

.cta a {
	display: block;
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,.5);
	color: var(--white);
}

.cta a:hover {
	background-color: rgba(0,0,0,.3);
}

.cta a span.content {
	display: block;
	width: 100%;
	text-align: center;
	position: relative;
	top: 50%;
	transform: translateY(-50%);
	font-size: clamp(30px, 4vw, 80px) !important;
	line-height: 1em;
	padding: 0px 5%;
}

.cta strong {
	display: block;
	font-family: "ambroise-std", Georgia, "Times New Roman", Times, sans-serif;
	margin-bottom: .2em;
}

.cta .fancy_button {
	background-color: var(--peach) !important;
	color: var(--brown) !important;
}

.cta:hover .fancy_button {
	background-color: var(--light-peach) !important;
}

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

	.block_ctas .container {
		display: grid;
		grid-template-columns: 1fr 1fr 1fr;
		grid-column-gap: 20px;
		grid-column-gap: 1.5%;
	}

	.block_ctas .container.two {
		grid-template-columns: 1fr 1fr;
	}

}

@media only screen and (max-width: 749px) {

	.block_ctas .container {
		max-width: 570px;
	}

	.cta {
		margin-top: 10px;
	}

	.cta:first-child {
		margin-top: 0px;
	}

	.cta a span.content {
		font-size: clamp(45px, 12vw, 80px) !important;
	}

}

footer {

}

#mailinglist {
	height: 600px;
	background-repeat: no-repeat;
	background-position: center center;
	display: flex;
	align-items: center;
	color: var(--cream);
}

@media only screen and (min-width: 2000px) {
	#mailinglist {
		background-size: 100% auto;
	}
}

.webp #mailinglist {
	background-image: url('../images/mailinglist-bg.webp');
}

.no-webp #mailinglist {
	background-image: url('../images/mailinglist-bg.jpg');
}

#popup_mailinglist {
	background-color: var(--peach);
	padding: 65px 15px;
}

#mailinglist .container, #popup_mailinglist .container_inner {
	max-width: 700px;
	display: flex;
	justify-content: space-between;
}

#popup_mailinglist .container_inner {
	max-width: 500px;
	margin: 0px auto 20px auto;
	align-items: center;
}

#mailinglist .title, #popup_mailinglist .title {
	font-family: "ambroise-std", Georgia, "Times New Roman", Times, sans-serif;
	font-size: 80px;
	line-height: 1em;
	letter-spacing: .08em;
	font-weight: 600;
	text-align: right;
	white-space: nowrap;
	padding-right: 40px;
}

#popup_mailinglist .title {
	font-size: 60px;
	line-height: 1em;
	color: var(--pink);
	padding-right: 20px;
}

#popup_mailinglist .content {
	font-size: 15px;
	line-height: 21px;
}

#mailinglist form {
	font-size: 17px;
	line-height: 24px;
	text-align: justify;
	padding-top: 12px;
}

#mailinglist form div.mc-field-group div, #popup_mailinglist form div.mc-field-group div {
	margin-top: 15px;
	display: flex;
	justify-content: space-between;
}

#popup_mailinglist form div.mc-field-group div {
	max-width: 390px;
	margin: 0px auto;
}

#mailinglist .email, #popup_mailinglist .email {
	background-color: transparent;
	color: var(--cream);
	border: 2px solid var(--dark-cream);
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	width: 240px;
	width: calc(100% - 158px);
}

#popup_mailinglist .email {
	border: 2px solid var(--pink);
	color: var(--brown);
}

#mailinglist button, #popup_mailinglist button {
	width: 140px;
	background-color: var(--peach);
	color: var(--brown);
}

#popup_mailinglist button {
	background-color: var(--pink);
	color: var(--white);
}

#mailinglist button:hover {
	background-color: var(--light-peach);
}

#popup_mailinglist button:hover {
	background-color: var(--light-pink);
}

#mailinglist #mc_embed_signup div.mce_inline_error {
	background-color: transparent;
	padding: 0px;
	color: var(--cream);
	font-weight: normal;
}

#popup_mailinglist #mce-responses {
	text-align: center;
}

@media only screen and (max-width: 1499px) {

	#mailinglist {
		height: 500px;
	}

}

@media only screen and (max-width: 1199px) {

	#mailinglist {
		height: 400px;
	}

}

@media only screen and (max-width: 759px) {

	#mailinglist .container {
		display: block;
	}

	#mailinglist .title {
		padding: 0px;
		font-size: 60px;
		text-align: center;
		margin-bottom: 20px;
	}

	#mailinglist .title br {
		display: none;
	}

	#mailinglist form {
		max-width: 430px;
		padding: 0px 15px;
		margin: 0px auto;
	}

}

@media only screen and (max-width: 599px) {

	#popup_mailinglist {
		padding: 45px 15px;
	}

}

@media only screen and (max-width: 549px) {

	#popup_mailinglist .container_inner {
		display: block;
		max-width: 390px;
	}

	#popup_mailinglist .title {
		font-size: 40px;
		text-align: center;
		margin-bottom: 10px;
		padding: 0px;
	}

	#popup_mailinglist .title br {
		display: none;
	}

}

@media only screen and (max-width: 449px) {

	#mailinglist .title {
		font-size: 50px;
	}

}

@media only screen and (max-width: 399px) {

	#mailinglist .title, #popup_mailinglist .title {
		font-size: 35px;
	}

	#mailinglist form div.mc-field-group div, #popup_mailinglist form div.mc-field-group div {
		display: block;
	}

	#mailinglist .email, #popup_mailinglist .email {
		width: 100%;
	}

	#mailinglist button, #popup_mailinglist button {
		display: block;
		margin: 10px auto 0px auto;
	}

}

@media only screen and (max-width: 359px) {

	#popup_mailinglist .title {
		font-size: 30px;
	}

}

#footer {
	background-color: var(--cream);
	font-size: 16px;
	line-height: 24px;
}

#footer_logo {
	width: 90px;
	height: 125px;
	overflow: hidden;
	margin: 0px auto;
}

#footer_logo img {
	width: 498px;
	max-width: none;
	height: 229px;
	margin-left: -205px;
}

#footer_cols {
	display: flex;
	justify-content: space-between;
	max-width: 1060px;
	margin: 0px auto;
	font-size: 16px;
}

#footer_cols .title {
	font-family: "ambroise-std", Georgia, "Times New Roman", Times, sans-serif;
	font-size: 21px;
	line-height: 1em;
	font-weight: 600;
	color: var(--brown);
	letter-spacing: .1em;
	margin-bottom: .75em;
}

#footer_cols a {
	color: var(--dark-pink);
}

#footer_cols a:hover {
	color: var(--light-pink);
}

#social {
	padding: 0px;
}

#social li {
	list-style: none;
	display: inline-block;
	margin: 0px 3px 0px -5px;
	font-size: 34px;
	line-height: 34px;
}

#social li a {
	display: block;
}

@media only screen and (min-width: 525px) and (max-width: 899px) {

	#footer_cols {
		max-width: 600px;
		flex-wrap: wrap;
	}

	#footer_cols .col {
		width: 50%;
		text-align: center;
	}

	#footer_cols .col:nth-child(1) {
		order: 3;
		margin-top: 30px;
	}

	#footer_cols .col:nth-child(2) {
		order: 1;
	}

	#footer_cols .col:nth-child(3) {
		order: 2;
	}

	#footer_cols .col:nth-child(4) {
		order: 4;
		margin-top: 30px;
	}

}

@media only screen and (max-width: 524px) {

	#footer_cols {
		display: block;
	}

	#footer_cols .col {
		text-align: center;
		margin-top: 30px;
	}

	#footer_cols .col:first-child {
		margin-top: 0px;
	}

}

#footer_nav {
	text-align: center;
	padding: 0px;
	margin-bottom: 10px;
}

#footer_nav li {
	list-style: none;
	display: inline-block;
	line-height: 2em;
	margin: 0px 15px;
}

#footer_nav li a, #copyright a {
	color: var(--brown);
}

#footer_nav li a:hover, #copyright a:hover {
	color: var(--light-brown);
}

#copyright {
	color: var(--brown);
	text-align: center;
	padding-bottom: 25px;
}

#copyright span, #copyright a {
	white-space: nowrap;
}

/* NAVIGATION CSS */

#nav_trigger {
	border: 0px;
	background-color: transparent;
	width: 50px;
	padding: 0px;
	position: absolute;
	top: 31px;
	left: 100px;
	z-index: 100;
	cursor: pointer;
}

#nav_trigger:after, #nav_trigger:before, #nav_trigger span {
	content: '';
	display: block;
	background-color: var(--brown);
	height: 2px;
	margin: 8px 0px;
	transition: all .2s ease-in-out;
}

#nav_trigger:hover:after, #nav_trigger:hover:before, #nav_trigger:hover span {
	background-color: var(--light-brown);
}

.full_nav #nav_trigger {
	position: fixed;
	width: 25px;
}

.full_nav #nav_trigger:before {
	transform: translateY(8px) rotate(45deg);
}

.full_nav #nav_trigger:after {
	transform: translateY(-8px) rotate(-45deg);
}

.full_nav #nav_trigger span {
	display: block;
	transform: scale(0);
}

.full_nav #nav_trigger:after, .full_nav #nav_trigger:before, .full_nav #nav_trigger span {
	margin: 6px 0px;
	background-color: var(--brown);
}

.full_nav #nav_trigger:hover:after, .full_nav #nav_trigger:hover:before, .full_nav #nav_trigger:hover span {
	background-color: var(--dark-gray);
}

#nav {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: auto;
}

#nav ul {
	padding: 0px;
}

#nav li {
	list-style: none;
	white-space: nowrap;
}

#top_left_nav, #top_right_nav {
	position: absolute;
	top: 31px;
}

#top_left_nav {
	left: 200px;
}

#top_right_nav {
	right: 100px;
}

#top_right_nav .top_nav {
	display: inline-block;
	margin-right: 25px;
}

.top_nav > li {
	display: inline-block;
	font-size: 14px;
	line-height: 16px;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
	padding-bottom: 13px;
	position: relative;
}

#top_left_nav .top_nav > li {
	margin-left: 25px;
}

#top_left_nav .top_nav > li:first-child {
	margin-left: 0px;
}

.top_nav > li a {
	color: var(--brown);
}

.top_nav > li a:hover, .top_nav > li.active a {
	color: var(--light-brown);
}

.top_nav > li a:after, #subnav li a:after, .c7-user-nav__account a:after {
	content: " ";
	transition: all .2s;
	width: 20px;
	height: 4px;
	position: absolute;
	bottom: 0px;
	left: calc(50% - 10px);
}

.top_nav > li a:hover:after, .top_nav > li.active a:after, #main_nav > li.active a:after, #subnav li a:hover:after, #subnav li.active a:after, .c7-user-nav__account a:hover:after {
	background-color: var(--tan);
}

.top_nav li > ul {
	position: absolute;
	top: 25px;
	left: 50%;
	transform: translateX(-50%);
	padding: 15px 40px !important;
	z-index: 20;
	visibility: hidden;
	opacity: 0;
	transition: .2s .2s;
	background-color: var(--yellow);
}

.top_nav li:hover > ul, .top_nav li.hover > ul {
	visibility: visible;
	transition-delay: 0s;
	opacity: 1;
}

.top_nav li li {
	font-size: 15px;
	font-style: italic;
	text-align: center;
	text-transform: none;
	border-top: 1px solid var(--dark-yellow);
}

.top_nav li li:first-child {
	border-top: 0px;
}

.top_nav li li a, .top_nav li.active li a {
	display: block;
	padding: 10px 0px;
	color: var(--brown);
}

.top_nav li li a:hover {
	color: var(--dark-gray);
}

.top_nav li li a:after {
	display: none;
}

#main_nav {
	width: 100%;
	max-width: 400px;
	height: 100vh;
	position: fixed;
	left: -100%;
	top: 0px;
	background-color: var(--peach);
	background-repeat: no-repeat;
	background-position: -50px 10px;
	padding-top: 100px;
	padding-bottom: 80px;
	z-index: 50;
	overflow-x: hidden;
	overflow-y: scroll;
	transition: left .2s ease-in-out;
}

.webp #main_nav {
	background-image: url('../images/nav-bg.webp');
}

.no-webp #main_nav {
	background-image: url('../images/nav-bg.png');
}

.full_nav #main_nav {
	left: 0px;
}

#main_nav li {
	display: block;
	font-size: 35px;
	line-height: 1em;
	text-transform: uppercase;
	padding: 0px 0px 20px 100px;
}

#main_nav li a, #main_nav li.active li a {
	color: var(--brown);
}

#main_nav li a:hover, #main_nav li.active a {
	color: var(--dark-gray);
}

#main_nav li ul {
	padding: 0px;
	max-height: 0px;
	overflow: hidden;
	transition: all 0.4s cubic-bezier(0,1,0,1);
}

#main_nav li.expanded > ul, #main_nav li.hover > ul {
	max-height: 499px;
	transition: all 0.4s cubic-bezier(1,0,1,0);
}

#main_nav li li {
	font-size: 21px;
	padding-left: 0px;
	font-style: italic;
	text-transform: none;
}

#main_nav li li:first-child {
	padding-top: 20px;
}

#main_nav li li:last-child {
	padding-bottom: 5px;
}

#subnav {
	background-color: var(--yellow);
	font-size: 15px;
	line-height: 1em;
	font-style: italic;
	font-weight: 700;
	text-align: center;
}

#content #subnav ul {
	padding: 0px;
	margin: 0px;
}

#subnav li {
	list-style: none;
	position: relative;
}

#subnav li a {
	color: var(--brown);
}

#subnav li a:hover, #subnav li.active a {
	color: var(--dark-gray);
}

/* COMMERCE7 CSS */

#c7-cart, #c7-account {
	display: inline-block;
	font-size: 14px;
	line-height: 25px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .1em;
	color: var(--dark-brown);
}

#c7-account {
	padding-top: 1px;
	min-width: 75px;
}

#c7-cart {
	min-width: 43px;
	vertical-align: top;
	padding-top: 3px;
}

.c7-user-nav__account {
	font-weight: 700;
}

.c7-user-nav__account a {
	position: relative;
	display: inline-block;
	vertical-align: top;
	padding: 0px 0px 3px 0px;
}

.c7-user-nav__account a:hover {
	color: var(--light-brown);
}

#c7-cart .c7-link, .c7-side-cart__header button {
	background-color: transparent;
}

.c7-user-nav__cart > button {
	padding: 3px 0px;
}

.c7-user-nav__cart__count {
	font-size: 14px;
	line-height: 17px;
	align-items: flex-start;
}

/*
.c7-order-summary__buttons {
	justify-content: space-between;
}

.c7-order-summary__buttons a {
	flex: none;
}
*/

#nav #c7-cart a, #nav #c7-account a {
	white-space: normal;
}

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

	.c7-order-summary__buttons a {
		flex: auto;
	}

	.c7-order-summary__buttons a:first-child {
		width: 40%;
	}

	.c7-order-summary__buttons a:last-child {
		width: 60%;
	}

}

.c7-account__header {
	background-color: transparent;
	padding: 0px;
	margin-bottom: 1em;
}

.c7-account__header p:first-of-type {
	color: var(--pink);
}

.c7-account__menu {
	box-shadow: none;
}

.c7-account {
	line-height: 1.5em;
}

.c7-account h1 {
	font-size: 36px;
}


/* CONTENT BLOCK CSS */

.block {
	position: relative;
}

.block.border_top {
	border-top: 1px solid var(--light-gray);
}

.block.bgcolor1, .container.bgcolor1 {
	background-color: var(--white);
}

.block.bgcolor2, .container.bgcolor2 {
	background-color: var(--peach);
}

.block.bgcolor3, .container.bgcolor3 {
	background-color: var(--yellow);
}

.block.top_bg:before, .block.bottom_bg:after {
	content: "";
	display: block;
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 50px;
}

.block.bottom_bg:after {
	top: auto;
	bottom: 0px;
}

.block.top_bg.top_bgcolor0:before, .block.bottom_bg.bottom_bgcolor0:after {
	background-color: var(--cream);
}

.block.top_bg.top_bgcolor1:before, .block.bottom_bg.bottom_bgcolor1:after {
	background-color: var(--white);
}

.block.top_bg.top_bgcolor2:before, .block.bottom_bg.bottom_bgcolor2:after {
	background-color: var(--peach);
}

.block.top_bg.top_bgcolor3:before, .block.bottom_bg.bottom_bgcolor3:after {
	background-color: var(--yellow);
}

@media only screen and (max-width: 1499px) {

	.block.top_bg:before, .block.bottom_bg:after {
		height: 40px;
	}

}

@media only screen and (max-width: 1199px) {

	.block.top_bg:before, .block.bottom_bg:after {
		height: 30px;
	}

}

.block_boxed_content .container {
	max-width: 1800px;
}

.block_boxed_content .content {
	max-width: 1000px;
	margin: 0px auto;
	border: 3px solid var(--peach);
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	padding: 50px;
	font-size: 16px;
}

.block_boxed_content .container.bgcolor2 .content {
	border: 3px solid var(--pink);
}

.block_boxed_content .title {
	text-align: center;
	margin-bottom: 1em;
}

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

	.block_boxed_content .content ul {
		columns: 2;
		-webkit-columns: 2;
		-moz-columns: 2;
		column-gap: 100px;
	}

}

.block_boxed_content .content ul li {
	break-inside: avoid-column;
}

@media only screen and (max-width: 1199px) {

	.block_boxed_content .content ul {
		column-gap: 50px;
	}

}

@media only screen and (max-width: 999px) {

	.block_boxed_content .content {
		padding: 30px;
	}

}

@media only screen and (max-width: 449px) {

	.block_boxed_content .content {
		padding: 15px;
	}

}

.block_content h1, .block_content h2.title {
	text-align: center;
}

.block_boxed_content_photo .container {
	max-width: 1000px;
	margin: 0px auto;
}

.block_boxed_content_photo .photo {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
}

.block_boxed_content_photo .photo img {
	height: 100%;
	object-fit: cover;
}

.block_boxed_content_photo .content {
	position: relative;
	z-index: 1;
	background-color: rgba(0,0,0,.65);
	color: var(--white);
}

.block_boxed_content_photo .title {
	text-align: center;
	margin-bottom: 1em;
	color: var(--peach);
}

.block_boxed_content_photo p {
	text-align: justify;
}

.block_photo {
	max-width: none;
	padding-left: 0px !important;
	padding-right: 0px !important;
}

.block_photo.parallax {
	min-height: 500px;
	background: transparent;
}

.block_photo img {
	width: 100%;
	display: block;
}

@media only screen and (max-width: 799px) {

	.block_photo {
		height: 400px;
		overflow: hidden;
	}

	.block_photo img {
		width: 800px;
		max-width: none;
	}

	.block_photo.center img {
		position: relative;
		left: 50%;
		margin-left: -400px;
	}

	.block_photo.right img {
		float: right;
	}

	.block_photo.left_center img {
		position: relative;
		left: 25%;
		margin-left: -200px;
	}

	.block_photo.right_center img {
		position: relative;
		left: 75%;
		margin-left: -600px;
	}

}

.block_content_photo .container {
	max-width: none;
}

#content .block_content_photo .photo {
	z-index: 10;
}

#content .block_content_photo .photo img {
	width: 100%;
	display: block;
}

#content .block_content_photo.stretch .photo img {
	height: 100%;
	object-fit: cover;
}

#content .block_content_photo .right_photo, #content .block_content_photo .left_photo {
	width: 50%;
}

#content .block_content_photo .right_photo {
	margin-left: 5%;
}

#content .block_content_photo .left_photo {
	margin-right: 5%;
}

.block_content_photo.bottom_bg .content {
	padding-bottom: 100px;
}

.block_content_photo .content_inner p {
	text-align: justify;
}

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

	.block_content_photo.stretch .container {
		display: flex;
	}

	.block_content_photo.stretch.left .container, .block_content_map.stretch.right .container {
		flex-direction: row-reverse;
	}

	.block_content_map.stretch.left .container {
		flex-direction: row;
	}

	.block_content_photo.stretch .container .photo {
		width: 40%;
		margin-bottom: 0px;
	}

	.block_content_photo.block_content_map .container .photo {
		width: 50%;
	}

	.block_content_photo.stretch .content {
		display: flex;
		width: 60%;
		align-items: center;
	}

	.block_content_photo.block_content_map .content {
		width: 50%;
	}

	.block_content_photo.stretch.left .content {
		justify-content: end;
	}

	.block_content_photo.stretch .content_inner {
		width: 100%;
		max-width: 1000px;
	}

}

@media only screen and (max-width: 1049px) {

	.block_content_photo .container {
		padding: 0px 50px 30px 50px;
	}

	.block_content_photo .content_inner {
		padding: 30px 0px 0px 0px !important;
	}

	.block_content_map .content_inner {
		padding: 0px 0px 30px 0px !important;
	}

	.block_content_photo.bottom_bg .content {
		padding-bottom: 20px;
	}

	.block_content_photo.block.top_bg::before, .block_content_photo.block.bottom_bg::after {
		background-color: transparent !important;
	}

}

@media only screen and (max-width: 959px) {

	.block_content_photo .container {
		padding: 0px 30px 10px 30px;
	}

}

@media only screen and (max-width: 599px) {

	.block_content_photo .container {
		padding: 0px 15px 10px 15px;
	}

}

.block_photo_photo .container .photo + .photo {
	margin-top: 20px;
}

.block_photo_photo img {
	display: block;
}

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

	.block_photo_photo .container {
		display: flex;
		justify-content: space-between;
	}

	.block_photo_photo .photo {
		width: calc(50% - 20px);
		margin: 0px !important;
	}

}

.block_box {
	position: relative;
	margin-bottom: 40px;
}

.block_box img {
	width: 100%;
}

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

	.block_boxes .container_inner {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}

	.block_box {
		width: calc(50% - 20px);
	}
}

.block_slideshow {
	clear: both;
	width: 100%;
	position: relative;
	padding-left: 0px !important;
	padding-right: 0px !important;
}

.block_slideshow > ul {
	padding: 0px !important;
	margin: 0px !important;
	position: relative;
	width: 100%;
	height: calc(100vh - 100px);
}

.block_slideshow .rslides li {
	list-style: none;
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	opacity: 0;
	margin: 0px !important;
}

.block_slideshow .rslides li:first-child {
	display: block;
	float: left;
	opacity: 1;
}

.block_slideshow li img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	float: left;
}

.block_slideshow .content {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	text-align: center;
	color: var(--cream);
	background-color: rgba(0,0,0,.25);
}

.block_slideshow .content_inner {
	position: relative;
	top: 50%;
	transform: translateY(-50%);
	font-size: clamp(20px, 4vw, 24px) !important;
	line-height: 1.2em;
	font-weight: 700;
}

.block_slideshow .logo {
	margin-bottom: 1em;
}

.block_slideshow .logo img {
	width: 90%;
	max-width: 700px;
	height: auto;
	object-fit: revert;
	float: none;
}

.block_slideshow .link {
	margin-top: 1.75em;
}

.block_slideshow .fancy_button {
	background-color: var(--peach);
	color: var(--brown);
}

.block_slideshow .fancy_button:hover {
	background-color: var(--light-peach);
}

.block_slideshow .rslides_tabs {
	padding: 0px;
	text-align: center;
	position: absolute;
	bottom: 1%;
	left: 0px;
	width: 100%;
	height: auto;
	z-index: 10;
}

.rslides_tabs li {
	list-style: none;
	display: inline-block;
	margin: 0px 3px;
	width: 14px;
	height: 14px;
	position: relative;
}

.rslides_tabs li a {
	display: block;
	width: 14px;
	height: 14px;
	overflow: hidden;
	text-indent: 105%;
	cursor: pointer;
}

.rslides_tabs li a:before {
	position: absolute;
	top: 0px;
	left: 0px;
	content: "\f111";
	font-family: "Font Awesome 7 Pro";
	font-size: 14px;
	line-height: 14px;
	font-weight: 400;
	color: var(--white);
	text-indent: 0px;
}

.rslides_tabs li.rslides_here a:before {
	font-weight: 900;
}

.rslides_nav {
	position: absolute;
	top: 50%;
	left: 20px;
	z-index: 10;
	font-size: 30px;
	line-height: 30px;
	color: var(--white);
}

.rslides_nav.next {
	left: auto;
	right: 20px;
}

/* HOME CSS */

#home_slideshow_wrapper {
	height: calc(100vh - 100px);
}

/* TEAM CSS */

.block_team .container {
	max-width: 1700px;
}

.block_team .title {
	font-size: 35px;
	line-height: 1em;
	font-style: italic;
	color: var(--brown);
	text-align: center;
}

.block_team .team {
	font-family: "ambroise-std", Georgia, "Times New Roman", Times, sans-serif;
	font-size: 20px;
	line-height: 1em;
	font-weight: 600;
	text-align: center;
	color: var(--pink);
	background-color: var(--peach);
}

.block_team .photo {
	display: block;
	position: relative;
}

.block_team .photo:after {
	content: "";
	display: block;
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
}

.block_team a:hover .photo:after {
	background-color: rgba(0,0,0,.15);
}

.block_team .photo img {
	display: block;
}

.block_team .content {
	padding: 20px;
}

.block_team .team_title {
	display: block;
	margin-bottom: 5px;
}

.block_team .team_name {
	display: block;
	font-size: 1.4em;
	line-height: 1em;
	color: var(--brown);
}

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

	.block_team .container_inner {
		display: grid;
		grid-template-columns: 1fr 1fr;
		grid-column-gap: 20px;
		grid-row-gap: 50px;
	}

}

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

	.block_team .container_inner {
		grid-template-columns: 1fr 1fr 1fr;
	}

}

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

	.block_team .container_inner {
		grid-template-columns: 1fr 1fr 1fr 1fr;
	}

}

.block_team_detail .container {
	max-width: 1400px;
	display: flex;
}

.block_team_detail .photo {
	width: 41.666667%;
}

.block_team_detail .content {
	width: 58.333333%;
	padding-left: 100px;
}

.block_team_detail p {
	text-align: justify;
}

@media only screen and (max-width: 1499px) { 

	.block_team_detail .container {
		max-width: 1350px;
	}

	.block_team_detail .content {
		padding-left: 75px;
	}

}

@media only screen and (max-width: 1199px) { 

	.block_team_detail .content {
		padding-left: 50px;
	}

}

@media only screen and (max-width: 959px) { 

	.block_team_detail .content {
		padding-left: 30px;
	}

}

@media only screen and (max-width: 699px) { 

	.block_team_detail .container {
		display: block;
	}

	.block_team_detail .photo {
		width: 100%;
		max-width: 500px;
		margin: 0px auto 10px auto;
	}


	.block_team_detail .content {
		width: 100%;
		padding: 0px;
	}

}

/* NEWS AND EVENTS CSS */

.block_news_events .container {
	max-width: 1700px;
	text-align: center;
}

.block_news_events.featured .container_inner {
	margin-top: 70px;
}

.block_news_events .item_inner {
	display: flex;
}

.block_news_events .date {
	width: 115px;
	padding-right: 25px;
	font-size: 65px;
	line-height: .8em;
	font-weight: 700;
	color: var(--tan);
}

.block_news_events .date.multi {
	font-size: 50px;
}

.block_news_events .date span {
	display: block;
	font-family: "ambroise-std", Georgia, "Times New Roman", Times, sans-serif;
	font-size: 40px;
	line-height: 1em;
	font-weight: 600;
	color: var(--brown);
}

.block_news_events .content {
	width: calc(100% - 115px);
	font-size: 19px;
	font-weight: 700;
	text-align: left;
	padding-top: 5px;
}

.block_news_events .content .title {
	font-family: "ambroise-std", Georgia, "Times New Roman", Times, sans-serif;
	font-size: 32px;
	line-height: 34px;
	font-weight: 600;
	margin-bottom: 5px;
}

.block_news_events .content span {
	color: var(--tan);
}

.block_news_events .content a {
	font-style: italic;
}

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

	.block_news_events .container_inner {
		display: grid;
		grid-template-columns: 1fr 1fr;
		grid-column-gap: 75px;
		grid-row-gap: 75px;
	}

}

@media only screen and (min-width: 1150px) and (max-width: 1299px) { 

	.block_news_events .container_inner {
		grid-column-gap: 60px;
	}

}

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

	.block_news_events .container_inner {
		grid-template-columns: 1fr 1fr 1fr;
	}

}

@media only screen and (max-width: 749px) { 

	.block_news_events .item + .item {
		margin-top: 50px;
	}

}

.event_date {
	display: flex;
	justify-content: center;
	margin-top: -20px;
	margin-bottom: 20px;
	font-size: 19px;
	font-weight: 700;
}

.event_date div {
	margin: 0px 20px;
}

.event_date span {
	color: var(--tan);
}

.event_date .date {
	font-family: "ambroise-std", Georgia, "Times New Roman", Times, sans-serif;
	font-size: 30px;
	line-height: 1em;
}

.event_date .date span {
	font-family: "sweet-sans-pro", Arial, Helvetica, sans-serif;
}

.event_details .photo {
	text-align: center;
	margin-bottom: 20px;
}

/* INSTAGRAM CSS */

.block_instagram .container {
	max-width: none;
	background-color: var(--white);
}

.block_instagram .container_inner {
	display: flex;
	align-items: center;
	margin-right: -100px;
}

.block_instagram .content {
	width: 300px;
	padding-right: 50px;
	font-family: "ambroise-std", Georgia, "Times New Roman", Times, sans-serif;
	font-size: 25px;
	line-height: 1em;
	color: var(--pink);
	letter-spacing: .05em;
	text-align: right;
}

.block_instagram .title {
	font-size: 45px;
	color: var(--brown);
	margin-bottom: .25em;
}

.block_instagram p:first-of-type {
	margin-bottom: 1.5em;
}

.block_instagram a {
	font-size: 30px;
}

.block_instagram .posts {
	width: calc(100% - 300px);
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.block_instagram .posts div {
	width: calc(25% - 8px);
	position: relative;
}

.block_instagram .posts a {
	display: block;
	width: 100%;
	height: 0px;
	padding-bottom: 100%;
	position: relative;
	overflow: hidden;
	background-position: center center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}

.block_instagram .posts span {
	display: block;
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
}

.block_instagram .posts a:hover span {
	background-color: rgba(0,0,0,.15);
}

@media only screen and (max-width: 1499px) {

	.block_instagram .container_inner {
		margin-right: -75px;
	}

}


@media only screen and (max-width: 1199px) {

	.block_instagram .container_inner {
		margin-right: -50px;
	}

}

@media only screen and (max-width: 1099px) {

	.block_instagram .container_inner {
		display: block;
		margin: 0px -25px;
	}

	.block_instagram .content, .block_instagram .posts {
		width: 100%;
	}

	.block_instagram .content {
		text-align: center;
		padding-right: 0px;
	}

	.block_instagram .content p {
		display: inline-block;
		margin: 0px 10px;
	}

	.block_instagram .posts {
		margin-top: 50px;
	}

}

@media only screen and (max-width: 959px) {

	.block_instagram .container_inner {
		margin: 0px -15px;
	}

}

@media only screen and (max-width: 699px) {

	.block_instagram .posts div {
		width: calc(50% - 7.5px);
	}

	.block_instagram .post3, .block_instagram .post4 {
		margin-top: 15px;
	}

}

@media only screen and (max-width: 599px) {

	.block_instagram .container_inner {
		margin-right: -15px;
	}

	.block_instagram .content {
		padding-right: 30px;
	}

}

@media only screen and (max-width: 399px) {

	.block_instagram .title {
		font-size: 35px;
	}

}


/*
@media only screen and (max-width: 1099px) {
	.block_instagram .posts div {
		width: calc(50% - 7.5px);
	}

	.block_instagram .post3, .block_instagram .post4 {
		margin-top: 15px;
	}

}

@media only screen and (max-width: 959px) {

}

@media only screen and (max-width: 699px) {

	.block_instagram .content {
		width: 225px;
		padding-right: 30px;
		line-height: 1em;
	}

	.block_instagram .posts {
		width: calc(100% - 225px);
	}

}

*/

/* WINE CSS */

.block_collection .container {
	max-width: 1700px;
}

.block_collection .title, .c7-error-page__recommendations .title {
	text-align: center;
}

.c7-product-collection__product-list {
	grid-template-columns: 1fr 1fr 1fr 1fr;
	column-gap: 20px;
	row-gap: 40px;
	margin: 0px;
}

.block_collection .product, .c7-error-page__recommendations .product {
	background-color: var(--peach);
}

.block_collection .product .photo, .c7-error-page__recommendations .product .photo {
	background-color: var(--white);
	padding: 40px 20px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.block_collection .product .photo img, .c7-error-page__recommendations .product .photo img {
	display: block;
	margin: 0px auto;
	height: auto;
	max-height: 440px;
}

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

	.block_collection .product .photo a:hover img, .c7-error-page__recommendations .product .photo a:hover img, .block_featured_collection .product .photo a:hover img {
		transform: scale(1.05);
	}

}

.block_collection .product .content, .c7-error-page__recommendations .product .content {
	padding: 20px;
}

.block_collection .product .title,  .c7-error-page__recommendations .product .title, .block_featured_collection .product .title {
	font-family: "ambroise-std", Georgia, "Times New Roman", Times, sans-serif;
	font-size: 28px;
	line-height: 30px;
	font-weight: 600;
}

.block_collection .product .title a, .c7-error-page__recommendations .product .title a, .block_featured_collection .product .title a {
	color: var(--brown);
}

.block_collection .product .title .vintage, .c7-error-page__recommendations .product .title .vintage, .block_featured_collection .product .title .vintage {
	display: block;
	font-size: 18px;
}

.block_collection .c7-product__add-to-cart, .c7-error-page__recommendations .c7-product__add-to-cart {
	text-align: center;
}

.block_collection .c7-product__add-to-cart__price__variant, .c7-error-page__recommendations .c7-product__add-to-cart__price__variant, .product_detail .c7-product__add-to-cart__price__variant {
	display: none;
}

.block_collection .product .c7-product__add-to-cart__price, .c7-error-page__recommendations .product .c7-product__add-to-cart__price, .product_detail .c7-product__add-to-cart__price {
	display: inline-block;
	margin-right: 10px;
	font-size: 21px;
	font-weight: 700;
}

.block_collection .product .c7-product__add-to-cart__form, .c7-error-page__recommendations .product .c7-product__add-to-cart__form, .product_detail .c7-product__add-to-cart__form {
	display: inline-block;
}

.block_collection .product input, .c7-error-page__recommendations input, .product_detail input {
	border: 2px solid var(--pink) !important;
	width: 40px !important;
	height: 40px !important;
}

.block_collection .c7-product__add-to-cart__form__quantity, .c7-error-page__recommendations .c7-product__add-to-cart__form__quantity, .product_detail .c7-product__add-to-cart__form__quantity {
	display: inline-block;
}

@media only screen and (max-width: 1449px) {

	.c7-product-collection__product-list {
		grid-template-columns: 1fr 1fr 1fr;
	}

}

@media only screen and (max-width: 1099px) {

	.c7-product-collection__product-list {
		grid-template-columns: 1fr 1fr;
	}

}

@media only screen and (max-width: 699px) {

	.c7-product-collection__product-list {
		grid-template-columns: 1fr;
	}

}

.block_featured_collection .container {
	max-width: 1800px;
	background-color: var(--peach);
	display: flex;
	align-items: center;
}

.block_featured_collection .container > .content {
	width: 400px;
	font-size: 17px;
	line-height: 24px;
	text-align: right;
}

.block_featured_collection .container > .content .title {
	color: var(--brown);
	margin-bottom: .25em;
}

.block_featured_collection p.link {
	margin-top: 2em;
}

.block_featured_collection .c7-product-collection {
	width: calc(100% - 400px);
}


.block_featured_collection .c7-product-collection__product-list {
	margin-top: -50px;
/*
	grid-template-columns: 1fr 1fr 1fr 1fr;
*/
}

.block_featured_collection .product {
	text-align: center;
	padding: 0px 20px 50px 20px;
}

.block_featured_collection .product .photo {
	margin-bottom: 5px;
}

.block_featured_collection .product img {
	width: auto !important;
	max-width: none;
	height: 550px;
	margin: 0px auto;
}

.block_featured_collection .product a {
	font-weight: 700;
	font-style: italic;
}

.block_featured_collection .owl-nav button {
	background-color: var(--brown) !important;
	color: var(--peach) !important;
	width: 30px;
	height: 30px;
	border-radius: 15px;
	font-size: 16px !important;
	line-height: 20px !important;
}

.block_featured_collection .owl-nav button.owl-prev {
	left: -20px;
}

.block_featured_collection .owl-nav button.owl-next {
	right: -20px;
}


@media only screen and (max-width: 1499px) {

	.block_featured_collection .product img {
		height: 450px;
	}

	.block_featured_collection .product .title {
		font-size: 24px;
	}

}

@media only screen and (min-width: 1200px) and (max-width: 1299px) {

	.block_featured_collection .product img {
		height: 550px;
	}

	.block_featured_collection .product .title {
		font-size: 28px;
	}

}

@media only screen and (max-width: 1199px) {

	.block_featured_collection .owl-nav button.owl-prev {
		left: 0px;
	}

	.block_featured_collection .owl-nav button.owl-next {
		right: 0px;
	}

}

@media only screen and (max-width: 1099px) {

	.block_featured_collection .container > .content {
		width: 350px;
	}

	.block_featured_collection .c7-product-collection {
		width: calc(100% - 350px);
	}

	.block_featured_collection .owl-nav button.owl-prev {
		left: -5px;
	}

	.block_featured_collection .owl-nav button.owl-next {
		right: -5px;
	}

}

@media only screen and (max-width: 1049px) {

	.block_featured_collection .owl-nav button.owl-prev {
		left: -10px;
	}

	.block_featured_collection .owl-nav button.owl-next {
		right: -10px;
	}

}

@media only screen and (max-width: 899px) {

	.block_featured_collection .container > .content {
		width: 300px;
	}

	.block_featured_collection .c7-product-collection {
		width: calc(100% - 300px);
	}

}

@media only screen and (max-width: 849px) {

	.block_featured_collection .owl-nav button.owl-prev {
		left: 40px;
	}

	.block_featured_collection .owl-nav button.owl-next {
		right: 40px;
	}

	.block_featured_collection .product .photo, .block_featured_collection .product .content {
		max-width: 250px;
		margin-left: auto;
		margin-right: auto;
	}

}

@media only screen and (max-width: 799px) {

	.block_featured_collection .owl-nav button.owl-prev {
		left: 20px;
	}

	.block_featured_collection .owl-nav button.owl-next {
		right: 20px;
	}

}

@media only screen and (max-width: 749px) {

	.block_featured_collection .owl-nav button.owl-prev {
		left: 0px;
	}

	.block_featured_collection .owl-nav button.owl-next {
		right: 0px;
	}

}

@media only screen and (max-width: 699px) {

	.block_featured_collection .container {
		flex-direction: column-reverse;
	}

	.block_featured_collection .c7-product-collection {
		width: 90%;
		max-width: 350px;
	}

	.block_featured_collection .container > .content {
		width: 100%;
		padding-bottom: 40px;
	}

	.block_featured_collection .product img {
		height: 550px;
	}

	.block_featured_collection .product .title {
		font-size: 28px;
	}

	.block_featured_collection .owl-nav button.owl-prev {
		left: -10px;
	}

	.block_featured_collection .owl-nav button.owl-next {
		right: -10px;
	}

}

@media only screen and (max-width: 449px) {

	.block_featured_collection .product img {
		height: 450px;
	}

	.block_featured_collection .product .title {
		font-size: 24px;
	}

}

.product_detail {
	display: flex;
}

.product_detail .photo {
	width: 41.666666%;
	text-align: center;
}

.product_detail .photo div {
	padding: 50px;
	background-color: #FFFFFF;
}

.product_detail .photo img {
	height: 100%;
	max-height: 700px;
}

.product_detail .content {
	width: 58.333333%;
}

.product_detail h1 {
	text-align: left;
}

.product_detail h1 span {
	display: block;
	font-size: .5em;
	line-height: 1.2em;
	font-style: italic;
	color: var(--brown);
}

.product_detail form {
	background-color: var(--peach);
	display: inline-block;
	padding: 10px 20px;
	margin-bottom: 2em;
}

.product_detail .specs {
	margin-bottom: 2em;
}

.product_detail .spec {
	display: inline-block;
	position: relative;
	padding-left: 30px;
	font-size: 18px;
	line-height: 26px;
	color: var(--light-brown);
	margin-right: 20px;
}

.product_detail .spec span {
	position: absolute;
	top: 5px;
	left: 0px;
}

.product_detail .spec:last-child {
	margin-right: 20px;
}

.product_detail .spec strong {
	color: var(--brown);
}

.product_detail h2 {
	font-family: "ambroise-std", Georgia, "Times New Roman", Times, sans-serif;
	font-size: 34px;
}

.product_detail p {
	text-align: justify;
}

.product_notes {
	border: 3px solid var(--peach);
	text-align: justify;
	padding: 40px 45px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	margin-top: 40px;
}

.product_notes h2 {
	font-family: "ambroise-std", Georgia, "Times New Roman", Times, sans-serif;
	font-size: 24px;
	font-style: italic;
}

.product_notes div + h2 {
	margin-top: 1em;
}

@media only screen and (max-width: 699px) { 

	.product_detail {
		display: block;
	}

	.product_detail .photo {
		width: 100%;
	}

	.product_detail .content {
		width: 100%;
		padding: 20px 0px 0px 0px;
	}

}

/* WINE CLUB CSS */

.block_wine_clubs .container {
	max-width: 1800px;
}

.block_wine_clubs .content {
	max-width: 1000px;
	margin: 0px auto;
}

.block_wine_clubs .content .title {
	text-align: center;
	color: var(--brown);
}

.block_wine_clubs .content p {
	text-align: justify;
}

.wine_clubs .club {
	font-size: 16px;
	line-height: 26px;
	text-align: center;
	margin-top: 40px;
}

.wine_clubs .club .photo {
	position: relative;
	margin-bottom: 20px;
}

.wine_clubs .club .photo img {
	display: block;
}

.wine_clubs .club .photo .title {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	background-color: rgba(0,0,0,.5);
	font-family: "ambroise-std", Georgia, "Times New Roman", Times, sans-serif;
	font-size: clamp(30px, 12vw, 60px) !important;
	line-height: 1em;
	color: var(--white);
	padding: 0px 10%;
}

.wine_clubs .club .photo .title em {
	font-size: .6666666em;
}

.wine_clubs .club .description {
	margin-bottom: .5em;
}

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

	.wine_clubs {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}

	.wine_clubs .club {
		width: calc(50% - 10px);
	}

	.wine_clubs .club .photo .title {
		font-size: clamp(30px, 6vw, 60px) !important;
	}

}

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

	.wine_clubs .club {
		width: calc(50% - 15px);
	}

}

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

	.wine_clubs .club {
		width: calc(25% - 20px);
	}

	.wine_clubs .club .photo .title {
		font-size: clamp(30px, 3vw, 60px) !important;
	}

}

/* GALLERY CSS */

.block_gallery .container {
	max-width: 2000px;
}

.gallery div {
	width: calc(25% - 7.5px);
	margin-bottom: 8px;
}

.gallery div img {
	width: 100%;
	display: block;
}

.gallery a {
	display: block;
	width: 100%;
	height: 100%;
}

.gallery a span {
	display: block;
	width: 100%;
	height: 100%;
	position: relative;
}

.gallery a span:after {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	content: " ";
}

.gallery a:hover span:after {
	background-color: rgba(0,0,0,.3);
}

.justified-gallery {
	width: 100%;
	position: relative;
	overflow: hidden;
}

.justified-gallery > div {
	position: absolute;
	display: inline-block;
	overflow: hidden;
}

.justified-gallery > div > a > span > picture > img {
	position: absolute;
	top: 50%;
	left: 50%;
}

.justified-gallery.loaded div {
	transition: width .3s, height .3s, top .3s, left .3s;
	-moz-transition: width .3s, height .3s, top .3s, left .3s;
	-webkit-transition: width .3s, height .3s, top .3s, left .3s;
}

.justified-gallery.loaded img {
	transition: width .3s, height .3s, margin-top .3s, margin-left .3s;
	-moz-transition: width .3s, height .3s, margin-top .3s, margin-left .3s;
	-webkit-transition: width .3s, height .3s, margin-top .3s, margin-left .3s;
}

@media only screen and (max-width: 1099px) { 

	.gallery div {
		width: calc(33.333333333333333% - 6.666666666666px);
	}

}

@media only screen and (max-width: 649px) { 

	.gallery div {
		width: calc(50% - 5px);
	}

}

/* FAQ CSS */

.block_faqs .faq {
	position: relative;
}

.block_faqs div.question {
	cursor: pointer;
	padding: 5px 15px;
	margin-bottom: 10px;
	background-color: var(--light-gray);
	padding: 10px 15px 10px 15px;
}

.block_faqs div.question:before {
	float: left;
	margin-right: 10px;
	display: inline;
	content: '\f0d7';
	font-family: "Font Awesome 7 Pro";
	font-size: 20px;
	font-weight: 900;
	font-style: normal;
}

.block_faqs div.answer {
	display: none;
}

.block_faqs div.expand div.question:before {
	content: '\f0d8';
}

.block_faqs div.expand div.answer {
	display: block;
	margin-bottom: 20px;
}

/* TESTIMONIALS CSS */

.block_testimonials .testimonial {
	padding: 50px;
	background-color: var(--light-gray);
}

.block_testimonials .testimonial cite {
	display: block;
}

.block_testimonials .testimonial blockquote {
	margin: 0px;
	text-align: justify;
}

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

	.block_testimonials .testimonials {
		margin-left: -50px;
	}

	.block_testimonials .testimonial {
		width: calc(50% - 50px);
		float: left;
		margin: 0px 0px 50px 50px;
	}

}

@media only screen and (min-width: 800px) and (max-width: 959px) {

	.block_testimonials .testimonials {
		margin-left: -30px;
	}

	.block_testimonials .testimonial {
		padding: 30px;
		width: calc(50% - 30px);
		margin: 0px 0px 30px 30px;
	}

}

@media only screen and (max-width: 799px) {

	.block_testimonials .testimonial {
		padding: 30px;
		position: relative !important;
		top: auto !important;
		left: auto !important;
		margin-top: 30px;
	}

}

@media only screen and (max-width: 599px) {

	.block_testimonials .testimonial {
		padding: 15px;
		margin-top: 15px;
	}

}

.block_testimonial_carousel .testimonial {
	text-align: center;
}

/* POPUP CSS */

#popup, body.popup {
	max-width: 700px;
	background-color: var(--cream);
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

#popup {
	display: none;
	width: 90%;
}

#popup p {
	line-height: 1.5em;
}

#popup p:last-of-type {
	margin-bottom: 0px;
}

#popup .close {
	border: 0px;
	background-color: transparent;
	position: absolute;
	top: 8px;
	right: 10px;
	cursor: pointer;
	font-size: 22px;
	line-height: 22px;
	color: var(--black);
}

.fancybox-container .fancybox-close-small {
	top: 0px !important;
	right: 0px !important;
	background-color: transparent !important;
}

.fancybox-container .fancybox-close-small:hover {
	background-color: transparent !important;
}

.fancybox-button svg path {
	fill: var(--brown) !important;
}

.fancybox-button:hover svg path {
	fill: var(--light-brown) !important;
}

#popup_logo {
	text-align: center;
	padding: 75px 15px;
}

#popup_logo img {
	width: 100%;
	max-width: 300px;
}

@media only screen and (max-width: 599px) {

	#popup_logo {
		padding: 50px 15px;
	}

}

/* RESPONSIVE CSS */

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

	#content #subnav ul {
	}

	#subnav li {
		display: inline-block;
		padding: 13px 0px 14px 0px;
		margin: 0px 15px;
		white-space: nowrap;
	}

	#section_title {
		display: none;
	}

}

@media only screen and (max-width: 1499px) { 

	#nav_trigger {
		left: 75px;
	}

	#top_left_nav {
		left: 175px;
	}

	#top_right_nav {
		right: 75px;
	}

}

@media only screen and (max-width: 1199px) { 

	#nav_trigger {
		left: 50px;
	}

	#top_left_nav {
		left: 150px;
	}

	#top_right_nav {
		right: 50px;
	}

}

@media only screen and (max-width: 1149px) { 

	#top_left_nav {
		left: 135px;
	}

	#top_left_nav .top_nav > li {
		margin-left: 15px;
	}

	#top_right_nav .top_nav {
		margin-right: 15px;
	}

}

@media only screen and (max-width: 1049px) { 

	#top_left_nav {
		display: none;
	}

	#top_right_nav .top_nav {
		display: none;
	}

}

@media only screen and (max-width: 959px) { 

	#nav_trigger {
		left: 30px;
	}

	#top_left_nav {
		left: 130px;
	}

	#top_right_nav {
		right: 30px;
	}

}

@media only screen and (max-width: 767px) {

	.full_nav body {
		overflow: hidden;
	}

	.full_nav #header_inner {
		height: 100vh;
		overflow-y: scroll;
		position: fixed;
	}

	.collapsed_temp #top_right_nav, .collapsed #top_right_nav {
		top: 5px;
	}

	#subnav {
		height: 42px;
		position: relative;
	}

	#section_title {
		padding: 0px 15px;
		font-size: 16px;
		line-height: 38px;
		font-weight: bold;
		cursor: pointer;
		-webkit-tap-highlight-color: rgba(0,0,0,0);
	}

	#section_title:after {
		padding-left: 10px;
		content: '\f0d7';
		font-family: "Font Awesome 7 Pro";
		font-size: 20px;
		font-weight: 900;
		font-style: normal;
	}

	#subnav.expanded #section_title:after {
		content: '\f0d8';
	}

	#content #subnav ul {
		position: absolute;
		top: 40px;
		left: 0px;
		width: 100%;
		max-height: 0px;
		overflow: hidden;
		background-color: var(--yellow);
		padding: 0px;
		z-index: 30;
		transition: all 0.4s cubic-bezier(0,1,0,1);
	}

	#content #subnav.expanded ul {
		max-height: 499px;
		overflow: auto;
		transition: all 0.4s cubic-bezier(1,0,1,0);
	}

	#subnav li {
		margin: 0px;
		display: block;
		line-height: 1.1em;
	}

	#subnav li:last-child {
		padding-bottom: 10px;
	}

	#subnav li a {
		display: block;
		padding: 10px 15px;
	}

	#subnav li a:after {
		display: none;
	}

	#top_right_nav {
		top: 15px;
		right: 15px;
		text-align: right;
	}

	#c7-cart, #c7-account {
		display: block;
	}

	#c7-account {
		min-width: none;
	}

	.c7-user-nav__account {
		padding: 0px;
	}

}

@media only screen and (max-width: 599px) { 

	#nav_trigger {
		left: 15px;
	}

	#top_left_nav {
		left: 15px;
	}

}
