/*

Developer: Parscale
Email Address: info@parscale.com
Developer Website: http://www.parscale.com/
Client Website:	http://www.trumpwinery.com

*/

/* Table of Contents
-----------------------------------------------------------------------------

	1. Clean Base
	2. Base Typography
	3. Images
	4. Links
	5. Forms
	6. Tables
	7. Framework

*/

/* 1. Create a Clean Base
------------------------------------------------------------------------------*/
html {
	font-size: 100%; /* 16px base */
	/* Adjust font size */
	font-size: 100%;
	-webkit-text-size-adjust: 100%;
	/* Font varient */
	font-variant-ligatures: none;
	-webkit-font-variant-ligatures: none;
	/* Smoothing */
	text-rendering: optimizeLegibility;
	-moz-osx-font-smoothing: grayscale;
	font-smoothing: antialiased;
	-webkit-font-smoothing: antialiased;
	text-shadow: rgba(0, 0, 0, 0.01) 0 0 1px;
}

html,
body,
br,
hr,
div,
span,
a,
object,
iframe,
ul,
ol,
dl,
li,
dt,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
q,
address,
small,
big,
cite,
dfn,
ins,
del,
i,
em,
b,
strong,
sup,
sub,
strike,
pre,
code,
samp,
kbd,
var,
tt,
form,
fieldset,
legend,
label,
input,
textarea,
option,
.nobox {
	background: transparent;
	border: 0;
	font-size: 100%;
	margin: 0;
	outline: 0;
	padding: 0;
	vertical-align: baseline;
}

blockquote,
q {
	font-family: var(--secondary-font);
	font-size: 18px;
	color: #d6cfbe;
	line-height: 33px;
	letter-spacing: 0.01em;
}
br {
	height: 0;
}
ul,
ol,
dl {
	list-style: none;
}

/* Class for clearing floats */
.clear {
	clear: both;
	display: block;
	overflow: hidden;
	visibility: hidden;
	width: 0;
	height: 0;
}

/* 2. Define Base Typography
------------------------------------------------------------------------------*/
:root {
	/* Color Variables */
	--text-color: #241f1f;
	/* --accent-color: #DFD1A7; */
	--accent-color: rgb(209, 179, 113);
	--primary-color: #efe8d3;
	--secondary-color: #fbf9f1;

	/* Font Variables */
	--primary-font: "Montserrat", sans-serif;
	--secondary-font: "freight-display-pro", serif;
	--heading-font: "freight-display-pro", serif;
}

.bg-white {
	background-color: white;
}

.bg-light {
	background-color: var(--secondary-color);
}

.bg-dark {
	background-color: var(--primary-color);
}

.bg-accent {
	background-color: var(--accent-color);
}
html {
	font-size: 100%;
	-webkit-text-size-adjust: 100%;
	font-variant-ligatures: none;
	-webkit-font-variant-ligatures: none;
	text-rendering: optimizeLegibility;
	-moz-osx-font-smoothing: grayscale;
	font-smoothing: antialiased;
	-webkit-font-smoothing: antialiased;
	text-shadow: rgba(0, 0, 0, 0.01) 0 0 1px;
}

section > div.container {
	/* max-width: 1200px; */
	margin: 0 auto;
	padding: 6.5em 2em;
	width: 98%;
}

@media screen and (max-width: 768px) {
	section > div.container {
		padding: 3em 2em;
	}
}

div.container.tabbed-two-column-section.right-image,
div.container.tabbed-two-column-section.left-image {
	display: flex;
	flex-direction: row;
	align-items: center;
}

@media screen and (min-width: 768px) {
	div.container.tabbed-two-column-section.right-image,
	div.container.two-column-section.right-image,
	div#tabbed-slider {
		padding: 8.5em 2em 8.5em 0;
	}

	div.container.tabbed-two-column-section.left-image,
	.left-image {
		padding: 8.5em 0em 8.5em 2em;
	}
}

@media screen and (max-width: 768px) {
	div.container.tabbed-two-column-section.right-image,
	div.container.tabbed-two-column-section.left-image {
		padding: 4em 2.5em;
		flex-direction: column;
		align-items: center;
	}
}

#header-container {
	display: none;
}

/* Create the Default Headers  */
h1,
h2,
h3,
h4,
h5,
h6 {
	color: var(--text-color);
	font-family: var(--heading-font);
	font-weight: 300;
	font-size: 2.9em;
	text-transform: none;
	letter-spacing: 0;
	line-height: 0.95em;
}

/* Create the Default Paragraphs */
p {
	color: var(--text-color);
	line-height: 1.6em;
	font-size: 1.1em !important;
	font-family: var(--primary-font);
	letter-spacing: 0.03em;
	font-weight: 400;
}

@media screen and (max-width: 1024px) {
	h1,
	h2,
	h3,
	h4,
	h5,
	h6 {
		font-size: 2.5em;
	}
}

@media screen and (max-width: 768px) {
	h1,
	h2,
	h3,
	h4,
	h5,
	h6 {
		font-size: 1.8em;
	}

	/* Create the Default Paragraphs */
	p,
	ul li {
		font-size: 1em;
	}
}

@media screen and (max-width: 330px) {
	h1,
	h2,
	h3,
	h4,
	h5,
	h6 {
		font-size: 1.5em;
	}

	/* Create the Default Paragraphs */
	p ul li {
		font-size: 1em;
	}
}

/* Other Typo */
strong {
	font-weight: bold;
}
hr {
	border: 1px #d1b371 solid;
	clear: both;
	height: 0;
}
ol {
	list-style: decimal;
}
ul {
	list-style: disc;
}

/* Google Web Font Smoothing */
html,
body,
p,
a,
h1,
h2,
h3,
h4,
h5,
h6 {
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

/* 3. Images
------------------------------------------------------------------------------*/

/* Remove border around linked images */
img {
	border: 0;
	border-style: none;
}

/* 4. Links
------------------------------------------------------------------------------*/

/* Default Link Types */
a {
	color: var(--text-color);
	text-decoration: none;
	font-family: "Montserrat", serif;
	font-weight: 400;
}
a:hover {
	color: var(--text-color);
	text-decoration: none;
}
a:active {
	outline: none;
}
a:focus {
	outline: none;
}

/* 5. Forms
------------------------------------------------------------------------------*/

/* Removes fieldset borders. even on Opea 7 */
fieldset {
	border: 1px solid transparent;
}

/* 6. Tables
------------------------------------------------------------------------------*/

/* Table Fixes */
table {
	border-spacing: 0;
	border-collapse: collapse;
}
td {
	font-size: 16px;
	line-height: 22px;
	text-align: left;
	font-weight: normal;
	vertical-align: top;
	padding-bottom: 40px;
}

input[type="text"],
textarea,
input[type="submit"],
input[type="reset"] {
	-webkit-appearance: none;
	border-radius: 0px;
}
input[type="text"],
input[type="password"] {
	outline: none;
}
textarea:focus,
input:focus,
a,
div,
img {
	outline: none;
}

* {
	box-sizing: border-box;
}

/* 7. Framework
------------------------------------------------------------------------------*/

/* Page Layout */
html,
body {
	height: 100%;
	font-size: 13px;
	font-family: var(--primary-font);
	-webkit-text-size-adjust: none;
	box-sizing: border-box;
}

/* General */
#wrapper {
	min-height: 100%;
	height: auto !important;
	margin: 0 auto -71px;
	padding-top: 0 !important;
}
.container {
	width: 940px;
	margin: auto;
	position: relative;
}
.last {
	margin-right: 0px !important;
}
.disable-hover {
	pointer-events: none;
}
.home_negative {
	margin: -10px auto -40px !important;
}
#main_container {
	position: relative;
	z-index: 99;
}

/* Header */
#header_wrapper:after {
	background-color: #fff;
	z-index: -1;
	display: block;
	content: "";
	width: 100%;
	height: 135px;
	position: absolute;
	top: 0px;
	left: 0;
	transition: 0.2s ease-in-out;
}
#header_wrapper {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	height: 135px;
	width: 100%;
	min-width: 960px;
	z-index: 200;
	border-bottom: 1px solid transparent;
	transition: 0.2s ease-in-out;
}
body.header-border #header_wrapper {
	border-bottom: 1px solid #e8e8e8;
}
#header_wrapper .socialIcons {
	position: absolute;
	top: 63%;
	left: 20px;
	transform: translateY(-50%);
}
.scroll #header_wrapper .socialIcons {
	top: 50%;
}
#header_wrapper .socialIcons ul {
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: center;
}
#header_wrapper .socialIcons ul li {
	margin: 0 5px;
}
#header_wrapper .socialIcons ul li a {
	text-indent: -9999px;
	display: block;
	width: 26px;
	height: 26px;
}
#header_wrapper .socialIcons ul li.twitter a {
	background: url(https://trumpwinery.com/images/site/social-icon-x.png)
		no-repeat;
	background-size: 26px;
}
#header_wrapper .socialIcons ul li.facebook a {
	background: url(https://trumpwinery.com/images/site/social-icon-fb.png)
		no-repeat;
	background-size: 26px;
}
#header_wrapper .socialIcons ul li.instagram a {
	background: url(https://trumpwinery.com/images/site/social-icon-ig.png)
		no-repeat;
	background-size: 26px;
}

.dfinput_left.phone_area {
	margin-right: 20px;
}

.contact-social-icons {
	display: flex;
	column-gap: 6px;
}

@media screen and (max-width: 768px) {
	.contact-social-icons {
		align-self: center;
	}
}

.contact-social-icons a img {
	height: 25px;
	width: 25px;
}

.contactBtn {
	font-size: 1em;
	display: block;
	background: #251f1f;
	border: #000 solid 1px;
	color: #fff;
	height: 30px;
	padding: 2px 18px;
	line-height: 25px;
	text-transform: uppercase;
	font-family: var(--primary-font);
	font-weight: 500;
	letter-spacing: 0.025em;
}

.contactBtn:hover {
	background: #000000;
	color: #fff;
	transition: 0.3s;
}

@media screen and (max-width: 900px) {
	span.mobile-hidden {
		display: none;
	}
}
.scroll .contactBtn {
	top: 50%;
}
.mobile-nav .socialIcons {
	margin-top: 20px;
}

.mobile-nav .socialIcons ul {
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: start;
}
.mobile-nav .socialIcons ul li {
	margin: 0 5px;
	border: 0 !important;
}
.mobile-nav .socialIcons ul li a {
	text-indent: -9999px;
	display: block;
	width: 26px;
	height: 26px;
	border: 0 !important;
}
.mobile-nav .socialIcons ul li.twitter a {
	background: url(https://trumpwinery.com/images/site/social-icon-x.png)
		no-repeat;
	background-size: 26px;
}
.mobile-nav .socialIcons ul li.facebook a {
	background: url(https://trumpwinery.com/images/site/social-icon-fb.png)
		no-repeat;
	background-size: 26px;
}
.mobile-nav .socialIcons ul li.instagram a {
	background: url(https://trumpwinery.com/images/site/social-icon-ig.png)
		no-repeat;
	background-size: 26px;
}

p#onetrust-policy-text {
	font-size: 0.88em !important;
}

/* Change Header Size on Scroll */
#header_wrapper.scroll {
	border-bottom: 1px solid #e8e8e8;
	height: 90px;
}
#header_wrapper.scroll #logo a img {
	max-width: 160px;
}
#header_wrapper.scroll nav > ul > li > a {
	line-height: 90px;
}
#header_wrapper.scroll:after {
	height: 90px;
}

header,
#header_wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
}
.internal_header {
	margin-bottom: -85px !important;
}
header {
	width: 100%;
	position: relative;
	margin: 0 auto;
	display: flex;
	align-content: center;
	justify-content: center;
	padding-top: 30px;
}
.scroll header {
	padding-top: 0;
}
@media screen and (max-width: 1023px) {
	header {
		padding-top: 0;
	}
}
.fixed {
	top: 0;
	left: 0;
	padding: 0;
}
.bottom {
	position: fixed;
	bottom: 0;
	left: 0;
	padding: 0;
}

/* Header - Drop Down Menus */
.menu_drop {
	display: none;
	position: absolute;
	z-index: 200;
	top: 100%;
	left: -72px;
	width: auto;
	max-width: 220px;
	min-width: 220px;
	overflow: hidden;
	border-top: 4px solid #d1b371;
	border-radius: 0;
	box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.5);
	padding: 20px 0;
	box-sizing: border-box;
	background: #fff;
}
.menu_drop#menu_visit {
	width: 235px;
	max-width: 235px;
}

.menu_drop .top_shadow {
	position: absolute;
	top: 0;
	left: 0;
	background: url(/images/site/top_shadow.png) repeat-x;
	height: 11px;
	width: 100%;
}
nav ul li#winery_m:hover #menu_winery {
	display: block;
}
nav ul li#visit:hover #menu_visit {
	display: block;
}

nav ul li#cidery:hover #menu_cidery {
	display: block;
}

nav ul li#about-us:hover #menu_about {
	display: block;
}

