/**
Pancake Kitchen Style Sheet
 */

/** 
 * ===================================================================
 * webfonts and iconfonts 
 * ------------------------------------------------------------------- 
 */

@import url("fonts.css");
@import url("ionicons/css/ionicons.min.css");
@import url("micons/micons.css");

/** 
 * ===================================================================
 * base style overrides
 * ------------------------------------------------------------------- 
 */

html {
	font-size: 10px;
}
@media only screen and (max-width:1024px) {
	html {
		font-size: 9.375px;
	}
}
@media only screen and (max-width:768px) {
	html {
		font-size: 10px;
	}
}
@media only screen and (max-width:400px) {
	html {
		font-size: 9.375px;
	}
}

html, body {
	height: 100%;
}
body {
	background: #14181E;
	font-family: "merriweather-regular", serif;
	font-size: 1.6rem;
	line-height: 3rem;
	color: #737373;
}

/** 
 * ===================================================================
 * links
 * ------------------------------------------------------------------- 
 */

a, a:visited {
	color: maroon;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
a:hover, a:focus {
	color: #ff7b29;
}

/** 
 * ===================================================================
 * typography
 * ------------------------------------------------------------------- 
 */

h1, h2, h3, h4, h5, h6, .h01, .h02, .h03, .h04, .h05, .h06 {
	font-family: "raleway-bold", sans-serif;
	color: #252525;
	font-style: normal;
	text-rendering: optimizeLegibility;
	margin-bottom: 2.1rem;
}
h3, .h03, h4, .h04 {
	margin-bottom: 1.8rem;
}
h5, .h05, h6, .h06 {
	font-family: "raleway-heavy";
	margin-bottom: 1.2rem;
}

h1, .h01 {
	font-size: 3.1rem;
	line-height: 1.35;
	letter-spacing: -.1rem;
}
@media only screen and (max-width:600px) {
	h1, .h01 {
		font-size: 2.6rem;
		letter-spacing: -.07rem;
	}
}

h2, .h02 {
	font-size: 2.4rem;
	line-height: 1.25;
}
h3, .h03 {
	font-size: 2rem;
	line-height: 1.5;
}
h4, .h04 {
	font-size: 1.7rem;
	line-height: 1.76;
}
h5, .h05 {
	font-size: 1.4rem;
	line-height: 1.7;
	text-transform: uppercase;
	letter-spacing: .15rem;
}
h6, .h06 {
	font-size: 1.3rem;
	line-height: 1.85;
	text-transform: uppercase;
	letter-spacing: .15rem;
}

p img {
	margin: 0;
}
p.lead {
	font-family: "merriweather-light", serif;
	font-size: 2rem;
	line-height: 1.8;
	color: #737373;
}
@media only screen and (max-width:768px) {
	p.lead {
		font-size: 1.7rem;
	}
}

em, i, strong, b {
	font-size: 1.6rem;
	line-height: 3rem;
	font-style: normal;
	font-weight: normal;
}
em, i {
	font-family: "unisansregular";
}
strong, b {
	font-family: "unisansregular";
	font-size: 30px;
	text-decoration: bold;
}
small {
	font-size: 1.1rem;
	line-height: inherit;
}
blockquote {
	margin: 3rem 0;
	padding-left: 4rem;
	position: relative;
}
blockquote:before {
	content: "\201C";
	font-size: 8rem;
	line-height: 0px;
	margin: 0;
	color: #333;
	font-family: arial, sans-serif;
	position: absolute;
	top: 3rem;
	left: 0;
}
blockquote p {
	font-family: georgia, serif;
	font-style: italic;
	padding: 0;
	font-size: 1.9rem;
	line-height: 1.75;
}
blockquote cite {
	display: block;
	font-size: 1.2rem;
	font-style: normal;
	line-height: 1.65;
}
blockquote cite:before {
	content: "\2014 \0020";
}
blockquote cite a, blockquote cite a:visited {
	color: #8d8d8d;
	border: none;
}
abbr {
	font-family: "merriweather-bold", serif;
	font-variant: small-caps;
	text-transform: lowercase;
	letter-spacing: .05rem;
	color: #8d8d8d;
}
var, kbd, samp, code, pre {
	font-family: Consolas, "Andale Mono", Courier, "Courier New", monospace;
}
pre {
	padding: 2.4rem 3rem 3rem;
	background: #F1F1F1;
}
code {
	font-size: 1.4rem;
	margin: 0 .2rem;
	padding: .3rem .6rem;
	white-space: nowrap;
	background: #F1F1F1;
	border: 1px solid #E1E1E1;
	border-radius: 3px;
}
pre > code {
	display: block;
	white-space: pre;
	line-height: 2;
	padding: 0;
	margin: 0;
}
pre.prettyprint > code {
	border: none;
}
del {
	text-decoration: line-through;
}
abbr[title], dfn[title] {
	border-bottom: 1px dotted;
	cursor: help;
}
mark {
	background: #FFF49B;
	color: #000;
}
hr {
	border: solid #cfcfd5;
	border-width: 1px 0 0;
	clear: both;
	margin: 2.4rem 0 1.5rem;
	height: 0;
}

/** 
 * ===================================================================
 * lists
 * ------------------------------------------------------------------- 
 */

ol {
	list-style: decimal;
}
ul {
	list-style: disc;
}
li {
	display: list-item;
}
ol, ul {
	margin-left: 1.7rem;
}
ul li {
	padding-left: .4rem;
}
ul ul, ul ol, ol ol, ol ul {
	margin: .6rem 0 .6rem 1.7rem;
}
ul.disc li {
	display: list-item;
	list-style: none;
	padding: 0 0 0 .8rem;
	position: relative;
}
ul.disc li::before {
	content: "";
	display: inline-block;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #05bca9;
	position: absolute;
	left: -17px;
	top: 11px;
	vertical-align: middle;
}
dt {
	margin: 0;
	color: #05bca9;
}
dd {
	margin: 0 0 0 2rem;
}

/** 
 * ===================================================================
 * tables
 * ------------------------------------------------------------------- 
 */

table {
	border-width: 0;
	width: 100%;
	max-width: 100%;
	font-family: "raleway-regular", sans-serif;
}
th, td {
	padding: 1.5rem 3rem;
	text-align: left;
	border-bottom: 1px solid #E8E8E8;
}
th {
	color: #252525;
	font-family: "raleway-bold", sans-serif;
}
td {
	line-height: 1.5;
}
th:first-child, td:first-child {
	padding-left: 0;
}
th:last-child, td:last-child {
	padding-right: 0;
}
.table-responsive {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

/** 
 * ===================================================================
 * spacing
 * ------------------------------------------------------------------- 
 */

button, .button {
	margin-bottom: 1.2;
}
fieldset {
	margin-bottom: 1.5rem;
}
input,
textarea,
select,
pre,
blockquote,
figure,
table,
p,
ul,
ol,
dl,
form,
.fluid-video-wrapper,
.iw-custom-select {
	margin-bottom: 3rem;
}

/** 
 * ===================================================================
 * floated image
 * ------------------------------------------------------------------- 
 */

img.pull-right {
	margin: 1.5rem 0 0 3rem;
}
img.pull-left {
	margin: 1.5rem 3rem 0 0;
}

/** 
 * ===================================================================
 * block grids paddings 
 * ------------------------------------------------------------------- 
 */

.bgrid {
	padding: 0 20px;
}
@media only screen and (max-width:1024px) {
	.bgrid {
		padding: 0 18px;
	}
}
@media only screen and (max-width:768px) {
	.bgrid {
		padding: 0 15px;
	}
}
@media only screen and (max-width:600px) {
	.bgrid {
		padding: 0 10px;
	}
}
@media only screen and (max-width:400px) {
	.bgrid {
		padding: 0;
	}
}

/** 
 * ===================================================================
 * Smokehouse
 * ------------------------------------------------------------------- 
 */

#smokehouse {
	background-image: url("../images/smokehousebg.jpg");
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
	padding-top: 12rem;
	padding-bottom: 12rem;
	color: white;
}
#smokehouse h1 {
	font-family: 'Abril Fatface', cursive;
	font-size: 6.8rem;
	color: #595045;
	line-height: 1.25;
	margin-bottom: 1.2rem;
	letter-spacing: 0.3rem;
}

#smokehouse h2 {
	font-family: 'Abril Fatface', cursive;
	font-size: 24px;
	line-height: 1.50;
	margin-bottom: 1.2rem;
	letter-spacing: 0.5rem;
	color: maroon;
}

#smokehouse h5 {
	font-family: 'Abril Fatface', cursive;
	font-size: 2.8rem;
	color: #02263a;
	line-height: 1.25;
	margin-bottom: 1.2rem;
	letter-spacing: 0.3rem;
}

#smokehouse .section-intro .lead {
	color: #a0926c;
	font-family: "unisansregular";
}
#smokehouse p {
	font-family: "unisansregular";
	font-size: 14px;
	line-height: 1.8;
	color: #000;
}
.smokehouse-content {
	max-width: 1200px;
}
.smokehouse-list {
	margin-top: 1.2rem;
	text-align: center;
}
.smokehouse-list .feature {
	margin-bottom: 1.2rem;
	padding: 0 32px;
}
.smokehouse-list .icon {
	display: inline-block;
	margin-bottom: 2.1rem;
}
.smokehouse-list .icon i {
	font-size: 4.8rem;
	color: #02263a;
}
.smokehouse-list .h05 {
	font-family: "Blackstock";
	font-size: 1.7rem;
	line-height: 1.765;
	color: #a04480;
	margin-bottom: 1.8rem;
}

.smokehouse-list .h06 {
	font-family: "Blackstock";
	font-size: 1.7rem;
	line-height: 1.765;
	color: #fff;
	margin-bottom: 1.8rem;
}

/**
 * responsive:
 * smokehouse
 * -
 */

@media only screen and (max-width:768px) {
	.smokehouse-content {
		max-width: 600px;
	}
	.smokehouse-list .feature {
		padding: 0 15px;
	}
}
@media only screen and (max-width:600px) {
	.smokehouse-list .feature {
		padding: 0 10px;
	}
}
@media only screen and (max-width:400px) {
	.smokehouse-list .feature {
		padding: 0;
	}
}



/** 
 * ===================================================================
 * preloader
 * ------------------------------------------------------------------- 
 */

#preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #0F1215;
	z-index: 9999999;
	height: 100%;
	width: 100%;
}
.no-js #preloader, .oldie #preloader {
	display: none;
}
#loader {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 60px;
	height: 60px;
	margin-left: -30px;
	margin-top: -30px;
	padding: 0;
	background-color: #05bca9;
	border-radius: 100%;
	-webkit-animation: sk-scaleout 1.0s infinite ease-in-out;
	animation: sk-scaleout 1.0s infinite ease-in-out;
}
@-webkit-keyframes sk-scaleout {
	0% {
		-webkit-transform: scale(0);
	}
	100% {
		-webkit-transform: scale(1);
		opacity: 0;
	}
}
@keyframes sk-scaleout {
	0% {
		-webkit-transform: scale(0);
		transform: scale(0);
	}
	100% {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 0;
	}
}


/** 
 * ===================================================================
 * forms
 * ------------------------------------------------------------------- 
 */

fieldset {
	border: none;
}
input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea,
select {
	display: block;
	height: 6rem;
	padding: 1.5rem 2rem;
	border: 0;
	outline: none;
	vertical-align: middle;
	color: #737373;
	font-family: "merriweather-regular", sans-serif;
	font-size: 1.5rem;
	line-height: 3rem;
	border-radius: 3px;
	background: #FFFFFF;
	max-width: 100%;
	border: 1px solid #d5d5d5;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.ss-custom-select {
	position: relative;
	padding: 0;
	display: inline-block;
}
.ss-custom-select select {
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	text-indent: 0.01px;
	text-overflow: '';
	margin: 0;
	line-height: 3rem;
	vertical-align: middle;
	padding-right: 4rem;
}
.ss-custom-select select option {
	padding-left: 2rem;
	padding-right: 2rem;
}
.ss-custom-select select::-ms-expand {
	display: none;
}
.ss-custom-select::after {
	content: '\f123';
	font-family: 'Ionicons';
	position: absolute;
	top: 50%;
	right: 18px;
	margin-top: -10px;
	bottom: auto;
	width: 20px;
	height: 20px;
	line-height: 20px;
	font-size: 15px;
	text-align: center;
	pointer-events: none;
	color: #252525;
}
textarea {
	min-height: 25rem;
}
input[type="email"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
	color: #000000;
	background: #f4fffe;
	border: 1px solid #d2fef9;
}
label, legend {
	font-family: "merriweather-bold", sans-serif;
	font-size: 1.4rem;
	margin-bottom: .6rem;
	color: #404040;
	display: block;
}
label span, legend span {
	color: #05bca9;
}
input[type="checkbox"], input[type="radio"] {
	display: inline;
}

