/*! Made with Bones: http://themble.com/bones :) */
/******************************************************************
Site Name:
Author:

Stylesheet: Main Stylesheet

Here's where the magic happens. Here, you'll see we are calling in
the separate media queries. The base mobile goes outside any query
and is called at the beginning, after that we call the rest
of the styles inside media queries.

Helpful articles on Sass file organization:
http://thesassway.com/advanced/modular-css-naming-conventions

******************************************************************/
/*********************
IMPORTING PARTIALS
These files are needed at the beginning so that we establish all
our mixins, functions, and variables that we'll be using across
the whole project.
*********************/
/* normalize.css 2012-07-07T09:50 UTC - http://github.com/necolas/normalize.css */
/* ==========================================================================
   HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined in IE 8/9.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block; }

/**
 * Correct `inline-block` display not defined in IE 8/9.
 */
audio,
canvas,
video {
  display: inline-block; }

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0; }

/**
 * Address `[hidden]` styling not present in IE 8/9.
 * Hide the `template` element in IE, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none; }

@font-face {
    font-family: 'matrix';
    src: url('../fonts/matrixboldsmallcaps-webfont.eot');
    src: url('../fonts/matrixboldsmallcaps-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/matrixboldsmallcaps-webfont.woff2') format('woff2'),
         url('../fonts/matrixboldsmallcaps-webfont.woff') format('woff'),
         url('../fonts/matrixboldsmallcaps-webfont.ttf') format('truetype'),
         url('../fonts/matrixboldsmallcaps-webfont.svg#matrix') format('svg');
    font-weight: bold;
    font-style: normal;
	font-variant: small-caps;
}

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

}

@font-face {
    font-family: 'matrixregularsmallcapsregular';
    src: url('../fonts/matrixregularsmallcaps-webfont.eot');
    src: url('../fonts/matrixregularsmallcaps-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/matrixregularsmallcaps-webfont.woff2') format('woff2'),
         url('../fonts/matrixregularsmallcaps-webfont.woff') format('woff'),
         url('../fonts/matrixregularsmallcaps-webfont.ttf') format('truetype'),
         url('../fonts/matrixregularsmallcaps-webfont.svg#matrix') format('svg');
    font-weight: normal;
    font-style: normal;
	font-variant: small-caps;
}

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

}




/* ==========================================================================
   Base
   ========================================================================== */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.004);
  /* 2 */ }

/**
 * Remove default margin.
 */
body {
  margin: 0;
  font-family: 'Satisfy', cursive;
  font-size: 13px;
  width:100%;
   }
   
.clear {
	clear:both;
}

.clear-after:after {
	clear:both;
	display:block;
	content:'';
}

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

#loading {
    position: fixed;
    background: #2e2f31;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 999999;
    padding: 20px;
    box-sizing: border-box;
}

.loadinginner {
    display: table;
    width: 100%;
    height: 100%;
    border: 3px solid #EFD8CD;
}

.loadingmiddle {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    color: #EFD8CD;
}

.loadingmiddle img {
    width: 50%;
    max-width: 250px;
}
   
h2 {
    font-family: 'brothers';
    text-transform: uppercase;
    margin: auto;
    text-align: center;
    font-size: 24px;
    line-height: 1em;
	margin-bottom: 20px;
    letter-spacing: 0.02em;
	    font-weight: 100;
}
   
   .lined {
	font-family: 'Satisfy', cursive;
   }

/*  SECTIONS  */
.section {
    display: table;
    width: 100%;
	position: relative;
}
.section .half {
    display: table-cell;
    width: 50%;
    position: relative;
}

/*  TOP SECTION  */

.header {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 99999;
    text-align: center;
	background: #3e4346;
    background: rgba(62, 67, 70, 0.95);
	display:none;
	top:0;
}

#inner-header {
    display: table;
    width: 100%;
    height: 100%;
}

#nav {
    display: table-cell;
    vertical-align: middle;
    list-style: none;
    margin: 0;
    padding: 0;
}

.hideme {
	display:none;
}

#nav a {
    display: table;
    font-size: 48px;
    font-family: 'brothers';
    text-transform: uppercase;
    line-height: 1.7em;
    -webkit-transition: all .2s linear;
    -moz-transition: all .2s linear;
    -o-transition: all .2s linear;
    transition: all .2s linear;
    margin: auto;
}

#nav a:hover, #nav .active a {
    color:#fff;
}

