@charset "UTF-8";
/* line 5, /Users/bobwassermann/.rvm/gems/ruby-2.5.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
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: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

/* line 22, /Users/bobwassermann/.rvm/gems/ruby-2.5.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
html {
  line-height: 1;
}

/* line 24, /Users/bobwassermann/.rvm/gems/ruby-2.5.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
ol, ul {
  list-style: none;
}

/* line 26, /Users/bobwassermann/.rvm/gems/ruby-2.5.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* line 28, /Users/bobwassermann/.rvm/gems/ruby-2.5.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

/* line 30, /Users/bobwassermann/.rvm/gems/ruby-2.5.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
q, blockquote {
  quotes: none;
}
/* line 103, /Users/bobwassermann/.rvm/gems/ruby-2.5.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

/* line 32, /Users/bobwassermann/.rvm/gems/ruby-2.5.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
a img {
  border: none;
}

/* line 116, /Users/bobwassermann/.rvm/gems/ruby-2.5.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

/* Utility */
/* ----------------------------------------------------------------------------------------------------

SCSS Form Reset Helpers - Forked from: https://gist.github.com/anthonyshort/552543

Intended usage:
- MIXINS: for very specific use cases, when you dont want to reset absolutly all the forms, very verbose output.
- PLACEHOLDER SELECTORS: use as extending classes. Less verbose, more generic overrides.

A couple of things to watch out for:

- IE8: If a text input doesn't have padding on all sides or none the text won't be centered.
- The default border sizes on text inputs in all UAs seem to be slightly different. You're better off using custom borders.
- You NEED to set the font-size and family on all form elements
- Search inputs need to have their appearance reset and the box-sizing set to content-box to match other UAs
- You can style the upload button in webkit using ::-webkit-file-upload-button
- ::-webkit-file-upload-button selectors can't be used in the same selector as normal ones. FF and IE freak out.
- IE: You don't need to fake inline-block with labels and form controls in IE. They function as inline-block.
- By turning off ::-webkit-search-decoration, it removes the extra whitespace on the left on search inputs

Usage: 

input
  @extend %form-reset-input;
 
label
  @extend %form-reset-label;
 
select
  @extend %form-reset-select;
 
button
  @extend %form-reset-button;
 
textarea
  @extend %form-reset-textarea;

----------------------------------------------------------------------------------------------------*/
/* Vendor */
/*! Flickity v2.0.4
http://flickity.metafizzy.co
---------------------------------------------- */
/* line 5, sass/_vendor/_flickity.scss */
.flickity-enabled {
  position: relative;
}

/* line 9, sass/_vendor/_flickity.scss */
.flickity-enabled:focus {
  outline: none;
}

/* line 11, sass/_vendor/_flickity.scss */
.flickity-viewport {
  overflow: hidden;
  position: relative;
  height: 100%;
}

/* line 17, sass/_vendor/_flickity.scss */
.flickity-slider {
  position: absolute;
  width: 100%;
  height: 100%;
}

/* draggable */
/* line 25, sass/_vendor/_flickity.scss */
.flickity-enabled.is-draggable {
  -webkit-tap-highlight-color: transparent;
  tap-highlight-color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* line 34, sass/_vendor/_flickity.scss */
.flickity-enabled.is-draggable .flickity-viewport {
  cursor: move;
  cursor: grab;
}

/* line 40, sass/_vendor/_flickity.scss */
.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
  cursor: grabbing;
}

/* ---- previous/next buttons ---- */
/* line 47, sass/_vendor/_flickity.scss */
.flickity-prev-next-button {
  position: absolute;
  top: 50%;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: white;
  background: rgba(255, 255, 255, 0.75);
  cursor: pointer;
  /* vertically center */
  transform: translateY(-50%);
}

/* line 62, sass/_vendor/_flickity.scss */
.flickity-prev-next-button:hover {
  background: white;
}

/* line 64, sass/_vendor/_flickity.scss */
.flickity-prev-next-button:focus {
  outline: none;
  box-shadow: 0 0 0 5px #09F;
}

/* line 69, sass/_vendor/_flickity.scss */
.flickity-prev-next-button:active {
  opacity: 0.6;
}

/* line 73, sass/_vendor/_flickity.scss */
.flickity-prev-next-button.previous {
  left: 10px;
}

/* line 74, sass/_vendor/_flickity.scss */
.flickity-prev-next-button.next {
  right: 10px;
}

/* right to left */
/* line 76, sass/_vendor/_flickity.scss */
.flickity-rtl .flickity-prev-next-button.previous {
  left: auto;
  right: 10px;
}

/* line 80, sass/_vendor/_flickity.scss */
.flickity-rtl .flickity-prev-next-button.next {
  right: auto;
  left: 10px;
}

/* line 85, sass/_vendor/_flickity.scss */
.flickity-prev-next-button:disabled {
  opacity: 0.3;
  cursor: auto;
}

/* line 90, sass/_vendor/_flickity.scss */
.flickity-prev-next-button svg {
  position: absolute;
  left: 20%;
  top: 20%;
  width: 60%;
  height: 60%;
}

/* line 98, sass/_vendor/_flickity.scss */
.flickity-prev-next-button .arrow {
  fill: #333;
}

/* ---- page dots ---- */
/* line 104, sass/_vendor/_flickity.scss */
.flickity-page-dots {
  position: absolute;
  width: 100%;
  bottom: -25px;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  line-height: 1;
}

/* line 115, sass/_vendor/_flickity.scss */
.flickity-rtl .flickity-page-dots {
  direction: rtl;
}

/* line 117, sass/_vendor/_flickity.scss */
.flickity-page-dots .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 8px;
  background: #333;
  border-radius: 50%;
  opacity: 0.25;
  cursor: pointer;
}

/* line 128, sass/_vendor/_flickity.scss */
.flickity-page-dots .dot.is-selected {
  opacity: 1;
}

/* Fonts */
@font-face {
  font-family: 'GothamHTF';
  src: url("../fonts/GothamHTF/GothamHTF-Book.eot?#iefix") format("embedded-opentype"), url("../fonts/GothamHTF/GothamHTF-Book.otf") format("opentype"), url("../fonts/GothamHTF/GothamHTF-Book.woff") format("woff"), url("../fonts/GothamHTF/GothamHTF-Book.ttf") format("truetype"), url("../fonts/GothamHTF/GothamHTF-Book.svg#GothamHTF-Book") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'GothamHTF';
  src: url("../fonts/GothamHTF/GothamHTF-Medium.eot?#iefix") format("embedded-opentype"), url("../fonts/GothamHTF/GothamHTF-Medium.otf") format("opentype"), url("../fonts/GothamHTF/GothamHTF-Medium.woff") format("woff"), url("../fonts/GothamHTF/GothamHTF-Medium.ttf") format("truetype"), url("../fonts/GothamHTF/GothamHTF-Medium.svg#GothamHTF-Medium") format("svg");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: 'MikkellerFont';
  src: url("../fonts/MikkellerFont/MikkellerFont.eot?#iefix") format("embedded-opentype"), url("../fonts/MikkellerFont/MikkellerFont.woff") format("woff"), url("../fonts/MikkellerFont/MikkellerFont.ttf") format("truetype"), url("../fonts/MikkellerFont/MikkellerFont.svg#MikkellerFont") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "icons";
  src: url("../fonts/iconfont/icons.eot?07a3833dce87ad7b6501c0a0cc2eef23");
  src: url("../fonts/iconfont/icons.eot?#iefix") format("embedded-opentype"), url("../fonts/iconfont/icons.woff?07a3833dce87ad7b6501c0a0cc2eef23") format("woff"), url("../fonts/iconfont/icons.ttf?07a3833dce87ad7b6501c0a0cc2eef23") format("truetype");
  font-weight: normal;
  font-style: normal;
}
/* line 14, sass/_fonts/_iconfont/_icons.scss */
.glyph-icon {
  font-family: "icons";
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  font-weight: normal;
  font-style: normal;
  speak: none;
  text-decoration: inherit;
  text-transform: none;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* line 35, sass/_fonts/_iconfont/_icons.scss */
.glyph_arrow-bottom:before {
  content: "\f101";
}

/* line 40, sass/_fonts/_iconfont/_icons.scss */
.glyph_arrow-left:before {
  content: "\f102";
}

/* line 45, sass/_fonts/_iconfont/_icons.scss */
.glyph_arrow-right:before {
  content: "\f103";
}

/* line 50, sass/_fonts/_iconfont/_icons.scss */
.glyph_arrow-top:before {
  content: "\f104";
}

/* line 55, sass/_fonts/_iconfont/_icons.scss */
.glyph_facebook:before {
  content: "\f105";
}

/* line 60, sass/_fonts/_iconfont/_icons.scss */
.glyph_instagram:before {
  content: "\f106";
}

/* line 65, sass/_fonts/_iconfont/_icons.scss */
.glyph_mail:before {
  content: "\f107";
}

/* line 70, sass/_fonts/_iconfont/_icons.scss */
.glyph_twitter:before {
  content: "\f108";
}

/* Base */
/*
  font
*/
/* line 4, sass/_base/_base.scss */
body {
  font-family: "GothamHTF", sans-serif;
  font-weight: normal;
}

/* line 8, sass/_base/_base.scss */
b, #header-nav-trigger:before, .header-nav-action, .popup h4, .popup a, #beers .beer-wrap .beer {
  font-family: "GothamHTF", sans-serif;
  font-weight: bold;
}

/* line 12, sass/_base/_base.scss */
.is-font-mikkeller {
  font-family: 'MikkellerFont';
  font-weight: normal;
}

/*
  color
*/
/*
  param
*/
/*
  easing
*/
/*
  extend
*/
/* line 51, sass/_base/_base.scss */
a, #header-nav a:before {
  transition: all 600ms cubic-bezier(0.19, 1, 0.22, 1);
}

@keyframes flash {
  0% {
    opacity: 0.4;
  }
  100% {
    opacity: 1;
  }
}
/*
  animate
*/
@keyframes loading {
  0% {
    content: "";
  }
  25% {
    content: ".";
  }
  50% {
    content: "..";
  }
  75% {
    content: "...";
  }
  100% {
    content: "";
  }
}
/*
  base
*/
/* line 88, sass/_base/_base.scss */
html {
  -webkit-tap-highlight-color: transparent;
  -webkit-text-size-adjust: 100%;
}

/* line 92, sass/_base/_base.scss */
body {
  background-color: white;
  color: black;
  line-height: 1.6;
  font-size: 12px;
  font-size: 1rem;
  letter-spacing: 0.06em;
}
@media (max-width: 767px) {
  /* line 92, sass/_base/_base.scss */
  body {
    font-size: 16px;
    font-size: 1.33333rem;
  }
}

/* line 104, sass/_base/_base.scss */
#container {
  position: relative;
  z-index: 0;
}
@media (max-width: 1200px) {
  /* line 107, sass/_base/_base.scss */
  #container.is-nav-active {
    background-color: #E3363D;
  }
}
@media (max-width: 1200px) {
  /* line 111, sass/_base/_base.scss */
  #container.is-nav-active .section,
  #container.is-nav-active .footer {
    opacity: 0;
    visibility: hidden;
  }
}

