/*!
Theme Name: heydonestate_
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: heydonestate_
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

heydonestate_ is based on Underscores https://underscores.me/, (C) 2012-2017 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Normalize
# Typography
# Elements
# Forms
# Navigation
	## Links
	## Menus
# Accessibility
# Alignments
# Clearings
# Widgets
# Content
	## Posts and pages
	## Comments
# Infinite scroll
# Media
	## Captions
	## Galleries
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
html {
	font-family: sans-serif;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}

body {
	margin: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
	display: block;
}

audio,
canvas,
progress,
video {
	display: inline-block;
	vertical-align: baseline;
}

audio:not([controls]) {
	display: none;
	height: 0;
}

[hidden],
template {
	display: none;
}

a {
	background-color: transparent;
}

a:active,
a:hover {
	outline: 0;
}

abbr[title] {
	border-bottom: 1px dotted;
}

b,
strong {
	font-weight: bold;
}

dfn {
	font-style: italic;
}

h1 {
	font-size: 2em;
	margin: 0.67em 0;
}

mark {
	background: #ff0;
	color: #000;
}

small {
	font-size: 80%;
}

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sup {
	top: -0.5em;
}

sub {
	bottom: -0.25em;
}

img {
	border: 0;
}

svg:not(:root) {
	overflow: hidden;
}

figure {
	margin: 1em 40px;
}

hr {
	box-sizing: content-box;
	height: 0;
}

pre {
	overflow: auto;
}

code,
kbd,
pre,
samp {
	font-family: monospace, monospace;
	font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
	color: inherit;
	font: inherit;
	margin: 0;
}

button {
	overflow: visible;
}

button,
select {
	text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
	-webkit-appearance: button;
	cursor: pointer;
}

button[disabled],
html input[disabled] {
	cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
	border: 0;
	padding: 0;
}

input {
	line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
	box-sizing: border-box;
	padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

fieldset {
	border: 1px solid #c0c0c0;
	margin: 0 2px;
	padding: 0.35em 0.625em 0.75em;
}

legend {
	border: 0;
	padding: 0;
}

textarea {
	overflow: auto;
}

optgroup {
	font-weight: bold;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

td,
th {
	padding: 0;
}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
optgroup,
textarea {
	color: #404040;
	font-family: sans-serif;
	font-size: 16px;
	font-size: 1rem;
	line-height: 1.5;
}

h1, h2, h3, h4, h5, h6 {
	clear: both;
}

p {
	margin: 0 0 20px 0;
}

dfn, cite, em, i {
	font-style: italic;
}

blockquote {
	margin: 0 1.5em;
}

address {
	margin: 0 0 1.5em;
}

pre {
	background: #eee;
	font-family: "Courier 10 Pitch", Courier, monospace;
	font-size: 15px;
	font-size: 0.9375rem;
	line-height: 1.6;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.6em;
}

code, kbd, tt, var {
	font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
	font-size: 15px;
	font-size: 0.9375rem;
}

abbr, acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}

mark, ins {
	background: #fff9c0;
	text-decoration: none;
}

big {
	font-size: 125%;
}

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
html {
	box-sizing: border-box;
}

*,
*:before,
*:after {
	/* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
	box-sizing: inherit;
}

body {
	background: #fff;
	/* Fallback for when there is no custom background color defined. */
}

hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
}

ul, ol {
	margin: 0 0 1.5em 3em;
}

ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}

li > ul,
li > ol {
	margin-bottom: 0;
	margin-left: 1.5em;
}

dt {
	font-weight: bold;
}

dd {
	margin: 0 1.5em 1.5em;
}

img {
	height: auto;
	/* Make sure images are scaled correctly. */
	max-width: 100%;
	/* Adhere to container width. */
}

figure {
	margin: 1em 0;
	/* Extra wide images within figure tags don't overflow the content area. */
}

table {
	margin: 0 0 1.5em;
	width: 100%;
}

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	border: 1px solid;
	border-color: #ccc #ccc #bbb;
	border-radius: 3px;
	background: #e6e6e6;
	color: rgba(0, 0, 0, 0.8);
	font-size: 12px;
	font-size: 0.75rem;
	line-height: 1;
	padding: .6em 1em .4em;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
	border-color: #ccc #bbb #aaa;
}

button:active, button:focus,
input[type="button"]:active,
input[type="button"]:focus,
input[type="reset"]:active,
input[type="reset"]:focus,
input[type="submit"]:active,
input[type="submit"]:focus {
	border-color: #aaa #bbb #bbb;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
	color: #666;
	border: 1px solid #ccc;
	border-radius: 3px;
	padding: 3px;
	font-family: "museo-sans-rounded",sans-serif;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
	color: #111;
}

