@charset "UTF-8";
/*! HTML5 Reset */
/*-------------------------------------------------------------------------------
	We have learned much from/been inspired by/taken code where offered from:

	Eric Meyer			:: http://meyerweb.com
	HTML5 Doctor			:: http://html5doctor.com
	and the HTML5 Boilerplate	:: http://html5boilerplate.com

-------------------------------------------------------------------------------*/
/* line 12, scss/partials/_reset.scss */
html, body, body div, span, object, iframe, h1, h2, h3, h4, h5, .description-modal p, .our-wines-detail .overview p, .producers-detail .producer-description p, .about .about-content p, h6, .footer-links, .our-wines-legend, .vegan-toggle-wrapper, .our-wines-detail .wine-information dt, .our-wines-detail .overview .more, .producers-detail .producer-description .more, .news-events-sidebar .widget-categories a, .news-events-sidebar .widget-authors a, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, .breadcrumb, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, figure, footer, header, menu, nav, section, time, mark, audio, video, details, summary {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font-weight: normal;
  vertical-align: baseline;
  background: transparent;
}

/* line 22, scss/partials/_reset.scss */
article, aside, figure, footer, header, nav, section, details, summary {
  display: block;
}

/* Handle box-sizing while better addressing child elements:
	http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
/* line 28, scss/partials/_reset.scss */
html {
  box-sizing: border-box;
}

/* line 32, scss/partials/_reset.scss */
*,
*:before,
*:after {
  box-sizing: inherit;
}

/* resetting the default cursor: https://gist.github.com/murtaugh/5247154 */
/* line 39, scss/partials/_reset.scss */
html,
body {
  cursor: default;
}

/* line 44, scss/partials/_reset.scss */
code {
  cursor: text;
}

/*
textarea and input[type="text"] already receive
"cursor: text" via browsers' base stylesheets
*/
/* line 52, scss/partials/_reset.scss */
a,
label,
button,
input[type="radio"],
input[type="submit"],
input[type="checkbox"],
.clickable,
input[type="button"],
input[type="file"] {
  cursor: pointer;
}

/* line 64, scss/partials/_reset.scss */
button[disabled],
input[disabled] {
  cursor: default;
}

/* Responsive images and other embedded objects
   Note: keeping IMG here will cause problems if you're using foreground images as sprites.
   If this default setting for images is causing issues, you might want to replace it with a .responsive class instead. */
/* line 72, scss/partials/_reset.scss */
img,
object,
embed {
  max-width: 100%;
}

/* force a vertical scrollbar to prevent a jumpy page */
/* line 79, scss/partials/_reset.scss */
html {
  overflow-y: scroll;
}

/* we use a lot of ULs that aren't bulleted.
	don't forget to restore the bullets within content. */
/* line 85, scss/partials/_reset.scss */
ul {
  list-style: none;
}

/* line 89, scss/partials/_reset.scss */
blockquote, q {
  quotes: none;
}

/* line 93, scss/partials/_reset.scss */
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

/* line 100, scss/partials/_reset.scss */
a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* line 108, scss/partials/_reset.scss */
del {
  text-decoration: line-through;
}

/* line 112, scss/partials/_reset.scss */
abbr[title], dfn[title] {
  border-bottom: 1px dotted #000;
  cursor: help;
}

/* tables still need cellspacing="0" in the markup */
/* line 118, scss/partials/_reset.scss */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* line 123, scss/partials/_reset.scss */
th {
  font-weight: bold;
  vertical-align: bottom;
}

/* line 128, scss/partials/_reset.scss */
td {
  font-weight: normal;
  vertical-align: top;
}

/* line 133, scss/partials/_reset.scss */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

/* line 142, scss/partials/_reset.scss */
input, select {
  vertical-align: middle;
}

/* line 146, scss/partials/_reset.scss */
pre {
  white-space: pre;
  /* CSS2 */
  white-space: pre-wrap;
  /* CSS 2.1 */
  white-space: pre-line;
  /* CSS 3 (and 2.1 as well, actually) */
  word-wrap: break-word;
  /* IE */
}

/* line 153, scss/partials/_reset.scss */
input[type="radio"] {
  vertical-align: text-bottom;
}

/* line 157, scss/partials/_reset.scss */
input[type="checkbox"] {
  vertical-align: bottom;
}

/* line 161, scss/partials/_reset.scss */
.ie7 input[type="checkbox"] {
  vertical-align: baseline;
}

/* line 165, scss/partials/_reset.scss */
.ie6 input {
  vertical-align: text-bottom;
}

/* line 169, scss/partials/_reset.scss */
select, input, textarea {
  font: 99% sans-serif;
}

/* line 173, scss/partials/_reset.scss */
table {
  font-size: inherit;
  font: 100%;
}

/* line 178, scss/partials/_reset.scss */
small, .breadcrumb {
  font-size: 85%;
}

/* line 182, scss/partials/_reset.scss */
strong {
  font-weight: bold;
}

/* line 186, scss/partials/_reset.scss */
td, td img {
  vertical-align: top;
}

/* Make sure sup and sub don't mess with your line-heights http://gist.github.com/413930 */
/* line 191, scss/partials/_reset.scss */
sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
}

/* line 197, scss/partials/_reset.scss */
sup {
  top: -0.5em;
}

/* line 201, scss/partials/_reset.scss */
sub {
  bottom: -0.25em;
}

/* standardize any monospaced elements */
/* line 206, scss/partials/_reset.scss */
pre, code, kbd, samp {
  font-family: monospace, sans-serif;
}

/* Webkit browsers add a 2px margin outside the chrome of form elements */
/* line 211, scss/partials/_reset.scss */
button, input, select, textarea {
  margin: 0;
}

/* make buttons play nice in IE */
/* line 216, scss/partials/_reset.scss */
button,
input[type=button] {
  width: auto;
  overflow: visible;
}

/* scale images in IE7 more attractively */
/* line 222, scss/partials/_reset.scss */
.ie7 img {
  -ms-interpolation-mode: bicubic;
}

/* prevent BG image flicker upon hover
   (commented out as usage is rare, and the filter syntax messes with some pre-processors)
.ie6 html {filter: expression(document.execCommand("BackgroundImageCache", false, true));}
*/
/** Micro clearfix from:  http://nicolasgallagher.com/micro-clearfix-hack/
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    contenteditable attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that are clearfixed.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */
/* line 240, scss/partials/_reset.scss */
.cf:before,
.cf:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */
}

/* line 246, scss/partials/_reset.scss */
.cf:after {
  clear: both;
}

/**
 * For IE 6/7 only
 * Include this rule to trigger hasLayout and contain floats.
 */
/* line 254, scss/partials/_reset.scss */
.cf {
  *zoom: 1;
}

/* text styles */
/* line 260, scss/partials/_reset.scss */
h1, h2, h3, h4, h5, .description-modal p, .our-wines-detail .overview p, .producers-detail .producer-description p, .about .about-content p, p {
  margin: 0 0 15px 0;
}

/* line 264, scss/partials/_reset.scss */
h1 {
  font-size: 36px;
}

/* line 268, scss/partials/_reset.scss */
h2 {
  font-size: 24px;
}

/* line 272, scss/partials/_reset.scss */
h3 {
  font-size: 18px;
}

/* line 276, scss/partials/_reset.scss */
h4 {
  font-size: 14px;
}

/* line 280, scss/partials/_reset.scss */
h5, .description-modal p, .our-wines-detail .overview p, .producers-detail .producer-description p, .about .about-content p {
  font-size: 12px;
}

/* line 284, scss/partials/_reset.scss */
p {
  font-size: 14px;
}

@font-face {
  font-family: "ITC Avant Garde Gothic W01_R1";
  src: url("../fonts/d042c69d-2a74-4689-9915-3c34306a3b76.eot?#iefix") format("eot");
}
@font-face {
  font-family: "ITC Avant Garde Gothic W01";
  src: url("../fonts/d042c69d-2a74-4689-9915-3c34306a3b76.eot?#iefix");
  src: url("../fonts/d042c69d-2a74-4689-9915-3c34306a3b76.eot?#iefix") format("eot"), url("../fonts/0312a390-01c7-423e-ad0c-b5b4f25229af.woff") format("woff"), url("../fonts/16e3b729-9cc0-490e-9de3-d678f36aba08.ttf") format("truetype"), url("../fonts/2c90e8aa-95a7-463c-956c-c7fac7412d35.svg#2c90e8aa-95a7-463c-956c-c7fac7412d35") format("svg");
  font-weight: 100;
  font-style: Regular;
}
@font-face {
  font-family: "ITC Avant Garde Gothic W01_n5";
  src: url("../fonts/b74e5f86-4477-435a-abdf-32d8215f21bc.eot?#iefix") format("eot");
}
@font-face {
  font-family: "ITC Avant Garde Gothic W01";
  src: url("../fonts/b74e5f86-4477-435a-abdf-32d8215f21bc.eot?#iefix");
  src: url("../fonts/b74e5f86-4477-435a-abdf-32d8215f21bc.eot?#iefix") format("eot"), url("../fonts/c18aee57-7585-4a8b-9a1c-69d226301d73.woff") format("woff"), url("../fonts/44ccbb2b-0fbc-4d95-b1da-0aa73bd26fb0.ttf") format("truetype"), url("../fonts/f2de529c-11d2-43b7-be7c-05c5aaeaf133.svg#f2de529c-11d2-43b7-be7c-05c5aaeaf133") format("svg");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "L Baskerville W01_n4";
  src: url("../fonts/8dc59876-75a4-4e80-bd1a-735d5f043beb.eot?#iefix") format("eot");
}
@font-face {
  font-family: "L Baskerville W01";
  src: url("../fonts/8dc59876-75a4-4e80-bd1a-735d5f043beb.eot?#iefix");
  src: url("../fonts/8dc59876-75a4-4e80-bd1a-735d5f043beb.eot?#iefix") format("eot"), url("../fonts/9df317a3-a79e-422e-b4e2-35ccd29cd5b7.woff") format("woff"), url("../fonts/32d18512-4cc1-4c1c-a041-e595f26d1b96.ttf") format("truetype"), url("../fonts/cf682c43-15a5-45c0-934e-8f899e561e1f.svg#cf682c43-15a5-45c0-934e-8f899e561e1f") format("svg");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "L Baskerville W01_i4";
  src: url("../fonts/f0bf387a-6de1-402c-a63c-04664681e924.eot?#iefix") format("eot");
}
@font-face {
  font-family: "L Baskerville W01";
  src: url("../fonts/f0bf387a-6de1-402c-a63c-04664681e924.eot?#iefix");
  src: url("../fonts/f0bf387a-6de1-402c-a63c-04664681e924.eot?#iefix") format("eot"), url("../fonts/11514d41-5158-4a68-8f27-9202cc7fc001.woff") format("woff"), url("../fonts/b62c4ed0-7687-4a1b-840d-00a34f2d16a2.ttf") format("truetype"), url("../fonts/ede983d0-3356-4a76-956b-4131479e2d55.svg#ede983d0-3356-4a76-956b-4131479e2d55") format("svg");
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: "L Baskerville W01_n7";
  src: url("../fonts/06fefa4f-b6d4-49ed-9c33-03c532011bb4.eot?#iefix") format("eot");
}
@font-face {
  font-family: "L Baskerville W01";
  src: url("../fonts/06fefa4f-b6d4-49ed-9c33-03c532011bb4.eot?#iefix");
  src: url("../fonts/06fefa4f-b6d4-49ed-9c33-03c532011bb4.eot?#iefix") format("eot"), url("../fonts/090975f2-f4a5-4ef8-b325-d30889e6e98f.woff") format("woff"), url("../fonts/00558c16-15ad-4c66-8683-e08e2dc43e87.ttf") format("truetype"), url("../fonts/f73bbd27-6f15-4f5d-b525-1da700506d34.svg#f73bbd27-6f15-4f5d-b525-1da700506d34") format("svg");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "L Baskerville W01_i7";
  src: url("../fonts/3b6c5a26-3a8d-4634-bb5b-95a75be700cb.eot?#iefix") format("eot");
}
@font-face {
  font-family: "L Baskerville W01";
  src: url("../fonts/3b6c5a26-3a8d-4634-bb5b-95a75be700cb.eot?#iefix");
  src: url("../fonts/3b6c5a26-3a8d-4634-bb5b-95a75be700cb.eot?#iefix") format("eot"), url("../fonts/8f505867-4925-4c10-86d9-b81d1d1f089a.woff") format("woff"), url("../fonts/6082db1f-ae14-4e50-bda8-387f9f6b17e0.ttf") format("truetype"), url("../fonts/40688de6-bd53-4ca7-95c8-0a5fb0abc541.svg#40688de6-bd53-4ca7-95c8-0a5fb0abc541") format("svg");
  font-weight: 700;
  font-style: italic;
}
/** New Fonts **/
@font-face {
  font-family: "basic-sans", sans-serif;
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "basic-sans", sans-serif;
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: "basic-sans", sans-serif;
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "basic-sans", sans-serif;
  font-weight: 700;
  font-style: italic;
}
@font-face {
  font-family: "cormorant-garamond", serif;
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "cormorant-garamond", serif;
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: "cormorant-garamond", serif;
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "cormorant-garamond", serif;
  font-weight: 700;
  font-style: italic;
}
/* line 1, scss/partials/_typography.scss */
.avant-garde-light, h1, .h1, .search-form input[type=text] {
  font-family: "basic-sans", sans-serif;
  font-weight: 100;
}

/* line 5, scss/partials/_typography.scss */
.avant-garde-medium, h3, .h3, .contact-form .contact-type .gfield_label, h6, .footer-links, .our-wines-legend, .vegan-toggle-wrapper, .our-wines-detail .wine-information dt, .our-wines-detail .overview .more, .producers-detail .producer-description .more, .news-events-sidebar .widget-categories a, .news-events-sidebar .widget-authors a, .h6, .producers-detail-sidebar .distributor-callout form .field select, .contact-form .gfield_label, .contact-form .ginput_complex label, .contact-form input[type=submit], .contact-form .contact-type .gfield_radio label, .facetwp-filter .customselect-feedback, .pagination li, .description-modal-button, #header .container .nav, .social-widget .link, .home-recent-announce .home-recent-announce-content .button, .home-our-philosophy .button, .home-featured-producer h3, .home-featured-producer .wine-info li, .home-featured-producer .button, .home-recent-news .button, .instagram-slider #sb_instagram #sbi_load .sbi_follow_btn a, .home-ad .home-ad__button-container .home-ad__button, .selected-filters ul li, .our-wines-detail-back .button, .producers-detail-sidebar .distributor-callout form input[type=submit], .portfolios .portfolio .content .button, .content-distributors-map .tt_sm .distributor-map-info .distributor-website-btn, .content-distributors-map .button-container .button, .all-distributors-grid .facetwp-facet.facetwp-facet-load_more.facetwp-type-pager .facetwp-load-more, .all-distributors-grid .all-distributors-grid__facet-wrapper .facetwp-template .card-distributor .button, .about-news .all-posts .button {
  font-family: "basic-sans", sans-serif;
  font-weight: 500;
}

/* line 10, scss/partials/_typography.scss */
p {
  font-size: 16px;
  font-size: 1.6rem;
}

/* line 14, scss/partials/_typography.scss */
h1, .h1 {
  font-size: 32px;
  font-size: 3.2rem;
}
@media (min-width: 580px) {
  /* line 14, scss/partials/_typography.scss */
  h1, .h1 {
    font-size: 63px;
    font-size: 6.3rem;
  }
}

/* line 22, scss/partials/_typography.scss */
h2, .h2 {
  font-size: 24px;
  font-size: 2.4rem;
}
@media (min-width: 580px) {
  /* line 22, scss/partials/_typography.scss */
  h2, .h2 {
    font-size: 36px;
    font-size: 3.6rem;
  }
}