/* line 120, sass/_base/_base.scss */
a {
  color: black;
  text-decoration: none;
}
/* line 125, sass/_base/_base.scss */
a.is-no-hover.hover {
  animation: none;
}
/* line 129, sass/_base/_base.scss */
a.is-link-color-bg {
  color: white;
  display: inline-block;
  border-bottom: solid 1px white;
}
/* line 134, sass/_base/_base.scss */
a.is-link-color-primary {
  color: #E3363D;
  display: inline-block;
  border-bottom: solid 1px #E3363D;
}
/* line 139, sass/_base/_base.scss */
a.is-link-color-pink {
  color: #FFBFB6;
  display: inline-block;
  border-bottom: solid 1px #FFBFB6;
}
/* line 144, sass/_base/_base.scss */
a.is-button-green {
  display: inline-block;
  padding: 8px 20px 10px 20px;
  padding: 0.66667rem 1.66667rem 0.83333rem 1.66667rem;
  color: #6DCB99;
  border: solid 1px #6DCB99;
  border-radius: 2px;
  background: none;
  letter-spacing: 0.2em;
}
/* line 152, sass/_base/_base.scss */
a.is-button-green.hover {
  opacity: 1;
  background-color: #6DCB99;
  color: #fff;
  animation: none;
}
/* line 159, sass/_base/_base.scss */
a.is-button-bg-purple {
  display: inline-block;
  padding: 8px 20px 10px 20px;
  padding: 0.66667rem 1.66667rem 0.83333rem 1.66667rem;
  color: white;
  border: solid 1px white;
  border-radius: 2px;
  letter-spacing: 0.2em;
}
/* line 166, sass/_base/_base.scss */
a.is-button-bg-purple.hover {
  opacity: 1;
  background-color: white;
  color: #C983E3;
  animation: none;
}
/* line 173, sass/_base/_base.scss */
a.is-button-bg-blue {
  display: inline-block;
  padding: 8px 20px 10px 20px;
  padding: 0.66667rem 1.66667rem 0.83333rem 1.66667rem;
  color: white;
  border: solid 1px white;
  border-radius: 2px;
  letter-spacing: 0.2em;
}
/* line 180, sass/_base/_base.scss */
a.is-button-bg-blue.hover {
  opacity: 1;
  background-color: white;
  color: #588ADE;
  animation: none;
}
/* line 187, sass/_base/_base.scss */
a.is-bounce {
  display: inline-block;
  transform: perspective(1px) translateZ(0);
}
/* line 190, sass/_base/_base.scss */
a.is-bounce.hover {
  animation-name: hvr-pop;
  animation-duration: 0.3s;
  animation-timing-function: linear;
  animation-iteration-count: 1;
}

@keyframes hvr-pop {
  50% {
    transform: scale(1.3);
  }
}
/* line 203, sass/_base/_base.scss */
img {
  max-width: 100%;
  height: auto;
}

/* line 207, sass/_base/_base.scss */
svg {
  max-width: 100%;
  height: auto;
}

/* line 211, sass/_base/_base.scss */
.is-fill-primary {
  fill: #E3363D;
}

/* line 214, sass/_base/_base.scss */
.is-fill-pink {
  fill: #FFBFB6;
}

/* line 217, sass/_base/_base.scss */
.is-fill-white {
  fill: #fff;
}

/* line 226, sass/_base/_base.scss */
.is-color-bg {
  color: white;
}

/* line 229, sass/_base/_base.scss */
.is-color-text {
  color: black;
}

/* line 232, sass/_base/_base.scss */
.is-text-xlarge {
  font-size: 50px;
  font-size: 4.16667rem;
  line-height: 1.3;
}
@media (max-width: 767px) {
  /* line 232, sass/_base/_base.scss */
  .is-text-xlarge {
    font-size: 35px;
    font-size: 2.91667rem;
  }
}

/* line 239, sass/_base/_base.scss */
.is-text-large {
  font-size: 20px;
  font-size: 1.66667rem;
  line-height: 1.5;
}

/* line 243, sass/_base/_base.scss */
.is-text-medium {
  font-size: 14px;
  font-size: 1.16667rem;
}

/* line 246, sass/_base/_base.scss */
small,
.is-text-small {
  font-size: 10px;
  font-size: 0.83333rem;
}

@media (max-width: 767px) {
  /* line 250, sass/_base/_base.scss */
  .is-text-align-left-sp {
    text-align: left !important;
  }
}

/* line 255, sass/_base/_base.scss */
.is-text-align-center {
  text-align: center;
}

@media (max-width: 767px) {
  /* line 258, sass/_base/_base.scss */
  .is-text-align-center-sp {
    text-align: center !important;
  }
}

/* line 263, sass/_base/_base.scss */
.is-text-align-left {
  text-align: left;
}

/* line 266, sass/_base/_base.scss */
.is-text-align-right {
  text-align: right;
}

/* line 269, sass/_base/_base.scss */
.is-hide {
  display: none !important;
}

/* line 272, sass/_base/_base.scss */
.is-show-tablet {
  display: none !important;
}
@media (max-width: 1200px) {
  /* line 272, sass/_base/_base.scss */
  .is-show-tablet {
    display: block !important;
  }
}

/* line 278, sass/_base/_base.scss */
.is-show-sp {
  display: none !important;
}
@media (max-width: 767px) {
  /* line 278, sass/_base/_base.scss */
  .is-show-sp {
    display: block !important;
  }
}

@media (max-width: 1200px) {
  /* line 284, sass/_base/_base.scss */
  .is-hide-tablet {
    display: none !important;
  }
}

@media (max-width: 767px) {
  /* line 289, sass/_base/_base.scss */
  .is-hide-sp {
    display: none !important;
  }
}

/* line 294, sass/_base/_base.scss */
.is-base-top {
  margin-top: 60px;
  margin-top: 5rem;
}

/* line 297, sass/_base/_base.scss */
.is-medium-top {
  margin-top: 48px;
  margin-top: 4rem;
}

/* line 300, sass/_base/_base.scss */
.is-half-top {
  margin-top: 30px;
  margin-top: 2.5rem;
}

/* line 303, sass/_base/_base.scss */
.is-small-top {
  margin-top: 20px;
  margin-top: 1.66667rem;
}

@media (max-width: 1200px) {
  /* line 306, sass/_base/_base.scss */
  .is-basesp-top-tablet {
    margin-top: 12px;
    margin-top: 1rem;
  }
}

@media (max-width: 1200px) {
  /* line 311, sass/_base/_base.scss */
  .is-vertical-padding-tablet {
    padding-top: 120px;
    padding-top: 10rem;
    padding-bottom: 120px;
    padding-bottom: 10rem;
  }
}
@media (max-width: 767px) {
  /* line 311, sass/_base/_base.scss */
  .is-vertical-padding-tablet {
    padding-top: 60px;
    padding-top: 5rem;
    padding-bottom: 60px;
    padding-bottom: 5rem;
  }
}

/* line 321, sass/_base/_base.scss */
.is-color-bg {
  color: white;
}

/* line 324, sass/_base/_base.scss */
.is-color-primary {
  color: #E3363D;
}

/* line 327, sass/_base/_base.scss */
.is-color-pink {
  color: #FFBFB6;
}

/* line 330, sass/_base/_base.scss */
.is-color-green {
  color: #6DCB99;
}

/* line 333, sass/_base/_base.scss */
.is-bg-bg {
  background-color: white;
}

/* line 336, sass/_base/_base.scss */
.is-bg-textsub {
  background-color: #242424;
}

/* line 339, sass/_base/_base.scss */
.is-bg-primary {
  background-color: #E3363D;
}

/* line 342, sass/_base/_base.scss */
.is-bg-green {
  background-color: #6DCB99;
}

/* line 345, sass/_base/_base.scss */
.is-bg-purple {
  background-color: #C983E3;
}

/* line 348, sass/_base/_base.scss */
.is-bg-blue {
  background-color: #588ADE;
}

/* line 351, sass/_base/_base.scss */
.is-bg-purple-darken {
  background-color: #c06ede;
}

/* line 354, sass/_base/_base.scss */
.is-bg-pink {
  background-color: #FFBFB6;
}

/* line 357, sass/_base/_base.scss */
.is-bg-yellow {
  background-color: #F7E48F;
}

/* line 360, sass/_base/_base.scss */
.is-bg-yellow-darken {
  background-color: #f5de77;
}

/* line 363, sass/_base/_base.scss */
.is-bg-grey {
  background-color: #F3F2EF;
}

/* line 366, sass/_base/_base.scss */
.image {
  position: relative;
  margin: 0 auto;
  height: 100%;
  line-height: 0;
}

/* line 372, sass/_base/_base.scss */
.image-container {
  position: relative;
  height: 0;
  width: 100%;
  background-color: transparent;
}
/* line 377, sass/_base/_base.scss */
.image-container.is-bottle {
  height: 70%;
}
@media (max-width: 1200px) {
  /* line 377, sass/_base/_base.scss */
  .image-container.is-bottle {
    margin-top: -20px;
    margin-top: -1.66667rem;
  }
}
/* line 383, sass/_base/_base.scss */
.image-container.is-square {
  padding-bottom: 100%;
}
/* line 386, sass/_base/_base.scss */
.image-container.is-bg {
  background-color: lightgray;
}

/* line 390, sass/_base/_base.scss */
.img-darken {
  posiion: relative;
}
/* line 393, sass/_base/_base.scss */
.img-darken:before {
  content: '';
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  display: inline-block;
}