/**
 * ------------------------------------------------------------------- 
 * Style Placeholder Text  
 * ------------------------------------------------------------------- 
 */

::-webkit-input-placeholder {
	color: #a1a1a1;
}
:-moz-placeholder {
	/* Firefox 18- */
	color: #a1a1a1;
}
::-moz-placeholder {
	/* Firefox 19+ */
	color: #a1a1a1;
}
:-ms-input-placeholder {
	color: #a1a1a1;
}
.placeholder {
	color: #a1a1a1 !important;
}


/** 
 * ===================================================================
 * buttons
 * ------------------------------------------------------------------- 
 */

.button,
button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
	display: inline-block;
	font-family: 'Amatic SC', cursive;
	font-size: 3.6rem;
	height: 5rem;
	line-height: 5rem;
	padding: 0 3rem;
	margin: 0 .3rem 1rem 0;
	color: #fff;
	background: #252525;
	text-decoration: none;
	cursor: pointer;
	text-align: center;
	white-space: nowrap;
	border: 2px solid;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.button:hover,
button:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
.button:focus,
button:focus,
input[type="submit"]:focus,
input[type="reset"]:focus,
input[type="button"]:focus {
	background: #fff;
	color: #252525;
	outline: 0;
}

.button.button-primary,
button.button-primary,
input[type="submit"].button-primary,
input[type="reset"].button-primary,
input[type="button"].button-primary {
	background: #05bca9;
	color: #FFFFFF;
}

.button.button-primary:hover,
button.button-primary:hover,
input[type="submit"].button-primary:hover,
input[type="reset"].button-primary:hover,
input[type="button"].button-primary:hover,
.button.button-primary:focus,
button.button-primary:focus,
input[type="submit"].button-primary:focus,
input[type="reset"].button-primary:focus,
input[type="button"].button-primary:focus {
	background: #04998a;
}
button.full-width, .button.full-width {
	width: 100%;
	margin-right: 0;
}
button.medium, .button.medium {
	height: 5.5rem !important;
	line-height: 5.5rem !important;
	padding: 0 1.8rem !important;
}
button.large, .button.large {
	height: 5.5rem !important;
	line-height: 5rem !important;
	padding: 0rem 3rem !important;
	border-color: #a0926c;
	color: #a0926c;
}
button.round, .button.round {
	padding-left: 3rem !important;
	padding-right: 3rem !important;
	border-radius: 1000px;
}
button.stroke, .button.stroke {
	background: transparent !important;
	border: 3px solid transparent;
	line-height: 4.4rem;
}
button::-moz-focus-inner, input::-moz-focus-inner {
	border: 0;
	padding: 0;
}

/** 
 * ===================================================================
 * common styles
	- Section Intro
 * ------------------------------------------------------------------- 
 */

.section-intro {
	max-width: 800px;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 5.2rem;
	position: relative;
}
.section-intro h1 {
	font-family: "Blackstock";
	font-size: 6.8rem;
	color: #595045;
	line-height: 1.25;
	margin-bottom: 1.2rem;
	letter-spacing: 0.3rem;
}
.section-intro h5 {
	color: rgba(56, 66, 78, 0.5);
	font-size: 1.6rem;
	line-height: 1.875;
	margin-bottom: 0.3rem;
	letter-spacing: .4rem;
}
.section-intro .lead {
	color: #000;
	font-family: "unisansregular";
	padding: 50px;
}
.section-intro .with-bottom-line {
	position: relative;
	overflow: hidden;
}
.section-intro .with-bottom-line::after {
	display: block;
	background-color: #ebecec;
	width: 120px;
	height: 3px;
	content: '\0020';
	position: absolute;
	left: 50%;
	bottom: 0;
	margin-left: -60px;
}
@media only screen and (max-width:600px) {
	section .h01 {
		font-size: 2.5rem;
	}
}

/**
 * responsive:
 * section intro
 * - 
 */

@media only screen and (max-width:768px) {
	.section-intro {
		max-width: 650px;
	}
	.section-intro h1 {
		font-size: 4.2rem;
	}
}
@media only screen and (max-width:600px) {
	.section-intro h1 {
		font-size: 3.8rem;
	}
	.section-intro h5 {
		font-size: 1.5rem;
		letter-spacing: .3rem;
	}
}
@media only screen and (max-width:400px) {
	.section-intro h1 {
		font-size: 3.4rem;
	}
}


/** 
 * ===================================================================
 * header styles 
 * ------------------------------------------------------------------- 
 */

header {
	width: 100%;
	position: absolute;
	left: 0;
	z-index: 600;
	background-color: #fbf5e0;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
header .row {
	width: auto;
	height: 90px;
	position: relative;
}

header .logo {
	margin-top: 2px;
	z-index: 600;
	position: absolute;
	left: 135px;
	top: 95%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}
header .logo a {
	display: block;
	margin: 0;
	padding: 0;
	border: none;
	font: 0/0 a;
	text-shadow: none;
	color: transparent;
	width: 42px;
	height: 42px;
	background-size: 42px 42px;
	-moz-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}
.sticky {
	position: fixed;
	background: #fbf5e0;
	top: 0;
}
.sticky .logo a {
	width: 38px;
	height: 38px;
	background-size: 38px 38px;
}

/**
 * responsive:
 * header section
 * - 
 */

@media only screen and (max-width:768px) {
header .logo {
	margin-top: 2px;
	z-index: 600;
	position: absolute;
	left: 40px;
	top: 95%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}
header .logo a {
	display: block;
	margin: 0;
	padding: 0;
	border: none;
	font: 0/0 a;
	text-shadow: none;
	color: transparent;
	width: 42px;
	height: 42px;
	background-size: 42px 42px;
	-moz-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}
}

@media only screen and (max-width:480px) {
	header {
		top: 0;
		padding: 6px 0;
	}
header .logo {
	margin-top: 2px;
	z-index: 600;
	position: absolute;
	left: 40px;
	top: 95%;
	width: 200px;
	height: 155px;
	background-size: 200px 155px;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}
}

@media only screen and (max-width:380px) {
	header {
		top: 0;
		padding: 6px 0;
	}
header .logo {
	margin-top: 2px;
	z-index: 600;
	position: absolute;
	left: 24px;
	top: 95%;
	width: 170px;
	height: 160px;
	background-size: 170px 160px;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}
}


/**
 * ------------------------------------------------------------------- 
 * primary navigation
 * ------------------------------------------------------------------- 
 */

#main-nav-wrap, .main-navigation {
	margin: 0;
	padding: 0;
}

/* hide toggle button */
a.menu-toggle {
	display: none;
}

/* main-nav-wrap */
#main-nav-wrap {
	font-family: 'Fjalla One', sans-serif;
	font-size: 16.5px;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	position: absolute;
	top: 15px;
	right: 100px;
}
.main-navigation {
	min-height: 66px;
	display: inline-block;
	width: auto;
	text-align: left;
}
.main-navigation li {
	position: relative;
	display: inline-block;
	list-style: none;
	padding: 0;
	margin: 0;
	height: 66px;
}
.main-navigation li.current a {
	color: #FFFFFF;
}
.main-navigation li.current a::after {
	position: absolute;
	left: 50%;
	bottom: 0;
	width: 80%;
	height: 3px;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	background-color: #05bca9;
	content: '\0020';
	display: block;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.main-navigation li.highlight a {
	color: #05bca9;
}
.main-navigation li.with-sep a {
	position: relative;
	padding-left: 22px;
	margin-left: 8px;
}
.main-navigation li.with-sep a::before {
	position: absolute;
	left: 0;
	top: 50%;
	width: 1px;
	height: 20px;
	margin-top: -10px;
	background-color: rgba(255, 255, 255, 0.2);
	content: '\0020';
	display: block;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

/* navigation links */
.main-navigation li a {
	display: block;
	padding: 18px 7px;
	line-height: 30px;
	text-decoration: none;
	text-align: left;
	color: #000;
	position: relative;
	-moz-transition: color 0.3s ease-in-out;
	-o-transition: color 0.3s ease-in-out;
	-webkit-transition: color 0.3s ease-in-out;
	-ms-transition: color 0.3s ease-in-out;
	transition: color 0.3s ease-in-out;
}
.main-navigation li a:active {
	background-color: transparent !important;
}
.main-navigation li a:hover {
	color: #595045;
}

/**
 * ------------------------------------------------------------------- 
 * mobile view - primary navigation
 * -------------------------------------------------------------------  
 */

@media only screen and (max-width:1035px) {
	#main-nav-wrap {
		display: block;
		width: 100%;
		position: absolute;
		top: 69px;
		right: 0;
	}
	a.menu-toggle {
		display: block;
		width: 40px;
		height: 40px;
		position: absolute;
		top: 50%;
		right: 30px;
		margin-top: -20px;
	}
	a.menu-toggle span {
		display: block;
		width: 24px;
		height: 3px;
		margin-top: -1.5px;
		position: absolute;
		right: 8px;
		top: 50%;
		bottom: auto;
		left: auto;
		background-color: #595045;
		-moz-transition: background 0.2s ease-in-out;
		-o-transition: background 0.2s ease-in-out;
		-webkit-transition: background 0.2s ease-in-out;
		-ms-transition: background 0.2s ease-in-out;
		transition: background 0.2s ease-in-out;
		font: 0/0 a;
		text-shadow: none;
		color: transparent;
	}
	a.menu-toggle span::before, a.menu-toggle span::after {
		content: '';
		width: 100%;
		height: 100%;
		position: absolute;
		background-color: inherit;
		left: 0;
		-moz-transition-duration: 0.2s, 0.2s;
		-o-transition-duration: 0.2s, 0.2s;
		-webkit-transition-duration: 0.2s, 0.2s;
		-ms-transition-duration: 0.2s, 0.2s;
		transition-duration: 0.2s, 0.2s;
		-moz-transition-delay: 0.2s, 0s;
		-o-transition-delay: 0.2s, 0s;
		-webkit-transition-delay: 0.2s, 0s;
		-ms-transition-delay: 0.2s, 0s;
		transition-delay: 0.2s, 0s;
	}
	a.menu-toggle span::before {
		top: -8px;
		-moz-transition-property: top, transform;
		-o-transition-property: top, transform;
		-webkit-transition-property: top, transform;
		-ms-transition-property: top, transform;
		transition-property: top, transform;
	}
	a.menu-toggle span::after {
		bottom: -8px;
		-moz-transition-property: bottom, transform;
		-o-transition-property: bottom, transform;
		-webkit-transition-property: bottom, transform;
		-ms-transition-property: bottom, transform;
		transition-property: bottom, transform;
	}
	.menu-toggle.is-clicked span {
		background-color: rgba(255, 255, 255, 0);
	}
	.menu-toggle.is-clicked span::before, .menu-toggle.is-clicked span::after {
		background-color: #595045;
		-moz-transition-delay: 0s, 0.2s;
		-o-transition-delay: 0s, 0.2s;
		-webkit-transition-delay: 0s, 0.2s;
		-ms-transition-delay: 0s, 0.2s;
		transition-delay: 0s, 0.2s;
	}
	.menu-toggle.is-clicked span::before {
		top: 0;
		-webkit-transform: rotate(45deg);
		-ms-transform: rotate(45deg);
		transform: rotate(45deg);
	}
	.menu-toggle.is-clicked span::after {
		bottom: 0;
		-webkit-transform: rotate(-45deg);
		-ms-transform: rotate(-45deg);
		transform: rotate(-45deg);
	}
	.main-navigation {
		background: #000;
		padding: 70px 42px 54px 42px;
		margin: 0;
		width: 100%;
		height: auto;
		clear: both;
		display: none;
	}
	.main-navigation > li {
		display: block;
		height: auto;
		text-align: left;
		border-bottom: 1px dotted rgba(200, 200, 200, 0.08);
		padding: 0;
	}
	.main-navigation > li:first-child {
		border-top: 1px dotted rgba(200, 200, 200, 0.08);
	}
	.main-navigation li a {
		display: block;
		color: #f1f1ec;
		width: auto;
		padding: 18px 0;
		line-height: 16px;
		border: none;
	}
	.main-navigation li a:hover {
		color: #595045;
	}
	.main-navigation li.with-sep a {
		padding-left: 0;
		margin-left: 0;
	}
	.main-navigation li.with-sep a::before {
		display: none;
	}
	.main-navigation li.current > a {
		background: none;
		color: #ff7b29;
	}
	.main-navigation li.current > a:after {
		display: none;
	}
}

/**
 * make sure the menu is visible on larger screens
 * -
 */

@media only screen and (min-width:1035px) {
	#main-nav-wrap ul.main-navigation {
		display: block !important;
	}
}

