/*
Theme Name: The Galley
Theme URI: 
Author: Atlas Branding
Author URI: https://www.atlasbranding.com/
Description: 
Version: 1.0
License: 
License 
Tags: 
Text Domain: galley
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
html * {
	max-height: 1000000px;
}
body {
	line-height: 1;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
* {
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}
/* END RESET */

body {
	-webkit-text-size-adjust: none;
}

img {
	max-width: 100%;
	height: auto;
}

iframe {
	max-width: 100%;
}

div#scroll-up {
	display: none;
	position: fixed;
	right: 10px;
	bottom: 10px;
	width: 120px;
	height: 131px;
	background: url('images/scroll-top.png') no-repeat center top;
	background-size: contain;
	cursor: pointer;
	z-index: 500;
}

.block-anchor-wrapper {
	position: relative;
	height: 0;
	overflow: hidden;
}

.block-anchor {
	position: absolute;
	top: -90px;
}

@media all and (max-width: 1199px) {

	div#scroll-up {
		width: 80px;
		height: 87px;
	}

	.block-anchor {
		top: 0;
	}

}

@media all and (max-width: 767px) {

	div#scroll-up {
		width: 60px;
		height: 65px;
	}
}

/*-----------------------------------------------------------------------------------------------------------
		ANNOUNCEMENT BAR
-----------------------------------------------------------------------------------------------------------*/

.announcement-bar-wrapper {
	position: relative;
	background: #0d9e7d;
}

.announcement-bar {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	margin: 0 auto;
	padding: 8px 0 2px;
	max-width: 1500px;
	font-size: 15px;
	line-height: 20px;
	color: #fcf8f3;
}

.announcement-bar a {
	color: #fcf8f3;
	text-decoration: none !important;
}

.ab-block {
	padding: 0 20px 6px;
	text-align: center;
}

@media all and (max-width: ?px) {

	

}

/*-----------------------------------------------------------------------------------------------------------
		HEADER
-----------------------------------------------------------------------------------------------------------*/

.header-wrapper {
	position: fixed;
	left: 0;
	width: 100%;
	z-index: 998;
}

.admin-bar .header-wrapper {
	top: 32px;
}

.header-wrapper.open {
	top: 0 !important;
}

.admin-bar .header-wrapper.open {
	top: 32px !important;
}

.header-bg {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: #fcf8f3;
	z-index: -1;
	opacity: 0;
	transition: all .5s;
}

.header-wrapper.show-bg .header-bg {
	opacity: 1;
}

.header-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 0 auto;
	padding: 20px;
}

.logo {
	position: relative;
	display: block;
	z-index: 999;
}

.logo-img {
	display: block;
	max-height: 90px;
	opacity: 1;
	transition: 0.2s;
}

.logo-img-transparent {
	position: absolute;
	left: 0;
	top: 0;
	display: block;
	max-height: 90px;
	opacity: 0;
	transition: 0.2s;
}

.mobile-img {
	position: absolute;
	left: 0;
	top: 0;
	display: block;
	max-height: 60px;
	opacity: 0;
	transition: 0.2s;
}

.header-wrapper.has-switch .logo-img { opacity: 0; }
.header-wrapper.has-switch .logo-img-transparent { opacity: 1; }

.header-wrapper.show-bg .logo-img { opacity: 1; }
.header-wrapper.show-bg .logo-img-transparent { opacity: 0; }

.header-wrapper.open .logo-img { opacity: 0; }
.header-wrapper.open .logo-img-transparent { opacity: 1; }

.menu-buttons-wrapper {
	display: flex;
	align-items: center;
}

.header-button a {
	background: url('images/button-bg.png') no-repeat center center !important;
	background-size: auto 90px !important;
}

.header-button .button-link a:after {
	display: none;
}

.header-button a:hover {
	background-image: url('images/button-bg-hover.png') !important;
}

.menu-button {
	position: relative;
	margin: 0 0 0 20px;
	width: 80px;
	height: 60px;
	z-index: 999;
	cursor: pointer;
}

.menu-button .open {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: url('images/menu-button.png') no-repeat center center;
	background-size: 64px 39px;
	opacity: 1;
}