/* line 29, scss/partials/_typography.scss */
h3, .h3, .contact-form .contact-type .gfield_label {
  font-size: 12px;
  font-size: 1.2rem;
}
@media (min-width: 580px) {
  /* line 29, scss/partials/_typography.scss */
  h3, .h3, .contact-form .contact-type .gfield_label {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

/* line 37, scss/partials/_typography.scss */
h4, .h4 {
  font-size: 18px;
  font-size: 1.8rem;
}
@media (min-width: 580px) {
  /* line 37, scss/partials/_typography.scss */
  h4, .h4 {
    font-size: 28px;
    font-size: 2.8rem;
  }
}

/* line 44, scss/partials/_typography.scss */
h5, .description-modal p, .our-wines-detail .overview p, .producers-detail .producer-description p, .about .about-content p, .h5 {
  font-size: 16px;
  font-size: 1.6rem;
}
@media (min-width: 580px) {
  /* line 44, scss/partials/_typography.scss */
  h5, .description-modal p, .our-wines-detail .overview p, .producers-detail .producer-description p, .about .about-content p, .h5 {
    font-size: 20px;
    font-size: 2rem;
  }
}

/* line 51, scss/partials/_typography.scss */
h6, .footer-links, .our-wines-legend, .vegan-toggle-wrapper, .our-wines-detail .wine-information dt, .our-wines-detail .overview .more, .producers-detail .producer-description .more, .news-events-sidebar .widget-categories a, .news-events-sidebar .widget-authors a, .h6, .producers-detail-sidebar .distributor-callout form .field select, .contact-form .gfield_label, .contact-form .ginput_complex label, .contact-form input[type=submit], .contact-form .contact-type .gfield_radio label, .facetwp-filter .customselect-feedback {
  font-size: 10px;
  font-size: 1rem;
}
@media (min-width: 580px) {
  /* line 51, scss/partials/_typography.scss */
  h6, .footer-links, .our-wines-legend, .vegan-toggle-wrapper, .our-wines-detail .wine-information dt, .our-wines-detail .overview .more, .producers-detail .producer-description .more, .news-events-sidebar .widget-categories a, .news-events-sidebar .widget-authors a, .h6, .producers-detail-sidebar .distributor-callout form .field select, .contact-form .gfield_label, .contact-form .ginput_complex label, .contact-form input[type=submit], .contact-form .contact-type .gfield_radio label, .facetwp-filter .customselect-feedback {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

/* line 59, scss/partials/_typography.scss */
h6.light, .light.footer-links, .light.our-wines-legend, .light.vegan-toggle-wrapper, .our-wines-detail .wine-information dt.light, .our-wines-detail .overview .light.more, .producers-detail .producer-description .light.more, .news-events-sidebar .widget-categories a.light, .news-events-sidebar .widget-authors a.light, .h6-light {
  /*@extend .avant-garde-light;
  @include font-size(1.0);
  @include breakpoint ($small) {
  	@include font-size(1.2);
  }*/
}

/* line 67, scss/partials/_typography.scss */
strong {
  font-weight: bold;
}

/* line 71, scss/partials/_typography.scss */
small, .breadcrumb {
  font-size: 12px;
  font-size: 1.2rem;
}
@media (min-width: 580px) {
  /* line 71, scss/partials/_typography.scss */
  small, .breadcrumb {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license - http://opensource.org/licenses/MIT

Copyright (c) 2014 Daniel Eden
*/
/* line 9, scss/partials/_animate.scss */
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

/* line 16, scss/partials/_animate.scss */
.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

/* line 21, scss/partials/_animate.scss */
.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

@-webkit-keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
@keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
/* line 82, scss/partials/_animate.scss */
.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  -ms-transform-origin: center bottom;
  transform-origin: center bottom;
}

@-webkit-keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
@keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
/* line 110, scss/partials/_animate.scss */
.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes pulse {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
/* line 151, scss/partials/_animate.scss */
.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-keyframes rubberBand {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes rubberBand {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
/* line 230, scss/partials/_animate.scss */
.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

@-webkit-keyframes shake {
  0%, 100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
@keyframes shake {
  0%, 100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
/* line 269, scss/partials/_animate.scss */
.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  100% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  100% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
/* line 328, scss/partials/_animate.scss */
.swing {
  -webkit-transform-origin: top center;
  -ms-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

@-webkit-keyframes tada {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes tada {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
/* line 390, scss/partials/_animate.scss */
.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  0% {
    -webkit-transform: none;
    transform: none;
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes wobble {
  0% {
    -webkit-transform: none;
    transform: none;
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
/* line 471, scss/partials/_animate.scss */
.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
/* line 556, scss/partials/_animate.scss */
.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
}

@-webkit-keyframes bounceInDown {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes bounceInDown {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
/* line 631, scss/partials/_animate.scss */
.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes bounceInLeft {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
/* line 704, scss/partials/_animate.scss */
.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes bounceInRight {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
/* line 777, scss/partials/_animate.scss */
.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInUp {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
/* line 850, scss/partials/_animate.scss */
.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
/* line 893, scss/partials/_animate.scss */
.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
}

@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
/* line 938, scss/partials/_animate.scss */
.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
/* line 971, scss/partials/_animate.scss */
.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
/* line 1004, scss/partials/_animate.scss */
.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
/* line 1047, scss/partials/_animate.scss */
.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* line 1062, scss/partials/_animate.scss */
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
/* line 1095, scss/partials/_animate.scss */
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
/* line 1128, scss/partials/_animate.scss */
.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-10%, 0, 0);
    transform: translate3d(-10%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-10%, 0, 0);
    transform: translate3d(-10%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
/* line 1161, scss/partials/_animate.scss */
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
/* line 1194, scss/partials/_animate.scss */
.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
/* line 1227, scss/partials/_animate.scss */
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
/* line 1260, scss/partials/_animate.scss */
.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 20%, 0);
    transform: translate3d(0, 20%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 30%, 0);
    transform: translate3d(0, 30%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
/* line 1293, scss/partials/_animate.scss */
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
/* line 1326, scss/partials/_animate.scss */
.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/* line 1341, scss/partials/_animate.scss */
.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes fadeOutDown {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
/* line 1370, scss/partials/_animate.scss */
.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
/* line 1399, scss/partials/_animate.scss */
.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes fadeOutLeft {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
/* line 1428, scss/partials/_animate.scss */
.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
/* line 1457, scss/partials/_animate.scss */
.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes fadeOutRight {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
/* line 1486, scss/partials/_animate.scss */
.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
/* line 1515, scss/partials/_animate.scss */
.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes fadeOutUp {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
/* line 1544, scss/partials/_animate.scss */
.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
/* line 1573, scss/partials/_animate.scss */
.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

@-webkit-keyframes flip {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
@keyframes flip {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
/* line 1652, scss/partials/_animate.scss */
.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}

@-webkit-keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
/* line 1725, scss/partials/_animate.scss */
.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

@-webkit-keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
/* line 1798, scss/partials/_animate.scss */
.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
/* line 1843, scss/partials/_animate.scss */
.flipOutX {
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
/* line 1890, scss/partials/_animate.scss */
.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
}

@-webkit-keyframes lightSpeedIn {
  0% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes lightSpeedIn {
  0% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
/* line 1951, scss/partials/_animate.scss */
.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOut {
  0% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOut {
  0% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
/* line 1982, scss/partials/_animate.scss */
.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

@-webkit-keyframes rotateIn {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateIn {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
/* line 2025, scss/partials/_animate.scss */
.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}

@-webkit-keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
/* line 2066, scss/partials/_animate.scss */
.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
/* line 2107, scss/partials/_animate.scss */
.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
/* line 2148, scss/partials/_animate.scss */
.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
/* line 2189, scss/partials/_animate.scss */
.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
@keyframes rotateOut {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
/* line 2226, scss/partials/_animate.scss */
.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
/* line 2263, scss/partials/_animate.scss */
.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
/* line 2300, scss/partials/_animate.scss */
.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
/* line 2337, scss/partials/_animate.scss */
.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
/* line 2374, scss/partials/_animate.scss */
.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}

@-webkit-keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  100% {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
@keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  100% {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
/* line 2447, scss/partials/_animate.scss */
.hinge {
  -webkit-animation-name: hinge;
  animation-name: hinge;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
/* line 2482, scss/partials/_animate.scss */
.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
@keyframes rollOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
/* line 2513, scss/partials/_animate.scss */
.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
/* line 2542, scss/partials/_animate.scss */
.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

@-webkit-keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
/* line 2583, scss/partials/_animate.scss */
.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
/* line 2624, scss/partials/_animate.scss */
.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
/* line 2665, scss/partials/_animate.scss */
.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
/* line 2706, scss/partials/_animate.scss */
.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}

@-webkit-keyframes zoomOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  100% {
    opacity: 0;
  }
}
@keyframes zoomOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  100% {
    opacity: 0;
  }
}
/* line 2743, scss/partials/_animate.scss */
.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
/* line 2788, scss/partials/_animate.scss */
.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
}

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}
/* line 2825, scss/partials/_animate.scss */
.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
}

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}
/* line 2862, scss/partials/_animate.scss */
.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
}

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
/* line 2907, scss/partials/_animate.scss */
.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
}

@-webkit-keyframes slideInDown {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    visibility: visible;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes slideInDown {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    visibility: visible;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
/* line 2938, scss/partials/_animate.scss */
.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
  0% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    visibility: visible;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes slideInLeft {
  0% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    visibility: visible;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
/* line 2969, scss/partials/_animate.scss */
.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  0% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    visibility: visible;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes slideInRight {
  0% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    visibility: visible;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
/* line 3000, scss/partials/_animate.scss */
.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

@-webkit-keyframes slideInUp {
  0% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    visibility: visible;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes slideInUp {
  0% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    visibility: visible;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
/* line 3031, scss/partials/_animate.scss */
.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

@-webkit-keyframes slideOutDown {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    visibility: hidden;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
}
@keyframes slideOutDown {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    visibility: hidden;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
}
/* line 3062, scss/partials/_animate.scss */
.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}

@-webkit-keyframes slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    visibility: hidden;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@keyframes slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    visibility: hidden;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
/* line 3093, scss/partials/_animate.scss */
.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    visibility: hidden;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}
@keyframes slideOutRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    visibility: hidden;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}
/* line 3124, scss/partials/_animate.scss */
.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    visibility: hidden;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}
@keyframes slideOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    visibility: hidden;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}
/* line 3155, scss/partials/_animate.scss */
.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

/* line 1, scss/partials/_general.scss */
html {
  font-size: 62.5%;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* line 7, scss/partials/_general.scss */
body {
  background: #fff;
  color: #3B3D44;
  font-family: "cormorant-garamond", serif;
  font-size: 16px;
  font-size: 1.6rem;
}

/* line 14, scss/partials/_general.scss */
form, input, textarea, select, button {
  font-family: "cormorant-garamond", serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

/* line 20, scss/partials/_general.scss */
.clear {
  clear: both;
}

/* line 24, scss/partials/_general.scss */
.container {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  max-width: 90%;
}
/* line 12, scss/susy-idflood/susy/output/support/_clearfix.scss */
.container:after {
  content: " ";
  display: block;
  clear: both;
}

/* line 29, scss/partials/_general.scss */
.breadcrumb {
  color: #979797;
  margin-bottom: 10px;
}
/* line 33, scss/partials/_general.scss */
.breadcrumb li {
  display: inline-block;
  padding-left: 4px;
}
/* line 36, scss/partials/_general.scss */
.breadcrumb li:before {
  content: '/';
  padding-right: 6px;
}
/* line 40, scss/partials/_general.scss */
.breadcrumb li:first-child {
  padding: 0;
}
/* line 42, scss/partials/_general.scss */
.breadcrumb li:first-child:before {
  content: none;
}
/* line 47, scss/partials/_general.scss */
.breadcrumb a {
  color: #979797;
  text-decoration: none;
}
/* line 50, scss/partials/_general.scss */
.breadcrumb a:hover {
  text-decoration: underline;
}

/* line 56, scss/partials/_general.scss */
.page-header {
  color: #3B3D44;
  margin-bottom: 35px;
  letter-spacing: 3px;
  text-transform: uppercase;
}
/* line 61, scss/partials/_general.scss */
.page-header:after {
  background: #EBEBEB;
  content: '';
  display: block;
  height: 5px;
  width: 71px;
}
/* line 69, scss/partials/_general.scss */
.page-header.page-header-shrink {
  font-size: 30px;
  font-size: 3rem;
}
@media (min-width: 580px) {
  /* line 69, scss/partials/_general.scss */
  .page-header.page-header-shrink {
    font-size: 43px;
    font-size: 4.3rem;
  }
}

/* line 78, scss/partials/_general.scss */
.page-description {
  color: #3B3D44;
  line-height: 1.4em;
  font-size: 20px;
  font-size: 2rem;
}
/* line 83, scss/partials/_general.scss */
.page-description ul {
  margin-left: 40px;
  margin-top: 40px;
  list-style: disc;
}
/* line 89, scss/partials/_general.scss */
.page-description ul li {
  font-size: 20px;
  font-size: 2rem;
  margin-bottom: 10px;
}
/* line 94, scss/partials/_general.scss */
.page-description ul li a {
  color: #3B3D44;
}

/* line 102, scss/partials/_general.scss */
.pagination {
  color: #3B3D44;
  font-size: 14px;
  font-size: 1.4rem;
}
/* line 106, scss/partials/_general.scss */
.pagination .facetwp-page {
  padding: 0;
  margin-right: 0;
}
@media (min-width: 580px) {
  /* line 106, scss/partials/_general.scss */
  .pagination .facetwp-page {
    padding: 0 4px;
  }
}
/* line 114, scss/partials/_general.scss */
.pagination .facetwp-page-number {
  display: none;
}
@media (min-width: 580px) {
  /* line 114, scss/partials/_general.scss */
  .pagination .facetwp-page-number {
    display: inline-block;
  }
}
/* line 120, scss/partials/_general.scss */
.pagination li {
  display: inline-block;
  padding: 0 10px;
  text-transform: uppercase;
}
/* line 126, scss/partials/_general.scss */
.pagination a {
  color: #999;
  display: inline-block;
  padding-bottom: 2px;
  text-decoration: none;
}
/* line 131, scss/partials/_general.scss */
.pagination a.active {
  border-bottom: 2px solid #ccc;
  color: #3B3D44;
  text-decoration: none;
}
@media (min-width: 580px) {
  /* line 138, scss/partials/_general.scss */
  .pagination a:hover {
    border-bottom: 2px solid #ccc;
    color: #3B3D44;
    text-decoration: none;
  }
}
/* line 145, scss/partials/_general.scss */
.pagination .previous {
  background: url("../img/icon_arrow_sm_l_gray.svg") left center no-repeat;
  height: 9px;
  padding: 0;
  width: 32px;
}
/* line 150, scss/partials/_general.scss */
.pagination .previous.active {
  border: 0;
}
@media (min-width: 580px) {
  /* line 155, scss/partials/_general.scss */
  .pagination .previous:hover {
    border: 0;
  }
}
/* line 160, scss/partials/_general.scss */
.pagination .next {
  background: url("../img/icon_arrow_sm_r_gray.svg") right center no-repeat;
  height: 9px;
  padding: 0;
  width: 32px;
}
/* line 165, scss/partials/_general.scss */
.pagination .next.active {
  border: 0;
}
@media (min-width: 580px) {
  /* line 160, scss/partials/_general.scss */
  .pagination .next {
    display: inline-block;
  }
  /* line 171, scss/partials/_general.scss */
  .pagination .next:hover {
    border: 0;
  }
}
/* line 176, scss/partials/_general.scss */
.pagination .disabled {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  opacity: 0.5;
}
/* line 179, scss/partials/_general.scss */
.pagination p {
  font-style: italic;
  text-align: center;
  margin-top: 20px;
}

/* line 186, scss/partials/_general.scss */
.description-modal {
  background: #fff;
  background: rgba(255, 255, 255, 0.95);
  display: none;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 999;
}
/* line 196, scss/partials/_general.scss */
.description-modal .page-header {
  margin-bottom: 35px !important;
  padding: 0 !important;
}
/* line 199, scss/partials/_general.scss */
.description-modal .page-header:after {
  display: block !important;
}
/* line 203, scss/partials/_general.scss */
.description-modal .column-main {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  float: left;
  padding-left: 0.83333%;
  padding-right: 0.83333%;
}
@media (min-width: 580px) {
  /* line 203, scss/partials/_general.scss */
  .description-modal .column-main {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 66.66667%;
    float: left;
    padding-left: 0.83333%;
    padding-right: 0.83333%;
  }
}
/* line 210, scss/partials/_general.scss */
.description-modal h3 {
  margin-bottom: 15px !important;
}
/* line 212, scss/partials/_general.scss */
.description-modal h3:after {
  display: none !important;
}
/* line 216, scss/partials/_general.scss */
.description-modal p {
  line-height: 1.4em;
}

/* line 221, scss/partials/_general.scss */
.description-modal-button {
  border: 1px solid #A3A6AC;
  color: #A3A6AC;
  display: inline-block;
  letter-spacing: 2px;
  margin-top: 40px;
  padding: 1.5em 4em;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 12px;
  font-size: 1.2rem;
  float: none;
}
@media (min-width: 1024px) {
  /* line 221, scss/partials/_general.scss */
  .description-modal-button {
    position: relative;
    overflow: hidden;
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  /* line 235, scss/partials/_general.scss */
  .description-modal-button:hover {
    background: #A3A6AC;
    color: #fff;
  }
  /* line 28, scss/partials/_mixins.scss */
  .description-modal-button:hover:after {
    top: 0;
  }
  /* line 32, scss/partials/_mixins.scss */
  .description-modal-button:after {
    background: #A3A6AC;
    content: '';
    display: block;
    height: 100%;
    left: 0;
    position: absolute;
    top: 100%;
    width: 100%;
    z-index: -1;
    -moz-transition: top 400ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
    -o-transition: top 400ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
    -webkit-transition: top 400ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
    transition: top 400ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
  }
}

/* line 244, scss/partials/_general.scss */
.button-hover-apply:hover {
  background: transparent !important;
}

/* line 250, scss/partials/_general.scss */
.wow {
  -moz-transition-timing-function: cubic-bezier(0.390, 0.575, 0.565, 1.000);
  -o-transition-timing-function: cubic-bezier(0.390, 0.575, 0.565, 1.000);
  -webkit-transition-timing-function: cubic-bezier(0.390, 0.575, 0.565, 1.000);
  transition-timing-function: cubic-bezier(0.390, 0.575, 0.565, 1.000);
}

/* line 255, scss/partials/_general.scss */
.preloader-bottle {
  opacity: 0;
  position: fixed;
  right: 0;
  bottom: 0;
  margin-top: -100px;
  margin-left: -100px;
  z-index: 99999;
  display: none;
  -moz-animation: spin-the-bottle 1.2s infinite;
  -webkit-animation: spin-the-bottle 1.2s infinite;
  animation: spin-the-bottle 1.2s infinite;
}
@-moz-keyframes spin-the-bottle {
  0% {
    -moz-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes spin-the-bottle {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spin-the-bottle {
  0% {
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/* line 278, scss/partials/_general.scss */
.page-transition {
  background: #fff;
  height: 100%;
  left: 0;
  position: absolute;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
  -moz-transition: opacity 800ms cubic-bezier(0.390, 0.575, 0.565, 1.000) 200ms;
  -o-transition: opacity 800ms cubic-bezier(0.390, 0.575, 0.565, 1.000) 200ms;
  -webkit-transition: opacity 800ms cubic-bezier(0.390, 0.575, 0.565, 1.000);
  -webkit-transition-delay: 200ms;
  transition: opacity 800ms cubic-bezier(0.390, 0.575, 0.565, 1.000) 200ms;
}
/* line 288, scss/partials/_general.scss */
.page-transition.fade-out {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
}

/* line 293, scss/partials/_general.scss */
.home .page-transition {
  display: none;
}

/* line 297, scss/partials/_general.scss */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/*
* 	Owl Carousel Owl Demo Theme
*	v1.3.2
*/
/* line 6, scss/partials/_owl-carousel.scss */
.owl-theme .owl-controls {
  margin-top: 30px;
  text-align: center;
}

/* line 11, scss/partials/_owl-carousel.scss */
.owl-item.loading {
  min-height: 100px;
  background: #fff url("../img/spinner.gif") no-repeat center center;
  background-size: 16px 16px;
}
@media (min-width: 580px) {
  /* line 11, scss/partials/_owl-carousel.scss */
  .owl-item.loading {
    background-size: 32px 32px;
    min-height: 300px;
  }
}
@media (min-width: 1024px) {
  /* line 11, scss/partials/_owl-carousel.scss */
  .owl-item.loading {
    min-height: 400px;
  }
}
@media (min-width: 1440px) {
  /* line 11, scss/partials/_owl-carousel.scss */
  .owl-item.loading {
    min-height: 600px;
  }
}

/* line 29, scss/partials/_owl-carousel.scss */
.owl-caption {
  text-align: center;
  width: 100%;
  padding-top: 10px;
  margin-bottom: 0;
}

/* Styling Next and Prev buttons */
/* line 38, scss/partials/_owl-carousel.scss */
.owl-theme .owl-controls .owl-buttons {
  display: none;
  height: auto;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -25px;
  width: 100%;
}
@media (min-width: 580px) {
  /* line 38, scss/partials/_owl-carousel.scss */
  .owl-theme .owl-controls .owl-buttons {
    display: block;
  }
}

/* line 53, scss/partials/_owl-carousel.scss */
.owl-theme .owl-controls .owl-buttons div {
  background-color: #A3A6AC;
  background-color: rgba(59, 61, 68, 0.3);
  background-position: center center;
  background-repeat: no-repeat;
  height: 82px;
  margin-top: -41px;
  position: absolute;
  width: 55px;
  text-indent: -9999px;
  top: 50%;
  -moz-transition: background-color 400ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
  -o-transition: background-color 400ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
  -webkit-transition: background-color 400ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
  transition: background-color 400ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
}

/* line 66, scss/partials/_owl-carousel.scss */
.owl-theme .owl-controls .owl-buttons .owl-next {
  background-image: url("../img/icon_gallery_arrow_right.svg");
  right: 0;
}

/* line 70, scss/partials/_owl-carousel.scss */
.owl-theme .owl-controls .owl-buttons .owl-prev {
  background-image: url("../img/icon_gallery_arrow_left.svg");
  left: 0;
}

/* Clickable class fix problem with hover on touch devices */
/* Use it for non-touch hover action */
/* line 77, scss/partials/_owl-carousel.scss */
.owl-theme .owl-controls.clickable .owl-buttons div:hover {
  background-color: #A3A6AC;
  background-color: #3b3d44;
}

/* Styling Pagination */
/* line 84, scss/partials/_owl-carousel.scss */
.owl-theme .owl-controls .owl-page {
  display: inline-block;
}

/* line 87, scss/partials/_owl-carousel.scss */
.owl-theme .owl-controls .owl-page span {
  background: #3B3D44;
  display: block;
  width: 6px;
  height: 6px;
  margin: 4px;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  border-radius: 6px;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  opacity: 0.5;
  -moz-transition: opacity 400ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
  -o-transition: opacity 400ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
  -webkit-transition: opacity 400ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
  transition: opacity 400ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
}

/* line 98, scss/partials/_owl-carousel.scss */
.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span {
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
}

/* If PaginationNumbers is true */
/* line 105, scss/partials/_owl-carousel.scss */
.owl-theme .owl-controls .owl-page span.owl-numbers {
  height: auto;
  width: auto;
  color: #FFF;
  padding: 2px 10px;
  font-size: 12px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
}

/* preloading images */
/* 
 * 	Core Owl Carousel CSS File
 *	v1.3.2
 */
/* clearfix */
/* line 128, scss/partials/_owl-carousel.scss */
.owl-carousel .owl-wrapper:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

/* display none until init */
/* line 137, scss/partials/_owl-carousel.scss */
.owl-carousel {
  display: none;
  position: relative;
  width: 100%;
  -ms-touch-action: pan-y;
}

/* line 143, scss/partials/_owl-carousel.scss */
.owl-carousel .owl-wrapper {
  display: none;
  position: relative;
  -webkit-transform: translate3d(0px, 0px, 0px);
}

/* line 148, scss/partials/_owl-carousel.scss */
.owl-carousel .owl-wrapper-outer {
  overflow: hidden;
  position: relative;
  width: 100%;
}

/* line 153, scss/partials/_owl-carousel.scss */
.owl-carousel .owl-wrapper-outer.autoHeight {
  -webkit-transition: height 500ms ease-in-out;
  -moz-transition: height 500ms ease-in-out;
  -ms-transition: height 500ms ease-in-out;
  -o-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out;
}

/* line 161, scss/partials/_owl-carousel.scss */
.owl-carousel .owl-item {
  float: left;
}

/* line 164, scss/partials/_owl-carousel.scss */
.owl-controls .owl-page,
.owl-controls .owl-buttons div {
  cursor: pointer;
}

/* line 168, scss/partials/_owl-carousel.scss */
.owl-controls {
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

/* mouse grab icon */
/* line 178, scss/partials/_owl-carousel.scss */
.grabbing {
  cursor: url(grabbing.png) 8 8, move;
}

/* fix */
/* line 183, scss/partials/_owl-carousel.scss */
.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}

/*! fancyBox v2.1.5 fancyapps.com | fancyapps.com/fancybox/#license */
/* line 2, scss/partials/_fancybox.scss */
.fancybox-wrap,
.fancybox-skin,
.fancybox-outer,
.fancybox-inner,
.fancybox-image,
.fancybox-wrap iframe,
.fancybox-wrap object,
.fancybox-nav,
.fancybox-nav span,
.fancybox-tmp {
  padding: 0;
  margin: 0;
  border: 0;
  outline: none;
  vertical-align: top;
}

/* line 20, scss/partials/_fancybox.scss */
.fancybox-wrap {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 8020;
}

/* line 27, scss/partials/_fancybox.scss */
.fancybox-skin {
  position: relative;
  background: #f9f9f9;
  color: #444;
  text-shadow: none;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}

/* line 37, scss/partials/_fancybox.scss */
.fancybox-opened {
  z-index: 8030;
}

/* line 41, scss/partials/_fancybox.scss */
.fancybox-opened .fancybox-skin {
  -webkit-box-shadow: 0 10px 25px transparent;
  -moz-box-shadow: 0 10px 25px transparent;
  box-shadow: 0 10px 25px transparent;
}

/* line 47, scss/partials/_fancybox.scss */
.fancybox-outer, .fancybox-inner {
  position: relative;
}

/* line 51, scss/partials/_fancybox.scss */
.fancybox-inner {
  overflow: hidden;
}

/* line 55, scss/partials/_fancybox.scss */
.fancybox-type-iframe .fancybox-inner {
  -webkit-overflow-scrolling: touch;
}

/* line 59, scss/partials/_fancybox.scss */
.fancybox-error {
  color: #444;
  font: 14px/20px "Helvetica Neue",Helvetica,Arial,sans-serif;
  margin: 0;
  padding: 15px;
  white-space: nowrap;
}

/* line 67, scss/partials/_fancybox.scss */
.fancybox-image, .fancybox-iframe {
  display: block;
  width: 100%;
  height: 100%;
}

/* line 73, scss/partials/_fancybox.scss */
.fancybox-image {
  max-width: 100%;
  max-height: 100%;
}

/* line 78, scss/partials/_fancybox.scss */
#fancybox-loading, .fancybox-close, .fancybox-prev span, .fancybox-next span {
  background-image: url("../img/fancybox_sprite.png");
}

/* line 82, scss/partials/_fancybox.scss */
#fancybox-loading {
  position: fixed;
  top: 50%;
  left: 50%;
  margin-top: -22px;
  margin-left: -22px;
  background-position: 0 -108px;
  opacity: 0.8;
  cursor: pointer;
  z-index: 8060;
}

/* line 94, scss/partials/_fancybox.scss */
#fancybox-loading div {
  width: 44px;
  height: 44px;
  background: url("../img/spinner.gif") center center no-repeat;
  background-size: 16px 16px;
}

/* line 101, scss/partials/_fancybox.scss */
.fancybox-close {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  z-index: 8040;
}

/* line 111, scss/partials/_fancybox.scss */
.fancybox-nav {
  position: fixed;
  top: 0;
  width: 40%;
  height: 100%;
  cursor: pointer;
  text-decoration: none;
  background: transparent url("blank.gif");
  /* helps IE */
  -webkit-tap-highlight-color: transparent;
  z-index: 8040;
}

/* line 123, scss/partials/_fancybox.scss */
.fancybox-prev {
  left: 20px;
}

/* line 127, scss/partials/_fancybox.scss */
.fancybox-next {
  right: 20px;
}

/* line 131, scss/partials/_fancybox.scss */
.fancybox-nav span {
  position: absolute;
  top: 50%;
  width: 36px;
  height: 34px;
  margin-top: -18px;
  cursor: pointer;
  z-index: 8040;
  visibility: hidden;
}

/* line 142, scss/partials/_fancybox.scss */
.fancybox-prev span {
  left: 10px;
  background-position: 0 -36px;
}

/* line 147, scss/partials/_fancybox.scss */
.fancybox-next span {
  right: 10px;
  background-position: 0 -72px;
}

/* line 152, scss/partials/_fancybox.scss */
.fancybox-nav:hover span {
  visibility: visible;
}

/* line 156, scss/partials/_fancybox.scss */
.fancybox-tmp {
  position: absolute;
  top: -99999px;
  left: -99999px;
  visibility: hidden;
  max-width: 99999px;
  max-height: 99999px;
  overflow: visible !important;
}

/* Overlay helper */
/* line 168, scss/partials/_fancybox.scss */
.fancybox-lock {
  overflow: hidden !important;
  width: auto;
}

/* line 173, scss/partials/_fancybox.scss */
.fancybox-lock body {
  overflow: hidden !important;
}

/* line 177, scss/partials/_fancybox.scss */
.fancybox-lock-test {
  overflow-y: hidden !important;
}

/* line 181, scss/partials/_fancybox.scss */
.fancybox-overlay {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  display: none;
  z-index: 8010;
  background-color: #fff;
}

/* line 191, scss/partials/_fancybox.scss */
.fancybox-overlay-fixed {
  position: fixed;
  bottom: 0;
  right: 0;
}

/* line 197, scss/partials/_fancybox.scss */
.fancybox-lock .fancybox-overlay {
  overflow: auto;
  overflow-y: scroll;
}

/* Title helper */
/* line 204, scss/partials/_fancybox.scss */
.fancybox-title {
  visibility: hidden;
  font-size: 18px;
  position: relative;
  text-shadow: none;
  z-index: 8050;
  font-style: oblique;
}

/* line 213, scss/partials/_fancybox.scss */
.fancybox-opened .fancybox-title {
  visibility: visible;
}

/* line 217, scss/partials/_fancybox.scss */
.fancybox-title-float-wrap {
  position: absolute;
  bottom: 0;
  right: 50%;
  margin-bottom: -35px;
  z-index: 8050;
  text-align: center;
}

/* line 226, scss/partials/_fancybox.scss */
.fancybox-title-float-wrap .child {
  display: inline-block;
  margin-right: -100%;
  padding: 2px 20px;
  color: #999;
  line-height: 24px;
  white-space: nowrap;
}

/* line 235, scss/partials/_fancybox.scss */
.fancybox-title-outside-wrap {
  position: relative;
  margin-top: 10px;
  color: #fff;
}

/* line 241, scss/partials/_fancybox.scss */
.fancybox-title-inside-wrap {
  padding-top: 10px;
}

/* line 245, scss/partials/_fancybox.scss */
.fancybox-title-over-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  color: #fff;
  padding: 10px;
  background: #000;
  background: rgba(0, 0, 0, 0.8);
}

/*Retina graphics!*/
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min--moz-device-pixel-ratio: 1.5), only screen and (min-device-pixel-ratio: 1.5) {
  /* line 260, scss/partials/_fancybox.scss */
  #fancybox-loading, .fancybox-close, .fancybox-prev span, .fancybox-next span {
    background-image: url("../img/fancybox_sprite@2x.png");
    background-size: 44px 152px;
    /*The size of the normal image, half the size of the hi-res image*/
  }

  /* line 265, scss/partials/_fancybox.scss */
  #fancybox-loading div {
    background-image: url("../img/fancybox_loading@2x.gif");
    background-size: 24px 24px;
    /*The size of the normal image, half the size of the hi-res image*/
  }
}
/* line 1, scss/partials/_header.scss */
.blur {
  -webkit-filter: blur(20px);
  filter: blur(20px);
}

/* line 32, scss/partials/_header.scss */
#header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1002;
}
/* line 38, scss/partials/_header.scss */
#header.fixed {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid #ccc;
  position: fixed;
}
@media (min-width: 580px) {
  /* line 45, scss/partials/_header.scss */
  #header.fixed .nav li {
    padding: 30px 0;
  }
}
/* line 50, scss/partials/_header.scss */
#header .container {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
}
/* line 55, scss/partials/_header.scss */
#header .container #logo {
  flex-shrink: 0;
  display: block;
  height: auto;
  width: 86px;
  position: absolute;
  right: -10px;
  top: 0px;
}
@media (min-width: 580px) {
  /* line 55, scss/partials/_header.scss */
  #header .container #logo {
    width: 129px;
  }
}
@media (min-width: 1440px) {
  /* line 55, scss/partials/_header.scss */
  #header .container #logo {
    width: 173px;
    top: 10px;
  }
}
/* line 71, scss/partials/_header.scss */
#header .container #logo.fixed {
  position: fixed;
}
@media (min-width: 580px) {
  /* line 71, scss/partials/_header.scss */
  #header .container #logo.fixed {
    background-position: 6px 0;
    height: 86px;
    top: 0px;
    width: 86px;
    right: -5px;
    -moz-background-size: 86px 86px;
    -o-background-size: 86px 86px;
    -webkit-background-size: 86px 86px;
    background-size: 86px 86px;
  }
}
/* line 83, scss/partials/_header.scss */
#header .container #logo img {
  transform: rotateZ(10deg);
}
/* line 87, scss/partials/_header.scss */
#header .container .nav {
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 10px;
  font-size: 1rem;
  -moz-transition: opacity 400ms ease;
  -o-transition: opacity 400ms ease;
  -webkit-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  float: left;
  padding-left: 0.83333%;
  padding-right: 0.83333%;
}
@media (min-width: 580px) {
  /* line 87, scss/partials/_header.scss */
  #header .container .nav {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
/* line 99, scss/partials/_header.scss */
#header .container .nav li {
  float: left;
  margin-right: 20px;
  padding: 30px 0;
}
/* line 104, scss/partials/_header.scss */
#header .container .nav li:last-child {
  margin: 0;
}
@media (min-width: 580px) {
  /* line 99, scss/partials/_header.scss */
  #header .container .nav li {
    margin-right: 60px;
    padding: 30px 0;
  }
}
/* line 114, scss/partials/_header.scss */
#header .container .nav a {
  color: #333;
  display: inline-block;
  text-decoration: none;
}
/* line 120, scss/partials/_header.scss */
#header .container .nav .menu a {
  background: url("../img/icon_menu.svg") left top no-repeat;
  min-width: 70px;
  padding-left: 32px;
  -moz-background-size: 19px 12px;
  -o-background-size: 19px 12px;
  -webkit-background-size: 19px 12px;
  background-size: 19px 12px;
}
@media (min-width: 580px) {
  /* line 120, scss/partials/_header.scss */
  #header .container .nav .menu a {
    min-width: 95px;
    padding-left: 46px;
    -moz-background-size: 26px 17px;
    -o-background-size: 26px 17px;
    -webkit-background-size: 26px 17px;
    background-size: 26px 17px;
  }
}
/* line 133, scss/partials/_header.scss */
#header .container .nav .search {
  background-position: 25px center;
  background-repeat: no-repeat;
  -moz-transition: all 400ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
  -o-transition: all 400ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
  -webkit-transition: all 400ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
  transition: all 400ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
  -moz-background-size: 14px 14px;
  -o-background-size: 14px 14px;
  -webkit-background-size: 14px 14px;
  background-size: 14px 14px;
}
@media (min-width: 580px) {
  /* line 133, scss/partials/_header.scss */
  #header .container .nav .search {
    -moz-background-size: 18px 18px;
    -o-background-size: 18px 18px;
    -webkit-background-size: 18px 18px;
    background-size: 18px 18px;
  }
}

/* line 146, scss/partials/_header.scss */
.nav-menu {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.88);
  color: #3B3D44;
  display: none;
  height: 100%;
  left: 0;
  padding: 30px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1001;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -moz-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -moz-transition: -moz-transform 1000ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
  -o-transition: -o-transform 1000ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
  -webkit-transition: -webkit-transform 1000ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
  transition: transform 1000ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
}
@media (min-width: 1024px) {
  /* line 146, scss/partials/_header.scss */
  .nav-menu {
    padding: 45px;
    width: 100%;
    background-color: transparent;
    *zoom: 1;
    filter: progid:DXImageTransform.Microsoft.gradient(gradientType=1, startColorstr='#FFFFFFFF', endColorstr='#FFFFFFFF');
    background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuMCIgeTE9IjAuNSIgeDI9IjEuMCIgeTI9IjAuNSI+PHN0b3Agb2Zmc2V0PSIxJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIwLjAiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2dyYWQpIiAvPjwvc3ZnPiA=');
    background-size: 100%;
    background-image: -webkit-gradient(linear, 0% 50%, 100% 50%, color-stop(1%, #ffffff), color-stop(100%, rgba(255, 255, 255, 0)));
    background-image: -moz-linear-gradient(left, #ffffff 1%, rgba(255, 255, 255, 0) 100%);
    background-image: -webkit-linear-gradient(left, #ffffff 1%, rgba(255, 255, 255, 0) 100%);
    background-image: linear-gradient(to right, #ffffff 1%, rgba(255, 255, 255, 0) 100%);
  }
}
/* line 171, scss/partials/_header.scss */
.nav-menu.active {
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -webkit-transform: translateX(0);
  transform: translateX(0);
}
/* line 174, scss/partials/_header.scss */
.nav-menu ul {
  list-style-type: none;
  margin-top: 72px;
}
@media (min-width: 1024px) {
  /* line 174, scss/partials/_header.scss */
  .nav-menu ul {
    margin-top: 100px;
  }
}
/* line 182, scss/partials/_header.scss */
.nav-menu ul li:nth-child(1) {
  -webkit-animation-delay: .075s;
  /* Chrome, Safari, Opera */
  animation-delay: .075s;
}
/* line 186, scss/partials/_header.scss */
.nav-menu ul li:nth-child(2) {
  -webkit-animation-delay: .15s;
  /* Chrome, Safari, Opera */
  animation-delay: .15s;
}
/* line 190, scss/partials/_header.scss */
.nav-menu ul li:nth-child(3) {
  -webkit-animation-delay: .225s;
  /* Chrome, Safari, Opera */
  animation-delay: .225s;
}
/* line 194, scss/partials/_header.scss */
.nav-menu ul li:nth-child(4) {
  -webkit-animation-delay: .3s;
  /* Chrome, Safari, Opera */
  animation-delay: .3s;
}
/* line 198, scss/partials/_header.scss */
.nav-menu ul li:nth-child(5) {
  -webkit-animation-delay: .375s;
  /* Chrome, Safari, Opera */
  animation-delay: .375s;
}
/* line 202, scss/partials/_header.scss */
.nav-menu ul li:nth-child(6) {
  -webkit-animation-delay: .45s;
  /* Chrome, Safari, Opera */
  animation-delay: .45s;
}
/* line 206, scss/partials/_header.scss */
.nav-menu ul li:nth-child(7) {
  -webkit-animation-delay: .525s;
  /* Chrome, Safari, Opera */
  animation-delay: .525s;
}
/* line 211, scss/partials/_header.scss */
.nav-menu ul li {
  margin-bottom: 13px;
}
@media (min-width: 580px) {
  /* line 211, scss/partials/_header.scss */
  .nav-menu ul li {
    margin-bottom: 24px;
  }
}
/* line 218, scss/partials/_header.scss */
.nav-menu ul li:last-child {
  margin: 0;
}
/* line 223, scss/partials/_header.scss */
.nav-menu ul .has-sub-nav {
  position: relative;
}
/* line 226, scss/partials/_header.scss */
.nav-menu ul .has-sub-nav .sub-nav-button::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  display: block;
  top: 18px;
  transform: translate(-50%, -50%);
  left: 140px;
  background-image: url("../img/dropdown-arrow.svg");
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  transition: all 0.15s cubic-bezier(0.17, 0.67, 0.85, 1.18);
  cursor: pointer;
}
@media (min-width: 580px) {
  /* line 226, scss/partials/_header.scss */
  .nav-menu ul .has-sub-nav .sub-nav-button::after {
    width: 25px;
    height: 25px;
    top: 25px;
    left: 170px;
  }
}
/* line 250, scss/partials/_header.scss */
.nav-menu ul .has-sub-nav .sub-menu {
  display: none;
}
/* line 255, scss/partials/_header.scss */
.nav-menu ul .has-sub-nav.active .sub-nav-button::after {
  transform: translate(-50%, -50%) rotate(180deg);
  transition: all 0.25s cubic-bezier(0.17, 0.67, 0.85, 1.18);
}
/* line 260, scss/partials/_header.scss */
.nav-menu ul .has-sub-nav.active .sub-menu {
  max-height: 1200px;
  margin-top: 13px;
}
@media (min-width: 580px) {
  /* line 260, scss/partials/_header.scss */
  .nav-menu ul .has-sub-nav.active .sub-menu {
    margin-top: 24px;
  }
}
/* line 270, scss/partials/_header.scss */
.nav-menu ul a, .nav-menu ul .sub-nav-button {
  color: #3B3D44;
  display: inline-block;
  text-decoration: none;
  font-size: 28px;
  font-size: 2.8rem;
}
@media (min-width: 580px) {
  /* line 270, scss/partials/_header.scss */
  .nav-menu ul a, .nav-menu ul .sub-nav-button {
    border-bottom: 5px solid transparent;
    font-size: 36px;
    font-size: 3.6rem;
  }
}
@media (min-width: 580px) {
  /* line 280, scss/partials/_header.scss */
  .nav-menu ul a:hover, .nav-menu ul .sub-nav-button:hover {
    border-bottom: 5px solid #EBEBEB;
  }
}
/* line 287, scss/partials/_header.scss */
.nav-menu ul .sub-nav-button {
  border: none;
  border-bottom: 5px solid transparent;
  background-color: unset;
  padding: 0;
}
/* line 294, scss/partials/_header.scss */
.nav-menu .sub-menu {
  max-height: 0px;
  overflow: hidden;
  margin: 0;
}
/* line 298, scss/partials/_header.scss */
.nav-menu .sub-menu li a {
  font-size: 20px;
  font-size: 2rem;
  margin-left: 25px;
}
@media (min-width: 580px) {
  /* line 298, scss/partials/_header.scss */
  .nav-menu .sub-menu li a {
    font-size: 24px;
    font-size: 2.4rem;
    margin-left: 40px;
  }
}

/* line 308, scss/partials/_header.scss */
.search-form {
  background-color: #fff;
  color: #fff;
  display: none;
  height: 100%;
  left: 0;
  overflow-y: auto;
  padding: 190px 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
/* line 321, scss/partials/_header.scss */
.search-form form {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  float: left;
  padding-left: 0.83333%;
  padding-right: 0.83333%;
}
/* line 324, scss/partials/_header.scss */
.search-form label {
  display: none;
}
/* line 327, scss/partials/_header.scss */
.search-form input[type=text] {
  background: none;
  border: 0;
  color: #3B3D44;
  letter-spacing: 3px;
  margin: 0;
  padding: 0;
  text-transform: uppercase;
  width: 100%;
  -moz-appearance: none;
  -webkit-appearance: none;
  font-size: 28px;
  font-size: 2.8rem;
}
/* line 337, scss/partials/_header.scss */
.search-form input[type=text]:focus {
  outline: none;
}
/* line 61, ../../../../../../../.rvm/rubies/ruby-3.1.1/lib/ruby/gems/3.1.0/gems/compass-core-1.0.3/stylesheets/compass/css3/_user-interface.scss */
.search-form input[type=text]:-moz-placeholder {
  color: #3B3D44;
}
/* line 64, ../../../../../../../.rvm/rubies/ruby-3.1.1/lib/ruby/gems/3.1.0/gems/compass-core-1.0.3/stylesheets/compass/css3/_user-interface.scss */
.search-form input[type=text]::-moz-placeholder {
  color: #3B3D44;
}
/* line 67, ../../../../../../../.rvm/rubies/ruby-3.1.1/lib/ruby/gems/3.1.0/gems/compass-core-1.0.3/stylesheets/compass/css3/_user-interface.scss */
.search-form input[type=text]:-ms-input-placeholder {
  color: #3B3D44;
}
/* line 56, ../../../../../../../.rvm/rubies/ruby-3.1.1/lib/ruby/gems/3.1.0/gems/compass-core-1.0.3/stylesheets/compass/css3/_user-interface.scss */
.search-form input[type=text]::-webkit-input-placeholder {
  color: #3B3D44;
}
@media (min-width: 580px) {
  /* line 327, scss/partials/_header.scss */
  .search-form input[type=text] {
    font-size: 55px;
    font-size: 5.5rem;
  }
}
/* line 350, scss/partials/_header.scss */
.search-form input[type=submit] {
  display: none;
}
/* line 353, scss/partials/_header.scss */
.search-form .instructions {
  color: #999;
  font-size: 14px;
  font-size: 1.4rem;
}

/* line 360, scss/partials/_header.scss */
body.nav-menu-open #header .menu a {
  background-image: url("../img/icon_menu_close.svg");
  -moz-background-size: 12px 12px;
  -o-background-size: 12px 12px;
  -webkit-background-size: 12px 12px;
  background-size: 12px 12px;
}
@media (min-width: 580px) {
  /* line 360, scss/partials/_header.scss */
  body.nav-menu-open #header .menu a {
    -moz-background-size: 17px 17px;
    -o-background-size: 17px 17px;
    -webkit-background-size: 17px 17px;
    background-size: 17px 17px;
  }
}

/* line 370, scss/partials/_header.scss */
html.search-form-open {
  overflow: hidden;
}

/* line 373, scss/partials/_header.scss */
body.search-form-open {
  height: 100%;
  overflow: hidden;
}

/* line 378, scss/partials/_header.scss */
body.search-form-open #header.fixed {
  position: absolute;
}
/* line 381, scss/partials/_header.scss */
body.search-form-open #header .search {
  background-color: #f4f4f4;
  background-image: url("../img/icon_search_close.svg");
  padding-left: 25px;
  padding-right: 25px;
}
/* line 386, scss/partials/_header.scss */
body.search-form-open #header .search a {
  color: #979797;
  padding-left: 25px;
}
@media (min-width: 580px) {
  /* line 386, scss/partials/_header.scss */
  body.search-form-open #header .search a {
    padding-left: 50px;
  }
}

/* line 397, scss/partials/_header.scss */
.home #header .nav {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -moz-transform: translateX(-215px);
  -ms-transform: translateX(-215px);
  -webkit-transform: translateX(-215px);
  transform: translateX(-215px);
  -moz-transition: opacity 1s cubic-bezier(0.390, 0.575, 0.565, 1.000), -moz-transform 1s cubic-bezier(0.390, 0.575, 0.565, 1.000);
  -o-transition: opacity 1s cubic-bezier(0.390, 0.575, 0.565, 1.000), -o-transform 1s cubic-bezier(0.390, 0.575, 0.565, 1.000);
  -webkit-transition: opacity 1s cubic-bezier(0.390, 0.575, 0.565, 1.000), -webkit-transform 1s cubic-bezier(0.390, 0.575, 0.565, 1.000);
  transition: opacity 1s cubic-bezier(0.390, 0.575, 0.565, 1.000), transform 1s cubic-bezier(0.390, 0.575, 0.565, 1.000);
}
/* line 401, scss/partials/_header.scss */
.home #header .nav.slide-in {
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -moz-transition-delay: 600ms;
  -o-transition-delay: 600ms;
  -webkit-transition-delay: 600ms;
  transition-delay: 600ms;
}
/* line 407, scss/partials/_header.scss */
.home #logo {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -moz-transform: translateX(86px);
  -ms-transform: translateX(86px);
  -webkit-transform: translateX(86px);
  transform: translateX(86px);
  -moz-transition: opacity 1s cubic-bezier(0.390, 0.575, 0.565, 1.000), -moz-transform 1s cubic-bezier(0.390, 0.575, 0.565, 1.000);
  -o-transition: opacity 1s cubic-bezier(0.390, 0.575, 0.565, 1.000), -o-transform 1s cubic-bezier(0.390, 0.575, 0.565, 1.000);
  -webkit-transition: opacity 1s cubic-bezier(0.390, 0.575, 0.565, 1.000), -webkit-transform 1s cubic-bezier(0.390, 0.575, 0.565, 1.000);
  transition: opacity 1s cubic-bezier(0.390, 0.575, 0.565, 1.000), transform 1s cubic-bezier(0.390, 0.575, 0.565, 1.000);
}
@media (min-width: 580px) {
  /* line 407, scss/partials/_header.scss */
  .home #logo {
    -moz-transform: translateX(173px);
    -ms-transform: translateX(173px);
    -webkit-transform: translateX(173px);
    transform: translateX(173px);
  }
}
/* line 415, scss/partials/_header.scss */
.home #logo.slide-in {
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -moz-transition-delay: 600ms;
  -o-transition-delay: 600ms;
  -webkit-transition-delay: 600ms;
  transition-delay: 600ms;
}

