body {}
.menu {
    width: 100%;
    height: 100vh;
    position: fixed;
    z-index: 5000;
    visibility: hidden;
    opacity: 0;
	text-align: center;
    -moz-transition: all 0.3s cubic-bezier(0.75, -0.25, 0.25, 0.75);
    -o-transition: all 0.3s cubic-bezier(0.75, -0.25, 0.25, 0.75);
    -webkit-transition: all 0.3s cubic-bezier(0.75, -0.25, 0.25, 0.75);
    transition: all 0.3s cubic-bezier(0.75, -0.25, 0.25, 0.75);
}
.expanded-menu .menu {
    visibility: visible;
    opacity: .95;
}
.menu ul {
    position: absolute;
    left: 50%;
    top: 50%;
    margin: 0 auto;
    list-style: none;
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}

.menu li {}

.menu li a {
    font-size: 1.1em;
    padding: .3em;	
    display: block;
	text-transform: uppercase;
    -moz-transition: all 0.3s cubic-bezier(0.75, -0.25, 0.25, 0.75);
    -o-transition: all 0.3s cubic-bezier(0.75, -0.25, 0.25, 0.75);
    -webkit-transition: all 0.3s cubic-bezier(0.75, -0.25, 0.25, 0.75);
    transition: all 0.3s cubic-bezier(0.75, -0.25, 0.25, 0.75);
}

@media only screen and (min-width: 740px) {
    .menu li a {
        font-size: 1.2em;
    }
}
@media only screen and (min-width: 900px) {
    .menu li a {
        font-size: 1.2em;
    }
}
@media only screen and (min-width: 1200px) {
    .menu li a {
        font-size: 1.3em;
		padding: .4em;

    }
}
@media only screen and (min-width: 1400px) {
    .menu li a {
        font-size: 1.4em;
		padding: .4em;		
    }
}

.menu li a:hover {
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}
.menu li a:active {
    -moz-transform: scale(.9);
    -ms-transform: scale(.9);
    -webkit-transform: scale(.9);
    transform: scale(.9);
}
.mobile-connect {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 13%;
    padding: 1em;
    font-size: .9em;
}

.mobile-connect .address {
    padding: 0 0 .5em;
    text-transform: uppercase;
}
.mobile-connect .social {
    font-size: .9em;
}
.mobile-connect .social a {
    padding: 0 .3em;
}
.call .icons {
    padding-right: .2em;
    font-size: .85em;
}
@media only screen and (min-width: 900px) {
    .mobile-connect {
        display: none;
    }
}
/* --- Hero --- */

header {
    width: 100%;
	text-align: center;
    padding: .8em;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 6000;
    -moz-transition: background 0.3s cubic-bezier(0.75, -0.25, 0.25, 0.75);
    -o-transition: background 0.3s cubic-bezier(0.75, -0.25, 0.25, 0.75);
    -webkit-transition: background 0.3s cubic-bezier(0.75, -0.25, 0.25, 0.75);
    transition: background 0.3s cubic-bezier(0.75, -0.25, 0.25, 0.75);
}
.logo {
    display: block;
    position: absolute;
    left: 50%;
    top: 1em;
    z-index: 1000;
    opacity: 0;
    z-index: 6500;	
    -o-transition-delay: .3s;
    -ms-transition-delay: .3s;
    transition-delay: .3s;
    -moz-transition: all 0.5s cubic-bezier(0.75, -0.25, 0.25, 0.75);
    -o-transition: all 0.5s cubic-bezier(0.75, -0.25, 0.25, 0.75);
    -webkit-transition: all 0.5s cubic-bezier(0.75, -0.25, 0.25, 0.75);
    transition: all 0.5s cubic-bezier(0.75, -0.25, 0.25, 0.75);
}
.animate .logo {
    opacity: 1;
}
.logo img {
    width: 100%;
	height: auto;
    float: left;
    -moz-transition: all 0.3s cubic-bezier(0.75, -0.25, 0.25, 0.75);
    -o-transition: all 0.3s cubic-bezier(0.75, -0.25, 0.25, 0.75);
    -webkit-transition: all 0.3s cubic-bezier(0.75, -0.25, 0.25, 0.75);
    transition: all 0.3s cubic-bezier(0.75, -0.25, 0.25, 0.75);
}
.logo:hover img {
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}
.logo:active img {
    -moz-transform: scale(.9);
    -ms-transform: scale(.9);
    -webkit-transform: scale(.9);
    transform: scale(.9);
}
.logo.primary-logo {
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}
.fixed-header .logo.primary-logo {
    visibility: hidden;
    opacity: 0;
}
.expanded-menu .logo.primary-logo {
    position: fixed;
    visibility: visible;
    opacity: 1;
}
.logo.min-logo {
    max-width: 50%;
    visibility: hidden;
    opacity: 0;
    top: 50%;
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}
.fixed-header header .logo.min-logo {
    visibility: visible;
    opacity: 1;
}
.expanded-menu .logo.min-logo,
.fixed-header.expanded-menu header .logo.min-logo {
    visibility: hidden;
    opacity: 0;
}
header section {
    display: none;
}
@media only screen and (min-width: 900px) {
    header {
        width: 100%;
        display: block;
        padding: .6em 1em;
        position: absolute;
        z-index: 1000;
    }
    .fixed-header header,
    .expanded-menu header {
        position: fixed;
        left: 0;
        top: 0;
        z-index: 6000;
    }
    header section {
        display: inline-block;
        opacity: 0;
        -o-transition-delay: .5s;
        -ms-transition-delay: .5s;
        transition-delay: .5s;
        -moz-transition: all 0.5s cubic-bezier(0.75, -0.25, 0.25, 0.75);
        -o-transition: all 0.5s cubic-bezier(0.75, -0.25, 0.25, 0.75);
        -webkit-transition: all 0.5s cubic-bezier(0.75, -0.25, 0.25, 0.75);
        transition: all 0.5s cubic-bezier(0.75, -0.25, 0.25, 0.75);
    }
    .animate header section {
        opacity: 1;
    }
    header .left {
        display: inline-block;
        font-size: .9em;
        text-transform: uppercase;
        padding-top: .2em;
        float: left;
    }
    header .right {
        float: right;
        text-transform: uppercase;
    }
    header .social {
        display: inline-block;
        font-size: .9em;
        padding: .2em 1.4em 0 0;
    }
}
/* --- Menu Trogger --- */