/* line 404, sass/_base/_base.scss */
.image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* line 411, sass/_base/_base.scss */
.bgimg {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
/* line 417, sass/_base/_base.scss */
.bgimg.is-contain {
  background-size: contain;
}
/* line 420, sass/_base/_base.scss */
.bgimg.is-top-center {
  background-position: top center;
}
/* line 423, sass/_base/_base.scss */
.bgimg.is-bottom-right {
  background-position: bottom right;
}

/* line 427, sass/_base/_base.scss */
.preload-image {
  opacity: 0;
  backface-visibility: hidden;
}
/* line 430, sass/_base/_base.scss */
.preload-image.is-active {
  opacity: 1;
  transition: opacity 600ms ease 200ms;
}

/* line 435, sass/_base/_base.scss */
.is-absolute-center {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  transform: translateX(-50%) translateY(-50%);
}

/* line 442, sass/_base/_base.scss */
.is-vertical-center {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 1200px) {
  /* line 446, sass/_base/_base.scss */
  .is-vertical-center.is-break-tablet {
    top: 0;
    transform: none;
  }
}

/* line 453, sass/_base/_base.scss */
.fade-content {
  opacity: 0;
  transform: translate3d(0, 7rem, 0);
}
@media (max-width: 1200px) {
  /* line 453, sass/_base/_base.scss */
  .fade-content {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
/* line 460, sass/_base/_base.scss */
.fade-content.is-active {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: opacity 1500ms ease 250ms, transform 850ms cubic-bezier(0.165, 0.84, 0.44, 1) 250ms;
}

/* line 467, sass/_base/_base.scss */
.section-title {
  position: absolute;
  top: 40px;
  left: 0;
  width: 100%;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.1em;
  z-index: 10;
}
/* line 477, sass/_base/_base.scss */
.section-title .wrapper {
  max-width: initial;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
      flex-flow: row wrap;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
/* line 484, sass/_base/_base.scss */
.section-title svg {
  width: auto;
  height: 55px;
}

/* line 1, sass/_base/_flex.scss */
.flex-container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
      flex-flow: row wrap;
}
/* line 4, sass/_base/_flex.scss */
.flex-container.is-justify-content-center {
  -ms-flex-pack: center;
      justify-content: center;
}
/* line 7, sass/_base/_flex.scss */
.flex-container.is-justify-content-flex-end {
  -ms-flex-pack: end;
      justify-content: flex-end;
}
@media (max-width: 767px) {
  /* line 10, sass/_base/_flex.scss */
  .flex-container.is-justify-content-center-sp {
    -ms-flex-pack: center;
        justify-content: center;
  }
}
@media (max-width: 767px) {
  /* line 15, sass/_base/_flex.scss */
  .flex-container.is-justify-content-flex-end-sp {
    -ms-flex-pack: end;
        justify-content: flex-end;
  }
}
/* line 20, sass/_base/_flex.scss */
.flex-container.is-align-items-center {
  -ms-flex-align: center;
      align-items: center;
}
/* line 23, sass/_base/_flex.scss */
.flex-container.is-flex-direction-row-reverse {
  -ms-flex-direction: row-reverse;
      flex-direction: row-reverse;
}
@media (max-width: 1200px) {
  /* line 26, sass/_base/_flex.scss */
  .flex-container.is-break-tablet {
    display: block;
  }
}
@media (max-width: 767px) {
  /* line 31, sass/_base/_flex.scss */
  .flex-container.is-break-sp {
    display: block;
  }
}

/* line 38, sass/_base/_flex.scss */
.is-no-flex-wrap .flex-container {
  display: block;
  *zoom: 1;
  letter-spacing: -.40em;
}
/* line 38, /Users/bobwassermann/.rvm/gems/ruby-2.5.0/gems/compass-core-1.0.3/stylesheets/compass/utilities/general/_clearfix.scss */
.is-no-flex-wrap .flex-container:after {
  content: "";
  display: table;
  clear: both;
}
/* line 42, sass/_base/_flex.scss */
.is-no-flex-wrap .flex-container.is-justify-content-center {
  text-align: center;
}
/* line 45, sass/_base/_flex.scss */
.is-no-flex-wrap .flex-container.is-justify-content-flex-end {
  text-align: right;
}
@media (max-width: 767px) {
  /* line 48, sass/_base/_flex.scss */
  .is-no-flex-wrap .flex-container.is-justify-content-center-sp {
    text-align: center;
  }
}
@media (max-width: 767px) {
  /* line 53, sass/_base/_flex.scss */
  .is-no-flex-wrap .flex-container.is-justify-content-flex-end-sp {
    text-align: right;
  }
}
/* line 59, sass/_base/_flex.scss */
.is-no-flex-wrap .flex-container.is-align-items-center .flex-item {
  vertical-align: middle;
}
@media (max-width: 767px) {
  /* line 64, sass/_base/_flex.scss */
  .is-no-flex-wrap .flex-container.is-break-sp .flex-item {
    display: block;
  }
}
@media (max-width: 767px) {
  /* line 71, sass/_base/_flex.scss */
  .is-no-flex-wrap .flex-container.is-sp-flex .flex-item {
    display: inline-block;
  }
}
/* line 77, sass/_base/_flex.scss */
.is-no-flex-wrap .flex-container .flex-item {
  display: inline-block;
  vertical-align: top;
  letter-spacing: 0;
}
/* line 81, sass/_base/_flex.scss */
.is-no-flex-wrap .flex-container .flex-item.is-force-display-block {
  display: block;
}

/* line 1, sass/_base/_wrapper.scss */
.wrapper {
  max-width: 400px;
  max-width: 33.33333rem;
  margin: 0 auto;
  padding-left: 60px;
  padding-left: 5rem;
  padding-right: 60px;
  padding-right: 5rem;
}
@media (max-width: 767px) {
  /* line 1, sass/_base/_wrapper.scss */
  .wrapper {
    max-width: 400px;
    max-width: 33.33333rem;
    padding-left: 36px;
    padding-left: 3rem;
    padding-right: 36px;
    padding-right: 3rem;
  }
}
/* line 13, sass/_base/_wrapper.scss */
.wrapper.is-small {
  max-width: 200px;
  max-width: 16.66667rem;
}
@media (max-width: 767px) {
  /* line 13, sass/_base/_wrapper.scss */
  .wrapper.is-small {
    max-width: 400px;
    max-width: 33.33333rem;
  }
}

/* line 1, sass/_base/_text.scss */
.content-text {
  position: relative;
}

/* line 4, sass/_base/_text.scss */
.text {
  margin-top: 30px;
  margin-top: 2.5rem;
}
/* line 6, sass/_base/_text.scss */
.text:first-child, .text.is-no-top {
  margin-top: 0;
}
/* line 10, sass/_base/_text.scss */
.text.is-large-top {
  margin-top: 60px;
  margin-top: 5rem;
}
/* line 13, sass/_base/_text.scss */
.text.is-right {
  margin-top: 0;
  position: absolute;
  top: 0;
  right: 0;
}
@media (max-width: 767px) {
  /* line 18, sass/_base/_text.scss */
  .text.is-right.is-break-sp {
    position: static;
    margin-top: 30px;
    margin-top: 2.5rem;
  }
}
@media (max-width: 767px) {
  /* line 23, sass/_base/_text.scss */
  .text.is-right.is-break-sp:first-child, .text.is-right.is-break-sp.is-no-top {
    margin-top: 0;
  }
}
/* line 31, sass/_base/_text.scss */
.text p, .text ol, .text ul, .text dl, .text dt, .text dd, .text h1, .text h2, .text h3, .text h4, .text h5, .text h6 {
  margin-top: 1em;
}
/* line 33, sass/_base/_text.scss */
.text p:first-child, .text p.is-no-top, .text ol:first-child, .text ol.is-no-top, .text ul:first-child, .text ul.is-no-top, .text dl:first-child, .text dl.is-no-top, .text dt:first-child, .text dt.is-no-top, .text dd:first-child, .text dd.is-no-top, .text h1:first-child, .text h1.is-no-top, .text h2:first-child, .text h2.is-no-top, .text h3:first-child, .text h3.is-no-top, .text h4:first-child, .text h4.is-no-top, .text h5:first-child, .text h5.is-no-top, .text h6:first-child, .text h6.is-no-top {
  margin-top: 0;
}
/* line 37, sass/_base/_text.scss */
.text p.is-half-top, .text ol.is-half-top, .text ul.is-half-top, .text dl.is-half-top, .text dt.is-half-top, .text dd.is-half-top, .text h1.is-half-top, .text h2.is-half-top, .text h3.is-half-top, .text h4.is-half-top, .text h5.is-half-top, .text h6.is-half-top {
  margin-top: 0.5em;
}
/* line 40, sass/_base/_text.scss */
.text p.is-full-top, .text ol.is-full-top, .text ul.is-full-top, .text dl.is-full-top, .text dt.is-full-top, .text dd.is-full-top, .text h1.is-full-top, .text h2.is-full-top, .text h3.is-full-top, .text h4.is-full-top, .text h5.is-full-top, .text h6.is-full-top {
  margin-top: 1em;
}
/* line 44, sass/_base/_text.scss */
.text li {
  margin-top: 0.5em;
}
/* line 46, sass/_base/_text.scss */
.text li:first-child {
  margin-top: 0;
}

@keyframes flash1 {
  0%, 24% {
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
}
@keyframes flash2 {
  25%, 49% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}
@keyframes flash3 {
  50%, 74% {
    opacity: 0;
  }
  75% {
    opacity: 1;
  }
}
@keyframes flash4 {
  75%, 99% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* line 33, sass/_base/_section.scss */
.section {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100vh;
  visibility: hidden;
  background-color: white;
}
@media (max-width: 1200px) {
  /* line 33, sass/_base/_section.scss */
  .section {
    height: auto;
    margin-top: 0;
    padding-top: 60px;
    padding-top: 5rem;
  }
}
@media (max-width: 767px) {
  /* line 33, sass/_base/_section.scss */
  .section {
    padding-top: 12px;
    padding-top: 1rem;
  }
}
/* line 48, sass/_base/_section.scss */
.section.footer {
  height: 140px !important;
}
/* line 51, sass/_base/_section.scss */
.section.is-home {
  margin-top: 0;
}
@media (max-width: 1200px) {
  /* line 51, sass/_base/_section.scss */
  .section.is-home {
    height: 100vh;
    min-height: 400px;
    min-height: 33.33333rem;
    padding-top: 0;
    margin-bottom: -60px;
    margin-bottom: -5rem;
  }
}
@media (max-width: 767px) {
  /* line 51, sass/_base/_section.scss */
  .section.is-home {
    margin-bottom: -12px;
    margin-bottom: -1rem;
  }
}
/* line 62, sass/_base/_section.scss */
.section.is-home.is-page-home {
  z-index: 1;
}
@media (max-width: 1200px) {
  /* line 65, sass/_base/_section.scss */
  .section.is-home .section-wrapper {
    top: 60px;
    top: 5rem;
  }
}
/* line 71, sass/_base/_section.scss */
.section.is-active {
  visibility: visible;
}
/* line 74, sass/_base/_section.scss */
.section .section-wrapper {
  position: relative;
  width: calc(100% - 10rem);
  height: calc(100% - 10rem);
  top: 60px;
  top: 5rem;
  left: 60px;
  left: 5rem;
}
@media (max-width: 1200px), (max-height: 650px) {
  /* line 74, sass/_base/_section.scss */
  .section .section-wrapper {
    height: calc(100% - 7rem);
  }
}
@media (max-width: 1200px) {
  /* line 74, sass/_base/_section.scss */
  .section .section-wrapper {
    top: 0;
  }
}
@media (max-width: 767px) {
  /* line 74, sass/_base/_section.scss */
  .section .section-wrapper {
    width: auto;
    left: 0;
    margin: 0 12px;
    margin: 0 1rem;
  }
}
/* line 93, sass/_base/_section.scss */
.section .section-wrapper-auto {
  height: auto;
  min-height: calc(100% - 10rem);
}
/* line 98, sass/_base/_section.scss */
.section .section-bg, .section .section-video {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}
@media (max-width: 1200px) {
  /* line 105, sass/_base/_section.scss */
  .section .section-bg.is-bgimg, .section .section-video.is-bgimg {
    padding-bottom: 66.666%;
    position: relative;
  }
}
/* line 112, sass/_base/_section.scss */
.section .section-video-wrapper {
  overflow: hidden;
  position: absolute;
  width: 100%;
  height: 100%;
}
/* line 118, sass/_base/_section.scss */
.section .section-video-wrapper:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 10;
  transform: translate3d(0, 0, 0);
  /* FP js fix */
}
/* line 130, sass/_base/_section.scss */
.section .mobile-flash {
  position: relative;
  overflow: hidden;
  height: 600px;
}
/* line 134, sass/_base/_section.scss */
.section .mobile-flash img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: auto;
  height: 100%;
  max-width: none;
  max-height: none;
  transform: translateX(-50%) translateY(-50%);
}
/* line 144, sass/_base/_section.scss */
.section .mobile-flash img:nth-child(1) {
  animation: flash1 4s infinite;
}
/* line 145, sass/_base/_section.scss */
.section .mobile-flash img:nth-child(2) {
  animation: flash2 4s infinite;
}
/* line 146, sass/_base/_section.scss */
.section .mobile-flash img:nth-child(3) {
  animation: flash3 4s infinite;
}
/* line 147, sass/_base/_section.scss */
.section .mobile-flash img:nth-child(4) {
  animation: flash4 4s infinite;
}
/* line 148, sass/_base/_section.scss */
.section .mobile-flash:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 10;
}
/* line 159, sass/_base/_section.scss */
.section .section-video {
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
}
/* line 168, sass/_base/_section.scss */
.section .section-content {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
}
/* line 173, sass/_base/_section.scss */
.section .section-content.is-height-auto {
  height: auto;
}
/* line 177, sass/_base/_section.scss */
.section .section-content-video {
  z-index: 10;
  position: absolute;
}
/* line 181, sass/_base/_section.scss */
.section .split {
  position: relative;
  width: 50%;
  height: 100%;
}
@media (max-width: 1200px) {
  /* line 181, sass/_base/_section.scss */
  .section .split {
    width: 100%;
    height: auto;
  }
}

/* line 1, sass/_base/_header.scss */
#header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
}
/* line 7, sass/_base/_header.scss */
#header.is-page-home {
  opacity: 0;
}
/* line 9, sass/_base/_header.scss */
#header.is-page-home.is-active {
  opacity: 1;
  transition: opacity 900ms ease-out;
}
@media (max-width: 1200px) {
  /* line 15, sass/_base/_header.scss */
  #header.is-nav-active .header-wrapper {
    background-color: #E3363D;
  }
}
@media (max-width: 1200px) {
  /* line 21, sass/_base/_header.scss */
  #header.is-nav-active #logo svg g {
    fill: white;
  }
}
@media (max-width: 1200px) {
  /* line 27, sass/_base/_header.scss */
  #header.is-nav-active #header-nav-container {
    visibility: visible;
  }
}
@media (max-width: 1200px) {
  /* line 32, sass/_base/_header.scss */
  #header.is-nav-active #social-nav {
    display: none;
  }
}
@media (max-width: 1200px) {
  /* line 37, sass/_base/_header.scss */
  #header.is-nav-active #header-nav-visit {
    visibility: hidden;
  }
}
@media (max-width: 1200px) {
  /* line 43, sass/_base/_header.scss */
  #header.is-nav-active #header-nav-trigger:before {
    content: "CLOSE";
    color: white;
  }
}
/* line 50, sass/_base/_header.scss */
#header.is-nav-active .header-nav-action {
  color: white;
}