#nav .active a {
    cursor: default;
}

#top {
    background: url(../images/top-bg.jpg) center no-repeat;
    -webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
    position: relative;
    border-collapse: separate;
    border-spacing: 20px;
    box-sizing: border-box;
	filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(
src='../images/top-bg.jpg',
sizingMethod='scale');

-ms-filter: "progid:DXImageTransform.Microsoft.AlphaImageLoader(
src='../images/top-bg.jpg',
sizingMethod='scale')";
}

.topinner {
    border: 3px solid #EFD8CD;
    padding: 30px;
    box-sizing: border-box;
    display: table-cell;
    vertical-align: middle;
	text-align:center;
	opacity:0;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

h1#title {
    position: absolute;
    top: 70px;
    margin: 0;
    left: 70px;
    width: 225px;
    z-index: 99999;
}

h1#title img {
	border:0;
	width:100%;
    display: block;
}

.intro {
    width: 30%;
    opacity: 0.2;
    -ms-transform: scale(0.5);
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

.intro.show-me {
	opacity:1;
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
}

#social {
    list-style: none;
    padding: 0;
    display: table;
    position: absolute;
    top: 80px;
    right: 50px;
    margin: 0;
}


#nav-toggle {
    cursor: pointer;
    padding: 10px 24px 10px 0px;
    z-index: 99999;
    position: absolute;
    top: 60px;
    right: 70px;
	-webkit-transition: opacity .2s linear;
    -moz-transition: opacity .2s linear;
    -o-transition: opacity .2s linear;
    transition: opacity .2s linear;
}
#nav-toggle span, #nav-toggle span:before, #nav-toggle span:after {
  cursor: pointer;
  height: 3px;
  width: 24px;
  background: #EFE0DF;
  position: absolute;
  display: block;
  content: '';
  -webkit-transition: all .2s linear;
    -moz-transition: all .2s linear;
    -o-transition: all .2s linear;
    transition: all .2s linear;
}
#nav-toggle span:before {
  top: -7px; 
}
#nav-toggle span:after {
  bottom: -7px;
}

#nav-toggle span, #nav-toggle span:before, #nav-toggle span:after {
  -webkit-transition: all 500ms ease-in-out;
    -moz-transition: all 500ms ease-in-out;
    -o-transition: all 500ms ease-in-out;
    transition: all 500ms ease-in-out;
}
#nav-toggle.close span {
  background-color: transparent;
}
#nav-toggle.close span:before, #nav-toggle.close span:after {
  top: 0;
}
#nav-toggle.close span:before {
  -ms-transform: rotate(45deg); /* IE 9 */
  -webkit-transform: rotate(45deg); /* Chrome, Safari, Opera */
  transform: rotate(45deg);
}
#nav-toggle.close span:after {
  -ms-transform: rotate(-45deg); /* IE 9 */
  -webkit-transform: rotate(-45deg); /* Chrome, Safari, Opera */
  transform: rotate(-45deg);
}

/*#fixed.fixedopen {
    position: fixed;
    z-index: 99999;
    top: 0;
    left: 0;
    width: 100%;
}

#fixed.open {
    position: fixed;
    z-index: 99999;
    top: 0;
    left: 0;
    width: 100%;
}

#fixed.fixed {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 99999;
    background: #3E4346;
	background:rgba(62, 67, 70, 0.5);
    padding: 10px;
    left: 0;
    box-sizing: border-box;
	-webkit-transition: background 500ms linear;
    -moz-transition: background 500ms linear;
    -o-transition: background 500ms linear;
    transition: background 500ms linear;
}

#fixed.fixed:hover {
	background: #3E4346;
	background:rgba(62, 67, 70, 1);
}

#fixed.fixed.fixedopen {
    background: transparent !important;
}




#fixed.fixed #nav-toggle {
    top: 13px;
    right: 10px;
}

#fixed.fixed h1#title {
    position: relative;
    top: 0;
    left: 0;
    width: 43px;
    z-index: 999999;
    line-height: 1em;
}*/

body.noscroll {
	position:fixed;
}

#social a {
    font-family: 'FontAwesome';
    color: #EFE0DF;
    text-decoration: none;
    font-size: 24px;
    font-weight: 100 !important;
    -webkit-transition: all .2s linear;
    -moz-transition: all .2s linear;
    -o-transition: all .2s linear;
    transition: all .2s linear;
    display: block;
    margin-top: 20px;
}