select {
	border: 1px solid #ccc;
}

textarea {
	width: 100%;
}

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
a {
	color: inherit;
}

a:focus {
	outline: thin dotted;
}

a:hover, a:active {
	outline: 0;
}

/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/
.main-navigation {
	clear: both;
	display: block;
	float: left;
	width: 100%;
}

.main-navigation ul {
	display: none;
	list-style: none;
	margin: 0;
	padding-left: 0;
}

.main-navigation ul ul {
	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
	float: left;
	position: absolute;
	top: 100%;
	left: -999em;
	z-index: 99999;
}

.main-navigation ul ul ul {
	left: -999em;
	top: 0;
}

.main-navigation ul ul li:hover > ul,
.main-navigation ul ul li.focus > ul {
	left: 100%;
}

.main-navigation ul ul a {
	width: 200px;
}

.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
	left: auto;
}

.main-navigation li {
	float: left;
	position: relative;
}

.main-navigation a {
	display: block;
	text-decoration: none;
}

/* Small menu. */
.menu-toggle,
.main-navigation.toggled ul {
	display: block;
}

@media screen and (min-width: 37.5em) {
	.menu-toggle {
		display: none;
	}
	.main-navigation ul {
		display: block;
	}
}

.site-main .comment-navigation, .site-main
.posts-navigation, .site-main
.post-navigation {
	margin: 0 0 1.5em;
	overflow: hidden;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
	float: left;
	width: 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
	float: right;
	text-align: right;
	width: 50%;
}

/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important; /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	clip-path: none;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
	/* Above WP toolbar. */
}

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
	outline: 0;
}

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
	display: inline;
	float: left;
	margin-right: 1.5em;
}

.alignright {
	display: inline;
	float: right;
	margin-left: 1.5em;
}

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
	content: "";
	display: table;
	table-layout: fixed;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
	clear: both;
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widget {
	margin: 0 0 1.5em;
	/* Make sure select elements fit in widgets. */
}

.widget select {
	max-width: 100%;
}

/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/
.sticky {
	display: block;
}

.hentry {
	margin: 0 0 1.5em;
}

.updated:not(.published) {
	display: none;
}

.page-content,
.entry-content,
.entry-summary {
	margin: 1.5em 0 0;
}

.page-links {
	clear: both;
	margin: 0 0 1.5em;
}

/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.comment-content a {
	word-wrap: break-word;
}

.bypostauthor {
	display: block;
}

/*--------------------------------------------------------------
# Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
	/* Theme Footer (when set to scrolling) */
	display: none;
}

/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */
.infinity-end.neverending .site-footer {
	display: block;
}

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
	max-width: 100%;
}

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
	display: inline-block;
}

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}

.wp-caption-text {
	text-align: center;
}

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery {
	margin-bottom: 1.5em;
}

.gallery-item {
	display: inline-block;
	text-align: center;
	vertical-align: top;
	width: 100%;
}

.gallery-columns-2 .gallery-item {
	max-width: 50%;
}

.gallery-columns-3 .gallery-item {
	max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
	max-width: 25%;
}

.gallery-columns-5 .gallery-item {
	max-width: 20%;
}

.gallery-columns-6 .gallery-item {
	max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
	max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
	max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
	max-width: 11.11%;
}

.gallery-caption {
	display: block;
}

/* Heydon Estate */

body {
	font-family: "museo-sans-rounded",sans-serif;
	color:rgba(65,51,45,1);
	font-weight:100;
	font-size:14px;
	line-height:1.5; }

h2 {
	font-family: "clarendon-text-pro";
	font-weight:100;}

.container {
	width:1100px;
	margin:0 auto;
	position:relative;}

.internal-container {
	padding:20px 0 0 0;}

.container-news {
	padding:0 0 50px 0;}
	.news-link {
		background:#BE9F56;
		color:#fff;
		text-decoration:none;
		padding:10px 20px;
		display:inline-block;
	}
header {
	background:#373636;
	color:#fff;
	padding:10px 50px 0 50px;
	position:absolute;
	top:0;
	width:100%;
	}
header .top-bar {
	padding:0 0 20px 0;}
header i, .sticky-header i, #responsive-menu-additional-content i {
	border:1px solid #fff;
	border-radius:50%;
	text-align:center;
	font-size:10px !important;
	width:20px;
	padding:4px 0;
	color:#fff;}
.cart-container, .list-container {display:inline-block;}
.fa-shopping-cart {
	padding:4px 2px 4px 0;}
.top-bar .social {
	float:left;}
.top-bar .cart {
	float:right;
	position:relative;
	z-index:1;}
.top-bar .cart a {
	color:inherit;
	text-decoration:none;}