.menu-button .close {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: url('images/close-button.png') no-repeat center center;
	background-size: 37px 39px;
	opacity: 0;
}

.menu-button.open .open { opacity: 0; }

.menu-button.open .close { opacity: 1; }

.header-spacer {
	display: none;
}

.show-spacer .header-spacer {
	display: block;
	width: 100%;
	height: 166px;
}

.header-wrapper.open .header-button { display: none; }
.header-wrapper.open .header-bg { display: none; }

@media all and (max-width: 1023px) {

	.logo-img {
		max-height: 60px;
	}

	.header-wrapper.open .logo-img-transparent { opacity: 0; }
	.header-wrapper.open .mobile-img { opacity: 1; }

	.header-button {
		display: none;
	}

	.show-spacer .header-spacer {
		height: 136px;
	}

}

@media all and (max-width: 783px) {

	.admin-bar .header-wrapper {
		top: 46px;
	}

	.admin-bar .header-wrapper.open {
		top: 46px !important;
	}

}

@media all and (max-width: 767px) {

	.header-content {
		padding: 15px;
	}

	.logo-img,
	.mobile-img {
		max-height: 40px;
	}

	.menu-button {
		margin: 0;
		width: 60px;
		height: 40px;
	}

	.menu-button .open {
		background-size: 50px 30px;
	}

	.menu-button .close {
		background-size: 29px 30px;
	}

	.show-spacer .header-spacer {
		height: 106px;
	}

}

/*-----------------------------------------------------------------------------------------------------------
		MENU
-----------------------------------------------------------------------------------------------------------*/

.menu-wrapper-outer {
	display: flex;
	position: fixed;
	left: -99999px;
	top: 0;
	width: 100%;
	height: 100vh;
	background: #004c3d;
	z-index: 997;
}

.menu-wrapper-outer.open {
	left: 0;
}

.menu-images-wrapper {
	position: relative;
	width: 50%;
}

.menu-image {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-position: center center;
	background-size: cover;
	opacity: 0;
	transition: 0.2s;
}

.menu-image.show {
	opacity: 1;
}

#mi0.menu-image {
	opacity: 1;
}

.menu-wrapper {
	position: relative;
	width: 50%;
	padding: 200px 40px 100px;
	overflow: hidden;
}

.menu-icon {
	position: absolute;
	left: 50px;
	top: 75px;
	width: 110px;
	height: 110px;
	background: url('images/nav-icon.png') no-repeat center center;
	background-size: contain;
}

.menu {
	position: relative;
	left: 100%;
	width: 100%;
	height: 100%;
	overflow: auto;
	transition: 0.25s;
}

.primary-menu {
	left: 0;
	margin: 0;
	list-style-type: none;
}

.primary-menu > li {
	text-align: center;	
}

.primary-menu > li > a {
	position: relative;
	display: inline-block;
	padding: 20px;
	font-size: 50px;
	line-height: 50px;
	font-weight: 700;
	color: #fcf8f3;
	text-transform: lowercase;
}

.primary-menu > li > a:hover,
.primary-menu > li > a.open {
	color: #0d9e7d;
	text-decoration: none;
}

.primary-menu > li.menu-item-has-children > a .mobile-nav-arrow {
	display: flex;
	align-items: center;
	position: absolute;
	right: -50px;
	top: 0;
	width: 50px;
	height: 100%;
}

.primary-menu > li.menu-item-has-children > a .mobile-nav-arrow span {
	display: block;
	width: 50px;
	height: 22px;
	background: url('images/menu-arrow.png') no-repeat center center;
	background-size: contain;
	transition: all .2s;
}

.primary-menu > li.menu-item-has-children > a.open .mobile-nav-arrow span {
	transform: rotate(180deg);
}

.primary-menu > li > ul {
	display: none;
	margin: 0;
	list-style-type: none;
}

.primary-menu > li > ul > li {
	text-align: center;	
}

.primary-menu > li > ul > li > a {
	position: relative;
	display: inline-block;
	padding: 10px 20px;
	font-size: 24px;
	line-height: 28px;
	color: #fcf8f3;
	text-transform: lowercase;
}

.primary-menu > li > ul > li > a:hover {
	color: #fcf8f3;
	text-decoration: none;
}