/* line 56, sass/_base/_header.scss */
.header-wrapper {
  position: relative;
  z-index: 0;
  padding: 0 60px;
  padding: 0 5rem;
  height: 60px;
  height: 5rem;
  background-color: white;
}
@media (max-width: 1200px) {
  /* line 56, sass/_base/_header.scss */
  .header-wrapper {
    z-index: 2;
  }
}

/* line 67, sass/_base/_header.scss */
#logo {
  width: 120px;
  width: 10rem;
}
@media (max-width: 1200px) {
  /* line 67, sass/_base/_header.scss */
  #logo {
    margin: 0 auto;
  }
}
/* line 72, sass/_base/_header.scss */
#logo a {
  padding-top: 13.5px;
  padding-top: 1.125rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
}
/* line 77, sass/_base/_header.scss */
#logo svg {
  backface-visibility: hidden;
}

@media (max-width: 1200px) {
  /* line 82, sass/_base/_header.scss */
  #header-nav-container {
    position: fixed;
    top: 0;
    z-index: 1;
    width: 100%;
    height: 100vh;
    text-align: center;
    overflow: hidden;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    visibility: hidden;
    backface-visibility: hidden;
  }
}
@media (max-width: 1200px) {
  /* line 96, sass/_base/_header.scss */
  #header-nav-container .header-nav-wrapper {
    position: relative;
    z-index: 2;
    padding: 60px 0;
    padding: 5rem 0;
    height: 70vh;
  }
}

/* line 106, sass/_base/_header.scss */
#header-nav {
  position: absolute;
  top: 0;
  right: 0;
  padding-right: 60px;
  padding-right: 5rem;
}
@media (max-width: 1200px) {
  /* line 106, sass/_base/_header.scss */
  #header-nav {
    position: relative;
    padding-right: 0;
    height: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: stretch;
        align-items: stretch;
    -ms-flex-flow: row wrap;
        flex-flow: row wrap;
  }
}
/* line 119, sass/_base/_header.scss */
#header-nav p {
  margin-top: 16px;
  margin-top: 1.33333rem;
  margin-right: 30px;
  margin-right: 2.5rem;
}
@media (max-width: 1200px) {
  /* line 119, sass/_base/_header.scss */
  #header-nav p {
    margin-right: 20px;
    margin-right: 1.66667rem;
  }
}
@media (max-width: 1200px) {
  /* line 119, sass/_base/_header.scss */
  #header-nav p {
    width: 100%;
    margin-right: 0;
    margin-top: 10px;
    margin-top: 0.83333rem;
  }
}
@media (max-width: 1200px) {
  /* line 130, sass/_base/_header.scss */
  #header-nav p.is-nav-home {
    display: none;
  }
}
/* line 135, sass/_base/_header.scss */
#header-nav p:last-child {
  margin-right: 0;
}
/* line 139, sass/_base/_header.scss */
#header-nav p.is-lang:before {
  content: "/";
  margin-right: 30px;
  margin-right: 2.5rem;
}
@media (max-width: 1200px) {
  /* line 139, sass/_base/_header.scss */
  #header-nav p.is-lang:before {
    margin-right: 20px;
    margin-right: 1.66667rem;
  }
}
@media (max-width: 1200px) {
  /* line 139, sass/_base/_header.scss */
  #header-nav p.is-lang:before {
    margin-right: 0;
    content: "";
  }
}
/* line 152, sass/_base/_header.scss */
#header-nav a {
  position: relative;
  display: inline-block;
  font-size: 13px;
  font-size: 1.08333rem;
}
@media (max-width: 1200px) {
  /* line 152, sass/_base/_header.scss */
  #header-nav a {
    color: #FFBFB6;
    font-family: "GothamHTF", "Noto Sans Japanese", "游ゴシック", "YuGothic", sans-serif;
    font-weight: bold;
    font-size: 16px;
    font-size: 1.33333rem;
  }
}
/* line 162, sass/_base/_header.scss */
#header-nav a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  pointer-events: none;
  width: 100%;
  height: 1px;
  background-color: black;
  transform: translateY(0.5em);
  opacity: 0;
}
@media (max-width: 1200px) {
  /* line 162, sass/_base/_header.scss */
  #header-nav a:before {
    content: none;
  }
}
@media (max-width: 1200px) {
  /* line 178, sass/_base/_header.scss */
  #header-nav a.is-current {
    color: white;
  }
}
/* line 182, sass/_base/_header.scss */
#header-nav a.is-current:before {
  transform: translateY(0);
  opacity: 1;
}
@media (max-width: 1200px) {
  /* line 182, sass/_base/_header.scss */
  #header-nav a.is-current:before {
    content: none;
  }
}
/* line 189, sass/_base/_header.scss */
#header-nav a.is-current.hover {
  opacity: 1;
}

/* line 196, sass/_base/_header.scss */
#social-nav {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 11;
  width: 60px;
  width: 5rem;
  height: 100%;
  text-align: center;
  mix-blend-mode: difference;
}
@media (max-width: 767px) {
  /* line 196, sass/_base/_header.scss */
  #social-nav {
    display: none;
  }
}
/* line 208, sass/_base/_header.scss */
#social-nav.is-page-home {
  opacity: 0;
}
/* line 210, sass/_base/_header.scss */
#social-nav.is-page-home.is-active {
  opacity: 1;
  transition: opacity 900ms ease-out;
}
/* line 215, sass/_base/_header.scss */
#social-nav ul {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  backface-visibility: hidden;
}
/* line 220, sass/_base/_header.scss */
#social-nav ul li {
  margin-top: 15px;
  margin-top: 1.25rem;
  font-size: 14px;
  font-size: 1.16667rem;
}
/* line 223, sass/_base/_header.scss */
#social-nav ul li:first-child {
  margin-top: 0;
}
/* line 228, sass/_base/_header.scss */
#social-nav .button-scroll {
  position: absolute;
  bottom: 30px;
  bottom: 2.5rem;
  left: 30px;
  left: 2.5rem;
  backface-visibility: hidden;
}
@media (max-width: 1200px) {
  /* line 228, sass/_base/_header.scss */
  #social-nav .button-scroll {
    display: none;
  }
}
/* line 236, sass/_base/_header.scss */
#social-nav .button-scroll a {
  display: inline-block;
  transform: rotate(-90deg);
  transform-origin: left center;
  white-space: nowrap;
}
/* line 241, sass/_base/_header.scss */
#social-nav .button-scroll a:before {
  content: "← scroll";
}
/* line 247, sass/_base/_header.scss */
#social-nav .button-scroll.is-last a:before {
  content: "top →";
}
@supports (mix-blend-mode: difference) {
  /* line 254, sass/_base/_header.scss */
  #social-nav a {
    color: white;
  }
}

/* line 260, sass/_base/_header.scss */
#social-nav-sp {
  display: none;
  width: 100%;
  padding-top: 15px;
  padding-top: 1.25rem;
}
@media (max-width: 1200px) {
  /* line 260, sass/_base/_header.scss */
  #social-nav-sp {
    display: block;
  }
}
/* line 267, sass/_base/_header.scss */
#social-nav-sp li {
  display: inline-block;
  font-size: 24px;
  font-size: 2rem;
  margin-left: 20px;
  margin-left: 1.66667rem;
}
/* line 271, sass/_base/_header.scss */
#social-nav-sp li:first-child {
  margin-left: 0;
}
@media (max-width: 1200px) {
  /* line 275, sass/_base/_header.scss */
  #social-nav-sp li.is-active a {
    color: white;
  }
}
@media (max-width: 767px) {
  /* line 281, sass/_base/_header.scss */
  #social-nav-sp li a {
    color: white;
  }
}

/* line 289, sass/_base/_header.scss */
#header-nav-visit {
  display: none;
}
@media (max-width: 1200px) {
  /* line 289, sass/_base/_header.scss */
  #header-nav-visit {
    display: inline-block;
    position: fixed;
    top: 1px;
    left: 60px;
    left: 5rem;
    height: 60px;
    height: 5rem;
    line-height: 60px;
    line-height: 5rem;
    z-index: 3;
    transition: none;
  }
}
@media (max-width: 767px) {
  /* line 289, sass/_base/_header.scss */
  #header-nav-visit {
    left: 24px;
    left: 2rem;
  }
}

/* line 306, sass/_base/_header.scss */
#header-nav-trigger {
  display: none;
}
@media (max-width: 1200px) {
  /* line 306, sass/_base/_header.scss */
  #header-nav-trigger {
    display: inline-block;
    position: fixed;
    top: 1px;
    right: 60px;
    right: 5rem;
    height: 60px;
    height: 5rem;
    line-height: 60px;
    line-height: 5rem;
    z-index: 3;
    transition: none;
  }
}
@media (max-width: 767px) {
  /* line 306, sass/_base/_header.scss */
  #header-nav-trigger {
    right: 24px;
    right: 2rem;
  }
}
/* line 321, sass/_base/_header.scss */
#header-nav-trigger:before {
  content: "MENU";
}

/* line 327, sass/_base/_header.scss */
.header-nav-action {
  display: none;
}
@media (max-width: 1200px) {
  /* line 327, sass/_base/_header.scss */
  .header-nav-action {
    display: inline-block;
    position: fixed;
    top: 1px;
    left: 60px;
    left: 5rem;
    height: 60px;
    height: 5rem;
    line-height: 60px;
    line-height: 5rem;
    text-transform: uppercase;
    z-index: 3;
    transition: none;
  }
}
@media (max-width: 767px) {
  /* line 327, sass/_base/_header.scss */
  .header-nav-action {
    left: 24px;
    left: 2rem;
  }
}