#social a:first-child {
    margin-top: 0;
}

#social a:hover, #nav-toggle:hover {
	opacity:0.2;
}

#social li {
    margin-left: -50000px;
    margin-top: -50000px;
    position: absolute;
}

#social #fb:before {
    content: '\f09a';
}

#social #tw:before {
    content: '\f099';
}

#social #in:before {
    content: '\f16d';
}

#down {
    position: absolute;
    bottom: 35px;
    left: 50%;
    margin-left: -9px;
    cursor: pointer;
    -webkit-transition: all .2s linear;
    -moz-transition: all .2s linear;
    -o-transition: all .2s linear;
    transition: all .2s linear;
    background: url(../images/hand_point_down.png) no-repeat center center;
    background-size: 18px;
    width: 18px;
    height: 52px;
}

#down:hover {
	opacity:0.2;
}

/*  RICE PAPER  */

.rice {
	font-family: 'Montserrat', sans-serif;
	background:url(../images/ricepaper_tileable.jpg) repeat top left;
	color:#323232;
	    vertical-align: middle;
}

.rice .lined {
	color:#9e2212;
	background: url(../images/rice-dot.png) top left;
	line-height:30px;
	font-size:1.4em;
}

.ricewrapper {
    position: relative;
    margin: auto;
    width: 70%;
    z-index: 2;
}

.borders {
    position: absolute;
    top: 30px;
    bottom: 30px;
    left: 30px;
    right: 30px;
}
.borders img {
	position:absolute;
	width:8px;
	height:8px;
	opacity:0;
	-webkit-transition: opacity 0.35s;
	transition: opacity 0.35s;
}
img.topleft {
    top: -3px;
    left: -3px;
}

img.topright {
    right: -3px;
    top: -3px;
}

img.bottomleft {
    bottom: -3px;
    left: -3px;
}

img.bottomright {
    bottom: -3px;
    right: -3px;
}

.horizontal {
    position: absolute;
    border-top: 2px solid;
    height: 100%;
    top: 0;
    left: 20px;
    border-bottom: 2px solid;
    right: 20px;
    box-sizing: border-box;
	opacity:0;
	-ms-transform:scale(0,1);
	-ms-transform-origin: 0 0;
	-moz-transform:scale(0,1);
	-moz-transform-origin: 0 0;
	-webkit-transform: scale(0,1);
    transform: scale(0,1);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, -webkit-transform 0.35s;
}

.vertical {
    position: absolute;
    border-left: 2px solid;
    width: 100%;
    top: 20px;
	bottom:20px;
    left: 0;
    border-right: 2px solid;
    right: 0;
    box-sizing: border-box;
	opacity:0;
	-ms-transform:scale(1, 0);
	-ms-transform-origin: 100% 0;
	-moz-transform:scale(1, 0);
	-moz-transform-origin: 100% 0;
	-webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    -webkit-transform-origin: 100% 0;
    transform-origin: 100% 0;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, -webkit-transform 0.35s;
}

.rice.animate .horizontal, .rice.animate .vertical, .rice.animate img {
    opacity: 1;
    -ms-transform: scale(1);
    -moz-transform: scale(1);
	-webkit-transform: scale(1);
    transform: scale(1);
}

/* Frankie Goes To Bollywood Section */

#fgtb-images {
	overflow:hidden;
	background: top repeat;
	background-size:contain;
}


#fgtb-images img {
    width: 100%;
	position:absolute;
	bottom:0;
	z-index:2;
}

/*#fgtb-images img:first-child {
	bottom:initial;
	top:0;
	z-index:1;
}*/

/*  the Food  */

#thefood-images {
	background-color: #304437;
}

.smallhalf {
    width: 50%;
    height: 50%;
    float: left;
    box-sizing: border-box;
}

.fullwidth {
	height:50%;
	width:100%;
	float: left;
}

#thefood-images .smallhalf {
	background: center no-repeat;
	-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
	filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(
src='../images/Image-2.jpg',
sizingMethod='scale');

-ms-filter: "progid:DXImageTransform.Microsoft.AlphaImageLoader(
src='../images/Image-2.jpg',
sizingMethod='scale')";
}

#thefood-images .fullwidth {
	background: center no-repeat;
	-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
	filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(
src='../images/Image-3.jpg',
sizingMethod='scale');

-ms-filter: "progid:DXImageTransform.Microsoft.AlphaImageLoader(
src='../images/Image-3.jpg',
sizingMethod='scale')";
}