nav ul li#events:hover #menu_events {
	display: block;
}
nav ul li#shop:hover #menu_shop {
	display: block;
}
.menu_drop .menu_nav {
	height: 100%;
	text-align: center;
	background-color: #fff;
}
.menu_drop .menu_nav ul {
	display: flex;
	flex-direction: column;
}
.menu_drop .menu_nav ul li {
	line-height: 100%;
	margin-right: 0px !important;
	margin-left: 0px !important;
	margin-bottom: 5px;
	margin-top: 5px;
}
.menu_drop .menu_nav ul li a {
	padding-bottom: 0px;
	font-family: var(--primary-font);
	color: #25221e;
	font-size: 12px;
	font-weight: 600;
	line-height: 22px;
	letter-spacing: 0.135em;
	text-transform: uppercase;
}
.menu_drop .menu_nav ul li a:hover {
	color: #d1b371;
	border-bottom: 0px;
}
.menu_drop .menu_nav ul li:last-child a:after {
	display: none;
}
.menu_drop .menu_img {
	float: left;
	width: 705px;
	overflow: hidden;
	display: none;
}

#winery_m.new .menu_drop .menu_nav {
	padding: 15px 20px 25px;
}
#winery_m.new .menu_drop .menu_nav ul li a:after {
	padding-top: 6px;
}

/* Navigation */
#logo {
	margin: 0;
	width: 200px;
}

@media screen and (min-width: 1100px) {
	#logo {
		margin: 0 10px;
	}
}

.scroll #logo {
	top: 50%;
}
@media screen and (max-width: 1023px) {
	#logo,
	.scroll #logo {
		top: 0;
	}
}
#logo a {
	display: block;
	text-align: center;
}
#logo a img {
	max-width: 220px;
	height: auto;
	transition: 0.2s ease-in-out;
}

nav > ul {
	padding: 0 2em;
}

nav > ul,
nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	max-width: 1300px;
	align-self: center;
}
nav ul li {
	position: relative;
	list-style: none;
	line-height: 100%;
	margin: 0 25px;
	text-align: center;
}
nav > ul > li > a {
	padding-bottom: 14px;
	font-weight: 400;
	font-family: "Montserrat", serif;
	color: #25221e;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin: 0;
	padding: 0;
	line-height: 55px;
	display: block;
	transition: 0.2s ease-in-out;
}
nav ul li a:hover,
nav ul li:hover a {
	color: #86662d;
}
nav ul li a.cur {
	color: #86662d;
}
#nav_left {
	margin-left: 0px;
}

.mobile-menu-icon {
	display: none;
	/* float: left; */
	height: 34px;
	margin: 0;
	padding: 0;
	width: 33px;
	/* position: absolute; */
	/* left: 0;
  top: 10px; */
	z-index: 999;
}
.mobile-menu-icon:hover,
.mobile-menu-icon.active {
	color: #25221e !important;
	text-decoration: none;
}
.mobile-nav {
	display: none;
}

/* Hide Element */

.visually-hidden {
	display: none;
}

/* Home */
.home-video-section {
	height: calc(100vh - 250px);
	overflow: hidden;
	position: relative;
}

@media only screen and (min-width: 1300px) {
	.home-video-section {
		height: calc(100vh - 225px);
	}
}

@media only screen and (min-width: 1100px) {
	.home-video-section {
		height: calc(100vh - 210px);
	}
}

@media only screen and (max-width: 980px) {
	.home-video-section {
		height: calc(100vh - 220px);
	}
}

@media only screen and (max-width: 855px) {
	.home-video-section {
		height: calc(100vh - 280px);
	}
}

@media only screen and (max-height: 640px) and (orientation: landscape) {
	.home-video-section {
		height: 100vh;
		overflow: hidden;
		position: relative;
	}
}

@media only screen and (max-width: 768px) {
	.home-video-section {
		height: calc(100vh - 180px);
	}
}

@media only screen and (max-height: 640px) and (orientation: landscape) {
	.home-video-section {
		height: 400px;
	}
}

@media only screen and (max-width: 432px) {
	.home-video-section {
		height: 570px;
	}
}

@media only screen and (max-width: 380px) {
	.home-video-section {
		height: 450px;
	}
}

.home-video-section video {
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.home-video-overlay {
	bottom: 0em;
	color: white;
	left: 50%;
	max-width: 800px;
	position: absolute;
	text-align: center;
	transform: translateX(-50%);
	width: 100%;
	/* padding-bottom: 50px; */
}
/* 
@media screen and (max-width: 768px) {
  .home-video-overlay {
    padding-bottom: 3em;
  }
} */

.hero-text {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.home-video-overlay h1,
p.event-page-title {
	color: white;
	font-family: "freight-display-pro", serif;
	font-size: 2.9em !important;
	font-style: italic;
	font-weight: 400;
	letter-spacing: 0;
	margin-bottom: 0.5em;
	text-transform: none;
	align-self: center;
}

@media screen and (max-width: 768px) {
	.home-video-overlay h1,
	p.event-page-title {
		font-size: 1.8em;
	}
}

@media screen and (max-width: 505px) {
	.home-video-overlay h1,
	p.event-page-title {
		font-size: 2.4em;
		max-width: 325px;
	}
}

@media screen and (max-width: 350px) {
	.home-video-overlay h1,
	p.event-page-title {
		font-size: 2.2em;
		max-width: 325px;
	}
}

@media screen and (max-width: 300px) {
	.home-video-overlay h1,
	p.event-page-title {
		font-size: 1.8em;
		max-width: 290px;
	}
}

.home-video-overlay .icon {
	font-size: 2em;
}

#home-hero-icon {
	/* background-color: white; */
	height: 80px;
	width: 100px;
	margin: 0 auto;
}

#home-hero-icon img {
	height: 12px;
	margin-top: 20px;
}

@media screen and (max-width: 768px) {
	#home-hero-icon {
		height: 40px;
	}

	#home-hero-icon img {
		margin-top: 10px;
	}
}

/* #home-hero-icon img {
  max-height: 80px;
} */

/* @media screen and (max-width: 360px) {
  #home-hero-icon img {
    max-height: 60px;
  }
} */

/* Home Grid */

.image-grid-section,
.image-grid-section-mobile {
	background-color: var(--secondary-color);
	padding: 0em 2em 5.5em 2em !important;
}

.image-grid-section-mobile div.container {
	padding: 0;
}

.image-grid-section .container {
	padding: 0em 2em 0em 2em !important;
}

.image-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 1em;
}

.grid-item {
	flex: 1 1 calc(25% - 1em); /* 4 columns */
	text-align: center;
}

.grid-item img {
	width: 100%;
	aspect-ratio: 23/28;
	object-fit: cover;
}

/* @media screen and (max-width: 768px) {
  grid-item img {
    max-width: 350px;
  }
} */

.title-link {
	display: block;
	margin-top: 22px;
	color: var(--text-color);
	font-size: 1.15em;
	text-transform: uppercase;
}

.title-link:hover {
	color: var(--accent-color);
	transition: 0.3s;
}

section.image-grid-section-mobile {
	display: none;
}

@media (max-width: 550px) {
	#main_container
		> section.image-grid-section-mobile
		> div
		> div
		> div
		> div
		img {
		padding: 0 10px;
	}

	.image-grid-section {
		display: none;
	}

	section.image-grid-section-mobile {
		display: block !important;
	}

	#main_container
		> section.image-grid-section-mobile
		> div
		> div
		> div
		> div
		img {
		max-height: 400px;
		height: 100%;
	}
}

@media (max-width: 550px) {
	#main_container > section.image-grid-section-mobile > div > div > div > div {
		margin-left: -45px;
	}
}

ul.slick-dots {
	list-style-type: none;
	display: flex;
	background: var(--primary-color);
	width: 100%;
	height: 5px !important;
	margin: 40px 0 0 0;
}

ul.slick-dots li,
ul.slick-dots li button {
	background-color: transparent !important;
	border: none !important;
	color: transparent;
	height: 4px !important;
}

ul.slick-dots li {
	width: 25% !important;
}
ul.slick-dots li button {
	width: 100% !important;
}

ul.slick-dots li:hover,
ul.slick-dots li button:hover {
	background-color: var(--accent-color) !important;
	transition: 0.3s;
}

ul.slick-dots li.slick-active,
ul.slick-dots li.slick-active button {
	background-color: var(--accent-color) !important;
}

/* Center Section - Flex */

.centered-section {
	width: 100%;
	display: grid;
	grid-template-columns: 1fr;
	grid-template-rows: auto;
	justify-items: center;
}

.centered-body {
	display: grid;
	grid-template-columns: 1fr;
	justify-items: center;
	max-width: 810px;
	width: 100%;
	row-gap: 2.3em;
	text-align: center;
}

.centered-body-heading {
	align-self: center;
	/* max-width: 550px; */
	row-gap: 2.3em;
}

@media screen and (max-width: 1024px) {
	.centered-body-heading {
		/* max-width: 545px; */
	}
}

@media screen and (max-width: 768px) {
	.centered-body-heading {
		max-width: 300px;
	}
}

@media screen and (max-width: 450px) {
	.centered-body-heading {
		max-width: 250px;
	}
}

.centered-body-heading p {
	color: var(--text-color);
	font-family: var(--heading-font);
	font-weight: 300;
	font-size: 2.9em;
	text-transform: none;
	letter-spacing: 0;
	line-height: 1.2em;
}

.centered-body-paragraph {
	max-width: 641px;
}

@media screen and (max-width: 1024px) {
	.centered-body {
		row-gap: 1.5em;
		/* max-width: ; */
	}

	h3.centered-subtitle {
		font-size: 2.5em;
		font-style: normal;
	}
}

@media screen and (max-width: 768px) {
	h3.centered-subtitle {
		font-size: 1.8em;
	}
}

@media screen and (max-width: 330px) {
	h3.centered-subtitle {
		font-size: 1.5em;
	}
}

.quoteauthor p {
	font-family: "Sabon", "Libre Baskerville", serif !important;
}

/* Page Styling */

.cap-width {
	max-width: 450px;
}

@media (max-width: 1025px) {
	.cap-width {
		max-width: 325px;
	}
}

@media (max-width: 525px) {
	.cap-width {
		max-width: 300px;
	}
}

.centered-buttons {
	display: flex;
	justify-content: flex-start;
	/* width: 400px; */
	gap: 2em;
}

/* Center the button if there's only one */
.centered-buttons:has(> .primary-button:only-child) {
	justify-content: center;
	width: 100%;
}

@media screen and (max-width: 768px) {
	.centered-buttons:has(> .secondary-button:only-child) {
		justify-content: center;
		width: 100%;
	}
}

.primary-button,
.secondary-button,
.event-button,
input.submit {
	display: inline-block;
	letter-spacing: 0.1em;
}

.primary-button,
.secondary-button {
	color: #000000;
	background-color: var(--accent-color);
	font-weight: 300;
	font-family: var(--secondary-font);
	padding: 0.8em 3em;
	/* width: 180px; */
	text-transform: uppercase;
	font-size: 1.2em;
	text-align: center;
	text-decoration: none !important;
}

@media screen and (min-width: 600px) {
	.primary-button,
	.secondary-button {
		min-width: 190px;
	}
}

.primary-button:hover {
	/* color: #000000;
  background-color: white;
  transition: 0.3s;
  border: 1px solid var(--accent-color); */
	color: #000000;
	background-color: var(--accent-color);
	font-weight: 300;
	font-family: var(--secondary-font);
	padding: 0.8em 3em;
	text-transform: uppercase;
	font-size: 1.2em;
	text-align: center;
}

@media (max-width: 768px) {
	.centered-buttons {
		justify-content: center;
		width: 100%;
	}

	.primary-button {
		/* width: 140px; */
	}
}

@media (max-width: 600px) {
	.centered-buttons {
		flex-direction: column;
		justify-content: center;
		align-items: center;
		width: 100%;
	}

	.primary-button {
		width: 90%;
	}
}

@media (max-width: 320px) {
	.centered-buttons {
		flex-direction: column;
		justify-content: center;
		align-items: center;
		align-self: center;
		width: 80%;
	}

	.primary-button {
		width: 90%;
	}
}

/* Beige 2 columns */
/* Beige 2 columns */
.left-image,
.right-image {
	display: grid;
	grid-template-columns: 2fr 2fr;
}

.left-image {
	/* Reverse the order of the columns */
	grid-template-areas: "second first";
	/* column-gap: 4em; */
}

.right-image {
	/* column-gap: 4em; */
}

.left-image > :nth-child(1) {
	grid-area: first;
}

.left-image > :nth-child(2) {
	grid-area: second;
}

@media (min-width: 768px) {
	div.left-image {
		padding-right: 0 !important;
		margin-right: 0 !important;
	}
}

@media (max-width: 768px) {
	.left-image {
		grid-template-columns: 1fr;
		grid-template-areas:
			"first"
			"second";
		width: 100%;
		row-gap: 3em;
		text-align: center;
	}
}

@media (max-width: 768px) {
	.left-image,
	.right-image {
		grid-template-columns: 1fr;
		width: 100%;
		row-gap: 1em;
		text-align: center;
	}
}