.menu-wrapper-outer.open .menu {
	left: 0;
}

.primary-menu-button {
	margin: 20px 0 0;
	text-align: center;
}

.primary-menu-button a {
	color: #fcf8f3 !important;
	background: url('images/button-bg.png') no-repeat center center !important;
	background-size: auto 90px !important;
}

.primary-menu-button .button-link a:after {
	display: none;
}

.primary-menu-button a:hover {
	background-image: url('images/button-bg-hover.png') !important;
}

@media all and (max-width: 1023px) {

	/*.menu-wrapper-outer {
		display: block;
		visibility: hidden;
		position: absolute;
		left: 0;
		top: -200px;
		width: 100%;
		height: auto;
		opacity: 0;
		transition: 0.2s;
	}

	.menu-wrapper-outer.open {
		visibility: visible;
		top: 0;
		opacity: 1;
	}*/

	.menu-images-wrapper {
		display: none;
	}

	.menu-image {
		display: none;
	}

	.menu-wrapper {
		width: 100%;
		padding: 120px 40px 40px;
		overflow: visible;
	}

	.menu-wrapper-outer .menu {
		left: 0;
	}

	.menu-icon {
		display: none;
	}

}

@media all and (max-width: 767px) {

	.menu-wrapper {
		padding: 120px 0 20px;
	}

	.primary-menu > li > a {
		padding: 10px 20px;
		font-size: 24px;
		line-height: 34px;
	}

	.primary-menu > li.menu-item-has-children > a .mobile-nav-arrow {
		left: -30px;
		width: 30px;
	}

	.primary-menu > li.menu-item-has-children > a .mobile-nav-arrow span {
		width: 30px;
		height: 13px;
	}

	.primary-menu > li > ul > li > a {
		padding: 5px 10px;
		font-size: 18px;
		line-height: 22px;
	}

}

@media all and (max-width: 599px) {



}

@media all and (max-width: 599px) {



}

/*-----------------------------------------------------------------------------------------------------------
		MAIN
-----------------------------------------------------------------------------------------------------------*/

.main-wrapper {
	position: relative;
	background: #fcf8f3;
}

.content-wrapper { 
	position: relative;
	padding-left: 40px;
	padding-right: 40px;
}

.content-wrapper.image {
	background-position: center center;
	background-size: cover;
}

.small-padding-top { padding-top: 55px; }
.medium-padding-top { padding-top: 100px; }
.large-padding-top { padding-top: 190px; }

.small-padding-bottom { padding-bottom: 35px; }
.medium-padding-bottom { padding-bottom: 80px; }
.large-padding-bottom { padding-bottom: 170px; }

.cream-fruit-bg {
	background-color: #fcf8f3;
	background-image: url('images/fruit-bg-left.png'), url('images/fruit-bg-right.png');
	background-repeat: no-repeat, no-repeat;
	background-position: bottom left, top right;
}

.cream-fruit-bg .content-block {
	padding: 70px 20px 50px;
	border: 2px solid #0d9e7d;
}