.green.smallhalf {
    background: transparent !important;
	display:table;
}
.green.smallhalf div {
	display:table-cell;
	vertical-align:middle;
	text-align:center;
}

.green.smallhalf img {
	max-width:70%;
}


/*  The Menu  */
#themenu {
	background: #3e4346;
}

.menu-item-wrapper {
    float: left;
    width: 50%;
    vertical-align: top;
    position: relative;
}

.block {
    width: 50%;
    float: left;
    text-align: center;
    position: relative;
    box-sizing: border-box;
	min-height: 200px;
	overflow:hidden;
}

.block-item-inner {
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.menu-row-wrapper.menu-float-right .block {
    float: right;
}

.block.item {
    padding: 30px;
    color: #efe0df;
}


.scrollable {
    background-attachment: scroll;
    background-position-x: center !important;
    background-repeat: no-repeat;
	-webkit-background-size: auto 135%;
-moz-background-size: auto 135%;
-o-background-size: auto 135%;
background-size: auto 135%;
}

.scrollable {
    background-attachment: initial;
    background-position: center !important;
    background-repeat: no-repeat;
    -webkit-background-size: cover !important;
    -moz-background-size: cover !important;
    -o-background-size: cover !important;
    background-size: cover !important;
}


.itemcontent h2 {
    margin: 0 auto 20px;
}

.itemcontent p {
    margin: auto;
	    background: url(../images/menu-dot.png) top left;
		line-height: 30px;
		font-size:1.4em;
}

.tags {
    font-family: 'Montserrat', sans-serif;
    margin-top: 20px;
}

.owl-nav {
    position: relative;
    width: 140px;
    margin: 0 auto 0;
}

.owl-nav:before {
    content: 'Other variations';
    font-family: 'Montserrat', sans-serif;
    font-size: 8px;
    position: relative;
    display: block;
    line-height: 22px;
}

.owl-prev {
    position: absolute;
    left: 0;
    top: 0;
}

.owl-next {
    position: absolute;
    right: 0;
    top: 0;
}
.owl-prev, .owl-next {
	opacity:1;
}
.owl-prev:hover, .owl-next:hover {
	opacity:0.2;
}

.owl-nav img {
    width: 26px;
    display: block;
}

#menu-download-wrapper {
    background: #1b1b1b;
    padding: 4em;
    text-align: center;
    text-transform: uppercase;
}

#menu-download-wrapper #menu-download-button {
    display: table;
    margin: auto;
    position: relative;
    padding: 0 70px;
}

#menu-download-wrapper #menu-download-button:hover {
	opacity:0.5;
}


#menu-download-wrapper #menu-download-button:after, #menu-download-wrapper #menu-download-button:before {
    display: block;
    background:center center no-repeat;
    background-size: 50px;
    content: '';
    position: absolute;
    top: 50%;
    width: 50px;
    height: 20px;
    margin-top: -10px;
}

#menu-download-wrapper #menu-download-button:before {
    background-image: url(../images/hand_point_right.png);
    left: 0;
}

#menu-download-wrapper #menu-download-button:after {
    background-image: url(../images/hand_point_left.png);
    right: 0;
}

#menu-download-wrapper h2 {
    margin: auto;
}

/*  DRINKS  */

#thedrinks {
	background:#000 center no-repeat;
	background-size:cover;
    color: #efe0df;
    text-align: center;
}

#cocktails {
    padding: 50px 25%;
}

#other-drinks {
    position: relative;
    display: table;
    width: 100%;
    border-right: 1px solid;
    border-bottom: 1px solid;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
	table-layout: fixed;
}

#other-drinks .drink-box {
    display: table-cell;
    border-left: 1px solid;
    border-top: 1px solid;
    width: 2%;
	padding: 30px;
}


.cocktail-single h2, #other-drinks h2 {
    font-size: 18px;
}

/*  FIND US  */

#findus {
    position: relative;
    background: #3e4346;
    overflow-x: hidden;
}

.location-single {
    background: #b44546;
    text-align: center;
    vertical-align: middle;
    color: #efe0df;
}

.location-wrapper .half {
    display: table;
    float: left;
}

.location-wrapper.location-float-right .half {
    float: right;
}

.location-single-inner {
    padding: 150px 100px;
    box-sizing: border-box;
    margin: auto;
    display: table-cell;
    vertical-align: middle;
}

