*,
*:after,
*:before {
	-moz-box-sizing:border-box;
	box-sizing:border-box;
	-webkit-font-smoothing:antialiased;
	font-smoothing:antialiased;
	text-rendering:optimizeLegibility;
	margin: 0;
	padding: 0;
}

body {
	font-size: 18px;
    background: #E7EEF2;
	font-weight: 500;
	letter-spacing: 0.03em;
	font-family: 'Volte';
}
.body-wrap { overflow: hidden; min-height: calc(100vh - 100px);}

.accent-grn{
/* 	background: #ACCD8B; */
/* background: #6FA361; */
}
/*------------------------------------------------------------------------------------------------------------------------------------------------
    default
------------------------------------------------------------------------------------------------------------------------------------------------*/

img { max-width: 100%;}

a {
	text-decoration:none;
	-webkit-transition: .5s ease background, .5s ease color;
	-moz-transition: .5s ease background, .5s ease color;
	-ms-transition: .5s ease background, .5s ease color;
	transition: .5s ease background, .5s ease color;

}

p {
    line-height: 1.4;
    margin: 10px 0;
}

ul {
    margin-left: 15px;
}
/*------------------------------------------------------------------------------------------------------------------------------------------------
    headings
------------------------------------------------------------------------------------------------------------------------------------------------*/

h1 {
	font-family: 'High Voltage Rough';
    margin: 20px 0 5px;
    letter-spacing: 3px;
	font-size: 80px;
	text-transform: uppercase;
	color: transparent;
}

.alt {
    text-transform: uppercase;
    letter-spacing: 2px;
}

/*------------------------------------------------------------------------------------------------------------------------------------------------
    feature_bar
------------------------------------------------------------------------------------------------------------------------------------------------*/

.feature_bar {
/*     background: #425465; */
	background: #30404f;
    color: #fff;
    padding: 15px 0;
    text-align: center;
    position: relative;
    font-size: 16px;
    margin-bottom: 10px;
    margin-top: -30px;
}
.feature_bar--slider {
    top: 5px;
}

.feature_bar .slick-slide {
    display: flex !important;
    align-items: center;
    justify-content: center;
}
.feature_bar .close {
    position: absolute;
    right: 20px;
    top: 60%;
    transform: translateY(-50%);
    font-size: 30px;
    cursor: pointer;
}

.feature_bar.hidden {
    opacity: 0;
    visibility: hidden;
    padding: 0;
}
.feature_bar.hidden .close {
    display: none;
}
.feature_bar.hidden .slick-slider {
    height: 0;
}

.feature_bar--slider a {
    display: inline-block;
    font-weight: 600;
    text-transform: uppercase;
    margin-left: 25px;
    font-size: 100%;
    letter-spacing: 1px;
    color: #FDD58A;
    font-family: 'Volte';
    vertical-align: 1px;
}

/*------------------------------------------------------------------------------------------------------------------------------------------------
    header
------------------------------------------------------------------------------------------------------------------------------------------------*/

.header {
    background: #fff;
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
}
.header .hide-on-mobile {
    display: flex;
    align-items: center;
/*     justify-content: center; */
	justify-content: space-between;
	padding: 0 295px;
}

.header .logo {
    width: 450px;
    margin: 0 40px 0 0;
    display: block;
}


/*header nav */
.header .header_nav {
	font-family: 'Volte';
    text-align: center;
    text-transform: uppercase;
    font-weight: 600;
    margin-top: 20px;
}
.header .header_nav li {
    display: inline-block;
    vertical-align: middle;
    padding: 0 4px;
}
.header .header_nav a {
    display: block;
    color: #425465;
    font-size: 20px;
    padding: 0 6px;
    z-index: 1;
    position: relative;
}
.header .header_nav li:not(.reserve-btn) a:not(.logo)::before {
    content: "";
    position: absolute;
    z-index: -1;
    height: 0;
    width: 100%;
    left: 0;
    bottom: -5px;
    transition: .5s ease all;
    background: url('../img/hover-line.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right;
}
.header .header_nav li:not(.reserve-btn) a:not(.logo):hover::before {
    height: 5px;
}

.header a.reserve-btn,
a.reserve-btn {
    color: #FFF;
    font-family: 'High Voltage Rough';
    background: #7B8C98;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px 30px;
    font-size: 18px;
    margin-left: 10px;
    display: inline-block;
    vertical-align: middle;
}
a.reserve-btn:hover{
		background: #30404f;

}
#menu-item-239 {
    display: none;
}

#menu-item-256 a {
   	color: #FFF;
    font-family: 'High Voltage Rough';
 background: #7B8C98;
/* 	background: #6FA361; */
/* 	background: #30404f; */
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px 30px;
    font-size: 16px;
    margin-left: 10px;
    display: inline-block;
    vertical-align: middle;
    font-weight: 400;
}
#menu-item-256 a::before{
	opacity: 0;
	display: none;
}
#menu-item-256 a:hover{
/* 	background: #425465; */
/* 	background: #7b8c98; */
	background: #30404f;

}

/*------------------------------------------------------------------------------------------------------------------------------------------------
    mobile
------------------------------------------------------------------------------------------------------------------------------------------------*/

.mobile-btn {
    display: inline-block;
    vertical-align: middle;
    padding: 20px;
}
.mobile-btn span {
    width: 25px;
    height: 2px;
    background: #173754;
    display: block;
    margin: 4px 0;
}

.mobile-header {
    position: relative;
    display: none;
    background: #fff;
    padding: 30px 0;
    z-index: 10;
    width: 100%;
}
.mobile-header .logo {
    width: calc(100% - 300px);
    display: inline-block;
    padding-left: 30px;
    vertical-align: middle;
}
.mobile-header .logo img {
    width: 250px;
}