/* line 423, scss/partials/_header.scss */
.page-template-page-home #header #logo {
  display: none !important;
}

/* line 1, scss/partials/_footer.scss */
#footer {
  clear: left;
  min-height: 300px;
}

@media (min-width: 580px) {
  /* line 6, scss/partials/_footer.scss */
  .footer-bottom {
    margin-top: 30px;
  }
}
@media (min-width: 1024px) {
  /* line 6, scss/partials/_footer.scss */
  .footer-bottom {
    margin-top: 80px;
  }
}

/* line 15, scss/partials/_footer.scss */
.footer-social-links {
  position: relative;
}
@media (min-width: 580px) {
  /* line 15, scss/partials/_footer.scss */
  .footer-social-links {
    border-bottom: 1px solid #ccc;
    border-top: 1px solid #ccc;
    overflow: hidden;
  }
}
/* line 23, scss/partials/_footer.scss */
.footer-social-links .links {
  background: #fff;
}
/* line 25, scss/partials/_footer.scss */
.footer-social-links .links li {
  text-align: center;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 33.33333%;
  float: left;
  padding-left: 0.83333%;
  padding-right: 0.83333%;
}
@media (min-width: 580px) {
  /* line 25, scss/partials/_footer.scss */
  .footer-social-links .links li {
    border-right: 1px solid #ccc;
    text-align: left;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 16.66667%;
    float: left;
    padding-left: 0.83333%;
    padding-right: 0.83333%;
    padding: 1px;
  }
  /* line 34, scss/partials/_footer.scss */
  .footer-social-links .links li:first-child {
    border-left: 1px solid #ccc;
  }
}
/* line 39, scss/partials/_footer.scss */
.footer-social-links .links .icon {
  background-position: center center;
  background-repeat: no-repeat;
  display: inline-block;
  height: 30px;
  padding: 50px 0;
  width: 30px;
}
@media (min-width: 580px) {
  /* line 39, scss/partials/_footer.scss */
  .footer-social-links .links .icon {
    display: block;
    height: 90px;
    padding: 0;
    width: auto;
  }
}
@media (min-width: 580px) {
  /* line 55, scss/partials/_footer.scss */
  .footer-social-links .twitter {
    margin-left: 25%;
  }
}
/* line 60, scss/partials/_footer.scss */
.footer-social-links .twitter .icon {
  background-image: url("../img/icon_twitter_grey.svg");
}
@media (min-width: 580px) {
  /* line 64, scss/partials/_footer.scss */
  .footer-social-links .twitter .icon:hover, .footer-social-links .twitter .icon.active {
    background-color: #10B1E3;
    background-image: url("../img/icon_twitter_white.svg");
  }
}
/* line 73, scss/partials/_footer.scss */
.footer-social-links .facebook .icon {
  background-image: url("../img/icon_facebook_grey.svg");
}
@media (min-width: 580px) {
  /* line 77, scss/partials/_footer.scss */
  .footer-social-links .facebook .icon:hover, .footer-social-links .facebook .icon.active {
    background-color: #3B5998;
    background-image: url("../img/icon_facebook_white.svg");
  }
}
/* line 86, scss/partials/_footer.scss */
.footer-social-links .instagram .icon {
  background-image: url("../img/icon_instagram_grey.svg");
}
@media (min-width: 580px) {
  /* line 90, scss/partials/_footer.scss */
  .footer-social-links .instagram .icon:hover, .footer-social-links .instagram .icon.active {
    background-color: #333333;
    background-image: url("../img/icon_instagram_white.svg");
  }
}

/* line 99, scss/partials/_footer.scss */
.social-widget {
  display: none;
  float: left;
  width: 100%;
  z-index: 1;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
/* line 105, scss/partials/_footer.scss */
.social-widget .background-container {
  padding: 50px;
  margin-right: 2px;
}
/* line 109, scss/partials/_footer.scss */
.social-widget .header {
  text-align: center;
}
/* line 112, scss/partials/_footer.scss */
.social-widget .footer {
  text-align: center;
}
/* line 115, scss/partials/_footer.scss */
.social-widget h3 {
  background-position: left top;
  background-repeat: no-repeat;
  display: inline-block;
  letter-spacing: 3px;
  margin-bottom: 30px;
  text-transform: uppercase;
}
/* line 123, scss/partials/_footer.scss */
.social-widget .link {
  background: url("../img/icon_arrow_small.svg") right center no-repeat;
  color: #fff;
  display: inline-block;
  padding-right: 42px;
  letter-spacing: 2px;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 12px;
  font-size: 1.2rem;
}

/* line 135, scss/partials/_footer.scss */
.social-widget-content {
  margin: 0 auto;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 41.66667%;
  float: left;
  padding-left: 0.83333%;
  padding-right: 0.83333%;
  float: none;
  padding: 0;
}

/* line 142, scss/partials/_footer.scss */
.twitter-widget .background-container {
  background: #10B1E3;
  color: #fff;
}
/* line 146, scss/partials/_footer.scss */
.twitter-widget h3 {
  background-image: url("../img/icon_twitter_white.svg");
  line-height: 28px;
  padding-left: 40px;
}
/* line 151, scss/partials/_footer.scss */
.twitter-widget ul {
  padding-bottom: 20px;
}
/* line 154, scss/partials/_footer.scss */
.twitter-widget li {
  border-bottom: 5px solid #fff;
  border-bottom: 5px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 20px;
  padding: 20px;
  font-size: 20px;
  font-size: 2rem;
}
/* line 160, scss/partials/_footer.scss */
.twitter-widget li a {
  color: #3B3D44;
}
/* line 164, scss/partials/_footer.scss */
.twitter-widget h6, .twitter-widget .footer-links, .twitter-widget .our-wines-legend, .twitter-widget .vegan-toggle-wrapper, .twitter-widget .our-wines-detail .wine-information dt, .our-wines-detail .wine-information .twitter-widget dt, .twitter-widget .our-wines-detail .overview .more, .our-wines-detail .overview .twitter-widget .more, .twitter-widget .producers-detail .producer-description .more, .producers-detail .producer-description .twitter-widget .more, .twitter-widget .news-events-sidebar .widget-categories a, .news-events-sidebar .widget-categories .twitter-widget a, .twitter-widget .news-events-sidebar .widget-authors a, .news-events-sidebar .widget-authors .twitter-widget a {
  color: #3B3D44;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

/* line 171, scss/partials/_footer.scss */
.facebook-widget .background-container {
  background: #3B5998;
  color: #fff;
}
/* line 175, scss/partials/_footer.scss */
.facebook-widget h3 {
  background-image: url("../img/icon_facebook_white.svg");
  line-height: 28px;
  padding-left: 40px;
}
/* line 180, scss/partials/_footer.scss */
.facebook-widget .like-box {
  background: #fff;
  margin: 20px 0 40px 0;
}
/* line 184, scss/partials/_footer.scss */
.facebook-widget iframe {
  width: 100% !important;
}

/* line 189, scss/partials/_footer.scss */
.instagram-widget .background-container {
  background: #333333;
  color: #fff;
}
/* line 193, scss/partials/_footer.scss */
.instagram-widget h3 {
  background-image: url("../img/icon_instagram_white.svg");
  line-height: 28px;
  padding-left: 48px;
}
/* line 198, scss/partials/_footer.scss */
.instagram-widget ul {
  margin: 20px 5px 40px 5px;
  overflow: hidden;
}
/* line 202, scss/partials/_footer.scss */
.instagram-widget li {
  float: left;
  padding: 5px;
  width: 25%;
}
/* line 207, scss/partials/_footer.scss */
.instagram-widget .last {
  margin-top: 15px;
  width: 100%;
}
/* line 210, scss/partials/_footer.scss */
.instagram-widget .last hr {
  background: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 0;
  height: 5px;
  margin: 0;
}
/* line 218, scss/partials/_footer.scss */
.instagram-widget a {
  display: block;
}
/* line 221, scss/partials/_footer.scss */
.instagram-widget img {
  display: block;
  width: 100%;
}

/* line 226, scss/partials/_footer.scss */
.footer-links {
  color: #A3A6AC;
  display: none;
  text-transform: uppercase;
}
@media (min-width: 1024px) {
  /* line 226, scss/partials/_footer.scss */
  .footer-links {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 16.66667%;
    float: left;
    padding-left: 0.83333%;
    padding-right: 0.83333%;
  }
}
@media (min-width: 580px) {
  /* line 226, scss/partials/_footer.scss */
  .footer-links {
    display: block;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 25%;
    float: left;
    padding-left: 0.83333%;
    padding-right: 0.83333%;
  }
}
/* line 239, scss/partials/_footer.scss */
.footer-links li {
  margin-bottom: 20px;
}
/* line 242, scss/partials/_footer.scss */
.footer-links a {
  color: #A3A6AC;
  display: block;
  letter-spacing: 1px;
  text-decoration: none;
}
/* line 247, scss/partials/_footer.scss */
.footer-links a:hover {
  text-decoration: underline;
}

/* line 252, scss/partials/_footer.scss */
.footer-links-2 {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 33.33333%;
  float: left;
  padding-left: 0.83333%;
  padding-right: 0.83333%;
}
@media (min-width: 1024px) {
  /* line 252, scss/partials/_footer.scss */
  .footer-links-2 {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 25%;
    float: left;
    padding-left: 0.83333%;
    padding-right: 0.83333%;
  }
}

/* line 259, scss/partials/_footer.scss */
.footer-address {
  color: #A3A6AC;
  line-height: 2em;
  word-break: break-all;
  text-align: center;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  float: left;
  padding-left: 0.83333%;
  padding-right: 0.83333%;
}
@media (min-width: 1024px) {
  /* line 259, scss/partials/_footer.scss */
  .footer-address {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 25%;
    float: left;
    padding-left: 0.83333%;
    padding-right: 0.83333%;
  }
}
@media (min-width: 580px) {
  /* line 259, scss/partials/_footer.scss */
  .footer-address {
    text-align: left;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 33.33333%;
    float: left;
    padding-left: 0.83333%;
    padding-right: 0.83333%;
    float: right;
  }
}
/* line 274, scss/partials/_footer.scss */
.footer-address p {
  margin-top: -0.5em;
}
@media (min-width: 580px) {
  /* line 274, scss/partials/_footer.scss */
  .footer-address p {
    float: right;
  }
}
/* line 281, scss/partials/_footer.scss */
.footer-address a {
  color: #A3A6AC;
  text-decoration: none;
}
/* line 284, scss/partials/_footer.scss */
.footer-address a:hover {
  text-decoration: underline;
}

/* line 289, scss/partials/_footer.scss */
.footer-logo {
  color: #5E5E5E;
  clear: left;
  font-style: italic;
  margin-top: 0px;
  text-align: center;
  font-size: 17px;
  font-size: 1.7rem;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 66.66667%;
  float: left;
  padding-left: 0.83333%;
  padding-right: 0.83333%;
  margin-left: 16.66667%;
}
@media (min-width: 580px) {
  /* line 289, scss/partials/_footer.scss */
  .footer-logo {
    margin: 30px 0;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 16.66667%;
    float: left;
    padding-left: 0.83333%;
    padding-right: 0.83333%;
    margin-left: 41.66667%;
    clear: both;
  }
}
/* line 305, scss/partials/_footer.scss */
.footer-logo a {
  color: #5E5E5E;
}

/* line 310, scss/partials/_footer.scss */
.post-edit-link {
  position: fixed;
  bottom: 0;
  left: 0;
  padding: 15px 25px;
  background-color: #3B3D44;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 999;
  font-family: "basic-sans", sans-serif;
  font-size: 12px;
  font-size: 1.2rem;
}

/* line 3, scss/partials/_home.scss */
.home-hero .home-hero-tag {
  float: left;
  width: 90%;
  position: absolute !important;
  z-index: 998;
  position: relative;
  top: 40%;
  -webkit-transform: translateY(-40%);
  -ms-transform: translateY(-40%);
  transform: translateY(-40%);
  opacity: 0;
  -moz-transition: opacity 1s cubic-bezier(0.390, 0.575, 0.565, 1.000);
  -o-transition: opacity 1s cubic-bezier(0.390, 0.575, 0.565, 1.000);
  -webkit-transition: opacity 1s cubic-bezier(0.390, 0.575, 0.565, 1.000);
  transition: opacity 1s cubic-bezier(0.390, 0.575, 0.565, 1.000);
}
/* line 12, scss/partials/_home.scss */
.home-hero .home-hero-tag.active {
  opacity: 1;
  z-index: 999;
}
/* line 17, scss/partials/_home.scss */
.home-hero .home-hero-tag .home-hero-logo {
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  /* line 17, scss/partials/_home.scss */
  .home-hero .home-hero-tag .home-hero-logo {
    margin-bottom: 40px;
  }
}
/* line 28, scss/partials/_home.scss */
.home-hero .home-hero-tag.white-text h1, .home-hero .home-hero-tag.white-text p {
  color: white;
}
/* line 32, scss/partials/_home.scss */
.home-hero .home-hero-tag.white-text .home-hero-tag-button {
  background-color: #ffffff;
  color: #3B3D44;
}
/* line 39, scss/partials/_home.scss */
.home-hero .home-hero-tag.bold-text h1 {
  font-weight: bold;
}
/* line 46, scss/partials/_home.scss */
.home-hero .home-hero-dots {
  position: absolute;
  bottom: 10px;
  left: 5%;
  z-index: 9;
  float: left;
  width: 100%;
}
@media (min-width: 580px) {
  /* line 46, scss/partials/_home.scss */
  .home-hero .home-hero-dots {
    bottom: 20px;
  }
}
@media (min-width: 1024px) {
  /* line 46, scss/partials/_home.scss */
  .home-hero .home-hero-dots {
    bottom: 40px;
  }
}
/* line 61, scss/partials/_home.scss */
.home-hero .home-hero-dots a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 20px;
  font-size: 2rem;
  float: left;
}
@media (min-width: 580px) {
  /* line 61, scss/partials/_home.scss */
  .home-hero .home-hero-dots a {
    font-size: 30px;
    font-size: 3rem;
  }
}
@media (min-width: 1024px) {
  /* line 61, scss/partials/_home.scss */
  .home-hero .home-hero-dots a {
    font-size: 40px;
    font-size: 4rem;
  }
}
/* line 74, scss/partials/_home.scss */
.home-hero .home-hero-dots a.active {
  color: white;
}
/* line 82, scss/partials/_home.scss */
.home-hero .home-hero-arrow-left {
  position: absolute !important;
  left: 10px;
  position: relative;
  top: 40%;
  -webkit-transform: translateY(-40%);
  -ms-transform: translateY(-40%);
  transform: translateY(-40%);
  z-index: 9;
  color: #fff;
  opacity: .6;
  cursor: pointer;
}
/* line 91, scss/partials/_home.scss */
.home-hero .home-hero-arrow-left img {
  width: 20px;
  height: auto;
}
@media (min-width: 580px) {
  /* line 91, scss/partials/_home.scss */
  .home-hero .home-hero-arrow-left img {
    width: 30px;
    height: auto;
  }
}
@media (min-width: 1024px) {
  /* line 91, scss/partials/_home.scss */
  .home-hero .home-hero-arrow-left img {
    width: 40px;
    height: auto;
  }
}
@media (min-width: 1440px) {
  /* line 91, scss/partials/_home.scss */
  .home-hero .home-hero-arrow-left img {
    width: 60px;
    height: auto;
  }
}
/* line 111, scss/partials/_home.scss */
.home-hero .home-hero-arrow-left:hover {
  opacity: 1;
}
/* line 117, scss/partials/_home.scss */
.home-hero .home-hero-arrow-right {
  position: absolute !important;
  right: 10px;
  position: relative;
  top: 40%;
  -webkit-transform: translateY(-40%);
  -ms-transform: translateY(-40%);
  transform: translateY(-40%);
  z-index: 9;
  color: #fff;
  opacity: .6;
  cursor: pointer;
}
/* line 126, scss/partials/_home.scss */
.home-hero .home-hero-arrow-right:hover {
  opacity: 1;
}
/* line 130, scss/partials/_home.scss */
.home-hero .home-hero-arrow-right img {
  width: 20px;
  height: auto;
}
@media (min-width: 580px) {
  /* line 130, scss/partials/_home.scss */
  .home-hero .home-hero-arrow-right img {
    width: 30px;
    height: auto;
  }
}
@media (min-width: 1024px) {
  /* line 130, scss/partials/_home.scss */
  .home-hero .home-hero-arrow-right img {
    width: 40px;
    height: auto;
  }
}
@media (min-width: 1440px) {
  /* line 130, scss/partials/_home.scss */
  .home-hero .home-hero-arrow-right img {
    width: 60px;
    height: auto;
  }
}
/* line 153, scss/partials/_home.scss */
.home-hero h1 {
  float: left;
  width: 100%;
  letter-spacing: 4px;
  margin: 0 0 40px 0;
  text-transform: uppercase;
  text-align: center;
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
  -moz-transform: translateY(50px);
  -ms-transform: translateY(50px);
  -webkit-transform: translateY(50px);
  transform: translateY(50px);
  -moz-transition: opacity 1s cubic-bezier(0.390, 0.575, 0.565, 1.000), -moz-transform 1s cubic-bezier(0.390, 0.575, 0.565, 1.000);
  -o-transition: opacity 1s cubic-bezier(0.390, 0.575, 0.565, 1.000), -o-transform 1s cubic-bezier(0.390, 0.575, 0.565, 1.000);
  -webkit-transition: opacity 1s cubic-bezier(0.390, 0.575, 0.565, 1.000), -webkit-transform 1s cubic-bezier(0.390, 0.575, 0.565, 1.000);
  transition: opacity 1s cubic-bezier(0.390, 0.575, 0.565, 1.000), transform 1s cubic-bezier(0.390, 0.575, 0.565, 1.000);
}
@media (min-width: 580px) {
  /* line 153, scss/partials/_home.scss */
  .home-hero h1 {
    font-size: 63px;
    font-size: 6.3rem;
  }
}
@media (min-width: 1024px) {
  /* line 153, scss/partials/_home.scss */
  .home-hero h1 {
    font-size: 66px;
    font-size: 6.6rem;
    margin: 0 0 50px 0;
  }
}
@media (min-width: 1440px) {
  /* line 153, scss/partials/_home.scss */
  .home-hero h1 {
    font-size: 73px;
    font-size: 7.3rem;
    margin: 0 0 60px 0;
  }
}
/* line 175, scss/partials/_home.scss */
.home-hero h1.slide-in {
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -moz-transition-delay: 400ms;
  -o-transition-delay: 400ms;
  -webkit-transition-delay: 400ms;
  transition-delay: 400ms;
}
/* line 182, scss/partials/_home.scss */
.home-hero p {
  float: left;
  width: 100%;
  text-align: center;
  margin-top: 30px;
}
/* line 188, scss/partials/_home.scss */
.home-hero p .home-hero-tag-button {
  display: inline-block;
  margin: 0 auto;
  background-color: #3B3D44;
  padding: 10px 15px;
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  font-family: "basic-sans", sans-serif;
  font-weight: 500;
  font-size: 10px;
  font-size: 1rem;
  letter-spacing: 2px;
}
@media (min-width: 580px) {
  /* line 188, scss/partials/_home.scss */
  .home-hero p .home-hero-tag-button {
    padding: 10px 20px;
    font-size: 10px;
    font-size: 1rem;
  }
}
@media (min-width: 1024px) {
  /* line 188, scss/partials/_home.scss */
  .home-hero p .home-hero-tag-button {
    padding: 15px 30px;
    font-size: 10px;
    font-size: 1rem;
  }
}
@media (min-width: 1440px) {
  /* line 188, scss/partials/_home.scss */
  .home-hero p .home-hero-tag-button {
    padding: 20px 40px;
    font-size: 14px;
    font-size: 1.4rem;
  }
}

/* line 222, scss/partials/_home.scss */
.home-hero-background {
  max-height: 490px;
  min-height: 490px;
  position: relative;
  background-color: #2e2e2e;
  overflow: hidden;
}
@media (min-width: 580px) {
  /* line 222, scss/partials/_home.scss */
  .home-hero-background {
    background-position: center top;
    max-height: 900px;
    min-height: 900px;
  }
}
/* line 234, scss/partials/_home.scss */
.home-hero-background .background {
  background: #dadada url("") center top no-repeat;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  -moz-background-size: cover;
  -o-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -moz-transform: scale(1.1, 1.1);
  -ms-transform: scale(1.1, 1.1);
  -webkit-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1);
  -moz-transition: all 1s cubic-bezier(0.390, 0.575, 0.565, 1.000);
  -o-transition: all 1s cubic-bezier(0.390, 0.575, 0.565, 1.000);
  -webkit-transition: all 1s cubic-bezier(0.390, 0.575, 0.565, 1.000);
  transition: all 1s cubic-bezier(0.390, 0.575, 0.565, 1.000);
}
/* line 245, scss/partials/_home.scss */
.home-hero-background .background.slide-in {
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
  -moz-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -moz-transition-delay: 200ms;
  -o-transition-delay: 200ms;
  -webkit-transition-delay: 200ms;
  transition-delay: 200ms;
}
/* line 251, scss/partials/_home.scss */
.home-hero-background .background img {
  display: none;
}
/* line 257, scss/partials/_home.scss */
.home-hero-background .gradient {
  bottom: 0;
  height: 350px;
  left: 0;
  position: absolute;
  width: 100%;
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjAiLz48c3RvcCBvZmZzZXQ9IjkwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, rgba(0, 0, 0, 0)), color-stop(90%, #000000));
  background-image: -moz-linear-gradient(rgba(0, 0, 0, 0), #000000 90%);
  background-image: -webkit-linear-gradient(rgba(0, 0, 0, 0), #000000 90%);
  background-image: linear-gradient(rgba(0, 0, 0, 0), #000000 90%);
}

/* line 266, scss/partials/_home.scss */
.home-scroll {
  background: url("../img/icon_home_arrow.svg") 50% 0% no-repeat;
  display: none;
  height: 80px;
  left: 50%;
  margin-left: -30px;
  position: absolute;
  width: 60px;
  -webkit-animation: home-scroll-bounce 5.5s ease-out infinite;
  /* Safari 4+ */
  -webkit-animation-delay: 2s;
}
@-webkit-keyframes home-scroll-bounce {
  0%, 10%, 20%, 30%, 100% {
    background-position: 50% 0%;
  }
  5%, 15%, 25% {
    background-position: 50% 60%;
  }
}
/* line 287, scss/partials/_home.scss */
.home-recent-announce {
  float: left;
  width: 100%;
  padding-bottom: 20px;
}
@media (min-width: 580px) {
  /* line 287, scss/partials/_home.scss */
  .home-recent-announce {
    padding-bottom: 40px;
  }
}
/* line 295, scss/partials/_home.scss */
.home-recent-announce .home-recent-announce-img {
  text-align: center;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 33.33333%;
  float: left;
  padding-left: 0.83333%;
  padding-right: 0.83333%;
  margin-left: 33.33333%;
  z-index: 30;
  top: -40px;
  position: relative;
}
@media (min-width: 580px) {
  /* line 295, scss/partials/_home.scss */
  .home-recent-announce .home-recent-announce-img {
    top: -60px;
  }
}
/* line 306, scss/partials/_home.scss */
.home-recent-announce .home-recent-announce-img img {
  max-width: 150px;
  max-height: 150px;
  border: 9px solid #ffffff;
}
@media (min-width: 580px) {
  /* line 306, scss/partials/_home.scss */
  .home-recent-announce .home-recent-announce-img img {
    max-width: 180px;
    max-height: 180px;
  }
}
/* line 316, scss/partials/_home.scss */
.home-recent-announce .home-recent-announce-content {
  text-align: center;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 83.33333%;
  float: left;
  padding-left: 0.83333%;
  padding-right: 0.83333%;
  margin-left: 8.33333%;
  float: left;
}
@media (min-width: 580px) {
  /* line 316, scss/partials/_home.scss */
  .home-recent-announce .home-recent-announce-content {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 50%;
    float: left;
    padding-left: 0.83333%;
    padding-right: 0.83333%;
    margin-left: 25%;
  }
}
/* line 325, scss/partials/_home.scss */
.home-recent-announce .home-recent-announce-content h3 {
  color: #A3A6AC;
  text-transform: uppercase;
  letter-spacing: 3px;
}
/* line 330, scss/partials/_home.scss */
.home-recent-announce .home-recent-announce-content h2 {
  font-size: 24px;
  font-size: 2.4rem;
  font-style: italic;
}
@media (min-width: 580px) {
  /* line 330, scss/partials/_home.scss */
  .home-recent-announce .home-recent-announce-content h2 {
    font-size: 38px;
    font-size: 3.8rem;
  }
}
/* line 337, scss/partials/_home.scss */
.home-recent-announce .home-recent-announce-content .recent-announce-line {
  width: 10%;
  background-color: #EBEBEB;
  height: 5px;
  float: left;
  margin-bottom: 15px;
  margin-left: 45%;
  margin-right: 45%;
}
@media (min-width: 580px) {
  /* line 337, scss/partials/_home.scss */
  .home-recent-announce .home-recent-announce-content .recent-announce-line {
    margin: 10px 0 20px 0;
    margin-left: 45%;
    margin-right: 45%;
  }
}
/* line 351, scss/partials/_home.scss */
.home-recent-announce .home-recent-announce-content p {
  color: #A3A6AC;
  line-height: 22px;
  padding-bottom: 10px;
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: 1;
}
@media (min-width: 580px) {
  /* line 351, scss/partials/_home.scss */
  .home-recent-announce .home-recent-announce-content p {
    font-size: 22px;
    font-size: 2.2rem;
    line-height: 34px;
    padding: 25px 0 30px 0;
  }
}
/* line 363, scss/partials/_home.scss */
.home-recent-announce .home-recent-announce-content .button {
  border: 1px solid #979797;
  color: #979797;
  display: inline-block;
  letter-spacing: 2px;
  padding: 1.5em 4em;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 12px;
  font-size: 1.2rem;
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
@media (min-width: 580px) {
  /* line 363, scss/partials/_home.scss */
  .home-recent-announce .home-recent-announce-content .button {
    position: relative;
    overflow: hidden;
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  /* line 376, scss/partials/_home.scss */
  .home-recent-announce .home-recent-announce-content .button:hover {
    background: #3B3D44;
    color: #fff;
  }
  /* line 28, scss/partials/_mixins.scss */
  .home-recent-announce .home-recent-announce-content .button:hover:after {
    top: 0;
  }
  /* line 32, scss/partials/_mixins.scss */
  .home-recent-announce .home-recent-announce-content .button:after {
    background: #3B3D44;
    content: '';
    display: block;
    height: 100%;
    left: 0;
    position: absolute;
    top: 100%;
    width: 100%;
    z-index: -1;
    -moz-transition: top 400ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
    -o-transition: top 400ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
    -webkit-transition: top 400ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
    transition: top 400ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
  }
}

/* line 385, scss/partials/_home.scss */
.home-our-philosophy {
  background: #2e2e2e;
  color: #979797;
  padding: 40px 0 0 0;
  position: relative;
  text-align: center;
  width: 100%;
  -moz-transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}
/* line 393, scss/partials/_home.scss */
.home-our-philosophy h3 {
  background: url("../img/seal_marker.png") center top no-repeat;
  letter-spacing: 3px;
  margin-bottom: 0;
  padding-top: 85px;
  text-transform: uppercase;
  -moz-background-size: 74px 74px;
  -o-background-size: 74px 74px;
  -webkit-background-size: 74px 74px;
  background-size: 74px 74px;
}
@media (-webkit-min-device-pixel-ratio: 1.3), (min-resolution: 124.8dpi), (min-resolution: 1.3dppx) {
  /* line 393, scss/partials/_home.scss */
  .home-our-philosophy h3 {
    background-image: url("../img/seal_marker@2x.png");
  }
}
@media (min-width: 580px) {
  /* line 393, scss/partials/_home.scss */
  .home-our-philosophy h3 {
    padding-top: 185px;
    -moz-background-size: 161px 161px;
    -o-background-size: 161px 161px;
    -webkit-background-size: 161px 161px;
    background-size: 161px 161px;
  }
}
/* line 409, scss/partials/_home.scss */
.home-our-philosophy p {
  line-height: 1.3em;
  margin: 0 auto;
  padding: 30px 0;
  width: 85%;
  font-size: 15px;
  font-size: 1.5rem;
}
@media (min-width: 580px) {
  /* line 409, scss/partials/_home.scss */
  .home-our-philosophy p {
    line-height: 1.4em;
    padding: 60px 0;
    font-size: 33px;
    font-size: 3.3rem;
    width: 65%;
  }
}
/* line 423, scss/partials/_home.scss */
.home-our-philosophy .button {
  border: 1px solid #979797;
  color: #979797;
  display: inline-block;
  letter-spacing: 2px;
  padding: 1.5em 4em;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 12px;
  font-size: 1.2rem;
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
@media (min-width: 580px) {
  /* line 423, scss/partials/_home.scss */
  .home-our-philosophy .button {
    position: relative;
    overflow: hidden;
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  /* line 436, scss/partials/_home.scss */
  .home-our-philosophy .button:hover {
    background: #979797;
    color: #000;
  }
  /* line 28, scss/partials/_mixins.scss */
  .home-our-philosophy .button:hover:after {
    top: 0;
  }
  /* line 32, scss/partials/_mixins.scss */
  .home-our-philosophy .button:after {
    background: #979797;
    content: '';
    display: block;
    height: 100%;
    left: 0;
    position: absolute;
    top: 100%;
    width: 100%;
    z-index: -1;
    -moz-transition: top 400ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
    -o-transition: top 400ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
    -webkit-transition: top 400ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
    transition: top 400ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
  }
}

/* line 444, scss/partials/_home.scss */
.home-our-philosophy-content {
  -moz-transform: translateY(-80px);
  -ms-transform: translateY(-80px);
  -webkit-transform: translateY(-80px);
  transform: translateY(-80px);
  display: none;
}

/* line 448, scss/partials/_home.scss */
.home-featured-producer {
  text-align: center;
  padding: 80px 0;
  float: left;
  position: relative;
}
/* line 454, scss/partials/_home.scss */
.home-featured-producer .container {
  -moz-transform: translateX(-20%);
  -ms-transform: translateX(-20%);
  -webkit-transform: translateX(-20%);
  transform: translateX(-20%);
  opacity: 0;
  z-index: 98;
  -moz-transition: all 1000ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
  -o-transition: all 1000ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
  -webkit-transition: all 1000ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
  transition: all 1000ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
}
/* line 460, scss/partials/_home.scss */
.home-featured-producer .container.active {
  opacity: 1;
  z-index: 99;
  -moz-transform: translateX(0%);
  -ms-transform: translateX(0%);
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
}
/* line 467, scss/partials/_home.scss */
.home-featured-producer h2 {
  color: #3B3D44;
  font-style: italic;
  letter-spacing: 1px;
  font-size: 42px;
  font-size: 4.2rem;
}
/* line 473, scss/partials/_home.scss */
.home-featured-producer h3 {
  color: #A3A6AC;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 12px;
  font-size: 1.2rem;
}
/* line 480, scss/partials/_home.scss */
.home-featured-producer .profile {
  position: relative;
  overflow: hidden;
}
/* line 484, scss/partials/_home.scss */
.home-featured-producer .name {
  position: static;
  width: 100%;
}
@media (min-width: 580px) {
  /* line 484, scss/partials/_home.scss */
  .home-featured-producer .name {
    position: absolute;
    z-index: 1;
  }
}
/* line 493, scss/partials/_home.scss */
.home-featured-producer .card {
  background: #fff;
}
@media (min-width: 580px) {
  /* line 493, scss/partials/_home.scss */
  .home-featured-producer .card {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 33.33333%;
    float: left;
    padding-left: 0.83333%;
    padding-right: 0.83333%;
    margin-left: 33.33333%;
  }
}
/* line 500, scss/partials/_home.scss */
.home-featured-producer .image {
  overflow: hidden;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  float: left;
  padding-left: 0.83333%;
  padding-right: 0.83333%;
  -moz-transition: all 400ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
  -o-transition: all 400ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
  -webkit-transition: all 400ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
  transition: all 400ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
}
/* line 508, scss/partials/_home.scss */
.home-featured-producer .image img {
  display: block;
  width: 100%;
}
@media (min-width: 580px) {
  /* line 508, scss/partials/_home.scss */
  .home-featured-producer .image img {
    float: left;
    width: 50%;
  }
}
/* line 517, scss/partials/_home.scss */
.home-featured-producer .image .image-2 {
  display: none;
}
@media (min-width: 580px) {
  /* line 517, scss/partials/_home.scss */
  .home-featured-producer .image .image-2 {
    display: block;
  }
}
/* line 525, scss/partials/_home.scss */
.home-featured-producer .ribbon {
  border-top: 3px solid #eee;
  height: 32px;
  margin: 30px auto 10px auto;
  position: relative;
  width: 33.3333%;
}
@media (min-width: 580px) {
  /* line 525, scss/partials/_home.scss */
  .home-featured-producer .ribbon {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 16.66667%;
    float: left;
    padding-left: 0.83333%;
    padding-right: 0.83333%;
    margin-left: 41.66667%;
  }
}
/* line 536, scss/partials/_home.scss */
.home-featured-producer .ribbon img {
  display: block;
  width: 16px;
  position: absolute;
  left: 50%;
  margin-left: -8px;
  margin-top: -3px;
  top: 0;
}
/* line 546, scss/partials/_home.scss */
.home-featured-producer .about {
  clear: left;
  line-height: 1.4em;
  margin: 0 auto;
  font-size: 15px;
  font-size: 1.5rem;
}
@media (min-width: 580px) {
  /* line 546, scss/partials/_home.scss */
  .home-featured-producer .about {
    width: 65%;
    font-size: 28px;
    font-size: 2.8rem;
  }
}
/* line 557, scss/partials/_home.scss */
.home-featured-producer .wine-info {
  padding: 30px 0;
}
/* line 559, scss/partials/_home.scss */
.home-featured-producer .wine-info li {
  color: #A3A6AC;
  display: inline-block;
  letter-spacing: 2px;
  line-height: 22px;
  margin: 0 1em;
  padding-left: 22px;
  text-transform: uppercase;
  font-size: 12px;
  font-size: 1.2rem;
}
/* line 570, scss/partials/_home.scss */
.home-featured-producer .wine-info .location {
  background: url("../img/icon_marker.svg") 0 2px no-repeat;
}
/* line 573, scss/partials/_home.scss */
.home-featured-producer .wine-info .vintage {
  background: url("../img/icon_grapes.svg") 0 0 no-repeat;
}
/* line 577, scss/partials/_home.scss */
.home-featured-producer .button {
  border: 1px solid #A3A6AC;
  color: #A3A6AC;
  display: inline-block;
  letter-spacing: 2px;
  padding: 1.5em 4em;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 12px;
  font-size: 1.2rem;
}
@media (min-width: 580px) {
  /* line 577, scss/partials/_home.scss */
  .home-featured-producer .button {
    position: relative;
    overflow: hidden;
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  /* line 589, scss/partials/_home.scss */
  .home-featured-producer .button:hover {
    border-color: #3B3D44;
    background: #3B3D44;
    color: #fff;
  }
  /* line 28, scss/partials/_mixins.scss */
  .home-featured-producer .button:hover:after {
    top: 0;
  }
  /* line 32, scss/partials/_mixins.scss */
  .home-featured-producer .button:after {
    background: #3B3D44;
    content: '';
    display: block;
    height: 100%;
    left: 0;
    position: absolute;
    top: 100%;
    width: 100%;
    z-index: -1;
    -moz-transition: top 400ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
    -o-transition: top 400ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
    -webkit-transition: top 400ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
    transition: top 400ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
  }
}

/* line 598, scss/partials/_home.scss */
.home-recent-news {
  background: #EBEBEB url("../img/temp_background_texture.gif") center center;
  padding: 80px 0;
  text-align: center;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  float: left;
  padding-left: 0.83333%;
  padding-right: 0.83333%;
}
/* line 603, scss/partials/_home.scss */
.home-recent-news h3 {
  background: url("../img/seal_scroll.png") center top no-repeat;
  color: #3B3D44;
  letter-spacing: 3px;
  padding-top: 95px;
  text-transform: uppercase;
  -moz-background-size: 81px 80px;
  -o-background-size: 81px 80px;
  -webkit-background-size: 81px 80px;
  background-size: 81px 80px;
}
@media (-webkit-min-device-pixel-ratio: 1.3), (min-resolution: 124.8dpi), (min-resolution: 1.3dppx) {
  /* line 603, scss/partials/_home.scss */
  .home-recent-news h3 {
    background-image: url("../img/seal_scroll@2x.png");
  }
}
@media (min-width: 580px) {
  /* line 603, scss/partials/_home.scss */
  .home-recent-news h3 {
    padding-top: 240px;
    -moz-background-size: 194px 192px;
    -o-background-size: 194px 192px;
    -webkit-background-size: 194px 192px;
    background-size: 194px 192px;
  }
}
/* line 619, scss/partials/_home.scss */
.home-recent-news .recent-news-grid {
  float: left;
  width: 100%;
  padding-top: 90px;
}
/* line 624, scss/partials/_home.scss */
.home-recent-news .recent-news-grid .recent-news-item {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  float: left;
  padding-left: 0.83333%;
  padding-right: 0.83333%;
  margin-bottom: 80px;
}
@media (min-width: 580px) {
  /* line 624, scss/partials/_home.scss */
  .home-recent-news .recent-news-grid .recent-news-item {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 50%;
    float: left;
    padding-left: 0.83333%;
    padding-right: 0.83333%;
  }
}
@media (min-width: 1024px) {
  /* line 624, scss/partials/_home.scss */
  .home-recent-news .recent-news-grid .recent-news-item {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 33.33333%;
    float: left;
    padding-left: 0.83333%;
    padding-right: 0.83333%;
  }
  /* line 633, scss/partials/_home.scss */
  .home-recent-news .recent-news-grid .recent-news-item:nth-child(3n) {
    float: right;
  }
  /* line 637, scss/partials/_home.scss */
  .home-recent-news .recent-news-grid .recent-news-item:nth-child(3n+1) {
    clear: both;
  }
}
/* line 642, scss/partials/_home.scss */
.home-recent-news .recent-news-grid .recent-news-item .recent-news-img-wrapper {
  float: left;
  width: 90%;
  margin-left: 5%;
  background-size: cover;
  background-position: center center;
  margin-top: -40px;
}
/* line 651, scss/partials/_home.scss */
.home-recent-news .recent-news-grid .recent-news-item .recent-news-img {
  float: left;
  width: 100%;
  background-color: #fff;
  position: relative;
  margin-top: 40px;
}
/* line 658, scss/partials/_home.scss */
.home-recent-news .recent-news-grid .recent-news-item .recent-news-img img {
  float: left;
  width: 100%;
  max-width: auto !important;
}
/* line 665, scss/partials/_home.scss */
.home-recent-news .recent-news-grid .recent-news-item .recent-news-content {
  float: left;
  width: 100%;
  padding: 20px 5%;
  text-align: left;
  background-color: #fff;
}
@media (min-width: 580px) {
  /* line 665, scss/partials/_home.scss */
  .home-recent-news .recent-news-grid .recent-news-item .recent-news-content {
    padding: 30px 5%;
  }
}
/* line 675, scss/partials/_home.scss */
.home-recent-news .recent-news-grid .recent-news-item .recent-news-content h6, .home-recent-news .recent-news-grid .recent-news-item .recent-news-content .footer-links, .home-recent-news .recent-news-grid .recent-news-item .recent-news-content .our-wines-legend, .home-recent-news .recent-news-grid .recent-news-item .recent-news-content .vegan-toggle-wrapper, .home-recent-news .recent-news-grid .recent-news-item .recent-news-content .our-wines-detail .wine-information dt, .our-wines-detail .wine-information .home-recent-news .recent-news-grid .recent-news-item .recent-news-content dt, .home-recent-news .recent-news-grid .recent-news-item .recent-news-content .our-wines-detail .overview .more, .our-wines-detail .overview .home-recent-news .recent-news-grid .recent-news-item .recent-news-content .more, .home-recent-news .recent-news-grid .recent-news-item .recent-news-content .producers-detail .producer-description .more, .producers-detail .producer-description .home-recent-news .recent-news-grid .recent-news-item .recent-news-content .more, .home-recent-news .recent-news-grid .recent-news-item .recent-news-content .news-events-sidebar .widget-categories a, .news-events-sidebar .widget-categories .home-recent-news .recent-news-grid .recent-news-item .recent-news-content a, .home-recent-news .recent-news-grid .recent-news-item .recent-news-content .news-events-sidebar .widget-authors a, .news-events-sidebar .widget-authors .home-recent-news .recent-news-grid .recent-news-item .recent-news-content a {
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #A3A6AC;
}
/* line 681, scss/partials/_home.scss */
.home-recent-news .recent-news-grid .recent-news-item .recent-news-content h2 {
  font-size: 24px;
  font-size: 2.4rem;
}
@media (min-width: 580px) {
  /* line 681, scss/partials/_home.scss */
  .home-recent-news .recent-news-grid .recent-news-item .recent-news-content h2 {
    font-size: 26px;
    font-size: 2.6rem;
    padding-top: 15px;
  }
}
@media (min-width: 1024px) {
  /* line 681, scss/partials/_home.scss */
  .home-recent-news .recent-news-grid .recent-news-item .recent-news-content h2 {
    font-size: 34px;
    font-size: 3.4rem;
    padding: 15px 0 10px 0;
  }
}
/* line 693, scss/partials/_home.scss */
.home-recent-news .recent-news-grid .recent-news-item .recent-news-content p {
  color: #A3A6AC;
  line-height: 24px;
  font-size: 18px;
  font-size: 1.8rem;
}
/* line 698, scss/partials/_home.scss */
.home-recent-news .recent-news-grid .recent-news-item .recent-news-content p.recent-news-link {
  padding-top: 20px;
}
/* line 700, scss/partials/_home.scss */
.home-recent-news .recent-news-grid .recent-news-item .recent-news-content p.recent-news-link a {
  font-style: italic;
  font-size: 20px;
  font-size: 2rem;
  color: #3B3D44;
}
/* line 710, scss/partials/_home.scss */
.home-recent-news ul {
  border-top: 1px solid #A3A6AC;
  margin: 40px 0 60px 0;
}
/* line 714, scss/partials/_home.scss */
.home-recent-news li {
  border-bottom: 1px solid #A3A6AC;
  color: #A3A6AC;
}
/* line 718, scss/partials/_home.scss */
.home-recent-news li h6, .home-recent-news li .footer-links, .home-recent-news li .our-wines-legend, .home-recent-news li .vegan-toggle-wrapper, .home-recent-news li .our-wines-detail .wine-information dt, .our-wines-detail .wine-information .home-recent-news li dt, .home-recent-news li .our-wines-detail .overview .more, .our-wines-detail .overview .home-recent-news li .more, .home-recent-news li .producers-detail .producer-description .more, .producers-detail .producer-description .home-recent-news li .more, .home-recent-news li .news-events-sidebar .widget-categories a, .news-events-sidebar .widget-categories .home-recent-news li a, .home-recent-news li .news-events-sidebar .widget-authors a, .news-events-sidebar .widget-authors .home-recent-news li a {
  margin-bottom: 0px;
}
@media (min-width: 580px) {
  /* line 718, scss/partials/_home.scss */
  .home-recent-news li h6, .home-recent-news li .footer-links, .home-recent-news li .our-wines-legend, .home-recent-news li .vegan-toggle-wrapper, .home-recent-news li .our-wines-detail .wine-information dt, .our-wines-detail .wine-information .home-recent-news li dt, .home-recent-news li .our-wines-detail .overview .more, .our-wines-detail .overview .home-recent-news li .more, .home-recent-news li .producers-detail .producer-description .more, .producers-detail .producer-description .home-recent-news li .more, .home-recent-news li .news-events-sidebar .widget-categories a, .news-events-sidebar .widget-categories .home-recent-news li a, .home-recent-news li .news-events-sidebar .widget-authors a, .news-events-sidebar .widget-authors .home-recent-news li a {
    margin-bottom: 10px;
  }
}
/* line 725, scss/partials/_home.scss */
.home-recent-news li a {
  display: block;
  text-decoration: none;
  overflow: hidden;
  padding: 15px 0 0;
  position: relative;
}
@media (min-width: 580px) {
  /* line 725, scss/partials/_home.scss */
  .home-recent-news li a {
    padding: 30px 0;
  }
  /* line 734, scss/partials/_home.scss */
  .home-recent-news li a:hover {
    background: transparent;
  }
  /* line 736, scss/partials/_home.scss */
  .home-recent-news li a:hover span {
    top: 0;
    filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
    opacity: 1;
  }
}
/* line 743, scss/partials/_home.scss */
.home-recent-news li span {
  background: #fff;
  background: rgba(255, 255, 255, 0.5);
  display: block;
  height: 100%;
  left: 0;
  width: 100%;
  top: 100%;
  position: absolute;
  z-index: -1;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -moz-transition: opacity 400ms cubic-bezier(0.190, 1.000, 0.220, 1.000), top 400ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
  -o-transition: opacity 400ms cubic-bezier(0.190, 1.000, 0.220, 1.000), top 400ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
  -webkit-transition: opacity 400ms cubic-bezier(0.190, 1.000, 0.220, 1.000), top 400ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
  transition: opacity 400ms cubic-bezier(0.190, 1.000, 0.220, 1.000), top 400ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
}
/* line 756, scss/partials/_home.scss */
.home-recent-news li h2 {
  color: #3B3D44;
}
/* line 759, scss/partials/_home.scss */
.home-recent-news li h6, .home-recent-news li .footer-links, .home-recent-news li .our-wines-legend, .home-recent-news li .vegan-toggle-wrapper, .home-recent-news li .our-wines-detail .wine-information dt, .our-wines-detail .wine-information .home-recent-news li dt, .home-recent-news li .our-wines-detail .overview .more, .our-wines-detail .overview .home-recent-news li .more, .home-recent-news li .producers-detail .producer-description .more, .producers-detail .producer-description .home-recent-news li .more, .home-recent-news li .news-events-sidebar .widget-categories a, .news-events-sidebar .widget-categories .home-recent-news li a, .home-recent-news li .news-events-sidebar .widget-authors a, .news-events-sidebar .widget-authors .home-recent-news li a {
  color: #A3A6AC;
  letter-spacing: 2px;
  margin-bottom: 10px;
  text-transform: uppercase;
}
/* line 766, scss/partials/_home.scss */
.home-recent-news .button {
  border: 1px solid #A3A6AC;
  color: #A3A6AC;
  display: inline-block;
  letter-spacing: 2px;
  padding: 1.5em 4em;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 12px;
  font-size: 1.2rem;
  float: none;
}
@media (min-width: 580px) {
  /* line 766, scss/partials/_home.scss */
  .home-recent-news .button {
    position: relative;
    overflow: hidden;
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  /* line 779, scss/partials/_home.scss */
  .home-recent-news .button:hover {
    background: #A3A6AC;
    color: #fff;
  }
  /* line 28, scss/partials/_mixins.scss */
  .home-recent-news .button:hover:after {
    top: 0;
  }
  /* line 32, scss/partials/_mixins.scss */
  .home-recent-news .button:after {
    background: #A3A6AC;
    content: '';
    display: block;
    height: 100%;
    left: 0;
    position: absolute;
    top: 100%;
    width: 100%;
    z-index: -1;
    -moz-transition: top 400ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
    -o-transition: top 400ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
    -webkit-transition: top 400ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
    transition: top 400ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
  }
}

/* line 788, scss/partials/_home.scss */
.portfolios-columns {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  float: left;
  padding-left: 0.83333%;
  padding-right: 0.83333%;
  text-align: center;
  padding: 80px 0;
  float: left;
  position: relative;
}
/* line 795, scss/partials/_home.scss */
.portfolios-columns .section-header {
  position: relative;
  text-align: center;
  color: #3B3D44;
  font-style: italic;
  letter-spacing: 1px;
  margin-bottom: 40px;
}
@media (min-width: 1024px) {
  /* line 795, scss/partials/_home.scss */
  .portfolios-columns .section-header {
    margin-bottom: 80px;
  }
}
/* line 807, scss/partials/_home.scss */
.portfolios-columns .section-header h2 {
  display: inline-block;
  border-bottom: 2px solid #3B3D44;
  margin: 0;
  padding-bottom: 15px;
  font-size: 36px;
  font-size: 3.6rem;
}
@media (min-width: 1024px) {
  /* line 807, scss/partials/_home.scss */
  .portfolios-columns .section-header h2 {
    padding-bottom: 25px;
    font-size: 40px;
    font-size: 4rem;
  }
}
/* line 820, scss/partials/_home.scss */
.portfolios-columns .section-header::after {
  content: "";
  display: block;
  width: 10px;
  height: 20px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 100%);
  background-image: url("../img/icon_ribbon.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
@media (min-width: 580px) {
  /* line 820, scss/partials/_home.scss */
  .portfolios-columns .section-header::after {
    width: 15px;
    height: 30px;
  }
}
/* line 842, scss/partials/_home.scss */
.portfolios-columns .container .portfolio {
  display: block;
  width: 100%;
  max-width: 400px;
  aspect-ratio: 16/9;
  margin: 0 auto 40px;
  box-sizing: border-box;
  position: relative;
}
@media (min-width: 580px) {
  /* line 842, scss/partials/_home.scss */
  .portfolios-columns .container .portfolio {
    width: 27%;
    margin: 0 3% 10px;
    display: inline-block;
  }
}
/* line 857, scss/partials/_home.scss */
.portfolios-columns .container .portfolio img {
  display: block;
  width: 100%;
  max-width: unset;
  height: 100%;
  object-fit: cover;
}
/* line 865, scss/partials/_home.scss */
.portfolios-columns .container .portfolio .logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 65%;
  max-width: 400px;
}

/* line 877, scss/partials/_home.scss */
.instagram-slider {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  float: left;
  padding-left: 0.83333%;
  padding-right: 0.83333%;
  padding: 0 0 80px 0;
}
/* line 881, scss/partials/_home.scss */
.instagram-slider #sb_instagram #sbi_images {
  width: 100%;
  padding: 0 0 20px 0;
}
@media (min-width: 1024px) {
  /* line 881, scss/partials/_home.scss */
  .instagram-slider #sb_instagram #sbi_images {
    padding-bottom: 40px;
  }
}
/* line 889, scss/partials/_home.scss */
.instagram-slider #sb_instagram #sbi_images .sbi_item {
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 1 / 1 !important;
}
/* line 894, scss/partials/_home.scss */
.instagram-slider #sb_instagram #sbi_images .sbi_item .sbi_photo_wrap {
  position: relative;
  width: 100%;
  height: 100%;
}
/* line 899, scss/partials/_home.scss */
.instagram-slider #sb_instagram #sbi_images .sbi_item .sbi_photo_wrap .sbi_photo {
  width: 100% !important;
  height: 100% !important;
}
/* line 907, scss/partials/_home.scss */
.instagram-slider #sb_instagram #sbi_load .sbi_follow_btn a {
  border: 1px solid #A3A6AC;
  color: #A3A6AC;
  display: inline-block;
  letter-spacing: 2px;
  padding: 1.5em 4em;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 12px;
  font-size: 1.2rem;
  float: none;
  border-radius: 0;
  background-color: transparent;
  box-shadow: unset !important;
}
@media (min-width: 580px) {
  /* line 907, scss/partials/_home.scss */
  .instagram-slider #sb_instagram #sbi_load .sbi_follow_btn a {
    position: relative;
    overflow: hidden;
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  /* line 923, scss/partials/_home.scss */
  .instagram-slider #sb_instagram #sbi_load .sbi_follow_btn a:hover, .instagram-slider #sb_instagram #sbi_load .sbi_follow_btn a:focus {
    background: #A3A6AC !important;
    color: #fff !important;
  }
  /* line 927, scss/partials/_home.scss */
  .instagram-slider #sb_instagram #sbi_load .sbi_follow_btn a:hover svg, .instagram-slider #sb_instagram #sbi_load .sbi_follow_btn a:focus svg {
    color: #fff !important;
  }
  /* line 28, scss/partials/_mixins.scss */
  .instagram-slider #sb_instagram #sbi_load .sbi_follow_btn a:hover:after {
    top: 0;
  }
  /* line 32, scss/partials/_mixins.scss */
  .instagram-slider #sb_instagram #sbi_load .sbi_follow_btn a:after {
    background: #A3A6AC;
    content: '';
    display: block;
    height: 100%;
    left: 0;
    position: absolute;
    top: 100%;
    width: 100%;
    z-index: -1;
    -moz-transition: top 400ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
    -o-transition: top 400ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
    -webkit-transition: top 400ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
    transition: top 400ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
  }
}