/** 
 * ===================================================================
 * video section
 * ------------------------------------------------------------------- 
 */

#video-viewport { 
	position: absolute; 
	top: 0; 
	left: 0; 
	width: 100%; 
	height: 100%; 
	overflow: hidden; 
	z-index: -1; 
}
video { 
	display: block; 
	width: 100%; 
	height: auto; 
}
.fullsize-video-bg { 
	height: 100%; 
	overflow: hidden; 
}
.fullsize-video-bg:before { 
	content: ""; 
	background: rgba(114,45,0,.35); 
	position: absolute; 
	top: 0; 
	left: 0; 
	width: 100%; 
	height: 100%; 
	z-index: 0; 
}
.fullsize-video-bg:after { 
	content: ""; 
	background-size: 3px 3px; 
	position: absolute; 
	top: 0; 
	left: 0; 
	width: 100%; 
	height: 100%; 
	z-index: 1; 
}
.fullsize-video-bg .inner { 
	display: table; 
	width: 100%; 
	max-width: 24em; 
	height: 100%; 
	margin: 0 auto; 
	padding: 0; 
	position: relative; 
	z-index: 2; 
	text-shadow: 0 1px 5px rgba(0,0,0,.5); 
}
.fullsize-video-bg .inner > div { 
	text-align: center; 
	display: table-cell; 
	vertical-align: middle; 
	padding: 0 2em; 
}


/** 
 * ===================================================================
 * intro section
 * ------------------------------------------------------------------- 
 */

#intro {
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
	background-attachment: fixed;
	width: 100%;
	height: 76%;
	min-height: 685px;
	display: table;
	position: relative;
}
.shadow-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.25) 25%, transparent 56%);  /* FF3.6-15 */
	background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.25) 25%, transparent 56%);  /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.25) 25%, transparent 56%);  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#73000000', endColorstr='#00000000', GradientType=0);  /* IE6-9 */
}
.intro-content {
	display: table-cell;
	vertical-align: middle;
	text-align: center;
	-webkit-transform: translateY(-1.2rem);
	-ms-transform: translateY(-1.2rem);
	transform: translateY(-1.2rem);
}
.intro-content h1 {
	color: #FFFFFF;
	font-family: "merriweather-bold", serif;
	font-size: 5.4rem;
	line-height: 1.334;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}
.intro-content h5 {
	color: rgba(255, 255, 255, 0.6);
	font-family: "raleway-heavy", sans-serif;
	font-size: 1.8rem;
	line-height: 1.667;
	margin-bottom: 0.6rem;
	text-transform: uppercase;
	letter-spacing: .25rem;
}
.intro-content .video-link a {
	display: inline-block;
	width: 90px;
	height: 90px;
	margin-bottom: 4.2rem;
	outline: none;
}
.intro-content .button {
	border-color: #FFFFFF;
	color: #FFFFFF;
	height: 6.6rem;
	line-height: 6rem;
	padding: 0 3rem !important;
	margin-top: 1.8rem;
	font-family: "raleway-heavy", sans-serif;
	font-size: 1.4rem;
	text-transform: uppercase;
	letter-spacing: .4rem;
}
.intro-content .button:hover, .intro-content .button:focus {
	color: #05bca9;
	border-color: #05bca9;
}

/**
 * responsive:
 * intro
 * -
 */

@media only screen and (max-width:1500px){
	#intro {
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
	background-attachment: fixed;
	width: 100%;
	height: 60%;
	min-height: 668px;
	display: table;
	position: relative;
}
}

@media only screen and (max-width:1200px){
	#intro {
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
	background-attachment: fixed;
	width: 100%;
	height: 50%;
	min-height: 600px;
	display: table;
	position: relative;
}
}

@media only screen and (max-width:1024px) {
	#intro{
		height: 40%;
		min-height: 550px;
	}
	.intro-content {
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0);
	}
	.intro-content h1 {
		font-size: 4.8rem;
		max-width: 700px;
	}
	.intro-content h5 {
		font-size: 1.6rem;
	}
	.intro-content .video-link a {
		width: 72px;
		height: 72px;
		margin-bottom: 3rem;
	}
}

@media only screen and (max-width:950px){
	#intro {
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
	background-attachment: fixed;
	width: 100%;
	height: 45%;
	min-height: 532px;
	display: table;
	position: relative;
}
}

@media only screen and (max-width:768px) {
	#intro {
		min-height: 430px;
		height: 40%;
	}
	.intro-content h1 {
		font-size: 4.2rem;
		max-width: 550px;
	}
	.intro-content h5 {
		font-size: 1.5rem;
		letter-spacing: .15rem;
	}
}
@media only screen and (max-width:600px) {
	#intro {
		min-height: 400px;
	}
	.intro-content h1 {
		font-size: 3.8rem;
		margin-bottom: .9rem;
	}
	.intro-content h5 {
		font-size: 1.4rem;
		letter-spacing: .15rem;
	}
	.intro-content .video-link a {
		width: 66px;
		height: 66px;
		margin-bottom: 1.5rem;
	}
}
@media only screen and (max-width:400px) {
	#intro {
		min-height: 450px;
	}
	.intro-content h1 {
		font-size: 3.4rem;
	}
	.intro-content h5 {
		font-size: 1.4rem;
		letter-spacing: .15rem;
	}
	.intro-content .video-link a {
		width: 60px;
		height: 60px;
	}
}

/* 
* ------------------------------------------------------------------- 
   video background 
* ------------------------------------------------------------------- 
*/

#video-background {
/*  making the video fullscreen  */
  position: fixed;
  right: 0; 
  bottom: 0;
  min-width: 100%; 
  min-height: 100%;
  width: auto; 
  height: auto;
  z-index: -100;
}

/** 
 * ===================================================================
 * intro catering section
 * ------------------------------------------------------------------- 
 */

#introcatering {
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-image: url(../images/catering-bg.jpg);
	background-size: cover;
	background-attachment: fixed;
	width: 100%;
	height: 48%;
	min-height: 420px;
	display: table;
	position: relative;
}
.introcatering-content {
	display: table-cell;
	vertical-align: middle;
	text-align: center;
	-webkit-transform: translateY(-1.2rem);
	-ms-transform: translateY(-1.2rem);
	transform: translateY(-1.2rem);
}
.introcatering-content h1 {
	color: #FFFFFF;
	font-family: "merriweather-bold", serif;
	font-size: 5.4rem;
	line-height: 1.334;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}
.introcatering-content h5 {
	color: rgba(255, 255, 255, 0.6);
	font-family: "raleway-heavy", sans-serif;
	font-size: 1.8rem;
	line-height: 1.667;
	margin-bottom: 0.6rem;
	text-transform: uppercase;
	letter-spacing: .25rem;
}
.introcatering-content .video-link a {
	display: inline-block;
	width: 90px;
	height: 90px;
	margin-bottom: 4.2rem;
	outline: none;
}
.introcatering-content .button {
	border-color: #FFFFFF;
	color: #FFFFFF;
	height: 6.6rem;
	line-height: 6rem;
	padding: 0 3rem !important;
	margin-top: 1.8rem;
	font-family: "raleway-heavy", sans-serif;
	font-size: 1.4rem;
	text-transform: uppercase;
	letter-spacing: .4rem;
}
.introcatering-content .button:hover, .intro-content .button:focus {
	color: #05bca9;
	border-color: #05bca9;
}

/**
 * responsive:
 * intro catering
 * -
 */

@media only screen and (max-width:1024px) {
	.introcatering-content {
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0);
	}
	.introcatering-content h1 {
		font-size: 4.8rem;
		max-width: 700px;
	}
	.introcatering-content h5 {
		font-size: 1.6rem;
	}
	.introcatering-content .video-link a {
		width: 72px;
		height: 72px;
		margin-bottom: 3rem;
	}
}
@media only screen and (max-width:768px) {
	#introcatering {
		min-height: 660px;
	}
	.introcatering-content h1 {
		font-size: 4.2rem;
		max-width: 550px;
	}
	.introcatering-content h5 {
		font-size: 1.5rem;
		letter-spacing: .15rem;
	}
}
@media only screen and (max-width:600px) {
	#introcatering {
		min-height: 600px;
	}
	.introcatering-content h1 {
		font-size: 3.8rem;
		margin-bottom: .9rem;
	}
	.introcatering-content h5 {
		font-size: 1.4rem;
		letter-spacing: .15rem;
	}
	.introcatering-content .video-link a {
		width: 66px;
		height: 66px;
		margin-bottom: 1.5rem;
	}
}
@media only screen and (max-width:400px) {
	#introcatering {
		min-height: 550px;
	}
	.introcatering-content h1 {
		font-size: 3.4rem;
	}
	.introcatering-content h5 {
		font-size: 1.4rem;
		letter-spacing: .15rem;
	}
	.introcatering-content .video-link a {
		width: 60px;
		height: 60px;
	}
}


/** 
 * ===================================================================
 * intro menu section
 * ------------------------------------------------------------------- 
 */

#intromenu {
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-image: url(../images/menu-bg.jpg);
	background-size: cover;
	width: 100%;
	height: 48%;
	min-height: 420px;
	display: table;
	position: relative;
}
.intromenu-content {
	display: table-cell;
	vertical-align: middle;
	text-align: center;
	-webkit-transform: translateY(-1.2rem);
	-ms-transform: translateY(-1.2rem);
	transform: translateY(-1.2rem);
}
.intromenu-content h1 {
	color: #FFFFFF;
	font-family: "merriweather-bold", serif;
	font-size: 5.4rem;
	line-height: 1.334;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}
.intromenu-content h5 {
	color: rgba(255, 255, 255, 0.6);
	font-family: "raleway-heavy", sans-serif;
	font-size: 1.8rem;
	line-height: 1.667;
	margin-bottom: 0.6rem;
	text-transform: uppercase;
	letter-spacing: .25rem;
}
.intromenu-content .video-link a {
	display: inline-block;
	width: 90px;
	height: 90px;
	margin-bottom: 4.2rem;
	outline: none;
}
.intromenu-content .button {
	border-color: #FFFFFF;
	color: #FFFFFF;
	height: 6.6rem;
	line-height: 6rem;
	padding: 0 3rem !important;
	margin-top: 1.8rem;
	font-family: "raleway-heavy", sans-serif;
	font-size: 1.4rem;
	text-transform: uppercase;
	letter-spacing: .4rem;
}
.intromenu-content .button:hover, .intro-menu .button:focus {
	color: #05bca9;
	border-color: #05bca9;
}

/**
 * responsive:
 * intro menu
 * -
 */

@media only screen and (max-width:1024px) {
	.intromenu-content {
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0);
	}
	.intromenu-content h1 {
		font-size: 4.8rem;
		max-width: 700px;
	}
	.intromenu-content h5 {
		font-size: 1.6rem;
	}
	.intromenu-content .video-link a {
		width: 72px;
		height: 72px;
		margin-bottom: 3rem;
	}
}
@media only screen and (max-width:768px) {
	#intromenu {
		min-height: 660px;
	}
	.intromenu-content h1 {
		font-size: 4.2rem;
		max-width: 550px;
	}
	.intromenu-content h5 {
		font-size: 1.5rem;
		letter-spacing: .15rem;
	}
}
@media only screen and (max-width:600px) {
	#intromenu {
		min-height: 600px;
	}
	.intromenu-content h1 {
		font-size: 3.8rem;
		margin-bottom: .9rem;
	}
	.intromenu-content h5 {
		font-size: 1.4rem;
		letter-spacing: .15rem;
	}
	.intromenu-content .video-link a {
		width: 66px;
		height: 66px;
		margin-bottom: 1.5rem;
	}
}
@media only screen and (max-width:400px) {
	#intromenu {
		min-height: 550px;
	}
	.intromenu-content h1 {
		font-size: 3.4rem;
	}
	.intromenu-content h5 {
		font-size: 1.4rem;
		letter-spacing: .15rem;
	}
	.intromenu-content .video-link a {
		width: 60px;
		height: 60px;
	}
}


/** 
 * ===================================================================
 * intro bookings section
 * ------------------------------------------------------------------- 
 */

