@import url("https://fonts.googleapis.com/css?family=Playfair+Display:400,700&display=swap");
@import url("https://fonts.googleapis.com/css?family=Playfair+Display+SC:400,700&display=swap");
@import url("https://fonts.googleapis.com/css?family=DM+Serif+Text&display=swap");
@import url("https://fonts.googleapis.com/css?family=DM+Serif+Display&display=swap");
@import url("https://use.typekit.net/dsh7qle.css");
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

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

body,
html {
  width: 100%;
  height: 100%;
}

body {
  background-color: #5a5a5a;
  font-family: questa-grande, serif;
  color: #d9d9d9;
}

body.sticky-nav {
  margin-top: 100px;
}

body.sticky-nav .main-nav {
  z-index: 100;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
}

body.sticky-nav .main-nav a {
  font-size: 18px;
  height: 24px;
  line-height: 24px;
  height: 24px;
  margin: 10px;
  border-width: 2px;
}

body.is-overlay {
  overflow: hidden;
}

body.is-overlay .overlay {
  display: block;
}

a {
  color: #fff;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
}

.modal {
  position: fixed;
  z-index: 999;
  background-color: #4c4c4c;
  top: 50%;
  left: 50%;
  height: 80vh;
  width: 70vw;
  margin-left: -35vw;
  margin-top: -40vh;
  border-radius: 70px;
  -webkit-box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.4);
          box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(0, 0, 0, 0.8);
  display: none;
}

.modal .close {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 35px;
  height: 35px;
  border-radius: 35px;
  background-color: #fff;
  background-image: url(../images/close.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 50%;
  cursor: pointer;
}

.modal img {
  border-radius: 30px;
  overflow: hidden;
  margin-bottom: 20px;
}

.modal .modal-content {
  padding: 45px;
  font-size: 16px;
  line-height: 22px;
}

.wrapper {
  max-width: 960px;
  margin: auto;
}

.header {
  font-family: questa-grande, serif;
  min-height: 300px;
  background-color: #4c4c4c;
  font-size: 37px;
  letter-spacing: 3px;
  text-align: center;
  position: relative;
  margin-bottom: 30px;
}

.header .header-title {
  position: absolute;
  bottom: 60px;
  width: 100%;
}

.header .header-title a {
  color: #d9d9d9;
  text-decoration: none;
}

.main-nav {
  text-align: center;
}

.main-nav .menu-wrapper {
  background-color: #535353;
  max-width: 960px;
  margin: auto;
}

.main-nav ul, .main-nav li {
  display: inline;
}

.main-nav li:hover a, .main-nav li.current-menu-item a {
  border-top: 2px solid #fff;
  border-bottom: 2px solid #fff;
}

.main-nav a {
  color: #d9d9d9;
  text-decoration: none;
  padding: 0;
  display: inline-block;
  letter-spacing: 0.2px;
  -webkit-transition: color, border 200ms;
  transition: color, border 200ms;
  line-height: 24px;
  height: 24px;
  margin: 10px;
  border-top: 2px solid transparent;
  border-bottom: 2px solid transparent;
}

.main-nav a:hover {
  color: #fff;
}

.wines {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 10px;
  margin-left: -10px;
  margin-right: -10px;
}

.wines .wine {
  width: 306.5px;
  min-height: 306.5px;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  margin: 10px;
  -webkit-transition: background-size 300ms;
  transition: background-size 300ms;
  position: relative;
  cursor: pointer;
}

.wines .wine h2 {
  text-transform: uppercase;
  font-size: 37px;
  position: absolute;
  width: 100%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #d9d9d9;
  text-align: center;
  -webkit-transition: all 300ms;
  transition: all 300ms;
}

.wines .wine:hover {
  background-size: 110%;
  background-color: rgba(255, 255, 255, 0.6);
  background-blend-mode: soft-light;
}

.wines .wine:hover h2 {
  color: #333;
}

.main-content {
  background-color: #4c4c4c;
}

.main-content .article-content .wp-block-cover p,
.main-content .article-content .wp-block-cover .has-large-font-size {
  font-size: 24px;
}

.main-content .article-content .wp-block-columns {
  margin: 0;
}

.main-content .article-content .wp-block-column .wp-block-image {
  margin-bottom: 0;
}

.main-content .article-content .wp-block-column .wp-block-image img {
  display: block;
}

.main-content .article-content .wp-block-column .wp-block-group {
  padding: 40px;
}

.main-content .article-content .wp-block-column .wp-block-group h2 {
  font-family: questa-grande, serif;
  font-size: 24px;
  border-bottom: 1px solid #d9d9d9;
  margin-bottom: 12px;
  padding-bottom: 10px;
}

.main-content .article-content .wp-block-column .wp-block-group p {
  font-family: questa-grande, serif;
  text-align: justify;
  font-size: 12px;
  line-height: 16px;
  margin-bottom: 15px;
}

.footer {
  background-color: #535353;
  margin-top: 30px;
  min-height: 300px;
}

@media only screen and (min-width: 768px) {
  .header {
    font-size: 84px;
  }
  .main-nav.sticky {
    position: fixed;
  }
  .main-nav a {
    letter-spacing: 1px;
    font-size: 28px;
    margin: 20px 57px;
    line-height: 35px;
    height: 37px;
  }
  .main-content .article-content .wp-block-column {
    position: relative;
    overflow: hidden;
    min-height: 480px;
  }
  .main-content .article-content .wp-block-column .wp-block-group {
    padding: 140px;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .main-content .article-content .wp-block-column .wp-block-group h2 {
    font-family: questa-grande, serif;
    font-size: 32px;
    letter-spacing: 1px;
    border-bottom: 1px solid #d9d9d9;
    margin-bottom: 20px;
    padding-bottom: 15px;
  }
  .main-content .article-content .wp-block-column .wp-block-group p {
    font-family: questa-grande, serif;
    text-align: justify;
    font-size: 13px;
    line-height: 18px;
  }
}
/*# sourceMappingURL=main-style.css.map */