@charset "UTF-8";

/* =====  1 Global Rules & Definitions  ===================================== */

/* -----  1.1 Font Definitions  --------------------------------------------- */

/*
 * Web Fonts from colophon-foundry.org
 *
 * The fonts included in this stylesheet are subject to the End User License you purchased
 * from Colophon Foundry. The fonts are protected under domestic and international trademark and 
 * copyright law. You are prohibited from modifying, reverse engineering, duplicating, or
 * distributing this font software.
 *
 * (c) 2018 Colophon Foundry
 *
 * Licenced to Leonardo Bresolin
 */

@font-face {
  font-family: 'raisonne-demibold';
  src: url('/assets/fonts/raisonne-demibold.eot');
  src: url('/assets/fonts/raisonne-demibold.eot?#iefix') format('embedded-opentype'),
  url('/assets/fonts/raisonne-demibold.woff') format('woff'),
  url('/assets/fonts/raisonne-demibold.woff2') format('woff2'),
  url('/assets/fonts/raisonne-demibold.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;

}


/* -----  1.2 Reset & Normalization  ---------------------------------------- */

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  border: none;
  list-style: none;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  /* Add correct display for IE 9- and some newer browsers */
  display: block;
}

::-moz-selection {}

::selection {}

/* -----  1.3 General Typography  ------------------------------------------- */

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
figure,
pre {
  /* Reset font-sizes and normalize margins */
  font-size: 13pt;
  line-height: 26pt;
  letter-spacing: .75pt;
  margin: 0 0 1.5rem;
  -webkit-font-smoothing: antialiased;
}

/* Headings */

h1,
h2,
h3 {
  font-family: raisonne-demibold, Helvetica, Arial, sans-serif;
  font-weight: 700;
}

h1 {
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1.25;
  text-align: center;
  margin-bottom: 3rem;
}

h2 {
  font-size: 1.75rem;
  line-height: 2.2rem;
  text-align: center;
}

h3 {
  font-size: 1.25em;
  line-height: 1.2;
}

h4 {
  font-size: 1em;
}

/* Links */

a {
  color: #fff;
  text-decoration: none;
}

a:hover,
a:focus,
a:active {
  color: #023072 !important;
}

em {
  font-style: normal;
  float: right;
}

strong {
  text-transform: uppercase;
  letter-spacing: 1.5pt;
}

/* -----  1.4 Images & Figures  --------------------------------------------- */

img {
  border-style: none;
  width: 100%;
  height: auto;
}


/* =====  2 Layout Helpers & Reusable Components  =========================== */

/* The Clearfix™: A classic … */

.cf::after {
  content: "";
  display: block;
  height: 0;
  overflow: hidden;
  clear: both;
}



/* -----  2.3 Grid & Layout  ------------------------------------------------ */

.grid {
  font-size: 0;
}

.grid.gutter-1 {
  /* We don’t use the shorthand attribute `margin: …` here
     to make vertical margin easily overridable by other
     styles with a lower specifity. */
  margin-left: -.375rem;
  margin-right: -.375rem;
}

.grid.gutter-1 .column {
  padding-left: .375rem;
  padding-right: .375rem;
}

.column {
  position: relative;
  display: inline-block;
  width: 100%;
  font-size: 1rem;
  vertical-align: top;
}

.wrap {
  box-sizing: content-box;
  margin: 0 auto;
  padding-left: 60px;
  padding-right: 60px;
}



/* =====  3 Site Layout  ==================================================== */

html {
  background: #fff;
  color: #fff;
  font: normal 400 1.5em/1.5 "raisonne-demibold", Helvetica, sans-serif;
  /* Always show the vertical scrollbar to prevent `jumps`
     of page content after navigating from a very short page
     that does not scroll to a long pager */
  overflow-y: hidden;

  /* Setting this to `default` prevents the cursors from
     changing when hovering blocks of text or whitespace,
     which is less distracting */
  cursor: default;
  /* Neccessary for sticks footer. */
  position: relative;
  min-height: 100%;
  /* Prevent adjustments of font size after orientation
     changes in IE and iOS. */
  -webkit-text-size-adjust: 100%;
}


body {
  background: #b43b2d;
  height: calc(100vh - 15px);
  overflow: hidden;
}

.border {
  width: 100vw;
  height: 100%;
  z-index: 100;
  border: 15px solid #fff;
  position: fixed;
  overflow: hidden;
  pointer-events: none;
}

.map {
  width: 100%;
  height: 53vh;
}

/* ----- 3.1  Header  ------------------------------------------------------- */

.header {
  top: 60px;
  left: 60px;
  position: fixed;
  width: calc(100vw - 120px);
}

.branding {
  font-family: raisonne-demibold, Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.95rem;
  margin-bottom: .45rem;
}

.branding a svg {
  width: 80%;
}

.branding a svg g {
  fill: #fff;
}

.branding a:hover svg g {
  fill: #023072 !important;
}

.branding a {
  border-bottom: 0;
}



/* -----  3.2 Menu  --------------------------------------------------------- */

.menu,
.menuSM {
  display: flex;
  margin: 0;
  align-items: stretch;
  justify-content: space-between;
}

.menu-item {
  display: inline-block;
  padding-right: 30px;
}

.menu-item:first-child a {
  color: #fff !important;
}

.menu-item:first-child:hover a {
  color: #023072 !important;
}

.menu-item a {
  border-bottom: 0;
}

.menu-item.is-active a {
  color: #023072;
}