.location-single-size {
    max-width: 480px;
    width: 100%;
    margin: auto;
}

.location-single-inner h2 {
    max-width: 230px;
    display: table;
}

.location-where {
    position: absolute;
    top: 0;
    width: 100%;
    left: 0;
    font-weight: 300;
    line-height: 150px;
    margin: auto;
}

.location-venue-link-wrapper {
    position: absolute;
    bottom: 53px;
    left: 0;
    width: 100%;
    box-sizing: border-box;
}

.location-venue-link {
    display: table;
    padding: 1em 3em;
    border: 2px solid #efe0df;
	margin:auto;
}

.location-venue-link:hover {
	background:#efe0df;
	color:#1b1b1b;
}


.location-address, .opening-times-title, .location-venue-link {
	font-family: 'Montserrat', sans-serif;
	text-transform:uppercase;
}

.location-address {
	text-transform: none;
}

.opening-times-title {
    margin-top: 20px;
}

.location-times-table {
    font-family: 'Gentium Book Basic', serif;
    text-transform: uppercase;
    display: table;
    width: 100%;
    box-sizing: border-box;
    border-bottom: 2px dotted;
}

.location-times-table:first-child {
	margin-top:20px;
    border-top: 2px dotted;
}

.location-times-table .location-times-cell {
    display: table-cell;
    text-align: right;
    padding: 1em 0;
}

.location-times-table .location-times-cell:first-child {
	text-align:left;
}

.location-map-wrapper {
    position: absolute !important;
    right: 0;
    top: 0;
    bottom: 0;
    left: 50%;
    display: block !important;
    float: none !important;
    height: 100% !important;
}

.location-wrapper.location-float-right .location-map-wrapper {
    right: 50%;
    left: 0;
}


.location-map {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}



#findus .address {
    margin: 20px auto 0;
    text-align: center;
    border-top: 2px solid;
    border-bottom: 2px solid;
    padding: 20px 0;
}

.half.times {
    background: #b4453d;
    vertical-align: middle;
    font-family: 'Gentium Book Basic', serif;
    text-transform: uppercase;
	color:#efe0df;
}

.half.times table {
	border-bottom:2px dotted;
	position:relative;
	text-align:right;
}

.half.times table td {
	padding:20px 0;
}
.half.times table td:first-child {
    text-align: left;
}
.half.times table tr {

}

.half.times table tr:before {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    border-top: 2px dotted;
    left: 0;
}


#findus .half.rice {
    overflow: hidden;
}

#mapclose {
    position: absolute;
    right: 0;
    top: 0;
    padding: 20px;
    font-family: 'FontAwesome';
    background: url(../images/black-80.png);
	background:rgba(0, 0, 0, 0.8);
    color: #EFE0DF;
    font-size: 24px;
	display:none;
	cursor:pointer;
	z-index:9999;
}

#mapclose:hover {
    color: #fff;
}

#mapclose:before {
    content: '\f00d';
}

#themap { 
position: absolute !important;
    z-index: 999;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;
}

#viewmap {
    text-decoration: underline;
    cursor: pointer;
}

#viewmap:hover {
    text-decoration: none;
}

/*  FOOTER  */
.footer.section {
	background:url(../images/footer-bg.jpg) center no-repeat;
	-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
	filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(
src='../images/footer-bg.jpg',
sizingMethod='scale');

-ms-filter: "progid:DXImageTransform.Microsoft.AlphaImageLoader(
src='../images/footer-bg.jpg',
sizingMethod='scale')";
}

#inner-footer {
    position: relative;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
	background: #1b1b1b;
	padding: 15px;
    box-sizing: border-box;
	    color: #EFE0DF;
}

.footerwrapper {
    width: 100%;
    position: relative;
    padding: 3px;
    box-sizing: border-box;
    border: 2px solid;
}

.footertable {
    display: table;
    width: 100%;
    table-layout: fixed;
}

.footersection {
    border-style: solid;
    width: 25%;
    border-spacing: 0;
    height: 100%;
    box-sizing: border-box;
    border-width: 1px 1px 1px 0px;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    display: table-cell;
    vertical-align: middle;
    padding: 20px 10px;
	font-size:10px;
	font-weight:bold;
}

.footer a {
	    -webkit-transition: all .2s linear;
    -moz-transition: all .2s linear;
    -o-transition: all .2s linear;
    transition: all .2s linear;
}