.text-column {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.text-column-inner {
	display: flex;
	flex-direction: column;
	justify-content: center;
	row-gap: 2.3em;
	width: 100%;
	max-width: 458px;
}

.tabbed-content-inner a {
	text-decoration: underline;
}

@media screen and (min-width: 768px) {
	.tabbed-content-inner {
		min-height: 590px;
	}

	button.nav-arrow.left-arrow {
		padding-left: 0;
	}
}
.text-column-inner {
	align-self: center;
}

.image-column {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

@media (max-width: 1024px) {
	.text-column {
		max-width: 100%;
		row-gap: 1.5em;
		padding: 0 2em 2em 2em;
	}
}

@media (max-width: 768px) {
	.text-column {
		max-width: 100%;
	}
}

.title-container {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

@media (min-width: 768px) {
	.title-container {
		row-gap: 0.8em;
	}
}

.subtitle-container {
	display: flex;
	flex-direction: column;
	row-gap: 0.8em;
}

.subtitle {
	color: var(--text-color);
	font-family: var(--heading-font);
	font-weight: 300;
	font-size: 2.25em;
	font-style: italic;
	text-transform: none;
	letter-spacing: 0;
	line-height: 0.7em;
	width: 100%;
	max-width: 430px;
}

.centered-subtitle {
	color: var(--text-color);
	font-family: var(--heading-font);
	font-weight: 300;
	font-size: 2.9em;
	text-transform: none;
	letter-spacing: 0;
	line-height: 1.2em;
}

.description-container {
	display: flex;
	flex-direction: column;
	row-gap: 0.8em;
}

@media (max-width: 768px) {
	.subtitle {
		font-size: 1.8em;
		align-self: center;
	}
}

@media (max-width: 768px) {
	.subtitle {
		font-size: 1.8em;
	}
}

@media (max-width: 330px) {
	.subtitle {
		font-size: 1.5em;
	}
}

.full-width-image {
	width: 100%;
	max-height: 100%;
	object-fit: cover;
	object-position: center center;
	/* aspect-ratio: 4/3; */
}

@media (max-width: 950px) {
	.full-width-image {
		/* aspect-ratio: 3/4; */
		max-height: 100%;
		height: 100%;
	}
}

@media (max-width: 768px) {
	.full-width-image {
		/* aspect-ratio: 4/3; */
	}
}

.secondary-button,
.event-button {
	border: 1px #000000 solid;
	color: #000000;
	background-color: transparent;
	font-weight: 300;
	font-family: var(--secondary-font);
	padding: 0.8em 3em;
	text-transform: uppercase;
	font-size: 1.2em;
	text-align: center;
}

@media (max-width: 320px) {
	.secondary-button {
		padding: 0.8em;
	}
}

.secondary-button:hover {
	/* color: #000000;
  background-color: var(--accent-color);
  transition: 0.3s; */
	border: 1px #000000 solid;
	color: #000000;
	background-color: transparent;
	font-weight: 300;
	font-family: var(--secondary-font);
	padding: 0.8em 3em;
	text-transform: uppercase;
	font-size: 1.2em;
	text-align: center;
}

/* Slick Slider Flex Content */
.full-width-section > div {
	padding: 0;
	margin: 0;
	width: 100%;
}
.responsive-slider {
	padding: 0;
	background-color: var(--primary-color);
}

.responsive-slider img {
	object-fit: cover;
	object-position: center center;
	height: 270px;
}
@media screen and (min-width: 1300px) {
	.responsive-slider img {
		height: 400px;
	}
}

.responsive-slider .slick-slide {
	margin: 0 12px !important;
}

button.slick-prev.slick-arrow,
button.slick-next.slick-arrow {
	display: none !important;
}

/* full width image */

.responsive-grid {
	max-width: 100vw;
	display: grid;
	grid-template-columns: 1fr 2fr 1fr;
	height: 100%;
	max-height: 350px;
}

@media screen and (min-width: 769px) {
	.responsive-grid div:nth-of-type(2n) {
		margin: 0 15px;
	}
}

.responsive-grid img {
	height: 100%;
	max-height: 350px;
	width: 100%;
	object-fit: cover;
	object-position: center center;
}

@media (max-width: 767px) {
	.responsive-grid {
		grid-template-columns: 1fr;
	}

	.responsive-grid > div:nth-child(2) {
		grid-column: 1 / -1;
	}

	.responsive-grid > div:not(:nth-child(2)) {
		display: none;
	}
}

@media (min-width: 1300px) {
	.responsive-grid {
		height: 100%;
		max-height: 450px;
	}

	.responsive-grid img {
		height: 100%;
		max-height: 450px;
		width: 100%;
	}
}

/* End Slick Slider Flex Content */

/* Page Styling End */

/* Internal */
body#basic {
	background: #fff;
}
body#basic section.content {
	padding: 120px 0;
}
body#basic section.content h1 {
	text-align: center;
}
body#basic section#default {
	width: 735px;
	margin: auto;
	min-width: 735px;
}
body#basic section#default p {
	font-family: "sofia", "Montserrat", sans-serif;
	letter-spacing: 0;
	font-weight: bold;
}
body#basic section#email {
	width: 570px;
	margin: auto;
	min-width: 570px;
}
body#basic section#email p {
	font-family: var(--primary-font);
	letter-spacing: 0;
}
body#basic section#default ul li {
	font-family: var(--primary-font);
	color: #fff;
	margin-left: 20px;
	line-height: 24px;
	font-size: 14px;
	margin-bottom: 10px;
}
.short-banner,
.tall-banner {
	position: relative;
	display: flex;
	justify-content: flex-end;
}

.short-banner {
	height: 355px;
	width: 100%;
}

.tall-banner {
	width: 100%;
	height: 550px;
}

@media (min-width: 1525px) {
	section.tall-banner {
		max-height: calc(100vh - 120px);
		height: 700px;
	}
}

@media (max-width: 1024px) {
	section.tall-banner {
		max-height: 500px;
		min-height: 400px;
		height: 100%;
	}
}

@media only screen and (max-width: 768px) {
	section.tall-banner,
	section.short-banner {
		height: 455px;
	}
}

@media only screen and (max-height: 640px) and (orientation: landscape) {
	section.tall-banner,
	section.short-banner {
		height: 355px;
	}
}

.tall-banner .overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	/* height: 100%; */
	background-color: rgba(0, 0, 0, 0.2);
	z-index: 1;
	pointer-events: none;
}

.short-banner .overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 355px;
	background-color: rgba(209, 179, 113, 0.25);
	z-index: 1;
	pointer-events: none;
}

.banner-container {
	position: relative;
	z-index: 1;
	width: 100vw;
	max-width: 100vw;
	/* min-height: 400px; */
}

.inner-banner-container {
	padding: 0;
}

section.banner .banner-container {
	min-height: 355px;
}
section.banner .banner-container {
	width: 100%;
	height: auto;
	margin: 0 auto;
}
section.banner .banner-container .inner_container {
	position: relative;
}

.inner-hero-text {
	display: flex;
	flex-direction: column;
	justify-content: end;
	align-items: flex-end;
	position: relative;
	z-index: 2;
	height: 100%;
	text-align: center;
}

.short-banner .inner-hero-text h1 {
	color: black;
}

.tall-banner .inner-hero-text h1,
p.event-page-title {
	color: white;
}

.inner-hero-text h1,
p.event-page-title {
	font-family: "freight-display-pro", serif;
	font-size: 2.9em;
	font-style: italic;
	font-weight: 400;
	letter-spacing: 0;
	margin-bottom: 0.5em;
	text-transform: none;
	align-self: center;
}

.tall-banner .vertical-line {
	background-color: white;
	height: 80px;
}

.short-banner .vertical-line {
	background-color: black;
	height: 50px;
}

.short-banner .vertical-line.event-vertical-line {
	background-color: white;
}

@media screen and (max-width: 768px) {
	.tall-banner .vertical-line,
	.short-banner .vertical-line {
		height: 40px;
	}
}

.vertical-line {
	width: 1px;
	margin: 0 auto;
}

/* Override black text with white */
div.inner-hero-text.text-light h1,
p.event-page-title {
	color: white;
}

div.inner-hero-text.text-light div.vertical-line {
	background-color: white;
}

@media screen and (max-width: 768px) {
	.inner-hero-text h1,
	p.event-page-title {
		font-size: 1.8em;
	}
}

@media screen and (max-width: 505px) {
	.inner-hero-text h1,
	p.event-page-title {
		font-size: 2.4em;
		max-width: 325px;
	}
}

@media screen and (max-width: 350px) {
	.inner-hero-text h1,
	p.event-page-title {
		font-size: 2.2em;
		max-width: 325px;
	}
}

@media screen and (max-width: 300px) {
	.inner-hero-text h1,
	p.event-page-title {
		font-size: 1.8em;
		max-width: 290px;
	}
}

.inner-hero-text .icon {
	font-size: 2em;
}

#inner-hero-text img {
	max-height: 80px;
}

section.content {
	width: 100%;
	min-width: 940px;
	overflow: hidden;
	padding: 40px 0;
}
section.content a {
	font-family: var(--primary-font);
	font-style: italic;
	text-decoration: underline;
	color: #49453a;
	font-weight: bold;
}
#email_signup {
	width: 500px;
	margin: 40px 0;
}
#email_signup input[type="text"] {
	padding: 10px;
	width: 280px;
	height: 20px;
	background: #ebe5d5;
	float: right;
	margin-bottom: 10px;
}
#email_signup input[type="submit"] {
	cursor: pointer;
	width: 198px;
	height: 29px;
	background: url(/images/site/subscribe.png);
	text-indent: -9999px;
}
#email_signup_form {
	width: 300px;
	float: right;
}
#email_signup_txt {
	float: left;
	width: 200px;
	text-align: left;
}
#email_signup_txt label {
	width: 130px !important;
	line-height: 40px;
	font-style: italic;
	color: #fff;
	display: block;
}
#email_signup_txt input[type="text"] {
	display: none;
}

/* Winery */
#winery_content h1 {
	font-family: var(--secondary-font);
	font-size: 42px;
	text-transform: none;
	text-align: center;
	display: inline-block;
	margin: 0 auto 40px;
	font-style: normal;
	font-weight: 300;
}
body#winery section.content {
	text-align: center;
}
body#winery section.content p {
	width: 100%;
	display: block;
	margin: auto;
	text-align: left;
	margin-bottom: 20px;
}
body#winery.weddings #related_galleries ul li h4,
body#winery.weddings section.content p,
body#winery.weddings section.content a {
	color: #49453a;
}

body#winery section.content table p {
	width: auto;
}
body#winery section.content table td {
	padding: 12px;
	color: #49453a;
	line-height: 24px;
	font-size: 16px;
	font-family: var(--primary-font);
	letter-spacing: 0.03em;
	font-weight: 400;
	width: 440px;
}
#winery_media {
	text-align: center;
	margin: auto;
	position: relative;
}
#winery_media .winery_media_item {
	margin: auto;
	max-width: 465px;
	overflow: hidden;
	margin-bottom: 20px;
}
#winery_media .winery_media_item img {
	max-width: 100%;
	height: auto;
}
#winery_media .winery_media_item h2 a {
	text-decoration: none;
	font-style: normal;
	font-family: "Sabon", "Montserrat", sans-serif;
}
#winery_video,
#winery_gallery {
	display: inline-block;
}
#winery_video h2,
#winery_gallery h2 {
	color: #fff;
	margin: auto;
	display: inline-block;
	font-family: var(--primary-font);
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.11em;
	margin-bottom: 7px;
}
#winery_video h2 {
	padding-left: 20px;
	background-image: url(/images/site/icon-video.svg);
	background-size: 15px;
	background-position: left center;
	background-repeat: no-repeat;
}
#winery_gallery h2 {
	padding-left: 20px;
	background: url(/images/site/icon-gallery.svg);
	background-size: 15px;
	background-position: left center;
	background-repeat: no-repeat;
}
ul#categories li {
	padding: 0 3px;
	color: #d1b371;
	margin-bottom: 25px;
	list-style: none;
	display: inline-block;
	font-family: "Libre Baskerville", serif;
	font-style: italic;
}
ul#categories li a {
	text-decoration: none;
	color: #d1b371;
	font-size: 15px;
	font-family: "Sabon";
}
ul#categories li a.active {
	color: #fff;
}
#accolades_container {
	width: 785px;
	margin: auto;
}

.accolades {
	margin-bottom: 50px;
}
.accolades_img {
	width: 300px;
	height: 225px;
	overflow: hidden;
	float: left;
	margin-right: 40px;
}
.accolades_img img {
	height: 225px;
}
.accolades_txt {
	width: 445px;
	float: left;
	text-align: left;
	font-size: 1.1em !important;
}

.accolades_txt h2 {
	margin-bottom: 10px;
}

.accolades_txt ul li {
	list-style: none;
	margin-bottom: 5px;
	font-size: 1.1em;
	line-height: 1.6em !important;
}

.accolades_txt ul li:last-of-type {
	list-style: none;
	margin-bottom: 20px;
	font-size: 1.1em;
}

.accolades_txt ul li p {
	font-family: var(--primary-font);
	font-size: 1.1em;
}

.accolades_txt h2 a {
	color: #d1b371;
	font-style: none;
	text-transform: uppercase;
	text-decoration: none;
	font-style: normal;
}
body#winery section.content table {
	width: 100%;
} /* new add */
body#winery section.content table.team_list tr td {
	float: right;
}
body#winery section.content table.team_list tr td + td {
	float: left;
}

/* Winery - Contact H2s */
.contact-form-header {
	font-family: var(--secondary-font);
	font-size: 42px !important;
	text-transform: none !important;
	text-align: center;
	color: #d1b371 !important;
	font-style: normal !important;
	display: block;
	margin: 0 auto 40px;
	font-weight: 300;
}

/* Winery Events Contact Form */