@media (max-width: 1200px) {
  /* line 349, sass/_base/_header.scss */
  .nav-animation {
    opacity: 0;
    visibility: hidden;
    transform: translateY(2em);
    backface-visibility: hidden;
  }
}
@media (max-width: 1200px) {
  /* line 358, sass/_base/_header.scss */
  .nav-animation:nth-of-type(0).is-active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: all 1200ms cubic-bezier(0.19, 1, 0.22, 1) 0ms;
  }
}
@media (max-width: 1200px) {
  /* line 358, sass/_base/_header.scss */
  .nav-animation:nth-of-type(1).is-active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: all 1200ms cubic-bezier(0.19, 1, 0.22, 1) 50ms;
  }
}
@media (max-width: 1200px) {
  /* line 358, sass/_base/_header.scss */
  .nav-animation:nth-of-type(2).is-active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: all 1200ms cubic-bezier(0.19, 1, 0.22, 1) 100ms;
  }
}
@media (max-width: 1200px) {
  /* line 358, sass/_base/_header.scss */
  .nav-animation:nth-of-type(3).is-active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: all 1200ms cubic-bezier(0.19, 1, 0.22, 1) 150ms;
  }
}
@media (max-width: 1200px) {
  /* line 358, sass/_base/_header.scss */
  .nav-animation:nth-of-type(4).is-active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: all 1200ms cubic-bezier(0.19, 1, 0.22, 1) 200ms;
  }
}
@media (max-width: 1200px) {
  /* line 358, sass/_base/_header.scss */
  .nav-animation:nth-of-type(5).is-active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: all 1200ms cubic-bezier(0.19, 1, 0.22, 1) 250ms;
  }
}
@media (max-width: 1200px) {
  /* line 358, sass/_base/_header.scss */
  .nav-animation:nth-of-type(6).is-active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: all 1200ms cubic-bezier(0.19, 1, 0.22, 1) 300ms;
  }
}
@media (max-width: 1200px) {
  /* line 358, sass/_base/_header.scss */
  .nav-animation:nth-of-type(7).is-active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: all 1200ms cubic-bezier(0.19, 1, 0.22, 1) 350ms;
  }
}
@media (max-width: 1200px) {
  /* line 358, sass/_base/_header.scss */
  .nav-animation:nth-of-type(8).is-active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: all 1200ms cubic-bezier(0.19, 1, 0.22, 1) 400ms;
  }
}
@media (max-width: 1200px) {
  /* line 358, sass/_base/_header.scss */
  .nav-animation:nth-of-type(9).is-active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: all 1200ms cubic-bezier(0.19, 1, 0.22, 1) 450ms;
  }
}
@media (max-width: 1200px) {
  /* line 358, sass/_base/_header.scss */
  .nav-animation:nth-of-type(10).is-active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: all 1200ms cubic-bezier(0.19, 1, 0.22, 1) 500ms;
  }
}

@media (max-width: 767px) {
  /* line 370, sass/_base/_header.scss */
  .nav-animation-sp {
    opacity: 0;
    visibility: hidden;
    transform: translateY(2em);
    backface-visibility: hidden;
  }
}
@media (max-width: 767px) {
  /* line 379, sass/_base/_header.scss */
  .nav-animation-sp:nth-of-type(0).is-active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: all 1200ms cubic-bezier(0.19, 1, 0.22, 1) 0ms;
  }
}
@media (max-width: 767px) {
  /* line 379, sass/_base/_header.scss */
  .nav-animation-sp:nth-of-type(1).is-active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: all 1200ms cubic-bezier(0.19, 1, 0.22, 1) 50ms;
  }
}
@media (max-width: 767px) {
  /* line 379, sass/_base/_header.scss */
  .nav-animation-sp:nth-of-type(2).is-active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: all 1200ms cubic-bezier(0.19, 1, 0.22, 1) 100ms;
  }
}
@media (max-width: 767px) {
  /* line 379, sass/_base/_header.scss */
  .nav-animation-sp:nth-of-type(3).is-active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: all 1200ms cubic-bezier(0.19, 1, 0.22, 1) 150ms;
  }
}
@media (max-width: 767px) {
  /* line 379, sass/_base/_header.scss */
  .nav-animation-sp:nth-of-type(4).is-active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: all 1200ms cubic-bezier(0.19, 1, 0.22, 1) 200ms;
  }
}
@media (max-width: 767px) {
  /* line 379, sass/_base/_header.scss */
  .nav-animation-sp:nth-of-type(5).is-active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: all 1200ms cubic-bezier(0.19, 1, 0.22, 1) 250ms;
  }
}
@media (max-width: 767px) {
  /* line 379, sass/_base/_header.scss */
  .nav-animation-sp:nth-of-type(6).is-active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: all 1200ms cubic-bezier(0.19, 1, 0.22, 1) 300ms;
  }
}
@media (max-width: 767px) {
  /* line 379, sass/_base/_header.scss */
  .nav-animation-sp:nth-of-type(7).is-active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: all 1200ms cubic-bezier(0.19, 1, 0.22, 1) 350ms;
  }
}
@media (max-width: 767px) {
  /* line 379, sass/_base/_header.scss */
  .nav-animation-sp:nth-of-type(8).is-active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: all 1200ms cubic-bezier(0.19, 1, 0.22, 1) 400ms;
  }
}
@media (max-width: 767px) {
  /* line 379, sass/_base/_header.scss */
  .nav-animation-sp:nth-of-type(9).is-active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: all 1200ms cubic-bezier(0.19, 1, 0.22, 1) 450ms;
  }
}
@media (max-width: 767px) {
  /* line 379, sass/_base/_header.scss */
  .nav-animation-sp:nth-of-type(10).is-active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: all 1200ms cubic-bezier(0.19, 1, 0.22, 1) 500ms;
  }
}

/* line 1, sass/_base/_footer.scss */
.footer {
  padding: 60px 0;
  padding: 5rem 0;
  background-color: #242424;
}
@media (max-width: 1200px) {
  /* line 1, sass/_base/_footer.scss */
  .footer {
    margin-top: 12px;
    margin-top: 1rem;
  }
}
/* line 8, sass/_base/_footer.scss */
.footer .footer-logo {
  width: 90px;
  width: 7.5rem;
  margin: 0 auto;
}
/* line 13, sass/_base/_footer.scss */
.footer .footer-copyright {
  text-align: center;
  color: #979797;
}
/* line 17, sass/_base/_footer.scss */
.footer .footer-copyright a {
  color: #979797;
  border-bottom: 1px solid #979797;
  padding-bottom: 0.3em;
}
/* line 24, sass/_base/_footer.scss */
.footer .footer-social {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  margin: 1.1% 0 2%;
}
/* line 29, sass/_base/_footer.scss */
.footer .footer-social a {
  color: #CFCFCF;
  font-size: 28px;
  margin: 0 10px;
}