/* line 936, scss/partials/_home.scss */
.home-ad {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 10px 40px;
  z-index: 900;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: all .5s ease-in-out;
  transform: translate(0);
}
@media (min-width: 580px) {
  /* line 936, scss/partials/_home.scss */
  .home-ad {
    padding: 20px 40px;
    justify-content: space-between;
    flex-direction: row;
    gap: 0;
  }
}
@media (min-width: 1024px) {
  /* line 936, scss/partials/_home.scss */
  .home-ad {
    min-height: 100px;
    justify-content: end;
  }
}
@media (min-width: 1440px) {
  /* line 936, scss/partials/_home.scss */
  .home-ad {
    min-height: 120px;
  }
}
/* line 968, scss/partials/_home.scss */
.home-ad .home-ad__background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  filter: brightness(0.65);
}
/* line 977, scss/partials/_home.scss */
.home-ad .home-ad__background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* line 984, scss/partials/_home.scss */
.home-ad .home-ad__logo {
  display: block;
  height: 60px;
  width: auto;
  flex-shrink: 1;
}
@media (min-width: 1024px) {
  /* line 984, scss/partials/_home.scss */
  .home-ad .home-ad__logo {
    height: calc(100% - 20px);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
/* line 998, scss/partials/_home.scss */
.home-ad .home-ad__logo img {
  width: auto;
  height: 100%;
  object-fit: contain;
}
/* line 1005, scss/partials/_home.scss */
.home-ad .home-ad__button-container {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 20px;
}
/* line 1011, scss/partials/_home.scss */
.home-ad .home-ad__button-container .home-ad__button {
  border: 1px solid #FFF;
  color: #FFF;
  display: block;
  letter-spacing: 2px;
  padding: 1em 2em;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 12px;
  font-size: 1.2rem;
  border-radius: 0;
  background-color: transparent;
  box-shadow: unset !important;
  position: relative;
  overflow: hidden;
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
@media (min-width: 580px) {
  /* line 1011, scss/partials/_home.scss */
  .home-ad .home-ad__button-container .home-ad__button {
    padding: 1.5em 3em;
  }
}
/* line 1030, scss/partials/_home.scss */
.home-ad .home-ad__button-container .home-ad__button:hover, .home-ad .home-ad__button-container .home-ad__button:focus {
  background: #FFF !important;
  color: #3B3D44 !important;
}
/* line 28, scss/partials/_mixins.scss */
.home-ad .home-ad__button-container .home-ad__button:hover:after {
  top: 0;
}
/* line 32, scss/partials/_mixins.scss */
.home-ad .home-ad__button-container .home-ad__button:after {
  background: #FFF;
  content: '';
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 100%;
  width: 100%;
  z-index: -1;
  -moz-transition: top 400ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
  -o-transition: top 400ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
  -webkit-transition: top 400ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
  transition: top 400ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
}
/* line 1037, scss/partials/_home.scss */
.home-ad .home-ad__button-container .home-ad__close {
  display: block;
  cursor: pointer;
  border: none;
  padding: 0;
  color: #FFF;
  appearance: none;
  background: none;
  height: 15px;
  width: 15px;
  background-image: url("../img/close-white.svg");
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 40px;
  right: 10px;
  transform: translateY(-50%);
}
@media (min-width: 580px) {
  /* line 1037, scss/partials/_home.scss */
  .home-ad .home-ad__button-container .home-ad__close {
    position: static;
    transform: none;
  }
}
/* line 1063, scss/partials/_home.scss */
.home-ad.hidden {
  transform: translateY(100%);
}

/* line 3, scss/partials/_our-wines.scss */
.our-wines {
  margin-top: 95px;
}
@media (min-width: 580px) {
  /* line 3, scss/partials/_our-wines.scss */
  .our-wines {
    margin-top: 195px;
  }
}
/* line 9, scss/partials/_our-wines.scss */
.our-wines .breadcrumb {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  float: left;
  padding-left: 0.83333%;
  padding-right: 0.83333%;
}
/* line 12, scss/partials/_our-wines.scss */
.our-wines .page-header {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  float: left;
  padding-left: 0.83333%;
  padding-right: 0.83333%;
}
/* line 15, scss/partials/_our-wines.scss */
.our-wines .page-description {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  float: left;
  padding-left: 0.83333%;
  padding-right: 0.83333%;
}
@media (min-width: 1024px) {
  /* line 15, scss/partials/_our-wines.scss */
  .our-wines .page-description {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 66.66667%;
    float: left;
    padding-left: 0.83333%;
    padding-right: 0.83333%;
  }
}
/* line 22, scss/partials/_our-wines.scss */
.our-wines .pagination {
  border-bottom: 1px solid #D7D8DB;
  padding: 80px 0 60px 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  float: left;
  padding-left: 0.83333%;
  padding-right: 0.83333%;
  text-align: center;
}
@media (min-width: 580px) {
  /* line 22, scss/partials/_our-wines.scss */
  .our-wines .pagination {
    border: 0;
  }
}

/* line 33, scss/partials/_our-wines.scss */
.our-wines-legend {
  color: #A3A6AC;
  letter-spacing: 2px;
  margin-bottom: 40px;
  text-transform: uppercase;
  display: flex;
  flex-wrap: wrap;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  float: left;
  padding-left: 0.83333%;
  padding-right: 0.83333%;
}
/* line 42, scss/partials/_our-wines.scss */
.our-wines-legend li {
  display: flex;
  align-items: center;
  margin-right: 20px;
  margin-bottom: 15px;
}
/* line 48, scss/partials/_our-wines.scss */
.our-wines-legend span {
  display: inline-block;
  height: 26px;
  margin-right: 6px;
  width: 26px;
  border-radius: 50px;
}
/* line 55, scss/partials/_our-wines.scss */
.our-wines-legend .wine-red {
  background: #7F0C2A;
}
/* line 58, scss/partials/_our-wines.scss */
.our-wines-legend .wine-rose {
  background: #DCB2B9;
}
/* line 61, scss/partials/_our-wines.scss */
.our-wines-legend .wine-white {
  background: #F3E9BC;
}
/* line 64, scss/partials/_our-wines.scss */
.our-wines-legend .wine-cider {
  background: #F2BC6B;
}
/* line 67, scss/partials/_our-wines.scss */
.our-wines-legend .wine-vegan {
  background-image: url("../img/icon-vegan.svg");
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}
/* line 73, scss/partials/_our-wines.scss */
.our-wines-legend .wine-certified-organic {
  background-image: url("../img/icon-certified-organic.svg");
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}
/* line 79, scss/partials/_our-wines.scss */
.our-wines-legend .wine-biodynamic {
  background-image: url("../img/icon-biodynamic.svg");
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}

/* line 86, scss/partials/_our-wines.scss */
.our-wines-filter {
  margin-bottom: 30px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  float: left;
  padding-left: 0.83333%;
  padding-right: 0.83333%;
}
/* line 89, scss/partials/_our-wines.scss */
.our-wines-filter h3 {
  border: 0;
  float: none;
  padding: 0;
  letter-spacing: 2px;
  margin-bottom: 20px;
  text-transform: uppercase;
}
@media (min-width: 980px) {
  /* line 89, scss/partials/_our-wines.scss */
  .our-wines-filter h3 {
    border: 1px solid #ebebeb;
    border-right: 0;
    float: left;
    padding: 20px;
    margin-bottom: 0;
  }
}

/* line 106, scss/partials/_our-wines.scss */
.selected-filters {
  margin-bottom: 30px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  float: left;
  padding-left: 0.83333%;
  padding-right: 0.83333%;
}
/* line 110, scss/partials/_our-wines.scss */
.selected-filters ul {
  display: flex;
  flex-wrap: wrap;
}
/* line 114, scss/partials/_our-wines.scss */
.selected-filters ul li {
  font-size: 10px;
  font-size: 1rem;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  padding: 5px;
  letter-spacing: 1px;
  background: #EBEBEB;
  margin-bottom: 10px;
}
@media (min-width: 580px) {
  /* line 114, scss/partials/_our-wines.scss */
  .selected-filters ul li {
    font-size: 12px;
    font-size: 1.2rem;
    padding: 8px;
  }
}
/* line 129, scss/partials/_our-wines.scss */
.selected-filters ul li::after {
  margin-left: 8px;
  width: 10px;
  height: 10px;
}

/* line 137, scss/partials/_our-wines.scss */
.vegan-toggle-wrapper {
  letter-spacing: 2px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  float: left;
  padding: 15px 15px 15px 0;
}
@media (min-width: 580px) {
  /* line 137, scss/partials/_our-wines.scss */
  .vegan-toggle-wrapper {
    padding-left: 15px;
  }
}
/* line 150, scss/partials/_our-wines.scss */
.vegan-toggle-wrapper .vegan-switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
  margin-right: 10px;
}
/* line 157, scss/partials/_our-wines.scss */
.vegan-toggle-wrapper .vegan-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
/* line 164, scss/partials/_our-wines.scss */
.vegan-toggle-wrapper .vegan-switch.active .slider {
  background-color: #3B3D44;
}
/* line 167, scss/partials/_our-wines.scss */
.vegan-toggle-wrapper .vegan-switch.active .slider::before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}
/* line 175, scss/partials/_our-wines.scss */
.vegan-toggle-wrapper .vegan-switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
  border-radius: 34px;
}
/* line 187, scss/partials/_our-wines.scss */
.vegan-toggle-wrapper .vegan-switch .slider::before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
  border-radius: 50%;
}