.cta-button,
.event-cta {
	border: 2px solid #d1b371 !important;
	color: #5f6063 !important;
	display: inline-block;
	font-family: var(--primary-font);
	font-size: 13px;
	font-style: normal !important;
	font-weight: normal !important;
	/* height: 40px; */
	line-height: 40px;
	padding: 0 15px !important;
	text-decoration: none !important;
	text-transform: uppercase;
}

/* .event-cta:hover,
.cta-button:hover {
  background-color: #d2b371;
  color: white;
} */

/* Acclaim */
.acclaim #winery_content h1 {
	border: 0;
	margin-bottom: 15px;
}
.acclaim #categories li a {
	color: #5f6063;
	font-family: var(--primary-font);
	font-size: 13px;
	font-style: normal;
	padding-bottom: 2px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	font-weight: 600;
	border-bottom: 2px solid transparent;
	transition: 0.2s ease-in-out;
}
.acclaim #categories li a:hover,
.acclaim #categories li a.active {
	color: #5f6063;
	border-bottom: 2px solid #d1b371;
}

.awards-container {
	display: flex;
	align-items: flex-start;
	margin-top: 40px;
	position: relative;
}
.awards-container .ajax_list {
	flex-basis: 330px;
	border-right: 2px solid #d1b371;
}
.awards-container .ajax_list ul {
	list-style: none;
	text-align: left;
}
.awards-container .ajax_list ul li {
	margin-bottom: 15px;
}
.awards-container .ajax_list ul li a {
	color: #5f6063;
	text-transform: uppercase;
	font-size: 13px;
	font-style: normal;
	text-decoration: none;
	transition: 0.2s ease-in-out;
	letter-spacing: 0.1em;
	font-family: "Montserrat";
	font-weight: 600;
}
.awards-container .ajax_list ul li a.active,
.acclaim .awards-container .ajax_list ul li a:hover {
	color: #d1b371;
}
.awards-container .ajax_content {
	flex: 1;
	padding-left: 60px;
	text-align: left;
}
.awards-container .ajax_content img {
	width: 100%;
	height: auto;
	max-width: 400px;
	display: block;
	margin: 0 auto 15px auto;
}
.awards-container .ajax_content h3 {
	font-family: var(--secondary-font);
	font-size: 26px;
	text-transform: none;
	text-align: center;
	border-bottom: 3px solid #d1b371;
	letter-spacing: 0.1em;
	display: block;
	margin: 0 auto 15px;
	font-style: normal;
	font-weight: 300;
	text-align: left;
}
.awards-container .ajax_content ul {
	list-style: none;
	text-align: left;
}
.awards-container .ajax_content ul li {
	font-family: var(--primary-font);
	font-size: 14px;
	line-height: 22px;
	font-style: normal;
	margin-bottom: 15px;
	display: none;
}
.awards-container .ajax_content ul li.visible,
.acclaim .awards-container .ajax_content ul li.show {
	display: block;
}
.awards-container .ajax_content .btn {
	margin-top: 10px;
	margin-right: 10px;
	margin-bottom: 20px;
	border: 2px solid #d1b371;
	height: 40px;
	line-height: 40px;
	text-transform: uppercase;
	color: #5f6063;
	font-family: var(--primary-font);
	font-size: 13px;
	font-style: normal;
	display: inline-block;
	padding: 0 15px;
	text-decoration: none;
	font-weight: 400;
	letter-spacing: 0.1em;
}

.acclaim .press-container {
	display: flex;
	align-content: center;
	justify-content: flex-start;
	flex-wrap: wrap;
	max-width: 750px;
	margin: 0 auto;
}
.acclaim .press-container article {
	flex-basis: calc(100% / 2 - 40px);
	margin: 0 20px 50px;
	text-align: left;
}
.acclaim .press-container article .border {
	border: 2px solid #d1b371;
	width: 100%;
	height: 230px;
	box-sizing: border-box;
	padding: 20px;
	margin-bottom: 15px;
}
.acclaim .press-container article .image {
	display: block;
	width: 100%;
	height: 100%;
	box-sizing: border-box;
}
.acclaim .press-container article .image img {
	max-width: 100%;
	height: auto;
}
.acclaim .press-container article h3 {
	font-family: var(--secondary-font);
	font-size: 23px;
	color: #000;
	text-align: left;
	font-style: normal;
	font-weight: 300;
	border-bottom: 2px solid #d1b371;
}
.acclaim .press-container article p {
	font-size: 13px;
}
.acclaim .press-container article p a {
	display: none;
}
.acclaim .press-container article .read-more {
	margin-top: 10px;
	margin-right: 10px;
	border: 2px solid #d1b371;
	height: 30px;
	line-height: 30px;
	text-transform: uppercase;
	color: #5f6063;
	font-family: var(--primary-font);
	font-size: 13px;
	font-style: normal;
	display: inline-block;
	padding: 0 15px;
	text-decoration: none;
	font-weight: 400;
	letter-spacing: 0.1em;
}
.acclaim .press-container .navigation .down-arrow {
	display: block;
	transform: rotate(90deg);
}

a.pagination-link {
	align-self: flex-end;
}

/* Visit Us */

.tasting-room #winery_content h1 {
	border: 0;
	margin-bottom: 13px;
}
.tasting-room #winery_content h2 {
	font-family: var(--secondary-font);
	text-transform: none;
	font-size: 24px;
	font-style: italic;
	color: #000;
	margin: 0 0 20px;
	letter-spacing: 0.035em;
	font-weight: 300;
}
.tasting-room #winery_content .container > p {
	box-sizing: border-box;
	padding: 0 10px;
}
.tasting-room #winery_content .container > blockquote {
	font-size: 22px;
}
.tasting-room #winery_content .link_grid {
	display: flex;
	list-style: none;
	margin-top: 40px;
}
.tasting-room #winery_content .link_grid li {
	width: calc(100% / 3 - 20px);
	height: 300px;
	margin: 0 10px;
}
.tasting-room #winery_content .link_grid li a {
	display: block;
	width: 100%;
	height: 100%;
	text-decoration: none;
}
.tasting-room #winery_content .link_grid li a .image {
	display: block;
	width: 100%;
	height: 100%;
	position: relative;
}
.tasting-room #winery_content .link_grid li a .image h2 {
	position: absolute;
	bottom: 20px;
	left: 20px;
	margin: 0;
	padding: 0;
	font-style: normal;
	font-size: 20px;
	font-weight: 600;
	font-family: "Montserrat";
	text-transform: uppercase;
	color: #fff;
}
.tasting-room .visit_hours {
	display: block;
	margin: 60px auto 40px;
	text-align: center;
	max-width: 580px;
}
.tasting-room .visit_hours p {
	color: #000;
	font-family: "Montserrat" sans-serif !important;
	font-size: 18px;
	text-align: center !important;
	font-style: normal;
	font-weight: 700;
	letter-spacing: 0.1em;
}
.tasting-room #winery_content h2.taste_options_title {
	display: inline-block;
	margin-top: 10px;
	margin-bottom: 0;
	text-align: center;
	color: #5f6063;
	text-transform: uppercase;
	font-size: 13px;
	font-style: normal;
	text-decoration: none;
	transition: 0.2s ease-in-out;
	letter-spacing: 0.1em;
	font-family: "Montserrat";
	font-weight: 600;
	padding-bottom: 3px;
	border-bottom: 2px solid #d1b371;
}
.tasting-room .awards-container .ajax_content .tasting_option {
	display: none;
}
.tasting-room .awards-container .ajax_content .tasting_option.active {
	display: block;
}
.tasting-room .awards-container .ajax_content .tasting_option p {
	text-align: left !important;
}
.tasting-room .awards-container .ajax_content .tasting_option p strong {
	color: #d1b371;
}

.tasting-room #important_info {
	display: flex;
	background: #e6e6e6;
}
.tasting-room #important_info .image {
	flex-basis: 515px;
}
.tasting-room #important_info .image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.tasting-room #important_info .content {
	flex: 1;
	padding: 35px 35px 15px;
}
.tasting-room #important_info .content h3 {
	font-family: var(--secondary-font);
	text-transform: none;
	font-weight: 300;
	font-size: 22px;
	font-style: italic;
	color: #000;
	margin: 0 0 30px;
	letter-spacing: 0.035em;
}
.tasting-room #important_info .content p {
	margin-bottom: 20px;
}

/* Events */
.events #winery_content h1 {
	border: 0;
	margin-bottom: 13px;
}
.events #winery_content h2 {
	font-family: var(--secondary-font);
	text-transform: none;
	font-size: 24px;
	font-style: italic;
	color: #000;
	margin: 0 0 30px;
	letter-spacing: 0.035em;
	font-weight: 300;
}
.events #winery_content .ctaBtns {
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 640px;
	margin: 40px auto 0;
}
.events #winery_content .ctaBtns li a {
	margin-top: 10px;
	margin-right: 10px;
	border: 2px solid #d1b371;
	height: 40px;
	line-height: 40px;
	text-transform: uppercase;
	color: #5f6063;
	font-family: var(--primary-font);
	font-size: 13px;
	font-style: normal;
	display: inline-block;
	padding: 0 15px;
	text-decoration: none;
	font-weight: 400;
	letter-spacing: 0.1em;
}

.events .testimonial {
	height: auto;
	position: relative;
}
.events .testimonial:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.15);
}
.events .testimonial.dark-text:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.35);
}
.events .testimonial .container {
	text-align: center;
	padding-bottom: 60px;
	width: 100%;
	max-width: 100%;
}
.events .testimonial blockquote {
	padding-top: 10px;
	color: #fff;
	font-family: var(--secondary-font);
	text-transform: none;
	font-size: 22px;
	max-width: 520px;
	text-align: justify;
	font-style: italic;
	margin: 0 0 0 25px;
	font-weight: 300;
}
.events .testimonial.dark-text blockquote {
	color: #000;
	font-family: var(--secondary-font);
	text-transform: none;
	font-size: 22px;
	max-width: 575px;
	text-align: center;
	font-style: italic;
	margin: 0 auto;
	font-weight: 300;
}
.events .testimonial .author {
	display: block;
	margin-top: 10px;
	color: #fff;
	font-size: 16px;
	font-weight: 400;
	letter-spacing: 0.1em;
	max-width: 520px;
	margin-left: 25px;
	text-align: justify;
}
.events .testimonial.dark-text .author {
	display: block;
	margin-top: 10px;
	color: #fff;
	font-size: 16px;
	font-weight: 400;
	letter-spacing: 0.1em;
	max-width: 520px;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}
.events .testimonial.dark-text .author {
	color: #000;
	font-size: 20px;
}
.events .testimonial.dark-text a {
	background: #fff;
	margin-top: 10px;
	margin-right: 10px;
	border: 2px solid #d1b371;
	height: 40px;
	line-height: 40px;
	text-transform: uppercase;
	color: #5f6063;
	font-family: var(--primary-font);
	font-size: 16px;
	font-style: normal;
	display: inline-block;
	padding: 0 35px;
	text-decoration: none;
	font-weight: 400;
	letter-spacing: 0.1em;
	margin-top: 45px;
}

.events .venues_section {
	text-align: center;
	margin-top: 45px;
}
.events .venues_section .container {
	width: 1060px;
}
.events .venues_section h2 {
	font-family: var(--secondary-font);
	font-size: 42px;
	text-transform: none;
	text-align: center;
	display: inline-block;
	margin: 0 auto 10px;
	font-style: normal;
	font-weight: 300;
}
.events .venues_section p {
	text-align: justify;
}
.events .venues_section .ctaBtns {
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 40px auto 25px;
}
.events .venues_section .ctaBtns li {
	margin: 0 20px;
}
.events .venues_section .ctaBtns li a {
	margin-top: 10px;
	border: 2px solid #d1b371;
	height: 40px;
	line-height: 40px;
	text-transform: uppercase;
	color: #5f6063;
	font-family: var(--primary-font);
	font-size: 13px;
	font-style: normal;
	display: inline-block;
	padding: 0 20px;
	text-decoration: none;
	font-weight: 400;
	letter-spacing: 0.1em;
}
.events .venues_section .text-links {
	display: block;
	text-align: center;
	margin-bottom: 25px;
}
.events .venues_section .text-links a {
	margin: 0 20px;
	font-size: 20px;
	text-decoration: underline;
}
.events .venues_section .text-links a:hover {
	color: #000;
}
.events .venues_section .venue_list {
	list-style: none;
	display: flex;
	flex-direction: column;
	margin-bottom: 60px;
}
.events .venues_section .venue_list li {
	display: flex;
	align-items: center;
	justify-content: center;
}
.events .venues_section .venue_list li .image_gallery {
	width: 530px;
	height: 353px;
	overflow: hidden;
}
.events .venues_section .venue_list li .image_gallery img {
	max-width: 100%;
	height: auto;
}
.events .venues_section .venue_list li .venue_content {
	width: 530px;
	text-align: left;
	padding: 0 60px;
	box-sizing: border-box;
}
.events .venues_section .venue_list li .venue_content p {
	text-align: justify;
}
.events .venues_section .venue_list li .venue_content h3 {
	display: block;
	text-align: left;
	font-family: var(--secondary-font);
	font-size: 32px;
	border-bottom: 2px solid #d1b371;
	letter-spacing: 0.1em;
	text-transform: none;
	margin: 0 auto 10px;
	font-style: normal;
	font-weight: 300;
}
.events .venues_section .venue_list li .venue_content a {
	margin-top: 30px;
	margin-right: 10px;
	border: 2px solid #d1b371;
	height: 40px;
	line-height: 40px;
	text-transform: uppercase;
	color: #5f6063;
	font-family: var(--primary-font);
	font-size: 13px;
	font-style: normal;
	display: inline-block;
	padding: 0 15px;
	text-decoration: none;
	font-weight: 400;
	letter-spacing: 0.1em;
}
.events .venues_section .venue_list li .image_gallery .slick-prev {
	position: absolute;
	top: 50%;
	left: 25px;
	transform: translateY(-50%) rotate(180deg);
	z-index: 10;
	background: url("/images/site/left-arrow.svg") no-repeat;
	cursor: pointer;
	text-indent: -9999px;
	overflow: hidden;
	border: 0;
	box-shadow: none;
	border-radius: 0;
	height: 30px;
	width: 20px;
	-webkit-filter: drop-shadow(1px 2px 2px rgba(0, 0, 0, 0.95));
	filter: drop-shadow(1px 2px 2px rgba(0, 0, 0, 0.95));
}
.events .venues_section .venue_list li .image_gallery .slick-next {
	position: absolute;
	top: 50%;
	right: 25px;
	transform: translateY(-50%);
	z-index: 10;
	background: url("/images/site/right-arrow.svg") no-repeat;
	cursor: pointer;
	text-indent: -9999px;
	overflow: hidden;
	border: 0;
	box-shadow: none;
	border-radius: 0;
	height: 30px;
	width: 20px;
	-webkit-filter: drop-shadow(1px 2px 2px rgba(0, 0, 0, 0.95));
	filter: drop-shadow(1px 2px 2px rgba(0, 0, 0, 0.95));
}
.events .venues_section .venue_list li:nth-child(even) .image_gallery {
	order: 2;
}
.events .venues_section .venue_list li:nth-child(even) .venue_content {
	order: 1;
}