.dark-green-bg { background: #004c3d; }
.bright-green-bg { background: #0d9e7d; }

.dark-green-bg, .dark-green-bg a, .dark-green-bg .h1, .dark-green-bg h1, .dark-green-bg h2, .dark-green-bg h3, .dark-green-bg h4, .dark-green-bg h5, .dark-green-bg h6,
.bright-green-bg, .bright-green-bg a, .bright-green-bg .h1, .bright-green-bg h1, .bright-green-bg h2, .bright-green-bg h3, .bright-green-bg h4, .bright-green-bg h5, .bright-green-bg h6,
.light, .light a, .light .h1, .light h1, .light h2, .light h3, .light h4, .light h5, .light h6 {
	color: #fcf8f3;
}

.single-column {
	margin: 0 auto;
	max-width: 980px;
}

.two-column {
	display: flex;
	margin: 0 auto;
	max-width: 1400px;
}

.two-column.valign {
	align-items: center;
}

.tc-left-column {
	width: 50%;
	padding: 0 30px 0 0;
}

.tc-right-column {
	width: 50%;
	padding: 0 0 0 30px;
}

.two-column.cw-70-30 .tc-left-column { width: 70%; }
.two-column.cw-70-30 .tc-right-column { width: 30%; }
.two-column.cw-30-70 .tc-left-column { width: 30%; }
.two-column.cw-30-70 .tc-right-column { width: 70%; }

@media all and (max-width: 1199px) {

	.tc-left-column {
		padding: 0 20px 0 0;
	}

	.tc-right-column {
		padding: 0 0 0 20px;
	}

	.two-column.cw-70-30 .tc-left-column { width: 65%; }
	.two-column.cw-70-30 .tc-right-column { width: 35%; }
	.two-column.cw-30-70 .tc-left-column { width: 35%; }
	.two-column.cw-30-70 .tc-right-column { width: 65%; }

	.cream-fruit-bg {
		background: #fcf8f3;
	}

}

@media all and (max-width: 1023px) {

	.content-wrapper { 
		padding-left: 20px;
		padding-right: 20px;
	}

}

@media all and (max-width: 767px) {

	.two-column {
		display: block;
	}

	.tc-left-column {
		margin: 0 0 30px;
		width: 100%;
		padding: 0;
	}

	.tc-right-column {
		width: 100%;
		padding: 0;
	}

	.two-column.cw-70-30 .tc-left-column { width: 100%; }
	.two-column.cw-70-30 .tc-right-column { width: 100%; }
	.two-column.cw-30-70 .tc-left-column { width: 100%; }
	.two-column.cw-30-70 .tc-right-column { width: 100%; }

}

/*-----------------------------------------------------------------------------------------------------------
		IMAGE/TEXT
-----------------------------------------------------------------------------------------------------------*/

.image-text-wrapper {
	display: flex;
}

.image-wrapper {
	width: 42%;
	background-position: center center;
	background-size: cover;
}

.text-wrapper {
	position: relative;
	width: 58%;
	padding-left: 170px;
	padding-right: 40px;
}

.it-icon-wrapper {
	position: absolute;
	left: -50px;
	top: 100px;
	width: 170px;
}

.it-icon {
	display: block;
}

.text {
	max-width: 560px;
}

.image-text-wrapper.text-img .image-wrapper {
	order: 2;
}

.image-text-wrapper.text-img .text-wrapper {
	display: flex;
	justify-content: flex-end;
	padding-left: 40px;
	padding-right: 170px;
	order: 1;
}

.image-text-wrapper.text-img .it-icon-wrapper {
	left: calc(100% - 120px);
}

@media all and (max-width: 1365px) {

	.text-wrapper {
		padding-left: 120px;
	}

	.image-text-wrapper.text-img .text-wrapper {
		padding-right: 120px;
	}

}

@media all and (max-width: 1023px) {

	.image-text-wrapper {
		flex-wrap: wrap;
	}

	.image-wrapper {
		width: 100%;
		height: 400px;
	}

	.text-wrapper {
		width: 100%;
		padding-left: 20px;
		padding-right: 20px;
	}

	.it-icon-wrapper,
	.image-text-wrapper.text-img .it-icon-wrapper {
		left: 50px;
		top: -80px;
	}

	.image-text-wrapper.text-img .image-wrapper {
		order: 1;
	}

	.image-text-wrapper.text-img .text-wrapper {
		padding-left: 20px;
		padding-right: 20px;
		order: 2;
	}
	.text {
		margin: 0 auto;
	}

}

@media all and (max-width: 767px) {

	.it-icon-wrapper,
	.image-text-wrapper.text-img .it-icon-wrapper {
		left: 30px;
		top: -40px;
		width: 100px;
		height: 100px;
	}

}

@media all and (max-width: 479px) {

	.image-wrapper {
		height: 300px;
	}

}

/*-----------------------------------------------------------------------------------------------------------
		SLIDER
-----------------------------------------------------------------------------------------------------------*/

.slider-wrapper-outer {
	position: relative;
	width: 100%;
	height: 100vh;
}

.slider-wrapper {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}

.slider-graphic-wrapper {
	position: absolute;
	left: 50%;
	top: 50%;
	z-index: 899;
	transform: translateX(-50%) translateY(-50%);
}

.slider-graphic {
	display: block;
	max-width: 600px;
}

.slider-wrapper .slick-list {
	height: 100% !important;
}

.slider-wrapper .slick-track {
	height: 100%;
}

.slide {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-position: center center;
	background-size: cover;
}

.slide-overlay {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: #000;
	opacity: 0;
}

@media all and (max-width: 767px) {

	.slider-graphic-wrapper {
		display: none;
	}

}

/*-----------------------------------------------------------------------------------------------------------
		VIDEO
-----------------------------------------------------------------------------------------------------------*/

.video-wrapper {
	position: relative;
	width: 100%;
	height: 100vh;
}

.video-wrapper-inner {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-position: center center;
	background-size: cover;
	overflow: hidden;
}

video.video {
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	object-fit: fill;
	background-color: #fff !important;
	z-index: 1;
	-ms-transform: translateX(-50%) translateY(-50%);
	-webkit-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
	background: no-repeat;
	background-size: cover; 
}

/*-----------------------------------------------------------------------------------------------------------
		FOOD MENU
-----------------------------------------------------------------------------------------------------------*/

.food-menu-cw {
	background: #104a3f url('images/menu-bg.jpg') no-repeat center center;
	background-size: cover;
}

.food-menus-outer-wrapper {
	position: relative;
	margin: 0 auto;
	padding: 80px 40px 60px;
	max-width: 1200px;
	background: #fff;
	border: 5px solid #0d9e7d;
}

.food-menus-border-top,
.food-menus-border-bottom {
	display: none;
}

.food-menus-wrapper {
	position: relative;
	margin: 0 auto;
	padding: 0;
	max-width: 860px;
}

.food-menus-border-left {
	display: none;
	position: absolute;
	left: 0;
	top: 0;
	width: 50px;
	height: 100%;
	background: url('images/food-menus-border-left.png') no-repeat left center;
	background-size: 50px auto;
}

.food-menus-border-right {
	display: none;
	position: absolute;
	right: 0;
	top: 0;
	width: 50px;
	height: 100%;
	background: url('images/food-menus-border-right.png') no-repeat right center;
	background-size: 50px auto;
}

.food-menus-headline {
	margin: 0 0 50px !important;
	text-transform: uppercase;
	text-align: center;
}

.food-menus-header {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	margin: 0 0 30px;
}

.food-menu-link {
	position: relative;
	margin: 0 0 10px;
	padding: 0 20px 10px;
	font-size: 24px;
	line-height: 28px;
	font-weight: 400;
	text-transform: lowercase;
	color: #0d9e7d;
	cursor: pointer;
}

.food-menu-link.open {
	color: #ed168e;
}

.food-menus-content {
	margin: 0 0 60px;
}

.food-menu-wrapper {
	display: block;
	column-count: 2;
	column-gap: 80px;
}

.food-menus-content .food-menu-wrapper.hide {
	display: none;
}

.food-menu-section {
	margin: 0 0 30px;
	padding: 0 0 2px;
}

.food-menu-section-title {
	margin: 0 0 20px;
	font-family: Sud, serif;
	font-size: 35px;
	line-height: 35px;
	font-weight: 400;
	letter-spacing: 0em;
	text-transform: uppercase;
	color: #0d9e7d;
}

.food-menu-section-items {
	margin: 0 0 40px;
	font-size: 18px;
	line-height: 30px;
}

.food-menu-section-item {
	margin: 0 0 40px;
	font-size: 18px;
	line-height: 23px;
	break-inside: avoid;
	page-break-inside: avoid;
}

.fm-meta {
	display: flex;
	font-size: 20px;
	font-weight: 700;
	color: #04c3d;
}

.full-menu {
	margin: 0 0 40px;
	text-align: center;
}

@media all and (max-width: 767px) {

	.food-menus-content {
		margin: 0 auto 60px;
		max-width: 360px;
	}

	.food-menus-wrapper {
		padding: 40px 20px 20px;
	}

	.food-menu-wrapper {
		column-count: 1;
		column-gap: 0;
	}
	
}

@media all and (max-width: 599px) {

	.food-menus-outer-wrapper {
		padding: 40px 20px 20px;
	}

	.food-menus-wrapper {
		padding: 0;
	}

	.food-menus-header {
		display: block;
	}
	
	.food-menu-link {
		padding: 25px 15px 0;
		font-size: 20px;
		line-height: 20px;
		text-align: center;
	}

	.food-menu-link:after { 
		height: 4px;
		background-size: auto 4px;
	}

	.food-menu-section-title {
		font-size: 25px;
		line-height: 25px;
	}

}

/*-----------------------------------------------------------------------------------------------------------
		INSTAGRAM
-----------------------------------------------------------------------------------------------------------*/

.sbi_photo {
	position: relative;
	opacity: 1 !important;
}

.sbi_photo:after {
	content: ' ';
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: #ed168e;
	opacity: 0;
	transition: 0.2s;
}

.sbi_photo:hover:after {
	opacity: 0.7;
}

/*-----------------------------------------------------------------------------------------------------------
		FORMS
-----------------------------------------------------------------------------------------------------------*/

.gform_wrapper .top_label .gfield_label {
	margin: 0 0 10px !important;
	font-size: 20px !important;
	line-height: 20px !important;
	font-weight: 400 !important;
	color: #004c3d !important;
	letter-spacing: 0.035em !important;
}

.gform_wrapper .gfield_required {
	color: #004c3d !important;
}

.gform_wrapper ul li.gfield {
	margin-top: 0 !important;
	margin-bottom: 20px !important;
}

body .gform_wrapper .top_label div.ginput_container {
	margin: 0 !important;
}

div.ginput_container_name span {
	margin-right: -12px !important;
}

.gform_wrapper .gform_footer input[type="submit"] {
	display: inline-block !important;
	padding: 10px 30px !important;
	min-width: 150px !important;
	font-family: clarendon-text-pro, serif !important;
	font-size: 20px !important;
	line-height: 24px !important;
	font-weight: 400 !important;
	color: #efefe9 !important;
	letter-spacing: 0.035em !important;
	text-align: center !important;
	text-decoration: none !important;
	text-transform: uppercase !important;
	background: #004c3d !important;
	border: 0 !important;
	border-radius: 0 !important;
	cursor: pointer !important;
	-webkit-appearance: none !important;
}

.gform_wrapper .gform_footer input[type="submit"]:hover {
	color: #efefe9 !important;
	background: #004c3d !important;
}

.gform_wrapper input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]) {
	height: 35px !important;
	font-family: clarendon-text-pro, serif !important;
	font-size: 14px !important;
	font-weight: 400 !important;
	color: #ed168e !important;
	letter-spacing: 0.075em !important;
	background: transparent !important;
	border: 0 !important;
	border-bottom: 2px solid #004c3d !important;
	border-radius: 0 !important;
	-webkit-appearance: none !important;
}