/* line 203, scss/partials/_our-wines.scss */
.our-wines-item img {
  width: 30%;
  padding: 0;
  float: left;
  box-sizing: border-box;
}
/* line 210, scss/partials/_our-wines.scss */
.our-wines-item .details {
  width: 70%;
  padding: 0 34px 0 0;
  float: left;
  box-sizing: border-box;
}
/* line 217, scss/partials/_our-wines.scss */
.our-wines-item a {
  display: block;
  padding: 20px 0;
  text-decoration: none;
}
/* line 222, scss/partials/_our-wines.scss */
.our-wines-item h2 {
  color: #3B3D44;
  margin: 8px 0 4px 0;
}
@media (min-width: 580px) {
  /* line 222, scss/partials/_our-wines.scss */
  .our-wines-item h2 {
    font-size: 30px;
    font-size: 3rem;
  }
}
/* line 229, scss/partials/_our-wines.scss */
.our-wines-item h6, .our-wines-item .footer-links, .our-wines-item .our-wines-legend, .our-wines-item .vegan-toggle-wrapper, .our-wines-item .our-wines-detail .wine-information dt, .our-wines-detail .wine-information .our-wines-item dt, .our-wines-item .our-wines-detail .overview .more, .our-wines-detail .overview .our-wines-item .more, .our-wines-item .producers-detail .producer-description .more, .producers-detail .producer-description .our-wines-item .more, .our-wines-item .news-events-sidebar .widget-categories a, .news-events-sidebar .widget-categories .our-wines-item a, .our-wines-item .news-events-sidebar .widget-authors a, .news-events-sidebar .widget-authors .our-wines-item a {
  color: #A3A6AC;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0 0 20px 0;
}
/* line 235, scss/partials/_our-wines.scss */
.our-wines-item p {
  color: #A3A6AC;
  line-height: 1.4em;
  @includ font-size(1.4);
}
/* line 240, scss/partials/_our-wines.scss */
.our-wines-item .type {
  display: inline-block;
  height: 6px;
  margin-top: 12px;
  width: 39px;
  -moz-transition: width 600ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
  -o-transition: width 600ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
  -webkit-transition: width 600ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
  transition: width 600ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
}
/* line 246, scss/partials/_our-wines.scss */
.our-wines-item .type.red {
  background: #7F0C2A;
}
/* line 249, scss/partials/_our-wines.scss */
.our-wines-item .type.rose {
  background: #DCB2B9;
}
/* line 252, scss/partials/_our-wines.scss */
.our-wines-item .type.white {
  background: #F3E9BC;
}
/* line 257, scss/partials/_our-wines.scss */
.our-wines-item .our-wines-legend {
  margin: 0;
  padding: 0;
}
/* line 261, scss/partials/_our-wines.scss */
.our-wines-item .our-wines-legend li {
  margin-right: 5px;
  margin-bottom: 5px;
}

/* line 267, scss/partials/_our-wines.scss */
.our-wines-grid {
  min-height: 800px;
}
/* line 271, scss/partials/_our-wines.scss */
.our-wines-grid .our-wines-item {
  border-bottom: 1px solid #D7D8DB;
  padding-bottom: 30px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  float: left;
  padding-left: 0.83333%;
  padding-right: 0.83333%;
}
@media (min-width: 580px) {
  /* line 271, scss/partials/_our-wines.scss */
  .our-wines-grid .our-wines-item {
    border: 0;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 33.33333%;
    float: left;
    padding-left: 0.83333%;
    padding-right: 0.83333%;
  }
  /* line 279, scss/partials/_our-wines.scss */
  .our-wines-grid .our-wines-item:nth-child(3n+1) {
    clear: left;
  }
  /* line 282, scss/partials/_our-wines.scss */
  .our-wines-grid .our-wines-item a {
    -moz-transition: box-shadow 600ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
    -o-transition: box-shadow 600ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
    -webkit-transition: box-shadow 600ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
    transition: box-shadow 600ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
  }
  /* line 284, scss/partials/_our-wines.scss */
  .our-wines-grid .our-wines-item a:hover {
    -moz-box-shadow: 0 0 8px 8px #EBEBEB;
    -webkit-box-shadow: 0 0 8px 8px #EBEBEB;
    box-shadow: 0 0 8px 8px #EBEBEB;
  }
  /* line 286, scss/partials/_our-wines.scss */
  .our-wines-grid .our-wines-item a:hover .type {
    width: 50%;
  }
}