/* Individual Event */
div.container.event-post-container {
	display: flex;
	flex-direction: column;
	row-gap: 2em;
}

@media screen and (max-width: 768px) {
	div.container.event-post-container h1 {
		font-size: 1.8em;
	}
}

.event-meta-container {
	display: flex;
	flex-direction: column;
	align-items: start;
	row-gap: 1em;
}

p.event-meta-date {
	font-family: var(--secondary-font);
	font-size: 1.8em;
	margin: 0 !important;
	font-weight: 300;
}

p.event-meta-time {
	font-family: var(--secondary-font);
	font-size: 14px;
	font-weight: 500;
	margin: 0 !important;
}

.event-share-links {
	display: flex;
	justify-content: start;
}

section#cal_detail_content {
	padding: 0 !important;
}

#cal_detail_content > div > div.calendar-event-body > h1,
#cal_detail_content > div > div.calendar-event-body > h2,
#cal_detail_content > div > div.calendar-event-body > h3,
#cal_detail_content > div > div.calendar-event-body > h4,
#cal_detail_content > div > div.calendar-event-body > h5,
#cal_detail_content > div > div.calendar-event-body > h6 {
	font-family: var(--secondary-font);
	font-style: italic;
	text-align: left;
	font-size: 2em;
	margin-bottom: 0.3em;
	font-weight: 300;
}

#cal_detail_content > div > div.calendar-event-body > ul {
	text-align: left;
	color: var(--text-color);
	line-height: 1.6em;
	font-size: 16px;
	font-family: var(--primary-font);
	letter-spacing: 0.03em;
	font-weight: 400;
	list-style-position: inside;
}

@media screen and (max-width: 1025px) {
	#cal_detail_content > div > div.calendar-event-body > h1,
	#cal_detail_content > div > div.calendar-event-body > h2,
	#cal_detail_content > div > div.calendar-event-body > h3,
	#cal_detail_content > div > div.calendar-event-body > h4,
	#cal_detail_content > div > div.calendar-event-body > h5,
	#cal_detail_content > div > div.calendar-event-body > h6 {
		font-size: 1.5em;
		text-align: center;
	}

	p.event-meta-date {
		font-family: var(--secondary-font);
		font-size: 18px !important;
		margin: 0 !important;
	}

	p.event-meta-time {
		font-family: var(--secondary-font);
		font-size: 14px !important;
		font-weight: 500;
		margin: 0 !important;
	}
}

/* Careers */
#winery.careers .accolades_txt {
	width: 100%;
}
#winery.careers .accolades_txt .btn {
	margin: 10px 0px 0px 20px;
	background: #d1b371;
	color: #25221e !important;
	font:
		italic 14px/16px "Libre Baskerville",
		serif;
	text-transform: capitalize;
	letter-spacing: 1.5px;
	padding: 8px 15px;
	display: inline-block;
	vertical-align: middle;
	border: 3px double #000;
}
#winery.careers .accolades_txt .btn a {
	text-transform: none;
	text-decoration: none;
	font-style: normal;
}

/* Visit */

div.container.events-feed {
	padding: 2em 2em 5em 2em;
}

.events-feed {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

#events_feed_list {
	display: grid;
	grid-template-columns: 1fr 1fr;
	max-width: 1200px;
	width: 100%;
	padding: 0 6em;
	row-gap: 3em;
}

@media screen and (max-width: 1124px) {
	#events_feed_list {
		padding: 0 0;
	}
}

.event_container {
	display: grid;
	grid-template-columns: 2.5fr 3fr;
	column-gap: 2em;
}

.events_feed_img img {
	height: 100%;
	width: 225px;
	aspect-ratio: 1/1;
	object-fit: contain;
}

.events_title_container {
	row-gap: 1em;
}

.events_feed_txt {
	text-align: left;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	/* row-gap: 1em; */
	padding: 5px 0;
}

.events_feed_txt h4 {
	font-size: 1.3em;
	font-style: italic;
}

.events_feed_txt h3 a {
	font-style: normal;
	text-decoration: none;
	font-family: var(--secondary-font);
	color: black;
	font-size: 0.7em !important;
	line-height: 0.6em !important;
	font-weight: 300;
}

.events_feed_txt h5 {
	color: black;
	font-size: 1em;
	font-family: var(--primary-font);
	line-height: 1.8em;
}

.event_button_container {
	margin-top: 1em;
}

a.secondary-button.events_feed_button {
	padding: 0.8em 2em;
}

@media screen and (max-width: 978px) {
	.event_container {
		display: grid;
		grid-template-columns: 1fr 2fr;
	}

	.events_feed_img img {
		height: 140px;
		width: auto;
		aspect-ratio: 1/1;
	}

	.events_feed_txt {
		row-gap: 1em;
	}

	.events_feed_txt h3 a {
		font-size: 28px !important;
	}
}

@media screen and (max-width: 978px) {
	#events_feed_list {
		display: grid;
		grid-template-columns: 1fr;
		max-width: 550px;
		width: 100%;
		row-gap: 6em;
	}

	.events_feed_img img {
		height: 100%;
		width: 100%;
		aspect-ratio: 1/1;
	}
}

@media screen and (max-width: 600px) {
	#events_feed_list {
		width: 80%;
		max-width: 300px;
		justify-content: center;
		align-items: center;
	}

	.event_container {
		grid-template-columns: 1fr;
		row-gap: 2em;
	}

	.events_feed_img img {
		height: 100%;
		width: 100%;
		aspect-ratio: 1/1;
	}
}

/* Galleries - 2024 */

.grid-parent-container {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.grid-container {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}

.grid-container img {
	width: 100%;
	height: auto; /* Ensure images maintain aspect ratio */
}

@media (max-width: 768px) {
	.grid-container {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 480px) {
	.grid-container {
		grid-template-columns: 1fr;
	}
}

.faux-dropdown {
	position: relative;
	display: inline-block;
	min-width: 300px;
	align-self: center;
	text-align: center;
	border: 1px solid var(--text-color);
	padding: 1.2em 2em;
	margin-bottom: 2em;
	font-family: var(--secondary-font);
	text-transform: uppercase;
	font-size: 1.3em;
	cursor: pointer; /* Indicate it's clickable */
	font-weight: 300;
}

.faux-dropdown ul,
div.faux-dropdown.mobile-faux-dropdown ul {
	margin-top: 20px;
	border-left: 2px solid var(--primary-color);
	border-right: 2px solid var(--primary-color);
	border-bottom: 2px solid var(--primary-color);
}

div.faux-dropdown.mobile-faux-dropdown {
	width: 100%;
	background-color: var(--primary-color);
	border: none;
}

div.faux-dropdown.mobile-faux-dropdown ul {
	margin-left: -32px;
	width: 100%;
}

div.faux-dropdown span,
div.faux-dropdown ul {
	letter-spacing: 0.1em;
}

div.faux-dropdown.mobile-faux-dropdown span,
div.faux-dropdown.mobile-faux-dropdown ul {
	font-family: var(--primary-font);
	font-size: 0.8em;
	padding: 0.5em 0;
	letter-spacing: 0.1em;
}

@media screen and (max-width: 768px) {
	div.tab-nav-container {
		background-color: white;
		padding-bottom: 0 !important;
	}

	div.faux-dropdown.mobile-faux-dropdown {
		margin-bottom: 0;
	}
}

@media screen and (min-width: 768px) {
	div.faux-dropdown.mobile-faux-dropdown {
		display: none;
	}
}

.faux-dropdown ul {
	/* display: none; */
	list-style: none;
	position: absolute;
	background-color: white;
	min-width: 300px;
	box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
	z-index: 1;
	padding: 0;
	margin: 0; /* Remove default margin */
}

/* .faux-dropdown:hover ul {
  display: block;
} */

.hidden {
	display: none;
}

.faux-dropdown ul li {
	padding: 12px 16px;
	margin: 0;
	font-family: var(--secondary-font);
	font-weight: 300;
}

.faux-dropdown ul li a {
	color: black;
	text-decoration: none;
	display: block;
}

.faux-dropdown ul li a:hover {
	background-color: #f1f1f1;
}

div.faux-dropdown.mobile-faux-dropdown > span {
	color: var(--text-color);
}

/* Initial down arrow styling */
div.faux-dropdown.mobile-faux-dropdown span.dropdown-toggle:after,
span.dropdown-arrow:after {
	display: inline-block;
	padding: 3px 3px 3px 3px;
	margin-left: 20px;
	transform: rotate(90deg);
	transition: transform 0.3s ease;
	font-family: "Nanum Myeongjo", serif;
	font-size: 12px;
	content: ">";
}

.carat {
	font-family: "Nanum Myeongjo", serif;
	font-size: 11px;
	font-weight: 400;
	margin-left: 5px;
}

/* Fresco customization */
.fresco-overlay {
	background-color: rgba(0, 0, 0, 0.6) !important;
}

.fresco-navigation {
	display: block !important;
}

/* Hide fr-info */
div.fr-info {
	display: none !important;
}

/* Events */
#related_galleries {
	margin: 30px 0;
}
#related_galleries > h3 {
	display: none;
}
#related_galleries ul {
	text-align: center;
}
#related_galleries ul li {
	list-style: none;
	display: inline-block;
	margin: 10px 2px 0 0;
}
#related_galleries ul li h4 {
	font-weight: 400;
	margin-bottom: 10px;
}
#wedding_links {
	border-top: 1px solid #d1b371;
	width: 620px;
	margin: auto;
	height: 35px;
	margin-top: 20px;
}
#wedding_links li {
	list-style: none;
	float: left;
}
#wedding_links li#testimonials a,
#wedding_links li#info a,
#wedding_links li#manager a {
	padding-left: 25px;
	display: block;
	margin: 0 10px;
	line-height: 35px;
	text-decoration: none;
	font-style: normal;
	font-family: var(--primary-font);
	color: #d1b371;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}
#wedding_links li#testimonials a {
	background: url(/images/site/events_icons_testimonials.png) left center
		no-repeat;
}
#wedding_links li#info a {
	background: url(/images/site/events_icons_event_info.png) left center
		no-repeat;
}
#wedding_links li#manager a {
	background: url(/images/site/events_icons_events_manager.png) left center
		no-repeat;
}
#wedding_links #wedding_social {
	border-right: 1px solid #d1b371;
	float: left;
	padding-right: 25px;
	margin-right: 10px;
}
#wedding_links #wedding_social li {
	list-style: none;
	float: left;
	margin: 10px 4px 0 2px;
}
#wedding_links #wedding_social li a {
	text-indent: -9999px;
	display: block;
	width: 20px;
	height: 20px;
}
#wedding_links #wedding_social li.twitter a {
	background: url(/images/site/social_twitter.png) no-repeat;
}
#wedding_links #wedding_social li.twitter a:hover {
	background: url(/images/site/social_twitter_over.png) no-repeat;
}
#wedding_links #wedding_social li.facebook a {
	background: url(/images/site/social_facebook.png) no-repeat;
}
#wedding_links #wedding_social li.facebook a:hover {
	background: url(/images/site/social_facebook_over.png) no-repeat;
}
#wedding_links #wedding_social li.pinterest a {
	background: url(/images/site/social_pinterest.png) no-repeat;
}
#wedding_links #wedding_social li.pinterest a:hover {
	background: url(/images/site/social_pinterest_over.png) no-repeat;
}
#wedding_links #wedding_social li.instagram a {
	background: url(/images/site/social_instagram.png) no-repeat;
}
#wedding_links #wedding_social li.instagram a:hover {
	background: url(/images/site/social_instagram_over.png) no-repeat;
}