.mobile_nav {
    position: fixed;
    z-index: 10;
    width: 100%;
    background: #425465;
    top: 0;
    bottom: 0;
    visibility: hidden;
    opacity: 0;
    transition: .5s ease all;
}
.mobile_nav.open {
    visibility: visible;
    opacity: 1;
}
.mobile_nav--inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    height: 100%;
}
.mobile_nav--inner .close {
    position: absolute;
    right: 0;
    top: 0;
    font-size: 40px;
    padding: 35px 30px;
    font-weight: 100;
    line-height: 0.5;
    cursor: pointer;
    color: #fff;
}
.mobile_nav--inner .hide-on-mobile {
    display: none;
}
.mobile_nav--inner .header_nav {
    font-family: 'High Voltage Rough';
    text-transform: uppercase;
}
.mobile_nav--inner .header_nav li {
    list-style: none;
}
.mobile_nav--inner .header_nav a {
    color: #fff;
    font-size: 30px;
}

.mobile_nav--inner .social li {
    display: inline-block;
}
.mobile_nav--inner .social a {
    color: #fff;
    font-size: 25px;
    display: block;
    padding: 20px 10px;
}

.mobile_nav .reserve-btn {
    display: none;
}


/*------------------------------------------------------------------------------------------------------------------------------------------------
    hero--slider
------------------------------------------------------------------------------------------------------------------------------------------------*/
.hero--slider {
    height: calc(100vh - 125px);
    margin-top: 125px;
    position: relative;
}
.hero--slider.offset {
    height: calc(100vh - 173px);
    margin-top: 173px;
}
.hero--slider .slick-list,
.hero--slider .slick-track {
    height: 100%;
}
.hero--slider .slick-track {
    transition: all 1s ease-in-out;
}
.hero--slider .slick-slide {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.hero--slider-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: all 8s ease-in-out;
}

.hero--slider .slick-slide img {
    display: none;
}
.hero--slider .slick-slide h1 {
    font-size: 120px;
/*     -webkit-text-stroke-color: #fff; */
    margin-bottom: -43px;
    z-index: 1;
    width: 700px;
    line-height: 0.9;
/*     text-shadow: 0 0 130px rgba(0,0,0,0.45); */
    font-family: 'High Voltage Rough';
    color: #FFF;
}
.hero--slider .slick-slide h1 + div {
/*     background: #F5CEB0; */
    max-width: 100%;
    padding: 80px 100px 70px;
    width: 700px;
    margin: 0 100px;
    position: relative;
}

.hero--slider .slick-slide h2 {
/*     font-size: 40px; */
	font-size: 32px;
    line-height: 1;
    margin-bottom: 15px;
    color: #FFF;
    font-family: 'Volte';
}
.hero--slider .slick-slide a:not(.link) {
    color: #173754;
    font-weight: 600;
}

.hero--slider .slick-slide a.link {
/*     color: #fff; */
/*
	color:#173754;
    display: inline-block;
    text-transform: uppercase;
    font-size: 80%;
    position: relative;
    z-index: 1;
    font-weight: 700;
    letter-spacing: 1px;
*/
    color: #FFF;
    font-family: 'High Voltage Rough';
    background: #7B8C98;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px 30px;
    font-size: 25px;
    margin-left: 10px;
    display: inline-block;
    vertical-align: middle;
    font-weight: 400;

}
.hero--slider .slick-slide a.link:hover{
		background: #425465;
}
.hero--slider .slick-slide a.link:hover::after {
    height: 12px;
}
/*
.hero--slider .slick-slide a.link::after {
    background: #173754;
    height: 0;
    content: "";
    width: calc(100% + 16px);
    display: block;
    position: absolute;
    bottom: -4px;
    z-index: -1;
    left: -8px;
    transition: .5s ease all;
}
*/

.hero--slider.slick-initialized {
    -webkit-animation: fadeZoom 2s forwards;
    animation: fadeZoom 2s forwards;
}

.hero--slider .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    background: none;
    border: none;
    color: #fff;
    font-size: 35px;
    margin: 0 30px;
    transition: .5s ease all;
}
.hero--slider .slick-arrow.slick-prev { left: 0; }
.hero--slider .slick-arrow.slick-next { right: 0;}
/*
.hero--slider .slick-arrow:hover {
    color: #173754;
}
*/

/*------------------------------------------------------------------------------------------------------------------------------------------------
    home--intro
------------------------------------------------------------------------------------------------------------------------------------------------*/

.home--intro {
    margin: -55px 300px 0;
    background: #425465;
/*     padding: 40px; */
	padding: 70px;
	text-align: center;
    position: absolute;
    color: #fff;
    z-index: 2;
}

.home--intro a {
    color: #d19000;
    cursor: pointer;
}
/*
.home--intro a:hover {
	color: #7B8C98;
}
*/

.home--intro div {
    padding: 30px;
/*     border: 2px solid #fff; */
    border-radius: 40px;
    position: relative;
    text-align: center;
}
.home--intro div::after {
    content: "";
/*     border: 2px solid #fff; */
    position: absolute;
    left: 10px;
    top: 10px;
    border-radius: 30px;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
}

.home--intro p {
    line-height: 2;
    font-size: 20px;
}
/*------------------------------------------------------------------------------------------------------------------------------------------------
    Sticky - Stay Connected
------------------------------------------------------------------------------------------------------------------------------------------------*/

.sticky {
	width: 250px;
	height: 200px;
	position: fixed;
	bottom: -80px;
	right: 100px;
	z-index: 5;
	display: block;
}

.sticky.hide, #hide.hide{
	display: none !important;
}