.menu-trigger {
    background: transparent;
    width: 1.5em;
    height: 1.5em;
    float: right;
    padding: 0;
    margin: 0 auto;
    border: 0;
    display: block;
    vertical-align: middle;
    cursor: pointer;
    position: relative;
    top: .3em;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.menu-trigger:hover {
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}
.menu-trigger:active {
    -moz-transform: scale(.95);
    -ms-transform: scale(.95);
    -webkit-transform: scale(.95);
    transform: scale(.95);
}
.menu-trigger .hamburger,
.menu-trigger .hamburger:after,
.menu-trigger .hamburger:before {
    width: 100%;
    height: 2px;
}
.menu-trigger .hamburger {
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    -moz-transform: translateY(-.15em);
    -ms-transform: translateY(-.15em);
    -webkit-transform: translateY(-.15em);
    transform: translateY(-.3em);
    -moz-transition: all 0.52s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}
.menu-trigger .hamburger:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: .5em;
    -moz-transition: bottom 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
    -o-transition: bottom 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
    -webkit-transition: bottom 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
    transition: bottom 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
}
.menu-trigger .hamburger:after {
    content: "";
    position: absolute;
    left: 0;
    top: .5em;
    -moz-transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
    -o-transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
    -webkit-transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
    transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
}
.expanded-menu .menu-trigger .hamburger:after {
    top: 0;
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -moz-transition: top 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
    -o-transition: top 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
    -webkit-transition: top 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
    transition: top 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
}
.expanded-menu .menu-trigger .hamburger:before {
    bottom: 0;
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -moz-transition: bottom 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
    -o-transition: bottom 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
    -webkit-transition: bottom 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
    transition: bottom 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
}
/* --- General Social --- */