/* Wine Club */
section#club_content {
	text-align: left;
	width: 735px;
	margin: auto;
	min-width: 735px;
}
section#club_content h1,
section#club_content h2,
section#club_content h3,
section#cart_content h1 {
	text-align: center;
	font-style: normal;
}
#club_content {
	padding: 75px 0;
}
.membership {
	width: 180px; /*float: left;*/
	display: inline-block;
	margin: 35px 20px 35px;
}
.membership img {
	width: 100%;
}
.membership h4 {
	margin-bottom: 25px;
	display: block;
	color: #49453a;
	border-bottom: 1px solid #d1b371;
	padding-bottom: 7px;
	font-size: 13px;
	letter-spacing: 0.11em;
	font-family: "sofia";
	font-weight: bold;
}
.membership h5 {
	margin: 10px 0;
	color: #d1b371;
	letter-spacing: 0.04em;
	font-family: "sofia";
	font-weight: bold;
}
.membership h2 {
	margin: 15px 0;
	color: #49453a;
	text-transform: none;
	font-style: italic;
	letter-spacing: 0.05em;
	font-size: 18px;
}
.membership a.signup {
	margin-top: 10px;
	margin-right: 10px;
	border: 2px solid #d1b371;
	height: 40px;
	line-height: 40px;
	text-transform: uppercase;
	color: #5f6063;
	font-family: var(--primary-font);
	font-size: 13px;
	font-style: normal;
	display: inline-block;
	padding: 0 15px;
	text-decoration: none;
	font-weight: 400;
	letter-spacing: 0.05em;
}

a#login {
	position: absolute;
	top: -52px;
	padding-right: 10px;
	right: 0;
	font-family: var(--primary-font);
	line-height: 50px;
	display: inline-block;
	background: url(/images/site/menu_member_login_bg.png) no-repeat;
	width: 160px;
	height: 50px;
	color: #fff;
	text-decoration: none;
	letter-spacing: 0.05em;
	font-style: normal;
	text-transform: uppercase;
	font-size: 11px;
}
#member_login {
	width: 435px;
	margin: 40px auto;
}
#member_login input[type="text"],
#member_login input[type="password"] {
	width: 280px;
	height: 20px;
	background: #ebe5d5;
	float: right;
	margin-bottom: 10px;
	padding: 10px;
}
#member_login input[type="password"] {
	margin-bottom: 25px;
}
#member_login input[type="submit"] {
	margin-right: 5px;
	float: left;
	cursor: pointer;
	width: 91px;
	height: 29px;
	background: url(/images/site/login.png);
	text-indent: -9999px;
}
#member_login_form {
	width: 300px;
	float: right;
}
#member_login_txt {
	float: left;
	width: 130px;
	text-align: left;
}
#member_login_txt p {
	width: 130px !important;
	line-height: 40px;
	font-style: italic;
}
#wrapper .content .center-container {
	width: 91.4%;
	margin: 0 auto;
}

/* Contact */

section.two-column-section-parent.contact-section {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

@media screen and (max-width: 768px) {
	section > div.container.two-column-section.left-image.contact-container,
	section > div.container.two-column-section.right-image.contact-container {
		max-width: 90%;
		margin-bottom: 1em;
	}
}

@media screen and (min-width: 768px) {
	section > div.container.two-column-section.left-image.contact-container,
	section > div.container.two-column-section.right-image.contact-container {
		max-width: 1200px;
		align-self: center;
		height: 100%;
		min-height: 500px;
		margin: 8em 2em;
	}

	section > div.container.two-column-section.left-image.contact-container {
		padding: 2em 2em 2em 0;
	}

	section > div.container.two-column-section.right-image.contact-container {
		padding: 2em 0 2em 2em;
	}

	section
		> div.container.two-column-section.left-image.contact-container
		.contact-image-column {
		margin-top: -6em; /* Shift the image up by 15px */
		margin-left: -6em;
	}

	section
		> div.container.two-column-section.right-image.contact-container
		.contact-image-column {
		margin-top: -6em; /* Shift the image up by 15px */
		margin-right: -6em;
	}
}

.contact-image-column img {
	height: 100%;
	max-height: 100%;
	width: 100%;
	object-fit: cover;
	object-position: bottom center;
}

/* On smaller screens, stack the image on top of the text for both even and odd sections */
@media (max-width: 768px) {
	.contact-two-column-section,
	.contact-two-column-section:nth-child(odd) {
		grid-template-columns: 1fr; /* Single-column layout */
		grid-template-areas:
			"second" /* Image comes first */
			"first"; /* Text comes below the image */
		width: 80%;
	}

	.contact-two-column-section > :nth-child(2) {
		margin-right: 0;
	}

	.contact-two-column-section:nth-child(odd) > :nth-child(2) {
		margin-left: 0;
	}

	.contact-image-column {
		height: 500px;
		width: 100%;
		margin-left: 0;
		margin-right: 0;
	}
}

/* FAQ Page */
/* .faq_list {display:flex;flex-wrap:wrap;} */

#winery_content > div {
	padding: 0 2em;
	max-width: 1000px;
}

.toggle-icon {
	font-size: 2.2em;
	font-weight: 300;
	font-family: var(--secondary-font);
}

button.accordion-button {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: transparent;
	border: none;
	padding: 0;
	margin: 20px 0;
}

.faq_list .faq-item {
	width: 100%;
}
.faq_list .faq-item .question {
	color: var(--text-color);
	font-family: var(--secondary-font);
	font-weight: 300;
	text-transform: none;
	font-size: 1.9em;
	font-style: italic;
	margin: 0;
	letter-spacing: 0.035em;
	text-align: left;
	padding: 0;
	display: block;
}
.faq_list .faq-item .answer p {
	font-size: 1.1em;
	text-align: left !important;
}

@media screen and (max-width: 768px) {
	.faq_list .faq-item {
		width: 100%;
	}
}

/* Footer Push */
#push {
	height: 71px;
	pointer-events: none;
}

/* Footer */
footer {
	border-top: 1px solid #49453a;
	width: 100%;
	min-width: 940px;
	background-color: #fff;
	overflow: hidden;
	position: relative;
	z-index: 100;
}
footer a#footer_contact {
	float: left;
	line-height: 40px;
}
/*footer #footer_cart {width: 150px; height: 40px; background: #d1b371; float: left; margin-right: 15px;}
footer #footer_cart ul {padding-left: 7px;}
footer #footer_cart ul li {list-style: none; float: left; color: #fff; font-family: 'Montserrat', sans-serif; font-size: 11px; letter-spacing: .065em; padding: 0 4px; line-height: 40px;}
footer #footer_cart ul li a {color: #fff; font-family: 'Montserrat', sans-serif; font-size: 11px; letter-spacing: .065em;}*/
footer ul#social li {
	list-style: none;
	float: left;
	margin: 10px 2px 0 2px;
}
footer ul#social li a {
	text-indent: -9999px;
	display: block;
	width: 20px;
	height: 20px;
}
footer ul#social li.twitter a {
	background: url(/images/site/social_twitter.png) no-repeat;
}
footer ul#social li.twitter a:hover {
	background: url(/images/site/social_twitter_over.png) no-repeat;
}
footer ul#social li.facebook a {
	background: url(/images/site/social_facebook.png) no-repeat;
}
footer ul#social li.facebook a:hover {
	background: url(/images/site/social_facebook_over.png) no-repeat;
}
footer ul#social li.pinterest a {
	background: url(/images/site/social_pinterest.png) no-repeat;
}
footer ul#social li.pinterest a:hover {
	background: url(/images/site/social_pinterest_over.png) no-repeat;
}
footer ul#social li.instagram a {
	background: url(/images/site/social_instagram.png) no-repeat;
}
footer ul#social li.instagram a:hover {
	background: url(/images/site/social_instagram_over.png) no-repeat;
}
footer ul#footer_text {
	display: block;
	max-width: 699px;
	margin: 0 auto;
}
footer ul#footer_text li {
	line-height: 30px;
	text-align: center;
	list-style: none;
	float: left;
	color: #000;
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: 0em;
}
footer ul li.line {
	margin: 0 3px;
}
footer ul#footer_text li a {
	color: #000;
	font-family: var(--primary-font);
}
footer ul#footer_text2 {
	display: block;
	max-width: 263px;
	margin: 10px auto;
}
footer ul#footer_text2 li {
	line-height: 20px;
	text-align: center;
	list-style: none;
	color: #000;
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: 0.03em;
}
footer ul#footer_text2 li a {
	color: #000;
	font-family: var(--primary-font);
}

/* Gallery Grid */

/* Shadowbox */
#sb-title-inner,
#sb-info-inner,
#sb-loading-inner,
div.sb-message {
	font-family:
		"HelveticaNeue-Light", "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-weight: 200;
	color: #fff;
}
#sb-container {
	position: fixed;
	margin: 0;
	padding: 0;
	top: 0;
	left: 0;
	z-index: 300;
	text-align: left;
	visibility: hidden;
	display: none;
}
#sb-overlay {
	position: relative;
	height: 100%;
	width: 100%;
}
#sb-wrapper {
	position: absolute;
	visibility: hidden;
	width: 100px;
}
#sb-wrapper-inner {
	position: relative;
	border: 1px solid #303030;
	overflow: hidden;
	height: 100px;
}
#sb-body {
	position: relative;
	height: 100%;
}
#sb-body-inner {
	position: absolute;
	height: 100%;
	width: 100%;
	background: #fff;
}
#sb-player.html {
	height: 100%;
	overflow: auto;
}
#sb-body img {
	border: 1px solid #c5c5c5;
}
#sb-loading {
	position: relative;
	height: 100%;
}
#sb-loading-inner {
	position: absolute;
	font-size: 14px;
	line-height: 24px;
	height: 24px;
	top: 50%;
	margin-top: -12px;
	width: 100%;
	text-align: center;
}
#sb-loading-inner span {
	background: url(/images/jquery/loading.gif) no-repeat;
	padding-left: 34px;
	display: inline-block;
}
#sb-body,
#sb-loading {
	background-color: #060606;
}
#sb-info,
#sb-info-inner {
	height: 20px;
	line-height: 20px;
}
#sb-info-inner {
	font-size: 12px;
}
#sb-nav {
	float: right;
	height: 16px;
	padding: 2px 0;
	width: 45%;
}
#sb-nav-close {
	background-image: url(/images/jquery/close.png);
}
#sb-nav-close {
	cursor: pointer;
	width: 16px;
	height: 16px;
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: 999;
	background-image: url(/images/jquery/close.png);
}
#sb-nav-next {
	cursor: pointer;
	width: 45px;
	height: 80px;
	position: absolute;
	top: 42%;
	right: 0;
	z-index: 999;
	background-image: url(/images/site/arrow_right.png);
}
#sb-nav-previous {
	cursor: pointer;
	width: 45px;
	height: 80px;
	position: absolute;
	top: 42%;
	left: 0;
	z-index: 999;
	background-image: url(/images/site/arrow_left.png);
}
#sb-nav-play {
	display: none;
}
#sb-nav-pause {
	display: none;
}
#sb-counter {
	display: none;
}
#sb-counter a {
	padding: 0 4px 0 0;
	text-decoration: none;
	cursor: pointer;
	color: #fff;
}
#sb-counter a.sb-counter-current {
	text-decoration: underline;
}
div.sb-message {
	font-size: 12px;
	padding: 10px;
	text-align: center;
}
div.sb-message a:link,
div.sb-message a:visited {
	color: #fff;
	text-decoration: underline;
}

/*----- edits on @V2/23/2016 -----*/
.reserve-block {
	display: inline-block;
	position: relative;
	margin: 0 auto;
	background: #b5975a;
	max-width: 445px;
	margin-right: 0;
	padding: 10px 10px 7px 8px;
	margin-top: -9px;
	position: absolute;
	background: url("/images/site/background-glow.jpg");
	background-repeat: no-repeat;
	left: auto;
	right: 0;
	background-position: top left;
	background-size: 100% auto;
}
.reserve-block form {
	margin: 0 auto;
	display: inline-block;
}
.reserve-block label {
	width: auto;
	display: inline-block;
	vertical-align: middle;
	font-size: 12px;
	line-height: 24px;
	color: #fff;
	padding: 0 8px;
	font-family: "Playfair Display", serif;
	padding-left: 0;
	font-weight: 500;
}
.reserve-block .calendar {
	background: #f9f3de;
	display: inline-block;
	vertical-align: middle;
	height: 25px;
	width: 96px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	padding: 2px 25px 2px 8px;
	background-image: url("/images/site/calender-img.png");
	background-repeat: no-repeat;
	background-position: 93% 6px;
	margin-right: 5px;
	font-size: 10px;
	font-weight: 400;
	color: #000;
}
.reserve-block .calendar + .calendar {
	width: 105px;
}
.reserve-block .check_availability {
	background: #251c1d;
	-webkit-appearance: none;
	outline: none;
	height: 30px;
	border: none;
	max-width: 80px;
	width: 100%;
	display: inline-block;
	vertical-align: middle;
	color: #fff;
	font-size: 11px;
	line-height: normal;
	font-family: var(--primary-font);
	cursor: pointer;
}