.footer a:hover {
    opacity: 0.2;
}

.footersection:first-child {
    border-left-width: 1px;
}

.footersection h1#title {
    position: relative;
    top: 0;
    margin: auto;
    left: 0;
    width: 50%;
}

.footersection h3 {
    font-size: 12px;
    margin:0 auto 20px;
    font-weight: normal;
	font-family: 'Gentium Book Basic', serif;
	text-transform:uppercase;
}

.footersection ul#social {
    position: relative;
    top: 0;
    right:0;
    margin: auto;
}

.footersection ul#social a {
    float: left;
    margin: 0 0 0 40px;
    border: 2px solid;
    width: 30px;
    line-height: 27.5px;
    height: 30px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    font-size: 18px;
    box-sizing: border-box;
    padding-left: 1px;
}

.footersection ul#social a#in {
    line-height: 27px;
    padding-left: 1px;
}

.footersection ul#social a#tw {
    padding-left: 2px;
}

.footersection ul#social a:first-child {
    margin:0;
}

.separator {
	display:none;
}


.block.item .single {
	position:relative;
}

@media (min-width: 1400px) {
	
body {
    font-size: 14px;
}

h2 {
    font-size: 30px;
}

.cocktail-single h2, #other-drinks h2 {
    font-size: 24px;
}

.footersection h3 {
	font-size:14px;
	
}

.footersection {
    font-size: 12px;
}

.scrollable {

-webkit-background-size:140%;
-moz-background-size:140%;
-o-background-size:140%;
background-size:140%;
}

.ricewrapper {
    width: 50%;
    max-width: 480px;
}

.block.item .single {
    padding: 0 20px;
    margin: auto;
	
}

}

@media (min-width: 1700px) {

.scrollable {

-webkit-background-size:125%;
-moz-background-size:125%;
-o-background-size:125%;
background-size:125%;
}

h2 {
    font-size: 36px;
}

.cocktail-single h2, #other-drinks h2 {
    font-size: 30px;
}

.block.item .single {
    padding: 0 50px;
}

.block.item .multiple, .block.item .single {
    max-width: 400px;
    margin: auto;
    box-sizing: border-box;
}

.ricewrapper {
    width: 60%;
    max-width: 600px;
}
}
@media (min-width: 1900px) {


}

@media (max-width: 1200px) { 
.scrollable {
    -webkit-background-size: auto 200%;
    -moz-background-size: auto 200%;
    -o-background-size: auto 200%;
    background-size: auto 200%;
}

}

@media (min-width: 768px) and (max-width:980px) {
	.footersection {
		font-size:8px;
	}
	.footersection ul#social a {
		margin-left:20px;
	}
}
@media (min-width: 768px) {
	.venue-link-icon, .venue-map-close-wrapper, .show-menu-image, .hide-menu-image {
		display:none !important;
	}
	
	.location-wrapper {
		margin-left:0 !important;
	}

}

@media only screen 
and (min-device-width : 768px) 
and (max-device-width : 1024px) 
and (orientation : landscape) {
	
	#fgtb-images {
				-webkit-background-size: 160%;
-moz-background-size: 160%;
-o-background-size: 160%;
background-size: 160%;
background-position:top left;
	}
	.scrollable {
		-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
background-position: top center !important;
	}
	
	}

@media only screen 
and (min-device-width : 768px) 
and (max-device-width : 1024px) 
and (orientation : portrait) {
	#fgtb-images {
		-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
	}
	
	.scrollable {
		-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
background-position: top center !important;
	}
	
	}



@media (max-width: 767px) { 

body {
	font-size:13px;
}

h2 {
    font-size: 18px;
}

#top, #loading {
    border-spacing: 10px;
}

.topinner {
    padding: 20px;
	border-width:2px;
}

h1#title {
    top: 32px;
    left: 32px;
    width: 40%;
}

#nav-toggle {
    top: 30px;
    right: 30px;
}

#nav a {
    font-size: 30px;
}

#social {
    top: 55px;
    right: 20px;
}

#social a {
	font-size:18px;
	    margin-top: 10px;
}

#nav-toggle {
    padding: 10px 18px 10px 0px;
}

#nav-toggle span, #nav-toggle span:before, #nav-toggle span:after {
    width: 18px;
}

.intro {
	width:60%;
}


.rice {
	font-size:10px;
}

.rice .lined {
	font-size:13px;
}

/* ------------ */