#introbooking {
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-image: url(../images/menu-bg.jpg);
	background-size: cover;
	background-attachment: fixed;
	width: 100%;
	height: 48%;
	min-height: 420px;
	display: table;
	position: relative;
}
.introbooking-content {
	display: table-cell;
	vertical-align: middle;
	text-align: center;
	-webkit-transform: translateY(-1.2rem);
	-ms-transform: translateY(-1.2rem);
	transform: translateY(-1.2rem);
}
.introbooking-content h1 {
	color: #FFFFFF;
	font-family: "merriweather-bold", serif;
	font-size: 5.4rem;
	line-height: 1.334;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}
.introbooking-content h5 {
	color: rgba(255, 255, 255, 0.6);
	font-family: "raleway-heavy", sans-serif;
	font-size: 1.8rem;
	line-height: 1.667;
	margin-bottom: 0.6rem;
	text-transform: uppercase;
	letter-spacing: .25rem;
}
.introbooking-content .video-link a {
	display: inline-block;
	width: 90px;
	height: 90px;
	margin-bottom: 4.2rem;
	outline: none;
}
.introbooking-content .button {
	border-color: #FFFFFF;
	color: #FFFFFF;
	height: 6.6rem;
	line-height: 6rem;
	padding: 0 3rem !important;
	margin-top: 1.8rem;
	font-family: "raleway-heavy", sans-serif;
	font-size: 1.4rem;
	text-transform: uppercase;
	letter-spacing: .4rem;
}
.introbooking-content .button:hover, .intro-menu .button:focus {
	color: #05bca9;
	border-color: #05bca9;
}

/**
 * responsive:
 * intro booking
 * -
 */

@media only screen and (max-width:1024px) {
	.introbooking-content {
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0);
	}
	.introbooking-content h1 {
		font-size: 4.8rem;
		max-width: 700px;
	}
	.introbooking-content h5 {
		font-size: 1.6rem;
	}
	.introbooking-content .video-link a {
		width: 72px;
		height: 72px;
		margin-bottom: 3rem;
	}
}
@media only screen and (max-width:768px) {
	#introbooking {
		min-height: 660px;
	}
	.introbooking-content h1 {
		font-size: 4.2rem;
		max-width: 550px;
	}
	.introbooking-content h5 {
		font-size: 1.5rem;
		letter-spacing: .15rem;
	}
}
@media only screen and (max-width:600px) {
	#introbooking {
		min-height: 600px;
	}
	.introbooking-content h1 {
		font-size: 3.8rem;
		margin-bottom: .9rem;
	}
	.introbooking-content h5 {
		font-size: 1.4rem;
		letter-spacing: .15rem;
	}
	.introbooking-content .video-link a {
		width: 66px;
		height: 66px;
		margin-bottom: 1.5rem;
	}
}
@media only screen and (max-width:400px) {
	#introbooking {
		min-height: 550px;
	}
	.introbooking-content h1 {
		font-size: 3.4rem;
	}
	.introbooking-content h5 {
		font-size: 1.4rem;
		letter-spacing: .15rem;
	}
	.introbooking-content .video-link a {
		width: 60px;
		height: 60px;
	}
}


/** 
 * ===================================================================
 * process section
 * ------------------------------------------------------------------- 
 */

#process {
	background: #FFFFFF;
	padding-top: 12rem;
	padding-bottom: 15rem;
	overflow: hidden;
}
.process-content {
	position: relative;
	text-align: center;
}
.process-content .right-side,
.process-content .left-side,
.process-content .image-part {
	width: 33.33333%;
	font-size: 15px;
	line-height: 27px;
}
.process-content .right-side, .process-content .left-side {
	padding: 0 6% 24px;
	position: absolute;
	top: 0;
}
.process-content .right-side {
	right: 0;
}
.process-content .left-side {
	left: 0;
}
.process-content .image-part {
	margin: 0 auto;
	height: 660px;
	background-image: url("../images/appdesign.jpg");
	background-repeat: no-repeat;
	background-position: center;
	-webkit-background-size: contain;
	-moz-background-size: contain;
	background-size: contain;
}
.process-content .item[data-item]::before {
	background: #38424e;
	color: #FFFFFF;
	border-radius: 100%;
	font-family: "montserrat-bold", sans-serif;
	content: attr(data-item);
	display: inline-block;
	font-size: 18px;
	height: 42px;
	width: 42px;
	line-height: 42px;
	text-align: center;
	vertical-align: middle;
	margin-bottom: 1.5rem;
}
.process-content h5 {
	color: #05bca9;
	font-size: 1.6rem;
	line-height: 1.875;
	letter-spacing: .2rem;
	margin-bottom: .3rem;
}

/**
 * responsive:
 * process
 * -
 */

@media only screen and (max-width:1024px) {
	.process-content .right-side, .process-content .left-side {
		padding: 0 3% 24px;
		width: 35%;
	}
	.process-content .image-part {
		height: 600px;
		width: 30%;
	}
}
@media only screen and (max-width:768px) {
	#process {
		padding-bottom: 27rem;
	}
	.process-content .right-side, .process-content .left-side {
		position: static;
		width: 100%;
		max-width: 480px;
		font-size: 1.6rem;
		line-height: 3rem;
		margin-left: auto;
		margin-right: auto;
		padding-bottom: 0;
	}
	.process-content .image-part {
		width: 300px;
		position: absolute;
		bottom: -630px;
		left: 50%;
		margin-left: -150px;
	}
}
@media only screen and (max-width:400px) {
	#process {
		padding-bottom: 21rem;
	}
	.process-content .image-part {
		width: 230px;
		bottom: -540px;
		margin-left: -115px;
	}
}


/** 
 * ===================================================================
 * catering section
 * ------------------------------------------------------------------- 
 */

#catering {
	background: #fff;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
	padding-top: 12rem;
	padding-bottom: 12rem;
	color: white;
}
#catering h1 {
	font-family: "Blackstock";
	font-size: 6.8rem;
	color: #595045;
	line-height: 1.25;
	margin-bottom: 1.2rem;
	letter-spacing: 0.3rem;
}
#catering h5 {
	font-family: "Blackstock";
	font-size: 2.8rem;
	color: #02263a;
	line-height: 1.25;
	margin-bottom: 1.2rem;
	letter-spacing: 0.3rem;
}

#catering .section-intro .lead {
	color: #a0926c;
	font-family: "unisansregular";
}
#catering p {
	font-family: "unisansregular";
	font-size: 1.8rem;
	line-height: 1.8;
	color: #02263a;
}
.catering-content {
	max-width: 1200px;
}
.catering-list {
	margin-top: 1.2rem;
	text-align: center;
}
.catering-list .feature {
	margin-bottom: 1.2rem;
	padding: 0 32px;
}
.catering-list .icon {
	display: inline-block;
	margin-bottom: 2.1rem;
}
.catering-list .icon i {
	font-size: 4.8rem;
	color: #02263a;
}
.catering-list .h05 {
	font-size: 1.7rem;
	line-height: 1.765;
	color: #05bca9;
	margin-bottom: 1.8rem;
}

/**
 * responsive:
 * catering
 * -
 */

@media only screen and (max-width:768px) {
	.catering-content {
		max-width: 600px;
	}
	.catering-list .feature {
		padding: 0 15px;
	}
}
@media only screen and (max-width:600px) {
	#catering h1 {
		font-size: 3.8rem;
	}
	.catering-list .feature {
		padding: 0 10px;
	}
}
@media only screen and (max-width:400px) {
	.catering-list .feature {
		padding: 0;
	}
}

/** 
 * ===================================================================
 * events section
 * ------------------------------------------------------------------- 
 */

#events {
	background: #ebecec;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
	padding-top: 8rem;
	padding-bottom: 1rem;
	color: white;
}
#events h1 {
	font-family: "Blackstock";
	font-size: 6.8rem;
	color: #595045;
	line-height: 1.25;
	margin-bottom: 1.2rem;
	letter-spacing: 0.3rem;
}
#events h5 {
	font-family: "Blackstock";
	font-size: 2.8rem;
	color: #02263a;
	line-height: 1.25;
	margin-bottom: 1.2rem;
	letter-spacing: 0.3rem;
}

#events .section-intro .lead {
	color: #a0926c;
	font-family: "unisansregular";
}
#events p {
	font-family: "unisansregular";
	font-size: 1.8rem;
	line-height: 1.8;
	color: #02263a;
}
.events-content {
	max-width: 1200px;
}
.events-list {
	margin-top: 1.2rem;
	text-align: center;
}
.events-list .feature {
	margin-bottom: 1.2rem;
	padding: 0 32px;
}
.events-list .icon {
	display: inline-block;
	margin-bottom: 2.1rem;
}
.events-list .icon i {
	font-size: 4.8rem;
	color: #02263a;
}
.events-list .h05 {
	font-size: 1.7rem;
	line-height: 1.765;
	color: #05bca9;
	margin-bottom: 1.8rem;
}

/**
 * responsive:
 * events
 * -
 */

@media only screen and (max-width:768px) {
	.events-content {
		max-width: 600px;
	}
	.events-list .feature {
		padding: 0 15px;
	}
}
@media only screen and (max-width:600px) {
	#events h1 {
		font-size: 3.8rem;
	}
	
	.events-list .feature {
		padding: 0 10px;
	}
}
@media only screen and (max-width:400px) {
	.events-list .feature {
		padding: 0;
	}
}

/** 
 * ===================================================================
 * features section
 * ------------------------------------------------------------------- 
 */

#features {
	background: #090909 url(../images/features-bg.jpg) no-repeat center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
	padding-top: 12rem;
	padding-bottom: 12rem;
	color: white;
}
#features .section-intro h1 {
	color: white;
}
#features .section-intro h5 {
	color: rgba(255, 255, 255, 0.5);
}
#features .section-intro p {
	color: rgba(255, 255, 255, 0.7);
}
.features-content {
	max-width: 1200px;
}
.features-list {
	margin-top: 1.2rem;
	text-align: left;
	font-size: 12px;
}
.features-list p {
	margin-top: 1.2rem;
	text-align: left;
	font-size: 12px;
	font-family: "unisansregular";
}
.features-list .feature {
	margin-bottom: 1.2rem;
	padding: 0 32px;
}
.features-list .icon {
	display: inline-block;
	margin-bottom: 2.1rem;
}
.features-list .icon i {
	font-size: 4.8rem;
}
.features-list .h05 {
	font-size: 1.7rem;
	line-height: 1.765;
	color: #a0926c;
	margin-bottom: 1.8rem;
	font-family: "Blackstock";
}

/**
 * responsive:
 * features
 * -
 */

@media only screen and (max-width:768px) {
	.features-content {
		max-width: 600px;
	}
	.features-list .feature {
		padding: 0 15px;
	}
}
@media only screen and (max-width:600px) {
	.features-list .feature {
		padding: 0 10px;
	}
}
@media only screen and (max-width:400px) {
	.features-list .feature {
		padding: 0;
	}
}


/** 
 * ===================================================================
 * pricing function packages section
 * ------------------------------------------------------------------- 
 */

#pricing {
	background: #595045;
	padding-top: 12rem;
	padding-bottom: 9.6rem;
}
#pricing h1{
	font-family: "Blackstock";
	font-size: 6.8rem;
	color: #fff;
	line-height: 1.25;
	margin-bottom: 1.2rem;
	letter-spacing: 0.3rem;
}
.pricing-content {
	margin-top: 6.6rem;
	max-width: 1280px;
}
.pricing-content .bgrid {
	margin-bottom: 3.6rem;
}
.pricing-content .price-block {
	background-color: #FFFFFF;
	border-radius: 5px;
	overflow: hidden;
	text-align: center;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}