.simple-contact-form label {
	margin: 10px 0 4px 0;
	display: inline-block;
	line-height: 1.3em;
	clear: both;
}
.simple-contact-form {
	text-align: left;
	display: block;
	border-top: 1px solid #fff;
	width: 100%;
	max-width: 535px;
	margin: 50px auto;
}
.simple-contact-form.no-top {
	border-top: none;
	margin: 0 auto 50px auto;
	padding-top: 0;
}
/* .simple-contact-form.dark {border-top: 1px solid #49453a} */
.simple-contact-form .dform {
	margin: 30px 0;
}
.simple-contact-form form input[type="text"],
.simple-contact-form form input[type="email"] {
	width: 100%;
	height: 40px;
	background: #ebe5d5;
	padding: 15px;
	box-sizing: 0;
	border: 0;
	border-radius: 0;
}
.simple-contact-form form input:focus,
.simple-contact-form form textarea:focus {
	background: #d6cfbe;
}
.simple-contact-form form textarea {
	width: 100%;
	height: 100px;
	background: #ebe5d5;
	padding: 15px;
}
.simple-contact-form form input[type="submit"] {
	cursor: pointer;
	margin-top: 10px;
	border: 2px solid #d1b371;
	height: 40px;
	line-height: 40px;
	text-transform: uppercase;
	color: #5f6063;
	font-family: var(--primary-font);
	font-size: 13px;
	font-style: normal;
	display: inline-block;
	padding: 0 20px;
	text-decoration: none;
	font-weight: 400;
	letter-spacing: 0.05em;
}
.simple-contact-form form label.dform_label {
	color: #000;
	font-family: var(--secondary-font);
	font-style: italic;
	font-weight: 300;
	font-size: 15px;
}
.simple-contact-form.dark form label.dform_label {
	color: #49453a;
}
.simple-contact-form form h3 {
	font-size: 16px;
}

/* Gallery */
#gallery h1 {
	margin-top: 25px;
	margin-bottom: 20px;
}
#gallery #wrapper {
	padding-top: 80px !important;
	text-align: center;
}
#gallery .gallery,
#gallery .non-gallery {
	padding-bottom: 20px;
	width: 300px;
	float: left;
	margin-right: 20px;
}
#gallery .gallery:hover h4,
#gallery .non-gallery:hover h4 {
	color: #d1b371;
}
#gallery .gallery .title,
#gallery .non-gallery .title {
	text-align: center;
	width: 100%;
	padding-bottom: 7px;
	display: table;
}
#gallery .gallery h4,
#gallery .non-gallery h4 {
	letter-spacing: 0.11em;
	font-family: var(--primary-font);
	font-weight: 700;
	text-decoration: none;
	font-style: normal;
	font-size: 13px;
	display: table-cell;
	vertical-align: bottom;
	padding: 0 5px;
}
#gallery .gallery a,
#gallery .non-gallery a {
	text-decoration: none;
	display: block;
}
#gallery #sb-wrapper-inner {
	border: 1px solid #c5c5c5;
}
#gallery #sb-body img {
	border: none;
}
#gallery .gallery_nav {
	padding-bottom: 30px;
}
#gallery .gallery_nav h2 a {
	display: inline-block;
	padding-left: 20px;
	text-decoration: none;
	font-style: normal;
	font-family: var(--primary-font);
}
#gallery .gallery_nav h2,
#gallery .gallery_nav h2 {
	display: inline-block;
	color: #49453a !important;
	margin: 0 15px;
	font-family: var(--primary-font);
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.11em;
	margin-bottom: 7px;
}
#gallery .gallery_nav h2 a#gallery_nav_video {
	background-image: url(/images/site/icon-video.svg);
	background-size: 15px;
	background-position: left center;
	background-repeat: no-repeat;
}
#gallery .gallery_nav h2 a#gallery_nav_photo {
	background-image: url(/images/site/icon-gallery.svg);
	background-size: 15px;
	background-position: left center;
	background-repeat: no-repeat;
}
#gallery .gallery_nav h2 a.active {
	color: #d1b371;
}

#winery_media #winery_video img {
	display: block;
	margin: 0 auto;
}
body#basic section#default p {
	color: #49453a !important;
}
body#basic section#default ul li {
	color: #49453a !important;
}

ul.reserve_links {
	display: flex;
	list-style: none;
	align-items: center;
	justify-content: center;
}
ul.reserve_links li {
	margin: 0 10px;
}
/* ul.reserve_links li a {display:block;font-style:normal;font-family: 'Montserrat', sans-serif;font-weight: 700;text-decoration: none;white-space: nowrap;letter-spacing: .2em;font-size: 14px;width: auto;height: 40px;line-height: 40px;color: #fff;text-transform: uppercase;background-color: #d1b371;padding: 0 40px;transition:.2s ease-in-out;} */
ul.reserve_links li a {
	margin-top: 10px;
	margin-right: 10px;
	border: 2px solid #d1b371;
	height: 40px;
	line-height: 40px;
	text-transform: uppercase;
	color: #5f6063;
	font-family: var(--primary-font);
	font-size: 13px;
	font-style: normal;
	display: inline-block;
	padding: 0 15px;
	text-decoration: none;
	font-weight: 400;
	letter-spacing: 0.05em;
}

@media screen and (max-width: 768px) {
	ul.reserve_links {
		flex-direction: column;
	}
	ul.reserve_links li {
		margin: 10px 0;
	}
}

/* Our Team Grid */
.team_body h1 {
	margin-bottom: 0 !important;
}
.team_members {
	margin-bottom: 30px;
}
.team_members .member {
	display: flex;
	border-bottom: 2px solid #d1b371;
	padding: 20px 0;
}
.team_members .member .image {
	flex-basis: 440px;
	height: 345px;
	margin-right: 20px;
}
.team_members .member .content {
	flex: 1;
}
.team_members .member .content p {
	margin-bottom: 0 !important;
	padding-bottom: 0 !important;
}
.team_members .member .content h2 {
	color: #000;
	font-weight: 300;
	font-family: var(--secondary-font);
	letter-spacing: 0.11em;
	font-size: 18px;
	margin-bottom: 15px;
}
.team_members .member:nth-child(even) .image {
	order: 2;
	margin-right: 0;
	margin-left: 20px;
}
.team_members .member:nth-child(even) .content {
	order: 1;
}
.team_body {
	margin-bottom: -20px;
}

@media screen and (max-width: 1023px) {
	.team_members .member .image {
		flex-basis: 220px;
	}
}
@media screen and (max-width: 768px) {
	.team_members .member {
		flex-direction: column;
	}
	.team_members .member .image {
		order: 1 !important;
		width: 100%;
		height: 270px;
		flex-basis: auto;
		margin: 0 0 20px 0 !important;
	}
	.team_members .member .content {
		order: 2 !important;
	}
}

#contact h1 {
	font-family: var(--secondary-font);
	font-size: 42px;
	text-transform: none;
	text-align: center;
	display: block;
	margin: 0 auto 40px;
	font-style: normal;
	font-weight: 300;
}

/* Cookie Stlyes */
.optanon-alert-box-wrapper .optanon-alert-box-bg p,
.optanon-alert-box-wrapper .optanon-alert-box-bg p a,
.optanon-alert-box-wrapper
	.optanon-button-more
	.optanon-alert-box-button-middle
	button,
#optanon #optanon-popup-body p.header-3,
#optanon #optanon-popup-body #optanon-vendor-consent-text,
#optanon #optanon-popup-body .legacy-preference-banner-title,
#optanon #optanon-menu li .preference-menu-item,
#optanon #optanon-popup-more-info-bar p,
#optanon
	#optanon-popup-body
	div.optanon-main-info-text
	div.optanon-cookie-list
	.optanon-cookies-used,
#optanon
	#optanon-popup-body
	div.optanon-main-info-text
	div.optanon-cookie-list
	p.optanon-group-cookies-list {
	font-family: "Montserrat", sans-serif !important;
}
#optanon #optanon-popup-body div.optanon-main-info-text {
	font-family: var(--primary-font);
	letter-spacing: 0.035em;
	line-height: 18px;
}

/* @media screen and (max-width: 1280px) {
  #header_wrapper .socialIcons {
    display: none;
  }
  #header_wrapper .contactBtn {
    display: none;
  }
} */

@media screen and (max-width: 1023px) {
	.contactBtn {
		display: block;
		font-size: 10px;
		right: 11px;
		top: 65%;
		padding: 0 10px;
	}
}

@media screen and (max-width: 1300px) {
	#logo {
		margin: 0 40px !important;
		text-align: center;
		max-width: 180px;
	}
	#logo a img {
		max-width: 125px;
		width: 100% !important;
	}
	nav ul li {
		margin: 0 10px;
	}
	/* nav > ul > li > a {
    padding-top: 0px;
  } */
	li#wine-club {
		margin-left: 0 !important;
	}
	li#events {
		margin-left: 0 !important;
	}
	.events .venues_section .container {
		width: 100%;
		padding: 0 25px;
		box-sizing: border-box;
	}
}
.home_divider .home_divider_element {
	display: none !important;
}

blockquote,
q {
	color: #d1b371;
}
#winery_content h2 a {
	font-size: 20px;
	font-style: normal;
	margin-bottom: 15px;
	display: inline-block;
	text-decoration: none;
	border-bottom: 2px solid #000;
	padding-bottom: 3px;
}

/* Wine Locator */
#locator #main_container {
	height: calc(100% - 90px);
	background: #25221e;
}
#locator #main_container #wrapper {
	height: 100% !important;
	margin: 0 auto !important;
}
#locator #main_container #wrapper .content {
	height: 100%;
	padding: 0;
}
#locator #wine_locator {
	position: relative;
	width: 100%;
	height: 100%;
}
#locator #wine_locator .wn_loc_content {
	padding: 30px 85px 0 85px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-left: -235px;
	margin-top: -120px;
	border: 1px solid #b5985a;
	background: rgba(37, 34, 30, 0.9);
	height: 250px;
	text-align: center;
	-webkit-box-shadow: 0px 0px 0px 5px rgba(37, 34, 30, 0.9);
	-moz-box-shadow: 0px 0px 0px 5px rgba(37, 34, 30, 0.9);
	box-shadow: 0px 0px 0px 5px rgba(37, 34, 30, 0.9);
}
#locator #wine_locator .wn_loc_content h1 {
	margin: auto;
	width: 320px;
	padding-bottom: 10px;
	display: block;
	border-style: solid;
	border-width: 0px 0px 10px;
	-moz-border-image: url(/images/site/divider.png) 0 0 10 round;
	-webkit-border-image: url(/images/site/divider.png) 0 0 10 round;
	-o-border-image: url(/images/site/divider.png) 0 0 10 round;
	border-image: url(/images/site/divider.png) 0 0 10 fill round;
	font-size: 30px;
	letter-spacing: 0;
	font-weight: 400;
}
#locator #wine_locator .wn_loc_content p {
	color: #fff;
	display: block;
	margin: 15px 0;
	font-size: 14px;
	line-height: 22px;
}
#locator #wine_locator .wn_loc_content input[type="text"] {
	padding: 0 10px;
	margin-right: 10px;
	width: 75px;
	height: 32px;
	background: #eae5d6;
}
#locator #wine_locator .wn_loc_content input[type="submit"] {
	cursor: pointer;
	border: 1px solid #000;
	-webkit-box-shadow: 0px 0px 0px 1px rgba(181, 152, 90, 1);
	-moz-box-shadow: 0px 0px 0px 1px rgba(181, 152, 90, 1);
	box-shadow: 0px 0px 0px 1px rgba(181, 152, 90, 1);
	font-family: "Libre Baskerville", serif;
	font-style: italic;
	font-weight: 400;
	background: #b5985a;
	height: 30px;
	width: 185px;
	text-align: center;
}
#locator #wine_locator .wn_loc_content label {
	margin-right: 5px;
	font-size: 12px;
	letter-spacing: 0.1em;
	font-family: "Lato", sans-serif;
	text-transform: uppercase;
}

#locator #push {
	height: 510px !important;
}