/*------------------------------------------------------------------------------------------------------------------------------------------------
    menu
------------------------------------------------------------------------------------------------------------------------------------------------*/
#tabs-4 h2, #tabs-3 h2 {
    margin-top: 0px;
}




.menu {
    padding: 400px 300px 200px;
    position: relative;
    background: #E7EEF28A;
    background-image: url('../img/illustration-1-copy.png');
    background-repeat: no-repeat;
	background-position: center;
	background-size: cover;

}

.menu::before{
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgb(245,248,249);
	background: radial-gradient(circle, rgba(245,248,249,1) 0%, rgba(245,248,249,1) 26%, rgba(245,248,249,0.04103648295255602) 100%); 
	z-index: -1;
}
.menu > img.menu-art:first-child {
    opacity: 0.2;
    position: absolute;
    top: -10px;
    display: block;
    left: 62%;
    width: 700px;
    transform: translateX(-50%);
}
.menu > img.menu-art:nth-of-type(2) {
    width: 500px;
    opacity: 0.15;
    position: absolute;
    bottom: -200px;
    left: 100px;
    clip: rect(0px,500px,560px,0px);
}

.legend {
    text-align: center;
    margin-bottom: 40px;
    margin-top: 70px;
}
.legend p {
    display: inline-block;
    margin: 0 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    font-weight: 600;
    color: #D19000;
}
.legend p span {
    letter-spacing: 0;
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
}
.legend p span.icon-vegan {
    font-size: 18px;
}

.tabs {
    position: relative;
    z-index: 1;
}
.tabs > h1:first-child {
    letter-spacing: 3px;
	font-size: 65px;
	text-transform: uppercase;
    display: inline-block;
    vertical-align: middle;
    margin: 0 70px 0 0;
        color: #D19000;

}

.tabs > h1:nth-child(2)  {
	font-family: 'Volte';
	text-transform: uppercase;
	font-weight: 600;
}
.tabs > ul {
    display: inline-block;
    vertical-align: middle;
}
.tabs > ul > li {
    display: inline-block;
    vertical-align: middle;
    padding: 0 15px;
}
.tabs > ul > li > a {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: #153754;
/*     font-size: 25px; */
	font-size: 23px;
    padding: 0 5px;
    letter-spacing: 2px;
    position: relative;
    font-weight: 600;
}
.tabs > ul > li > a::before {
    content: "";
    position: absolute;
    z-index: -1;
    height: 0;
    width: 100%;
    left: 0;
    bottom: -5px;
    transition: .5s ease all;

}
}

.tabs > ul > li > a:hover::before {
	    background: url('../img/hover-line.png') !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: right !important;
    height: 5px !important;
}


.tabs > ul > li.ui-tabs-active  > a::before,
.tabs > ul > li > a:hover::before {
    background: url('../img/hover-line.png') !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: right !important;
    height: 5px !important;
}


.tab-content {
    margin: 100px 0 0 60px;
}
.tab-content h1 {
    line-height: 1;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #425465;
/*     font-size: 45px; */
	font-size: 40px;
	font-family: 'High Voltage Rough';    
}
.tab-content h1 span {
    display: block;
	font-size: initial;
	font-weight: 600;
    color: #7B8C98;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 5px;
    font-family: 'Volte';
}
.tab-content h2 {
    color: #e1ab43;
    font-size: 30px;
    margin: 40px 0 15px;
}
#tabs-2 h2 {
    margin-top: 0;
}
#menu-beer-block_5da9e34d58ff3 { margin-bottom: 60px;}
@media screen and (max-width: 900px) {
	#menu-beer-block_5da9e40fbf595, #menu-wine-block_5da9e1534b53e, .wp-block-lazyblock-menu-callout.lazyblock-menu-callout-V1j9O, #menu-item-block_5da9e2314b54d {
	    margin-bottom: 60px;
	}	
	
}
.tab-content h2 + p {
    font-size: inherit;
    font-size: 22px;
    line-height: 1.2;
    padding-right: 75px;
}

.tab-content h3 {
    font-size: 16px;
    color: #e1ab43;
    font-weight: 700;
    letter-spacing: 1px;
    margin: 40px 0 10px;
    text-transform: uppercase;    
}

.tab-content p {
    font-size: 16px;
    font-style: italic;
    color: #425465;
}

/*GUTENBERG ------------------ menu item block / drink block*/
.menu-item, 
.drink-item {
    margin: 20px 0;
}
.menu-item header,
.drink-item header {
    font-size: 20px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: end;
    align-items: flex-end;
}
.menu-item-title,
.tab-content .drink-item h3,
.drink-item h3 {
    color: #425465;
    text-transform: none;
    letter-spacing: 0;
    font-weight: normal;
    -ms-flex: 1;
    flex: 1;
    font-size: 20px;
    margin-top: 0;
    margin-bottom: 0;
    font-weight: 600;
    text-transform: uppercase;
    margin-right: 10px;
}
.tab-content .menu-item p,
.menu-item p,
.tab-content .drink-item p,
.drink-item p {
    padding-right: 75px;
    color: #7B8C98;
    font-style: italic;
}
.tab-content .menu-item p:first-of-type,
.menu-item p:first-of-type,
.tab-content .drink-item p:first-of-type,
.drink-item p:first-of-type {
    margin-top: 3px;
}

.menu_adds {
    text-transform: uppercase;
    font-size: 70%;
    font-weight: 600;
    margin-left: 0;
}
.menu_adds li {
    margin: 1px 0;
    display: block;
    color:#425465;
    font-style: italic;
    text-transform: none;
}
.addition span {
    color: #425465 !important;
}
.addition span {
    color: #7B8C98 !important;
}