.pricing-content .price-block .top-part,
.pricing-content .price-block .bottom-part {
	padding: 3.9rem 1.5rem;
}
.pricing-content .price-block .top-part {
	background: #02263a;
	color: #FFFFFF;
	padding-bottom: 2.4rem;
	position: relative;
}
.pricing-content .price-block .bottom-part {
	padding-top: 2.4rem;
	padding-left: 3rem;
	padding-right: 3rem;
}
.pricing-content .price-block .plan-title {
	color: #FFFFFF;
	padding-bottom: 2.4rem;
	margin-bottom: 1.2rem;
	font-size: 2.4rem;
	position: relative;
	font-family: "unisansregular";
}
.pricing-content .price-block .plan-title::after {
	display: block;
	background-color: rgba(255, 255, 255, 0.3);
	width: 80px;
	height: 1px;
	content: '\0020';
	position: absolute;
	left: 50%;
	bottom: 0;
	margin-left: -40px;
}
.pricing-content .price-block .plan-price {
	font-family: "raleway-bold", sans-serif;
	font-size: 5rem;
	line-height: 1;
	margin-bottom: .6rem;
}
.pricing-content .price-block .plan-price sup {
	font-size: 2.4rem;
	top: -1.5rem;
	margin-right: 3px;
}
.pricing-content .price-block .price-month {
	margin-bottom: 1.2rem;
	font-family: "raleway-bold", sans-serif;
	font-size: 1.6rem;
}
.pricing-content .price-block .price-meta {
	color: #000;
	line-height: 1.8rem;font-family: 'Fjalla One', sans-serif;
}
.pricing-content .price-block .button {
	color: #353F49;
	padding: 0 5rem;
	margin-left: auto;
	margin-right: auto;
}
.pricing-content .price-block .button:hover,
.pricing-content .price-block .button:focus {
	background: #58687b;
	color: #FFFFFF;
}
.pricing-content .price-block .features {
	list-style: none;
	font-family: "raleway-bold", sans-serif;
	font-size: 1.5rem;
	color: rgba(0, 0, 0, 0.4);
	margin: .6rem 0 1.8rem 0;
}
.pricing-content .price-block .features li {
	padding: .6rem 0;
	border-bottom: 1px solid #EAEAED;
}
.pricing-content .price-block .features li strong {
	color: #353F49;
	font-family: "raleway-bold", serif;
	margin-right: 5px;
}
.pricing-content .price-block .features li:last-child {
	border: none;
}
.pricing-content .primary .top-part {
	background: #05bca9;
}
.pricing-content .primary .top-part::before {
	content: attr(data-info);
	display: block;
	min-height: 48px;
	line-height: 48px;
	width: 75%;
	text-align: center;
	color: #FFFFFF;
	background: #38424e;
	font-family: "raleway-heavy", sans-serif;
	font-size: 1.2rem;
	text-transform: uppercase;
	letter-spacing: .15rem;
	position: absolute;
	bottom: -18px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	z-index: 500;
	border-radius: 5px;
}

/**
 * responsive:
 * pricing functions packages
 * -
 */

@media only screen and (max-width:1140px) {
	.pricing-content {
		max-width: 800px;
	}
	.pricing-content .bgrid {
		width: 50%;
		clear: none;
	}
	.pricing-content .bgrid:nth-child(2n+1) {
		clear: both;
	}
}
@media only screen and (max-width:600px) {
	#pricing h1{
		font-size: 3.8rem;
	}
	.pricing-content {
		max-width: 420px;
	}
	.pricing-content .bgrid {
		width: 100% !important;
		float: none !important;
		clear: both !important;
		margin-left: 0;
		margin-right: 0;
	}
}




/** 
 * ===================================================================
 * specials section
 * ------------------------------------------------------------------- 
 */

#specials {
	background: #f1f1ec url(../images/blackboard.jpg);
	padding-top: 6rem;
	padding-bottom: 6rem;
}
.specials-content {
	margin-top: 5.4rem;
	max-width: 1020px;
}
.specials-content .bgrid {
	padding: 0 30px;
}
#specials .button,
#specials button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
	display: inline-block;
	font-family: 'Amatic SC', cursive;
	font-size: 3.6rem;
	height: 5rem;
	line-height: 5rem;
	padding: 0 3rem;
	margin: 0 .3rem 1rem 0;
	color: #a0926c;
	background: none;
	text-decoration: none;
	cursor: pointer;
	text-align: center;
	white-space: nowrap;
	border: 2px solid #a0926c;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
#specials .button:hover,
#specials button:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
#cta .button:focus,
#cta button:focus,
input[type="submit"]:focus,
input[type="reset"]:focus,
input[type="button"]:focus {
	background: #a0926c;
	color: #fff;
	outline: 0;
}

/**
 * responsive:
 * specials
 * -
 */

@media only screen and (max-width:768px) {
	.specials-content {
		max-width: 650px;
	}
}
@media only screen and (max-width:480px) {
	.specials-content .bgrid {
		padding: 0 20px;
	}
}
@media only screen and (max-width:400px) {
	.specials-content .bgrid {
		padding: 0;
	}
}

/** 
 * ===================================================================
 * ad-section
 * ------------------------------------------------------------------- 
 */

.section-ads {
	margin-top: 4.8rem;
	padding-top: 6rem;
	max-width: 650px;
	border-top: 4px dotted #02263a;
	text-align: center;
}
.section-ads h2 a, .section-ads h2 a:visited {
	color: #252525;
}
.section-ads span {
	color: #0087cc;
}
.section-ads .button {
	background: #05bca9;
	color: #FFFFFF;
}
.section-ads .button:hover, .section-ads .button:focus {
	background: #05ad9c;
}


/** 
 * ===================================================================
 * discover section
 * ------------------------------------------------------------------- 
 */

#discover {
	background: #14181E url(../images/yellow-background.jpg);
	background-size: 100%;
	background-attachment: fixed;
	padding-top: 7.2rem;
	padding-bottom: 9rem;
	text-align: center;
	color: #FFFFFF;
}
.discover-content {
	max-width: 740px;
	margin: 0 auto;
	border-radius: 10px;
}
.discover-content p {
	color: rgba(255, 255, 255, 0.8);
}
.discover-content .stores {
	margin: 0;
	padding: 0;
	display: block;
}
.discover-content .stores li {
	padding: 0;
	display: inline-block;
}
.discover-content .stores li .button {
	background: #04a393;
	color: #FFFFFF;
	margin-right: 12px;
	display: block;
	line-height: 60px;
}
.discover-content .stores li .button:hover,
.discover-content .stores li .button:focus {
	background: #049485;
}
.discover-content .stores li .button i {
	font-size: 18px;
	line-height: inherit;
	margin-right: 8px;
}
.discover-content .stores li .button i.ion-social-windows {
	font-size: 15px;
}
.discover-content .stores li:last-child .button {
	margin-right: 0;
}

/**discover buttons */

#discover .button,
#discover button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
	display: inline-block;
	font-family: 'Fjalla One', sans-serif;
	font-size: 3.6rem;
	height: 5.5rem;
	line-height: 5rem;
	padding: 0 3rem;
	margin: 0 .3rem 1rem 0;
	background-color: #02263a;
	border-color: #02263a;
	text-decoration: none;
	cursor: pointer;
	text-align: center;
	white-space: nowrap;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
#discover .button:hover,
#discover button:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
.button:focus,
button:focus,
input[type="submit"]:focus,
input[type="reset"]:focus,
input[type="button"]:focus {
	background: #02263a;
	color: #FFFFFF;
	outline: 0;
}

#discover .button.button-primary,
button.button-primary,
input[type="submit"].button-primary,
input[type="reset"].button-primary,
input[type="button"].button-primary {
	background: #05bca9;
	color: #FFFFFF;
}

#discover .button.button-primary:hover,
#discover-button.button-primary:hover,
input[type="submit"].button-primary:hover,
input[type="reset"].button-primary:hover,
input[type="button"].button-primary:hover,
#discover .button.button-primary:focus,
#discover-button.button-primary:focus,
input[type="submit"].button-primary:focus,
input[type="reset"].button-primary:focus,
input[type="button"].button-primary:focus {
	background: #04998a;
}
#discover-button.full-width, #discover .button.full-width {
	width: 100%;
	margin-right: 0;
}
#discover-button.large, #discover .button.large {
	height: 5.5rem !important;
	line-height: 5rem !important;
	padding: 0rem 3rem !important;
	color: #fff;
}
#discover-button.stroke, #discover .button.stroke {
	background: transparent !important;
	border: 3px solid transparent;
	line-height: 4.4rem;
}
#discover-button::-moz-focus-inner, input::-moz-focus-inner {
	border: 0;
	padding: 0;
}

#discover-h1, #discover .h01 {
	font-family: 'Luckiest Guy', cursive;
	font-size: 4.1rem;
	line-height: 1.35;
	letter-spacing: 0.2rem;
	color: #02263a;
	margin-top: 20px;
}

/**
 * responsive:
 * discover
 * -
 */

@media only screen and (max-width:650px) {
	.discover-content {
		max-width: 650px;
	}
	.discover-content .stores li {
		display: block;
	}
	.discover-content .stores li .button {
		width: 300px;
		display: block;
		margin-left: auto !important;
		margin-right: auto !important;
		margin-bottom: 1.8rem;
	}
	.discover-content .stores li .button::before {
		display: none;
	}
}
@media only screen and (max-width:600px) {
	.discover-content .stores li .button {
		width: 70%;
	}
}
@media only screen and (max-width:400px) {
	.discover-content .stores li .button {
		width: 80%;
	}
	#discover-h1, #discover .h01 {
	font-size: 3.6rem;
	}
}

/** 
 * ===================================================================
 * panel section
 * ------------------------------------------------------------------- 
 */

#panel {
	background: #14181E url(../images/red-brick-wall.jpg);
	background-size: 100%;
	background-attachment: fixed;
	padding-top: 7.2rem;
	padding-bottom: 5rem;
	text-align: center;
	color: #FFFFFF;
}
.panel-content {
	max-width: 740px;
	margin: 0 auto;
	border-radius: 10px;
}
.panel-content p {
	color: rgba(255, 255, 255, 0.8);
}
.panel-content .stores {
	margin: 0;
	padding: 0;
	display: block;
}
.panel-content .stores li {
	padding: 0;
	display: inline-block;
}
.panel-content .stores li .button {
	background: #04a393;
	color: #FFFFFF;
	margin-right: 12px;
	display: block;
	line-height: 60px;
}
.panel-content .stores li .button:hover,
.panel-content .stores li .button:focus {
	background: #049485;
}
.panel-content .stores li .button i {
	font-size: 18px;
	line-height: inherit;
	margin-right: 8px;
}
.panel-content .stores li .button i.ion-social-windows {
	font-size: 15px;
}
.panel-content .stores li:last-child .button {
	margin-right: 0;
}

#panel-h1, #panel .h01 {
	font-family: 'Luckiest Guy', cursive;
	font-size: 4.1rem;
	line-height: 1.35;
	letter-spacing: 0.2rem;
	color: #fff;
	margin-top: 20px;
}

/**
 * responsive:
 * panel
 * -
 */

@media only screen and (max-width:650px) {
	.panel-content {
		max-width: 650px;
	}
	.panel-content .stores li {
		display: block;
	}
	.panel-content .stores li .button {
		width: 300px;
		display: block;
		margin-left: auto !important;
		margin-right: auto !important;
		margin-bottom: 1.8rem;
	}
	.panel-content .stores li .button::before {
		display: none;
	}
}
@media only screen and (max-width:600px) {
	.panel-content .stores li .button {
		width: 70%;
	}
}
@media only screen and (max-width:400px) {
	.panel-content .stores li .button {
		width: 80%;
	}
	#panel-h1, #panel .h01 {
	font-size: 3.6rem;
	}
}

/** 
 * ===================================================================
 * function panel section
 * ------------------------------------------------------------------- 
 */

#function {
	background: #02263a;
	background-size: 100%;
	background-attachment: fixed;
	padding-top: 7.2rem;
	padding-bottom: 9rem;
	text-align: center;
	color: #FFFFFF;
}
.function-content {
	max-width: 740px;
	margin: 0 auto;
	border-radius: 10px;
}
#function h1{
	font-family: 'Luckiest Guy', cursive;
	font-size: 4.1rem;
	line-height: 1.35;
	letter-spacing: 0.2rem;
	color: #fff;
}
#function p {
	color: #fff;
	font-family: 'Fjalla One', sans-serif;
	font-size: 2rem;
}
.function-content .stores {
	margin: 0;
	padding: 0;
	display: block;
}
.function-content .stores li {
	padding: 0;
	display: inline-block;
}
.function-content .stores li .button {
	background: #04a393;
	color: #FFFFFF;
	margin-right: 12px;
	display: block;
	line-height: 60px;
}
.function-content .stores li .button:hover,
.function-content .stores li .button:focus {
	background: #049485;
}
.function-content .stores li .button i {
	font-size: 18px;
	line-height: inherit;
	margin-right: 8px;
}
.function-content .stores li .button i.ion-social-windows {
	font-size: 15px;
}
.function-content .stores li:last-child .button {
	margin-right: 0;
}

#function-h1, #function .h01 {
	font-family: 'Luckiest Guy', cursive;
	font-size: 4.1rem;
	line-height: 1.35;
	letter-spacing: 0.2rem;
	color: #fff;
	margin-top: 20px;
}

/**
 * responsive:
 * function panel
 * -
 */