.gform_wrapper select {
	padding: 0 0 0 4px !important;
	height: 35px !important;
	font-family: clarendon-text-pro, serif !important;
	font-size: 18px !important;
	font-weight: 400 !important;
	color: #ed168e !important;
	background: transparent url('images/mobile-sub-nav-button.png') no-repeat 98% center !important;
	border: 2px solid #004c3d !important;
	border-radius: 0 !important;
	-moz-appearance: none !important;
	-webkit-appearance: none !important;
}

.gform_wrapper textarea {
	font-family: clarendon-text-pro, serif !important;
	font-size: 18px !important;
	font-weight: 400 !important;
	color: #ed168e !important;
	background: transparent !important;
	border: 2px solid #004c3d !important;
	border-radius: 0 !important;
	-webkit-appearance: none !important;
}

.gform_wrapper ::-webkit-input-placeholder { /* Edge */
  color: #ed168e !important;
	opacity: 1 !important;
}

.gform_wrapper :-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #ed168e !important;
	opacity: 1 !important;
}

.gform_wrapper ::placeholder {
  color: #ed168e !important;
	opacity: 1 !important;
}

@media all and (max-width: 641px) {

	div.ginput_container_name span {
		margin-right: inherit !important;
	}

}

/*-----------------------------------------------------------------------------------------------------------
		FOOTER
-----------------------------------------------------------------------------------------------------------*/