/* line 1, sass/_base/_modal.scss */
.modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 100;
  display: none;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
}
/* line 13, sass/_base/_modal.scss */
.modal.is-active {
  display: -ms-flexbox;
  display: flex;
}
/* line 17, sass/_base/_modal.scss */
.modal-inner {
  padding: 2% 10%;
  box-sizing: border-box;
}
/* line 22, sass/_base/_modal.scss */
.modal--content {
  background: #fff;
  box-sizing: border-box;
  width: 70%;
  min-width: 300px;
  min-height: 70vh;
  padding: 1.5rem;
}
/* line 30, sass/_base/_modal.scss */
.modal--content .logo {
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
}
/* line 36, sass/_base/_modal.scss */
.modal--content .meta {
  display: block;
  text-align: center;
  margin: 5rem auto 2rem;
}
/* line 41, sass/_base/_modal.scss */
.modal--content .meta > span {
  display: inline-block;
}
/* line 46, sass/_base/_modal.scss */
.modal--content .description {
  width: 100%;
}
/* line 49, sass/_base/_modal.scss */
.modal--content .description .brewer-description {
  text-align: center;
  width: 30%;
  min-width: 200px;
  display: block;
  margin: auto;
}
/* line 58, sass/_base/_modal.scss */
.modal--content .link {
  display: block;
  text-align: center;
  width: 100%;
  font-weight: bold;
  margin-top: 2rem;
}
/* line 66, sass/_base/_modal.scss */
.modal--content .brewer-logo {
  width: 140px;
  height: 140px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
/* line 74, sass/_base/_modal.scss */
.modal--content .modal-close {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end;
      justify-content: flex-end;
  -ms-flex-align: center;
      align-items: center;
  cursor: pointer;
  padding: 0.3rem 0.5rem;
  border-radius: 4px;
  transition: 0.3s;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
/* line 84, sass/_base/_modal.scss */
.modal--content .modal-close:hover {
  background: rgba(0, 0, 0, 0.1);
}
/* line 88, sass/_base/_modal.scss */
.modal--content .modal-close span {
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 12px;
  margin-right: 1rem;
}
/* line 95, sass/_base/_modal.scss */
.modal--content .modal-close svg {
  width: 0.7rem;
  height: 0.7rem;
}

@keyframes popUp {
  from {
    opacity: 0;
    transform: translateY(10%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes popUpMobile {
  from {
    opacity: 0;
    transform: translateX(50%) translateY(10%);
  }
  to {
    opacity: 1;
    transform: translateX(50%) translateY(0);
  }
}
/* line 23, sass/_base/_popup.scss */
.popup {
  background-color: #DCC04E;
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  width: 300px;
  z-index: 999;
  padding: 2rem;
  border-radius: 4px;
  color: #fff;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  box-shadow: 1px 5px 50px rgba(0, 0, 0, 0.3);
  opacity: 0;
}
/* line 37, sass/_base/_popup.scss */
.popup.is-active {
  animation: 0.5s popUp forwards;
}
@media (max-width: 767px) {
  /* line 23, sass/_base/_popup.scss */
  .popup {
    right: 50%;
    transform: translateX(50%);
    width: 75%;
  }
  /* line 46, sass/_base/_popup.scss */
  .popup.is-active {
    animation: 0.5s popUpMobile forwards;
  }
}
/* line 51, sass/_base/_popup.scss */
.popup h4 {
  margin-bottom: 0.5rem;
}
/* line 57, sass/_base/_popup.scss */
.popup h4,
.popup p {
  font-size: 1.2rem;
}
/* line 62, sass/_base/_popup.scss */
.popup a {
  background-color: #fff;
  color: #DCC04E;
  display: block;
  text-transform: uppercase;
  text-align: center;
  padding: 1em 0.5em;
  box-sizing: border-box;
  margin-top: 1.5rem;
  letter-spacing: 0.2em;
}
/* line 76, sass/_base/_popup.scss */
.popup .close-popup {
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: absolute;
  right: 0.5rem;
  top: 0.5rem;
  padding: 15px;
  box-sizing: border-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  z-index: 9999;
}
/* line 90, sass/_base/_popup.scss */
.popup .close-popup img {
  width: 100%;
}

/* line 1, sass/_base/_helpers.scss */
.flex-row {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

/* line 6, sass/_base/_helpers.scss */
.is-multiline {
  -ms-flex-flow: row wrap;
      flex-flow: row wrap;
}

/* line 10, sass/_base/_helpers.scss */
.justify-content-end {
  -ms-flex-pack: end;
      justify-content: flex-end;
}

/* line 14, sass/_base/_helpers.scss */
.column {
  -ms-flex: 1;
      flex: 1;
}

@media (max-width: 767px) {
  /* line 19, sass/_base/_helpers.scss */
  .is-hidden-mobile {
    display: none;
  }
}
/* line 24, sass/_base/_helpers.scss */
.is-hidden-tablet {
  display: none;
}
@media (max-width: 767px) {
  /* line 24, sass/_base/_helpers.scss */
  .is-hidden-tablet {
    display: block;
  }
}

/* line 32, sass/_base/_helpers.scss */
.is-fullsize-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* Content */
/* line 1, sass/_content/_content-home.scss */
.hero-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  line-height: 0;
  width: 100%;
  opacity: 0;
  transition: 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transform-origin: top;
  max-width: 300px;
  max-width: 25rem;
  padding: 20px 30px;
  padding: 1.66667rem 2.5rem;
  transform: translateX(-50%) translateY(-50%);
}
/* line 14, sass/_content/_content-home.scss */
.hero-logo.is-active {
  opacity: 1;
}

@media (max-width: 767px) {
  /* line 18, sass/_content/_content-home.scss */
  .section.is-home {
    margin-bottom: 2rem;
  }
}
/* line 23, sass/_content/_content-home.scss */
.section.is-home.is-page-home {
  visibility: visible;
}
/* line 25, sass/_content/_content-home.scss */
.section.is-home.is-page-home .home-bg {
  top: -60px;
  top: -5rem;
  left: -60px;
  left: -5rem;
  width: calc(100% + 10rem);
  height: calc(100% + 10rem);
}
@media (max-width: 767px) {
  /* line 25, sass/_content/_content-home.scss */
  .section.is-home.is-page-home .home-bg {
    left: -12px;
    left: -1rem;
    width: calc(100% + 2rem);
  }
}
/* line 34, sass/_content/_content-home.scss */
.section.is-home.is-page-home .home-bg.is-active {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 900ms cubic-bezier(0.645, 0.045, 0.355, 1);
}
@media (max-width: 767px) {
  /* line 34, sass/_content/_content-home.scss */
  .section.is-home.is-page-home .home-bg.is-active {
    height: calc(100% + 4rem);
  }
}
@media (max-width: 767px) {
  /* line 46, sass/_content/_content-home.scss */
  .section.is-home .home-bg {
    height: calc(100% + 4rem);
  }
}

/* line 53, sass/_content/_content-home.scss */
.after-load {
  width: 80%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
      flex-flow: row wrap;
  -ms-flex-pack: center;
      justify-content: center;
  margin: auto;
  padding-top: 20rem;
  opacity: 0;
  transition: opacity 2000ms cubic-bezier(0.19, 1, 0.22, 1);
  transition-delay: 0.5s;
}
@media (max-width: 1200px), (max-height: 650px) {
  /* line 53, sass/_content/_content-home.scss */
  .after-load {
    padding-top: 13rem;
  }
}
@media (max-width: 767px) {
  /* line 53, sass/_content/_content-home.scss */
  .after-load {
    padding: 16rem 15px 0;
    box-sizing: border-box;
    width: 100%;
  }
}
/* line 74, sass/_content/_content-home.scss */
.after-load .hero-text {
  display: block;
  margin: auto;
  max-height: 140px;
}
@media (max-width: 1200px), (max-height: 650px) {
  /* line 74, sass/_content/_content-home.scss */
  .after-load .hero-text {
    max-height: 70px;
  }
}
@media (max-width: 1200px) {
  /* line 74, sass/_content/_content-home.scss */
  .after-load .hero-text {
    max-height: 100px;
  }
}
@media (max-width: 767px) {
  /* line 74, sass/_content/_content-home.scss */
  .after-load .hero-text {
    max-height: 80px;
  }
}
/* line 92, sass/_content/_content-home.scss */
.after-load small {
  text-align: center;
  padding: 0 10px;
  display: block;
  font-size: 10px;
}
@media (max-width: 767px) {
  /* line 92, sass/_content/_content-home.scss */
  .after-load small {
    font-size: 12px;
  }
}
/* line 103, sass/_content/_content-home.scss */
.after-load h2 {
  text-align: center;
  font-size: 32px;
  line-height: 38px;
  margin: 30px 0 10px;
  font-weight: bold;
  color: #fff;
  min-width: 100%;
}
/* line 113, sass/_content/_content-home.scss */
.after-load b {
  display: block;
  margin-top: 30px;
  text-align: center;
}
/* line 119, sass/_content/_content-home.scss */
.after-load p {
  text-align: center;
}
/* line 123, sass/_content/_content-home.scss */
.after-load .btn {
  background: #DB4349;
  color: #fff;
  display: inline-block;
  margin-top: 2rem;
  border-radius: 0;
  font-weight: bold;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 1em 2em;
  border-radius: 4px;
}
/* line 136, sass/_content/_content-home.scss */
.section.is-home.is-active-2 .after-load {
  opacity: 1;
}

/* line 141, sass/_content/_content-home.scss */
.section.is-home.is-active-2 .hero-logo {
  top: 3%;
  transform: translateX(-50%) translateY(0) scale(0.6);
}
@media (max-width: 1200px), (max-height: 650px) {
  /* line 141, sass/_content/_content-home.scss */
  .section.is-home.is-active-2 .hero-logo {
    transform: translateX(-50%) translateY(0) scale(0.4);
    top: 1%;
  }
}

/* line 153, sass/_content/_content-home.scss */
#mc_embed_signup.is-clicked form {
  width: 300px;
}
/* line 157, sass/_content/_content-home.scss */
#mc_embed_signup.is-clicked form .fields input#mce-EMAIL {
  max-width: 0;
  padding: 0;
}
/* line 162, sass/_content/_content-home.scss */
#mc_embed_signup.is-clicked form .fields input[type="submit"] {
  -ms-flex: 1;
      flex: 1;
  -webkit-appearance: none;
}
/* line 168, sass/_content/_content-home.scss */
#mc_embed_signup #mce-responses {
  display: none;
}
/* line 172, sass/_content/_content-home.scss */
#mc_embed_signup form {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  width: 300px;
  display: block;
  margin: 30px auto 10px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  transition: 0.3s ease-out;
}
/* line 183, sass/_content/_content-home.scss */
#mc_embed_signup form .fields {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
/* line 187, sass/_content/_content-home.scss */
#mc_embed_signup form .fields input {
  border: none;
  padding: 18px;
  margin: 0;
  outline: none;
  transition: 0.3s ease-out;
  -ms-flex: 7;
      flex: 7;
  font-family: "Gotham HTF", sans-serif;
  font-size: 12px;
}
/* line 198, sass/_content/_content-home.scss */
#mc_embed_signup form .fields input[type="submit"] {
  -webkit-appearance: none;
  background: #000;
  color: #fff;
  letter-spacing: 0.2em;
  margin-right: -1px;
  font-weight: bold;
  -ms-flex: 3;
      flex: 3;
  border-radius: 0;
}
/* line 210, sass/_content/_content-home.scss */
#mc_embed_signup form #mce-success-response {
  display: block;
  -ms-flex: 100% 1;
      flex: 100% 1;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 35px;
  background: #fff;
  border-radius: 4px;
  padding: 18px;
  width: 300px;
  text-align: center;
}
@media (max-width: 1200px) {
  /* line 210, sass/_content/_content-home.scss */
  #mc_embed_signup form #mce-success-response {
    bottom: 15px;
  }
}

/* line 230, sass/_content/_content-home.scss */
.newsletter-text {
  padding: 0 15px;
}

@media (max-width: 1200px) {
  /* line 2, sass/_content/_content-about.scss */
  #About img {
    width: 70%;
    max-width: 400px;
    margin: 5% auto;
  }

  /* line 8, sass/_content/_content-about.scss */
  #About .content-text {
    margin-top: 40px;
  }
}
@media (max-width: 1200px) {
  /* line 1, sass/_content/_content-social.scss */
  .content-facebook {
    height: auto !important;
  }
}

/* line 6, sass/_content/_content-social.scss */
.js-height-facebook {
  height: 60%;
}

/* line 9, sass/_content/_content-social.scss */
.facebook-placeholder {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  width: 20%;
  height: 1px;
}

/* line 16, sass/_content/_content-social.scss */
.is-symbol-facebook {
  line-height: 0;
  font-size: 60px;
  font-size: 5rem;
}

/* line 20, sass/_content/_content-social.scss */
.content-instagram {
  position: relative;
  line-height: 0;
}
/* line 23, sass/_content/_content-social.scss */
.content-instagram .instagram {
  display: block;
  position: relative;
  z-index: 1;
  width: calc(20% - 2.5rem);
  margin-left: 37.5px;
  margin-left: 3.125rem;
}
@media (max-width: 1200px) {
  /* line 23, sass/_content/_content-social.scss */
  .content-instagram .instagram {
    width: calc(33.333% - 0.66667rem);
    margin-left: 12px;
    margin-left: 1rem;
  }
}
/* line 33, sass/_content/_content-social.scss */
.content-instagram .instagram.hover {
  animation: none;
}
/* line 36, sass/_content/_content-social.scss */
.content-instagram .instagram:hover .instagram-hover-content {
  opacity: 1;
}
@media (max-width: 767px) {
  /* line 36, sass/_content/_content-social.scss */
  .content-instagram .instagram:hover .instagram-hover-content {
    opacity: 0;
  }
}
/* line 42, sass/_content/_content-social.scss */
.content-instagram .instagram:first-child {
  margin-left: 0;
}
/* line 45, sass/_content/_content-social.scss */
.content-instagram .instagram:last-child {
  display: none;
}
@media (max-width: 1200px) {
  /* line 45, sass/_content/_content-social.scss */
  .content-instagram .instagram:last-child {
    display: block;
  }
}
@media (max-width: 1200px) {
  /* line 51, sass/_content/_content-social.scss */
  .content-instagram .instagram:nth-child(3n+1) {
    margin-left: 0;
  }
}
@media (max-width: 1200px) {
  /* line 56, sass/_content/_content-social.scss */
  .content-instagram .instagram:nth-child(n+4) {
    margin-top: 12px;
    margin-top: 1rem;
  }
}
/* line 61, sass/_content/_content-social.scss */
.content-instagram .instagram a {
  display: block;
}
/* line 64, sass/_content/_content-social.scss */
.content-instagram .instagram .instagram-hover-content {
  opacity: 0;
  transition: 0.3s;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  color: #fff;
}
/* line 78, sass/_content/_content-social.scss */
.content-instagram .instagram .instagram-hover-content span {
  margin: 0 0.5em;
  font-size: 1.5rem;
  font-weight: 600;
  transform: translateY(-15px);
}
/* line 84, sass/_content/_content-social.scss */
.content-instagram .instagram .instagram-hover-content span:before {
  content: '';
  width: 40px;
  height: 40px;
  display: inline-block;
  transform: translateY(15px);
}
/* line 92, sass/_content/_content-social.scss */
.content-instagram .instagram .instagram-hover-content span:nth-child(1):before {
  background: center/contain url("../icons/instagram-like.svg") no-repeat;
}
/* line 93, sass/_content/_content-social.scss */
.content-instagram .instagram .instagram-hover-content span:nth-child(2):before {
  background: center/contain url("../icons/instagram-chat.svg") no-repeat;
}