@media only screen and (max-width:650px) {
	.function-content {
		max-width: 650px;
	}
	.function-content .stores li {
		display: block;
	}
	.function-content .stores li .button {
		width: 300px;
		display: block;
		margin-left: auto !important;
		margin-right: auto !important;
		margin-bottom: 1.8rem;
	}
	.function-content .stores li .button::before {
		display: none;
	}
}
@media only screen and (max-width:600px) {
	.function-content .stores li .button {
		width: 70%;
	}
}
@media only screen and (max-width:400px) {
	.function-content .stores li .button {
		width: 80%;
	}
}

/** 
 * ===================================================================
 * shrove tuesday panel section
 * ------------------------------------------------------------------- 
 */

#shrove {
	background: #595045 url(../images/shrove-bg.png);
	background-size: 100%;
	background-attachment: fixed;
	padding-top: 15rem;
	padding-bottom: 15rem;
	text-align: center;
	color: #FFFFFF;
}
.shrove-content {
	max-width: 740px;
	margin: 0 auto;
	border-radius: 10px;
}
#shrove h1{
	font-size: 4.1rem;
	line-height: 1.35;
	letter-spacing: 0.2rem;
	color: #02263a;
}
#shrove h5 {
	color: #000;
	font-family: 'Luckiest Guy', cursive;
	font-size: 3rem;
}
#shrove p {
	color: #000;
	font-family: "unisansregular";
	font-size: 2rem;
}
.shrove-content .stores {
	margin: 0;
	padding: 0;
	display: block;
}
.shrove-content .stores li {
	padding: 0;
	display: inline-block;
}
.shrove-content .stores li .button {
	background: #04a393;
	color: #FFFFFF;
	margin-right: 12px;
	display: block;
	line-height: 60px;
}
.shrove-content .stores li .button:hover,
.shrove-content .stores li .button:focus {
	background: #049485;
}
.shrove-content .stores li .button i {
	font-size: 18px;
	line-height: inherit;
	margin-right: 8px;
}
.shrove-content .stores li .button i.ion-social-windows {
	font-size: 15px;
}
.shrove-content .stores li:last-child .button {
	margin-right: 0;
}

#shrove-h1, #shrove .h01 {
	font-family: 'Luckiest Guy', cursive;
	font-size: 4.1rem;
	line-height: 1.35;
	letter-spacing: 0.2rem;
	color: #fff;
	margin-top: 20px;
}

/**
 * responsive:
 * shrove tuesday panel
 * -
 */

@media only screen and (max-width:650px) {
	.shrove-content {
		max-width: 650px;
	}
	.shrove-content .stores li {
		display: block;
	}
	.shrove-content .stores li .button {
		width: 300px;
		display: block;
		margin-left: auto !important;
		margin-right: auto !important;
		margin-bottom: 1.8rem;
	}
	.shrove-content .stores li .button::before {
		display: none;
	}
}
@media only screen and (max-width:600px) {
	.shrove-content .stores li .button {
		width: 70%;
	}
}
@media only screen and (max-width:400px) {
	.shrove-content .stores li .button {
		width: 80%;
	}
}

/** 
 * ===================================================================
 * Map section
 * ------------------------------------------------------------------- 
 */

#map {
	background-size: 100%;
	background-attachment: fixed;
}

/** 
 * ===================================================================
 * social section
 * ------------------------------------------------------------------- 
 */

#social {
	background: #ebecec;
	padding-top: 4.2rem;
	padding-bottom: 3rem;
	text-align: center;
	color: #FFFFFF;
}
.social-content {
	max-width: 740px;
	margin: 0 auto;
}
.social-content h1 {
	color: #FFFFFF;
	margin-bottom: .6rem;
}
.social-content p {
	color: rgba(255, 255, 255, 0.8);
}
.social-content .stores {
	margin: 0;
	padding: 0;
	display: block;
}
.social-content .stores li {
	padding: 0;
	display: inline-block;
}
.social-content .stores li .button {
	background: #04a393;
	color: #FFFFFF;
	margin-right: 12px;
	display: block;
	line-height: 60px;
}
.social-content .stores li .button:hover,
.social-content .stores li .button:focus {
	background: #049485;
}
.social-content .stores li .button i {
	font-size: 18px;
	line-height: inherit;
	margin-right: 8px;
}
.social-content .stores li .button i.ion-social-windows {
	font-size: 15px;
}
.social-content .stores li:last-child .button {
	margin-right: 0;
}

/**
 * responsive:
 * social
 * -
 */

@media only screen and (max-width:650px) {
	.social-content {
		max-width: 650px;
	}
	.social-content .stores li {
		display: block;
	}
	.social-content .stores li .button {
		width: 300px;
		display: block;
		margin-left: auto !important;
		margin-right: auto !important;
		margin-bottom: 1.8rem;
	}
	.social-content .stores li .button::before {
		display: none;
	}
}
@media only screen and (max-width:600px) {
	.social-content .stores li .button {
		width: 70%;
	}
}
@media only screen and (max-width:400px) {
	.social-content .stores li .button {
		width: 80%;
	}
}

/** 
 * ===================================================================
 * call-to-action Uber section
 * ------------------------------------------------------------------- 
 */

#cta {
	background: #595045;
	padding-top: 7.2rem;
	padding-bottom: 9rem;
	text-align: center;
	color: #FFFFFF;
}
.cta-content {
	max-width: 740px;
	margin: 0 auto;
}
.cta-content h1 {
	font-family: "Blackstock";
	font-size: 4.2rem;
	color: #FFFFFF;
	line-height: 6.2rem;
	margin-bottom: 3.6rem;
	letter-spacing: 0.3rem;
}
.cta-content p {
	color: rgba(255, 255, 255, 0.8);
	font-family: "unisansregular";
}
.cta-content .stores {
	margin: 0;
	padding: 0;
	display: block;
}
.cta-content .stores li {
	padding: 0;
	display: inline-block;
}
.cta-content .stores li .button {
	margin-right: 12px;
	display: block;
	line-height: 60px;
}
.cta-content .stores li .button:hover,
.cta-content .stores li .button:focus {
	background: #f1f1ec;
}
.cta-content .stores li .button i {
	font-size: 18px;
	line-height: inherit;
	margin-right: 8px;
}
.cta-content .stores li .button i.ion-social-windows {
	font-size: 15px;
}
.cta-content .stores li:last-child .button {
	margin-right: 0;
}

#cta .button,
#cta button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
	display: inline-block;
	font-family: 'Amatic SC', cursive;
	font-size: 3.6rem;
	height: 5rem;
	line-height: 5rem;
	padding: 0 3rem;
	margin: 0 .3rem 1rem 0;
	color: #a0926c;
	background: none;
	text-decoration: none;
	cursor: pointer;
	text-align: center;
	white-space: nowrap;
	border: 2px solid #a0926c;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
#cta .button:hover,
#cta button:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
#cta .button:focus,
#cta button:focus,
input[type="submit"]:focus,
input[type="reset"]:focus,
input[type="button"]:focus {
	background: #a0926c;
	color: #252525;
	outline: 0;
}

/**
 * responsive:
 * cta uber section
 * -
 */

@media only screen and (max-width:650px) {
	.cta-content {
		max-width: 650px;
	}
	.cta-content .stores li {
		display: block;
	}
	.cta-content .stores li .button {
		width: 300px;
		display: block;
		margin-left: auto !important;
		margin-right: auto !important;
		margin-bottom: 1.8rem;
	}
	.cta-content .stores li .button::before {
		display: none;
	}
}
@media only screen and (max-width:600px) {
	.cta-content .stores li .button {
		width: 70%;
	}
}
@media only screen and (max-width:400px) {
	.cta-content .stores li .button {
		width: 80%;
	}
	.cta-content h1 {
	font-size: 3.2rem;
	}
}

/** 
 * ===================================================================
 * call-to-action Online Booking
 * ------------------------------------------------------------------- 
 */

#ctabook {
	background: #fff url(../images/book-background.jpg) no-repeat;
	background-attachment: fixed;
	background-size: 100%;
	padding-top: 7.2rem;
	padding-bottom: 9rem;
	text-align: center;
	color: #FFFFFF;
}
.ctabook-content {
	max-width: 740px;
	margin: 0 auto;
}
.ctabook-content h1 {
	font-family: "Blackstock";
	font-size: 4.2rem;
	color: #000;
	line-height: 6.2rem;
	margin-bottom: 3.6rem;
	letter-spacing: 0.3rem;
}
.ctabook-content p {
	color: #000;
	font-family: "unisansregular";
}
.ctabook-content .stores {
	margin: 0;
	padding: 0;
	display: block;
}
.ctabook-content .stores li {
	padding: 0;
	display: inline-block;
}
.ctabook-content .stores li .button {
	margin-right: 12px;
	display: block;
	line-height: 60px;
}
.ctabook-content .stores li .button:hover,
.ctabook-content .stores li .button:focus {
	background: #f1f1ec;
}
.ctabook-content .stores li .button i {
	font-size: 18px;
	line-height: inherit;
	margin-right: 8px;
}
.ctabook-content .stores li .button i.ion-social-windows {
	font-size: 15px;
}
.ctabook-content .stores li:last-child .button {
	margin-right: 0;
}

#ctabook .button,
#ctabook button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
	display: inline-block;
	font-family: 'Amatic SC', cursive;
	font-size: 3.6rem;
	height: 5rem;
	line-height: 5rem;
	padding: 0 3rem;
	margin: 0 .3rem 1rem 0;
	color: orange;
	background: none;
	text-decoration: none;
	cursor: pointer;
	text-align: center;
	white-space: nowrap;
	border: 2px solid orange;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
#ctabook .button:hover,
#ctabook button:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
#ctabook .button:focus,
#ctabook button:focus,
input[type="submit"]:focus,
input[type="reset"]:focus,
input[type="button"]:focus {
	background: orange;
	color: #252525;
	outline: 0;
}

/**
 * responsive:
 * cta uber section
 * -
 */

@media only screen and (max-width:650px) {
	.ctabook-content {
		max-width: 650px;
	}
	.ctabook-content .stores li {
		display: block;
	}
	.ctabook-content .stores li .button {
		width: 300px;
		display: block;
		margin-left: auto !important;
		margin-right: auto !important;
		margin-bottom: 1.8rem;
	}
	.ctabook-content .stores li .button::before {
		display: none;
	}
}
@media only screen and (max-width:600px) {
	.ctabook-content .stores li .button {
		width: 70%;
	}
}
@media only screen and (max-width:400px) {
	.ctabook-content .stores li .button {
		width: 80%;
	}
	.ctabook-content h1 {
	font-size: 3.2rem;
	}
}

/** 
 * ===================================================================
 * call-to-action Competiton section
 * ------------------------------------------------------------------- 
 */

#ctacomp {
	background: url(../images/comp-background.jpg) no-repeat center center fixed; 
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
	padding-top: 7.2rem;
	padding-bottom: 9rem;
	text-align: center;
	color: #FFFFFF;
}
.ctacomp-content {
	max-width: 740px;
	margin: 0 auto;
}
.ctacomp-content h1 {
	font-family: "Blackstock";
	font-size: 4.2rem;
	color: #000;
	line-height: 6.2rem;
	margin-bottom: 3.6rem;
	letter-spacing: 0.3rem;
}
.ctacomp-content p {
	color: #000;
	font-family: "unisansregular";
}
.ctacomp-content .stores {
	margin: 0;
	padding: 0;
	display: block;
}
.ctacomp-content .stores li {
	padding: 0;
	display: inline-block;
}
.ctacomp-content .stores li .button {
	margin-right: 12px;
	display: block;
	line-height: 60px;
}
.ctacomp-content .stores li .button:hover,
.ctacomp-content .stores li .button:focus {
	background: #f1f1ec;
}
.ctacomp-content .stores li .button i {
	font-size: 18px;
	line-height: inherit;
	margin-right: 8px;
}
.ctacomp-content .stores li .button i.ion-social-windows {
	font-size: 15px;
}
.ctacomp-content .stores li:last-child .button {
	margin-right: 0;
}

#ctacomp .button,
#ctacomp button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
	display: inline-block;
	font-family: 'Amatic SC', cursive;
	font-size: 3.6rem;
	height: 5rem;
	line-height: 5rem;
	padding: 0 3rem;
	margin: 0 .3rem 1rem 0;
	color: orange;
	background: none;
	text-decoration: none;
	cursor: pointer;
	text-align: center;
	white-space: nowrap;
	border: 2px solid orange;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