.footer-wrapper {
	background: #0d9e7d;
	color: #fff;
}

.footer-wrapper a {
	color: #fff;
}

.footer-wrapper a:hover {
	color: #ed168e;
}

.footer-content {
	margin: 0 auto;
	padding: 30px 20px 80px;
	max-width: 1240px;
}

.social-wrapper {
	display: flex;
	justify-content: space-between;
}

.social-text {
	margin: 0 0 20px;
	font-size: 18px;
	line-height: 22px;
}

.social-media-menu {
	display: flex;
	margin: 0 0 20px;
	list-style-type: none;
}

.social-media-menu li {
	display: block;
	margin: 0 0 0 20px;
}

.social-media-menu li a {
	display: block;
	font-size: 20px;
	line-height: 22px;
	color: #fff;
}

.footer-divider {
	margin: 0 0 20px;
	width: 100%;
	height: 2px;
	background: #fff;
}

.footer-text-wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.footer-text {
	padding: 0 40px 0 0;
	font-size: 15px;
	line-height: 20px;
	letter-spacing: 0.05em;
}

.footer-text p {
	margin: 0 0 20px;
}

.footer-button-wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	margin: 0 0 20px;
}

.footer-button-wrapper a.footer-button {
	position: relative;
	display: block;
	margin-right: 10px;
	padding: 5px 20px;
	font-size: 15px;
	line-height: 20px !important;
	font-weight: 400;
	color: #004c3d;
	text-align: center;
	text-decoration: none !important;
	background: #fff;
	transition: all 0.25s;
	white-space: nowrap;
}