/* Wine Locator Results */
#locator .wine_locator_result {
	position: absolute;
	top: 12%;
	right: 7%;
	width: 320px;
	z-index: 5;
}
#locator .wine_locator_result .search_rslt {
	margin-bottom: 15px;
	text-align: center;
	padding: 15px 12px 0 12px;
	background: rgba(37, 34, 30, 0.9);
	border: 1px solid #b5985a;
	-webkit-box-shadow: 0px 0px 0px 5px rgba(37, 34, 30, 0.9);
	-moz-box-shadow: 0px 0px 0px 5px rgba(37, 34, 30, 0.9);
	box-shadow: 0px 0px 0px 5px rgba(37, 34, 30, 0.9);
}
#locator #wine_locator .search_rslt h1 {
	margin: auto;
	width: 320px;
	padding-bottom: 10px;
	display: block;
	border-style: solid;
	border-width: 0px 0px 10px;
	-moz-border-image: url(/images/site/divider.png) 0 0 10 round;
	-webkit-border-image: url(/images/site/divider.png) 0 0 10 round;
	-o-border-image: url(/images/site/divider.png) 0 0 10 round;
	border-image: url(/images/site/divider.png) 0 0 10 fill round;
	font-size: 20px;
	letter-spacing: 0;
	font-weight: 400;
}
#locator #wine_locator .search_rslt p {
	color: #fff;
	display: block;
	margin: 15px 0;
	font-size: 14px;
	line-height: 22px;
}
#locator #wine_locator .search_rslt input[type="text"] {
	padding: 0 10px;
	margin-right: 10px;
	width: 75px;
	height: 32px;
	background: #eae5d6;
}
#locator #wine_locator .search_rslt input[type="submit"] {
	cursor: pointer;
	border: 1px solid #000;
	-webkit-box-shadow: 0px 0px 0px 1px rgba(181, 152, 90, 1);
	-moz-box-shadow: 0px 0px 0px 1px rgba(181, 152, 90, 1);
	box-shadow: 0px 0px 0px 1px rgba(181, 152, 90, 1);
	font-family: "Libre Baskerville", serif;
	font-style: italic;
	font-weight: 400;
	background: #b5985a;
	height: 30px;
	width: 185px;
	text-align: center;
}
#locator #wine_locator .search_rslt label {
	margin-right: 5px;
	font-size: 12px;
	letter-spacing: 0.1em;
	font-family: "Lato", sans-serif;
	text-transform: uppercase;
}
#locator .wine_locator_result .search_rslt p {
	margin: 6px 0 9px;
}
#locator .wine_locator_result .results_block,
.disclaimer {
	color: #746e66;
	font-size: 14px;
	font-weight: normal;
	background: rgba(37, 34, 30, 0.9);
	border: 1px solid #b5985a;
	-webkit-box-shadow: 0px 0px 0px 5px rgba(37, 34, 30, 0.9);
	-moz-box-shadow: 0px 0px 0px 5px rgba(37, 34, 30, 0.9);
	box-shadow: 0px 0px 0px 5px rgba(37, 34, 30, 0.9);
	padding: 10px 15px;
	margin-bottom: 15px;
}
#locator .wine_locator_result .results_block span {
	color: #bd9746;
	font-size: 14px;
	display: inline-block;
	margin-left: 5px;
}
#locator .wine_locator_result .find_rslt_blk {
	overflow-y: scroll;
	height: 254px;
	background: rgba(37, 34, 30, 0.9);
	border: 1px solid #b5985a;
	-webkit-box-shadow: 0px 0px 0px 5px rgba(37, 34, 30, 0.9);
	-moz-box-shadow: 0px 0px 0px 5px rgba(37, 34, 30, 0.9);
	box-shadow: 0px 0px 0px 5px rgba(37, 34, 30, 0.9);
	padding: 15px;
	position: relative;
}
#locator .wine_locator_result .find_rslt_blk .show_rslt {
	margin-bottom: 35px;
}
#locator .wine_locator_result .find_rslt_blk .show_rslt .left {
	padding-top: 3px;
	width: 70px;
	float: left;
}
#locator .wine_locator_result .find_rslt_blk .show_rslt .left span {
	padding-bottom: 5px;
	display: block;
	font-family: "Libre Baskerville", serif;
	font-size: 38px;
	color: #bd9746;
	line-height: 30px;
}
#locator .wine_locator_result .find_rslt_blk .show_rslt .left img {
	margin: 0 3px;
}
#locator .wine_locator_result .find_rslt_blk .show_rslt .right {
	width: 215px;
	float: left;
}
#locator .wine_locator_result .find_rslt_blk .show_rslt.last {
	margin-bottom: 5px;
}
#locator .wine_locator_result .find_rslt_blk .date {
	width: 25px;
	margin-right: 25px;
	display: inline-block;
	vertical-align: top;
}
#locator .wine_locator_result .find_rslt_blk .date span {
	color: #bd9746;
	font-size: 38px;
}
#locator .wine_locator_result .find_rslt_blk .detail {
	display: inline-block;
	vertical-align: top;
}
#locator .wine_locator_result .find_rslt_blk .detail a {
	text-decoration: none;
	font-style: normal;
	font-size: 18px;
	color: #b5985a;
	font-weight: normal;
}
#locator .wine_locator_result .find_rslt_blk .detail p {
	color: #fff;
	line-height: 18px;
}
#locator .wine_locator_result .find_rslt_blk .detail span {
	display: block;
	padding-top: 5px;
	font-family: "Libre Baskerville", serif;
	color: #bd9746;
	font-size: 14px;
}
#locator .wine_locator_result .results_block,
.disclaimer p {
	color: #fff;
}
#locator #wine_locator .map-address {
	max-width: 275px;
}
#locator #wine_locator .map-address h5 {
	font-family: "Libre Baskerville", serif;
	font-size: 20px;
	color: #b5985a;
}
#locator #wine_locator .map-address p {
	display: block;
	margin: 5px 0;
	line-height: 18px;
	color: #25221e;
}
#locator #wine_locator .map-address img {
	margin: 0 3px;
	display: inline-block;
	vertical-align: middle;
}
#locator #wine_locator .map-address span a {
	font-family: "Libre Baskerville", serif;
	color: #bd9746;
	display: inline-block;
	vertical-align: middle;
	text-decoration: none;
	font-style: normal;
}
#locator .wine_locator_result #mobile_view {
	display: none;
}

.event_request_form label {
	margin: 10px 0 4px 0;
	display: inline-block;
	line-height: 1.3em;
	clear: both;
}
.event_request_form {
	text-align: left;
	display: block;
	border-top: 1px solid #fff;
	width: 100%;
	max-width: 535px;
	margin: 0 auto;
}
.event_request_form.no-top {
	border-top: none;
	margin: 0 auto 50px auto;
	padding-top: 0;
}
.event_request_form.dark {
	border-top: 1px solid #49453a;
}
.event_request_form .dform {
	margin: 30px 0;
}
.event_request_form input[type="text"],
.event_request_form input[type="email"] {
	width: 100%;
	height: 40px;
	background: #ebe5d5;
	padding: 15px !important;
	box-sizing: border-box;
}
.event_request_form input:focus,
.event_request_form textarea:focus {
	background: #d6cfbe;
}
.event_request_form textarea {
	width: 100%;
	height: 100px;
	background: #ebe5d5;
	padding: 15px !important;
	box-sizing: border-box;
}
.event_request_form input[type="submit"] {
	cursor: pointer;
	margin-top: 10px;
	border: 2px solid #d1b371;
	height: 40px;
	line-height: 40px;
	text-transform: uppercase;
	color: #5f6063;
	font-family: var(--primary-font);
	font-size: 13px;
	font-style: normal;
	display: inline-block;
	padding: 0 20px;
	text-decoration: none;
	font-weight: 400;
	letter-spacing: 0.1em;
}
.event_request_form label.dform_label {
	color: #000;
	font-family: var(--primary-font);
	/* font-style: italic; */
	font-weight: 400;
	font-size: 15px;
}
.event_request_form.dark form label.dform_label {
	color: #49453a;
}
.event_request_form h3 {
	font-size: 16px;
}

@media screen and (max-width: 860px) {
	body .mobile-nav {
		top: 97px;
	}
	body.scroll .mobile-nav {
		top: 90px;
	}
}

@media screen and (max-width: 555px) {
	body .mobile-nav {
		top: 113px;
	}
	body.scroll .mobile-nav {
		top: 90px;
	}
}

/* Flex Tabbed Content */

div.tab-nav-parent-container {
	margin: 0 auto;
	padding: 2em;
	width: 98%;
	display: flex;
	justify-content: center;
	align-items: center;
}

@media screen and (max-width: 768px) {
	div.tab-nav-parent-container {
		display: none;
	}
}

/* Tab navigation container overflow */
.tab-navigation {
	display: flex;
	overflow: hidden;
	scroll-behavior: smooth;
	white-space: nowrap;
	width: 100%;
}

@media screen and (min-width: 1160px) {
	.tab-navigation {
		max-width: 1060px;
	}
}

@media screen and (min-width: 1338px) {
	.tab-navigation {
		max-width: 1075px;
	}
}

@media screen and (min-width: 1400px) {
	.tab-navigation {
		max-width: 1115px;
	}
}

@media screen and (min-width: 1460px) {
	.tab-navigation {
		max-width: 1160px;
	}
}

@media screen and (min-width: 1545px) {
	.tab-navigation {
		max-width: 1192px;
	}
}

@media screen and (min-width: 1600px) {
	.tab-navigation {
		max-width: 1215px;
	}
}

@media screen and (min-width: 1650px) {
	.tab-navigation {
		max-width: 80%;
	}
}

.tab-navigation .tab {
	flex: 0 0 auto;
	/* padding: 10px; */
	cursor: pointer;
	text-align: center;
	/* margin: 0 20px; */
	/* width: 100%;*/
}

.less-than-6 {
	max-width: 1300px;
}

/* Arrow button styling */
.nav-arrow {
	background: #ccc;
	border: none;
	cursor: pointer;
	padding: 10px;
	font-size: 18px;
	transition: background 0.3s ease;
	z-index: 10;
}

@media screen and (max-width: 768px) {
	.left-tab-arrow,
	.right-tab-arrow {
		display: none !important;
	}
}

/* Position left and right arrows */
.left-tab-arrow {
	margin-right: 15px;
	/* position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%); */
}

.right-tab-arrow {
	margin-left: 15px;
	/* position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%); */
}

/* Hide arrows when there are fewer than 6 items */
.tab-navigation .tab:nth-child(6) ~ .right-tab-arrow {
	display: block;
}

.full-width-section.tabbed-content {
	position: relative;
	color: var(--secondary-color);
}

@media screen and (max-width: 768px) {
	div.tab-nav-container,
	.full-width-section.tabbed-content {
		background-color: white !important;
	}
}

div.tab-nav-container {
	max-width: 100vw;
	display: flex;
	justify-content: center;
	background-color: var(--primary-color);
	/* padding: 2em; */
}

.tab-navigation {
	display: flex;
	justify-content: space-between;
	width: 100%;
	column-gap: 4em;
	/* max-width: 1200px; */
}

.tab-navigation a {
	color: black !important;
}

.flex-tab-nav {
	/* justify-content: center; */
	column-gap: 4em;
}

.tab {
	/* padding: 10px 20px 0 20px; */
	cursor: pointer;
	border: 4px solid #cccccc00;
	/* margin: 0 5px; */
	color: var(--text-color);
}

@media screen and (max-width: 768px) {
	.tab {
		padding: 10px 20px 0 20px;
		border: 4px solid #cccccc00;
		margin: 0 5px;
	}
}

.accent {
	color: var(--accent-color) !important;
}

.tab {
	text-transform: uppercase;
	font-size: 1em;
	display: inline;
	line-height: 1.9em;
}

.tab:hover,
.tab.active {
	border-bottom: 1px solid var(--accent-color);
}

.tab:hover p {
	color: var(--accent-color);
}

.responsive-slider {
	position: relative;
}

.slide {
	display: none;
}

.slide.active {
	display: block;
}

/* .navigation-arrows {
  display: flex;
  justify-content: start;
  margin-top: 20px;
} */

@media screen and (min-width: 768px) {
	.navigation-arrows {
		position: absolute;
		bottom: 22%;
		/* left: 0%; */
	}
}

.nav-arrow {
	background-color: transparent;
	border: none;
	font-size: 24px;
	cursor: pointer;
	padding: 10px;
	transition: background-color 0.3s;
	font-family: "Nanum Myeongjo", serif;
	color: black !important;
}

@media screen and (max-width: 768px) {
	.nav-arrow {
		padding: 10px 20px;
	}
}

.nav-arrow:hover {
	color: var(--accent-color) !important;
}

h3.subtitle {
	line-height: 1.2em;
}

@media (max-width: 768px) {
	.tabbed-two-column-section > :nth-child(1) {
		grid-area: first;
	}

	.tabbed-two-column-section > :nth-child(2) {
		grid-area: second;
	}

	.tabbed-two-column-section {
		grid-template-columns: 1fr;
		grid-template-areas:
			"second"
			"first";
		width: 100%;
		row-gap: 3em;
		text-align: center;
	}

	.navigation-arrows {
		/* display: flex; */
		justify-content: center;
	}

	.tab-navigation {
		display: none;
	}

	.dropdown-nav {
		display: block;
		width: 500px;
	}
}

.dropdown-nav option {
	font-size: 15px;
}

@media (min-width: 769px) {
	.dropdown-nav {
		display: none;
	}
}

img.full-width-image {
	/* max-height: 550px; */
}

/* Flex Tabbed Content End */

/* Bottom Banner */
/* Parent section with background image */
.background-section {
	position: relative;
	width: 100%;
	height: 100vh;
	background-image: url("https://trumpwinery.ntdemosite.com/images/uploads/hotel-albemarle-estate.jpg");
	background-position: center bottom;
	background-size: cover;
	background-repeat: no-repeat;
	display: flex;
	justify-content: center;
	align-items: flex-start;
}

/* Inner container */
.inner-container {
	position: relative;
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding: 18em 2em;
	row-gap: 2em;
	z-index: 2; /* Ensure the content is above the background gradient */
}

.bottom-banner-titles {
	display: flex;
	flex-direction: column;
	row-gap: 0.5em;
}

.bottom-banner-title {
	font-size: 2.9em;
}

@media (max-width: 768px) {
	.bottom-banner-title {
		font-size: 1.6em;
	}
}

/* Text styling */
.inner-container h1 {
	color: #fff;
	margin: 0;
}

.inner-container p {
	color: #fff;
	margin: 0 0;
	max-width: 550px;
	font-weight: 300;
}

/* Mobile adjustments */
@media (max-width: 768px) {
	.background-section {
		height: fit-content;
	}

	.inner-container {
		height: fit-content;
		padding: 3em 2em;
	}

	.inner-container h1 {
		font-size: 2rem;
	}

	.inner-container p {
		font-size: 1rem;
	}
}

/* Bottom Banner End */