/* line 297, scss/partials/_our-wines.scss */
.our-wines-detail {
  margin-top: 95px;
  padding-bottom: 80px;
}
@media (min-width: 580px) {
  /* line 297, scss/partials/_our-wines.scss */
  .our-wines-detail {
    margin-top: 195px;
  }
}
/* line 304, scss/partials/_our-wines.scss */
.our-wines-detail .breadcrumb {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  float: left;
  padding-left: 0.83333%;
  padding-right: 0.83333%;
}
/* line 307, scss/partials/_our-wines.scss */
.our-wines-detail .column-main {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  float: left;
  padding-left: 0.83333%;
  padding-right: 0.83333%;
}
@media (min-width: 580px) {
  /* line 307, scss/partials/_our-wines.scss */
  .our-wines-detail .column-main {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 66.66667%;
    float: left;
    padding-left: 0.83333%;
    padding-right: 0.83333%;
  }
}
/* line 314, scss/partials/_our-wines.scss */
.our-wines-detail .column-sidebar {
  margin-top: 50px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  float: left;
  padding-left: 0.83333%;
  padding-right: 0.83333%;
}
@media (min-width: 580px) {
  /* line 314, scss/partials/_our-wines.scss */
  .our-wines-detail .column-sidebar {
    margin: 0;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 25%;
    float: left;
    padding-left: 0.83333%;
    padding-right: 0.83333%;
    float: right;
  }
}
/* line 324, scss/partials/_our-wines.scss */
.our-wines-detail .page-header {
  margin-bottom: 0;
}
/* line 326, scss/partials/_our-wines.scss */
.our-wines-detail .page-header:after {
  display: none;
}
/* line 330, scss/partials/_our-wines.scss */
.our-wines-detail .page-header .vegan-icon {
  background-image: url("../img/icon-vegan.svg");
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  display: inline-block;
  width: 32px;
  height: 32px;
  margin-left: 15px;
}
@media (min-width: 580px) {
  /* line 330, scss/partials/_our-wines.scss */
  .our-wines-detail .page-header .vegan-icon {
    width: 50px;
    height: 50px;
  }
}
/* line 346, scss/partials/_our-wines.scss */
.our-wines-detail h3 {
  letter-spacing: 3px;
  margin-bottom: 30px;
  text-transform: uppercase;
}
/* line 352, scss/partials/_our-wines.scss */
.our-wines-detail .producer-header a {
  color: #111;
  text-decoration: none;
}
/* line 355, scss/partials/_our-wines.scss */
.our-wines-detail .producer-header a:hover {
  text-decoration: underline;
}
/* line 359, scss/partials/_our-wines.scss */
.our-wines-detail .producer-header:after {
  background: #EBEBEB;
  content: '';
  display: block;
  margin-top: 20px;
  height: 5px;
  width: 71px;
}
/* line 368, scss/partials/_our-wines.scss */
.our-wines-detail .wine-information {
  margin-bottom: 40px;
  overflow: hidden;
}
/* line 371, scss/partials/_our-wines.scss */
.our-wines-detail .wine-information img {
  display: block;
  float: none;
  margin: 0 auto 30px auto;
  width: 210px;
}
@media (min-width: 980px) {
  /* line 371, scss/partials/_our-wines.scss */
  .our-wines-detail .wine-information img {
    float: left;
    margin: 0 auto;
  }
}
/* line 382, scss/partials/_our-wines.scss */
.our-wines-detail .wine-information dl {
  line-height: 18px;
  margin-bottom: 40px;
  overflow: hidden;
}
@media (min-width: 580px) {
  /* line 382, scss/partials/_our-wines.scss */
  .our-wines-detail .wine-information dl {
    display: block;
    margin: 0;
  }
}
/* line 393, scss/partials/_our-wines.scss */
.our-wines-detail .wine-information dt {
  border-top: 1px solid #EBEBEB;
  color: #A3A6AC;
  float: left;
  letter-spacing: 2px;
  padding: 15px 0;
  text-transform: uppercase;
  width: 35%;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  clear: both;
}
@media (min-width: 1024px) {
  /* line 393, scss/partials/_our-wines.scss */
  .our-wines-detail .wine-information dt {
    padding: 25px 35px;
    width: 30%;
  }
}
@media (min-width: 580px) {
  /* line 393, scss/partials/_our-wines.scss */
  .our-wines-detail .wine-information dt {
    padding: 15px;
  }
}
/* line 412, scss/partials/_our-wines.scss */
.our-wines-detail .wine-information dt:first-of-type {
  border-top: 0;
}
/* line 416, scss/partials/_our-wines.scss */
.our-wines-detail .wine-information dd {
  border-top: 1px solid #EBEBEB;
  border-left: 1px solid #EBEBEB;
  float: left;
  padding: 15px;
  width: 65%;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media (min-width: 1024px) {
  /* line 416, scss/partials/_our-wines.scss */
  .our-wines-detail .wine-information dd {
    padding: 25px 35px;
    width: 70%;
  }
}
@media (min-width: 580px) {
  /* line 416, scss/partials/_our-wines.scss */
  .our-wines-detail .wine-information dd {
    padding: 15px;
  }
}
/* line 431, scss/partials/_our-wines.scss */
.our-wines-detail .wine-information dd:first-of-type {
  border-top: 0;
}
/* line 438, scss/partials/_our-wines.scss */
.our-wines-detail .mobile-accordion-content {
  display: none;
}
@media (min-width: 580px) {
  /* line 438, scss/partials/_our-wines.scss */
  .our-wines-detail .mobile-accordion-content {
    display: block !important;
  }
}
/* line 444, scss/partials/_our-wines.scss */
.our-wines-detail .overview {
  border-top: 1px solid #EBEBEB;
  overflow: hidden;
  padding-top: 30px;
}
@media (min-width: 580px) {
  /* line 444, scss/partials/_our-wines.scss */
  .our-wines-detail .overview {
    border: 0;
    margin-bottom: 30px;
    padding: 0;
  }
}
/* line 454, scss/partials/_our-wines.scss */
.our-wines-detail .overview .mobile-accordion-content {
  padding-bottom: 30px;
}
/* line 457, scss/partials/_our-wines.scss */
.our-wines-detail .overview h3 {
  cursor: pointer;
  position: relative;
  width: 100%;
}
/* line 461, scss/partials/_our-wines.scss */
.our-wines-detail .overview h3:after {
  border-bottom: 4px solid transparent;
  border-left: 5px solid #A3A6AC;
  border-top: 4px solid transparent;
  content: '';
  margin-top: -2px;
  position: absolute;
  right: 0;
  top: 50%;
}
@media (min-width: 580px) {
  /* line 457, scss/partials/_our-wines.scss */
  .our-wines-detail .overview h3 {
    cursor: arrow;
  }
  /* line 474, scss/partials/_our-wines.scss */
  .our-wines-detail .overview h3:after {
    border: 0;
    position: static;
  }
}
/* line 480, scss/partials/_our-wines.scss */
.our-wines-detail .overview p {
  margin: 0 0 7px 0;
  line-height: 1.4em;
}
/* line 485, scss/partials/_our-wines.scss */
.our-wines-detail .overview .more {
  color: #3B3D44;
  letter-spacing: 2px;
  text-transform: uppercase;
}
/* line 492, scss/partials/_our-wines.scss */
.our-wines-detail .employee-quote {
  border-top: 1px solid #EBEBEB;
  padding-top: 30px;
}
@media (min-width: 580px) {
  /* line 492, scss/partials/_our-wines.scss */
  .our-wines-detail .employee-quote {
    margin-bottom: 50px;
    padding-top: 70px;
  }
}
/* line 501, scss/partials/_our-wines.scss */
.our-wines-detail .employee-quote h3 {
  display: block;
  cursor: pointer;
  position: relative;
  width: 100%;
}
/* line 506, scss/partials/_our-wines.scss */
.our-wines-detail .employee-quote h3:after {
  border-bottom: 4px solid transparent;
  border-left: 5px solid #A3A6AC;
  border-top: 4px solid transparent;
  content: '';
  margin-top: -2px;
  position: absolute;
  right: 0;
  top: 50%;
}
@media (min-width: 580px) {
  /* line 501, scss/partials/_our-wines.scss */
  .our-wines-detail .employee-quote h3 {
    display: none;
    cursor: arrow;
  }
  /* line 520, scss/partials/_our-wines.scss */
  .our-wines-detail .employee-quote h3:after {
    border: 0;
    position: static;
  }
}
/* line 526, scss/partials/_our-wines.scss */
.our-wines-detail .employee-quote h4 {
  font-family: "cormorant-garamond", serif, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  text-align: center;
  color: #3B3D44;
  width: 100%;
  margin: 0 auto;
}
@media (min-width: 580px) {
  /* line 526, scss/partials/_our-wines.scss */
  .our-wines-detail .employee-quote h4 {
    width: 80%;
    font-size: 24px;
    line-height: 41px;
  }
}
/* line 543, scss/partials/_our-wines.scss */
.our-wines-detail .employee-quote .quoter {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  margin-top: 3rem;
}
/* line 549, scss/partials/_our-wines.scss */
.our-wines-detail .employee-quote .quoter img {
  border-radius: 9999px;
  height: 85px;
  width: 85px;
  object-fit: cover;
}
/* line 555, scss/partials/_our-wines.scss */
.our-wines-detail .employee-quote .quoter p {
  font-family: "basic-sans", sans-serif, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 14px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: #979797;
}
/* line 568, scss/partials/_our-wines.scss */
.our-wines-detail .press-quote {
  border-top: 1px solid #EBEBEB;
  padding-top: 30px;
}
@media (min-width: 580px) {
  /* line 568, scss/partials/_our-wines.scss */
  .our-wines-detail .press-quote {
    border-bottom: 1px solid #EBEBEB;
    margin-bottom: 50px;
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
/* line 579, scss/partials/_our-wines.scss */
.our-wines-detail .press-quote h3 {
  display: block;
  cursor: pointer;
  position: relative;
  width: 100%;
}
/* line 584, scss/partials/_our-wines.scss */
.our-wines-detail .press-quote h3:after {
  border-bottom: 4px solid transparent;
  border-left: 5px solid #A3A6AC;
  border-top: 4px solid transparent;
  content: '';
  margin-top: -2px;
  position: absolute;
  right: 0;
  top: 50%;
}
@media (min-width: 580px) {
  /* line 579, scss/partials/_our-wines.scss */
  .our-wines-detail .press-quote h3 {
    display: none;
    cursor: arrow;
  }
  /* line 598, scss/partials/_our-wines.scss */
  .our-wines-detail .press-quote h3:after {
    border: 0;
    position: static;
  }
}
/* line 604, scss/partials/_our-wines.scss */
.our-wines-detail .press-quote h4 {
  font-family: "cormorant-garamond", serif, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  text-align: center;
  color: #3B3D44;
  width: 100%;
  margin: 0 auto;
}
@media (min-width: 580px) {
  /* line 604, scss/partials/_our-wines.scss */
  .our-wines-detail .press-quote h4 {
    width: 90%;
    font-size: 24px;
    line-height: 41px;
  }
}
/* line 621, scss/partials/_our-wines.scss */
.our-wines-detail .press-quote .quoter {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  margin-top: 3rem;
}
/* line 627, scss/partials/_our-wines.scss */
.our-wines-detail .press-quote .quoter img {
  border-radius: 9999px;
  height: 85px;
  width: 85px;
  object-fit: cover;
}
/* line 633, scss/partials/_our-wines.scss */
.our-wines-detail .press-quote .quoter p {
  font-family: "basic-sans", sans-serif, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 14px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: #979797;
}
/* line 646, scss/partials/_our-wines.scss */
.our-wines-detail .ratings-reviews {
  border-top: 1px solid #EBEBEB;
  padding-top: 30px;
}
@media (min-width: 580px) {
  /* line 646, scss/partials/_our-wines.scss */
  .our-wines-detail .ratings-reviews {
    margin-bottom: 50px;
    padding-top: 70px;
  }
}
/* line 654, scss/partials/_our-wines.scss */
.our-wines-detail .ratings-reviews h3 {
  cursor: pointer;
  position: relative;
  width: 100%;
}
/* line 658, scss/partials/_our-wines.scss */
.our-wines-detail .ratings-reviews h3:after {
  border-bottom: 4px solid transparent;
  border-left: 5px solid #A3A6AC;
  border-top: 4px solid transparent;
  content: '';
  margin-top: -2px;
  position: absolute;
  right: 0;
  top: 50%;
}
@media (min-width: 580px) {
  /* line 654, scss/partials/_our-wines.scss */
  .our-wines-detail .ratings-reviews h3 {
    cursor: arrow;
  }
  /* line 671, scss/partials/_our-wines.scss */
  .our-wines-detail .ratings-reviews h3:after {
    border: 0;
    position: static;
  }
}
/* line 678, scss/partials/_our-wines.scss */
.our-wines-detail .ratings-reviews .ratings-grid {
  margin-bottom: 30px;
  overflow: hidden;
}
@media (min-width: 580px) {
  /* line 678, scss/partials/_our-wines.scss */
  .our-wines-detail .ratings-reviews .ratings-grid {
    display: block;
    margin: 0;
  }
}
/* line 689, scss/partials/_our-wines.scss */
.our-wines-detail .ratings-reviews .rating {
  overflow: hidden;
  margin-bottom: 30px;
  text-align: center;
  float: left;
  width: 100%;
}
@media (min-width: 580px) {
  /* line 689, scss/partials/_our-wines.scss */
  .our-wines-detail .ratings-reviews .rating {
    width: 50%;
    margin-bottom: 0;
  }
}
@media (min-width: 1024px) {
  /* line 689, scss/partials/_our-wines.scss */
  .our-wines-detail .ratings-reviews .rating {
    width: 33%;
  }
}
/* line 704, scss/partials/_our-wines.scss */
.our-wines-detail .ratings-reviews .rating h2 {
  display: inline-block;
  font-size: 30px;
  font-family: "basic-sans", sans-serif;
  margin-bottom: 5px !important;
  font-weight: 600;
}
/* line 711, scss/partials/_our-wines.scss */
.our-wines-detail .ratings-reviews .rating h6, .our-wines-detail .ratings-reviews .rating .footer-links, .our-wines-detail .ratings-reviews .rating .our-wines-legend, .our-wines-detail .ratings-reviews .rating .vegan-toggle-wrapper, .our-wines-detail .ratings-reviews .rating .wine-information dt, .our-wines-detail .wine-information .ratings-reviews .rating dt, .our-wines-detail .ratings-reviews .rating .overview .more, .our-wines-detail .overview .ratings-reviews .rating .more, .our-wines-detail .ratings-reviews .rating .producers-detail .producer-description .more, .producers-detail .producer-description .our-wines-detail .ratings-reviews .rating .more, .our-wines-detail .ratings-reviews .rating .news-events-sidebar .widget-categories a, .news-events-sidebar .widget-categories .our-wines-detail .ratings-reviews .rating a, .our-wines-detail .ratings-reviews .rating .news-events-sidebar .widget-authors a, .news-events-sidebar .widget-authors .our-wines-detail .ratings-reviews .rating a {
  color: #A3A6AC;
  letter-spacing: 2px;
  margin-bottom: 5px;
  text-transform: uppercase;
}
/* line 717, scss/partials/_our-wines.scss */
.our-wines-detail .ratings-reviews .rating p {
  line-height: 1.2em;
  font-size: 14px;
  font-size: 1.4rem;
}
/* line 723, scss/partials/_our-wines.scss */
.our-wines-detail .ratings-reviews .rating:last-of-type {
  margin-bottom: 0 !important;
}
/* line 728, scss/partials/_our-wines.scss */
.our-wines-detail .related-wines {
  border-top: 1px solid #EBEBEB;
  border-bottom: 1px solid #EBEBEB;
  padding-top: 30px;
}
@media (min-width: 580px) {
  /* line 728, scss/partials/_our-wines.scss */
  .our-wines-detail .related-wines {
    border-bottom: 0;
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
/* line 737, scss/partials/_our-wines.scss */
.our-wines-detail .related-wines h3 {
  cursor: pointer;
  position: relative;
  width: 100%;
}
/* line 741, scss/partials/_our-wines.scss */
.our-wines-detail .related-wines h3:after {
  border-bottom: 4px solid transparent;
  border-left: 5px solid #A3A6AC;
  border-top: 4px solid transparent;
  content: '';
  margin-top: -2px;
  position: absolute;
  right: 0;
  top: 50%;
}
@media (min-width: 580px) {
  /* line 737, scss/partials/_our-wines.scss */
  .our-wines-detail .related-wines h3 {
    cursor: arrow;
  }
  /* line 754, scss/partials/_our-wines.scss */
  .our-wines-detail .related-wines h3:after {
    border: 0;
    position: static;
  }
}
/* line 761, scss/partials/_our-wines.scss */
.our-wines-detail .related-wines-grid {
  margin-bottom: 30px;
  overflow: hidden;
}
@media (min-width: 580px) {
  /* line 761, scss/partials/_our-wines.scss */
  .our-wines-detail .related-wines-grid {
    display: block;
    margin: 0;
  }
}
/* line 770, scss/partials/_our-wines.scss */
.our-wines-detail .related-wines-grid .our-wines-item {
  float: none;
}
@media (min-width: 580px) {
  /* line 770, scss/partials/_our-wines.scss */
  .our-wines-detail .related-wines-grid .our-wines-item {
    float: left;
    width: 50%;
  }
  /* line 776, scss/partials/_our-wines.scss */
  .our-wines-detail .related-wines-grid .our-wines-item:nth-child(2n) {
    clear: left;
  }
}
/* line 780, scss/partials/_our-wines.scss */
.our-wines-detail .related-wines-grid .our-wines-item img {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 12.5%;
  float: left;
  padding-left: 1.25%;
  padding-right: 1.25%;
  padding: 0;
}
/* line 784, scss/partials/_our-wines.scss */
.our-wines-detail .related-wines-grid .our-wines-item .details {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 87.5%;
  float: left;
  padding-left: 1.25%;
  padding-right: 1.25%;
  padding: 0 34px 0 16px;
}
/* line 788, scss/partials/_our-wines.scss */
.our-wines-detail .related-wines-grid .our-wines-item h2 {
  font-size: 28px;
  font-size: 2.8rem;
}
@media (min-width: 1024px) {
  /* line 795, scss/partials/_our-wines.scss */
  .our-wines-detail .related-wines-grid .our-wines-item a:hover .type {
    width: 50%;
  }
}

/* line 805, scss/partials/_our-wines.scss */
.our-wines-detail-sidebar .map {
  display: block;
  margin-bottom: 50px;
  width: 100%;
}
/* line 811, scss/partials/_our-wines.scss */
.our-wines-detail-sidebar .location-information li {
  margin-bottom: 30px;
}
/* line 814, scss/partials/_our-wines.scss */
.our-wines-detail-sidebar .location-information h6, .our-wines-detail-sidebar .location-information .footer-links, .our-wines-detail-sidebar .location-information .our-wines-legend, .our-wines-detail-sidebar .location-information .vegan-toggle-wrapper, .our-wines-detail-sidebar .location-information .our-wines-detail .wine-information dt, .our-wines-detail .wine-information .our-wines-detail-sidebar .location-information dt, .our-wines-detail-sidebar .location-information .our-wines-detail .overview .more, .our-wines-detail .overview .our-wines-detail-sidebar .location-information .more, .our-wines-detail-sidebar .location-information .producers-detail .producer-description .more, .producers-detail .producer-description .our-wines-detail-sidebar .location-information .more, .our-wines-detail-sidebar .location-information .news-events-sidebar .widget-categories a, .news-events-sidebar .widget-categories .our-wines-detail-sidebar .location-information a, .our-wines-detail-sidebar .location-information .news-events-sidebar .widget-authors a, .news-events-sidebar .widget-authors .our-wines-detail-sidebar .location-information a {
  color: #A3A6AC;
  letter-spacing: 2px;
  margin-bottom: 4px;
  text-transform: uppercase;
}
/* line 821, scss/partials/_our-wines.scss */
.our-wines-detail-sidebar .downloads {
  border-top: 1px solid #EBEBEB;
  padding-top: 30px;
}
/* line 824, scss/partials/_our-wines.scss */
.our-wines-detail-sidebar .downloads li {
  min-height: 36px;
  margin-bottom: 30px;
}
/* line 828, scss/partials/_our-wines.scss */
.our-wines-detail-sidebar .downloads .doc {
  background: url("../img/icon_download_doc.svg") left top no-repeat;
  padding-left: 56px;
}
/* line 832, scss/partials/_our-wines.scss */
.our-wines-detail-sidebar .downloads .image {
  background: url("../img/icon_download_image.svg") left top no-repeat;
  padding-left: 56px;
}
/* line 836, scss/partials/_our-wines.scss */
.our-wines-detail-sidebar .downloads a {
  color: #A3A6AC;
  text-decoration: underline;
}
/* line 840, scss/partials/_our-wines.scss */
.our-wines-detail-sidebar .downloads h6, .our-wines-detail-sidebar .downloads .footer-links, .our-wines-detail-sidebar .downloads .our-wines-legend, .our-wines-detail-sidebar .downloads .vegan-toggle-wrapper, .our-wines-detail-sidebar .downloads .our-wines-detail .wine-information dt, .our-wines-detail .wine-information .our-wines-detail-sidebar .downloads dt, .our-wines-detail-sidebar .downloads .our-wines-detail .overview .more, .our-wines-detail .overview .our-wines-detail-sidebar .downloads .more, .our-wines-detail-sidebar .downloads .producers-detail .producer-description .more, .producers-detail .producer-description .our-wines-detail-sidebar .downloads .more, .our-wines-detail-sidebar .downloads .news-events-sidebar .widget-categories a, .news-events-sidebar .widget-categories .our-wines-detail-sidebar .downloads a, .our-wines-detail-sidebar .downloads .news-events-sidebar .widget-authors a, .news-events-sidebar .widget-authors .our-wines-detail-sidebar .downloads a {
  color: #A3A6AC;
  letter-spacing: 2px;
  margin-top: 8px;
  text-transform: uppercase;
}

/* line 848, scss/partials/_our-wines.scss */
.our-wines-detail-back {
  clear: both;
  margin-top: 40px;
  text-align: center;
}
/* line 852, scss/partials/_our-wines.scss */
.our-wines-detail-back .button {
  border: 1px solid #A3A6AC;
  color: #A3A6AC;
  display: inline-block;
  letter-spacing: 2px;
  padding: 1.5em 4em;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 12px;
  font-size: 1.2rem;
  float: none;
}
@media (min-width: 580px) {
  /* line 852, scss/partials/_our-wines.scss */
  .our-wines-detail-back .button {
    position: relative;
    overflow: hidden;
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  /* line 865, scss/partials/_our-wines.scss */
  .our-wines-detail-back .button:hover {
    background: #A3A6AC;
    color: #fff;
  }
  /* line 28, scss/partials/_mixins.scss */
  .our-wines-detail-back .button:hover:after {
    top: 0;
  }
  /* line 32, scss/partials/_mixins.scss */
  .our-wines-detail-back .button:after {
    background: #A3A6AC;
    content: '';
    display: block;
    height: 100%;
    left: 0;
    position: absolute;
    top: 100%;
    width: 100%;
    z-index: -1;
    -moz-transition: top 400ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
    -o-transition: top 400ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
    -webkit-transition: top 400ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
    transition: top 400ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
  }
}

/* line 3, scss/partials/_producers.scss */
.producers {
  position: relative;
}
/* line 5, scss/partials/_producers.scss */
.producers > .container {
  padding-top: 95px;
}
@media (min-width: 580px) {
  /* line 5, scss/partials/_producers.scss */
  .producers > .container {
    padding-top: 195px;
  }
}
/* line 12, scss/partials/_producers.scss */
.producers .breadcrumb {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  float: left;
  padding-left: 0.83333%;
  padding-right: 0.83333%;
}
/* line 15, scss/partials/_producers.scss */
.producers .page-header {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  float: left;
  padding-left: 0.83333%;
  padding-right: 0.83333%;
}
/* line 18, scss/partials/_producers.scss */
.producers .page-description {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  float: left;
  padding-left: 0.83333%;
  padding-right: 0.83333%;
}
@media (min-width: 580px) {
  /* line 18, scss/partials/_producers.scss */
  .producers .page-description {
    margin-bottom: 40px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 66.66667%;
    float: left;
    padding-left: 0.83333%;
    padding-right: 0.83333%;
  }
}
/* line 26, scss/partials/_producers.scss */
.producers .pagination {
  border-bottom: 1px solid #D7D8DB;
  padding: 80px 0 60px 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  float: left;
  padding-left: 0.83333%;
  padding-right: 0.83333%;
  text-align: center;
}
@media (min-width: 580px) {
  /* line 26, scss/partials/_producers.scss */
  .producers .pagination {
    border: 0;
  }
}

/* line 38, scss/partials/_producers.scss */
.producers-filter {
  margin-bottom: 40px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  float: left;
  padding-left: 0.83333%;
  padding-right: 0.83333%;
}
/* line 41, scss/partials/_producers.scss */
.producers-filter h3 {
  border: 0;
  float: none;
  padding: 0;
  letter-spacing: 2px;
  margin-bottom: 20px;
  text-transform: uppercase;
}
@media (min-width: 980px) {
  /* line 41, scss/partials/_producers.scss */
  .producers-filter h3 {
    border: 1px solid #ebebeb;
    border-right: 0;
    float: left;
    padding: 20px;
  }
}

/* line 58, scss/partials/_producers.scss */
.producers-item {
  margin-bottom: 30px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 50%;
  float: left;
  padding-left: 0.83333%;
  padding-right: 0.83333%;
}
/* line 61, scss/partials/_producers.scss */
.producers-item:nth-child(2n+1) {
  clear: left;
}
@media (min-width: 1024px) {
  /* line 58, scss/partials/_producers.scss */
  .producers-item {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 33.33333%;
    float: left;
    padding-left: 0.83333%;
    padding-right: 0.83333%;
  }
  /* line 67, scss/partials/_producers.scss */
  .producers-item:nth-child(1n+1) {
    clear: none;
  }
  /* line 70, scss/partials/_producers.scss */
  .producers-item:nth-child(3n+1) {
    clear: left;
  }
}
/* line 74, scss/partials/_producers.scss */
.producers-item a {
  display: block;
  height: auto;
  overflow: hidden;
  text-decoration: none;
}
@media (min-width: 1024px) {
  /* line 74, scss/partials/_producers.scss */
  .producers-item a {
    aspect-ratio: 9/8;
  }
}
@media (min-width: 1440px) {
  /* line 74, scss/partials/_producers.scss */
  .producers-item a {
    aspect-ratio: 9/7.5;
  }
}
/* line 87, scss/partials/_producers.scss */
.producers-item .logo-wrapper {
  display: block;
  width: 100%;
  aspect-ratio: 3/2;
  position: relative;
  height: auto;
  margin-bottom: 18px;
}
/* line 95, scss/partials/_producers.scss */
.producers-item .logo-wrapper img {
  display: block;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
/* line 102, scss/partials/_producers.scss */
.producers-item .logo-wrapper .logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  max-width: 400px;
}
/* line 111, scss/partials/_producers.scss */
.producers-item h5, .producers-item .description-modal p, .description-modal .producers-item p, .producers-item .our-wines-detail .overview p, .our-wines-detail .overview .producers-item p, .producers-item .producers-detail .producer-description p, .producers-detail .producer-description .producers-item p, .producers-item .about .about-content p, .about .about-content .producers-item p {
  color: #3B3D44;
  margin: 0;
  font-size: 20px;
  font-size: 2rem;
}
/* line 116, scss/partials/_producers.scss */
.producers-item h6, .producers-item .footer-links, .producers-item .our-wines-legend, .producers-item .vegan-toggle-wrapper, .producers-item .our-wines-detail .wine-information dt, .our-wines-detail .wine-information .producers-item dt, .producers-item .our-wines-detail .overview .more, .our-wines-detail .overview .producers-item .more, .producers-item .producers-detail .producer-description .more, .producers-detail .producer-description .producers-item .more, .producers-item .news-events-sidebar .widget-categories a, .news-events-sidebar .widget-categories .producers-item a, .producers-item .news-events-sidebar .widget-authors a, .news-events-sidebar .widget-authors .producers-item a {
  color: #A3A6AC;
  letter-spacing: 2px;
  margin: 0;
  text-transform: uppercase;
  font-size: 12px;
  font-size: 1.2rem;
}

/* line 125, scss/partials/_producers.scss */
.producers-grid {
  min-height: 800px;
}
/* line 128, scss/partials/_producers.scss */
.producers-grid .producers-item a {
  -moz-transition: box-shadow 600ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
  -o-transition: box-shadow 600ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
  -webkit-transition: box-shadow 600ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
  transition: box-shadow 600ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
  -moz-transition: padding 300ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
  -o-transition: padding 300ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
  -webkit-transition: padding 300ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
  transition: padding 300ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
}
@media (min-width: 1024px) {
  /* line 133, scss/partials/_producers.scss */
  .producers-grid .producers-item a:hover {
    padding: 15px;
    -moz-box-shadow: 0 0 8px 8px #EBEBEB;
    -webkit-box-shadow: 0 0 8px 8px #EBEBEB;
    box-shadow: 0 0 8px 8px #EBEBEB;
  }
}

/* line 144, scss/partials/_producers.scss */
.producers-detail {
  margin-top: 95px;
}
@media (min-width: 580px) {
  /* line 144, scss/partials/_producers.scss */
  .producers-detail {
    margin-top: 195px;
    padding-bottom: 80px;
  }
}
/* line 151, scss/partials/_producers.scss */
.producers-detail .breadcrumb {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  float: left;
  padding-left: 0.83333%;
  padding-right: 0.83333%;
}
/* line 154, scss/partials/_producers.scss */
.producers-detail .column-main {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  float: left;
  padding-left: 0.83333%;
  padding-right: 0.83333%;
}
@media (min-width: 580px) {
  /* line 154, scss/partials/_producers.scss */
  .producers-detail .column-main {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 66.66667%;
    float: left;
    padding-left: 0.83333%;
    padding-right: 0.83333%;
  }
}
/* line 161, scss/partials/_producers.scss */
.producers-detail .column-sidebar {
  margin-top: 50px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  float: left;
  padding-left: 0.83333%;
  padding-right: 0.83333%;
}
@media (min-width: 580px) {
  /* line 161, scss/partials/_producers.scss */
  .producers-detail .column-sidebar {
    margin: 0;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 25%;
    float: left;
    padding-left: 0.83333%;
    padding-right: 0.83333%;
    float: right;
  }
}
/* line 171, scss/partials/_producers.scss */
.producers-detail .column-sidebar a {
  color: #3B3D44;
}
/* line 176, scss/partials/_producers.scss */
.producers-detail .producer-description {
  margin-bottom: 40px;
  overflow: hidden;
}
/* line 179, scss/partials/_producers.scss */
.producers-detail .producer-description img {
  float: left;
}
/* line 182, scss/partials/_producers.scss */
.producers-detail .producer-description p {
  line-height: 1.4em;
}
/* line 186, scss/partials/_producers.scss */
.producers-detail .producer-description .more {
  color: #3B3D44;
  letter-spacing: 2px;
  text-transform: uppercase;
}
/* line 193, scss/partials/_producers.scss */
.producers-detail .producer-quote {
  border-bottom: 1px solid #EBEBEB;
  border-top: 1px solid #EBEBEB;
  margin-bottom: 40px;
  padding: 30px 0;
  text-align: center;
}
/* line 199, scss/partials/_producers.scss */
.producers-detail .producer-quote h4 {
  font-style: italic;
  line-height: 1.4em;
  margin-bottom: 10px;
}
/* line 204, scss/partials/_producers.scss */
.producers-detail .producer-quote h6, .producers-detail .producer-quote .footer-links, .producers-detail .producer-quote .our-wines-legend, .producers-detail .producer-quote .vegan-toggle-wrapper, .producers-detail .producer-quote .our-wines-detail .wine-information dt, .our-wines-detail .wine-information .producers-detail .producer-quote dt, .producers-detail .producer-quote .our-wines-detail .overview .more, .our-wines-detail .overview .producers-detail .producer-quote .more, .producers-detail .producer-quote .producer-description .more, .producers-detail .producer-description .producer-quote .more, .producers-detail .producer-quote .news-events-sidebar .widget-categories a, .news-events-sidebar .widget-categories .producers-detail .producer-quote a, .producers-detail .producer-quote .news-events-sidebar .widget-authors a, .news-events-sidebar .widget-authors .producers-detail .producer-quote a {
  color: #A3A6AC;
  letter-spacing: 2px;
  text-transform: uppercase;
}
/* line 210, scss/partials/_producers.scss */
.producers-detail .producer-gallery {
  margin-bottom: 40px;
}
/* line 212, scss/partials/_producers.scss */
.producers-detail .producer-gallery img {
  display: block;
  height: auto;
  width: 100%;
}
/* line 219, scss/partials/_producers.scss */
.producers-detail .producer-wines h3 {
  float: left;
  margin-right: 1em;
  letter-spacing: 3px;
  text-transform: uppercase;
}
/* line 225, scss/partials/_producers.scss */
.producers-detail .producer-wines .our-wines-legend {
  float: left;
  margin: 0;
  width: auto;
}
/* line 230, scss/partials/_producers.scss */
.producers-detail .producer-wines .related-wines-grid {
  float: left;
  width: 100%;
}
/* line 234, scss/partials/_producers.scss */
.producers-detail .producer-wines .our-wines-item {
  background: none;
  border-bottom: 1px solid #EBEBEB;
  float: none;
  position: relative;
  width: 100%;
}
/* line 240, scss/partials/_producers.scss */
.producers-detail .producer-wines .our-wines-item:first-of-type {
  border-top: 1px solid #EBEBEB;
  margin-top: 20px;
}
/* line 244, scss/partials/_producers.scss */
.producers-detail .producer-wines .our-wines-item img {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 25%;
  float: left;
  padding-left: 2.5%;
  padding-right: 2.5%;
  padding: 0;
}
@media (min-width: 580px) {
  /* line 244, scss/partials/_producers.scss */
  .producers-detail .producer-wines .our-wines-item img {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 12.5%;
    float: left;
    padding-left: 1.25%;
    padding-right: 1.25%;
  }
}
/* line 252, scss/partials/_producers.scss */
.producers-detail .producer-wines .our-wines-item .details {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 75%;
  float: left;
  padding-left: 2.5%;
  padding-right: 2.5%;
}
@media (min-width: 580px) {
  /* line 252, scss/partials/_producers.scss */
  .producers-detail .producer-wines .our-wines-item .details {
    padding: 0 34px 0 0;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 87.5%;
    float: left;
    padding-left: 1.25%;
    padding-right: 1.25%;
  }
}
/* line 260, scss/partials/_producers.scss */
.producers-detail .producer-wines .our-wines-item .arrow {
  background: url("../img/icon_arrow_sm_r_gray.svg") center center no-repeat;
  display: block;
  height: 8px;
  right: 0;
  position: absolute;
  top: 50%;
  width: 32px;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -moz-transform: translateX(-20px);
  -ms-transform: translateX(-20px);
  -webkit-transform: translateX(-20px);
  transform: translateX(-20px);
  -moz-transition: opacity 400ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
  -o-transition: opacity 400ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
  -webkit-transition: opacity 400ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
  transition: opacity 400ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
  -moz-transition: -moz-transform 400ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
  -o-transition: -o-transform 400ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
  -webkit-transition: -webkit-transform 400ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
  transition: transform 400ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
}
@media (min-width: 1024px) {
  /* line 277, scss/partials/_producers.scss */
  .producers-detail .producer-wines .our-wines-item a:hover .arrow {
    filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
    opacity: 1;
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  /* line 281, scss/partials/_producers.scss */
  .producers-detail .producer-wines .our-wines-item a:hover .type {
    width: 50%;
  }
}

/* line 291, scss/partials/_producers.scss */
.producers-detail-sidebar h3 {
  letter-spacing: 3px;
  margin-bottom: 30px;
  text-transform: uppercase;
}
/* line 296, scss/partials/_producers.scss */
.producers-detail-sidebar .map {
  display: block;
  margin-bottom: 50px;
  width: 100%;
}
/* line 301, scss/partials/_producers.scss */
.producers-detail-sidebar .location-information {
  border-bottom: 1px solid #EBEBEB;
  margin-bottom: 30px;
}
/* line 304, scss/partials/_producers.scss */
.producers-detail-sidebar .location-information li {
  margin-bottom: 30px;
}
/* line 307, scss/partials/_producers.scss */
.producers-detail-sidebar .location-information h6, .producers-detail-sidebar .location-information .footer-links, .producers-detail-sidebar .location-information .our-wines-legend, .producers-detail-sidebar .location-information .vegan-toggle-wrapper, .producers-detail-sidebar .location-information .our-wines-detail .wine-information dt, .our-wines-detail .wine-information .producers-detail-sidebar .location-information dt, .producers-detail-sidebar .location-information .our-wines-detail .overview .more, .our-wines-detail .overview .producers-detail-sidebar .location-information .more, .producers-detail-sidebar .location-information .producers-detail .producer-description .more, .producers-detail .producer-description .producers-detail-sidebar .location-information .more, .producers-detail-sidebar .location-information .news-events-sidebar .widget-categories a, .news-events-sidebar .widget-categories .producers-detail-sidebar .location-information a, .producers-detail-sidebar .location-information .news-events-sidebar .widget-authors a, .news-events-sidebar .widget-authors .producers-detail-sidebar .location-information a {
  color: #A3A6AC;
  letter-spacing: 2px;
  margin-bottom: 4px;
  text-transform: uppercase;
}
/* line 314, scss/partials/_producers.scss */
.producers-detail-sidebar .downloads {
  border-bottom: 1px solid #EBEBEB;
}
@media (min-width: 580px) {
  /* line 314, scss/partials/_producers.scss */
  .producers-detail-sidebar .downloads {
    border-bottom: 0;
  }
}
/* line 320, scss/partials/_producers.scss */
.producers-detail-sidebar .downloads li {
  min-height: 36px;
  margin-bottom: 30px;
}
/* line 324, scss/partials/_producers.scss */
.producers-detail-sidebar .downloads .doc {
  background: url("../img/icon_download_doc.svg") left top no-repeat;
  padding-left: 56px;
}
/* line 328, scss/partials/_producers.scss */
.producers-detail-sidebar .downloads .image {
  background: url("../img/icon_download_image.svg") left top no-repeat;
  padding-left: 56px;
}
/* line 332, scss/partials/_producers.scss */
.producers-detail-sidebar .downloads a {
  color: #A3A6AC;
  text-decoration: underline;
}
/* line 336, scss/partials/_producers.scss */
.producers-detail-sidebar .downloads h6, .producers-detail-sidebar .downloads .footer-links, .producers-detail-sidebar .downloads .our-wines-legend, .producers-detail-sidebar .downloads .vegan-toggle-wrapper, .producers-detail-sidebar .downloads .our-wines-detail .wine-information dt, .our-wines-detail .wine-information .producers-detail-sidebar .downloads dt, .producers-detail-sidebar .downloads .our-wines-detail .overview .more, .our-wines-detail .overview .producers-detail-sidebar .downloads .more, .producers-detail-sidebar .downloads .producers-detail .producer-description .more, .producers-detail .producer-description .producers-detail-sidebar .downloads .more, .producers-detail-sidebar .downloads .news-events-sidebar .widget-categories a, .news-events-sidebar .widget-categories .producers-detail-sidebar .downloads a, .producers-detail-sidebar .downloads .news-events-sidebar .widget-authors a, .news-events-sidebar .widget-authors .producers-detail-sidebar .downloads a {
  color: #A3A6AC;
  letter-spacing: 2px;
  margin-top: 8px;
  text-transform: uppercase;
}
/* line 343, scss/partials/_producers.scss */
.producers-detail-sidebar .distributor-callout {
  border-bottom: 1px solid #EBEBEB;
  padding-bottom: 30px;
  margin-bottom: 30px;
}
/* line 349, scss/partials/_producers.scss */
.producers-detail-sidebar .distributor-callout form .field {
  display: none;
  position: relative;
  margin-bottom: 10px;
  width: 100%;
  max-width: 250px;
}
@media (min-width: 980px) {
  /* line 349, scss/partials/_producers.scss */
  .producers-detail-sidebar .distributor-callout form .field {
    max-width: 100%;
  }
}
/* line 360, scss/partials/_producers.scss */
.producers-detail-sidebar .distributor-callout form .field select {
  appearance: none;
  width: 100%;
  background-color: #fff;
  border: 1px solid #A3A6AC;
  color: #A3A6AC;
  letter-spacing: 2px;
  line-height: 23px;
  padding: 10px 50px 10px 10px;
  text-transform: uppercase;
}
@media (min-width: 980px) {
  /* line 360, scss/partials/_producers.scss */
  .producers-detail-sidebar .distributor-callout form .field select {
    padding: 15px 50px 15px 20px;
  }
}
/* line 377, scss/partials/_producers.scss */
.producers-detail-sidebar .distributor-callout form .field:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid #A3A6AC;
  content: '';
  display: block;
  height: 8px;
  margin-top: -2px;
  position: absolute;
  right: 20px;
  width: 8px;
  top: 50%;
}
/* line 392, scss/partials/_producers.scss */
.producers-detail-sidebar .distributor-callout form input[type=submit] {
  border: 1px solid #A3A6AC;
  color: #A3A6AC;
  display: inline-block;
  letter-spacing: 2px;
  padding: 1.5em 4em;
  text-decoration: none;
  text-transform: uppercase;
  background: transparent;
  font-size: 12px;
  font-size: 1.2rem;
}
@media (min-width: 580px) {
  /* line 405, scss/partials/_producers.scss */
  .producers-detail-sidebar .distributor-callout form input[type=submit]:hover {
    border-color: #3B3D44 !important;
    background: #3B3D44 !important;
    color: #fff;
  }
}

/* line 3, scss/partials/_portfolios.scss */
.portfolios {
  position: relative;
}
/* line 5, scss/partials/_portfolios.scss */
.portfolios > .container {
  padding-top: 95px;
}
@media (min-width: 580px) {
  /* line 5, scss/partials/_portfolios.scss */
  .portfolios > .container {
    padding-top: 195px;
  }
}
/* line 12, scss/partials/_portfolios.scss */
.portfolios .breadcrumb {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  float: left;
  padding-left: 0.83333%;
  padding-right: 0.83333%;
}
/* line 15, scss/partials/_portfolios.scss */
.portfolios .page-header {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  float: left;
  padding-left: 0.83333%;
  padding-right: 0.83333%;
}
/* line 18, scss/partials/_portfolios.scss */
.portfolios .page-description {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  float: left;
  padding-left: 0.83333%;
  padding-right: 0.83333%;
}
@media (min-width: 580px) {
  /* line 18, scss/partials/_portfolios.scss */
  .portfolios .page-description {
    margin-bottom: 40px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 66.66667%;
    float: left;
    padding-left: 0.83333%;
    padding-right: 0.83333%;
  }
}
/* line 26, scss/partials/_portfolios.scss */
.portfolios .portfolios-list {
  padding: 80px 0 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  float: left;
  padding-left: 0.83333%;
  padding-right: 0.83333%;
}
@media (min-width: 580px) {
  /* line 26, scss/partials/_portfolios.scss */
  .portfolios .portfolios-list {
    padding-top: 150px;
  }
}
/* line 34, scss/partials/_portfolios.scss */
.portfolios .portfolio {
  display: block;
  width: 100%;
  margin-bottom: 80px;
}
@media (min-width: 1024px) {
  /* line 34, scss/partials/_portfolios.scss */
  .portfolios .portfolio {
    display: flex;
    justify-content: space-between;
    margin-bottom: 170px;
  }
}
/* line 44, scss/partials/_portfolios.scss */
.portfolios .portfolio .image-wrapper {
  width: 100%;
  max-width: 250px;
  margin: 0 auto 40px;
}
@media (min-width: 580px) {
  /* line 44, scss/partials/_portfolios.scss */
  .portfolios .portfolio .image-wrapper {
    max-width: 400px;
    margin: 0 auto 60px;
  }
}
@media (min-width: 1024px) {
  /* line 44, scss/partials/_portfolios.scss */
  .portfolios .portfolio .image-wrapper {
    width: 35%;
    max-width: unset;
    margin: 0;
  }
}
/* line 60, scss/partials/_portfolios.scss */
.portfolios .portfolio .image-wrapper img {
  width: 100%;
  display: block;
}
/* line 65, scss/partials/_portfolios.scss */
.portfolios .portfolio .content {
  width: 100%;
}
@media (min-width: 1024px) {
  /* line 65, scss/partials/_portfolios.scss */
  .portfolios .portfolio .content {
    width: 55%;
  }
}
/* line 72, scss/partials/_portfolios.scss */
.portfolios .portfolio .content p {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 29px;
  margin-bottom: 25px;
}
@media (min-width: 1024px) {
  /* line 72, scss/partials/_portfolios.scss */
  .portfolios .portfolio .content p {
    margin-bottom: 40px;
  }
}
/* line 82, scss/partials/_portfolios.scss */
.portfolios .portfolio .content .button {
  border: 1px solid #3B3D44;
  background-color: #3B3D44;
  color: #FFF;
  display: inline-block;
  letter-spacing: 2px;
  padding: 1em 2.5em;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 12px;
  font-size: 1.2rem;
  float: none;
}
@media (min-width: 1024px) {
  /* line 82, scss/partials/_portfolios.scss */
  .portfolios .portfolio .content .button {
    font-size: 15px;
    font-size: 1.5rem;
  }
}
@media (min-width: 580px) {
  /* line 82, scss/partials/_portfolios.scss */
  .portfolios .portfolio .content .button {
    position: relative;
    overflow: hidden;
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  /* line 28, scss/partials/_mixins.scss */
  .portfolios .portfolio .content .button:hover:after {
    top: 0;
  }
  /* line 32, scss/partials/_mixins.scss */
  .portfolios .portfolio .content .button:after {
    background: #A3A6AC;
    content: '';
    display: block;
    height: 100%;
    left: 0;
    position: absolute;
    top: 100%;
    width: 100%;
    z-index: -1;
    -moz-transition: top 400ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
    -o-transition: top 400ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
    -webkit-transition: top 400ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
    transition: top 400ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
  }
}

/* line 107, scss/partials/_portfolios.scss */
.portfolio-single {
  position: relative;
}
/* line 109, scss/partials/_portfolios.scss */
.portfolio-single > .container {
  padding-top: 95px;
}
@media (min-width: 580px) {
  /* line 109, scss/partials/_portfolios.scss */
  .portfolio-single > .container {
    padding-top: 195px;
  }
}
/* line 116, scss/partials/_portfolios.scss */
.portfolio-single .portfolio-header {
  position: relative;
  text-align: center;
}
/* line 120, scss/partials/_portfolios.scss */
.portfolio-single .portfolio-header::after {
  content: "";
  display: block;
  width: 10px;
  height: 20px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 100%);
  background-image: url("../img/icon_ribbon.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
@media (min-width: 580px) {
  /* line 120, scss/partials/_portfolios.scss */
  .portfolio-single .portfolio-header::after {
    width: 15px;
    height: 30px;
  }
}
/* line 140, scss/partials/_portfolios.scss */
.portfolio-single .breadcrumb {
  margin-bottom: 25px;
}
@media (min-width: 580px) {
  /* line 140, scss/partials/_portfolios.scss */
  .portfolio-single .breadcrumb {
    padding-top: 40px;
  }
}
/* line 147, scss/partials/_portfolios.scss */
.portfolio-single .page-header {
  margin-bottom: 100px;
}
@media (min-width: 580px) {
  /* line 147, scss/partials/_portfolios.scss */
  .portfolio-single .page-header {
    margin-bottom: 140px;
  }
}
/* line 154, scss/partials/_portfolios.scss */
.portfolio-single .page-header::after {
  width: 120px;
  margin: 20px auto 0;
}
@media (min-width: 580px) {
  /* line 154, scss/partials/_portfolios.scss */
  .portfolio-single .page-header::after {
    width: 200px;
  }
}
/* line 163, scss/partials/_portfolios.scss */
.portfolio-single .portfolio-info {
  display: block;
  width: 100%;
  margin-bottom: 80px;
}
@media (min-width: 1024px) {
  /* line 163, scss/partials/_portfolios.scss */
  .portfolio-single .portfolio-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 170px;
  }
}
/* line 173, scss/partials/_portfolios.scss */
.portfolio-single .portfolio-info .image-wrapper {
  width: 100%;
  max-width: 250px;
  margin: 0 auto 40px;
}
@media (min-width: 580px) {
  /* line 173, scss/partials/_portfolios.scss */
  .portfolio-single .portfolio-info .image-wrapper {
    max-width: 400px;
    margin: 0 auto 60px;
  }
}
@media (min-width: 1024px) {
  /* line 173, scss/partials/_portfolios.scss */
  .portfolio-single .portfolio-info .image-wrapper {
    width: 35%;
    max-width: unset;
    margin: 0;
  }
}
/* line 189, scss/partials/_portfolios.scss */
.portfolio-single .portfolio-info .image-wrapper img {
  width: 100%;
  display: block;
}
/* line 194, scss/partials/_portfolios.scss */
.portfolio-single .portfolio-info .content {
  width: 100%;
}
@media (min-width: 1024px) {
  /* line 194, scss/partials/_portfolios.scss */
  .portfolio-single .portfolio-info .content {
    width: 55%;
  }
}
/* line 201, scss/partials/_portfolios.scss */
.portfolio-single .portfolio-info .content p {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 29px;
}
/* line 207, scss/partials/_portfolios.scss */
.portfolio-single .producers-header {
  color: #3B3D44;
  margin-bottom: 35px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-family: "basic-sans", sans-serif;
  font-weight: 100;
  font-size: 32px;
  font-size: 3.2rem;
}
@media (min-width: 1024px) {
  /* line 207, scss/partials/_portfolios.scss */
  .portfolio-single .producers-header {
    font-size: 40px;
    font-size: 4rem;
  }
}

/* line 1, scss/partials/_distributors.scss */
.distributors {
  margin-top: 95px;
}
@media (min-width: 580px) {
  /* line 1, scss/partials/_distributors.scss */
  .distributors {
    margin-top: 195px;
  }
}
/* line 7, scss/partials/_distributors.scss */
.distributors .breadcrumb {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  float: left;
  padding-left: 0.83333%;
  padding-right: 0.83333%;
}
/* line 10, scss/partials/_distributors.scss */
.distributors .page-header {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  float: left;
  padding-left: 0.83333%;
  padding-right: 0.83333%;
}
/* line 13, scss/partials/_distributors.scss */
.distributors .page-description {
  margin-bottom: 30px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  float: left;
  padding-left: 0.83333%;
  padding-right: 0.83333%;
}
@media (min-width: 580px) {
  /* line 13, scss/partials/_distributors.scss */
  .distributors .page-description {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 66.66667%;
    float: left;
    padding-left: 0.83333%;
    padding-right: 0.83333%;
  }
}
/* line 21, scss/partials/_distributors.scss */
.distributors .pagination {
  padding: 80px 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  float: left;
  padding-left: 0.83333%;
  padding-right: 0.83333%;
}

/* line 26, scss/partials/_distributors.scss */
.distributors-filter {
  margin-bottom: 40px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  float: left;
  padding-left: 0.83333%;
  padding-right: 0.83333%;
}
/* line 29, scss/partials/_distributors.scss */
.distributors-filter h3 {
  border: 0;
  float: none;
  padding: 0;
  letter-spacing: 2px;
  margin-bottom: 20px;
  text-transform: uppercase;
}
@media (min-width: 980px) {
  /* line 29, scss/partials/_distributors.scss */
  .distributors-filter h3 {
    border: 1px solid #ebebeb;
    border-right: 0;
    float: left;
    padding: 20px;
  }
}

/* line 45, scss/partials/_distributors.scss */
.distributors-item {
  margin-bottom: 60px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  float: left;
  padding-left: 0.83333%;
  padding-right: 0.83333%;
}
@media (min-width: 580px) {
  /* line 45, scss/partials/_distributors.scss */
  .distributors-item {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 50%;
    float: left;
    padding-left: 0.83333%;
    padding-right: 0.83333%;
  }
}
/* line 52, scss/partials/_distributors.scss */
.distributors-item .logo {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 20%;
  float: left;
  padding-left: 2%;
  padding-right: 2%;
  padding: 0;
}
/* line 55, scss/partials/_distributors.scss */
.distributors-item .logo img {
  max-width: 130px;
  width: 100%;
}
/* line 60, scss/partials/_distributors.scss */
.distributors-item .details {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 80%;
  float: left;
  padding-left: 2%;
  padding-right: 2%;
  padding: 0;
}
/* line 64, scss/partials/_distributors.scss */
.distributors-item h4 {
  color: #3B3D44;
  margin-bottom: 10px;
}
/* line 68, scss/partials/_distributors.scss */
.distributors-item h6, .distributors-item .footer-links, .distributors-item .our-wines-legend, .distributors-item .vegan-toggle-wrapper, .distributors-item .our-wines-detail .wine-information dt, .our-wines-detail .wine-information .distributors-item dt, .distributors-item .our-wines-detail .overview .more, .our-wines-detail .overview .distributors-item .more, .distributors-item .producers-detail .producer-description .more, .producers-detail .producer-description .distributors-item .more, .distributors-item .news-events-sidebar .widget-categories a, .news-events-sidebar .widget-categories .distributors-item a, .distributors-item .news-events-sidebar .widget-authors a, .news-events-sidebar .widget-authors .distributors-item a {
  color: #A3A6AC;
  letter-spacing: 2px;
  margin-bottom: 5px;
  text-transform: uppercase;
}
/* line 74, scss/partials/_distributors.scss */
.distributors-item a {
  display: inline-block;
  padding: 5px 0;
  color: #A3A6AC;
  text-decoration: underline;
}
/* line 79, scss/partials/_distributors.scss */
.distributors-item a:hover {
  text-decoration: underline;
}

/* line 84, scss/partials/_distributors.scss */
.distributors-grid {
  min-height: 800px;
}
/* line 86, scss/partials/_distributors.scss */
.distributors-grid .distributors-state {
  margin-bottom: 20px;
  padding-top: 30px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  float: left;
  padding-left: 0.83333%;
  padding-right: 0.83333%;
  border-top: 1px solid #EBEBEB;
}
/* line 91, scss/partials/_distributors.scss */
.distributors-grid .distributors-state h3 {
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* line 99, scss/partials/_distributors.scss */
.distributor-map {
  padding-top: 0px;
}
@media (min-width: 580px) {
  /* line 99, scss/partials/_distributors.scss */
  .distributor-map {
    padding-top: 0px;
  }
}

/** new **/
/* line 109, scss/partials/_distributors.scss */
.content-distributors-map {
  margin: 0 auto;
  overflow: hidden;
  margin-top: 90px;
  margin-bottom: 90px;
}
/* line 116, scss/partials/_distributors.scss */
.content-distributors-map .content-distributors-map__container {
  position: relative;
  width: 100%;
  background: #ebebeb;
  padding: 100px 0;
  z-index: 0;
}
@media (min-width: 580px) {
  /* line 116, scss/partials/_distributors.scss */
  .content-distributors-map .content-distributors-map__container {
    padding: 50px 0;
  }
}
/* line 127, scss/partials/_distributors.scss */
.content-distributors-map .content-distributors-map__container .content-distributors-map__bg {
  position: absolute;
  width: 100%;
  bottom: 0;
  opacity: .3;
  z-index: -10;
}
/* line 135, scss/partials/_distributors.scss */
.content-distributors-map .content-distributors-map__container .content-distributors-map__bg-div {
  position: absolute;
  bottom: 0;
  width: 100%;
  aspect-ratio: 1512/645;
  z-index: -10;
}
/* line 143, scss/partials/_distributors.scss */
.content-distributors-map .content-distributors-map__container .content-distributors-map__map-wrapper {
  margin: 0 auto;
}

/* line 149, scss/partials/_distributors.scss */
.content-distributors-map .facetwp-type-map {
  height: 400px;
  width: 100%;
  margin-bottom: 0;
}

@media (min-width: 992px) {
  /* line 156, scss/partials/_distributors.scss */
  .content-distributors-map .facetwp-type-map {
    height: 100%;
    width: 50%;
    margin-bottom: 0;
  }
}
/* line 163, scss/partials/_distributors.scss */
.content-distributors-map .facetwp-type-map #facetwp-map {
  height: 100% !important;
  width: 100% !important;
}

/* line 168, scss/partials/_distributors.scss */
.content-distributors-map .facetwp-map-filtering {
  display: none;
}

/* line 172, scss/partials/_distributors.scss */
.content-distributors-map .facetwp-facet {
  margin-bottom: 0;
}

/* line 176, scss/partials/_distributors.scss */
.content-distributors-map .facetwp-type-dropdown {
  position: relative;
}

/* line 180, scss/partials/_distributors.scss */
.content-distributors-map .facetwp-type-dropdown:before {
  content: '';
  position: absolute;
  right: 0.75rem;
  top: 0;
  width: 8px;
  height: 100%;
  pointer-events: none;
  background-repeat: no-repeat;
  background-image: url("../../../assets/img/dropdown-arrows.svg");
  background-size: 100%;
  background-position: center;
}

/* line 194, scss/partials/_distributors.scss */
.content-distributors-map .facetwp-type-dropdown select {
  height: 44px;
  background: white;
  border: 1px solid #5A5E60;
  color: #5A5E60;
  padding: 0.5rem 2rem 0.5rem 0.75rem;
  font-size: 16px;
  appearance: none;
}

/* line 204, scss/partials/_distributors.scss */
.content-distributors-map .facetwp-reset {
  color: #003A5A;
  text-decoration: underline;
  font-size: 16px;
}

/* line 210, scss/partials/_distributors.scss */
.content-distributors-map .facetwp-template[data-name="distributors"] {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* line 216, scss/partials/_distributors.scss */
.content-distributors-map .facetwp-facet-load_more {
  text-align: center;
}

/* line 220, scss/partials/_distributors.scss */
.content-distributors-map .facetwp-facet-load_more .facetwp-load-more {
  background: white;
  color: #003A5A;
  border: 1px solid #003A5A;
  padding: 0.75rem 1rem 0.75rem 1.25rem;
  font-size: 16px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 4px;
}

/* line 231, scss/partials/_distributors.scss */
.content-distributors-map .gm-style .gm-style-iw-c {
  box-shadow: 10px 10px 23px 0px rgba(0, 0, 0, 0.08);
  border-radius: 3px;
}

/* line 235, scss/partials/_distributors.scss */
.content-distributors-map .gm-style .gm-style-iw-tc {
  filter: drop-shadow(10px 10px 23px rgba(0, 0, 0, 0.08));
  /* border-radius: 3px; */
}

/* line 240, scss/partials/_distributors.scss */
.content-distributors-map .gm-ui-hover-effect {
  top: 4px !important;
  right: 4px !important;
  width: 36px !important;
  height: 40px !important;
}

/* line 247, scss/partials/_distributors.scss */
.content-distributors-map .gm-ui-hover-effect span {
  mask-image: url("../../../assets/img/nav-close-button.svg") !important;
  width: 18px !important;
  height: 18px !important;
}

/* line 253, scss/partials/_distributors.scss */
.content-distributors-map .gm-style-iw-d {
  min-width: 100px;
  min-height: 30px;
}

/* line 258, scss/partials/_distributors.scss */
.content-distributors-map .tt_sm {
  border-radius: 0;
}

/* line 262, scss/partials/_distributors.scss */
.content-distributors-map .tt_custom_sm {
  overflow-y: scroll !important;
  max-height: 200px;
}
@media (min-width: 1024px) {
  /* line 262, scss/partials/_distributors.scss */
  .content-distributors-map .tt_custom_sm {
    max-height: unset;
  }
}

/* line 270, scss/partials/_distributors.scss */
.content-distributors-map .tt_sm_map {
  max-width: 500px;
}

/* line 274, scss/partials/_distributors.scss */
.content-distributors-map .tt_sm .distributor-map-info {
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  margin-bottom: 10px;
  padding: 6px;
  gap: 15px;
}
@media (min-width: 1024px) {
  /* line 274, scss/partials/_distributors.scss */
  .content-distributors-map .tt_sm .distributor-map-info {
    flex-direction: row;
    text-align: left;
  }
}
/* line 287, scss/partials/_distributors.scss */
.content-distributors-map .tt_sm .distributor-map-info .distributor-map-content {
  flex-basis: 75%;
}
/* line 291, scss/partials/_distributors.scss */
.content-distributors-map .tt_sm .distributor-map-info .distributor-name {
  margin-bottom: 0;
}
/* line 295, scss/partials/_distributors.scss */
.content-distributors-map .tt_sm .distributor-map-info .distributor-logo {
  display: block;
  height: 7rem;
  width: 12rem;
  object-fit: contain;
  flex-basis: 25%;
}
/* line 302, scss/partials/_distributors.scss */
.content-distributors-map .tt_sm .distributor-map-info .distributor-website-btn {
  border: 1px solid #A3A6AC;
  color: #A3A6AC;
  display: inline-block;
  letter-spacing: 2px;
  padding: 1.5em 4em;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 12px;
  font-size: 1.2rem;
  float: none;
  transition: all 150ms linear;
}
@media (min-width: 580px) {
  /* line 316, scss/partials/_distributors.scss */
  .content-distributors-map .tt_sm .distributor-map-info .distributor-website-btn:hover {
    background: #A3A6AC;
    color: #fff;
  }
}

/* line 324, scss/partials/_distributors.scss */
.content-distributors-map .tt_name_sm {
  font-family: "basic-sans", sans-serif;
  font-size: 16px;
  margin-bottom: 10px;
}

/* line 330, scss/partials/_distributors.scss */
.content-distributors-map .sm_label {
  border-radius: 0 !important;
}

/* line 334, scss/partials/_distributors.scss */
.content-distributors-map #map_holder {
  margin: 0 auto;
}

/* line 338, scss/partials/_distributors.scss */
.content-distributors-map .button-container .button {
  border: 1px solid #A3A6AC;
  color: #A3A6AC;
  display: inline-block;
  letter-spacing: 2px;
  padding: 1.5em 4em;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 12px;
  font-size: 1.2rem;
  float: none;
  transition: all 150ms linear;
}
@media (min-width: 580px) {
  /* line 352, scss/partials/_distributors.scss */
  .content-distributors-map .button-container .button:hover {
    background: #A3A6AC;
    color: #fff;
  }
}

/* line 360, scss/partials/_distributors.scss */
.all-distributors-grid h2 {
  text-align: center;
  margin-bottom: 50px;
}
/* line 365, scss/partials/_distributors.scss */
.all-distributors-grid .all-distributors-grid__pagination {
  float: left;
  width: 100%;
}
/* line 370, scss/partials/_distributors.scss */
.all-distributors-grid .facetwp-facet.facetwp-facet-load_more.facetwp-type-pager {
  text-align: center;
  margin: 50px 0 !important;
}
/* line 374, scss/partials/_distributors.scss */
.all-distributors-grid .facetwp-facet.facetwp-facet-load_more.facetwp-type-pager .facetwp-load-more {
  border: 1px solid #A3A6AC;
  color: #A3A6AC;
  background-color: white;
  display: inline-block;
  letter-spacing: 2px;
  padding: 1.5em 4em;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 12px;
  font-size: 1.2rem;
  float: none;
  transition: all 150ms linear;
}
@media (min-width: 580px) {
  /* line 389, scss/partials/_distributors.scss */
  .all-distributors-grid .facetwp-facet.facetwp-facet-load_more.facetwp-type-pager .facetwp-load-more:hover {
    background: #A3A6AC;
    color: #fff;
  }
}
/* line 397, scss/partials/_distributors.scss */
.all-distributors-grid .distributors-filter {
  margin-bottom: 30px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  float: left;
  padding-left: 0.83333%;
  padding-right: 0.83333%;
}
/* line 400, scss/partials/_distributors.scss */
.all-distributors-grid .distributors-filter h3 {
  border: 0;
  padding: 0;
  letter-spacing: 2px;
  margin-bottom: 20px;
  text-transform: uppercase;
}
@media (min-width: 980px) {
  /* line 400, scss/partials/_distributors.scss */
  .all-distributors-grid .distributors-filter h3 {
    border: 1px solid #ebebeb;
    border-right: 0;
    padding: 20px;
    margin-bottom: 0;
  }
}
/* line 418, scss/partials/_distributors.scss */
.all-distributors-grid .all-distributors-grid__facet-wrapper {
  float: left;
  width: 100%;
}
/* line 422, scss/partials/_distributors.scss */
.all-distributors-grid .all-distributors-grid__facet-wrapper .facetwp-template {
  list-style-type: none;
  margin: 0 auto;
  margin-bottom: 40px;
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
@media (min-width: 580px) {
  /* line 422, scss/partials/_distributors.scss */
  .all-distributors-grid .all-distributors-grid__facet-wrapper .facetwp-template {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  /* line 422, scss/partials/_distributors.scss */
  .all-distributors-grid .all-distributors-grid__facet-wrapper .facetwp-template {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (min-width: 1440px) {
  /* line 422, scss/partials/_distributors.scss */
  .all-distributors-grid .all-distributors-grid__facet-wrapper .facetwp-template {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
/* line 442, scss/partials/_distributors.scss */
.all-distributors-grid .all-distributors-grid__facet-wrapper .facetwp-template .card-distributor {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  background-color: white;
  text-align: center;
  box-shadow: 10px 10px 23px 0px rgba(0, 0, 0, 0.08);
  padding-top: 2.75rem;
  padding-bottom: 2.75rem;
  padding-right: 1.25rem;
  padding-left: 1.25rem;
  margin-bottom: 0;
}
/* line 459, scss/partials/_distributors.scss */
.all-distributors-grid .all-distributors-grid__facet-wrapper .facetwp-template .card-distributor .card-distributor__logo {
  display: block;
  width: 100%;
  height: auto;
  max-width: 200px;
}
/* line 467, scss/partials/_distributors.scss */
.all-distributors-grid .all-distributors-grid__facet-wrapper .facetwp-template .card-distributor .card-distributor__img-wrapper {
  width: 100%;
  text-align: -webkit-center;
  place-content: center;
  height: 200px;
  margin: 0 auto;
}
/* line 474, scss/partials/_distributors.scss */
.all-distributors-grid .all-distributors-grid__facet-wrapper .facetwp-template .card-distributor .card-distributor__hr {
  height: 1px;
  background-color: #DFDFDF;
  margin: 20px 0;
}
/* line 482, scss/partials/_distributors.scss */
.all-distributors-grid .all-distributors-grid__facet-wrapper .facetwp-template .card-distributor .card-distributor__title {
  font-family: "basic-sans", sans-serif;
  font-size: 16px;
  margin-bottom: 10px;
}
/* line 490, scss/partials/_distributors.scss */
.all-distributors-grid .all-distributors-grid__facet-wrapper .facetwp-template .card-distributor .button {
  border: 1px solid #A3A6AC;
  color: #A3A6AC;
  display: inline-block;
  letter-spacing: 2px;
  padding: 1.5em 4em;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 12px;
  font-size: 1.2rem;
  float: none;
  transition: all 150ms linear;
}
@media (min-width: 580px) {
  /* line 504, scss/partials/_distributors.scss */
  .all-distributors-grid .all-distributors-grid__facet-wrapper .facetwp-template .card-distributor .button:hover {
    background: #A3A6AC;
    color: #fff;
  }
}

/* line 515, scss/partials/_distributors.scss */
.facetwp-hidden {
  display: none !important;
  visibility: hidden !important;
}

/* line 3, scss/partials/_about.scss */
.about {
  margin-top: 95px;
}
@media (min-width: 580px) {
  /* line 3, scss/partials/_about.scss */
  .about {
    margin-top: 195px;
  }
}
/* line 9, scss/partials/_about.scss */
.about .breadcrumb {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  float: left;
  padding-left: 0.83333%;
  padding-right: 0.83333%;
}
/* line 12, scss/partials/_about.scss */
.about .page-header {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  float: left;
  padding-left: 0.83333%;
  padding-right: 0.83333%;
}
/* line 15, scss/partials/_about.scss */
.about .about-content {
  max-width: 100%;
  margin-bottom: 60px;
}
/* line 18, scss/partials/_about.scss */
.about .about-content p {
  line-height: 1.4em;
}
@media (min-width: 1024px) {
  /* line 15, scss/partials/_about.scss */
  .about .about-content {
    max-width: 60%;
  }
}
/* line 26, scss/partials/_about.scss */
.about .about-stats {
  display: grid;
  align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
  margin: 60px 0;
  gap: 60px;
}
@media (min-width: 580px) {
  /* line 26, scss/partials/_about.scss */
  .about .about-stats {
    grid-template-columns: repeat(auto-fit, minmax(25%, 1fr));
    gap: 0;
  }
}
/* line 36, scss/partials/_about.scss */
.about .about-stats .stat {
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 300px);
}
/* line 40, scss/partials/_about.scss */
.about .about-stats .stat h3 {
  font-family: "basic-sans", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 68px;
  line-height: 42px;
  text-align: center;
  color: #3B3D44;
}
/* line 49, scss/partials/_about.scss */
.about .about-stats .stat p {
  font-family: "basic-sans", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 14.6948px;
  line-height: 18px;
  text-align: center;
  letter-spacing: 0.145em;
  text-transform: uppercase;
  color: #979797;
  margin-bottom: 0px;
}
/* line 63, scss/partials/_about.scss */
.about .about-menu {
  margin: 60px 0;
}
/* line 65, scss/partials/_about.scss */
.about .about-menu ul {
  display: flex;
  justify-content: space-between;
  max-width: 100%;
  flex-wrap: wrap;
  place-content: center;
}
@media (min-width: 580px) {
  /* line 65, scss/partials/_about.scss */
  .about .about-menu ul {
    max-width: 35%;
    flex-wrap: nowrap;
    place-content: unset;
  }
}
@media (min-width: 1024px) {
  /* line 65, scss/partials/_about.scss */
  .about .about-menu ul {
    max-width: 100%;
    flex-wrap: nowrap;
    place-content: unset;
  }
}
/* line 81, scss/partials/_about.scss */
.about .about-menu ul li a {
  font-family: "cormorant-garamond", serif;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 29px;
  color: #3B3D44;
  text-decoration: none;
  margin-right: 2rem;
}
/* line 91, scss/partials/_about.scss */
.about .about-menu ul li a:hover {
  border-bottom: 5px solid #EBEBEB;
}
/* line 98, scss/partials/_about.scss */
.about .about-founders h2 {
  font-family: "basic-sans", sans-serif;
  font-style: normal;
  font-weight: 275;
  font-size: 40px;
  line-height: 48px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #3B3D44;
  margin: 60px 0;
}
/* line 109, scss/partials/_about.scss */
.about .about-founders .founder-container {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  width: 100%;
  gap: 20px;
}
@media (min-width: 580px) {
  /* line 109, scss/partials/_about.scss */
  .about .about-founders .founder-container {
    flex-direction: row;
  }
}
/* line 118, scss/partials/_about.scss */
.about .about-founders .founder-container .founder {
  display: flex;
  flex-direction: column;
  flex-basis: 100%;
  flex: 1;
}
/* line 123, scss/partials/_about.scss */
.about .about-founders .founder-container .founder img {
  margin-bottom: 50px;
}
/* line 127, scss/partials/_about.scss */
.about .about-founders .founder-container .founder h3 {
  font-family: "cormorant-garamond", serif;
  font-style: normal;
  font-weight: 400;
  font-size: 30px;
  line-height: 42px;
  color: #3B3D44;
}
/* line 135, scss/partials/_about.scss */
.about .about-founders .founder-container .founder p {
  font-family: "cormorant-garamond", serif;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 29px;
  color: #3B3D44;
  max-width: 100%;
}
@media (min-width: 580px) {
  /* line 135, scss/partials/_about.scss */
  .about .about-founders .founder-container .founder p {
    max-width: 80%;
  }
}
/* line 147, scss/partials/_about.scss */
.about .about-founders .founder-container .founder a.link {
  font-family: "cormorant-garamond", serif;
  font-style: italic;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  text-decoration-line: underline;
  color: #979797;
}
/* line 160, scss/partials/_about.scss */
.about .about-employees h2 {
  font-family: "basic-sans", sans-serif;
  font-style: normal;
  font-weight: 275;
  font-size: 40px;
  line-height: 48px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #3B3D44;
  margin: 60px 0;
}
/* line 171, scss/partials/_about.scss */
.about .about-employees .employee-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 110px;
  align-items: start;
}
/* line 185, scss/partials/_about.scss */
.about .about-employees .employee-container .employee-card {
  flex: 0 0 100%;
  background-color: white;
  box-shadow: 0px 4px 65px 6px rgba(59, 61, 68, 0.1);
  padding: 20px;
  margin-bottom: 75px;
}
@media (min-width: 580px) {
  /* line 185, scss/partials/_about.scss */
  .about .about-employees .employee-container .employee-card {
    flex: 0 0 48%;
  }
}
@media (min-width: 1024px) {
  /* line 185, scss/partials/_about.scss */
  .about .about-employees .employee-container .employee-card {
    flex: 0 0 32%;
  }
}
/* line 199, scss/partials/_about.scss */
.about .about-employees .employee-container .employee-card img {
  margin-top: -70px;
  height: 80%;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
/* line 206, scss/partials/_about.scss */
.about .about-employees .employee-container .employee-card h3 {
  font-family: "cormorant-garamond", serif;
  font-style: normal;
  font-weight: 400;
  font-size: 30px;
  line-height: 42px;
  color: #3B3D44;
  margin-top: 20px;
}
/* line 215, scss/partials/_about.scss */
.about .about-employees .employee-container .employee-card h4 {
  font-family: "basic-sans", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: 14px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: #979797;
}
/* line 225, scss/partials/_about.scss */
.about .about-employees .employee-container .employee-card p {
  font-family: "cormorant-garamond", serif;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 29px;
  color: #3B3D44;
}
/* line 233, scss/partials/_about.scss */
.about .about-employees .employee-container .employee-card a.email {
  font-family: "cormorant-garamond", serif;
  font-style: italic;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  text-decoration-line: underline;
  color: #979797;
}

/* line 313, scss/partials/_about.scss */
.about-news {
  padding: 80px 0;
}
@media (min-width: 580px) {
  /* line 313, scss/partials/_about.scss */
  .about-news {
    border: 0;
  }
}
/* line 319, scss/partials/_about.scss */
.about-news h3 {
  letter-spacing: 3px;
  margin-bottom: 60px;
  text-align: center;
  text-transform: uppercase;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  float: left;
  padding-left: 0.83333%;
  padding-right: 0.83333%;
}
/* line 326, scss/partials/_about.scss */
.about-news .news-events-grid {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
/* line 331, scss/partials/_about.scss */
.about-news .news-events-item {
  float: none !important;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  float: left;
  padding-left: 0.83333%;
  padding-right: 0.83333%;
}
@media (min-width: 580px) {
  /* line 331, scss/partials/_about.scss */
  .about-news .news-events-item {
    border-bottom: 0;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 50%;
    float: left;
    padding-left: 0.83333%;
    padding-right: 0.83333%;
    padding-left: 9.16667%;
  }
  /* line 340, scss/partials/_about.scss */
  .about-news .news-events-item:nth-child(2n+1) {
    border-right: 1px solid #EBEBEB;
    padding-right: 9.16667%;
    padding-left: 0.83333%;
  }
}
/* line 347, scss/partials/_about.scss */
.about-news .all-posts {
  border-bottom: 1px solid #EBEBEB;
  clear: left;
  padding-bottom: 35px;
  text-align: center;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  float: left;
  padding-left: 0.83333%;
  padding-right: 0.83333%;
}
@media (min-width: 580px) {
  /* line 347, scss/partials/_about.scss */
  .about-news .all-posts {
    border: 0;
    padding: 0;
  }
}
/* line 358, scss/partials/_about.scss */
.about-news .all-posts .button {
  border: 1px solid #A3A6AC;
  color: #A3A6AC;
  display: inline-block;
  letter-spacing: 2px;
  padding: 1.5em 4em;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 12px;
  font-size: 1.2rem;
  float: none;
}
@media (min-width: 580px) {
  /* line 358, scss/partials/_about.scss */
  .about-news .all-posts .button {
    position: relative;
    overflow: hidden;
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  /* line 371, scss/partials/_about.scss */
  .about-news .all-posts .button:hover {
    background: #A3A6AC;
    color: #fff;
  }
  /* line 28, scss/partials/_mixins.scss */
  .about-news .all-posts .button:hover:after {
    top: 0;
  }
  /* line 32, scss/partials/_mixins.scss */
  .about-news .all-posts .button:after {
    background: #A3A6AC;
    content: '';
    display: block;
    height: 100%;
    left: 0;
    position: absolute;
    top: 100%;
    width: 100%;
    z-index: -1;
    -moz-transition: top 400ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
    -o-transition: top 400ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
    -webkit-transition: top 400ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
    transition: top 400ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
  }
}

/* line 382, scss/partials/_about.scss */
.catalogue-container iframe {
  height: 125lvh;
}

/* line 1, scss/partials/_news-events.scss */
.news-events {
  margin-top: 95px;
}
@media (min-width: 580px) {
  /* line 1, scss/partials/_news-events.scss */
  .news-events {
    margin-top: 195px;
  }
}
/* line 7, scss/partials/_news-events.scss */
.news-events .breadcrumb {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  float: left;
  padding-left: 0.83333%;
  padding-right: 0.83333%;
}
/* line 10, scss/partials/_news-events.scss */
.news-events .page-header {
  margin-bottom: 55px;
}
/* line 13, scss/partials/_news-events.scss */
.news-events .column-main {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  float: left;
  padding-left: 0.83333%;
  padding-right: 0.83333%;
}
@media (min-width: 580px) {
  /* line 13, scss/partials/_news-events.scss */
  .news-events .column-main {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 66.66667%;
    float: left;
    padding-left: 0.83333%;
    padding-right: 0.83333%;
  }
}
/* line 19, scss/partials/_news-events.scss */
.news-events .column-main .recent-news-grid {
  float: left;
  width: 100%;
  padding-top: 60px;
}
/* line 24, scss/partials/_news-events.scss */
.news-events .column-main .recent-news-grid .recent-news-item {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  float: left;
  padding-left: 1.25%;
  padding-right: 1.25%;
  margin-bottom: 50px;
}
@media (min-width: 580px) {
  /* line 24, scss/partials/_news-events.scss */
  .news-events .column-main .recent-news-grid .recent-news-item {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 50%;
    float: left;
    padding-left: 1.25%;
    padding-right: 1.25%;
  }
  /* line 30, scss/partials/_news-events.scss */
  .news-events .column-main .recent-news-grid .recent-news-item:nth-child(odd) {
    clear: both;
  }
}
@media (min-width: 1024px) {
  /* line 24, scss/partials/_news-events.scss */
  .news-events .column-main .recent-news-grid .recent-news-item {
    margin-bottom: 80px;
  }
}
/* line 38, scss/partials/_news-events.scss */
.news-events .column-main .recent-news-grid .recent-news-item .recent-news-img-wrapper {
  float: left;
  width: 100%;
  background-size: cover;
  background-position: center center;
  margin-top: -40px;
}
/* line 46, scss/partials/_news-events.scss */
.news-events .column-main .recent-news-grid .recent-news-item .recent-news-img {
  float: left;
  width: 100%;
  background-color: #fff;
  position: relative;
  margin-top: 40px;
}
/* line 53, scss/partials/_news-events.scss */
.news-events .column-main .recent-news-grid .recent-news-item .recent-news-img img {
  float: left;
  width: 100%;
  max-width: auto !important;
}
/* line 60, scss/partials/_news-events.scss */
.news-events .column-main .recent-news-grid .recent-news-item .recent-news-content {
  float: left;
  width: 100%;
  padding: 15px 0;
  text-align: left;
  background-color: #fff;
}
@media (min-width: 580px) {
  /* line 60, scss/partials/_news-events.scss */
  .news-events .column-main .recent-news-grid .recent-news-item .recent-news-content {
    padding: 30px 0;
  }
}
/* line 70, scss/partials/_news-events.scss */
.news-events .column-main .recent-news-grid .recent-news-item .recent-news-content h6, .news-events .column-main .recent-news-grid .recent-news-item .recent-news-content .footer-links, .news-events .column-main .recent-news-grid .recent-news-item .recent-news-content .our-wines-legend, .news-events .column-main .recent-news-grid .recent-news-item .recent-news-content .vegan-toggle-wrapper, .news-events .column-main .recent-news-grid .recent-news-item .recent-news-content .our-wines-detail .wine-information dt, .our-wines-detail .wine-information .news-events .column-main .recent-news-grid .recent-news-item .recent-news-content dt, .news-events .column-main .recent-news-grid .recent-news-item .recent-news-content .our-wines-detail .overview .more, .our-wines-detail .overview .news-events .column-main .recent-news-grid .recent-news-item .recent-news-content .more, .news-events .column-main .recent-news-grid .recent-news-item .recent-news-content .producers-detail .producer-description .more, .producers-detail .producer-description .news-events .column-main .recent-news-grid .recent-news-item .recent-news-content .more, .news-events .column-main .recent-news-grid .recent-news-item .recent-news-content .news-events-sidebar .widget-categories a, .news-events-sidebar .widget-categories .news-events .column-main .recent-news-grid .recent-news-item .recent-news-content a, .news-events .column-main .recent-news-grid .recent-news-item .recent-news-content .news-events-sidebar .widget-authors a, .news-events-sidebar .widget-authors .news-events .column-main .recent-news-grid .recent-news-item .recent-news-content a {
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #A3A6AC;
}
/* line 76, scss/partials/_news-events.scss */
.news-events .column-main .recent-news-grid .recent-news-item .recent-news-content h2 {
  font-size: 20px;
  font-size: 2rem;
  padding-top: 10px;
  /*@include breakpoint ($medium) {
  	@include font-size(3.4);
  	padding: 15px 0 10px 0;
  }*/
}
@media (min-width: 1024px) {
  /* line 76, scss/partials/_news-events.scss */
  .news-events .column-main .recent-news-grid .recent-news-item .recent-news-content h2 {
    font-size: 26px;
    font-size: 2.6rem;
    padding-top: 20px;
  }
}
/* line 89, scss/partials/_news-events.scss */
.news-events .column-main .recent-news-grid .recent-news-item .recent-news-content p {
  color: #A3A6AC;
  line-height: 20px;
  font-size: 14px;
  font-size: 1.4rem;
}
@media (min-width: 1024px) {
  /* line 89, scss/partials/_news-events.scss */
  .news-events .column-main .recent-news-grid .recent-news-item .recent-news-content p {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 24px;
  }
}
/* line 98, scss/partials/_news-events.scss */
.news-events .column-main .recent-news-grid .recent-news-item .recent-news-content p.recent-news-link {
  padding-top: 8px;
}
@media (min-width: 1024px) {
  /* line 98, scss/partials/_news-events.scss */
  .news-events .column-main .recent-news-grid .recent-news-item .recent-news-content p.recent-news-link {
    padding-top: 15px;
  }
}
/* line 103, scss/partials/_news-events.scss */
.news-events .column-main .recent-news-grid .recent-news-item .recent-news-content p.recent-news-link a {
  font-style: italic;
  font-size: 14px;
  font-size: 1.4rem;
  color: #3B3D44;
}
@media (min-width: 1024px) {
  /* line 103, scss/partials/_news-events.scss */
  .news-events .column-main .recent-news-grid .recent-news-item .recent-news-content p.recent-news-link a {
    font-size: 20px;
    font-size: 2rem;
  }
}
/* line 117, scss/partials/_news-events.scss */
.news-events .column-sidebar {
  margin-top: 50px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  float: left;
  padding-left: 0.83333%;
  padding-right: 0.83333%;
}
@media (min-width: 580px) {
  /* line 117, scss/partials/_news-events.scss */
  .news-events .column-sidebar {
    margin: 0 0 60px 0;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 25%;
    float: left;
    padding-left: 0.83333%;
    padding-right: 0.83333%;
    float: right;
  }
}
/* line 127, scss/partials/_news-events.scss */
.news-events .pagination {
  border-bottom: 1px solid #EBEBEB;
  text-align: center;
  padding: 40px 0 80px 0;
}
@media (min-width: 580px) {
  /* line 127, scss/partials/_news-events.scss */
  .news-events .pagination {
    border: 0;
    text-align: left;
  }
}
/* line 136, scss/partials/_news-events.scss */
.news-events .pagination li {
  padding: 0 20px 0 0;
}
/* line 139, scss/partials/_news-events.scss */
.news-events .pagination .next {
  height: 9px;
  width: auto;
  padding-right: 42px;
}
/* line 144, scss/partials/_news-events.scss */
.news-events .pagination .previous {
  height: 9px;
  width: auto;
  padding-left: 42px;
}
/* line 151, scss/partials/_news-events.scss */
.news-events .news-events-item-pagination .next,
.news-events .news-events-item-pagination .previous {
  height: auto;
}

/* line 157, scss/partials/_news-events.scss */
.news-events-item {
  border-bottom: 1px solid #EBEBEB;
  margin-bottom: 35px;
  padding-bottom: 40px;
}
/* line 161, scss/partials/_news-events.scss */
.news-events-item img {
  display: block;
  float: left;
  margin-right: 24px;
  width: 83px;
  -moz-transition: all 400ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
  -o-transition: all 400ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
  -webkit-transition: all 400ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
  transition: all 400ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
}
/* line 172, scss/partials/_news-events.scss */
.news-events-item h4 {
  margin-top: 8px;
}
/* line 174, scss/partials/_news-events.scss */
.news-events-item h4 a {
  color: #3B3D44;
  text-decoration: none;
}
/* line 177, scss/partials/_news-events.scss */
.news-events-item h4 a:hover {
  text-decoration: underline;
}
/* line 182, scss/partials/_news-events.scss */
.news-events-item h6, .news-events-item .footer-links, .news-events-item .our-wines-legend, .news-events-item .vegan-toggle-wrapper, .news-events-item .our-wines-detail .wine-information dt, .our-wines-detail .wine-information .news-events-item dt, .news-events-item .our-wines-detail .overview .more, .our-wines-detail .overview .news-events-item .more, .news-events-item .producers-detail .producer-description .more, .producers-detail .producer-description .news-events-item .more, .news-events-item .news-events-sidebar .widget-categories a, .news-events-sidebar .widget-categories .news-events-item a, .news-events-item .news-events-sidebar .widget-authors a, .news-events-sidebar .widget-authors .news-events-item a {
  color: #A3A6AC;
  display: inline-block;
  letter-spacing: 2px;
  text-transform: uppercase;
}
/* line 187, scss/partials/_news-events.scss */
.news-events-item h6 a, .news-events-item .footer-links a, .news-events-item .our-wines-legend a, .news-events-item .vegan-toggle-wrapper a, .news-events-item .our-wines-detail .wine-information dt a, .our-wines-detail .wine-information .news-events-item dt a, .news-events-item .our-wines-detail .overview .more a, .our-wines-detail .overview .news-events-item .more a, .news-events-item .producers-detail .producer-description .more a, .producers-detail .producer-description .news-events-item .more a, .news-events-item .news-events-sidebar .widget-categories a a, .news-events-sidebar .widget-categories .news-events-item a a, .news-events-item .news-events-sidebar .widget-authors a a, .news-events-sidebar .widget-authors .news-events-item a a {
  color: #A3A6AC;
  text-decoration: none;
}
/* line 190, scss/partials/_news-events.scss */
.news-events-item h6 a:hover, .news-events-item .footer-links a:hover, .news-events-item .our-wines-legend a:hover, .news-events-item .vegan-toggle-wrapper a:hover, .news-events-item .our-wines-detail .wine-information dt a:hover, .our-wines-detail .wine-information .news-events-item dt a:hover, .news-events-item .our-wines-detail .overview .more a:hover, .our-wines-detail .overview .news-events-item .more a:hover, .news-events-item .producers-detail .producer-description .more a:hover, .producers-detail .producer-description .news-events-item .more a:hover, .news-events-item .news-events-sidebar .widget-categories a a:hover, .news-events-sidebar .widget-categories .news-events-item a a:hover, .news-events-item .news-events-sidebar .widget-authors a a:hover, .news-events-sidebar .widget-authors .news-events-item a a:hover {
  text-decoration: underline;
}

/* line 199, scss/partials/_news-events.scss */
.news-events-item-detail {
  border-top: 1px solid #EBEBEB;
  clear: left;
  padding-top: 30px;
  margin-top: 45px;
}
/* line 204, scss/partials/_news-events.scss */
.news-events-item-detail img {
  height: auto !important;
  max-width: 100% !important;
  -moz-transition: all 400ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
  -o-transition: all 400ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
  -webkit-transition: all 400ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
  transition: all 400ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
}
/* line 213, scss/partials/_news-events.scss */
.news-events-item-detail h2 {
  margin-bottom: 40px;
}
/* line 216, scss/partials/_news-events.scss */
.news-events-item-detail h3 {
  letter-spacing: 3px;
  text-transform: uppercase;
}
/* line 220, scss/partials/_news-events.scss */
.news-events-item-detail h6, .news-events-item-detail .footer-links, .news-events-item-detail .our-wines-legend, .news-events-item-detail .vegan-toggle-wrapper, .news-events-item-detail .our-wines-detail .wine-information dt, .our-wines-detail .wine-information .news-events-item-detail dt, .news-events-item-detail .our-wines-detail .overview .more, .our-wines-detail .overview .news-events-item-detail .more, .news-events-item-detail .producers-detail .producer-description .more, .producers-detail .producer-description .news-events-item-detail .more, .news-events-item-detail .news-events-sidebar .widget-categories a, .news-events-sidebar .widget-categories .news-events-item-detail a, .news-events-item-detail .news-events-sidebar .widget-authors a, .news-events-sidebar .widget-authors .news-events-item-detail a {
  color: #A3A6AC;
  display: inline-block;
  letter-spacing: 2px;
  text-transform: uppercase;
}
/* line 225, scss/partials/_news-events.scss */
.news-events-item-detail h6 a, .news-events-item-detail .footer-links a, .news-events-item-detail .our-wines-legend a, .news-events-item-detail .vegan-toggle-wrapper a, .news-events-item-detail .our-wines-detail .wine-information dt a, .our-wines-detail .wine-information .news-events-item-detail dt a, .news-events-item-detail .our-wines-detail .overview .more a, .our-wines-detail .overview .news-events-item-detail .more a, .news-events-item-detail .producers-detail .producer-description .more a, .producers-detail .producer-description .news-events-item-detail .more a, .news-events-item-detail .news-events-sidebar .widget-categories a a, .news-events-sidebar .widget-categories .news-events-item-detail a a, .news-events-item-detail .news-events-sidebar .widget-authors a a, .news-events-sidebar .widget-authors .news-events-item-detail a a {
  color: #A3A6AC;
}
/* line 229, scss/partials/_news-events.scss */
.news-events-item-detail p {
  line-height: 1.65em;
  margin-bottom: 40px;
  font-size: 18px;
  font-size: 1.8rem;
}
/* line 233, scss/partials/_news-events.scss */
.news-events-item-detail p a {
  color: #A3A6AC;
}
/* line 237, scss/partials/_news-events.scss */
.news-events-item-detail ul {
  line-height: 1.65em;
  list-style-type: circle;
  margin-bottom: 40px;
  font-size: 18px;
  font-size: 1.8rem;
}
/* line 242, scss/partials/_news-events.scss */
.news-events-item-detail ul li {
  margin-left: 1em;
  padding-left: 1em;
}
/* line 247, scss/partials/_news-events.scss */
.news-events-item-detail ol {
  line-height: 1.65em;
  list-style-type: decimal;
  margin-bottom: 40px;
  font-size: 18px;
  font-size: 1.8rem;
}
/* line 252, scss/partials/_news-events.scss */
.news-events-item-detail ol li {
  margin-left: 1em;
  padding-left: 1em;
}
/* line 257, scss/partials/_news-events.scss */
.news-events-item-detail .alignleft {
  float: left;
  margin-right: 20px;
  margin-bottom: 20px;
}
/* line 262, scss/partials/_news-events.scss */
.news-events-item-detail .alignright {
  float: right;
  margin-left: 20px;
  margin-left: 20px;
}
/* line 267, scss/partials/_news-events.scss */
.news-events-item-detail .aligncenter {
  margin: 0 auto;
}
/* line 270, scss/partials/_news-events.scss */
.news-events-item-detail .wp-caption {
  max-width: 100% !important;
}
/* line 273, scss/partials/_news-events.scss */
.news-events-item-detail .wp-caption-text {
  font-style: oblique;
  color: #A3A6AC;
  text-align: center;
  border-bottom: 1px solid #EBEBEB;
  padding-bottom: 20px;
}

/* line 285, scss/partials/_news-events.scss */
.news-events-sidebar ul.children {
  padding-top: 10px;
}
/* line 287, scss/partials/_news-events.scss */
.news-events-sidebar ul.children li {
  padding-left: 10px;
}
/* line 291, scss/partials/_news-events.scss */
.news-events-sidebar .widget-container {
  margin-bottom: 30px;
}
/* line 294, scss/partials/_news-events.scss */
.news-events-sidebar h3 {
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 30px;
}
/* line 299, scss/partials/_news-events.scss */
.news-events-sidebar a {
  color: #3B3D44;
  display: block;
  text-decoration: none;
}
/* line 303, scss/partials/_news-events.scss */
.news-events-sidebar a:hover {
  text-decoration: underline;
}
/* line 307, scss/partials/_news-events.scss */
.news-events-sidebar .widget-categories {
  display: none;
  padding-top: 30px;
}
@media (min-width: 580px) {
  /* line 307, scss/partials/_news-events.scss */
  .news-events-sidebar .widget-categories {
    border-top: 1px solid #EBEBEB;
    display: block;
  }
}
/* line 315, scss/partials/_news-events.scss */
.news-events-sidebar .widget-categories li {
  margin-bottom: 10px;
}
/* line 318, scss/partials/_news-events.scss */
.news-events-sidebar .widget-categories a {
  color: #A3A6AC;
  letter-spacing: 2px;
  text-transform: uppercase;
}
/* line 325, scss/partials/_news-events.scss */
.news-events-sidebar .widget-authors {
  display: none;
}
@media (min-width: 580px) {
  /* line 325, scss/partials/_news-events.scss */
  .news-events-sidebar .widget-authors {
    display: block;
  }
}
/* line 331, scss/partials/_news-events.scss */
.news-events-sidebar .widget-authors li {
  margin-bottom: 10px;
}
/* line 334, scss/partials/_news-events.scss */
.news-events-sidebar .widget-authors a {
  color: #A3A6AC;
  letter-spacing: 2px;
  text-transform: uppercase;
}
/* line 341, scss/partials/_news-events.scss */
.news-events-sidebar .widget-upcoming-events {
  border: 0;
  padding-top: 30px;
  text-align: center;
}
@media (min-width: 580px) {
  /* line 341, scss/partials/_news-events.scss */
  .news-events-sidebar .widget-upcoming-events {
    border-top: 1px solid #EBEBEB;
    text-align: left;
  }
}
/* line 350, scss/partials/_news-events.scss */
.news-events-sidebar .widget-upcoming-events li {
  margin-bottom: 20px;
}
/* line 353, scss/partials/_news-events.scss */
.news-events-sidebar .widget-upcoming-events h6, .news-events-sidebar .widget-upcoming-events .footer-links, .news-events-sidebar .widget-upcoming-events .our-wines-legend, .news-events-sidebar .widget-upcoming-events .vegan-toggle-wrapper, .news-events-sidebar .widget-upcoming-events .our-wines-detail .wine-information dt, .our-wines-detail .wine-information .news-events-sidebar .widget-upcoming-events dt, .news-events-sidebar .widget-upcoming-events .our-wines-detail .overview .more, .our-wines-detail .overview .news-events-sidebar .widget-upcoming-events .more, .news-events-sidebar .widget-upcoming-events .producers-detail .producer-description .more, .producers-detail .producer-description .news-events-sidebar .widget-upcoming-events .more, .news-events-sidebar .widget-upcoming-events .widget-categories a, .news-events-sidebar .widget-categories .widget-upcoming-events a, .news-events-sidebar .widget-upcoming-events .widget-authors a, .news-events-sidebar .widget-authors .widget-upcoming-events a {
  color: #A3A6AC;
  letter-spacing: 2px;
  margin-bottom: 4px;
  text-transform: uppercase;
}
/* line 360, scss/partials/_news-events.scss */
.news-events-sidebar .widget-resources {
  padding-top: 30px;
  text-align: center;
}
@media (min-width: 580px) {
  /* line 360, scss/partials/_news-events.scss */
  .news-events-sidebar .widget-resources {
    border-top: 1px solid #EBEBEB;
    text-align: left;
    padding-bottom: 0;
  }
}
/* line 369, scss/partials/_news-events.scss */
.news-events-sidebar .widget-resources li {
  margin-bottom: 20px;
}

/* line 1, scss/partials/_contact.scss */
.contact {
  margin-top: 95px;
}
@media (min-width: 580px) {
  /* line 1, scss/partials/_contact.scss */
  .contact {
    margin-top: 195px;
    padding-bottom: 80px;
  }
}
/* line 8, scss/partials/_contact.scss */
.contact .breadcrumb {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  float: left;
  padding-left: 0.83333%;
  padding-right: 0.83333%;
}
/* line 11, scss/partials/_contact.scss */
.contact .column-main {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  float: left;
  padding-left: 0.83333%;
  padding-right: 0.83333%;
}
@media (min-width: 800px) {
  /* line 11, scss/partials/_contact.scss */
  .contact .column-main {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 66.66667%;
    float: left;
    padding-left: 0.83333%;
    padding-right: 0.83333%;
  }
}
/* line 18, scss/partials/_contact.scss */
.contact .column-sidebar {
  margin-top: 50px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  float: left;
  padding-left: 0.83333%;
  padding-right: 0.83333%;
}
@media (min-width: 800px) {
  /* line 18, scss/partials/_contact.scss */
  .contact .column-sidebar {
    margin: 0;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 25%;
    float: left;
    padding-left: 0.83333%;
    padding-right: 0.83333%;
    float: right;
  }
}
/* line 28, scss/partials/_contact.scss */
.contact .page-description {
  margin-bottom: 30px;
}

/* line 33, scss/partials/_contact.scss */
.contact-form {
  padding-top: 30px;
}
/* line 35, scss/partials/_contact.scss */
.contact-form input[type=text],
.contact-form input[type=email],
.contact-form input[type=tel],
.contact-form textarea {
  border: 1px solid #ccc;
  padding: 15px;
  width: 100%;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  -moz-appearance: none;
  -webkit-appearance: none;
}
/* line 45, scss/partials/_contact.scss */
.contact-form select {
  width: 100%;
}
/* line 49, scss/partials/_contact.scss */
.contact-form .gfield {
  display: block;
  margin-bottom: 40px;
}
/* line 53, scss/partials/_contact.scss */
.contact-form .gfield_label {
  color: #A3A6AC;
  display: inline-block;
  letter-spacing: 2px;
  margin-bottom: 20px;
  text-transform: uppercase;
}
/* line 64, scss/partials/_contact.scss */
.contact-form .ginput_complex span {
  display: block;
  padding-bottom: 10px;
  width: 100%;
}
@media (min-width: 800px) {
  /* line 64, scss/partials/_contact.scss */
  .contact-form .ginput_complex span {
    float: left;
    width: 50%;
  }
}
/* line 74, scss/partials/_contact.scss */
.contact-form .ginput_complex label {
  color: #A3A6AC;
  display: block;
  letter-spacing: 1px;
  margin-top: 6px;
  text-transform: uppercase;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.7;
}
@media (min-width: 800px) {
  /* line 83, scss/partials/_contact.scss */
  .contact-form .ginput_complex .ginput_left {
    padding-right: 5px;
  }
}
@media (min-width: 800px) {
  /* line 89, scss/partials/_contact.scss */
  .contact-form .ginput_complex .ginput_right {
    padding-left: 5px;
  }
}
/* line 96, scss/partials/_contact.scss */
.contact-form .gf_clear,
.contact-form .gf_clear_complex {
  clear: both;
}
/* line 100, scss/partials/_contact.scss */
.contact-form .gform_footer {
  padding-top: 20px;
}
/* line 103, scss/partials/_contact.scss */
.contact-form input[type=submit] {
  background: #3B3D44;
  border: 0;
  color: #fff;
  display: inline-block;
  letter-spacing: 2px;
  margin: 0 15px 0 0;
  padding: 2em 5em;
  text-transform: uppercase;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  -moz-appearance: none;
  -webkit-appearance: none;
}
/* line 116, scss/partials/_contact.scss */
.contact-form .contact-type {
  border-bottom: 1px solid #EBEBEB;
  padding-bottom: 15px;
}
/* line 119, scss/partials/_contact.scss */
.contact-form .contact-type .gfield_label {
  color: #3B3D44;
  display: inline-block;
  letter-spacing: 2px;
  margin-bottom: 30px;
  text-transform: uppercase;
}
/* line 128, scss/partials/_contact.scss */
.contact-form .contact-type .gfield_radio li {
  display: inline-block;
  margin-right: 20px;
  padding-bottom: 15px;
}
/* line 132, scss/partials/_contact.scss */
.contact-form .contact-type .gfield_radio li * {
  vertical-align: middle;
}
/* line 136, scss/partials/_contact.scss */
.contact-form .contact-type .gfield_radio label {
  color: #A3A6AC;
  display: inline-block;
  letter-spacing: 2px;
  margin-left: 10px;
  text-transform: uppercase;
}
/* line 144, scss/partials/_contact.scss */
.contact-form .contact-type .gfield_radio input[type=radio] {
  display: none;
}
/* line 147, scss/partials/_contact.scss */
.contact-form .contact-type .gfield_radio .custom-radio {
  border: 1px solid #ccc;
  cursor: pointer;
  display: inline-block;
  height: 24px;
  position: relative;
  width: 24px;
  -moz-border-radius: 24px;
  -webkit-border-radius: 24px;
  border-radius: 24px;
}
/* line 155, scss/partials/_contact.scss */
.contact-form .contact-type .gfield_radio .custom-radio.checked {
  border-color: #3B3D44;
}
/* line 157, scss/partials/_contact.scss */
.contact-form .contact-type .gfield_radio .custom-radio.checked:after {
  background: #3B3D44;
  content: '';
  display: block;
  height: 10px;
  left: 50%;
  margin: -5px 0 0 -5px;
  position: absolute;
  width: 10px;
  top: 50%;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
}
/* line 173, scss/partials/_contact.scss */
.contact-form .contact-email {
  width: 100%;
}
@media (min-width: 800px) {
  /* line 173, scss/partials/_contact.scss */
  .contact-form .contact-email {
    float: left;
    padding-right: 5px;
    width: 50%;
  }
}
/* line 182, scss/partials/_contact.scss */
.contact-form .contact-phone {
  width: 100%;
}
@media (min-width: 800px) {
  /* line 182, scss/partials/_contact.scss */
  .contact-form .contact-phone {
    float: left;
    padding-left: 5px;
    width: 50%;
  }
}
/* line 191, scss/partials/_contact.scss */
.contact-form .contact-address {
  margin-bottom: 20px;
  clear: left;
}
/* line 195, scss/partials/_contact.scss */
.contact-form .contact-address .ginput_full {
  width: 100%;
}
@media (min-width: 800px) {
  /* line 195, scss/partials/_contact.scss */
  .contact-form .contact-address .ginput_full {
    float: left;
    padding-left: 5px;
    width: 50%;
  }
  /* line 202, scss/partials/_contact.scss */
  .contact-form .contact-address .ginput_full:first-child {
    padding: 0 5px 0 0;
  }
}
/* line 207, scss/partials/_contact.scss */
.contact-form .contact-address .ginput_left {
  clear: left;
}
/* line 210, scss/partials/_contact.scss */
.contact-form .contact-address span {
  margin-bottom: 10px;
}
/* line 213, scss/partials/_contact.scss */
.contact-form .contact-address .customselect-button {
  float: none;
  display: none;
}
/* line 217, scss/partials/_contact.scss */
.contact-form .contact-address .customselect-feedback {
  float: none;
  background-color: #fff;
  border: 1px solid #ccc;
  max-width: none;
  width: 100%;
  padding: 10px 0;
}
/* line 226, scss/partials/_contact.scss */
.contact-form .contact-address .customselect-hover .customselect-feedback {
  background-color: #ebebeb;
  color: #3B3D44;
}
/* line 232, scss/partials/_contact.scss */
.contact-form .gfield_error textarea, .contact-form .gfield_error input {
  border: 1px solid red;
}
/* line 235, scss/partials/_contact.scss */
.contact-form .validation_error {
  color: #f00;
  font-weight: bold;
  margin-bottom: 30px;
}
/* line 240, scss/partials/_contact.scss */
.contact-form .validation_message {
  color: #f00;
  margin-top: 0px;
}
/* line 244, scss/partials/_contact.scss */
.contact-form .gform_validation_container {
  display: none;
}

/* line 249, scss/partials/_contact.scss */
.contact-sidebar {
  border-bottom: 1px solid #EBEBEB;
  border-top: 1px solid #EBEBEB;
  padding: 30px 0 10px 0;
  text-align: center;
}
@media (min-width: 800px) {
  /* line 249, scss/partials/_contact.scss */
  .contact-sidebar {
    border: 0;
    padding: 0;
    text-align: left;
  }
}
/* line 260, scss/partials/_contact.scss */
.contact-sidebar a {
  color: #3B3D44;
  text-decoration: none;
}
/* line 263, scss/partials/_contact.scss */
.contact-sidebar a:hover {
  text-decoration: underline;
}
/* line 267, scss/partials/_contact.scss */
.contact-sidebar h3 {
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 30px;
}
/* line 272, scss/partials/_contact.scss */
.contact-sidebar h6, .contact-sidebar .footer-links, .contact-sidebar .our-wines-legend, .contact-sidebar .vegan-toggle-wrapper, .contact-sidebar .our-wines-detail .wine-information dt, .our-wines-detail .wine-information .contact-sidebar dt, .contact-sidebar .our-wines-detail .overview .more, .our-wines-detail .overview .contact-sidebar .more, .contact-sidebar .producers-detail .producer-description .more, .producers-detail .producer-description .contact-sidebar .more, .contact-sidebar .news-events-sidebar .widget-categories a, .news-events-sidebar .widget-categories .contact-sidebar a, .contact-sidebar .news-events-sidebar .widget-authors a, .news-events-sidebar .widget-authors .contact-sidebar a {
  color: #A3A6AC;
  letter-spacing: 2px;
  margin-bottom: 4px;
  text-transform: uppercase;
}
/* line 278, scss/partials/_contact.scss */
.contact-sidebar p {
  margin: 0 0 25px 0;
}

/* line 3, scss/partials/_search.scss */
.search-form-page {
  display: block;
  position: static;
}

/* line 7, scss/partials/_search.scss */
.search-form-results,
.search-form-page-results {
  clear: left;
  padding-top: 50px;
}

/* line 12, scss/partials/_search.scss */
.results-categories {
  margin-bottom: 70px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  float: left;
  padding-left: 0.83333%;
  padding-right: 0.83333%;
}
/* line 15, scss/partials/_search.scss */
.results-categories li {
  color: #979797;
  display: inline-block;
  margin-right: 20px;
}
/* line 20, scss/partials/_search.scss */
.results-categories a {
  color: #979797;
}
/* line 23, scss/partials/_search.scss */
.results-categories h3 {
  color: #3B3D44;
  display: inline-block;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* line 30, scss/partials/_search.scss */
.results-group {
  margin-bottom: 60px;
}
/* line 32, scss/partials/_search.scss */
.results-group .results-group-header {
  border-top: 1px solid #EBEBEB;
  color: #A3A6AC;
  letter-spacing: 2px;
  margin-bottom: 50px;
  padding-top: 40px;
  text-transform: uppercase;
  font-size: 12px;
  font-size: 1.2rem;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  float: left;
  padding-left: 0.83333%;
  padding-right: 0.83333%;
}

/* line 44, scss/partials/_search.scss */
.results-wines .our-wines-item {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  float: left;
  padding-left: 0.83333%;
  padding-right: 0.83333%;
}
@media (min-width: 580px) {
  /* line 44, scss/partials/_search.scss */
  .results-wines .our-wines-item {
    border: 0;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 33.33333%;
    float: left;
    padding-left: 0.83333%;
    padding-right: 0.83333%;
  }
  /* line 50, scss/partials/_search.scss */
  .results-wines .our-wines-item:nth-child(4n+1) {
    clear: left;
  }
}
/* line 54, scss/partials/_search.scss */
.results-wines .our-wines-item a {
  -moz-transition: box-shadow 600ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
  -o-transition: box-shadow 600ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
  -webkit-transition: box-shadow 600ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
  transition: box-shadow 600ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
}
/* line 56, scss/partials/_search.scss */
.results-wines .our-wines-item a:hover {
  -moz-box-shadow: 0 0 8px 8px #EBEBEB;
  -webkit-box-shadow: 0 0 8px 8px #EBEBEB;
  box-shadow: 0 0 8px 8px #EBEBEB;
}
/* line 58, scss/partials/_search.scss */
.results-wines .our-wines-item a:hover .type {
  width: 50%;
}
/* line 64, scss/partials/_search.scss */
.results-wines .our-wines-stub {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 16.66667%;
  float: left;
  padding-left: 0.83333%;
  padding-right: 0.83333%;
}

/* line 70, scss/partials/_search.scss */
#search-results-producer h4 {
  margin-bottom: 2px;
  color: #3B3D44;
}

/* line 77, scss/partials/_search.scss */
.results-news-events .news-events-item {
  margin-bottom: 30px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  float: left;
  padding-left: 0.83333%;
  padding-right: 0.83333%;
}
@media (min-width: 580px) {
  /* line 77, scss/partials/_search.scss */
  .results-news-events .news-events-item {
    border: 0;
    padding: 0;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 50%;
    float: left;
    padding-left: 0.83333%;
    padding-right: 0.83333%;
  }
}

/* line 90, scss/partials/_search.scss */
.results-standard .search-item {
  margin-bottom: 60px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  float: left;
  padding-left: 0.83333%;
  padding-right: 0.83333%;
}
@media (min-width: 580px) {
  /* line 90, scss/partials/_search.scss */
  .results-standard .search-item {
    border: 0;
    padding: 0;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 50%;
    float: left;
    padding-left: 0.83333%;
    padding-right: 0.83333%;
  }
  /* line 98, scss/partials/_search.scss */
  .results-standard .search-item:nth-child(odd) {
    clear: both;
  }
}
@media (min-width: 1024px) {
  /* line 90, scss/partials/_search.scss */
  .results-standard .search-item {
    border: 0;
    padding: 0;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 33.33333%;
    float: left;
    padding-left: 0.83333%;
    padding-right: 0.83333%;
  }
  /* line 106, scss/partials/_search.scss */
  .results-standard .search-item:nth-child(odd) {
    clear: none;
  }
  /* line 109, scss/partials/_search.scss */
  .results-standard .search-item:nth-child(3n+1) {
    clear: both;
  }
}
/* line 114, scss/partials/_search.scss */
.results-standard .search-item p {
  color: #A3A6AC;
  letter-spacing: 1px;
  text-transform: uppercase;
}
/* line 120, scss/partials/_search.scss */
.results-standard .search-item p a {
  color: #A3A6AC;
  text-decoration: underline;
  line-height: 1.6;
}
/* line 126, scss/partials/_search.scss */
.results-standard .search-item h6, .results-standard .search-item .footer-links, .results-standard .search-item .our-wines-legend, .results-standard .search-item .vegan-toggle-wrapper, .results-standard .search-item .our-wines-detail .wine-information dt, .our-wines-detail .wine-information .results-standard .search-item dt, .results-standard .search-item .our-wines-detail .overview .more, .our-wines-detail .overview .results-standard .search-item .more, .results-standard .search-item .producers-detail .producer-description .more, .producers-detail .producer-description .results-standard .search-item .more, .results-standard .search-item .news-events-sidebar .widget-categories a, .news-events-sidebar .widget-categories .results-standard .search-item a, .results-standard .search-item .news-events-sidebar .widget-authors a, .news-events-sidebar .widget-authors .results-standard .search-item a {
  color: #A3A6AC;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.6;
}
/* line 133, scss/partials/_search.scss */
.results-standard .search-item h6 a, .results-standard .search-item .footer-links a, .results-standard .search-item .our-wines-legend a, .results-standard .search-item .vegan-toggle-wrapper a, .results-standard .search-item .our-wines-detail .wine-information dt a, .our-wines-detail .wine-information .results-standard .search-item dt a, .results-standard .search-item .our-wines-detail .overview .more a, .our-wines-detail .overview .results-standard .search-item .more a, .results-standard .search-item .producers-detail .producer-description .more a, .producers-detail .producer-description .results-standard .search-item .more a, .results-standard .search-item .news-events-sidebar .widget-categories a a, .news-events-sidebar .widget-categories .results-standard .search-item a a, .results-standard .search-item .news-events-sidebar .widget-authors a a, .news-events-sidebar .widget-authors .results-standard .search-item a a {
  text-decoration: underline;
  color: #A3A6AC;
}
/* line 138, scss/partials/_search.scss */
.results-standard .search-item h4 {
  margin-bottom: 2px;
  color: #3B3D44;
}
/* line 143, scss/partials/_search.scss */
.results-standard .search-item h4 a {
  text-decoration: none;
  color: #3B3D44;
}
/* line 148, scss/partials/_search.scss */
.results-standard .search-item .search-item-text {
  float: left;
  width: 75%;
}
/* line 153, scss/partials/_search.scss */
.results-standard .search-item .search-item-image {
  display: block;
  float: left;
  width: 20%;
  margin-right: 5%;
}
/* line 159, scss/partials/_search.scss */
.results-standard .search-item .search-item-image img {
  max-width: 100%;
}

/* line 168, scss/partials/_search.scss */
.results-distributors {
  padding-bottom: 40px;
}
/* line 171, scss/partials/_search.scss */
.results-distributors .distributors-grid .item {
  margin-bottom: 40px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  float: left;
  padding-left: 0.83333%;
  padding-right: 0.83333%;
}
@media (min-width: 580px) {
  /* line 171, scss/partials/_search.scss */
  .results-distributors .distributors-grid .item {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 50%;
    float: left;
    padding-left: 0.83333%;
    padding-right: 0.83333%;
  }
}

/* line 184, scss/partials/_search.scss */
.searchwp-live-search-results {
  border: 0 !important;
  left: auto !important;
  max-height: none !important;
  width: auto !important;
  position: relative;
  top: auto !important;
  -moz-box-shadow: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

/* line 193, scss/partials/_search.scss */
.searchwp-live-search-no-results {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  float: left;
  padding-left: 0.83333%;
  padding-right: 0.83333%;
}
/* line 195, scss/partials/_search.scss */
.searchwp-live-search-no-results em {
  color: #3B3D44;
}

/* line 1, scss/partials/_facetwp.scss */
.facetwp-loading {
  background-color: #fff;
  background-image: url("../img/spinner.gif") !important;
  background-size: 16px 16px !important;
  border: 1px solid #ebebeb;
  background-position: center center !important;
  height: 45px !important;
  min-width: 120px;
  padding: 10px;
  width: 100% !important;
}
@media (min-width: 980px) {
  /* line 1, scss/partials/_facetwp.scss */
  .facetwp-loading {
    padding: 20px;
    height: 65px !important;
  }
}

/* line 17, scss/partials/_facetwp.scss */
.facetwp-filter {
  float: left;
  margin: -1px 0 0 -1px;
  width: 50%;
}
@media (min-width: 980px) {
  /* line 17, scss/partials/_facetwp.scss */
  .facetwp-filter {
    margin: 0 0 0 -1px;
    width: auto;
  }
}
/* line 26, scss/partials/_facetwp.scss */
.facetwp-filter select {
  width: 100%;
}
/* line 29, scss/partials/_facetwp.scss */
.facetwp-filter .customselect-feedback {
  background-color: #fff;
  border: 1px solid #ebebeb;
  color: #A3A6AC;
  letter-spacing: 2px;
  line-height: 23px;
  padding: 10px 50px 10px 10px;
  text-transform: uppercase;
}
@media (min-width: 980px) {
  /* line 29, scss/partials/_facetwp.scss */
  .facetwp-filter .customselect-feedback {
    max-width: 220px;
    padding: 20px 50px 20px 20px;
  }
}
/* line 45, scss/partials/_facetwp.scss */
.facetwp-filter .customselect-hover .customselect-feedback {
  background-color: #ebebeb;
  color: #3B3D44;
}

/* line 51, scss/partials/_facetwp.scss */
.facetwp-facet {
  margin: 0 !important;
}

/* line 54, scss/partials/_facetwp.scss */
.facetwp-reset {
  border: 1px solid transparent;
  clear: left;
  padding: 20px 0;
  float: left;
}
@media (min-width: 980px) {
  /* line 54, scss/partials/_facetwp.scss */
  .facetwp-reset {
    clear: none;
    padding: 20px;
  }
}
/* line 64, scss/partials/_facetwp.scss */
.facetwp-reset button {
  background: transparent;
  border: 0;
  color: #979797;
  font-style: italic;
  padding: 0;
  text-decoration: underline;
}

/* line 74, scss/partials/_facetwp.scss */
.facetwp-selections li {
  margin-right: 10px;
}
/* line 77, scss/partials/_facetwp.scss */
.facetwp-selections li .facetwp-selection-label {
  display: none;
}
/* line 81, scss/partials/_facetwp.scss */
.facetwp-selections li .facetwp-selection-value {
  margin-right: 0;
}

/* line 1, scss/partials/_cleaner_gallery.scss */
.gallery {
  margin-bottom: 20px;
}
/* line 3, scss/partials/_cleaner_gallery.scss */
.gallery p, .gallery br {
  display: none;
}

/* line 7, scss/partials/_cleaner_gallery.scss */
.gallery-item {
  padding-bottom: 20px;
  padding-right: 20px;
}

/* line 14, scss/partials/_cleaner_gallery.scss */
.gallery-icon a {
  display: block;
}
/* line 17, scss/partials/_cleaner_gallery.scss */
.gallery-icon img {
  display: block;
  height: auto !important;
  margin: 0;
  max-width: 100% !important;
  padding: 0;
  width: 100%;
}

/* line 1, scss/partials/_customselect.scss */
.customselect-input {
  background: transparent;
  cursor: pointer;
  height: 45px;
  left: 0;
  position: absolute;
  top: 0;
  visibility: visible;
  width: 100%;
  z-index: 999;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
}
@media (min-width: 580px) {
  /* line 1, scss/partials/_customselect.scss */
  .customselect-input {
    height: 65px;
  }
}

/* line 18, scss/partials/_customselect.scss */
.customselect {
  position: relative;
}

/* line 22, scss/partials/_customselect.scss */
.customselect-disabled {
  cursor: default;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  opacity: 0.5;
}

/* line 27, scss/partials/_customselect.scss */
.customselect-feedback {
  cursor: pointer;
  display: block;
  overflow: hidden;
  position: relative;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: auto;
}
/* line 35, scss/partials/_customselect.scss */
.customselect-feedback:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid #A3A6AC;
  content: '';
  display: block;
  height: 8px;
  margin-top: -2px;
  position: absolute;
  right: 20px;
  width: 8px;
  top: 50%;
}

/* line 53, scss/partials/_customselect.scss */
.customselect-button {
  display: none;
}

	/*-----
	RULES

	If it’s a hack, it goes in _shame.scss.

	Document all hacks fully:
		1) What part of the codebase does it relate to?
		2) Why was this needed?
		3) How does this fix it?
		4) How might you fix it properly, given more time?

	Do not blame the developer; if they explained why they had to do it then their reasons are probably (hopefully) valid.

	Try and clean _shame.scss up when you have some down time.

	Even better, get a tech-debt story in which you can dedicate actual sprint time to it.

	The name is purely comical, there is no real shame in a hack. We all write a hack at some point pre- or post-production.

	This way the hacks are easy to find, though.
	-----*/
/* line 27, scss/partials/_shame.scss */
.ie9 .nav li {
  margin-right: 20px !important;
}

/* line 32, scss/partials/_shame.scss */
.ie9 .search-form {
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

/* line 35, scss/partials/_shame.scss */
.ie9 .facetwp-filter ul ul {
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

/* line 38, scss/partials/_shame.scss */
.ie9 .custom-select ul {
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

/* line 43, scss/partials/_shame.scss */
.ie9 .facetwp-filter .label {
  min-width: 0;
}

/* line 48, scss/partials/_shame.scss */
.ie9 .our-wines-filter h3,
.ie9 .producers-filter h3,
.ie9 .distributors-filter h3 {
  padding-bottom: 21px;
}