/* line 2, sass/_content/_content-brewers.scss */
#brewers .wrapper {
  max-width: initial;
}
/* line 6, sass/_content/_content-brewers.scss */
#brewers .flickity-viewport {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
/* line 14, sass/_content/_content-brewers.scss */
#brewers .content-brewers,
#brewers .js-story-carousel-container,
#brewers .fp-slides,
#brewers .fp-slidesContainer {
  height: 100%;
}
@media only screen and (max-width: 960px) {
  /* line 14, sass/_content/_content-brewers.scss */
  #brewers .content-brewers,
  #brewers .js-story-carousel-container,
  #brewers .fp-slides,
  #brewers .fp-slidesContainer {
    height: 540px;
  }
}
/* line 25, sass/_content/_content-brewers.scss */
#brewers .js-carousel-cell {
  width: 100% !important;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
      flex-flow: row wrap;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-align: start;
      align-items: flex-start;
  padding: 100px 50px;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  /* line 25, sass/_content/_content-brewers.scss */
  #brewers .js-carousel-cell {
    padding: 100px 10px;
  }
}
/* line 40, sass/_content/_content-brewers.scss */
#brewers .fp-controlArrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 767px) {
  /* line 40, sass/_content/_content-brewers.scss */
  #brewers .fp-controlArrow {
    display: none;
  }
}
/* line 50, sass/_content/_content-brewers.scss */
#brewers .flickity-page-dots {
  bottom: 40px;
}
/* line 53, sass/_content/_content-brewers.scss */
#brewers .flickity-page-dots .dot.is-selected {
  background-color: #E3363D;
}
/* line 58, sass/_content/_content-brewers.scss */
#brewers .flickity-prev-next-button,
#brewers .flickity-prev-next-button:hover {
  background: none;
}
@media (max-width: 767px) {
  /* line 58, sass/_content/_content-brewers.scss */
  #brewers .flickity-prev-next-button,
  #brewers .flickity-prev-next-button:hover {
    display: none;
  }
}
/* line 68, sass/_content/_content-brewers.scss */
#brewers .slide .fp-tableCell {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
      flex-flow: row wrap;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-align: start;
      align-items: flex-start;
  padding: 0 5%;
  box-sizing: border-box;
  width: 100%;
  height: 100% !important;
}
/* line 79, sass/_content/_content-brewers.scss */
#brewers .slide-item {
  -ms-flex: calc(100% / 3) 1;
      flex: calc(100% / 3) 1;
  max-width: calc(100% / 3);
  height: 50%;
  padding: 10px;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  /* line 79, sass/_content/_content-brewers.scss */
  #brewers .slide-item {
    padding: 5px;
  }
}
/* line 90, sass/_content/_content-brewers.scss */
#brewers .slide-item-inner {
  background: #fff;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  padding: 30px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
      flex-flow: row wrap;
  -ms-flex-pack: center;
      justify-content: center;
}
@media (max-width: 767px) {
  /* line 90, sass/_content/_content-brewers.scss */
  #brewers .slide-item-inner {
    padding: 10px;
  }
}
/* line 105, sass/_content/_content-brewers.scss */
#brewers .slide-item .brewer-logo {
  -ms-flex: 70% 1;
      flex: 70% 1;
  max-width: 70%;
  height: 65%;
  background-size: contain;
  background-position: center bottom;
  background-repeat: no-repeat;
}
@media (max-width: 767px) {
  /* line 105, sass/_content/_content-brewers.scss */
  #brewers .slide-item .brewer-logo {
    height: 45%;
  }
}
/* line 118, sass/_content/_content-brewers.scss */
#brewers .slide-item .brewer-details {
  -ms-flex: 100% 1;
      flex: 100% 1;
  -ms-flex-item-align: end;
      align-self: flex-end;
}
@media (max-width: 767px) {
  /* line 118, sass/_content/_content-brewers.scss */
  #brewers .slide-item .brewer-details {
    font-size: 10px;
  }
}
/* line 127, sass/_content/_content-brewers.scss */
#brewers .slide-item .brewer-name,
#brewers .slide-item .brewer-country {
  text-align: center;
}
/* line 132, sass/_content/_content-brewers.scss */
#brewers .slide-item .brewer-description,
#brewers .slide-item .brewer-link {
  display: none;
}

@media (max-width: 767px) {
  /* line 8, sass/_content/_content-beer-list.scss */
  #beers .section-title .wrapper {
    -ms-flex-pack: center;
        justify-content: center;
  }
}
/* line 13, sass/_content/_content-beer-list.scss */
#beers .content-carousel {
  padding: 1rem 0 100px;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  /* line 13, sass/_content/_content-beer-list.scss */
  #beers .content-carousel {
    display: none;
  }
}
/* line 22, sass/_content/_content-beer-list.scss */
#beers .content-carousel,
#beers .carousel-container {
  height: 90%;
}
/* line 28, sass/_content/_content-beer-list.scss */
#beers .beerlist.is-collapsed {
  max-height: 480px;
  overflow: hidden;
}
/* line 32, sass/_content/_content-beer-list.scss */
#beers .beerlist.is-collapsed .expand-text {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
}
/* line 38, sass/_content/_content-beer-list.scss */
#beers .beerlist.is-collapsed .collapse-text {
  display: none;
}
/* line 43, sass/_content/_content-beer-list.scss */
#beers .beerlist.is-expanded {
  padding-bottom: 72px;
}
/* line 47, sass/_content/_content-beer-list.scss */
#beers .beerlist .expand-text {
  display: none;
  position: absolute;
}
/* line 52, sass/_content/_content-beer-list.scss */
#beers .beerlist .collapse-text {
  position: -webkit-sticky;
  position: sticky;
}
/* line 56, sass/_content/_content-beer-list.scss */
#beers .beerlist .expand-text,
#beers .beerlist .collapse-text {
  bottom: 0;
  width: 100%;
  text-align: center;
  background: #fff;
  padding: 2rem 0;
  text-decoration: none;
  color: #a5a5a5;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
/* line 68, sass/_content/_content-beer-list.scss */
#beers .beerlist .expand-text span,
#beers .beerlist .collapse-text span {
  position: relative;
}
/* line 71, sass/_content/_content-beer-list.scss */
#beers .beerlist .expand-text span::before,
#beers .beerlist .collapse-text span::before {
  content: '';
  left: 0;
  bottom: 1px;
  width: 100%;
  height: 1px;
  background-color: #a5a5a5;
  position: absolute;
}
/* line 84, sass/_content/_content-beer-list.scss */
#beers .beerlist[data-activebeer="yellow"] .beer-type {
  color: #f7a615;
}
/* line 88, sass/_content/_content-beer-list.scss */
#beers .beerlist[data-activebeer="yellow"] .beer.beer--yellow {
  display: -ms-flexbox;
  display: flex;
}
/* line 91, sass/_content/_content-beer-list.scss */
#beers .beerlist[data-activebeer="yellow"] .beer.beer--yellow svg g, #beers .beerlist[data-activebeer="yellow"] .beer.beer--yellow.fav svg path {
  fill: #f7a615;
  stroke: #f7a615;
}
/* line 98, sass/_content/_content-beer-list.scss */
#beers .beerlist[data-activebeer="yellow"] .flickity-page-dots .dot.is-selected {
  background: #f7a615;
}
/* line 104, sass/_content/_content-beer-list.scss */
#beers .beerlist[data-activebeer="blue"] .beer-type {
  color: #3c79df;
}
/* line 108, sass/_content/_content-beer-list.scss */
#beers .beerlist[data-activebeer="blue"] .beer.beer--blue {
  display: -ms-flexbox;
  display: flex;
}
/* line 111, sass/_content/_content-beer-list.scss */
#beers .beerlist[data-activebeer="blue"] .beer.beer--blue svg g, #beers .beerlist[data-activebeer="blue"] .beer.beer--blue.fav svg path {
  fill: #3c79df;
  stroke: #3c79df;
}
/* line 118, sass/_content/_content-beer-list.scss */
#beers .beerlist[data-activebeer="blue"] .flickity-page-dots .dot.is-selected {
  background: #3c79df;
}
/* line 124, sass/_content/_content-beer-list.scss */
#beers .beerlist[data-activebeer="red"] .beer-type {
  color: #e3363d;
}
/* line 128, sass/_content/_content-beer-list.scss */
#beers .beerlist[data-activebeer="red"] .beer.beer--red {
  display: -ms-flexbox;
  display: flex;
}
/* line 131, sass/_content/_content-beer-list.scss */
#beers .beerlist[data-activebeer="red"] .beer.beer--red svg g, #beers .beerlist[data-activebeer="red"] .beer.beer--red.fav svg path {
  fill: #e3363d;
  stroke: #e3363d;
}
/* line 138, sass/_content/_content-beer-list.scss */
#beers .beerlist[data-activebeer="red"] .flickity-page-dots .dot.is-selected {
  background: #e3363d;
}
/* line 144, sass/_content/_content-beer-list.scss */
#beers .beerlist[data-activebeer="green"] .beer-type {
  color: #42cf84;
}
/* line 148, sass/_content/_content-beer-list.scss */
#beers .beerlist[data-activebeer="green"] .beer.beer--green {
  display: -ms-flexbox;
  display: flex;
}
/* line 151, sass/_content/_content-beer-list.scss */
#beers .beerlist[data-activebeer="green"] .beer.beer--green svg g, #beers .beerlist[data-activebeer="green"] .beer.beer--green.fav svg path {
  fill: #42cf84;
  stroke: #42cf84;
}
/* line 159, sass/_content/_content-beer-list.scss */
#beers .beerlist .flickity-page-dots .dot.is-selected {
  background: #42cf84;
}
/* line 164, sass/_content/_content-beer-list.scss */
#beers .flickity-page-dots .dot {
  opacity: 1;
  background: #F3F2EF;
  transition: 0.3s;
}
/* line 169, sass/_content/_content-beer-list.scss */
#beers .flickity-page-dots .dot:hover, #beers .flickity-page-dots .dot.is-selected {
  transform: scale(2);
}
/* line 175, sass/_content/_content-beer-list.scss */
#beers .js-carousel-cell {
  width: 100% !important;
  padding: 0 5rem;
  box-sizing: border-box;
  height: 100%;
}
/* line 182, sass/_content/_content-beer-list.scss */
#beers .fp-tableCell {
  height: 100% !important;
}
/* line 186, sass/_content/_content-beer-list.scss */
#beers .beer-wrap {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
      flex-flow: row wrap;
  -ms-flex-pack: start;
      justify-content: flex-start;
  height: 80%;
}
/* line 192, sass/_content/_content-beer-list.scss */
#beers .beer-wrap .beer {
  display: none;
  width: calc(100% / 3);
  padding: 1rem;
  -ms-flex-pack: justify;
      justify-content: space-between;
  border-bottom: 1px solid #E6E6E6;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  /* line 192, sass/_content/_content-beer-list.scss */
  #beers .beer-wrap .beer {
    width: 100%;
  }
}
/* line 206, sass/_content/_content-beer-list.scss */
#beers .beer-wrap .beer .favorite {
  min-width: 20px;
  -ms-flex-item-align: center;
      align-self: center;
  margin-left: 1rem;
}
/* line 211, sass/_content/_content-beer-list.scss */
#beers .beer-wrap .beer .favorite svg path {
  fill: none;
  transition: 0.3s ease-in-out;
}
/* line 219, sass/_content/_content-beer-list.scss */
#beers .session-tabs {
  padding-top: 130px;
  box-sizing: border-box;
  border-bottom: 1px solid #E6E6E6;
  width: calc(100% - 8rem);
  margin: auto;
}
@media (max-width: 767px) {
  /* line 219, sass/_content/_content-beer-list.scss */
  #beers .session-tabs {
    width: 100%;
    padding-top: 110px;
  }
}
/* line 231, sass/_content/_content-beer-list.scss */
#beers .session-tabs .column:not(:last-child) {
  margin-right: 1rem;
}
/* line 236, sass/_content/_content-beer-list.scss */
#beers .session {
  width: 100%;
  height: 85%;
  text-align: center;
  font-weight: 500;
  font-size: 18px;
  padding: 1rem 0 1.5rem;
  color: #fff;
  border-radius: 4px;
  box-sizing: border-box;
  transition: 0.3s ease-in-out;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
}
/* line 250, sass/_content/_content-beer-list.scss */
#beers .session.is-active, #beers .session:hover {
  height: 100%;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