.footer-button-wrapper a.footer-button:hover {
	color: #ed168e;
	background: #fff;
}

.footer-button-wrapper img {
	display: block;
	margin-left: 10px;
}

.legal {
	margin: 20px 0 0;
	font-size: 13px;
	line-height: 20px;
	text-align: center;
}

.legal a {
	font-family: Georgia, serif; 
	font-weight: 700;
}

@media all and (max-width: 1199px) {

	.footer-content {
		padding: 30px 20px 30px;
	}

}

@media all and (max-width: 1023px) {

	.footer-content {
		padding: 30px 20px 40px;
	}

	.footer-button-wrapper a.footer-button {
		margin: 0 10px;
	}

	.footer-button-wrapper img {
		margin: 0 10px;
	}

}

@media all and (max-width: 767px) {

	.footer-text-wrapper {
		display: block;
		text-align: center;
	}

	.footer-text {
		padding: 0;
	}

	.footer-button a {
		display: inline-block;
	}

}

/*-----------------------------------------------------------------------------------------------------------
		LAZY LOAD
-----------------------------------------------------------------------------------------------------------*/

.single-column,
.tc-left-column,
.text-wrapper .text,
.instagram-feed-wrapper,
.food-menus-outer-wrapper,
.video-wrapper {
	position: relative;
	top: 0;
	opacity: 1;
	transition: 1.25s;
	transition-delay: 0.25s;
	transition-timing-function: ease-out
}

.tc-right-column {
	position: relative;
	top: 0;
	opacity: 1;
	transition: 1.25s;
	transition-delay: 0.5s;
	transition-timing-function: ease-out
}

.lz-hide {
	top: 100px !important;
	opacity: 0 !important;
}

/*-----------------------------------------------------------------------------------------------------------
		POPUP
-----------------------------------------------------------------------------------------------------------*/

.sgpb-content {
	padding: 80px 60px 60px;
	border-width: 10px !important;
}

@media all and (max-width: 767px) {

	.sgpb-content {
		padding: 60px 20px 40px;
		font-size: 16px;
		line-height: 25px;
		border-width: 10px !important;
	}

}

/*
.pum-container {
	padding: 100px 80px 80px !important;
}

.pum-close {
	background: url('images/close-button.png') no-repeat center center !important;
	background-size: contain !important;
}

.pum-content {
	font-family: 'courier', serif !important;
	font-size: 20px !important;
	line-height: 35px !important;
	font-weight: 400 !important;
	letter-spacing: 0.035em !important;
	color: #00457c !important;
}

.pum-content a {
	color: #85754e !important;
	text-decoration: none !important;
}
*/
/*-----------------------------------------------------------------------------------------------------------
		MISC
-----------------------------------------------------------------------------------------------------------*/