#fgtb-images {
    display: none;
}

.borders {
    top: 20px;
    bottom: 20px;
    left: 20px;
    right: 20px;
}

.ricewrapper {
    width: 75%;
}

#thefood-images {
    display: none;
}

.menu-row-wrapper {
    position: relative;
    width: 100%;
    overflow-x: hidden;
}

.menu-item-wrapper {
    width: 100%;  
    vertical-align: initial;
    float: none;
}

.block.item {
    padding: 50px;
    background: #3e4346;
    width: 100%;
    box-sizing: border-box;
    float: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	
}

.block-item-inner {
    top: 0;
    -webkit-transform:  translateY(0);
    -ms-transform:  translateY(0);
    transform: translateY(0);
}

.scrollable {
    background-attachment: initial !important;
    background-position: center !important;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100% !important;
    float: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	z-index:2;
}

.show-menu-image, .hide-menu-image {
    cursor: pointer;
    display: table;
    margin: 20px auto;
    width: 25px;
    height: 25px;
    background: url(../images/Photo-icon.png) left top;
    background-size: 50px 25px;
}

.hide-menu-image {
    background-position: right top;
    position: absolute;
    right: 30px;
    top: 30px;
    margin: 0;
}

#menu-download-wrapper {
    padding: 4em 40px;
}

/*  Drinks  */

#cocktails {
    padding: 30px;
}

.cocktail-single h2, #other-drinks h2 {
    font-size: 15px;
}

#other-drinks .drink-box {
    display: block;
    width: 100%;
    padding: 15px;
    box-sizing: border-box;
}

.drink-box-inner {
    height: initial !important;
}

/*  Find Us  */


.location-wrapper {
    vertical-align: initial;
    float: none;
	position:relative;
	
}

#findus .half {
    display: table;
    width: 100%;
    vertical-align: initial;
    float: none;
}

.location-single-inner {
    padding: 100px 30px;
}

.location-where {
    line-height: 100px;
}

.location-venue-link-wrapper {
    bottom: 27px;
}


#findus .half.location-map-wrapper {
	display:block;
    position: absolute;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;
    float: none;
	-webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: 1;
}

#findus .half.location-map-wrapper.rotated {
	z-index:2;
}

#findus .half.location-map-wrapper div, #findus .half.location-map-wrapper iframe {
	-webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.venue-link-icon {
    width: 20px;
    height: 32px;
    background: url(../images/map-icon-retina.png) center center no-repeat;
    background-size: 20px;
    margin: 20px auto;
	cursor:pointer;
}

.venue-map-close-wrapper {
    position: absolute;
    top: 0;
    right: 0;
    padding: 15px;
    z-index: 999;
    background: #3e4346;
    cursor: pointer;
}

.venue-map-close-wrapper .venue-map-close {
    display: block;
    width: 25px;
    height: 25px;
    background: url(../images/Photo-icon.png) right top;
    background-size: 50px 25px;
}



#findus .ricewrapper {
    display: table-cell;
    width: 100%;
    padding: 0 12.5%;
    vertical-align: middle;
}

.half.times table td {
    padding: 10px 0;
}

.separator {
	display:block;
	width:100%;
}

.footersection {
    width: 100%;
    height: initial;
    border-width: 0px 1px 1px 1px;
    padding: 30px 10px;
    display: table-row;
}

.footersection:first-child {
    border-top-width: 1px;
}

.footersection h1#title {
    width: 35%;
}

#inner-footer {
    top: 0;
    height: 100%;
    display: table;
}

.footertable {
    border-collapse: collapse;
    height: 100%;
}

.footerwrapper {
    display: table-cell;
    vertical-align: middle;
}

.footersection .mob, .footersection .match {
    display: table-cell;
    height: 25% !important;
    vertical-align: middle;
}

.footer.section {
	background: none;
}


@media (max-width: 767px) and (orientation : landscape) {
h1#title {
	width:20%;
}

.intro {
	width:30%;
}

#down {
    background-size: 8px;
    width: 8px;
    height: 20px;
}

.ricewrapper {
	width: 85%;
}

#findus .ricewrapper {
	padding: 3% 7.5%;
}

#findus .address {
margin: 10px auto 0;
border-top: 1px solid;
border-bottom: 1px solid;
padding: 10px 0;
}

.footersection h1#title {
    width: 15%;
}

.footersection .mob, .footersection .match {
	padding:10px;
}

}