.top-bar .cart .cart-contents {
	margin-right:15px;
	padding-right:20px;
	border-right:1px solid rgba(255,255,255,0.2);}

.sticky-header {
	top:-100px;
	position:fixed;
	z-index:9999;
	background:#373636;
	width:100%;
	transition:all .5s;
	height:60px;
	color:#fff;
}
.sticky-header .container {
	height:60px;
	position:relative;
	top:-60px;
	margin:0 auto;
	padding:0 50px;
}
.sticky-header .top-bar {
	position:relative;
	top:0;
	line-height:60px;
	width:1100px;
	padding:0 50px;
	margin:0 auto;
}
.sticky-header .social {
	display:none;}
.sticky-header .logo {
	position:relative;
	height:30px;
	top:15px;
	margin:0;
	left:0;
}
.sticky-header .menu-primary-nav-container {
	left:185px;}
header .logo {
	margin:0 0 20px 0;}
body.home .banner {
	height:600px !important;
	}
body.page .banner, body.error404 .banner {
	height:400px;
	margin-top:134px;
	z-index:0;
	position:relative;
	background-size:cover;
	background-position:center center;}
body.blog .banner, body.single .banner, body.woocommerce .banner, body.woocommerce-page .banner, body.page-id-592 .banner {
	height:150px;
	margin-top:134px;
	z-index:0;
	position:relative; }