/* line 258, sass/_content/_content-beer-list.scss */
#beers .session-yellow {
  background-color: #f7a615;
}
/* line 262, sass/_content/_content-beer-list.scss */
#beers .session-blue {
  background-color: #3c79df;
}
/* line 266, sass/_content/_content-beer-list.scss */
#beers .session-red {
  background-color: #e3363d;
}
/* line 270, sass/_content/_content-beer-list.scss */
#beers .session-green {
  background-color: #42cf84;
}

/* line 2, sass/_content/_content-food.scss */
#food .section-content {
  padding: 1rem 0;
}
/* line 6, sass/_content/_content-food.scss */
#food .session-sub {
  font-size: 12px;
}
@media (max-width: 767px) {
  /* line 6, sass/_content/_content-food.scss */
  #food .session-sub {
    font-size: 14px;
  }
}
/* line 14, sass/_content/_content-food.scss */
#food .heading-wrapper {
  margin: 5% auto 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
      flex-flow: row wrap;
  -ms-flex-pack: center;
      justify-content: center;
  position: relative;
  z-index: 1;
}
/* line 22, sass/_content/_content-food.scss */
#food .heading-wrapper h2 {
  color: #fff;
  font-size: 28px;
  font-weight: bold;
  text-align: center;
  -ms-flex: 100% 1;
      flex: 100% 1;
  margin-top: 5px;
}
/* line 31, sass/_content/_content-food.scss */
#food .heading-wrapper svg,
#food .heading-wrapper img {
  width: auto;
  height: 90px;
}
/* line 38, sass/_content/_content-food.scss */
#food .session {
  margin-top: 30px;
  padding: 0 10%;
  position: relative;
  z-index: 1;
}
/* line 45, sass/_content/_content-food.scss */
#food .session p,
#food .session a {
  color: #fff;
  text-align: center;
  display: block;
}
/* line 52, sass/_content/_content-food.scss */
#food .session p,
#food .session a {
  margin: 1.5rem 0;
}
@media (max-width: 767px) {
  /* line 52, sass/_content/_content-food.scss */
  #food .session p,
  #food .session a {
    margin: 2em 0;
  }
}
/* line 61, sass/_content/_content-food.scss */
#food .session a {
  text-decoration: underline;
}
/* line 65, sass/_content/_content-food.scss */
#food .session h4 {
  text-align: center;
  color: #fff;
  font-weight: bold;
}

/* line 1, sass/_content/_content-access.scss */
.image-visit {
  height: 75px;
  height: 6.25rem;
  text-align: center;
}
@media (max-width: 767px) {
  /* line 1, sass/_content/_content-access.scss */
  .image-visit {
    height: 55px;
    height: 4.58333rem;
  }
}
/* line 9, sass/_content/_content-access.scss */
.image-visit img {
  width: auto;
  height: 100%;
  max-width: initial;
}

/* line 16, sass/_content/_content-access.scss */
.access-heading {
  margin-bottom: 2.5rem;
}

/* line 20, sass/_content/_content-access.scss */
#access {
  color: #fff;
}
/* line 23, sass/_content/_content-access.scss */
#access a {
  font-weight: bold;
}
/* line 27, sass/_content/_content-access.scss */
#access .content-access a {
  border-bottom: 2px solid #fff;
}
/* line 31, sass/_content/_content-access.scss */
#access .content-visit {
  color: #E3363D;
}
/* line 34, sass/_content/_content-access.scss */
#access .content-visit a {
  color: #E3363D;
}

/* line 2, sass/_content/_content-tickets.scss */
#tickets h2.announcement {
  font-size: 3rem;
  position: absolute;
  top: 15rem;
}
@media only screen and (max-width: 960px) {
  /* line 2, sass/_content/_content-tickets.scss */
  #tickets h2.announcement {
    position: relative;
    top: 0;
    margin-top: 70px;
    line-height: 1.1em;
  }
}
@media (max-width: 767px) {
  /* line 16, sass/_content/_content-tickets.scss */
  #tickets .section-title .wrapper {
    -ms-flex-pack: center;
        justify-content: center;
  }
  /* line 19, sass/_content/_content-tickets.scss */
  #tickets .section-title .wrapper > * {
    -ms-flex: 100% 1;
        flex: 100% 1;
  }
  /* line 23, sass/_content/_content-tickets.scss */
  #tickets .section-title .wrapper b {
    -ms-flex-order: 1;
        order: 1;
    text-align: center;
  }
}
/* line 30, sass/_content/_content-tickets.scss */
#tickets .wrapper {
  max-width: initial;
}
@media (max-width: 1200px), (max-height: 650px) {
  /* line 34, sass/_content/_content-tickets.scss */
  #tickets .wrapper img {
    max-height: 40px;
  }
}
/* line 40, sass/_content/_content-tickets.scss */
#tickets .wrapper.grid-wrapper {
  position: relative;
  padding-top: 120px;
}
@media (max-width: 1200px), (max-height: 650px) {
  /* line 40, sass/_content/_content-tickets.scss */
  #tickets .wrapper.grid-wrapper {
    padding-top: 90px;
  }
}
@media (max-width: 767px) {
  /* line 40, sass/_content/_content-tickets.scss */
  #tickets .wrapper.grid-wrapper {
    padding: 160px 3px 0;
  }
}
/* line 53, sass/_content/_content-tickets.scss */
#tickets .ticket-grid {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
      flex-flow: row wrap;
  -ms-flex-pack: justify;
      justify-content: space-between;
  width: calc(100% + 10px);
  margin: 0 0 30px -5px;
}
/* line 60, sass/_content/_content-tickets.scss */
#tickets .ticket-grid-item {
  -ms-flex: 1;
      flex: 1;
  box-sizing: border-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
      flex-flow: row wrap;
  -ms-flex-align: stretch;
      align-items: stretch;
  -ms-flex-pack: end;
      justify-content: flex-end;
}
/* line 68, sass/_content/_content-tickets.scss */
#tickets .ticket-grid-item__container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
      flex-flow: row wrap;
  -ms-flex-align: stretch;
      align-items: stretch;
  border-radius: 4px;
  margin: 5px;
  padding: 15px 25px;
  width: 100%;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  /* line 68, sass/_content/_content-tickets.scss */
  #tickets .ticket-grid-item__container {
    width: calc(100% - 10px);
  }
}
/* line 83, sass/_content/_content-tickets.scss */
#tickets .ticket-grid-item__top {
  -ms-flex: 100% 1;
      flex: 100% 1;
}
/* line 87, sass/_content/_content-tickets.scss */
#tickets .ticket-grid-item h2,
#tickets .ticket-grid-item p {
  color: #fff;
}
/* line 92, sass/_content/_content-tickets.scss */
#tickets .ticket-grid-item h2 {
  font-size: 20px;
  line-height: 26px;
  letter-spacing: 0.05em;
  font-weight: bold;
  margin-bottom: 5px;
}
@media (max-width: 767px) {
  /* line 92, sass/_content/_content-tickets.scss */
  #tickets .ticket-grid-item h2 {
    font-size: 18px;
    line-height: 22px;
  }
}
/* line 105, sass/_content/_content-tickets.scss */
#tickets .ticket-grid-item .btn {
  background: #fff;
  width: 100%;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 14px;
  text-align: center;
  border-radius: 2px;
  padding: 15px 0;
  box-sizing: border-box;
  display: inline-block;
  margin-top: 15px;
  height: 51px;
  -ms-flex-item-align: end;
      align-self: flex-end;
}
/* line 121, sass/_content/_content-tickets.scss */
#tickets .ticket-grid-item__small {
  max-width: 25%;
  -ms-flex: 25% 1;
      flex: 25% 1;
}
@media (max-width: 1200px) {
  /* line 121, sass/_content/_content-tickets.scss */
  #tickets .ticket-grid-item__small {
    max-width: 50%;
    -ms-flex: 50% 1;
        flex: 50% 1;
  }
}
/* line 131, sass/_content/_content-tickets.scss */
#tickets .ticket-grid-item__big {
  max-width: 50%;
  -ms-flex: 50% 1;
      flex: 50% 1;
}
@media (max-width: 1200px) {
  /* line 131, sass/_content/_content-tickets.scss */
  #tickets .ticket-grid-item__big {
    max-width: 100%;
    -ms-flex: 100% 1;
        flex: 100% 1;
  }
}
/* line 140, sass/_content/_content-tickets.scss */
#tickets .ticket-grid-item__big .btn {
  width: 50%;
}
/* line 145, sass/_content/_content-tickets.scss */
#tickets .ticket-grid-item__yellow .ticket-grid-item__container {
  background-color: #F7A615;
}
/* line 148, sass/_content/_content-tickets.scss */
#tickets .ticket-grid-item__yellow .ticket-grid-item__container .btn {
  color: #F7A615;
}
/* line 153, sass/_content/_content-tickets.scss */
#tickets .ticket-grid-item__blue .ticket-grid-item__container {
  background-color: #3C79DF;
}
/* line 156, sass/_content/_content-tickets.scss */
#tickets .ticket-grid-item__blue .ticket-grid-item__container .btn {
  color: #3C79DF;
}
/* line 161, sass/_content/_content-tickets.scss */
#tickets .ticket-grid-item__red .ticket-grid-item__container {
  background-color: #DB4349;
}
/* line 164, sass/_content/_content-tickets.scss */
#tickets .ticket-grid-item__red .ticket-grid-item__container .btn {
  color: #DB4349;
}
/* line 169, sass/_content/_content-tickets.scss */
#tickets .ticket-grid-item__green .ticket-grid-item__container {
  background-color: #42CF84;
}
/* line 172, sass/_content/_content-tickets.scss */
#tickets .ticket-grid-item__green .ticket-grid-item__container .btn {
  color: #42CF84;
}
/* line 177, sass/_content/_content-tickets.scss */
#tickets .ticket-grid-item__pink .ticket-grid-item__container {
  background-color: #BD5CE1;
}
/* line 180, sass/_content/_content-tickets.scss */
#tickets .ticket-grid-item__pink .ticket-grid-item__container .btn {
  color: #BD5CE1;
}
/* line 185, sass/_content/_content-tickets.scss */
#tickets .ticket-grid-item__gold .ticket-grid-item__container {
  background-color: #DCBF56;
}
/* line 188, sass/_content/_content-tickets.scss */
#tickets .ticket-grid-item__gold .ticket-grid-item__container .btn {
  color: #DCBF56;
}
/* line 195, sass/_content/_content-tickets.scss */
#tickets .ticket-description {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
      flex-flow: row wrap;
  padding: 0 10px 40px;
}
@media (max-width: 767px) {
  /* line 195, sass/_content/_content-tickets.scss */
  #tickets .ticket-description {
    padding: 10px 20px 40px;
  }
}
/* line 204, sass/_content/_content-tickets.scss */
#tickets .ticket-description p {
  font-size: 14px;
  color: #242424;
}
/* line 208, sass/_content/_content-tickets.scss */
#tickets .ticket-description p span {
  font-weight: bold;
  display: inline-block;
  margin: 10px 0 3px;
}
/* line 215, sass/_content/_content-tickets.scss */
#tickets .ticket-description > div {
  -ms-flex: 50% 1;
      flex: 50% 1;
}
@media (max-width: 767px) {
  /* line 215, sass/_content/_content-tickets.scss */
  #tickets .ticket-description > div {
    -ms-flex: 100% 1;
        flex: 100% 1;
  }
}