.social a,
.call {
    font-size: 1.1em;
    display: inline-block;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.social a:hover,
.call:hover {
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}
.social a:active,
.call:active {
    -moz-transform: scale(.9);
    -ms-transform: scale(.9);
    -webkit-transform: scale(.9);
    transform: scale(.9);
}
.social .hashtag {
    text-transform: uppercase;
    padding-right: .4em;
    font-size: 1.1em;
}
/* --- Hero --- */

.hero {
    width: 100%;
    height: 90%;
    height: 90vh;
    position: relative;
    display: block;
	text-align: center;
}
.interior .hero {
    height: 50%;
    height: 50vh;
}
.hero .slider {
    width: 100%;
    height: 100%;
    display: block;
    position: relative;
}
.hero .hero-controls {
    position: absolute;
    top: 48%;
    z-index: 400;
    font-size: 1.2em;
    opacity: .5;
    display: block;
    cursor: pointer;
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -moz-transition: all 0.3s cubic-bezier(0.75, -0.25, 0.25, 0.75);
    -o-transition: all 0.3s cubic-bezier(0.75, -0.25, 0.25, 0.75);
    -webkit-transition: all 0.3s cubic-bezier(0.75, -0.25, 0.25, 0.75);
    transition: all 0.3s cubic-bezier(0.75, -0.25, 0.25, 0.75);
}
.hero .hero-controls.hero-prev-slide {
    left: .5em;
}
.hero .hero-controls.hero-next-slide {
    right: .5em;
}
.hero .hero-controls:hover {
    opacity: .8;
    -moz-transform: scale(1.1) translateY(-50%);
    -ms-transform: scale(1.1) translateY(-50%);
    -webkit-transform: scale(1.1) translateY(-50%);
    transform: scale(1.1) translateY(-50%);
}
.hero .hero-controls:active {
    opacity: .6;
    -moz-transform: scale(.9) translateY(-50%);
    -ms-transform: scale(.9) translateY(-50%);
    -webkit-transform: scale(.9) translateY(-50%);
    transform: scale(.9) translateY(-50%);
}
.hero .slide {
    width: 100%;
    height: 100vh;
    display: block;
}
.interior .hero .slide {
    height: 50vh;
}
.hero .slide .image {
    background-repeat: no-repeat;
    background-position: center bottom;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
}
.hero .slide video {
    display: none;
}
.hero .slide .text {
    opacity: 0;
    width: 80%;
    display: inline-block;
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 100;
    -moz-transform: translateX(-50%) translateY(-30%);
    -ms-transform: translateX(-50%) translateY(-30%);
    -webkit-transform: translateX(-50%) translateY(-30%);
    transform: translateX(-50%) translateY(-30%);
    -moz-transition: all 1s cubic-bezier(0.75, -0.25, 0.25, 0.75);
    -o-transition: all 1s cubic-bezier(0.75, -0.25, 0.25, 0.75);
    -webkit-transition: all 1s cubic-bezier(0.75, -0.25, 0.25, 0.75);
    transition: all 1s cubic-bezier(0.75, -0.25, 0.25, 0.75);
    -webkit-transition-delay: .6s;
    -moz-transition-delay: .6s;
    -o-transition-delay: .6s;
    -ms-transition-delay: .6s;
    transition-delay: .6s;
}
.hero.reveal .slide.slick-current .text {
    opacity: 1;
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}
.hero h1 {
    font-size: 2.4em;
    line-height: 1;
    text-align: center;
    display: block;
}
.hero .slide h1 span {
    -moz-transition: all 1s cubic-bezier(0.75, -0.25, 0.25, 0.75);
    -o-transition: all 1s cubic-bezier(0.75, -0.25, 0.25, 0.75);
    -webkit-transition: all 1s cubic-bezier(0.75, -0.25, 0.25, 0.75);
    transition: all 1s cubic-bezier(0.75, -0.25, 0.25, 0.75);
    padding: 0 .2em;
    line-height: 1;
    -moz-box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
}
.hero .slide h1,
.hero .slide strong {
    display: table;
    margin-bottom: 0;
    -moz-transition: all 0.5s cubic-bezier(0.75, -0.25, 0.25, 0.75);
    -o-transition: all 0.5s cubic-bezier(0.75, -0.25, 0.25, 0.75);
    -webkit-transition: all 0.5s cubic-bezier(0.75, -0.25, 0.25, 0.75);
    transition: all 0.5s cubic-bezier(0.75, -0.25, 0.25, 0.75);
}
.hero .slide strong {
    font-weight: 400;
    text-transform: uppercase;
    font-size: 1em;
    padding: .3em .5em;
    position: relative;
    top: .2em;
}
.hero .gradient {
    width: 100%;
    height: 25%;
    position: absolute;
    left: 0;
    z-index: 200;
}
.hero .gradient.top {
    top: 0;
}
.hero .gradient.bot {
    bottom: 0;
}
.hero .section-title {
    padding: .4em .6em .45em;
    position: absolute;
    left: 50%;
    bottom: 1em;
    z-index: 300;
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    -moz-transition: all 0.5s cubic-bezier(0.75, -0.25, 0.25, 0.75);
    -o-transition: all 0.5s cubic-bezier(0.75, -0.25, 0.25, 0.75);
    -webkit-transition: all 0.5s cubic-bezier(0.75, -0.25, 0.25, 0.75);
    transition: all 0.5s cubic-bezier(0.75, -0.25, 0.25, 0.75);
}
.hero .section-title h1 {
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 0;
}
@media only screen and (min-width: 740px) {
    .hero h1 {
        font-size: 2.6em;
    }
    .hero .slide strong {
        top: .3em;
    }
}
@media only screen and (min-width: 900px) {
	.hero {
		height: 100%;
		height: 100vh;
	}	
    .hero h1 {
        font-size: 3em;
    }
}
@media only screen and (min-width: 1200px) {
    .hero h1 {
        font-size: 3.5em;
    }
    .hero strong {
        font-size: 1.2em;
    }
}
@media only screen and (min-width: 1400px) {
    .hero h1 {
        font-size: 4em;
    }
    .hero .slide strong {
        position: relative;
        top: .75em;
    }
}
/* --- Quick Links --- */

.quick-links {
    width: 100%;
    list-style: none;
    margin: 0 auto;
    position: absolute;
    bottom: 0;
    z-index: 2000;
    padding: 1em 0 1.2em;
}
.quick-links ul {
    position: relative;
}
.quick-links li {
    display: inline-block;
    position: relative;
    vertical-align: middle;
    padding: .3em .3em;
    opacity: 0;
    -moz-transform: translateY(1em);
    -ms-transform: translateY(1em);
    -webkit-transform: translateY(1em);
    transform: translateY(1em);
    -moz-transition: all 0.6s cubic-bezier(0.75, -0.25, 0.25, 0.75);
    -o-transition: all 0.6s cubic-bezier(0.75, -0.25, 0.25, 0.75);
    -webkit-transition: all 0.6s cubic-bezier(0.75, -0.25, 0.25, 0.75);
    transition: all 0.6s cubic-bezier(0.75, -0.25, 0.25, 0.75);
    -webkit-transition-delay: 1.8s;
    -moz-transition-delay: 1.8s;
    -o-transition-delay: 1.8s;
    -ms-transition-delay: 1.8s;
    transition-delay: 1.8s;
}
.animate .quick-links li {
    opacity: 1;
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
}
.quick-links > ul > li:nth-child(7),
.quick-links > ul > li:nth-child(8) { display: none; }

.quick-links .art {
    opacity: 0;
    -moz-transition: all 0.8s cubic-bezier(0.75, -0.25, 0.25, 0.75);
    -o-transition: all 0.8s cubic-bezier(0.75, -0.25, 0.25, 0.75);
    -webkit-transition: all 0.8s cubic-bezier(0.75, -0.25, 0.25, 0.75);
    transition: all 0.8s cubic-bezier(0.75, -0.25, 0.25, 0.75);
    -webkit-transition-delay: 2.1s;
    -moz-transition-delay: 2.1s;
    -o-transition-delay: 2.1s;
    -ms-transition-delay: 2.1s;
    transition-delay: 2.1s;
}
.quick-links .art.left {
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}
.quick-links .art.right {
    -moz-transform: translateX(50%);
    -ms-transform: translateX(50%);
    -webkit-transform: translateX(50%);
    transform: translateX(50%);
}
.animate .quick-links .art {
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
}
.quick-links .art img {
    width: 100%;
}
.quick-links li.seperator {
    display: inline-block;
    vertical-align: middle;
    font-size: .3em;
    padding: 0;
    line-height: 1em;
}
.quick-links a {
    font-size: .9em;
    display: block;
    -moz-transition: all 0.3s cubic-bezier(0.75, -0.25, 0.25, 0.75);
    -o-transition: all 0.3s cubic-bezier(0.75, -0.25, 0.25, 0.75);
    -webkit-transition: all 0.3s cubic-bezier(0.75, -0.25, 0.25, 0.75);
    transition: all 0.3s cubic-bezier(0.75, -0.25, 0.25, 0.75);
}
.quick-links a:hover {
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}
.quick-links a:active {
    -moz-transform: scale(.95);
    -ms-transform: scale(.95);
    -webkit-transform: scale(.95);
    transform: scale(.95);
}
@media only screen and (min-width: 740px) {
    .quick-links a {
        font-size: 1em;
    }
}
@media only screen and (min-width: 900px) {
    .hero .hero-controls {
        top: 50%;
        font-size: 2em;
    }
    .hero .hero-controls.prev-slide {
        left: 1em;
    }
    .hero .hero-controls.next-slide {
        right: 1em;
    }
    .slide .text {
        width: auto;
        max-width: 90%;
    }
    .slide video {
        min-height: 100%;
        min-width: 100%;
        display: block;
        position: absolute;
        left: 0;
        top: 0;
        z-index: 2;
    }
    .quick-links li {
        padding: .3em .7em;
    }
	
	.quick-links > ul > li:nth-child(7),
	.quick-links > ul > li:nth-child(8) { display: inline-block; }

    .quick-links li.seperator {
        font-size: .6em;
    }
    .quick-links a {
        font-size: 1.15em;
    }
}
@media only screen and (min-width: 1200px) {
    .quick-links li {
        padding: .3em 1em;
    }
    .quick-links a {
        font-size: 1.3em;
    }
}
/* --- Layer Basics --- */

.layer {
    background-position: center top;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    padding: 2em;
    position: relative;
	text-align: center;	
}
.content,
.interior .events {
    -webkit-background-size: 100% auto;
    -moz-background-size: 100% auto;
    -o-background-size: 100% auto;
    background-size: 100% auto;
}
.layer h2 {
    font-weight: 700;
    font-size: 1.8em;
    line-height: 1;
    text-transform: uppercase;
	margin-bottom: .4em;
}
.interior .content h2 { margin-top: 1em; }
.layer h3 {
    font-size: 1.5em;
    font-weight: 400;
    margin-bottom: 0em;
}
.content.layer a { 
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
 }

/* --- Specials --- */

.specials-day {
    padding: 1em 0 0;
}
.specials-day ol {
    list-style: none;
}
.specials-day li {
    display: inline-block;
    text-transform: uppercase;
}
.specials-day li a {
    display: block;
    font-size: .9em;
    padding: .37em .25em .3em;
    line-height: 1;
    margin: 0 .1em;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.specials-controls {
    position: absolute;
    top: 48%;
    z-index: 400;
    font-size: 1em;
    opacity: .4;
    display: block;
    cursor: pointer;
	visibility: visible;
	opacity: 1;
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -moz-transition: all 0.3s cubic-bezier(0.75, -0.25, 0.25, 0.75);
    -o-transition: all 0.3s cubic-bezier(0.75, -0.25, 0.25, 0.75);
    -webkit-transition: all 0.3s cubic-bezier(0.75, -0.25, 0.25, 0.75);
    transition: all 0.3s cubic-bezier(0.75, -0.25, 0.25, 0.75);
}
.specials-controls.specials-controls-prev {
    left: 0;
}
.specials-controls.specials-controls-next {
    right: 0;
}

.events .specials-controls.specials-controls-prev {
    left: 1em;
}
.events .specials-controls.specials-controls-next {
    right: 1em;
}


@media only screen and (min-width: 740px) {
	.specials-controls.specials-controls-prev {
		left: 0;
	}
	.specials-controls.specials-controls-next {
		right: 0;
	}	
}

.specials-controls.slick-hidden { 
	visibility: hidden;
	opacity: 0; }

.specials-controls:hover {
    opacity: .8;
    -moz-transform: scale(1.1) translateY(-50%);
    -ms-transform: scale(1.1) translateY(-50%);
    -webkit-transform: scale(1.1) translateY(-50%);
    transform: scale(1.1) translateY(-50%);
}
.specials-controls:active {
    opacity: .6;
    -moz-transform: scale(.9) translateY(-50%);
    -ms-transform: scale(.9) translateY(-50%);
    -webkit-transform: scale(.9) translateY(-50%);
    transform: scale(.9) translateY(-50%);
}
.specials-wrap {
    position: relative;
    padding: 1em 0;
}
.daily-slide {
    padding: 0 .5em;
}
.special {
    display: block;
    margin: 0 1em;
    -moz-transition: all 0.3s cubic-bezier(0.75, -0.25, 0.25, 0.75);
    -o-transition: all 0.3s cubic-bezier(0.75, -0.25, 0.25, 0.75);
    -webkit-transition: all 0.3s cubic-bezier(0.75, -0.25, 0.25, 0.75);
    transition: all 0.3s cubic-bezier(0.75, -0.25, 0.25, 0.75);
}
.special article {
    position: relative;
    padding-bottom: 135%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
}
.special article .image {
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-background-size: 100% auto;
    -moz-background-size: 100% auto;
    -o-background-size: 100% auto;
    background-size: 100% auto;
    width: 100%;
    height: 100%;
    opacity: .7;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 100;
    -moz-transition: all 0.6s cubic-bezier(0.75, -0.25, 0.25, 0.75);
    -o-transition: all 0.6s cubic-bezier(0.75, -0.25, 0.25, 0.75);
    -webkit-transition: all 0.6s cubic-bezier(0.75, -0.25, 0.25, 0.75);
    transition: all 0.6s cubic-bezier(0.75, -0.25, 0.25, 0.75);
}
.special a:hover .image {
    opacity: 1;
    -webkit-background-size: 105% auto;
    -moz-background-size: 105% auto;
    -o-background-size: 105% auto;
    background-size: 105% auto;
}
.special article .details {
    width: 80%;
    padding: 2em;
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 200;
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    -moz-transition: background 0.6s cubic-bezier(0.75, -0.25, 0.25, 0.75);
    -o-transition: background 0.6s cubic-bezier(0.75, -0.25, 0.25, 0.75);
    -webkit-transition: background 0.6s cubic-bezier(0.75, -0.25, 0.25, 0.75);
    transition: background 0.6s cubic-bezier(0.75, -0.25, 0.25, 0.75);
}
.special.no-image article .details,
.special.no-image a:hover .details {
    background: transparent;
}
.special article .details h3 {
    font-weight: 400;
    font-size: 1.25em;
    line-height: 1;
}
.special article .details h3 em {
	font-size: .7em;
	display: block;
	margin-top: .5em;
}	
.special article .details .price {
    display: block;
    font-size: 2em;
    font-weight: 400;
    position: relative;
    margin-top: 1.6rem;
    padding-top: 1.25rem;
}
.special article .details .price:before {
    height: .08em;
    width: .5em;
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    top: 0;
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}
.special article .details .button,
.special article .details .event-cta {
    font-size: .85em;
    line-height: 1;
    margin-top: .7em;
    padding: .3em .4em;
    display: table;
    text-transform: uppercase;
    font-weight: 600;
    -moz-transition: all 0.3s cubic-bezier(0.75, -0.25, 0.25, 0.75);
    -o-transition: all 0.3s cubic-bezier(0.75, -0.25, 0.25, 0.75);
    -webkit-transition: all 0.3s cubic-bezier(0.75, -0.25, 0.25, 0.75);
    transition: all 0.3s cubic-bezier(0.75, -0.25, 0.25, 0.75);
}
.special a:hover .details .button,
.special a:hover .details .event-cta {
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}
.special a:active .details .button,
.special a:active .details .event-cta {
    -moz-transform: scale(.9);
    -ms-transform: scale(.9);
    -webkit-transform: scale(.9);
    transform: scale(.9);
}

.special time {
    display: block;
	text-transform: uppercase;
}

h3.hours { margin-top: 1em; }

@media only screen and (min-width: 740px) {
    .layer {
        padding: 3em 2em;
    }
    .interior .layer {
        padding: 2.5em 2em;
    }
    .layer h2 {
        font-size: 1.8em;
    }
    .layer h3 {
        font-size: 1.4em;
    }
    .specials-wrap {
        padding: 2em;
    }
    .special article .details h3 {
        font-size: 1.2em;
    }
    .special article .details .price {
        font-size: 2.4em;
    }
}
@media only screen and (min-width: 900px) {
    .layer {
        padding: 5em 2em;
    }
    .interior .layer {
        padding: 3em 2em;
    }
    .layer h2 {
        font-size: 2.3em;
    }
    .layer h3 {
        font-size: 1.7em;
    }
    .specials-day li a {
        font-size: 1.1em;
        padding: .3em .35em;
        margin: 0 .2em;
    }
    .interior .specials-day li a {
        font-size: 1.6em;
    }
    .specials-controls {
        font-size: 1.2em;
    }
    .specials-wrap {
        width: 90%;
        padding: 2em 1.5em;
    }
    .daily-slide {
        padding: 0 1em;
    }
    .special article .details h3 {
        font-size: 1.5em;
    }
    .special article .details .price {
        font-size: 2.8em;
    }
    .special article .details .button {
        font-size: .9em;
    }
}
@media only screen and (min-width: 1200px) {
    .layer {
        padding: 8em 2em;
    }
    .interior .layer {
        padding: 5em 2em;
    }
    .layer h2 {
        font-size: 2.6em;
    }
    .layer h3 {
        font-size: 2em;
    }
    .specials-wrap {
        width: 80%;
        padding: 3em 2en;
    }
    .special article .details h3 {
        font-size: 1.6em;
    }
    .special article .details .price {
        font-size: 3em;
    }
    .special article .details .button {
        font-size: 1.1em;
    }
}
/* --- Promos --- */

.promos {
    padding: 0 1em;
    text-transform: uppercase;
	text-align: center;	
}
.promos article {
    margin-bottom: 1em;
}
.promos article:last-child {
    margin-bottom: 0;
}
.promos .aspect-ratio {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
}
.promos article .image {
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-background-size: 100% auto;
    -moz-background-size: 100% auto;
    -o-background-size: 100% auto;
    background-size: 100% auto;
    width: 100%;
    height: 100%;
    opacity: .7;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 100;
    -moz-transition: all 0.6s cubic-bezier(0.75, -0.25, 0.25, 0.75);
    -o-transition: all 0.6s cubic-bezier(0.75, -0.25, 0.25, 0.75);
    -webkit-transition: all 0.6s cubic-bezier(0.75, -0.25, 0.25, 0.75);
    transition: all 0.6s cubic-bezier(0.75, -0.25, 0.25, 0.75);
}
.promos a:hover .image {
    opacity: 1;
    -webkit-background-size: 105% auto;
    -moz-background-size: 105% auto;
    -o-background-size: 105% auto;
    background-size: 105% auto;
}
.promos article .text {
    width: 100%;
    padding: 2em;
    position: absolute;
    left: 0;
    top: 50%;
    z-index: 200;
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -moz-transition: background 0.6s cubic-bezier(0.75, -0.25, 0.25, 0.75);
    -o-transition: background 0.6s cubic-bezier(0.75, -0.25, 0.25, 0.75);
    -webkit-transition: background 0.6s cubic-bezier(0.75, -0.25, 0.25, 0.75);
    transition: background 0.6s cubic-bezier(0.75, -0.25, 0.25, 0.75);
}
.promos article .text h3 {
    display: inline-block;
    font-size: 1.6em;
    padding: .2em .3em;
    margin-bottom: 0;
    line-height: 1.15;
    margin: 0;
    -moz-transition: all 0.6s cubic-bezier(0.75, -0.25, 0.25, 0.75);
    -o-transition: all 0.6s cubic-bezier(0.75, -0.25, 0.25, 0.75);
    -webkit-transition: all 0.6s cubic-bezier(0.75, -0.25, 0.25, 0.75);
    transition: all 0.6s cubic-bezier(0.75, -0.25, 0.25, 0.75);	
}
.promos.three article .text h3 {
    font-size: 1.8em;
}
.promos h3 span {
    padding: 0 .2em;
    -moz-box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
    -moz-transition: all 0.6s cubic-bezier(0.75, -0.25, 0.25, 0.75);
    -o-transition: all 0.6s cubic-bezier(0.75, -0.25, 0.25, 0.75);
    -webkit-transition: all 0.6s cubic-bezier(0.75, -0.25, 0.25, 0.75);
    transition: all 0.6s cubic-bezier(0.75, -0.25, 0.25, 0.75);
}
.promos h3 em { 
	font-size: .6em;
	padding: 0 .35em;
	font-weight: 400;
	display: table;
    -moz-box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;	
    -moz-transition: all 0.6s cubic-bezier(0.75, -0.25, 0.25, 0.75);
    -o-transition: all 0.6s cubic-bezier(0.75, -0.25, 0.25, 0.75);
    -webkit-transition: all 0.6s cubic-bezier(0.75, -0.25, 0.25, 0.75);
    transition: all 0.6s cubic-bezier(0.75, -0.25, 0.25, 0.75);	
}
.promos article .text strong {
    display: table;
    padding: .2em .3em .23em;
    font-weight: normal;
    position: relative;
    top: -.25em;
    -moz-transition: all 0.6s cubic-bezier(0.75, -0.25, 0.25, 0.75);
    -o-transition: all 0.6s cubic-bezier(0.75, -0.25, 0.25, 0.75);
    -webkit-transition: all 0.6s cubic-bezier(0.75, -0.25, 0.25, 0.75);
    transition: all 0.6s cubic-bezier(0.75, -0.25, 0.25, 0.75);
}
@media only screen and (min-width: 740px) {
    .promos {
        width: 100%;
        display: table;
    }
    .promos article {
        display: table-cell;
		vertical-align: top;
    }
    .promos.promos-1 article {
        width: 100%;
    }
    .promos.promos-2 article {
        width: 50%;
    }
    .promos.promos-3 article {
        width: 33.333%;
    }	
    .promos article .text h3 {
        font-size: 1.8em;
    }
}
@media only screen and (min-width: 1200px) {
    .promos article .text h3 {
        font-size: 2.3em;
    }
}
/* --- Twitter --- */

.twitter {
    padding: 2em;
    font-size: 1.3em;
	text-align: center;	
}
.twitter .icons {
    display: table;
    font-size: 1.5em;
    margin-bottom: 1em;
    -moz-transition: all 0.3s cubic-bezier(0.75, -0.25, 0.25, 0.75);
    -o-transition: all 0.3s cubic-bezier(0.75, -0.25, 0.25, 0.75);
    -webkit-transition: all 0.3s cubic-bezier(0.75, -0.25, 0.25, 0.75);
    transition: all 0.3s cubic-bezier(0.75, -0.25, 0.25, 0.75);
}
.twitter .icons:hover {
    -moz-transform: scale(1.15);
    -ms-transform: scale(1.15);
    -webkit-transform: scale(1.15);
    transform: scale(1.15);
}
.twitter .icons:active {
    -moz-transform: scale(.9);
    -ms-transform: scale(.9);
    -webkit-transform: scale(.9);
    transform: scale(.9);
}
.twitter article {
    max-width: 1200px;
    font-style: italic;
}
.twitter article a {
    font-weight: 700;
    -moz-transition: all 0.3s cubic-bezier(0.75, -0.25, 0.25, 0.75);
    -o-transition: all 0.3s cubic-bezier(0.75, -0.25, 0.25, 0.75);
    -webkit-transition: all 0.3s cubic-bezier(0.75, -0.25, 0.25, 0.75);
    transition: all 0.3s cubic-bezier(0.75, -0.25, 0.25, 0.75);
}
@media only screen and (min-width: 7400px) {
    .twitter {
        padding: 2em;
        font-size: 1.4em;
    }
}
@media only screen and (min-width: 900px) {
    .twitter {
        padding: 2em;
        font-size: 1.6em;
    }
    .twitter .icons {
        font-size: 1.3em;
    }
}
@media only screen and (min-width: 1200px) {
    .twitter {
        padding: 3em 2em;
        font-size: 2em;
    }
}
/* --- Footer --- */

footer {
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position: center center;
    padding: 4em 2em;
    position: relative;
    overflow: hidden;
	text-align: center;	
}
footer a {
    -moz-transition: all 0.3s cubic-bezier(0.75, -0.25, 0.25, 0.75);
    -o-transition: all 0.3s cubic-bezier(0.75, -0.25, 0.25, 0.75);
    -webkit-transition: all 0.3s cubic-bezier(0.75, -0.25, 0.25, 0.75);
    transition: all 0.3s cubic-bezier(0.75, -0.25, 0.25, 0.75); 
}
@media only screen and (min-width: 740px) {
    footer {
        padding: 4em 0;
    }
    footer .pad {
        padding: 0 4%;
    }
    footer .details,
    footer .footer-menu,
    footer .contact {
        padding: 1em;
        display: table-cell;
        vertical-align: top;
    }
    footer .details {
        width: 25%;
    }
    footer .footer-menu {
        width: 25%;
    }
    footer .contact {
        width: 50%;
    }
}
@media only screen and (min-width: 1200px) {
    footer {
        padding: 6em 0;
    }
    footer .pad {
        padding: 0 8%;
    }
    footer .details,
    footer .footer-menu,
    footer .contact {
        padding: 1em 3em;
    }
}
/** Location Details **/

footer .details img {
    display: table;
    width: 50%;
	height: auto !important;
    margin: 0 auto 1em;
}
footer .details address {
    display: inline-block;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 1.6em;
    margin-bottom: 1.8em;
}
footer .details address:after {
    width: 15%;
    height: 2px;
    display: block;
    content: " ";
    position: absolute;
    left: 50%;
    bottom: -2px;
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}
footer .details .links {
    text-transform: uppercase;
}
footer .details .links a {
    font-size: .9em;
    display: inline-block;
}
footer .details .links a:hover {
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}
footer .details .links a:active {
    -moz-transform: scale(.9);
    -ms-transform: scale(.9);
    -webkit-transform: scale(.9);
    transform: scale(.9);
}
footer .details .links .icons {
    padding-right: .5em;
    text-transform: none;
}
footer .details .links .icons a {
    padding: 0 .1em;
}
@media only screen and (min-width: 740px) {
    footer .details img {
        width: 80%;
    }
}
/** Footer Nav **/

.footer-menu {
    padding: 3em 0;
    text-align: center;
}
.footer-menu ul {
    list-style: none;
    margin: 0 auto;
    text-transform: uppercase;
}
.footer-menu li a {
    font-size: 1.1em;
    padding: .55em 0em;
    display: block;
    position: relative;
}
.footer-menu li a:after {
    width: 0em;
    height: 2px;
    display: block;
    content: " ";
    position: absolute;
    left: 0;
    bottom: -1px;
    -moz-transition: all 0.3s cubic-bezier(0.75, -0.25, 0.25, 0.75);
    -o-transition: all 0.3s cubic-bezier(0.75, -0.25, 0.25, 0.75);
    -webkit-transition: all 0.3s cubic-bezier(0.75, -0.25, 0.25, 0.75);
    transition: all 0.3s cubic-bezier(0.75, -0.25, 0.25, 0.75);
}
.footer-menu li a:hover:after {
    width: 100%;
}
@media only screen and (min-width: 740px) {
    .footer-menu {
        padding: 0;
        text-align: left;
    }
    .footer-menu li a {
        font-size: .9em;
    }
    .footer-menu li a:after {
        width: .8em;
    }
    .footer-menu li:last-child a:after {
        width: 0em;
    }
    .footer-menu li:last-child a:hover:after {
        width: 100%;
    }
}
@media only screen and (min-width: 900px) {
    .footer-menu li a {
        font-size: 1em;
    }
}
@media only screen and (min-width: 1200px) {
    .footer-menu li a {
        font-size: 1.1em;
    }
}
/* -- Contact Form -- */

footer .contact h3 {
    display: inline-block;
    font-size: 1.8em;
    padding-bottom: 1.4rem;
    margin-bottom: 2.0rem;
    position: relative;
}
footer .contact h3:after {
    width: .5em;
    height: 2px;
    display: block;
    content: " ";
    margin-left: -.25em;
    position: absolute;
    left: 50%;
    bottom: -1px;
}
/* --- Form Defaults --- */

form ul,
form ol {
    list-style: outside none none;
    margin: 0;
}
form input,
form select,
form textarea {
    border: none;
    width: 100%;
    padding: .8em .8em .85em .75em;
    font-weight: 400;
    font-size: 1;
    cursor: pointer;
    float: left;
    text-align: left;
    -webkit-appearance: none;
    outline: 0;
    border-radius: 0;
    -moz-transition: all 0.3s cubic-bezier(0.75, -0.25, 0.25, 0.75);
    -o-transition: all 0.3s cubic-bezier(0.75, -0.25, 0.25, 0.75);
    -webkit-transition: all 0.3s cubic-bezier(0.75, -0.25, 0.25, 0.75);
    transition: all 0.3s cubic-bezier(0.75, -0.25, 0.25, 0.75);
}
.hero form input { padding: .91em .8em .85em .75em; }
footer form input { padding: .8em .8em .85em .75em; }

@media screen and (-webkit-min-device-pixel-ratio: 0) {
.hero form input { padding: .81em .8em .85em .75em; }
footer form input { padding: .83em .8em .85em .75em; }
}

@media only screen and (min-width: 740px) {
    form input,
	form select,
    form textarea {
        font-size: 1.1em;
    }
}
@media only screen and (min-width: 900px) {
    form input,
	form select,	
    form textarea {
        font-size: 1.2em;
    }
}
form input::-moz-placeholder {
    opacity: 1;
}
form input:-moz-placeholder {
    opacity: 1;
}
form textarea::-moz-placeholder {
    opacity: 1;
}
form textarea:-moz-placeholder {
    opacity: 1;
}
form button,
form .button {
    width: auto;
    padding: .5em 1em;
    cursor: pointer;
    font-weight: 700;
    font-size: 1.2em;
    text-transform: uppercase;
    position: relative;
    -webkit-appearance: none;
	float: none !important;
    outline: 0;
    border-radius: 0;
    -moz-transition: all 0.3s cubic-bezier(0.75, -0.25, 0.25, 0.75);
    -o-transition: all 0.3s cubic-bezier(0.75, -0.25, 0.25, 0.75);
    -webkit-transition: all 0.3s cubic-bezier(0.75, -0.25, 0.25, 0.75);
    transition: all 0.3s cubic-bezier(0.75, -0.25, 0.25, 0.75);
}
form button:hover,
form .button:hover {
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}
form button:active,
form .button:active {
    -moz-transform: scale(.9);
    -ms-transform: scale(.9);
    -webkit-transform: scale(.9);
    transform: scale(.9);
}


.hero form button:hover,
.hero form .button:hover,
.hero form button:active,
.hero form .button:active {
    -moz-transform: none;
    -ms-transform: none;
    -webkit-transform: none;
    transform: none;
}

/* --- Gravity Form Hacks --- */

.gform_validation_container{
	display: none!important;
	position: absolute!important;
	left: -9000px;
}

footer .gfield {
    position: relative;
    padding: .1em;
}
footer .gform_footer input {
    float: none;
}
footer .gform_footer:before,
footer .gform_footer:after {
    content: "";
    display: table;
}
footer .gform_footer:after {
    clear: both;
}
footer .gform_footer.top_label {
    padding-top: .6em;
    clear: both;
}
@media only screen and (min-width: 740px) {
    footer .gfield {
        width: 50%;
        float: left;
        vertical-align: top;
        padding-bottom: .15em;
        padding-right: .15em;
    }
    footer .your-comments {
        width: 50%;
        float: right;
    }
    footer textarea {
        height: 9.58em;
    }
}
@media screen and (-webkit-min-device-pixel-ratio: 0) {
    footer textarea {
        height: 9.34em;
    }
}
.gfield_label {
    display: none;
}
.ginput_container {
    position: relative;
}
.ginput_container:before,
.ginput_container:after {
    content: "";
    display: table;
}
.ginput_container:after {
    clear: both;
}
.validation_error {
    display: block;
    text-align: center;
    padding: 0 0 1em;
}
.validation_message {
    display: inline-block;
    font-size: .8em;
    text-transform: uppercase;
    padding: .2em .35em;
    position: absolute;
    font-size: .6em;
    left: 0;
    z-index: 1000;
    bottom: 93%;
}
.validation_message:after {
    position: absolute;
    left: 10%;
    top: 100%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    pointer-events: none;
    border-width: 6px;
    margin-left: -6px;
}

.extensions_message { display: none; }
.gform_validation_container { display: none !important; }

/* --- Locations --- */

footer .locations {
    width: 100%;
    padding: 3em 0;
    margin: 3em 0;
    position: relative;
}
footer .locations:before,
footer .locations:after {
    width: 1em;
    height: 2px;
    display: block;
    content: " ";
    margin-left: -.25em;
    position: absolute;
    left: 50%;
}
footer .locations:before {
    top: 0;
}
footer .locations:after {
    bottom: 0;
}
footer .locations h2 {
    display: none;
}
footer .locations ul {
    width: 100%;
    list-style: none;
    margin: 0 auto;
}
footer .locations li.botg {
    float: none;
    width: 85%;
    max-width: 15em;
    display: table;
    padding: 0;
    margin-bottom: 2em;
    border: none;
    -moz-transition: all 0.3s cubic-bezier(0.75, -0.25, 0.25, 0.75);
    -o-transition: all 0.3s cubic-bezier(0.75, -0.25, 0.25, 0.75);
    -webkit-transition: all 0.3s cubic-bezier(0.75, -0.25, 0.25, 0.75);
    transition: all 0.3s cubic-bezier(0.75, -0.25, 0.25, 0.75);
}
footer .locations li.botg:after {
    display: none;
}
footer .locations li.botg a {
    padding: .5em .6em .4em;
    display: block;
    -moz-transition: all 0.3s cubic-bezier(0.75, -0.25, 0.25, 0.75);
    -o-transition: all 0.3s cubic-bezier(0.75, -0.25, 0.25, 0.75);
    -webkit-transition: all 0.3s cubic-bezier(0.75, -0.25, 0.25, 0.75);
    transition: all 0.3s cubic-bezier(0.75, -0.25, 0.25, 0.75);
}
footer .locations li.botg:hover a {
    -moz-transform: none;
    -ms-transform: none;
    -webkit-transform: none;
    transform: none;
}
footer .locations li.botg:active a {
    -moz-transform: none;
    -ms-transform: none;
    -webkit-transform: none;
    transform: none;
}
footer .locations li.botg svg {
    width: 100%;
	height: 2em;
}
footer .locations li {
    width: 33.3333%;
    padding: .5em 1em;
    display: inline-block;
    float: left;
    vertical-align: text-top;
    position: relative;
}
footer .locations li:nth-child(4),
footer .locations li:nth-child(7),
footer .locations li:nth-child(10) {
    border-right: none;
}
footer .locations li:nth-child(8),
footer .locations li:nth-child(9),
footer .locations li:nth-child(10) {
    border-bottom: none;
}
footer .locations li a {
    display: block;
    -moz-transition: all 0.3s cubic-bezier(0.75, -0.25, 0.25, 0.75);
    -o-transition: all 0.3s cubic-bezier(0.75, -0.25, 0.25, 0.75);
    -webkit-transition: all 0.3s cubic-bezier(0.75, -0.25, 0.25, 0.75);
    transition: all 0.3s cubic-bezier(0.75, -0.25, 0.25, 0.75);
}
footer .locations li:hover a {
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}
footer .locations li:active a {
    -moz-transform: scale(.95);
    -ms-transform: scale(.95);
    -webkit-transform: scale(.95);
    transform: scale(.95);
}
footer .locations li img {
    width: 100%;
}
footer .locations li:after {
    width: 100%;
    height: 0;
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    -moz-transition: all 0.3s cubic-bezier(0.75, -0.25, 0.25, 0.75);
    -o-transition: all 0.3s cubic-bezier(0.75, -0.25, 0.25, 0.75);
    -webkit-transition: all 0.3s cubic-bezier(0.75, -0.25, 0.25, 0.75);
    transition: all 0.3s cubic-bezier(0.75, -0.25, 0.25, 0.75);
}
footer .locations li:hover:after {
    height: .25em;
}
@media only screen and (min-width: 500px) {
    footer .locations li {
        padding: .5em 2.8em;
    }
}
@media only screen and (min-width: 900px) {
    footer .locations {
        width: 100%;
        padding: 0 2em;
        margin: 4em auto;
        position: relative;
    }
    footer .locations:before,
    footer .locations:after {
        display: none;
    }
    footer .locations ul {
        display: table;
        padding: 0;
    }
    footer .locations li {
        width: 8.88%;
        padding: .1em .3em;
        border: none;
        display: table-cell;
        float: none;
        vertical-align: middle;
    }
    footer .locations li:before {
        width: 1px;
        height: 1.4em;
        display: block;
        content: " ";
        position: absolute;
        left: 0;
        top: 50%;
        margin-top: -.7em;
    }
    footer .locations li:nth-child(2):before {
        display: none;
    }
    footer .locations li.botg {
        width: 17%;
        max-width: none;
        display: table-cell;
        padding: 0;
        margin-bottom: 0;
    }
    footer .locations li.botg a {
        padding: .3em .5em .25em;
    }
    footer .locations li a {
        padding: .5em 0;
    }
}
@media only screen and (min-width: 1000px) {
    footer .locations {
        padding: 0;
        width: 95%;
    }
    footer .locations li a {
        padding: .5em .4em;
    }
}
@media only screen and (min-width: 1200px) {
    footer .locations {
        width: 90%;
    }
    footer .locations li a {
        padding: .5em 1em;
    }
}
footer .copyright {
    font-size: .9em;
}
/* --- Content Page --- */

@media only screen and (min-width: 740px) {
    .content .wrap {
        padding: 2em;
    }
}
@media only screen and (min-width: 900px) {
    .content .wrap {
        width: 90%;
        padding: 2em 0;
    }
}
@media only screen and (min-width: 1200px) {
    .content .wrap {
        width: 70%;
        padding: 3em 0;
    }
}
/* --- Food Menu --- */
.menu-tabs,
.menu-course {
    padding: 0 0 2em;
}


.menu-pdfs {
    padding: 2em 0 0;
}
.menu-tabs ol,
.menu-course ol,
.menu-pdfs {
    list-style: none;
}
.menu-tabs li,
.menu-course li,
.menu-pdfs li {
    display: inline-block;
    text-transform: uppercase;
    position: relative;
}
.menu-tabs li {
	display: block;
    margin-bottom: 0.25em;
}
.menu-pdfs li { 
	padding: .1em; 
}
.menu-tabs li a,
.menu-course li a,
.menu-pdfs li a {
    display: block;
    line-height: 1;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.menu-tabs li a,
.menu-pdfs li a {
    font-size: 1em;
    padding: 1em .4em;
    margin: 0 .05em;
    font-weight: 700;
}
.menu-course li a {
    font-size: .9em;
    padding: .6em .55em .5em;
    margin: .15em .05em;
}
@media only screen and (min-width: 660px) {
	.menu-tabs {
		padding: 0;
	}
	.menu-tabs li {
		display: inline-block;
	}	
	.menu-course,
	.menu-pdfs {
		padding: 2em 0 0;
	}
	.menu-tabs li.active a:after {
		top: 100%;
		left: 50%;
		border: solid transparent;
		content: " ";
		height: 0;
		width: 0;
		position: absolute;
		pointer-events: none;
		border-width: .5em;
		margin-left: -.5em;
	}		
    .menu-tabs li a {
        font-size: 1em;
        padding: .5em .55em;
    }
    .menu-course li a {
        font-size: .9em;
        padding: .5em .55em;
    }
}
.menu-course-grouping {
    padding: 0 0 1em;
}
.menu-course-grouping h2 {
    margin-bottom: .5em;
}

.menu-group-slider .description {
	font-size: .85em;
	margin: 1.3em 0;
	display: block; }

.menu-item {
    display: block;
    text-align: center;
    vertical-align: text-top;
    padding: .8em 0;
}
.menu-footer {
    margin-top: 1.4em;
    position: relative;
}
.menu-footer h4 {
    text-transform: uppercase;
    font-size: 1.5em;
    margin-bottom: .2em;
}
.menu-footer legend {
    text-transform: uppercase;
    font-weight: 700;
    margin: 2em auto;
    line-height: 1;
}
.menu-footer legend span {
    font-size: 1.4em;
    margin-right: .3em;
    position: relative;
    top: .1em;
}
@media only screen and (min-width: 740px) {
    .menu-item {
        width: 49%;
        padding: .8em 1em;
        display: inline-block;
        text-align: center;
        vertical-align: text-top;
    }
	.menu-item.featured-item { 
		width: 100%;
		display: block; 
	}
}
.menu-item h3 {
    font-size: 1.25em;
}
.menu-item h3 .price {
    margin-left: .5em;
}
.menu-item h3 .specialty {
    font-size: .7em;
    margin-right: .3em;
    position: relative;
    top: -.13em;
}
@media only screen and (min-width: 740px) {
    .menu-item h3 {
        font-size: 1.35em;
    }
}
@media only screen and (min-width: 900px) {
	.menu-group-slider .description {
	}
    .menu-item h3 {
        font-size: 1.45em;
    }
}
@media only screen and (min-width: 1200px) {
	.menu-tabs,
	.menu-course,
	.menu-pdfs {
		padding-bottom: 2em;
	}	
    .menu-tabs li a {
        font-size: 1.3em;
    }	
    .menu-course li a {
        font-size: 1.1em;
    }	
    .menu-item h3 {
        font-size: 1.55em;
    }
}
@media only screen and (min-width: 1400px) {
    .menu-item h3 {
        font-size: 1.65em;
    }
}
/* --- Gallery --- */

.gallery {
    width: 100%;
    height: 100%;
}
.gallery:after {
    content: "";
    display: block;
    clear: both;
}
.gallery .photo {
    position: relative;
    float: left;
    width: 50%;
    padding: 1px;
}
.photo-sizer {
    width: 50%;
}
@media only screen and (min-width: 1000px) {
    .gallery .photo {
        width: 33%;
    }
    .photo-sizer {
        width: 33%;
    }
}
.gallery .photo a {
    display: block;
}
.gallery .photo img {
    width: 100%;
    float: left;
}

/* --- Photo Galleries --- */

.photo-gallery { 
	position: relative;
	padding: 0 0; }
	
@media only screen and (min-width: 700px) {
	.photo-gallery { 
		padding: 0 2em; 
	}
}

.gallery .photo img,
.gallery img { 
	width: 100%; 
	height: auto !important; }
	

/* --- Forms --- */

.content form { 
	width: 100%;
	text-align: center; }

.content .gform_fields li {
	display: block;
	padding: .2em; 
	position: relative; }
		
@media only screen and (min-width: 700px) {
	.content form { 
		width: 80%;
	 }
	.content .gform_fields li {
		display: inline-block;
		width: 50%;
		padding: .3em; 
	}
	
	.content .gform_fields li.form-title {
		display: block;
		width: 100%;
		padding: 0; 
	}	
		
	.content .gform_fields li:nth-of-type(6),
	.content .gform_fields li:nth-of-type(7),
	.content .gform_fields li:nth-of-type(8) { width: 33.33%; }

	.content .sponsorship .gform_fields li:nth-of-type(6), 
	.content .sponsorship .gform_fields li:nth-of-type(7), 
	.content .sponsorship .gform_fields li:nth-of-type(8), 
	.content .sponsorship .gform_fields li:nth-of-type(9),	
	.content .private-parties .gform_fields li:nth-of-type(6),
	.content .private-parties .gform_fields li:nth-of-type(7),
	.content .private-parties .gform_fields li:nth-of-type(8),	
	.content .private-parties .gform_fields li:nth-of-type(9) { width: 25%; }	
}
	
.content .validation_error {
	font-size: 1.3em;
    background: #f9ae40;
	display: table;
	padding: .3em;
	margin-bottom: 1em;
}

/* --- Newsletter --- */

.text.newsletter { 
	width: 90%; 
	padding: 1.4em; }
@media only screen and (min-width: 900px) {
	.text.newsletter { 
		width: auto !important;
		padding: 2em; }
}

.text.newsletter .gform_wrapper {
	width: 100%;
	margin-top: 1em; }

.newsletter .gform_wrapper form {
	width: 100%;
	display: block; }
.newsletter .gform_body,
.newsletter .gform_footer { 
	display: block;
	vertical-align: top; }

.newsletter .gform_footer { margin-top: .6em; }
	

.newsletter .gform_body ul,
.newsletter .gform_body li {
	width: 100%;
	display: block; } 
		

@media only screen and (min-width: 700px) {
	
	.text.newsletter .gform_wrapper {
		width: 80%;
		max-width: 35em; 
		margin-top: 1.5em; }
		
	.newsletter .gform_wrapper form {
		width: 100%;
		display: table; }
	.newsletter .gform_body,
	.newsletter .gform_footer { 
		display: table-cell; }
		
	.newsletter .gform_body {
		width: 80%; } 
		
	.newsletter .gform_footer {
		width: 20%;
		margin-top: 0; } 	

	.newsletter .gform_footer .button {
		width: 100%;
		text-align: center; }		
	
}	

.newsletter .gform_body input {
	font-size: 1.2em;
 } 
 
 .newsletter .gform_footer .button {
	font-size: 1.5em;
 } 
 
@media only screen and (min-width: 1200px) {
.text.newsletter .gform_wrapper {
	width: 60%; }
}	

/* --- Photos List --- */
.list {}
.list article a {
	display: block;
	padding: .4em;
	position: relative; }
.list article img { 
	width: 100%;
	height: auto !important; }

.list article h3 {
	width: 100%;
	position: absolute; 
	top: 50%;
	z-index: 100;
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
	line-height: 1.2;
	font-size: 1.5em;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out; }
.list article:hover h3 {
    -moz-transform: scale(1.1) translateY(-50%);
    -ms-transform: scale(1.1) translateY(-50%);
    -webkit-transform: scale(1.1) translateY(-50%);
    transform: scale(1.1) translateY(-50%); }

.list article h3 span { padding: .3em; }	
	
@media only screen and (min-width: 500px) {
.list article {
	width: 49%;
	display: inline-block;
	vertical-align: text-top; }
}

@media only screen and (min-width: 1000px) {
.list article { width: 32%; }
}


.details time {
	font-size: 1.4em;
	font-weight: 700;
	margin: 0 0 1em;
	text-transform: uppercase;
	letter-spacing: .15em; 
	line-height: 1;
	display: block; }
.slide time { 
	font-size: .9em;
	letter-spacing: .07em; 
	margin-top: .4em; 
}	

/* --- Date Picker --- */

.ui-datepicker {
	text-align: center;
}
.ui-datepicker-header {
	padding: .3em;
}
.ui-datepicker-header a {
	text-transform: uppercase;
	cursor: pointer;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;	
}
.ui-datepicker-prev {
	float: left;
}
.ui-datepicker-next {
	float: right;
}
.ui-datepicker-prev select {
	padding: .1em;
}
.ui-datepicker-calendar td {
	text-align: center;
	cursor: pointer;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;	
}
.ui-datepicker-calendar td:hover a {
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;	
}
.ui-datepicker-calendar thead span {
	text-transform: uppercase;
}



.ui-datepicker {
	background: #fff;
}
.ui-datepicker-header {
	background: #006363;
}
.ui-datepicker-header a {
	color: #fff;
}
.ui-datepicker-header a:hover {
	color: #f15a29;
}
.ui-datepicker-calendar thead span {
	color: #006363;
}
.ui-datepicker-calendar td:hover {
	background: #006363;
}
.ui-datepicker-calendar td:hover a {
	color: #fff;
}