.price{ 
	color:#7B8C98;     
	font-family: 'High Voltage Rough';
 }

.dairy_free {
    position: relative;
    margin-right: 2px;
    font-family: 'Volte';
    font-size: 10px;
    font-weight: 600;
    padding: 5px 6px;
    vertical-align: 3px;
}
.dairy_free::before {
	content: '';
	position: absolute !important;
	width: 25px;
	left: 0px;
	top: -4px;
	height: 25px;
	display: block;
	font-size: 22px !important;
	position: relative;
	background: url('../img/DF.svg');
	background-repeat: no-repeat;
	background-size: contain;
}

.menu-item-title .dairy_free::before {
   	background: url('../img/DF-blue.svg');
	background-repeat: no-repeat;
	background-size: contain;
	top: -5px;
}
.gluten_free {
    position: relative;
    margin-right: 2px;
	font-family: 'Volte';    
	font-size: 10px;
    font-weight: 600;
    padding: 5px 6px;
    vertical-align: 3px;
}
.gluten_free::before {
    content: "";
    width: 19px;
    left: 3px;
    top: 2px;
    height: 19px;
    border-radius: 4px;
    transform: rotate(45deg);
    border: 2px solid #D19000;
    display: block;
    position: absolute;
}

.page-template-template-events .gluten_free::before { 
	top:0 !important;
	border: 2px solid #425465 !important;
}

.page-template-template-events .tab-content .menu-item p, .menu-item p, .tab-content .drink-item p, .drink-item p{
	color: #7B8C98 !important;
}

.menu-item-title .vegetarian {
    padding: 0 3px;
    padding-top: 2px;
}

.vegetarian {
    border: 2px solid;
    font-family: 'Volte';
    font-weight: 600;
    font-size: 12px;
    border-radius: 30px;
    text-align: center;
    padding: 0 6px;
    margin-right: 2px;
    vertical-align: 2px;
    padding-top: 2px;
}

.icon-vegan {
    margin-right: 2px;
    display: inline-block;
}


/*GUTENBERG ------------------ menu side block*/
.menu-side {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}
.menu-side p {
    margin: 2px 0;
}
.menu-side p:not(.price) {
    -ms-flex: 1;
    flex: 1;
}
.menu-side p.price {
    font-weight: 600;
}


/*GUTENBERG ------------------ menu upgrade block*/
.menu-upgrade p{
    text-transform: uppercase;
    font-size: 70%;
}

/*GUTENBERG ------------------ menu callout block*/

.wp-block-lazyblock-menu-callout {
    padding: 60px;
    border: 2px solid #e1ab43;
    border-radius: 40px;
    margin: 40px 0 50px;
    position: relative;
}

.wp-block-lazyblock-menu-callout::before {
    content: "";
    border: 2px solid #e1ab43;
    position: absolute;
    left: 10px;
    top: 10px;
    border-radius: 30px;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
}

.wp-block-lazyblock-menu-callout h2 {
    margin-top: 0;
}

.wp-block-lazyblock-menu-callout > h4:first-child {
    position: absolute;
    top: -11px;
    text-align: center;
    left: 50%;
    background: #F6ECDC;
    transform: translateX(-50%);
    padding: 5px 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 500;
    color: #e1ab43;
    font-size: 115%;
    white-space: nowrap;
}
.wp-block-lazyblock-menu-callout .wp-block-columns {
    margin-bottom: 0;
}
.wp-block-lazyblock-menu-callout .wp-block-column {
    margin-bottom: 0;
}

/*GUTENBERG ------------------ column block*/
.wp-block-column:not(:first-child) {
    margin-left: 75px;
}

.wp-block-column > .wp-block-lazyblock-menu-callout:first-child,
.wp-block-column > .menu-wine:first-child,
.wp-block-column > .menu-beer:first-child  {
    margin-top: 0;
}

/*GUTENBERG ------------------ menu wine block / beer block*/
.menu-wine, 
.menu-beer {
    margin: 20px 0;
}
.menu-wine > h2:first-child,
.menu-beer > h2:first-child {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 0;
}
.menu-wine > h2:first-child span.price,
.menu-beer > h2:first-child span.price {
    font-size: 50%;
    -ms-flex: 1;
    flex: 1;
    text-align: right;
    font-family: 'Red Hat Display', sans-serif;
    color: #153754;
}
.menu-beer > h2:first-child span.price {
    text-transform: uppercase;
}
.menu-wine li,
.menu-beer li {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    list-style: none;
    margin: 5px 0;
}
.menu-wine li h4,
.menu-beer li h4 {
    font-family: Baton, sans-serif;
    color: #153754;
    font-size: 20px;
    -ms-flex: 1;
    flex: 1;
}
.menu-wine li h4 span {
    display: block;
    font-family: 'Red Hat Display', sans-serif;
    font-size: 15px;
    margin: 2px 0 9px;
}
.menu-beer li h4 span {
    color: #e1ab43;
    font-family: 'Red Hat Display', sans-serif;
    font-size: 85%;
    font-weight: 500;
    margin-left: 5px;
}
.menu-wine-list + h3 {
    margin-top: 20px;
}


.menu-anchor img {
    width: 30px;
}

.menu-anchor {
    background: #d19000;
    padding: 12px 18px;
    height: auto;
    display: block;
    text-align: center;
    left: 0;
    right: 0;
    margin-left: 60px;
    position: relative;
    width: 65px;
/*     bottom: -230px; */
	bottom: 82px;
    z-index: 1;
}

/*------------------------------------------------------------------------------------------------------------------------------------------------
    parallax
------------------------------------------------------------------------------------------------------------------------------------------------*/