body.blog .banner h1, body.single .banner h1, body.woocommerce .banner h1, body.woocommerce-page .banner h1, body.page-id-592 .banner h1 {
	text-shadow:none;
	color:#000;}
.banner ul, .banner .unslider, .banner-slider {
	width:100%;
	height:100%;}
.banner ul li {
	width:100%;
	height:100%;
	position:relative;
	background-size:cover;
	background-position:center center;
}
.banner h1 {
	position:absolute;
	top:50%;
	left:50%;
	transform:translate(-50%,-50%);
	color:#fff;
	margin:0;
	font-size:30px;
	text-align:center;
	font-weight:300;
	line-height:1.2;
	text-shadow:1px 1px 10px rgba(0,0,0,0.9);
	width:825px;
	text-transform:uppercase;}
body.home .banner h1 {
	text-transform:none;}
.unslider-nav {
	position:absolute;
	bottom:20px;
	left:50%;
	width:1100px;
	transform:translateX(-50%);
	z-index:10;
	}
	.unslider-nav ol {
		text-align:right !important;}
		.unslider-nav ol li {
			background:#fff !important;
			width:10px !important;
			height:10px !important;
			color:#fff;}
			.unslider-nav ol li.unslider-active {
			background:#BE9F56 !important;
			border-color:#BE9F56 !important;
			color:#BE9F56;
			}
.menu-primary-nav-container {
	position:absolute;
	right:0;
	bottom:0;}
.menu-primary-nav-container ul {
	margin:0;
	padding:0;}
.menu-primary-nav-container ul li {
	display:inline-block;
	padding:0 0 15px 0;
	text-transform:uppercase;
	border-bottom:5px solid transparent;
	margin:0 10px;
	font-size:14px;
	transition:all .5s;}
	.menu-primary-nav-container ul li:hover {
		border-bottom:5px solid #BE9F56; }
.menu-primary-nav-container ul li a {
	color:#fff;
	font-weight:100;
	text-decoration:none;}

.home-panel-container {
	background:#FAF5F0 url(images/bg-home.png?4) no-repeat bottom center;
	background-size:contain;}
.intro {
	padding:100px 0;
	text-align:center;
	width:75%;
	margin:0 auto;
	line-height:2;}
.intro h2 {
	color:#BE9F56;
	font-size:24px;
	border-bottom:2px dotted #BE9F56;
	padding:0 0 10px 0;
	margin:0 0 20px 0;
	display:inline-block;
	font-weight:500; }
.intro a, .btn {
	background:#BE9F56;
	color:#fff;
	font-family: "clarendon-text-pro";
	padding:10px 20px;
	text-decoration:none;
	transition:all .2s;}
	.btn {margin:20px 0;display:inline-block;}
.intro a:hover, .btn:hover {
	background:#fff;
	color:#BE9F56;
}
.boxes {
	position:relative;height:1055px;padding-bottom:100px;overflow:hidden;}
.boxes .box {
	position:absolute;
	background-size:cover;}
.boxes .box:hover .overlay {
	opacity:1;
}
.boxes .box span.title {
	font-family: "clarendon-text-pro";
	font-size:18px;
	padding:7px 20px 5px 20px;
	color:#fff;
	text-transform:uppercase;
	border:2px solid #fff;
	background:rgba(0,0,0,0.3);
	position:absolute;
	top:50%;
	left:50%;
	transform:translate(-50%,-50%);
	z-index:5;
	text-align:center;}
.boxes .box .overlay {
	background:rgba(0,0,0,0.5);
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	opacity:0;
	transition:opacity .2s;
}
.boxes .box .overlay .border {
	box-shadow:inset 0px 0px 0px 2px #fff;
	position:absolute;
	top:10px;
	left:10px;
	right:10px;
	bottom:10px;
	color:#fff;
	padding:0;
	text-align:center;}
.boxes .box .overlay .border span {
	position:absolute;
	top:60%;
	left:50%;
	transform:translateX(-50%);}
.boxes .box-wine-store {
	width:700px;height:535px;top:0;left:0;
	background-repeat:no-repeat;
	background-position:center center;
	background-size:cover;
	}
.boxes .box-wine-club {
	width:345px;height:440px;right:0;top:300px;
	background-repeat:no-repeat;
	background-position:center center;
	background-size:cover;}
.boxes .box-cellar-door {
	width:555px;height:365px;left:145px;top:590px;
	background-repeat:no-repeat;
	background-position:center center;
	background-size:cover;}
.news {
	position:relative;}
.news-image {
	background:url(images/bg-news.jpg) no-repeat center center;
	background-size:cover;
	width:50%;
	float:left;
	height:500px;}
.news-text {
	float:right;
	width:50%;
	padding:100px 0 0 50px;}
.news-text b {
	font-size:16px;
	width:75%;
	display:block;}
.news-text a {
	border:2px solid #BE9F56;
	color:#BE9F56;
	font-family: "clarendon-text-pro";
	text-decoration:none;
	padding:10px 20px;
	margin:20px 0 0 0;
	display:inline-block;}
.news-text h3 {
	color:#BE9F56;
	font-size:24px;
	margin:0 0 20px 0;
	font-family: "clarendon-text-pro";
	font-weight:100;
}
.unslider-arrow {
	position:absolute;
	top:50%;
	transform:translateY(-50%);
	background:#373636;
	color:#BE9F56;
	font-size:20px !important;
	padding:10px 20px;
	transition:all .2s;}
.unslider-arrow:hover {
	color:#373636;
	background:#BE9F56;}
	.main-image {
		width:100%;
		height:auto;
		margin:0 auto;
		padding:0 0 30px 0;}
		.page-navigation {
			padding:20px 0;}
		.page-navigation ul {
			margin:0;
			padding:0;
			list-style-type:none;
			text-align:center;}
			.page-navigation ul li {
				display:inline-block;}
				.page-navigation ul li a {
					color:#BE9F56;
					text-decoration:none;
					font-weight:500;
					margin:0 5px;
					padding:0 5px;
					}
					.page-navigation ul li:after {
						content:'•';
						color:#BE9F56;}
						.page-navigation ul li:last-child:after {
						content:'';
						color:#BE9F56;}
				
		.panel {
		padding:50px 0;}
		.panel h2, .vineyard-practices h2, .cellar-door h2 {
			color:#BE9F56;
			margin:0;
			padding:0 0 30px 0;
			text-transform:uppercase;}
			.panel h3, .vineyard-practices h3, .cellar-door h3 {
			color:#BE9F56;
			margin:0;
			padding:0 0 30px 0;
			font-family: "clarendon-text-pro";
			font-weight:100;
			font-size:18px;}
			.our-location h2, .winemaking-philosophy h2, .join-list h2, .cellar-club h2 {
				border-bottom:1px dotted #BE9F56;
				padding:0 0 10px 0;
				margin:0 0 15px 0;}
				.wine-packs {
					padding: 0 0 50px 0;}
			.winemaking-philosophy {
				padding:100px 0 50px 0;}
				.split-col {
				column-count:2;
				column-gap:20px;}
				.split-col blockquote {
					margin:0;
					font-family: "clarendon-text-pro";
					font-weight:100;
					color:#BE9F56;
					font-size:18px;}
					.passion-cricket {
						background:#fdfaf3;}
					.passion-cricket .col-right img {
						width:50%;
						display:block;
						margin:-200px auto 0 auto;}
						.news .unslider-arrow {display:none;}
.prev {
	left:0 !important;}
.next {
	right:0 !important;}
	.col {
	float:left;
	position:relative;}
	.col-right {
	float:right;
	position:relative;}
	.col-70 {
	width:70%;}
	.col-50 {
	width:50%;}
	.col-45 {
	width:45%;}
	.col-33 {
		width:30%; }
	.col-25 {
	width:25%;}
	.col-middle {
		margin:0 5%;}
		.col-news {
			display:inline-block;
			position:relative;
			width:30%;
			vertical-align:top;
			margin:0 0 50px 0;
			min-height:600px;}
			.col-news .btn {
				position:absolute;
				bottom:50px;}
			.col-news:nth-child(3n + 2) {
				margin:0 4.6%;}
				.col-news-image {
					width:100%;
					height:250px;
					background-size:cover;
					background-repeat:no-repeat;
					background-position:center center;}
					.col-news h2, .container-news .col-70 h2 {
						color:#BE9F56;
						text-transform:none;
						font-size:19px;
						padding:0;
						margin:30px 0 10px 0;}
						.container-news .col-70 h2 {
						margin:0 0 20px 0;}
	.col-person {
		text-align:right;}
		.col-person .col {
			display:inline-block;
			float:none;
			text-align:left;
			margin:0 0 0 10px;
			width:48.5%;}
			.col-person .col:first-child {
				margin:0;}
				body.page-id-22 .our-location .col-right {
					padding:0 0 0 0;}
					body.page-id-68 .our-location .col-right {
					background:url(images/est1988.png) no-repeat bottom right;
					padding:0 0 40px 0 !important;}
					.cellar-slider {
						margin:0 0 30px 0;}
						.cellar-door .unslider-arrow {
							top:300px !important;}
					.cellar-image {
						width:100%;
						height:500px;
						object-fit:cover;}
						.visit-map {
							height:460px;
							width:100%;
							margin:0 0 50px 0;
						}
						#cellarclub .col-45 ul, .col-terms ul {
							margin:0 0 0 16px;
							padding:0;
							list-style-type:none;}
							#cellarclub .col-45 ul li:before, .col-terms ul li:before { content: "- ";position:absolute;left:0;}
							#cellarclub .main-image {height:450px;object-fit:cover;}
							.col-est-over {padding:0 0 100px 0;}
							.col-est-over .est-over {position:absolute;top:300px;left:40%;}
							.wine-packs img {
								width:100%;
								height:220px;
								object-fit:cover;}
							.wine-packs .col-33 h2 {
								text-transform:none;
								padding:30px 0 10px 0;}
								.cellar-club {padding:50px 0 0 0;}
								.link {color:#BE9F56;font-family:"clarendon-text-pro";text-decoration:none;font-weight:100;text-transform:uppercase;}
								.container-news .col-25 {background:url(images/est1988.png) no-repeat bottom left;padding:0 0 300px 0;background-size:150px;}
/* WooCommerce */

.woocommerce-ordering {display:none;}
li.product .woocommerce-Price-amount, .summary .woocommerce-Price-amount {color:#000;font-size:24px;}
.custom-price-prefix {color:#000;font-size:14px;}
.woocommerce-loop-product__title {font-family: "clarendon-text-pro";text-transform:uppercase;font-weight:100;font-size:18px !important;color:#575756;line-height:1.2;}
.woocommerce-product-details__short-description {min-height:150px;}
.woocommerce ul.products li.product, .woocommerce-page ul.products li.product {width:28.4%;margin:0 3.8% 100px 0;}
.woocommerce ul.products li.last {margin:0 0 100px 0;}
.quantity {float:left;width:25%;}
.button {margin:0 0 0 10px !important;background:#BE9F56 !important;color:#fff;text-transform:uppercase;font-family: "clarendon-text-pro";font-weight:100 !important;border-radius:0 !important;width:calc(75% - 10px);}
.cellar-club-price {clear:both;margin:15px 0 0 0;}
.cellar-club-price a {text-decoration:underline !important;display:inline-block;margin:10px 0 0 0;}
.wine-notes a {display:inline-block;border:2px solid #BE9F56;font-family: "clarendon-text-pro";font-weight:100;width:100%;padding:10px;color:#BE9F56;text-align:center; }
.woocommerce ul.products li.product .price {margin-bottom:15px;}
.woocommerce div.product div.images img {max-height:550px;width:auto;margin:0 auto;}
.additional-insert {text-align:center;border-bottom:2px dotted #BE9F56;margin:0 0 20px 0;padding:0 0 20px 0;}
body.post-type-archive-product h1.page-title {display:none;}
body.single-product .product, body.single-product .summary {float:left !important;}
body.single-product .images {float:right !important;}
body.single-product .tabs {display:none;}
body.single-product .woocommerce-Tabs-panel h2 {display:none;}
body.single-product .summary .product_title {display:none;}
body.single-product h1.page-title {font-family: "clarendon-text-pro";font-weight:100;color:#BE9F56;font-size:24px;text-transform:uppercase;border-bottom:2px dotted #BE9F56;margin:0 0 20px 0;padding:0 0 20px 0;}
body.single-product .quantity, body.single-product .button {width:auto;}
.additional-content {display:inline-block;width:100%;margin:10px 0;}
.additional-content h3 {font-family: "clarendon-text-pro";font-weight:100;color:#BE9F56;font-size:14px;}
body.single-product .wine-notes {width:50%;margin:30px 0;}
body.single-product .product_meta {display:none;}
body.woocommerce-cart .button, body.woocommerce-checkout .button, .woocommerce-message .button {font-family:inherit;width:auto;color:#fff !important;}
.woocommerce-shipping-calculator {display:none;}
body.woocommerce-cart .cart_totals p, body.woocommerce-cart .cart_totals .wcsatt-options-cart, body.woocommerce-cart .cart_totals h2:first-child {display:none;}
body.woocommerce-cart .checkout-button, .coupon .button, .actions .button, .place-order .button {font-family: "clarendon-text-pro" !important;font-weight:100 !important;}
.woocommerce ul.products li.product a img {width:auto;max-height:300px;min-height:300px;object-fit:cover;margin:0 auto;}
/* body.page-id-181 .images, body.page-id-181 h1.page-title, body.page-id-181 .tabs, body.page-id-181 .custom-price-prefix, body.page-id-181 .woocommerce-tabs h2, body.page-id-181 .cellar-club-price, body.page-id-181 .additional-content, body.page-id-181 .wine-notes {display:none;}
body.page-id-181 .summary {width:100% !important;float:none !important;}
body.page-id-181 #product-195 .price {display:none;}
body.page-id-181 #product-195 .details .price {display:block;margin:0;}
body.page-id-181 .woocommerce-Tabs-panel {display:block !important;}
body.page-id-181 .woocommerce-Tabs-panel ul {margin:0 0 0 2px;padding:0;list-style-type:none;}
body.page-id-181 .summary .button {margin:0 !important;font-family:"clarendon-text-pro";font-weight:100;padding:10px 20px;}
body.page-id-181 .summary h1 {text-transform:uppercase;font-size:18px;font-family: "clarendon-text-pro";font-weight:100;}
body.page-id-181 del {text-decoration:none;display:block;opacity:1 !important;}
body.page-id-181 del:before {content:'Standard Price: ';display:inline-block;width:73%;}
body.page-id-181 ins:before {content:'Total Cellar Club Price: ';display:inline-block;width:73%;}
body.page-id-181 p.price .subscription-details, body.page-id-181 span.price .subscription-details {font-weight:bold;}
body.page-id-181 .price {font-size:inherit !important;color:#000 !important;}
body.page-id-181 .woocommerce-Price-amount {font-size:inherit;}
body.page-id-181 .bundled_product_images {display:none;}
body.page-id-181 .bundled_product_summary {padding-left:0;}
body.page-id-181 .bundled_product_excerpt {display:none;}
body.page-id-181 .woocommerce-info {display:none !important;}
body.page-id-181 .woocommerce-Tabs-panel table {margin:0 0 20px 0;}
body.page-id-181 .woocommerce-Tabs-panel table tr td:first-child {width:740px;}
body.page-id-181 .woocommerce-Tabs-panel {margin:0 !important;border-bottom:2px dotted #BE9F56;}
body.page-id-181 .summary p.price {margin:20px 0;}
body.page-id-181 .summary p.price:after {content:'Discount: 20%';display:block;}
body.page-id-181 .bundled_product_optional_checkbox {width:100%;}
body.page-id-181 .bundled_product h4 {margin:0;}
body.page-id-181 .bundled_product label {width:90%;}
body.page-id-181 .bundled_product .cart {float:right;margin:15px 0 0 0;} */
body.page-id-181 table tr td:first-child {
	width:75%;}
body.page-id-181 table tr.dotted {
	
}
body.page-id-181 table tr.dotted td {
	border-top:1px dashed #BE9F56;
	padding-top:10px;}
body.page-id-181 table tr.dotted td:nth-child(2) {
	width:25%;}
.captain-pick {
	display:none;}
body.page-id-181 .wpcf7-form {
	display:block;
	width:75%;
	margin:50px auto;}	
body.page-id-181 .wpcf7-form input, body.page-id-181 .wpcf7-form select, body.page-id-181 .wpcf7-form textarea, body.page-id-592 .wpcf7-form textarea, body.page-id-592 .wpcf7-form select, body.page-id-592 .wpcf7-form input {
	font-family:inherit;
	width:100%;
	padding:10px;
	border:1px solid #ccc;
	border-radius:0;
	margin:5px 0;
	outline:none;}
body.page-id-181 .wpcf7-form select, body.page-id-592 .wpcf7-form select {
	-webkit-appearance:none;}
body.page-id-181 .wpcf7-form .captain-pick input, body.page-id-592 .wpcf7-form .captain-pick input {
	width:auto;
	display:inline-block;}
body.page-id-181 .wpcf7-form .captain-pick input.qty, body.page-id-592 .wpcf7-form .captain-pick input.qty {
	padding:5px;	
	margin-right:10px;
}
body.page-id-181 .wpcf7-form .captain-pick input.total, body.page-id-592 .wpcf7-form .captain-pick input.total {
	border:0;
	border-bottom:1px solid #ccc;
	text-align:center;
	margin-right:10px;}
body.page-id-181 .wpcf7-form input[type=submit], body.page-id-592 .wpcf7-form input[type=submit] {
	background:#BE9F56 !important;
	font-family:"clarendon-text-pro" !important;
	border:0;
	text-transform:uppercase;
	color:#fff;
	padding:20px 0 !important;
	margin:0 !important;
	font-size:inherit !important;
}
body.page-id-181 .wpcf7-form input[type=checkbox], body.page-id-592 .wpcf7-form input[type=checkbox] {
	width:auto;}
body.page-id-181 .wpcf7-form label, body.page-id-592 .wpcf7-form label {font-weight:bold;}

body.page-id-592 input[name=your-first-name], body.page-id-592 input[name=your-last-name] {
	border:0;
	opacity:0.5;
	width:48%;
	float:left;
	padding:0;
}
body.page-id-592 input[name=your-last-name] {
	float:right;
}
body.page-id-592 input[name=your-email] {
	border:0;
	opacity:0.5;
	padding:0;
}
body.woocommerce-account .woocommerce-MyAccount-navigation-link--subscriptions, body.woocommerce-account .woocommerce-MyAccount-navigation-link--downloads,
body.page-id-592 .woocommerce-MyAccount-navigation-link--subscriptions, body.page-id-592 .woocommerce-MyAccount-navigation-link--downloads {
	display:none;
}
body.woocommerce-account .woocommerce-Input {
	padding:10px;
	font-family:inherit;
}
body.woocommerce-account .woocommerce-Button {
	margin:10px 0 !important;}
.woocommerce-orders-table__cell-order-actions a {
	margin:0 0 5px 0 !important;
	width:100%;
	text-align:center;}
header.woocommerce-Address-title {
	position:relative;
	width:auto;
	margin:0 0 20px 0;}
li.product h2 {min-height:70px;}
input[type=submit]:disabled {opacity:0.5;}
footer {
	background:#373636;
	color:#fff;}
footer .logo {
	display:block;
	margin:0 0 30px 0;}
footer i {
	border:1px solid #fff;
	border-radius:50%;
	text-align:center;
	font-size:18px !important;
	width:35px;
	padding:7px 0;
	}
footer span {
	font-family: "clarendon-text-pro";
	color:#BE9F56;
	font-size:16px;
	margin:0;
	padding:0 0 10px 0;
	display:block;}
footer .contact-details {
	width:100%;
	position:absolute;
	z-index:1;
	padding:50px 0 0 0;}
footer .col {
	width:25%;
	float:left;}
footer input {
	width:100%;
	border:0 !important;
	padding:5px !important;
	margin:5px 0;
	border-radius:0 !important;
	outline:none !important;
	font-weight:100;}
footer form {
	position:relative;}
footer form .required {
	position:absolute;
	left:0;
	bottom:10px;}
footer input.split-left {
	width:48%;
	float:left;}
	footer input.split-right {
	width:48%;
	float:right;}
footer input[type=submit] {
	background:#BE9F56;
	width:33%;
	float:right;
	color:#fff;
	font-size:16px;
	font-family:"clarendon-text-pro";
	font-weight:100 !important;
	padding:10px !important;
	transition:all .2s;
}
footer input[type=submit]:hover {
	background:#fff !important;
	color:#BE9F56 !important;}
footer #map {
	width:25%;
	height:460px;
	float:right;
	position:relative;
	z-index:2;}
.copyright {
	padding:10px 0;
	font-weight:100;}
.fa-angle-up {
	position:absolute;
	top:0;
	right:0;
	display:none;}
.product_cat-members-only {
	pointer-events:none;
}
.member-only-click .join-club {
	pointer-events: all;
}
.product_cat-wine-pack-special-offer {
	pointer-events:none;
}
.product_cat-wine-pack-special-offer form, .product_cat-wine-pack-special-offer .join-club {
	pointer-events:all;
}
.product_cat-wine-pack-special-offer .wine-notes {
	display:none;
}
body.page-id-592 .woocommerce-MyAccount-content {
	display:none;
}
body.page-id-592 .woocommerce-MyAccount-navigation {
	float:left;
	width:30%;
}
body.page-id-592 .woocommerce-MyAccount-content-sub {
	float:right;
	width:68%;
} 
.sub-wc-li {
	list-style-type:none;
	background:#f1f2f2;
	margin:20px 0 0 0;
	padding:10px;
	position:relative;
	left:-15px;
}
.sub-wc-li a {
	text-decoration:none;
}
@media (max-width: 575px) { }

@media (max-width: 767px) {
.sticky-header, .menu-primary-nav-container, .unslider-nav {display:none;}
header {padding:0 0 20px 0;z-index:10;}
header .top-bar {border-bottom:1px solid rgba(255,255,255,0.5);padding:0;}
.top-bar .social {text-align:left;padding:0 0 10px 0;width:100%;display:none;}
.top-bar .cart {float:none;width:100%;padding:0 0 0 15px;}
.top-bar .cart .cart-contents {margin:0 0 0 0;padding:0;border:0;display:block;}
.top-bar .cart i {float:left;margin:0 10px 0 0;}
header .logo {margin:20px auto 0 auto;display:block;}
#responsive-menu-container {top:48px !important;}
#responsive-menu-title-image {margin-right:0 !important;}
#responsive-menu-additional-content i {font-size:20px !important;width:30px !important;}
.cart-container, .list-container {width:40%;float:left;padding:14px 0;border-right:1px solid rgba(255,255,255,0.5);font-size:11px;line-height:20px;}
.list-container {padding-left:10px;}
.container {width:100%;}
body.home .banner {margin-top:148px;height:calc(100vh - 148px) !important;transition:height 9999s;}
.banner {margin-top:201px;}
.home-panel-container {background-position:bottom right !important;background-size:cover;padding:50px 0 170px 0;border-bottom:50px solid #FAF5F0;}
.internal-container, .panel, .vineyard-practices {padding:20px;}
.our-family {padding:0;}
.col-50, .col-45, .col-70, .col-25, .col-33, .col-news {width:100%;}
.col-news {padding:20px;position:relative;min-height:0;margin:0;}
.col-news .btn {position:relative;bottom:0;}
.col-right {float:none;clear:both;}
.col-middle, .col-news:nth-child(3n + 2) {margin:0;}
.container-news .col-25 {padding:20px;background:none;}
.container-news .col-70 {padding:0 20px;}
.container-news .main-image {padding:0;}
.cellar-door .unslider-arrow {top:170px !important;}
.wine-packs .col {margin:10px 0;}
.wine-packs .col-33 h2 {padding:10px 0;}
body.blog .banner, body.single .banner, body.woocommerce .banner, body.woocommerce-page .banner {margin-top:201px;}
.passion-cricket .col-right img {margin:0;width:25%;}
.our-location .col-right {padding:0;background:none;}
.split-col {column-count:1;}
.banner h1 {width:100%;padding:0 20px;left:0;transform:translateX(0);word-wrap:break-word;transform:translateY(-50%);}
.boxes {height:auto;padding:0 0 20px 0;}
.boxes .box {width:100%;position:relative;top:0;left:0;right:0;height:250px;}
.news-image {width:100%;margin:0 0 20px 0;height:350px;}
.news-text {float:none;width:100%;padding:20px;}
.col-est-over {padding:0 0 20px 0;}
.col-est-over .main-image {margin:20px 0 0 0;}
.intro {width:100%;padding:20px;}
.intro h2 {line-height:1.4;}
footer .contact-details {position:relative;padding:20px;}
footer .logo {margin:20px 0;width:50%;}
footer .col {width:50%;float:left;margin:20px 0;}
footer .col-list {clear:both;width:100%;}
footer #map {width:100%;float:none;}
.copyright {text-align:center;}
.boxes .box:hover .overlay {opacity:0 !important;}
.fa-angle-up {display:block;}
.woocommerce ul.products li.product, .woocommerce-page ul.products li.product {width:100%;margin:0;padding:0 20px;}
body.single-product h1.page-title, .woocommerce div.product div.summary {padding:0 20px;}
.woocommerce div.product div.summary {margin:0;}
.woocommerce div.product div.images {margin:0;}
body.single-product .wine-notes {width:100%;}
body.page-id-181 .woocommerce-Tabs-panel table tr td:first-child {width:50%;}
body.page-id-181 .bundled_product label {width:100%;}
form.checkout {padding:0 20px;}
#coupon_code {margin:0;}
.button {margin:0 !important;}
.cart_totals h2 {padding:0 20px;}
body.woocommerce-account .banner h1 {text-align:left;}
.woocommerce-MyAccount-navigation ul {margin:0 0 20px 20px;padding:0;}
}

@media (min-width: 768px) and (max-width:1199px) { }
	