#ctacomp .button:hover,
#ctacomp button:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
#ctacomp .button:focus,
#ctacomp button:focus,
input[type="submit"]:focus,
input[type="reset"]:focus,
input[type="button"]:focus {
	background: orange;
	color: #252525;
	outline: 0;
}

/**
 * responsive:
 * cta uber section
 * -
 */

@media only screen and (max-width:650px) {
	.ctacomp-content {
		max-width: 650px;
	}
	.ctacomp-content .stores li {
		display: block;
	}
	.ctacomp-content .stores li .button {
		width: 300px;
		display: block;
		margin-left: auto !important;
		margin-right: auto !important;
		margin-bottom: 1.8rem;
	}
	.ctacomp-content .stores li .button::before {
		display: none;
	}
}
@media only screen and (max-width:600px) {
	.ctacomp-content .stores li .button {
		width: 70%;
	}
}
@media only screen and (max-width:400px) {
	.ctacomp-content .stores li .button {
		width: 80%;
	}
	.ctacomp-content h1 {
	font-size: 3.2rem;
	}
}



/** 
 * ===================================================================
 * birthday parties
 * ------------------------------------------------------------------- 
 */

#birthday {
	background: #595045 url(../images/party.jpg) no-repeat fixed;
	min-height: 500px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
	padding-top: 9.2rem;
	padding-bottom: 9rem;
	text-align: center;
}
.birthday-content {
	max-width: 740px;
	margin: 0 auto;
}
.birthday-content h1 {
	font-family: "Blackstock";
	font-size: 4.2rem;
	color: #fbf5e0;
	line-height: 6.2rem;
	margin-bottom: 3.6rem;
	letter-spacing: 0.3rem;
}
.birthday-content p {
	color: #fbf5e0;
	font-family: "unisansregular";
	font-weight: bold;
}
.birthday-content .stores {
	margin: 0;
	padding: 0;
	display: block;
}
.birthday-content .stores li {
	padding: 0;
	display: inline-block;
}
.birthday-content .stores li .button {
	margin-right: 12px;
	display: block;
	line-height: 60px;
}
.birthday-content .stores li .button:hover,
.birthday-content .stores li .button:focus {
	background: #f1f1ec;
}
.birthday-content .stores li .button i {
	font-size: 18px;
	line-height: inherit;
	margin-right: 8px;
}
.birthday-content .stores li .button i.ion-social-windows {
	font-size: 15px;
}
.birthday-content .stores li:last-child .button {
	margin-right: 0;
}

#birthday .button,
#birthday button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
	display: inline-block;
	font-family: 'Amatic SC', cursive;
	font-size: 3.6rem;
	height: 5rem;
	line-height: 5rem;
	padding: 0 3rem;
	margin: 0 .3rem 1rem 0;
	color: deeppink;
	background: none;
	text-decoration: none;
	cursor: pointer;
	text-align: center;
	white-space: nowrap;
	border: 2px solid deeppink;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
#birthday .button:hover,
#birthday button:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
#birthday .button:focus,
#birthday button:focus,
input[type="submit"]:focus,
input[type="reset"]:focus,
input[type="button"]:focus {
	background: deeppink;
	color: #fff;
	outline: 0;
}

/**
 * responsive:
 * birthday parties section
 * -
 */
@media only screen and (max-width:1200px) {
	#birthday {
	background: #595045 url(../images/party.jpg) no-repeat cover;
}
}



@media only screen and (max-width:650px) {
	.birthday-content {
		max-width: 650px;
	}
	.birthday-content .stores li {
		display: block;
	}
	.birthday-content .stores li .button {
		width: 300px;
		display: block;
		margin-left: auto !important;
		margin-right: auto !important;
		margin-bottom: 1.8rem;
	}
	.birthday-content .stores li .button::before {
		display: none;
	}
}
@media only screen and (max-width:600px) {
	.birthday-content .stores li .button {
		width: 70%;
	}
}
@media only screen and (max-width:400px) {
	.birthday-content .stores li .button {
		width: 80%;
	}
	.birthday-content h1 {
	font-size: 3.2rem;
	}
}

/** 
 * ===================================================================
 * about section
 * ------------------------------------------------------------------- 
 */

#about {
	background: #FFF;
	padding-top: 12rem;
	padding-bottom: 12rem;
}
.about-content {
	margin-top: 5.4rem;
	max-width: 1020px;
}
#about-content .bgrid {
	padding: 0 30px;
}
#about .section-intro h1 {
	font-family: "Blackstock";
	font-size: 4.8rem;
	color: #02263a;
	line-height: 1.25;
	margin-bottom: 1.2rem;
	letter-spacing: 0.3rem;
}
#about .section-intro .lead {
	color: #02263a;
	font-family: "unisansregular";
}
#about p.lead {
	font-family: "unisansregular";
	font-size: 1.8rem;
	line-height: 1.8;
	color: #02263a;
}

/**
 * responsive:
 * about
 * -
 */

@media only screen and (max-width:768px) {
	.about-content {
		max-width: 650px;
	}
}
@media only screen and (max-width:480px) {
	.about-content .bgrid {
		padding: 0 20px;
	}
}
@media only screen and (max-width:400px) {
	.about-content .bgrid {
		padding: 0;
	}
	#about .section-intro h1 {
	font-size: 3.5rem;
	line-height: 1.25;
	margin-bottom: 1.2rem;
	letter-spacing: 0.3rem;
	}
}

/** 
 * ===================================================================
 * booking section
 * ------------------------------------------------------------------- 
 */

#booking {
	background: #f1f1ec;
	padding-top: 20rem;
	padding-bottom: 12rem;
}
.booking-content {
	margin-top: 5.4rem;
	max-width: 1020px;
}
.booking-content .bgrid {
	padding: 0 30px;
}

.booking-content h3{
	font-size: 16px;
}

.booking-content p{
	color: #000;
}

/**
 * responsive:
 * booking
 * -
 */

@media only screen and (max-width:768px) {
	.booking-content {
		max-width: 650px;
	}
}
@media only screen and (max-width:480px) {
	.booking-content .bgrid {
		padding: 0 20px;
	}
}
@media only screen and (max-width:400px) {
	.booking-content .bgrid {
		padding: 0;
	}
}

/** 
 * ===================================================================
 * menu section
 * ------------------------------------------------------------------- 
 */

#menu {
	background: #f1f1ec;
	padding-top: 9rem;
	padding-bottom: 12rem;
}
.menu-content {
	margin-top: 5.4rem;
	max-width: 1020px;
}
.menu-content .bgrid {
	padding: 0 30px;
}

.menu-content h3{
	font-size: 16px;
}

.menu-content p{
	color: #000;
}

#menu .container{
	width: 100%;
	margin: 0 auto;
	text-align: center;
}
#menu ul.tabs{
	margin: 0px;
	padding: 0px;
	list-style: none;
}
#menu ul.tabs li{
	background: none;
	color: #222;
	display: inline-block;
	padding: 15px 30px;
	cursor: pointer;
	font-family: "unisansregular";
}
#menu ul.tabs li.current{
	background: #ededed;
	color: #222;
	font-family: "Blackstock";
}
#menu .tab-content{
	display: none;
	background: #ededed;
	padding: 15px;
}
#menu .tab-content.current{
	display: inherit;
}

/**
 * responsive:
 * menu
 * -
 */

@media only screen and (max-width:768px) {
	.menu-content {
		max-width: 650px;
	}
}
@media only screen and (max-width:480px) {
	.menu-content .bgrid {
		padding: 0 20px;
	}
}
@media only screen and (max-width:400px) {
	.menu-content .bgrid {
		padding: 0;
	}
}

/** 
 * ===================================================================
 * kids menu section
 * ------------------------------------------------------------------- 
 */

#kidsmenu {
	background-image: url(../images/blackboard.jpg);
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
	padding-top: 12rem;
	padding-bottom: 12rem;
	color: white;
}
#kidsmenu h1 {
	font-family: 'Abril Fatface', cursive;
	font-size: 6.8rem;
	color: #595045;
	line-height: 1.25;
	margin-bottom: 1.2rem;
	letter-spacing: 0.3rem;
}

#kidsmenu h2 {
	font-family: 'Abril Fatface', cursive;
	font-size: 24px;
	line-height: 1.50;
	margin-bottom: 1.2rem;
	letter-spacing: 0.5rem;
	color: antiquewhite;
}

#kidsmenu h5 {
	font-family: 'Abril Fatface', cursive;
	font-size: 2.8rem;
	color: #02263a;
	line-height: 1.25;
	margin-bottom: 1.2rem;
	letter-spacing: 0.3rem;
}

#kidsmenu .section-intro .lead {
	color: #a0926c;
	font-family: "unisansregular";
}
#kidsmenu p {
	font-family: "unisansregular";
	font-size: 14px;
	line-height: 1.8;
	color: #fff;
}
.kidsmenu-content {
	max-width: 1200px;
}
.kidsmenu-list {
	margin-top: 1.2rem;
	text-align: center;
}
.kidsmenu-list .feature {
	margin-bottom: 1.2rem;
	padding: 0 32px;
}
.kidsmenu-list .icon {
	display: inline-block;
	margin-bottom: 2.1rem;
}
.kidsmenu-list .icon i {
	font-size: 4.8rem;
	color: #02263a;
}
.kidsmenu-list .h05 {
	font-family: "Blackstock";
	font-size: 1.7rem;
	line-height: 1.765;
	color: #a04480;
	margin-bottom: 1.8rem;
}

.kidsmenu-list .h06 {
	font-family: "Blackstock";
	font-size: 1.7rem;
	line-height: 1.765;
	color: #fff;
	margin-bottom: 1.8rem;
}

/**
 * responsive:
 * kids menu
 * -
 */

@media only screen and (max-width:768px) {
	.kidsmenu-content {
		max-width: 600px;
	}
	.kidsmenu-list .feature {
		padding: 0 15px;
	}
}
@media only screen and (max-width:600px) {
	.kidsmenu-list .feature {
		padding: 0 10px;
	}
}
@media only screen and (max-width:400px) {
	.kidsmenu-list .feature {
		padding: 0;
	}
}

/** 
 * ===================================================================
 * download menu section
 * ------------------------------------------------------------------- 
 */

#downloadmenu {
	background: #14181E url("../images/yellowbg.jpg");
	background-size: 100%;
	background-attachment: fixed;
	padding-top: 7.2rem;
	padding-bottom: 9rem;
	text-align: center;
	color: #FFFFFF;
}
.downloadmenu-content {
	max-width: 740px;
	margin: 0 auto;
	border-radius: 10px;
}
.downloadmenu-content p {
	color: rgba(255, 255, 255, 0.8);
}
.downloadmenu-content .stores {
	margin: 0;
	padding: 0;
	display: block;
}
.downloadmenu-content .stores li {
	padding: 0;
	display: inline-block;
}
.downloadmenu-content .stores li .button {
	background: #04a393;
	color: #FFFFFF;
	margin-right: 12px;
	display: block;
	line-height: 60px;
}
.downloadmenu-content .stores li .button:hover,
.downloadmenu-content .stores li .button:focus {
	background: #049485;
}
.downloadmenu-content .stores li .button i {
	font-size: 18px;
	line-height: inherit;
	margin-right: 8px;
}
.downloadmenu-content .stores li .button i.ion-social-windows {
	font-size: 15px;
}
.downloadmenu-content .stores li:last-child .button {
	margin-right: 0;
}

/**downloadmenu buttons */

#downloadmenu .button,
#downloadmenu button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
	display: inline-block;
	font-family: 'Fjalla One', sans-serif;
	font-size: 3.6rem;
	height: 5.5rem;
	line-height: 5rem;
	padding: 0 3rem;
	margin: 0 .3rem 1rem 0;
	background-color: #fff;
	border-color: #fff;
	text-decoration: none;
	cursor: pointer;
	text-align: center;
	white-space: nowrap;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
#downloadmenu .button:hover,
#downloadmenu button:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
.button:focus,
button:focus,
input[type="submit"]:focus,
input[type="reset"]:focus,
input[type="button"]:focus {
	background: #02263a;
	color: #FFFFFF;
	outline: 0;
}

#downloadmenu .button.button-primary,
button.button-primary,
input[type="submit"].button-primary,
input[type="reset"].button-primary,
input[type="button"].button-primary {
	background: #05bca9;
	color: #FFFFFF;
}