.sm-item {
  display: inline-block;
}

.sm-item a svg {
  height: 100%;
  max-height: 15pt;
}

.sm-item a svg g {
  fill: #fff;
}

.sm-item a:hover svg g {
  fill: #023072 !important;
}

.mobileLink {
  display: none;
}

/* -----  3.3 Footer & Gallery  ------------------------------------------------ */

.gallery-item {
  padding-bottom: 10px;
  width: 90%
}

.menuHolder::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 0 rgba(0, 0, 0, 0);
  border-radius: 10px;
  background-color: #F5F5F5;
}

.menuHolder::-webkit-scrollbar {
  width: 12px;
  background-color: #F5F5F5;
  border-radius: 10px;
}

.menuHolder::-webkit-scrollbar-thumb {
  border-radius: 10px;
  border: 1px solid #fff;
  -webkit-box-shadow: inset 0 0 0 rgba(0, 0, 0, 0);
  background-color: #b43b2d;
}

.footer {
  position: absolute;
  bottom: 50px;
  left: 60px;
  width: calc(100% - 120px);
  background: #b43b2d;
  padding-top: 40px;
  margin-bottom: -50px;
  border-bottom: #b43b2d solid 50px;
}

.footer p {
  margin-bottom: 0;
}

.footer a {
  border-bottom: 0;
}

.arrow {
  overflow: hidden;
  letter-spacing: 3px;
  display: table-cell;
  vertical-align: bottom;
}

.footerText {
  display: table;
  height: 100%;
}

.table {
  display: table-cell;
  vertical-align: bottom;
}

.footerText p {
  line-height: 26pt;
  letter-spacing: 0.5pt;
  display: table-cell;
  align-content: center;
}

.arrowHolder {
  height: 100%;
  display: table;
}

.arrow p {
  letter-spacing: 1.5pt;
}

.arrow svg {
  height: auto;
  fill: #fff;
  transition: transform 500ms ease;
  max-height: 29px;
  float: left;
  max-width: 45vw;
  transform: translateX(0);
  width: 100%;
  animation-name: slide;
  animation-duration: 3s;
  animation-delay: 5.5s;
  animation-fill-mode: forwards;
  animation-timing-function: ease;
}


.downArrow {
  z-index: 100;
  width: 35%;
  overflow: hidden;
}

.downArrow svg {
  fill: #fff;
  width: 100%;
  width: 28px;
  transition: transform 500ms ease;
  transform: translateY(-50%);
}

main:hover svg {
  transform: translateY(0%);
}

.order.pickup{
  position: fixed;
  right: 60px;
  bottom: 60px;
  width: 100px;
}

.order.delivery{
  position: fixed;
  right: 160px;
  bottom: 60px;
  width: 100px;
}

.order svg {
  float: right;
  width: 80px;
  border-radius: 50%;
  transition: all 500ms ease;
}

.order svg path {
  fill: #fff;
}

.order:hover svg {
  background-color: white;
}


.order:hover svg path {
  fill: #b43b2d;
}

.st1 {
  fill: #fff !important;
}

#Mobi2Go-Storefront {
  overflow-x: hidden;
  overflow-y: scroll;
  height: 65vh;
}

/* -----  3.4 Main Content  ------------------------------------------------- */

main {
  padding-top: 17.5vh;
  padding-left: 60px;
  padding-right: 60px;
  height: 65vh;

}

/* =====  4 Template-specific Components ==================================== */

/* -----  4.1 Menu  ----------------------------------------------------- */

.menuHolder {
  overflow-y: scroll;
  height: 65vh;
  -webkit-overflow-scrolling: touch;
}


.menuSpacing {
  padding-bottom: 40px;
  width: 90%;
}

.item-slot {
  padding-bottom: 10pt;
}

.item .grid--auto {
  grid-row-gap: 0;
}

.menu-titles {
  text-transform: uppercase;
}

.item-title,
.item-price {
  margin-bottom: 0;
  line-height: 16pt;
}

.item-price{
  padding-left: 40%;
}

.item-description {
  font-size: 11pt;
  margin-bottom: 0;
  line-height: 13pt;
}

.about-content{
padding-top: 30%;
}


/* =====  5. Mobile ==================================== */

.brandingMob {
  z-index: 50;
  display: none;
  font-family: raisonne-demibold, Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.95rem;
  margin-bottom: .45rem;

}

.brandingMob button svg {
  width: 70%;

}

.brandingMob button svg g {
  fill: #fff;
}

.brandingMobHead button svg g {
  fill: #fff;
}

.menubutton button svg path {
  fill: #fff;
}

.mobMenuBracket svg {
  width: 70%;
}

.mobileGraphic {
  display: none;
}

.mobMenuBracket svg g {
  fill: #fff;
}

.brandingMob button {
  border-bottom: 0;
  background: transparent;
}

.brandingMob button:focus {
  outline: none;
}

.brandingMobHead {
  display: none;
}

.mobileMenu,
.tip {
  display: none;
}

.mobileContent {
  display: none;
}

.mobileFooter {
  display: none;
}

.mobileTitle {
  display: none;
}


.orderMob{
  display: none;
}

/* Voucher */

.voucher-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
}

.voucher-button {
  border: 1px solid #fff;
  padding: 20px;
  margin: 20px;
  width: 40%;
  text-align: center;
}

.voucher-button p {
  margin:0;
}

.voucher-button:hover {
  border-color: #023072 !important;
}