.parallax {
    position: relative;
    overflow: hidden;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.parallax h1 {
    display: block;
    text-align: center;
    color: transparent;
    letter-spacing: 3px;
    font-size: 80px;
    text-transform: uppercase;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: #fff;
    display: inline-block;
    vertical-align: middle;
    line-height: 0.9;
}

.parallax-block {
    height: 800px;
}
.parallax-block.parallax h1 {
    font-size: 140px;
    -webkit-text-stroke-width: 3px;
}

.credit {
    position: relative;
    display: flex;
/*     justify-content: end; */
	justify-content: center;
    width: 100%;
    align-items: flex-end;
    margin-right: 80px;
    bottom: -30%;
    color: #425465;
    font-weight: 500;
    opacity: 1;
    font-size: 12px;
}

.credit span {font-weight: 600; margin-right: 7px;}


.credit.open{
	opacity: 1;
}

.credit.credit-2 {
    color: #FFF;
    bottom: -38%;
}



/*------------------------------------------------------------------------------------------------------------------------------------------------
    animations
------------------------------------------------------------------------------------------------------------------------------------------------*/
/*

@-webkit-keyframes fadeZoom { 
    0% {
        -webkit-transform:scale3d(1.05,1.05,1);
        opacity:0;
        transform:scale3d(1.05,1.05,1)
    } to {
        -webkit-transform:none;
        opacity:1;
        transform:none
    }
}
@keyframes fadeZoom{
    0%{
        -webkit-transform:scale3d(1.05,1.05,1);
        opacity:0;
        transform:scale3d(1.05,1.05,1)
    } to {
        -webkit-transform:none;
        opacity:1;
        transform:none
    }
}

.fadeUp {
*/
/*     transition-duration: 0.75s; */
/*
    transition-duration: 0.60s;

    transition-property: transform, opacity;
    transition-delay: 0s;
    transition-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
}

.fadeZoom {
    -webkit-animation: fadeZoom 1.4s forwards;
    animation: fadeZoom 1.4s forwards;
}

.to-load { 
    transform: translate3d(0, 50px, 0);
    opacity: 0;  
}
.loaded { 
    transform: translate3d(0, 0px, 0); 
    opacity: 1; 
}

.delay1 { transition-delay: 0.1s; }
.delay2 { transition-delay: 0.2s; }
.delay3 { transition-delay: 0.3s; }
.delay4 { transition-delay: 0.4s; }
.delay5 { transition-delay: 0.5s; }
.delay6 { transition-delay: 0.6s; }
.delay7 { transition-delay: 0.7s; }
.delay8 { transition-delay: 0.8s; }
.delay9 { transition-delay: 0.9s; }
.delay10 { transition-delay: 1s; }
*/

/*------------------------------------------------------------------------------------------------------------------------------------------------
    page-template-default
------------------------------------------------------------------------------------------------------------------------------------------------*/
.main-content {
    padding: 100px 0 200px;
    margin-top: 125px;
    color: #425465;
}


.main-content a {
    color: #425465;
}

/*------------------------------------------------------------------------------------------------------------------------------------------------
    page-template-EVENTS
------------------------------------------------------------------------------------------------------------------------------------------------*/
.page-template-template-events .parallax-block {
    height: 550px;
}

.page-template-template-events .main-content {
    padding: 0px 0 200px;
}

.page-template-template-events h1 {
    color: #fff;
    position: relative;
    top: -300px;
    text-align: center;
}

.page-template-template-events h2{
	font-family: 'High Voltage Rough';
	font-size: 55px;
	text-transform: uppercase;
	color: #425465;
	padding-bottom: 20px;
}

.page-template-template-events h3 {
    font-family: 'Volte';
    text-transform: uppercase;
    font-weight: 600;
    font-size: 30px;
    color: #425465;


}
.page-template-template-events h4 {
    font-weight: 600;
    color: #425465;

}
.page-template-template-events h5 {
    color: #425465;

}

.page-template-template-events p {
    color: #425465;

}

.page-template-template-events .wp-block-buttons {
	font-family: 'High Voltage Rough';
	text-transform: uppercase;
	border-radius: 0 !important;
}

.transparent-btn:hover{
	background: #425465 !important;
	color: #fff !important;

}

a.blue:hover{
	background: #D19000 !important;
}

a.grey-btn:hover{
	background: #425465 !important;
}

 .phone-blue-btn:hover{
	 color: #D19000 !important;
 }
 
 .phone-grey-btn:hover{
	color: #425465 !important;
 }


/*
.yellow {
    color: #d19000;
}
*/

img.centered {
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.aligncenter{
    display: block;
    margin-left: auto;
    margin-right: auto;
}
 
img.alignright {
  clear: both;
display: block;
margin-left: auto;
}
 
img.alignleft {
    padding: 4px;
    margin: 0 7px 2px 0;
    display: inline;
}
/*------------------------------------------------------------------------------------------------------------------------------------------------
    404
------------------------------------------------------------------------------------------------------------------------------------------------*/

.error404 .main-content {
    text-align: center;
}

/*------------------------------------------------------------------------------------------------------------------------------------------------
    location + hours
------------------------------------------------------------------------------------------------------------------------------------------------*/

.location-hours {
    position: relative;
    z-index: 1;
    margin-top: -70px;
    background: #fff;
	background-image: url('../img/illustration-2.png');
	background-repeat: no-repeat;
	background-size: cover;
	background-position:center bottom;
}
.location-hours .art {
    position: absolute;
    opacity: 0.2;
    width: 600px;
    left: 48%;
    transform: translateX(-50%);
    z-index: 1;
    bottom: 70px;
}

.location--box,
.hours--box {
    padding: 70px 110px;
    display: inline-block;
    font-size: 125%;
    width: 550px;
}

.location--box{
	position: relative;
	top: -50px;
}

.hours--box.delivery {
    margin-left: 27%;
    margin-top: 20px !important;
}
.hours--box.delivery p {font-size: 23px; position: relative; }
.hours--box.delivery a {
    color: #153754;
}
.hours--box.delivery:hover {
    background: #e1ab43;
    cursor: pointer;
}
/* .hours--box.delivery a:hover{color: white;} */

/*
.hours--box.delivery a.link::after{
 background: #e1ab43;
    height: 0;
    content: "";
    width: calc(100% + 16px);
    display: block;
    position: absolute;
    bottom: -4px;
    z-index: -1;
    left: -8px;
    transition: .5s ease all;
}
*/

.location--box {
    background: #7B8C98;
    margin-left: 30%;
    transform: translateX(-50%);
    color: #fff;
}
.hours--box {
    margin-top: 100px;
    background: #425465;
    color: #fff;
    z-index: 1;
    margin-left: 70%;
    margin-bottom: -70px;
    transform: translateX(-50%);
    position: relative;
}

.hours--box::after {
    content: '';
    position: absolute;
    background: url('../img/birds.svg');
    width: 120px;
    height: 120px;
    right: -140px;
	background-repeat: no-repeat;
	background-size: contain;
	top: -30px;
}

.location--box h1,
.hours--box h1 {
    color: #FFF;
    letter-spacing: 3px;
/* 	font-size: 70px; */
	font-size: 52px;
	text-transform: uppercase;
    display: inline-block;
    vertical-align: middle;
    margin: 0 0 10px 0;
}

/*
.location--box p {
    margin-left: 30px;
}
*/

.location--box p, .hours--box p {
    font-size: 18px;
}

.hours--box ul {
    margin-left: 30px;
}
.hours--box li {
    list-style: none;
    line-height: 1.4;
}
.hours--box li span {
    display: inline-block;
    width: 130px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 50%;
    color: #fff;
    font-family: 'Red Hat Display', sans-serif;
}

.location--box p:first-of-type {
    padding-bottom: 20px;
}
.location--box p {
    padding-bottom: 20px;
}
/*------------------------------------------------------------------------------------------------------------------------------------------------
    google map
------------------------------------------------------------------------------------------------------------------------------------------------*/
.gm-style-iw.gm-style-iw-c {
    width: 300px;
}

.acf-map {
	width: 100%;
	height: 600px;
	position: relative;
}
/* fixes potential theme css conflict */
.acf-map img {
   max-width: inherit !important;
    width: 200px;
}

.acf-map .gm-style .gm-style-iw-c {
    padding: 0;
}
.acf-map .gm-style .gm-style-iw-t::after {
    display: none;
}
.acf-map .poi-info-window {
    padding: 15px;
}

.marker-img {
    width: 100%;
    height: 90px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.marker-info h2 {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Volte';
    font-weight: 600;
    color: #425465;
    font-size: 16px;
}
.marker-info {
    text-align: center;
    padding: 20px;
    font-weight: 500;
    font-family: 'Volte';
    color: #425465;
}


.gm-ui-hover-effect {
    right: 0 !important;
    top: 0 !important;
}

.poi-info-window div, .poi-info-window a {
    color: #143450;
}
.poi-info-window .title {
    font-size: 20px;
    line-height: 1.1;
    margin-bottom: 10px;
    font-family: 'Volte';
    font-weight: 600;
}

.gm-style-pbc {
    background: #425465;
    width: auto !important;
    height: auto !important;
    left: 50% !important;
    transform: translateX(-50%);
    padding: 10px 30px !important;
    border-radius: 50px;
    bottom: 15px;
    top: auto !important;
    margin: 25px 0 0 !important;
}
.gm-style-pbt {
    top: 0%;
    -webkit-transform: translateY(0%);
    -ms-transform: translateY(0%);
    transform: translateY(0%);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 15px;
    font-family: 'Volte';
    font-weight: 600;
}


/*------------------------------------------------------------------------------------------------------------------------------------------------
    contact
------------------------------------------------------------------------------------------------------------------------------------------------*/
.contact .main-content {
/*     background: #FFF; */
	background: #E7EEF28A;
	padding-top: 0px;
    padding-bottom: 1px;
    background-image: url('../img/illustration-1-copy.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
}

.contact .main-content .parallax-block {
  position: absolute;
  width: 100%;
  top: 0;
/*   background-position: -395.385px 130px !important; */
}

.contact .main-content .parallax.parallax-block {
/*     background-position: 0px -200px !important; */
    background-repeat: no-repeat !important;
}

.contact .main-content h1 {
    margin-bottom: -70px !important;
    z-index: 2;
    margin-top: -350px !important;
    color: #fff;
/* 	font-size: 90px; */
	font-size: 80px;
	position: relative;
	display: block;
	margin: 0 0 50px;
	text-align: center;
	font-family: 'High Voltage Rough';
	text-transform: uppercase;
	letter-spacing: 3px;
}
.contact .gform_wrapper {
	margin-bottom: 100px;
}
.contact .gform_wrapper form {
    width: 800px;
/*     padding: 100px; */
	padding: 80px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
/*     background: #7b8c98; */
	background: #425465;
}
.gform_wrapper .gform_heading h3.gform_title {
    display: none;
}
.gform_wrapper .gform_body .gfield_required {
    display: none;
}
.gform_wrapper .gform_body .gfield {
    margin-bottom: 45px;
}
.gform_wrapper .gform_body label.gfield_label {
/*
    font-family: Baton, sans-serif;
    color: #fff;
    letter-spacing: 0;
    font-size: 25px;
    font-weight: normal;
*/
	color: #fff;
	font-size: 20px;
	text-transform: uppercase;
	font-family: 'Volte';
	font-weight: 600;
}
.gform_wrapper .gform_body input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]) {
    background: none;
    border: none;
    color: #fff;
    border-bottom: 2px solid #fff;
    padding: 0 0 5px;
    font-weight: 500;
}
.gform_wrapper .gform_body textarea {
    border: 2px solid #fff;
    background: none;
    padding: 15px 20px;
    color: #fff;
    font-weight: 500;
}

.gform_wrapper .gform_body textarea::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #FFF !important;
  opacity: 1; /* Firefox */
}

.gform_wrapper .gform_body textarea:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #FFF !important;
}