#downloadmenu .button.button-primary:hover,
#downloadmenu-button.button-primary:hover,
input[type="submit"].button-primary:hover,
input[type="reset"].button-primary:hover,
input[type="button"].button-primary:hover,
#downloadmenu .button.button-primary:focus,
#downloadmenu-button.button-primary:focus,
input[type="submit"].button-primary:focus,
input[type="reset"].button-primary:focus,
input[type="button"].button-primary:focus {
	background: #04998a;
}
#downloadmenu-button.full-width, #downloadmenu .button.full-width {
	width: 100%;
	margin-right: 0;
}
#downloadmenu-button.large, #downloadmenu .button.large {
	height: 5.5rem !important;
	line-height: 5rem !important;
	padding: 0rem 3rem !important;
	color: #fff;
}
#downloadmenu-button.stroke, #downloadmenu .button.stroke {
	background: transparent !important;
	border: 3px solid transparent;
	line-height: 4.4rem;
}
#downloadmenu::-moz-focus-inner, input::-moz-focus-inner {
	border: 0;
	padding: 0;
}

#downloadmenu-h1, #downloadmenu .h01 {
	font-family: 'Luckiest Guy', cursive;
	font-size: 4.1rem;
	line-height: 1.35;
	letter-spacing: 0.2rem;
	color: #02263a;
	margin-top: 20px;
}

/**
 * responsive:
 * download menu
 * -
 */

@media only screen and (max-width:650px) {
	.downloadmenu-content {
		max-width: 650px;
	}
	.downloadmenu-content .stores li {
		display: block;
	}
	.downloadmenu-content .stores li .button {
		width: 300px;
		display: block;
		margin-left: auto !important;
		margin-right: auto !important;
		margin-bottom: 1.8rem;
	}
	.downloadmenu-content .stores li .button::before {
		display: none;
	}
}
@media only screen and (max-width:600px) {
	.downloadmenu-content .stores li .button {
		width: 70%;
	}
}
@media only screen and (max-width:400px) {
	.downloadmenu-content .stores li .button {
		width: 80%;
	}
}


/** 
 * ===================================================================
 * contact section
 * ------------------------------------------------------------------- 
 */

#contactus {
	background: #f1f1ec;
	padding-top: 20rem;
	padding-bottom: 12rem;
}
.contactus-content {
	margin-top: 5.4rem;
	max-width: 1020px;
}
.contactus-content .bgrid {
	padding: 0 30px;
}

.contactus-content h3{
	font-size: 16px;
}

.contactus-content p{
	color: #000;
}

/**
 * responsive:
 * contactus
 * -
 */

@media only screen and (max-width:768px) {
	.contactus-content {
		max-width: 650px;
	}
}
@media only screen and (max-width:480px) {
	.contactus-content .bgrid {
		padding: 0 20px;
	}
}
@media only screen and (max-width:400px) {
	.contactus-content .bgrid {
		padding: 0;
	}
}



/** 
 * ===================================================================
 * form section
 * ------------------------------------------------------------------- 
 */

form {
	margin-bottom: 30px;
}

fieldset {
	margin: 0 0 30px 0;
	padding: 0;
	border: none;
}

input,
.form .button {
	-webkit-font-smoothing: antialiased;
}

input[type="text"],
input[type="password"],
input[type="email"],
textarea,
select {
	display: block;
	padding: 18px 20px;
	margin: 0 0 12px 0;
	border: 0;
	outline: none;
	vertical-align: middle;
	color: #000;
	font-family: "Montserrat", sans-serif;
	font-size: 15px;
	line-height: 24px;
	border-radius: 3px;
	max-width: 100%;

}

textarea {
	min-height: 252px;
}

input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
select:focus,
textarea:focus {
	color: #000000;
	background: #FFFFFF;
}

.form .button,
.form .button:visited,
.form button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
	display: inline-block;
	font: 16px/30px "Montserrat", sans-serif;
	padding: 9px 16px;
	margin: 0 3px 6px 0;
	background: #595045;
	color: #fff;
	text-decoration: none;
	cursor: pointer;
	height: auto;
	text-align: center;
	border: none;
	-webkit-appearance: none;
	-webkit-font-smoothing: inherit;
	border-radius: 3px;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.form .button:hover,
.form button:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover {
	color: #FFFFFF;
	background: #a0926c;
}

label,
legend {
	font: 15px/30px "Montserrat", sans-serif;
	margin: 12px 0;
	color: #252525;
	display: block;
}

label span,
legend span {
	color: #000;
	font: 16px/30px "Montserrat", sans-serif;
}

input[type="checkbox"],
input[type="radio"] {
	font-size: 15px;
	color: #575859;
}

input[type="checkbox"] {
	display: inline;
}

/* contact form */
#contact form {
	margin-top: 12px;
	margin-bottom: 30px;
}

#contact form div {
	position: relative;
}

#contact form div:before,
#contact form div:after {
	content: "";
	display: table;
}

#contact form div:after {
	clear: both;
}

#contact form div label {
	font: 11px/24px 'Muli', sans-serif;
	position: absolute;
	bottom: 3px;
	right: 6px;
	border-radius: 3px;
	text-transform: uppercase;
	letter-spacing: 1px;
	padding: 0 20px;
	color: #e64e04;
}

input[type="text"],
input[type="password"],
input[type="email"],
#contact textarea,
#contact select {
	margin-bottom: 45px;
	width: 460px;
}

#contact button.submitform {
	font: 15px/30px "Montserrat", sans-serif;
	text-transform: uppercase;
	letter-spacing: 2px;
	height: 60px;
	display: inline-block;
	padding: 15px 30px;
	width: 100%;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

#message-warning,
#message-success {
	display: none;
	border-radius: 3px;
	padding: 24px;
	margin-bottom: 36px;
	width: 100%;
	text-align: center;
}

#message-warning {
	color: #e64e04;
}

#message-success {
	color: #0087cc;
}

#message-warning i,
#message-success i {
	margin-right: 10px;
}

/* form loader */
#submit-loader {
	display: none;
	position: relative;
	left: 0;
	top: 18px;
	width: 100%;
	text-align: center;
}

#submit-loader .text-loader {
	display: none;
	font: 14px/30px "Montserrat", sans-serif;
	color: #FFFFFF;
	letter-spacing: 3px;
	text-transform: uppercase;
}

.oldie #submit-loader .s-loader {
	display: none;
}

.oldie #submit-loader .text-loader {
	display: block;
}

@media only screen and (max-width:768px) {
	input[type="text"],
	input[type="password"],
	input[type="email"],
	#contact textarea,
	#contact select {
	margin-bottom: 45px;
	width: 370px;
}
textarea {
	min-height: 252px;
	width: 370px;
}
}

@media only screen and (max-width:468px) {
	input[type="text"],
	input[type="password"],
	input[type="email"],
	#contact textarea,
	#contact select {
	margin-bottom: 45px;
	width: 270px;
}
	textarea {
	min-height: 252px;
	width: 270px;
}
	
}

@media only screen and (max-width:336px) {
	input[type="text"],
	input[type="password"],
	input[type="email"],
	#contact textarea,
	#contact select {
	margin-bottom: 45px;
	width: 230px;
}
	textarea {
	min-height: 252px;
	width: 230px;
}
	
}

@media only screen and (max-width:275px) {
	input[type="text"],
	input[type="password"],
	input[type="email"],
	#contact textarea,
	#contact select {
	margin-bottom: 45px;
	width: 170px;
}
	textarea {
	min-height: 252px;
	width: 170px;
}
	
}



/** 
 * ===================================================================
 * footer
 * ------------------------------------------------------------------- 
 */

footer {
	padding-bottom: 3rem;
	font-size: 1.5rem;
	line-height: 2.7rem;
	font-family: "unisansregular";
	color: #465166;
	background: #000;
}
footer a, footer a:visited {
	color: #465166;
}
footer a:hover, footer a:focus {
	color: #000;
}
footer h4 {
	border-bottom: 1px solid rgba(255, 255, 255, 0.03);
	padding-bottom: 1.2rem;
	margin-bottom: 1.2rem;
	color: #02263a;
}
footer ul {
	margin-left: 0;
}
footer ul li {
	padding-left: 0;
}
.footer-main {
	padding-top: 6.6rem;
	padding-bottom: 4.2rem;
	background: #fbf5e0;
}
.footer-main ul {
	font-size: 1.5rem;
}
.footer-main ul li {
	font-family: "raleway-bold", sans-serif;
	list-style: none;
}
.footer-main ul a, .footer-main ul a:visited {
	color: #465166;
}
.footer-main ul a:hover, .footer-main ul a:focus {
	color: #02263a;
}
.footer-main .footer-logo {
	width: 162px;
	height: 39px;
	background: url("../images/footer-logo.png") no-repeat center;
	background-size: 162px 39px;
	margin: -.6rem 0 2.1rem -.3rem;
	display: block;
}
.footer-main .footer-subscribe p {
	margin-bottom: 1.2rem;
}
.footer-main .footer-subscribe .subscribe-form #mc-form {
	padding: 0;
}
.footer-main .footer-subscribe .subscribe-form input[type="email"] {
	padding: .6rem 2rem;
	border-radius: 5px;
	border: none;
	width: 100%;
	font-family: "raleway-regular", sans-serif;
	color: #bababa;
	margin-bottom: 1.8rem;
}
.footer-main .footer-subscribe .subscribe-form input[type="submit"] {
	display: none;
}
.footer-main .footer-subscribe .subscribe-form .subscribe-message {
	font-family: "raleway-bold", sans-serif;
	color: #FFFFFF;
}
.footer-main .footer-subscribe .subscribe-form .subscribe-message i {
	color: #ff7b29;
	margin-right: 5px;
}
.footer-main .footer-subscribe .subscribe-form ::-webkit-input-placeholder {
	color: #545454;
}
.footer-main .footer-subscribe .subscribe-form :-moz-placeholder {
	/* Firefox 18- */
	color: #545454;
}
.footer-main .footer-subscribe .subscribe-form ::-moz-placeholder {
	/* Firefox 19+ */
	color: #545454;
}
.footer-main .footer-subscribe .subscribe-form :-ms-input-placeholder {
	color: #545454;
}
.footer-main .footer-subscribe .subscribe-form .placeholder {
	color: #545454 !important;
}
.footer-bottom {
	margin-top: 3rem;
	text-align: center;
}
.footer-bottom .copyright span {
	display: inline-block;
}
.footer-bottom .copyright span::after {
	content: "|";
	display: inline-block;
	padding: 0 1rem 0 1.2rem;
	color: rgba(255, 255, 255, 0.1);
}
.footer-bottom .copyright span:last-child::after {
	display: none;
}

/**
 * responsive:
 * footer
 * -
 */

@media only screen and (max-width:768px) {
	.footer-main .footer-logo {
		margin-left: auto;
		margin-right: auto;
		width: 162px;
		height: 39px;
		background: url("../images/footer-logov2.png") no-repeat center;
		background-size: 162px 39px;
		display: block;
	}
	.footer-main .footer-info {
		text-align: center;
	}
	
}
@media only screen and (max-width:600px) {
	.footer-main .row {
		max-width: 420px;
	}
	.footer-main .footer-subscribe {
		text-align: center;
	}
	.footer-main .subscribe-form form input[type="email"] {
		margin-left: auto !important;
		margin-right: auto !important;
		text-align: center;
	}
	.footer-bottom {
		padding-bottom: .6rem;
	}
	.footer-bottom .copyright span {
		display: block;
	}
	.footer-bottom .copyright span::after {
		display: none;
	}
}
@media only screen and (max-width:400px) {
	.footer-main .site-links, .footer-main .social-links {
		text-align: center;
	}
	.footer-main .site-links h4, .footer-main .social-links h4 {
		border: none;
	}
	.footer-main ul {
		width: 80%;
		display: block;
		margin-left: auto;
		margin-right: auto;
	}
	.footer-main ul li a {
		display: block;
		border-bottom: 1px solid rgba(255, 255, 255, 0.03);
		padding: .6rem 0;
	}
	.footer-main ul li:first-child a {
		border-top: 1px solid rgba(255, 255, 255, 0.03);
	}
}

/** 
 * ===================================================================
 * modal section
 * ------------------------------------------------------------------- 
 */

/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
    margin: 15% auto; /* 15% from the top and centered */
    padding: 20px;
    width: 100%; /* Could be more or less, depending on screen size */
}

/* The Close Button */
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/**
 * responsive:
 * modal
 * -
 */

@media only screen and (max-width:768px) {
	.modal-content {
    margin: 25% auto; /* 15% from the top and centered */
    padding: 20px;
    width: 100%; /* Could be more or less, depending on screen size */
}
}

@media only screen and (max-width:600px) {
	.modal-content {
    margin: 35% auto; /* 15% from the top and centered */
    padding: 20px;
    width: 100%; /* Could be more or less, depending on screen size */
}
}