.gform_wrapper .gform_body textarea::-ms-input-placeholder { /* Microsoft Edge */
  color: #FFF !important;
}
.gform_wrapper .gform_body .field_sublabel_below .ginput_complex.ginput_container label {
    margin: 6px 0 0;
    font-family: 'Volte';
    color: #fff;  
}

.gform_wrapper .gform_body ::-webkit-input-placeholder { color: #153450; opacity: 1;}
.gform_wrapper .gform_body ::-moz-placeholder { color: #153450; opacity: 1;}
.gform_wrapper .gform_body :-ms-input-placeholder { color: #153450; opacity: 1;}
.gform_wrapper .gform_body ::-ms-input-placeholder { color: #153450; opacity: 1;}
.gform_wrapper .gform_body ::placeholder { color: #153450; opacity: 1;}

.gform_wrapper .gform_footer {
    text-align: center;
}
.gform_wrapper .gform_footer input[type="submit"].button {
	color: #FFF;
	font-family: 'High Voltage Rough';
	background: transparent;
	text-transform: uppercase;
	letter-spacing: 1px;
	padding: 12px 30px;
	font-size: 25px;
	margin-left: 10px;
	display: inline-block;
	vertical-align: middle;
	font-weight: 400;
	border: none;
}

.gform_wrapper .gform_footer input[type="submit"].button:hover {
/* 	background: #425465; */
	background: #7b8c98;
}

.gform_wrapper.gf_browser_gecko .gform_body select {
    background: none;
    box-shadow: none;
    color: #153450;
    max-width: 100%;
    padding: 15px 20px;
    -webkit-appearance: none;
    -moz-appearance: none;
    text-indent: 1px;
    text-overflow: '';
    border: 2px solid #153450;
    font-weight: 500;
}
.gform_wrapper .gform_body select:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 #153450;
    font-weight: 500;
}

/*validation*/
.gform_wrapper.gform_validation_error .validation_message {
    color: #9F4E25;
}

.gform_wrapper.gform_validation_error .gform_body ::-webkit-input-placeholder { color: #9F4E25; opacity: 1;}
.gform_wrapper.gform_validation_error .gform_body ::-moz-placeholder { color: #9F4E25; opacity: 1;}
.gform_wrapper.gform_validation_error .gform_body :-ms-input-placeholder { color: #9F4E25; opacity: 1;}
.gform_wrapper.gform_validation_error .gform_body ::-ms-input-placeholder { color: #9F4E25; opacity: 1;}
.gform_wrapper.gform_validation_error .gform_body ::placeholder { color: #9F4E25; opacity: 1;}

.gform_wrapper.gform_validation_error div.validation_error {
    border: none;
    color: #9F4E25;
    font-weight: 500;
    line-height: 1.4;
    padding: 0;
}
.gform_wrapper.gform_validation_error li.gfield.gfield_error {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
}
.gform_wrapper.gform_validation_error li.gfield_error input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]) {
    border: none;
    border-bottom: 2px solid #9F4E25;
}
.gform_wrapper.gform_validation_error li.gfield_error textarea {
    border: 2px solid #9F4E25;    
}

.gform_wrapper.gform_validation_error li.gfield_error div.ginput_complex.ginput_container label, 
.gform_wrapper.gform_validation_error li.gfield_error ul.gfield_checkbox, 
.gform_wrapper.gform_validation_error li.gfield_error ul.gfield_radio {
    color: #9F4E25;
}

.gform_wrapper.gform_validation_error .field_description_below .gfield_description {
    margin: 10px 0 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-top: 0;
    font-size: 12px;
}

#input_1_1_3, #input_1_2 {
    margin-left: 0;
}

.gform_confirmation_wrapper  {
	 position: relative !important;
	text-align: center !important;
	top: 500px !important;
	color: #FFF;
	background: #425465;
	padding: 120px;
	height: auto;
	margin-top: -190px;
	width: 1500px;
	margin: -350px auto auto;
	z-index: 55555;
}

#gform_confirmation_wrapper_1{
		 position: relative !important;
	text-align: center !important;
	top: 500px !important;
	color: #FFF;
	background: #425465;
	padding: 120px;
	height: auto;
	width: 1500px;
	margin: -350px auto auto;
	z-index: 55555;
}
/*------------------------------------------------------------------------------------------------------------------------------------------------
    modal
------------------------------------------------------------------------------------------------------------------------------------------------*/
.modal {
  position: fixed; 
  z-index: 15;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  text-transform: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: ease 0.25s transform, ease 0.25s opacity, ease 0.25s visibility;
}
.modal.open {
  opacity: 1;
  visibility: visible;
  background: rgba(23, 55, 84, 0.6);
  transition: ease 0.5s transform 0.375s, ease 0.5s opacity 0.375s, ease 0.5s visibility 0.375s;
}

.modal-content {
    background: #F5CEB0;
    color: #173754;
    width: 700px;
    margin: 0 auto;
    max-width: 100%;
    padding: 80px;
    text-align: center;
    position: relative;
}
.modal-close {
    position: absolute;
    cursor: pointer;
    text-decoration: none;
    font-size: 25px;
    display: block;
    text-transform: uppercase;
    transition: .5s ease all;
    left: 50%;
    top: -15px;
    background: #fff;
    color: #173754;
    line-height: 1;
    border-radius: 30px;
    padding: 4px 9px;
    transform: translateX(-50%);
}
.modal-close:hover {
    transform: translateX(-50%) scale(1.1);
    box-shadow: 0 0 30px rgba(0,0,0,0.1);
}

.modal a {
    font-weight: 600;
    color: #173754;
}

.modal h2 {
    font-family: Baton, sans-serif;
    font-size: 35px;
    line-height: 1.1;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.modal small {
    line-height: 1.3;
    display: block;
    margin-top: 20px;
    font-size: 65%;
    opacity: 0.5;
}


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

.footer {
/*     background: #F5CEB0; */
background: url('../img/footer-img.jpg');
background-size: cover;
background-repeat: no-repeat;
background-position: center bottom;
}
.footer > .container:first-child {
    position: relative;
    padding-top: 223px;
}

.footer .logo {
    position: relative;
    width: 100%;
    top: -20px;
    left: 0;
    z-index: 1;
    right: 0;
    height: 100px;
    background: #fff;
}

.footer--contact {
    text-align: center;
/*     font-family: Baton, sans-serif; */
    font-size: 22px;
    position: relative;
    z-index: 1;
}
.footer--contact p strong {
    font-weight: 600;
}
.footer--contact p a {
    display: block;
    color: #425465;
}
.footer--contact p {
    display: block;
    color: #425465;
    font-family: 'Volte';
    font-size: 20px;
}
.footer .social {
    background: #FFF;
}
.footer .social li {
    display: inline-block;
}
.footer .social a {
    color: #425465;
    display: block;
    padding: 10px 5px;
}

.footer .social a:hover, .footer--contact p a:hover {
    color: #D19000;
}

.footer .art {
    position: absolute;
    opacity: 0.2;
    top: 15px;
    right: 80px;
    width: 500px;
}
.circa {
    margin-top: 20px;
    width: 200px;
}
/*------------------------------------------------------------------------------------------------------------------------------------------------
    footer--newsletter
------------------------------------------------------------------------------------------------------------------------------------------------*/

.footer--newsletter {
    padding: 80px 80px 60px 80px;
    background: #425465;
    margin-top: 270px;
    margin-bottom: 200px;
    z-index: 1;
    position: relative;
}
.footer--newsletter h3 {
    color: #fff;
    font-size: 45px;
    position: relative;
    z-index: 1;
    display: block;
    margin: 0 0 50px;
    text-align: center;
    font-family: 'High Voltage Rough';
    text-transform: uppercase;
    letter-spacing: 3px;
}
.footer--newsletter h3::after {
   background: url('../img/footer-line.png');
	background-repeat: no-repeat;
	content: "";
	position: absolute;
	bottom: -5px;
	height: 5px;
	width: 280px;
	z-index: -1;
	left: 50%;
	transform: translateX(-50%);
	background-size: cover;
}

.footer--newsletter label {
    color: #fff;
    font-size: 15px;
    text-transform: uppercase;
    font-family: 'Volte';
}
.footer--newsletter input:not([type="submit"]) {
    border: none;
    border-bottom: 1px solid #FFF;
    background: none;
    padding: 0 0 10px;
    margin-bottom: 35px;
    color: #fff;
    font-size: 16px;
    width: 100%;
    transition: .5s ease all;
    margin-left: 0;
    
}
.footer--newsletter input[type="submit"]:hover {
    background: #425465;
}
.footer--newsletter .input-focus input:not([type="submit"]),
.footer--newsletter .not-empty input:not([type="submit"]) {
	border-color: #fff;
}
.footer--newsletter input[type="submit"], .footer--newsletter button[type="submit"]{
    background: none;
    border: none;
    font-family: 'Volte';
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: absolute;
    bottom: 32px;
    right: 0;
    transition: .5s ease all;
    padding: 10px 12px;
    cursor: pointer;
}

#mc-embedded-subscribe:hover {
   background: #7B8C98;
}


.footer--newsletter input[type="submit"]:hover {
    color: #fff;
}

.footer--newsletter form {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-top: 20px;
    position: relative;
}
.footer--newsletter_firstname, 
.footer--newsletter_lastname {
    -ms-flex: 1 0 calc(50% - 10px);
    flex: 1 0 calc(50% - 10px);
}
.footer--newsletter_firstname {
    margin-right: 10px;
}
.footer--newsletter_lastname {
    margin-left: 10px;
}
.footer--newsletter_email {
    display: block;
    -ms-flex: 1 0 calc(100% - 180px);
    flex: 1 0 calc(100% - 180px);
    margin-right: 180px;
}
.footer--newsletter_section {
    position: relative;
}
.footer--newsletter_section label {
    position: absolute;
    top: 0;
    transition: .5s ease all;
}
.footer--newsletter .input-focus label,
.footer--newsletter .not-empty label {
    top: -20px;
    font-size: 12px;
}



.sticky {
	position: fixed;
	bottom: 50px;
	right: -500px;
	z-index: 5;
	transition: all 1s;
	  animation-delay: 5s;
/* 	display: block; */
}
.sticky-img {
	width: 350px;
	
}
.x-img {
	width: 30px;
	position: absolute;
	right: -20px;
	bottom: 160px;
	font-family: 'Volte' !important;
}
