* {
	outline: 0 !important;
	text-decoration: none !important;
}

body {
	font-family: "Nunito Sans", sans-serif;
	font-weight: normal;
	font-size: 14px;
	line-height: 26px;
	color: #818181;
	background: #FFFEFA;
}

p {
	margin: 0 0 25px;
}

a {
	color: #545454;
}

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

ul,
li {
	margin: 0;
	padding: 0;
	list-style: none;
}

a,
a:hover {
	transition: 0.3s all;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {

	font-family: "Nunito Sans", sans-serif;
	font-weight: 500;
	color: #545454;
	margin: 0 0 15px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

h1,
.h1 {
	font-size: 78px;
	line-height: 88px;
}

h2,
.h2 {
	font-size: 26px;
	line-height: 38px;
}

h3,
.h3 {
	font-size: 24px;
	line-height: 38px;
}

h4,
.h4 {
	font-size: 17px;
	letter-spacing: 0.25em;
	line-height: 26px;
}

.container {
	width: 100%;
	max-width: 1170px;
	padding: 0 15px;
}

.wrapper {
	position: relative;
	overflow: hidden;
	padding-top: 124px;
}

.extra-space {
	margin: 0 -30px;
}

.extra-space [class*="col-"] {
	padding: 0 30px;
}

.space {
	padding: 60px 0;
}

.space-top {
	padding-top: 60px;
}

.space-bottom {
	padding-bottom: 60px;
}

/*=== GLOBAL ====*/

.cta-btn {
	min-width: 195px;
	height: 55px;
	line-height: 55px;
	padding: 0 20px;
	font-size: 14px;
	letter-spacing: 0.1em;
	color: #f4f0e5;
	text-transform: uppercase;
	display: inline-block;
	text-align: center;
	border: 1px solid #545454;
	position: relative;
}

.cta-btn span {
	position: relative;
	z-index: 2;
}

.cta-btn:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transition: 0.3s all;
	background: #545454;
}

.cta-btn:hover {
	color: #545454;
}

.cta-btn:hover:before {
	height: 0%;
}

.cta-btn.btn-border {
	border: 1px solid #707070;
	color: #545454;
}

.cta-btn.btn-border:before {
	content: "";
	position: absolute;
	top: auto;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 0%;
	transition: 0.3s all;
	background: transparent;
}

.cta-btn.btn-border:hover {
	color: #f4f0e5;
}

.cta-btn.btn-border:hover:before {
	background: #545454;
	height: 100%;
}

.cta-btn.btn-filled {
	color: #545454;
	border: 1px solid #f4f0e5;
}

.cta-btn.btn-filled:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transition: 0.3s all;
	background: #f4f0e5;
}

.cta-btn.btn-filled:hover {
	color: #f4f0e5;
}

.cta-btn.btn-filled:hover:before {
	height: 0%;
}

.cta-btn.btn-border-white {
	border: 1px solid #f4f0e5;
	color: #f4f0e5;
}

.cta-btn.btn-border-white:before {
	content: "";
	position: absolute;
	top: auto;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 0%;
	transition: 0.3s all;
	background: #f4f0e5;
}

.cta-btn.btn-border-white:hover {
	color: #545454;
}

.cta-btn.btn-border-white:hover:before {
	height: 100%;
}

/*=== HEADER ====*/

header {
	padding: 17px 0;
	background: #f4f0e5;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 777;
	transition: 0.3s all;
}

header.header-scroll {
	padding: 12px 0;
	position: fixed;
}

header .logo {
	max-width: 120px;
	display: table;
	transition: 0.3s all;
}

@media(min-width: 1050px) {

	header .logo {
		max-width: 140px;
	}
	
}

header.header-scroll .logo {
	max-width: 105px;
}

header .container {
	max-width: 1500px;
}

header .cta-btn {
	margin-left: 20px;
}

.nav-menu nav>ul {
	display: flex;
	align-items: center;
}

.nav-menu nav>ul li {
	margin: 0 20px 0 5px;
}

.nav-menu nav>ul li a {
	text-transform: uppercase;
	font-size: 13px;
	letter-spacing: 0.1em;
	color: #545454;
}

.nav-menu nav>ul li a {
	position: relative;
}

.nav-menu nav>ul li a:before {
	content: "";
	background: #545454;
	width: 0%;
	height: 1px;
	position: absolute;
	bottom: -2px;
	left: auto;
	right: 0;
	transition: 0.3s all;
}

.nav-menu nav>ul li a:hover:before {
	width: 100%;
	left: 0;
	right: auto;
}

.nav-menu nav>ul li.current_page_item > a:before {
	width: 100%;
}

/*=== HERO ====*/

.hero {
	background: #545454;
	position: relative;
	padding: 200px 0;
}

.hero:before {
	content: "";
	width: 100%;
	height: 100%;
	background: linear-gradient(#2c2c2c 0%, rgba(45, 45, 45, 0.54) 70.94%, rgba(46, 46, 46, 0) 100%);
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1;
}

.hero > img,
.hero .bg img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero .container {
	position: relative;
	z-index: 2;
}

.hero h1 {
	position: relative;
	margin-bottom: 12px;
	padding-top: 50px;
}

.hero h1:before {
	content: "";
	width: 75px;
	height: 5px;
	background: #f4f0e5;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
}

.hero h1,
.hero p {
	color: #f4f0e5;
}

.hero p {
	font-size: 17px;
	letter-spacing: 0.05em;
	margin: 0;
}

.hero .cta-btn {
	margin-top: 35px;
}

.hero-btns-group {
	display: flex;
	align-items: center;
	justify-content: center;
}

.hero-btns-group a {
	margin: 0 15px;
}

@media(max-width: 600px) {

	.hero-btns-group {
		display: block;
	}

	.hero-btns-group a {
		margin: 10px 15px !important;
		width: calc(100% - 30px);
	}

}

/*=== LIST / FEATURES ====*/

.features {
	padding: 25px 0;
	background: #545454;
}

.features-list {
	display: flex;
	/*flex-wrap: wrap;
	justify-content: space-between;*/
	margin: 0 -15px;
}

.features-list > div {
	padding: 0 15px;
}


@media(max-width: 585px) {

.features-list {
	justify-content: center;
	margin: 0 -10px;
	flex-wrap: inherit;
}
	
.features-list > div {
	padding: 0 10px 0px;
}

.features-list > div .item {
	flex-direction: column;
	text-align: center;
	height: auto;
}

.features-list > div:first-child .item span {
	width: 100px;
}

.features-list > div .item span {
	padding-top: 10px;
	font-size: 11px;
	width: 135px;
}

}

.features .item {
	padding: 15px 0;
	display: flex;
	align-items: center;
}

.features .item span {
	text-transform: uppercase;
	padding-left: 20px;
	font-size: 16px;
	line-height: 27px;
	position: relative;
	top: 2px;
	color: #f4f0e5;
	letter-spacing: 0.2em;
}

.features .item span a {
	color: #f4f0e5;
}

.list .inner {
	background: #f4f0e5;
	padding: 60px 70px;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.list .col-md-7 {
	width: calc(66.66666% - 30px);
	padding-right: 40px;
}

.list .col-md-5 {
	width: calc(33.33333% + 30px);
}

.list ul li {
	background: url(../img/icon-helena.svg) no-repeat 0px 4px;
	padding-left: 38px;
	margin-top: 8px;
	background-size: 26px;
}

/*=== IMAGE BANNER ====*/

.image-banner {
	padding-bottom: 30px;
	padding-top: 45px
}

.image-banner h3.text-center+div p {
	margin: -5px auto 20px;
	max-width: 1000px;
}

.image-banner .item {
	margin-top: 30px;
	margin-bottom: 30px;
	position: relative;
	transition: 0.3s all;
	top: 0;
}

.image-banner .item:hover {
	top: -10px;
}

.image-banner .item a:before {
	transition: 0.3s all;
}

.image-banner .item:hover a:before {
	opacity: 0.7;
}

.image-banner .item a {
	position: relative;
	display: table;
	width: 100%;
}

.image-banner .item a:before {
	content: "";
	background: linear-gradient(#2c2c2c 0%, rgba(59, 59, 59, 0) 100%);
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0.4;
}

.image-banner .item>a>img {
	height: 300px;
	object-fit: cover;
	object-position: center;
	width: 100%;
}

.image-banner .item .inner span {
	text-transform: uppercase;
	font-size: 16px;
	line-height: 27px;
	color: #f4f0e5;
	letter-spacing: 0.2em;
	text-align: center;
}

.image-banner .item .inner {
	position: absolute;
	top: 30px;
	left: 30px;
	z-index: 2;
	border: 1.5px solid #fff;
	width: calc(100% - 60px);
	height: calc(100% - 60px);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 30px;
}

/*=== IMAGE TEXT ====*/

.bg-gradiant {
	background: linear-gradient(#fbf8f1 0%, rgba(251, 248, 241, 0) 100%);
}

.image-text p:last-of-type {
	margin-bottom: 0;
}

.image-text .cta-btn {
	margin-top: 35px;
}

.image-text hr {
	border-top: 1px solid #c9c9c9;
	margin: 60px 0 -60px;
	opacity: 1;
	opacity: 0.5;
}

.insta-wrap h3 a {
    color: #5472A0;
    text-decoration: underline !important;
    text-underline-offset: 4px;
}

/*=== FOOTER ====*/

footer {
	background: #363636;
	position: relative;
	padding: 60px 0 100px;
}

footer .footer-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

footer .container {
	position: relative;
	z-index: 2;
}

footer p {
	color: #f4f0e5;
}

footer .disclaimer p {
	opacity: 0.54;
}

footer .flogo {
	max-width: 145px;
	display: table;
	margin: 0 auto 25px;
}

.footer-menu ul {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 0 25px;
}

.footer-menu ul li {
	margin: 0 25px;
}

.footer-menu ul li a {
	text-transform: uppercase;
	font-size: 11px;
	letter-spacing: 0.1em;
	color: #f4f0e5;
	position: relative;
}

.footer-menu ul li a:before {
	content: "";
	background: #f4f0e5;
	width: 0%;
	height: 1px;
	position: absolute;
	bottom: -2px;
	left: auto;
	right: 0;
	opacity: 0.5;
	transition: 0.3s all;
}

.footer-menu ul li a:hover:before {
	width: 100%;
	left: 0;
	right: auto;
}

ul.social {
	display: flex;
	align-items: center;
	justify-content: center;
}

ul.social li {
	margin: 0 7px;
}

ul.social li a {
	font-size: 11px;
	color: #f4f0e5;
	width: 35px;
	height: 35px;
	border: 1px solid rgba(112, 112, 112, 0.25);
	display: inline-block;
	text-align: center;
	line-height: 35px;
	border-radius: 50%;
}

ul.social li a:hover {
	border: 1px solid rgba(112, 112, 112, 1);
}

/*=== CONTACT ====*/

.contact ul.social {
	justify-content: flex-start;
	margin-bottom: 30px;
}

.contact ul.social li {
	margin: 0 15px 0 0;
}

.contact ul.social li a {
	color: #545454;
}

.contact .cform {
	background: rgba(244, 240, 229, 0.57);
	padding: 60px;
	height: 100%;
}

.contact .cform .gform_confirmation_message {
    font-size: 16px;
    color: #545454;
    border: 1px solid #545454;
    padding: 50px 30px;
    text-align: center;
    letter-spacing: 0.04em;
}

.contact .cform h3 {
	font-size: 20px;
}

.gform_heading {
	display: none;
}

.cform .gfield {
	margin-bottom: 20px;
}

.cform .gfield label {
	display: none;
}

.cform textarea,
.cform input:not([type="submit"]) {
	height: 60px;
	font-size: 16px;
	color: #818181;
	border: none;
	background: transparent;
	border-bottom: 1px solid #9b9b9b;
	width: 100%;
}

.cform textarea {
	height: 180px;
	padding-top: 15px;
}

.cform input[type="submit"] {
	min-width: 195px;
	height: 55px;
	background: #545454;
	line-height: 55px;
	padding: 0 20px;
	font-size: 14px;
	letter-spacing: 0.1em;
	color: #f4f0e5;
	text-transform: uppercase;
	display: inline-block;
	text-align: center;
	border: none;
}

.cform .gform_footer {
	text-align: right;
}

.contact .contact-information p {
	font-size: 20px;
	letter-spacing: 0.1em;
	line-height: 40px;
	color: #545454;
	text-transform: uppercase;
	max-width: 400px;
}

.contact .contact-information h4 {
	font-size: 20px;
	font-weight: 600;
	margin-top: 35px;
}

.contact .contact-information p:last-of-type {
	font-size: 16px;
	line-height: 32px;
}

.contact .contact-information .timings {
	margin: 5px 0 20px;
}

.contact .contact-information .timings li {
	margin: 15px 0;
	color: #818181;
	font-size: 14px;
	line-height: 30px;
}

.contact .contact-information .timings li span {
	display: block;
}

.contact .contact-information .timings li span:last-of-type {
	letter-spacing: 0.1em;
}

.contact-v2 .contact-information {
	background: #363636;
	padding: 65px;
}

.contact-v2 .contact-information p a,
.contact-v2 .contact-information p,
.contact-v2 .contact-information li span,
.contact-v2 .contact-information h4 {
	color: #f4f0e5;
}

.contact-v2 .content {
	max-width: 500px;
	padding-top: 25px;
}

.contact-v2 .content h4 {
	margin-top: 40px;
}

.contact-v2 .content ul {
	column-count: 2;
	margin: -5px 0 25px;
}

.contact-v2 .content ul li {
	text-transform: uppercase;
	font-weight: 600;
	font-size: 13px;
	letter-spacing: 0.1em;
	color: #545454;
	margin: 0 0 13px 0;
	position: relative;
	padding-left: 20px;
}

.contact-v2 .content ul li:before {
	content: "";
	background: #545454;
	width: 6px;
	height: 6px;
	position: absolute;
	top: 9px;
	left: 0;
	border-radius: 50%;
}

.contact-v2 .content .cta-btn {
	margin-top: 10px;
}

/*=== DIVIDER ====*/

.divider hr {
	border-top: 1px solid #c9c9c9;
	margin: 60px 0;
	opacity: 1;
	opacity: 0.5;
}

/*=== MENU ====*/

.menu-wrap .head {
	max-width: 1000px;
	margin: 0 auto 50px;
}

.menu-wrap .head h3 {
	margin-bottom: 10px;
	margin-top: -10px;
}

.menu-wrap .content ul li h4 {
	color: #545454;
	opacity: 0.7;
	font-size: 15px;
	letter-spacing: 0.1em;
	margin: 20px 0 6px;
}

.menu-wrap:not(.menu-wrap-v2) .content {
	width: 100%;
	max-width: 520px;
	float: right;
}

.menu-wrap.menu-wrap-v2 .content+.content {
	margin-top: 30px;
}

.menu-wrap.menu-wrap-v2 .ex-space .content ul li:not(:last-child) {
	margin-bottom: 49px;
}

.menu-wrap:not(.menu-wrap-v2) .order-md-last+div .content {
	float: none;
}

.menu-wrap.menu-wrap-v2 .content ul+img {
	margin-top: 45px;
}

@media(min-width:768px) {

	.menu-image {
		height: 100%;
		overflow: hidden;
		position: relative;
	}

	.menu-image img {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		object-fit: cover;
		object-position: top center;
	}
}

.menu-wrap .content h3 {
	margin-bottom: 30px;
}

.menu-wrap .content ul li:not(:last-child) {
	margin-bottom: 30px;
}

.menu-wrap .content ul li:last-child p {
	margin-bottom: 0px;
}

.menu-wrap .content ul li div {
	border-bottom: 1px solid #e4e4e1;
	font-weight: 600;
	font-size: 15px;
	letter-spacing: 0.1em;
	color: #545454;
	text-transform: uppercase;
	padding-bottom: 10px;
	margin-bottom: 10px;
}

.menu-wrap .content .cta-btn {
	margin-top: 10px;
}

.menu-wrap.menu-wrap-v2 .content {
	max-width: 530px;
	width: 100%;
}

.menu-wrap.menu-wrap-v2 [class*="col-"]:nth-child(even) .content {
	float: right;
}

/*=== FAQS ====*/

.faq-wrap .container {
	max-width: 1050px;
}

.accordion__content {
	display: none;
}

.accordion .accordion__item:not(:last-of-type) {
	margin-bottom: 30px;
}

.accordion .accordion__item:first-child .accordion__content {
	display: block;
}

.accordion .accordion__title {
	border: 1px solid rgba(112, 112, 112, 0.29);
	padding: 20px 30px;
	display: flex;
	justify-content: space-between;
	cursor: pointer;
}

.accordion .accordion__title.accordion-active {
	border: 1px solid #363636;
	background: #363636;
}

.accordion .accordion__title.accordion-active div {
	color: #fffefa;
}

.accordion .accordion__title div {
	font-size: 13px;
	letter-spacing: 0.1em;
	color: #545454;
	text-transform: uppercase;
}

.accordion .accordion__title.accordion-active span {
	transform: rotate(180deg);
	position: relative;
	top: -2px;
	color: #fffefa;
}

.accordion .accordion__content {
	padding: 30px;
	border: 1px solid rgba(112, 112, 112, 0.29);
	border-top: none;
}

.accordion .accordion__content p a {
	color: #5472a0;
	border-bottom: 1px solid;
}

.accordion .accordion__content p:last-of-type {
	margin: 0;
}

/*=== TESTIMONIALS ====*/

.testimonial-slider .slick-list {
	margin: 0 -30px;
}

.testimonial-slider .slick-slide {
	padding: 0 30px;
}

.testimonial-slider .item {
	border: 1px solid rgb(112 112 112 / 21%);
	padding: 55px;
	transition: 0.3s all;
}

.testimonial-slider .item .quote {
	border-bottom: 1px solid #c9c9c9;
	padding-bottom: 30px;
	margin-bottom: 25px;
	min-height: 239px;
}

.testimonial-slider .item .quote p:last-of-type {
	margin: 0;
}

.testimonial-slider .item cite {
	font-weight: 600;
	font-size: 12px;
	letter-spacing: 0.1em;
	color: #545454;
	font-style: normal;
	text-transform: uppercase;
	display: block;
	line-height: 21px;
}

.testimonial-slider .item .author-avatar {
	border-radius: 50%;
	padding: 5px;
	border: 1px solid rgba(112, 112, 112, 0.35);
	width: 60px;
	height: 60px;
	margin-right: 25px;
}

.testimonial-slider .item .author-avatar img {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	object-fit: cover;
	object-position: top center;
}

.testimonial-slider .author-details {
	display: flex;
	align-items: center;
}

.testimonial-slider .item .rating i {
	color: #818181;
	font-size: 11px;
}

.testimonial-slider .item:hover {
	background: #fbf8f1;
	border: 1px solid #fbf8f1;
}

.slick-arrow {
	font-size: 12px;
	color: #545454;
	width: 45px;
	height: 45px;
	border: 1px solid rgba(112, 112, 112, 0.25);
	display: inline-block;
	text-align: center;
	line-height: 35px;
	border-radius: 50%;
	background: transparent;
	position: absolute;
	top: 50%;
	left: -70px;
	transform: translateY(-50%);
}

.slick-next {
	left: auto;
	right: -70px;
}

@media(max-width: 991px) {

	.menu-wrap.menu-wrap-v2 .content ul+img {
		margin-top: 30px;
	}

	.testimonials {
		padding-bottom: 60px;
	}

	.slick-dots {
		position: absolute;
		display: flex;
		align-items: center;
		justify-content: center;
		bottom: -50px;
		width: 100%;
	}

	.slick-dots li {
		margin: 0 10px;
	}

	.slick-dots li button {
		border: 1px solid #707070;
		font-size: 0px;
		background: transparent;
		width: 10px;
		height: 10px;
		padding: 0;
		border-radius: 50%;
		opacity: 0.5;
	}

	.slick-dots li.slick-active button {
		background: #707070;
	}

}

/*=== VENUE ====*/

.venue-wrap .row {
	padding-left: 200px;
}

.venue-wrap .venue-map {
	margin-top: -60px;
	margin-bottom: -80px;
	filter: grayscale(1);
}

/*=== MOBILE MENU ====*/

.hamburger {
	width: 30px;
}

.hamburger span {
	width: 100%;
	height: 2px;
	margin: 7px 0;
	background: #545454;
	display: block;
	position: relative;
	transition: 0.3s all;
}

body.menu-act .hamburger span:first-child {
	transform: rotate(45deg);
	top: 9px;
}

body.menu-act .hamburger span:nth-child(2) {
	opacity: 0;
}

body.menu-act .hamburger span:nth-child(3) {
	transform: rotate(-45deg);
	top: -9px;
}

.nav-menu nav>ul li span {
	display: none;
}

@media(min-width: 768px) and (max-width: 1050px) {

	.image-banner .item>a>img {
		height: 200px;
	}

	.image-banner .item .inner {
		top: 20px;
		left: 20px;
		width: calc(100% - 40px);
		height: calc(100% - 40px);
		padding: 10px;
	}

	.venue-wrap .row {
		padding-left: 0px;
		padding-top: 35px;
	}

	.venue-wrap .cta-btn {
		padding: 0 15px;
	}
}

@media(max-width: 1260px) {

	.header-btn-group + .d-lg-none {
		display: block !important;
	}

	.nav-menu nav>ul li > span {
		display: table;
		width: 40px;
		height: 50px;
		position: absolute;
		top: 0;
		right: 0;
		z-index: 2;
	}
	
	.nav-menu nav>ul li.act ul {
		display: block;
	}
	
	.nav-menu nav>ul li ul li a {
		padding: 12px 15px 12px 30px;
	}	
	
	.wrapper {
		padding-top: 88px;
	}

	.testimonial-slider .slick-list {
		margin: 0 -15px;
	}

	.testimonial-slider .slick-slide {
		padding: 0 15px;
	}

	body.menu-act {
		overflow: hidden;
	}

	header {
		padding: 12px 0
	}

    .nav-menu {
        position: fixed;
        top: 134px;
        background: #f4f0e5;
        width: 100%;
        height: calc(100% - 134px);
        z-index: 222;
        left: 0;
        padding-top: 10px;
        overflow: auto;
        overflow-x: hidden;
        opacity: 0;
        visibility: hidden;
        transition: .3s all;
    }

	body.menu-act .nav-menu {
		opacity: 1;
		visibility: visible;
		transition: 0.3s all;
	}

	.nav-menu nav>ul {
		display: block;
		align-items: center;
	}

	.nav-menu nav>ul li.menu-item-has-children > a:after {
		content: '';
		position: absolute;
		border-style: solid;
		border-width: 4px 4px 0;
		border-color: #545454 transparent;
		display: block;
		width: 0;
		z-index: 1;
		top: 25px;
		right: 15px;
	}		

	.nav-menu nav>ul li a {
		width: 100%;
		display: table;
		padding: 12px 15px
	}

	.nav-menu nav>ul ul {
		display: none;
	}

	.nav-menu nav>ul li a:before {
		display: none;
	}

	.nav-menu nav>ul li {
		margin: 0;
		position: relative;
		border-top: 1px solid #ddd;
	}

	.logo {
		width: 100px;
	}

	.hero {
		padding: 70px 0;
	}

	h1,
	.h1 {
		font-size: 55px;
		line-height: 60px;
	}

	h3,
	.h3 {
		font-size: 17px;
		line-height: 30px;
	}

	.hero h1 {
		padding-top: 35px;
	}

	.hero h1:before {
		width: 60px;
		height: 3px;
	}

	.features {
		padding: 10px 0
	}

	/*.features .item {
		height: 70px;
	}*/

	.features .item img {
		width: 40px;
	}

	.features .item span {
		font-size: 13px;
		line-height: 20px;
		padding-left: 10px;
	}

	banner .item .inner {
		padding: 20px;
	}

	.extra-space {
		margin: 0 -15px;
	}

	.extra-space [class*="col-"] {
		padding: 0 15px;
	}

	.list .col-md-7 {
		width: calc(62% - 15px);
		padding-right: 20px;
	}

	.list .col-md-5 {
		width: calc(38% + 15px);
	}

	.list .inner {
		padding: 40px;
	}

	.contact .cform {
		padding: 40px;
	}

	.contact ul.social {
		margin-top: 30px;
	}

	.contact .contact-information p {
		font-size: 16px;
		line-height: 30px;
		margin-bottom: 15px;
	}

	.menu-wrap .head {
		margin: 0 auto 30px;
	}

	.menu-wrap .content ul li div {
		font-size: 14px;
	}

	.testimonial-slider .item {
		padding: 35px;
	}

	header .cta-btn {
		min-width: auto;
		margin-right: 10px;
		margin-left: 0;
	}

	header .hamburger {
		margin-left: 5px;
	}

}

@media(max-width: 767px) {

	.image-banner .item>a>img {
		height: 260px;
	}

	.venue-wrap .row {
		padding-top: 30px;
	}

	.venue-wrap .venue-map {
		margin-top: 0;
		margin-bottom: 0;
	}

	.menu-wrap [class*="col-"]:last-child {
		padding-top: 30px;
	}

	.contact-v2 .contact-information {
		padding: 40px;
		margin-top: 30px;
	}

	.image-banner .item {
		margin-top: 15px;
		margin-bottom: 15px;
	}

	.list .col-md-7 {
		width: calc(60% - 15px);
		padding-right: 20px;
	}

	.list .col-md-5 {
		width: calc(40% + 15px);
	}

	.list img {
		margin-bottom: 30px;
	}

	.space {
		padding: 50px 0;
	}

	.space-top {
		padding-top: 50px;
	}

	.space-bottom {
		padding-bottom: 50px;
	}

	.image-text img {
		margin-bottom: 30px;
	}

	.venue-wrap .row {
		padding-left: 0;
	}

	.venue-wrap .row {
		position: relative;
		padding-bottom: 70px;
	}

	.venue-wrap .row [class*="col-"]:first-child {
		position: absolute;
		bottom: 0;
		left: 0;
	}

	.venue-wrap .row {
		padding-top: 0px;
	}

	.venue-wrap .row h4 {
		margin-top: 25px;
	}

	.footer-menu {
		display: none;
	}

}

@media(max-width: 585px) {

	.list .col-md-7 {
		width: 100%;
		padding-right: 15px;
	}

	.list .col-md-5 {
		width: 100%;
	}

	.header-btn-group {
		position: fixed;
		bottom: 0;
		left: 0;
		width: 100%;
		z-index: 22;
		background: #f4f0e5;
		display: flex;
		justify-content: center;
		padding: 10px;
	}

	.header-btn-group a {
		min-width: calc(50% - 10px);
		margin: 0 5px;
		font-size: 12px;
		line-height: 45px;
		height: auto;
		padding: 0 10px;
	}

	footer {
		padding: 40px 0 100px;
	}

}

.mtop {
	margin-top: 70px;
	padding-top: 0;
}

.mtop .container {
	position: relative;
	top: -40px;
}

.page__header {
	padding: 140px 0;
}

.page__header h1 {
	font-size: 60px;
	line-height: 75px;
	padding-top: 40px;
}

.page__header:before {
	content: "";
	background: linear-gradient(#2c2c2c 0%, rgba(45, 45, 45, 0.54) 70.94%, rgba(46, 46, 46, 0) 100%);
	opacity: 0.33;
}

iframe[src*="https://www.google.com/maps/"] {
	filter: grayscale(1);
	opacity: 0.85
}

.menu-wrap:not(.menu-wrap-v2) .content .cta-btn {
	margin-top: 35px;
}

.menu-wrap.alt .content ul li {
	margin: 0;
}

.menu-wrap.alt .content ul li p {
	margin-bottom: 30px;
}

.menu-wrap.alt .content ul li div {
	border: none;
	margin-bottom: 0;
}

.menu-wrap.alt .content ul li:last-child p:last-of-type {
	margin: 0;
}

.menu-wrap .content>h3+p {
	margin-top: -25px;
	margin-bottom: 30px;
}

.image-banner .item .inner * {
	text-align: center;
}

.image-banner .item .inner p {
	margin: 3px 0 0;
	color: #f4f0e5;
}

.page__header h1 {
	margin: 0;
}
	
@media(max-width: 585px) {
	
	.page__header h1 {
		font-size: 47px;
		line-height: 60px;
		padding-top: 30px;
	}
	
	.page__header {
		padding: 80px 0;
	}
	
}

@media(min-width: 1051px) {

	.nav-menu nav>ul li.menu-item-has-children {
		position: relative;
	}

	.nav-menu nav>ul li.menu-item-has-children:hover .sub-menu {
		opacity: 1;
		visibility: visible;
	}

	.nav-menu nav>ul li.menu-item-has-children > a:before {
		display: none;
	}

	.nav-menu nav>ul li.menu-item-has-children > a {
		position: relative;
		padding-right: 12px;
	}	

	.nav-menu nav>ul li.menu-item-has-children > a:after {
		content: '';
		position: absolute;
		border-style: solid;
		border-width: 4px 4px 0;
		border-color: #545454 transparent;
		display: block;
		width: 0;
		z-index: 1;
		top: 6px;
		right: 0px;
	}	

	.sub-menu {
		position: absolute;
		background: #545454;
		min-width: 220px;
		padding: 15px;
		top: calc(100% + 10px);
		visibility: hidden;
		opacity: 0;
		transition: 0.3s all;
	}

	.sub-menu:before {
		content: "";
		position: absolute;
		top: -10px;;
		left: 0;
		height: 10px;
		width: 100%;
	}

	.sub-menu:after {
		content: '';
		position: absolute;
		border-style: solid;
		border-width: 0 5px 5px;
		border-color: #545454 transparent;
		display: block;
		width: 0;
		z-index: 1;
		top: -5px;
		left: 25px;
	}

	.nav-menu nav>ul .sub-menu li {
		padding: 8px 0;
	}

	.nav-menu nav>ul .sub-menu li a {
		color: #f4f0e5;
		display: table;
		padding: 0 0;
		font-size: 12px;
		line-height: 16px;
	}

	.nav-menu nav>ul .sub-menu li a:before {
		background: #fff;
		opacity: 0.5;
	}

}

.gform_submission_error {
	display: none;
}

body .validation_message {
	color: red;
  	display: block;
	padding-top: 4px;
}

body #sb_instagram {
	margin: 0;
	padding: 0;
}

.breadcrumb-wrap {
	position: absolute;
	top: 0;
	z-index: 2;
	color: #f4f0e5;
	left: 0;
	width: 100%;
	text-transform: uppercase;
	padding: 10px 0;
}

.breadcrumb-wrap * {
	font-size: 11px;
	margin: 0;
}

.breadcrumb-wrap .separator {
	margin: 0 5px;
	font-size: 9px;
	position: relative;
	top: -1px;
	opacity: 0.7;
}

.breadcrumb-wrap a {
	color: #f4f0e5;
}

.breadcrumb-wrap nav {
    max-width: 1500px;
	margin: 0 auto;
	padding: 0 15px;
}

.credits p {
	color: #97958f;
}

.credits p a {
    color: #97958f;
	border-bottom: 1px solid;
	line-height: 15px;
	display: inline-block;
}

.credits p a:hover {
	color: #f4f0e5;
}

@media(min-width: 585px) {
	footer {
		padding-bottom: 60px;
	}
}

.menu-wrap .content ul li div span.v2 ,
.menu-wrap .content ul li div span.v3 ,
.menu-wrap .content ul li div span.v4 ,
.menu-wrap .content ul li div span.v5 {
}

.menu-wrap .content ul li div span.v2:before {
    content: "";
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAeCAYAAAA7MK6iAAAACXBIWXMAAA7EAAAOxAGVKw4bAAAE9WlUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4gPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgOS4wLWMwMDEgNzkuMTRlY2I0MmYyYywgMjAyMy8wMS8xMy0xMjoyNTo0NCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczpkYz0iaHR0cDovL3B1cmwub3JnL2RjL2VsZW1lbnRzLzEuMS8iIHhtbG5zOnBob3Rvc2hvcD0iaHR0cDovL25zLmFkb2JlLmNvbS9waG90b3Nob3AvMS4wLyIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0RXZ0PSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VFdmVudCMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIDI0LjIgKE1hY2ludG9zaCkiIHhtcDpDcmVhdGVEYXRlPSIyMDI0LTAyLTIyVDAxOjI2OjUwKzA1OjMwIiB4bXA6TW9kaWZ5RGF0ZT0iMjAyNC0wMi0yMlQwMToyNzoyNiswNTozMCIgeG1wOk1ldGFkYXRhRGF0ZT0iMjAyNC0wMi0yMlQwMToyNzoyNiswNTozMCIgZGM6Zm9ybWF0PSJpbWFnZS9wbmciIHBob3Rvc2hvcDpDb2xvck1vZGU9IjMiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6YWZhZjY0YTQtOWYzYS00NWE4LWJkZmUtNzg5NzkyYWVhNGVkIiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOmFmYWY2NGE0LTlmM2EtNDVhOC1iZGZlLTc4OTc5MmFlYTRlZCIgeG1wTU06T3JpZ2luYWxEb2N1bWVudElEPSJ4bXAuZGlkOmFmYWY2NGE0LTlmM2EtNDVhOC1iZGZlLTc4OTc5MmFlYTRlZCI+IDx4bXBNTTpIaXN0b3J5PiA8cmRmOlNlcT4gPHJkZjpsaSBzdEV2dDphY3Rpb249ImNyZWF0ZWQiIHN0RXZ0Omluc3RhbmNlSUQ9InhtcC5paWQ6YWZhZjY0YTQtOWYzYS00NWE4LWJkZmUtNzg5NzkyYWVhNGVkIiBzdEV2dDp3aGVuPSIyMDI0LTAyLTIyVDAxOjI2OjUwKzA1OjMwIiBzdEV2dDpzb2Z0d2FyZUFnZW50PSJBZG9iZSBQaG90b3Nob3AgMjQuMiAoTWFjaW50b3NoKSIvPiA8L3JkZjpTZXE+IDwveG1wTU06SGlzdG9yeT4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz6/92UHAAADGElEQVRIiaXXWahWVRQH8J/XblaGohURFEQP+WCETxYFBg0vEQYZEd1osIFKIoRsoMEiookbZDNFQelDNJH2YuRDvfQipjeaBSG6ZUp2C2/D1To97LU7+3593znn1oIDe+39X///HtYeDt1sFs7DOnyKquf7Cs/hAszpyNloh+F2/N4j9APGsAPf9enIA5j3X0WXY38Q/YUncEZ0ptcOxVI8gskiZmSmoo+pe39bEM/EVhXxz3cNejkCxnBiA+4qrGhoPxbrg2tTm2ge6ZYW3EXqEZ3VgLuwwL0wCHRuAD5vET06cDfgwSj3y+SV0XYzXovyZf0Ic1Ic0yL8JA4WfoXVA0TXhj+kHvm05FwTlWtaRGGDtG+zTeD+wr8uuO7pibs66teVlQfwZ4PYbNyFjdiHX4u2Ct/gDTwT/n0DeCYUo14WztMNwqeqM/2TKN+B0Sh/jJ36j7S0uwOzgrRmFZY0BCwJTLbV6jXLCbO4B9PPjg/M2/B1hwAYN31WJqQZyLYZ2zrwHMTPQnRvh4BXAjuKE0J0E04q2pqmOdsXgVVhewv4ZExhq3qKp+LL/nb8iCNbuLagGgqnbarnYxhn4hDpKByOb1S6Nq/BQmkHNFlVFna3gOfgN+nCyLZfyo9sL3Xggc+y+C7dkiuv44g0wjEpO4dxS7Td24HnQHT6n01/SgN4CHukwyOv6SR+Kfw9UuIc3sBzXGA3wtnhPN4QcGdg5mORtG2y4GZpf+aDaEEDz62BuTSPpsIfA8BXFiLLivopfF/4+aaa1SC8NzBH5Iq1UbGqB5hvmZXSO6rCadG2Q7ru4Hzta3xJYF4sK4fUe3Ju1F1r+tUGb6l3wSR+kh5+lfQmG2SzC/5/7fPl0fAOLm8YwTl4VJq2cTyE0xtE4b3gu34Q4Fn1et7YQrYLH7VgSPu7Ui/LQHszgK/iqAbces1X6Ty8G1zvd+gg6qsyv61maleo13TDTINHCvF9UpItbsAvkv46xou4m2Yqmm0BHi6I8rcTH+IDfCk9m8r2p6RT6n/bXFwsTdu3fTqyG69Lr5GFXQj/BlSlEYaklQegAAAAAElFTkSuQmCC) no-repeat center;
    width: 20px;
    height: 20px;
    float: right;
    background-size: cover;
    position: relative;
    top: 3px;
    margin-left: 5px;
}

.menu-wrap .content ul li div span.v3:before {
    content: "";
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAeCAYAAAA7MK6iAAAACXBIWXMAAA7EAAAOxAGVKw4bAAAE9WlUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4gPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgOS4wLWMwMDEgNzkuMTRlY2I0MmYyYywgMjAyMy8wMS8xMy0xMjoyNTo0NCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczpkYz0iaHR0cDovL3B1cmwub3JnL2RjL2VsZW1lbnRzLzEuMS8iIHhtbG5zOnBob3Rvc2hvcD0iaHR0cDovL25zLmFkb2JlLmNvbS9waG90b3Nob3AvMS4wLyIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0RXZ0PSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VFdmVudCMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIDI0LjIgKE1hY2ludG9zaCkiIHhtcDpDcmVhdGVEYXRlPSIyMDI0LTAyLTIyVDAxOjMwOjAyKzA1OjMwIiB4bXA6TW9kaWZ5RGF0ZT0iMjAyNC0wMi0yMlQwMTozMDoyNCswNTozMCIgeG1wOk1ldGFkYXRhRGF0ZT0iMjAyNC0wMi0yMlQwMTozMDoyNCswNTozMCIgZGM6Zm9ybWF0PSJpbWFnZS9wbmciIHBob3Rvc2hvcDpDb2xvck1vZGU9IjMiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6ODAwMzQ2N2EtOTgxOC00ZjJiLTkxNTMtYjM5ZjdiZGJhZmJhIiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOjgwMDM0NjdhLTk4MTgtNGYyYi05MTUzLWIzOWY3YmRiYWZiYSIgeG1wTU06T3JpZ2luYWxEb2N1bWVudElEPSJ4bXAuZGlkOjgwMDM0NjdhLTk4MTgtNGYyYi05MTUzLWIzOWY3YmRiYWZiYSI+IDx4bXBNTTpIaXN0b3J5PiA8cmRmOlNlcT4gPHJkZjpsaSBzdEV2dDphY3Rpb249ImNyZWF0ZWQiIHN0RXZ0Omluc3RhbmNlSUQ9InhtcC5paWQ6ODAwMzQ2N2EtOTgxOC00ZjJiLTkxNTMtYjM5ZjdiZGJhZmJhIiBzdEV2dDp3aGVuPSIyMDI0LTAyLTIyVDAxOjMwOjAyKzA1OjMwIiBzdEV2dDpzb2Z0d2FyZUFnZW50PSJBZG9iZSBQaG90b3Nob3AgMjQuMiAoTWFjaW50b3NoKSIvPiA8L3JkZjpTZXE+IDwveG1wTU06SGlzdG9yeT4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz7XdtR9AAAC30lEQVRIiaWXSWxNURzGf52NKWJI2kQTKyFaMUSwsaCJiBgStJIqjXEjXRDzVDaikkaDUgskbLSGBQkVYghFiCmlNBaIFiHSRGtoPYvzvbzT49777nu+5OS98/9/3/8779wz3AfhkAoUAtVAExBxWjNQA8wCskLWDEQvYBPw0zFqA54CT4BWj4FUAP2TNZ0LdKhQN1AFTNFgXGQCk4B9QKelWZyoaSWx0a8HMhLQpgBrLf2RsMITEjwG8hIwdJED3FWtc/HI+0Vs+A/DdLUozqtmrZ+gUISmJA1HYFZ2O1Du5O6rdpGXMLooBidglgfsBF5K+xn4AdQ7vL7EnnmPxblRwXUhDUvouZ8vATOVq8N71laIWxUNpGCWflcIw4nAOxW4DRR7cC4CL3z07dJmAUxTpzqO6TLxGoFRTu4YcMUyfuZTY4dqzAc4qE5+gOkScbZ75PYoN1n9RjUvDBe3DuCNOn4YgvNsLGxWbo4V+4TZQn7oBr4h4ccAYgPwyyO+VNpVTjwCbAuo90ocIsAjH1Kq8luc+ATFdzvxAsXHBBhft40f+pDGKV/gxCMq4KKW4McGcM02bvUhzVY+14pdDige5lKIHja8DSiUr9x49aeqP92DW6NcZhzjLsx+5qgEo32IEWCXvn/HXP4uFopXGsc0V7wLADPUqfQhH1K+WJ8DnHx5HL2NDeIuAkhTpzNA0CzOc8xxlwssB14rvjWEKcAX8ftEAxUKrPERZBA7Z+12D7Pyw6AIa/GlKJiGeaFLA7JlYiMHaAHKMIfJb+COfkEYpGNmNB1zRXbYyXka0QMPYSnOFCWIq9KX+RGiB8BZJz4WM0W9kzA9rpqn4hHrRbwJDE3CKIpszAtCBHPohMJhYgtodRKmpZiDIgKcTFRcYpl/xVzifocMwEjMv44Plm5loqZRDAL28u82agFuATcw19wfJ38AGJasqY1+wALgNPDeYyBtwBnMX5aBYQr+BaIz8TwrYxg1AAAAAElFTkSuQmCC) no-repeat center;
    width: 20px;
    height: 20px;
    float: right;
    background-size: cover;
    position: relative;
    top: 3px;
    margin-left: 5px;
}

.menu-wrap .content ul li div span.v4:before {
    content: "";
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAeCAYAAAA7MK6iAAAACXBIWXMAAA7EAAAOxAGVKw4bAAAE9WlUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4gPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgOS4wLWMwMDEgNzkuMTRlY2I0MmYyYywgMjAyMy8wMS8xMy0xMjoyNTo0NCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczpkYz0iaHR0cDovL3B1cmwub3JnL2RjL2VsZW1lbnRzLzEuMS8iIHhtbG5zOnBob3Rvc2hvcD0iaHR0cDovL25zLmFkb2JlLmNvbS9waG90b3Nob3AvMS4wLyIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0RXZ0PSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VFdmVudCMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIDI0LjIgKE1hY2ludG9zaCkiIHhtcDpDcmVhdGVEYXRlPSIyMDI0LTAyLTIyVDAxOjMwOjAyKzA1OjMwIiB4bXA6TW9kaWZ5RGF0ZT0iMjAyNC0wMi0yMlQwMTozNDoyMCswNTozMCIgeG1wOk1ldGFkYXRhRGF0ZT0iMjAyNC0wMi0yMlQwMTozNDoyMCswNTozMCIgZGM6Zm9ybWF0PSJpbWFnZS9wbmciIHBob3Rvc2hvcDpDb2xvck1vZGU9IjMiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6YzI1MzkzNzEtNGYxOS00NmZkLWJkMjUtOTg2YmRkMDQxMjRhIiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOmMyNTM5MzcxLTRmMTktNDZmZC1iZDI1LTk4NmJkZDA0MTI0YSIgeG1wTU06T3JpZ2luYWxEb2N1bWVudElEPSJ4bXAuZGlkOmMyNTM5MzcxLTRmMTktNDZmZC1iZDI1LTk4NmJkZDA0MTI0YSI+IDx4bXBNTTpIaXN0b3J5PiA8cmRmOlNlcT4gPHJkZjpsaSBzdEV2dDphY3Rpb249ImNyZWF0ZWQiIHN0RXZ0Omluc3RhbmNlSUQ9InhtcC5paWQ6YzI1MzkzNzEtNGYxOS00NmZkLWJkMjUtOTg2YmRkMDQxMjRhIiBzdEV2dDp3aGVuPSIyMDI0LTAyLTIyVDAxOjMwOjAyKzA1OjMwIiBzdEV2dDpzb2Z0d2FyZUFnZW50PSJBZG9iZSBQaG90b3Nob3AgMjQuMiAoTWFjaW50b3NoKSIvPiA8L3JkZjpTZXE+IDwveG1wTU06SGlzdG9yeT4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz78K7FhAAADc0lEQVRIia3Xa4hVZRQG4GduOqE2NkXFlEVgEARdiCgM7K6VFRpdTYuKLPuRFQkJmTB0sYsQ9sNq+lGBkoQZhNLFsiwIKqMihDSMSs2iphhppkidfqy1m8PxnD1zJl/YnHP2Xmu961t7vev7DiNDM6bhGWzBYNX1DZ7FDIwdYcxStGMR/q4i2o2v8CV+qpFINyaMlnQm+jPQPjyNKZlMNcbgLDyJgQqf2Y2SPmUo+4Voa8C3CXdX+D83UseX0uELHN8AYTW68HHGWjuc8bI0fOd/EFbj9YzZU89gWhpsOYikBT7J2NfXelg0xRHDBHkCCxokHmfonbcT+oQH8sZC/FrHuRmPYgfOyGuk+BPz8vvS4maTaP29FYYT8Lh4L515rxWrcR9ewTpc2QA59IlVj23GuWI1KyoMHsF27BT6lYnNz0TGi3Jfg+W4GIdXkTTVIF6WnzNaRHnPxO34OR904NS8duJyMRZ34T3RB/uE3v/BybgFR2JzyYq/w72ierbn8qsxGW/m6mbiDSzGVTgNX+NBXICJ6dOD60qIZcJ/NCXpLziqhtGFuAPX5iovFYNhDl4QI/VQnCSqsUdMucdKiLfiREn8eYnhUgfKZ04mVIkbsUlUqaMk3kYMFnKqVeoCax04q1fjBNGUm0VFVmIqPsJNJfEGGdJxV4nhDlwtdqACs9Cbfr2iCReLLn8Ya0Sz1UJXQfwjji4hPltIqVuUeAHm4lWhy21J9G7G24BJoiKX1Yg3GXuaxTshJFELk3APHhKjbwBXCGn0CW1Oz+S24n0x77cZkmeBY9CCjS34K1cwgLfT4HRxjDkf5+EGoddV4tRxW96fIqZcp2i26ULv5+B+fC+OQj9k3LtwEZY0ZQZ7M4FD0uB5HCemWb8o4WH4UDTHVOyvWMkAfs/vEzOZXaLJOkVPwG/5e1zh2J0B5+fvU4ROu0RTteXnsaL0Y3Il9a42IakeMWCILfG/E0kxT1vEga4lHfrS4RIxFEaDdnwm5NgqqtKaq+2vNJyVGX06SqIybMjYt9Yz6EmD1w4i6YsZc+VwhmvScJPYbUaLDqzPWG+N1GmFoaPKnaMgvVkoZRAvN+o8t4K8F0vUHzLEDrVIyKjwm1diX4pOcQSq/ovyrdD0B2Ja7a96vlztbbZhjBcbwCqxaVQnslvM7tli0AyLfwHSMuh5+rlZ3AAAAABJRU5ErkJggg==) no-repeat center;
    width: 20px;
    height: 20px;
    float: right;
    background-size: cover;
    position: relative;
    top: 3px;
    margin-left: 5px;
}

.menu-wrap .content ul li div span.v5:after {
    content: "";
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAeCAYAAAA7MK6iAAAACXBIWXMAAA7EAAAOxAGVKw4bAAAE9WlUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4gPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgOS4wLWMwMDEgNzkuMTRlY2I0MmYyYywgMjAyMy8wMS8xMy0xMjoyNTo0NCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczpkYz0iaHR0cDovL3B1cmwub3JnL2RjL2VsZW1lbnRzLzEuMS8iIHhtbG5zOnBob3Rvc2hvcD0iaHR0cDovL25zLmFkb2JlLmNvbS9waG90b3Nob3AvMS4wLyIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0RXZ0PSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VFdmVudCMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIDI0LjIgKE1hY2ludG9zaCkiIHhtcDpDcmVhdGVEYXRlPSIyMDI0LTAyLTIyVDAxOjI2OjUwKzA1OjMwIiB4bXA6TW9kaWZ5RGF0ZT0iMjAyNC0wMi0yMlQwMToyNzoyNiswNTozMCIgeG1wOk1ldGFkYXRhRGF0ZT0iMjAyNC0wMi0yMlQwMToyNzoyNiswNTozMCIgZGM6Zm9ybWF0PSJpbWFnZS9wbmciIHBob3Rvc2hvcDpDb2xvck1vZGU9IjMiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6YWZhZjY0YTQtOWYzYS00NWE4LWJkZmUtNzg5NzkyYWVhNGVkIiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOmFmYWY2NGE0LTlmM2EtNDVhOC1iZGZlLTc4OTc5MmFlYTRlZCIgeG1wTU06T3JpZ2luYWxEb2N1bWVudElEPSJ4bXAuZGlkOmFmYWY2NGE0LTlmM2EtNDVhOC1iZGZlLTc4OTc5MmFlYTRlZCI+IDx4bXBNTTpIaXN0b3J5PiA8cmRmOlNlcT4gPHJkZjpsaSBzdEV2dDphY3Rpb249ImNyZWF0ZWQiIHN0RXZ0Omluc3RhbmNlSUQ9InhtcC5paWQ6YWZhZjY0YTQtOWYzYS00NWE4LWJkZmUtNzg5NzkyYWVhNGVkIiBzdEV2dDp3aGVuPSIyMDI0LTAyLTIyVDAxOjI2OjUwKzA1OjMwIiBzdEV2dDpzb2Z0d2FyZUFnZW50PSJBZG9iZSBQaG90b3Nob3AgMjQuMiAoTWFjaW50b3NoKSIvPiA8L3JkZjpTZXE+IDwveG1wTU06SGlzdG9yeT4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz6/92UHAAADGElEQVRIiaXXWahWVRQH8J/XblaGohURFEQP+WCETxYFBg0vEQYZEd1osIFKIoRsoMEiookbZDNFQelDNJH2YuRDvfQipjeaBSG6ZUp2C2/D1To97LU7+3593znn1oIDe+39X///HtYeDt1sFs7DOnyKquf7Cs/hAszpyNloh+F2/N4j9APGsAPf9enIA5j3X0WXY38Q/YUncEZ0ptcOxVI8gskiZmSmoo+pe39bEM/EVhXxz3cNejkCxnBiA+4qrGhoPxbrg2tTm2ge6ZYW3EXqEZ3VgLuwwL0wCHRuAD5vET06cDfgwSj3y+SV0XYzXovyZf0Ic1Ic0yL8JA4WfoXVA0TXhj+kHvm05FwTlWtaRGGDtG+zTeD+wr8uuO7pibs66teVlQfwZ4PYbNyFjdiHX4u2Ct/gDTwT/n0DeCYUo14WztMNwqeqM/2TKN+B0Sh/jJ36j7S0uwOzgrRmFZY0BCwJTLbV6jXLCbO4B9PPjg/M2/B1hwAYN31WJqQZyLYZ2zrwHMTPQnRvh4BXAjuKE0J0E04q2pqmOdsXgVVhewv4ZExhq3qKp+LL/nb8iCNbuLagGgqnbarnYxhn4hDpKByOb1S6Nq/BQmkHNFlVFna3gOfgN+nCyLZfyo9sL3Xggc+y+C7dkiuv44g0wjEpO4dxS7Td24HnQHT6n01/SgN4CHukwyOv6SR+Kfw9UuIc3sBzXGA3wtnhPN4QcGdg5mORtG2y4GZpf+aDaEEDz62BuTSPpsIfA8BXFiLLivopfF/4+aaa1SC8NzBH5Iq1UbGqB5hvmZXSO6rCadG2Q7ru4Hzta3xJYF4sK4fUe3Ju1F1r+tUGb6l3wSR+kh5+lfQmG2SzC/5/7fPl0fAOLm8YwTl4VJq2cTyE0xtE4b3gu34Q4Fn1et7YQrYLH7VgSPu7Ui/LQHszgK/iqAbces1X6Ty8G1zvd+gg6qsyv61maleo13TDTINHCvF9UpItbsAvkv46xou4m2Yqmm0BHi6I8rcTH+IDfCk9m8r2p6RT6n/bXFwsTdu3fTqyG69Lr5GFXQj/BlSlEYaklQegAAAAAElFTkSuQmCC) no-repeat center;
    width: 20px;
    height: 20px;
    float: right;
    background-size: cover;
    position: relative;
    top: 3px;
    margin-left: 5px;
}

.menu-wrap .content ul li div span.v5:before {
    content: "";
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAeCAYAAAA7MK6iAAAACXBIWXMAAA7EAAAOxAGVKw4bAAAE9WlUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4gPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgOS4wLWMwMDEgNzkuMTRlY2I0MmYyYywgMjAyMy8wMS8xMy0xMjoyNTo0NCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczpkYz0iaHR0cDovL3B1cmwub3JnL2RjL2VsZW1lbnRzLzEuMS8iIHhtbG5zOnBob3Rvc2hvcD0iaHR0cDovL25zLmFkb2JlLmNvbS9waG90b3Nob3AvMS4wLyIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0RXZ0PSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VFdmVudCMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIDI0LjIgKE1hY2ludG9zaCkiIHhtcDpDcmVhdGVEYXRlPSIyMDI0LTAyLTIyVDAxOjMwOjAyKzA1OjMwIiB4bXA6TW9kaWZ5RGF0ZT0iMjAyNC0wMi0yMlQwMTozMDoyNCswNTozMCIgeG1wOk1ldGFkYXRhRGF0ZT0iMjAyNC0wMi0yMlQwMTozMDoyNCswNTozMCIgZGM6Zm9ybWF0PSJpbWFnZS9wbmciIHBob3Rvc2hvcDpDb2xvck1vZGU9IjMiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6ODAwMzQ2N2EtOTgxOC00ZjJiLTkxNTMtYjM5ZjdiZGJhZmJhIiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOjgwMDM0NjdhLTk4MTgtNGYyYi05MTUzLWIzOWY3YmRiYWZiYSIgeG1wTU06T3JpZ2luYWxEb2N1bWVudElEPSJ4bXAuZGlkOjgwMDM0NjdhLTk4MTgtNGYyYi05MTUzLWIzOWY3YmRiYWZiYSI+IDx4bXBNTTpIaXN0b3J5PiA8cmRmOlNlcT4gPHJkZjpsaSBzdEV2dDphY3Rpb249ImNyZWF0ZWQiIHN0RXZ0Omluc3RhbmNlSUQ9InhtcC5paWQ6ODAwMzQ2N2EtOTgxOC00ZjJiLTkxNTMtYjM5ZjdiZGJhZmJhIiBzdEV2dDp3aGVuPSIyMDI0LTAyLTIyVDAxOjMwOjAyKzA1OjMwIiBzdEV2dDpzb2Z0d2FyZUFnZW50PSJBZG9iZSBQaG90b3Nob3AgMjQuMiAoTWFjaW50b3NoKSIvPiA8L3JkZjpTZXE+IDwveG1wTU06SGlzdG9yeT4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz7XdtR9AAAC30lEQVRIiaWXSWxNURzGf52NKWJI2kQTKyFaMUSwsaCJiBgStJIqjXEjXRDzVDaikkaDUgskbLSGBQkVYghFiCmlNBaIFiHSRGtoPYvzvbzT49777nu+5OS98/9/3/8779wz3AfhkAoUAtVAExBxWjNQA8wCskLWDEQvYBPw0zFqA54CT4BWj4FUAP2TNZ0LdKhQN1AFTNFgXGQCk4B9QKelWZyoaSWx0a8HMhLQpgBrLf2RsMITEjwG8hIwdJED3FWtc/HI+0Vs+A/DdLUozqtmrZ+gUISmJA1HYFZ2O1Du5O6rdpGXMLooBidglgfsBF5K+xn4AdQ7vL7EnnmPxblRwXUhDUvouZ8vATOVq8N71laIWxUNpGCWflcIw4nAOxW4DRR7cC4CL3z07dJmAUxTpzqO6TLxGoFRTu4YcMUyfuZTY4dqzAc4qE5+gOkScbZ75PYoN1n9RjUvDBe3DuCNOn4YgvNsLGxWbo4V+4TZQn7oBr4h4ccAYgPwyyO+VNpVTjwCbAuo90ocIsAjH1Kq8luc+ATFdzvxAsXHBBhft40f+pDGKV/gxCMq4KKW4McGcM02bvUhzVY+14pdDige5lKIHja8DSiUr9x49aeqP92DW6NcZhzjLsx+5qgEo32IEWCXvn/HXP4uFopXGsc0V7wLADPUqfQhH1K+WJ8DnHx5HL2NDeIuAkhTpzNA0CzOc8xxlwssB14rvjWEKcAX8ftEAxUKrPERZBA7Z+12D7Pyw6AIa/GlKJiGeaFLA7JlYiMHaAHKMIfJb+COfkEYpGNmNB1zRXbYyXka0QMPYSnOFCWIq9KX+RGiB8BZJz4WM0W9kzA9rpqn4hHrRbwJDE3CKIpszAtCBHPohMJhYgtodRKmpZiDIgKcTFRcYpl/xVzifocMwEjMv44Plm5loqZRDAL28u82agFuATcw19wfJ38AGJasqY1+wALgNPDeYyBtwBnMX5aBYQr+BaIz8TwrYxg1AAAAAElFTkSuQmCC) no-repeat center;
    width: 20px;
    height: 20px;
    float: right;
    background-size: cover;
    position: relative;
    top: 3px;
    margin-left: 5px;
}

p.note {
	text-align: left;
	margin: 30px 0 0;
}


.cpopup {
	background: #545454cf;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 9999999;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: 0.3s all;
}

.cpopup.act {
	opacity: 1;
	visibility: visible;
}

.cpopup-inner {
	background: #fff;
	width: 96%;
	max-width: 600px;
	margin: 0 auto;
	height: 95vh;
	position: relative;
}

.cpopup-close {
	position: absolute;
	top: 10px;
	right: 10px;
	background: #545454;
	width: 35px;
	height: 35px;
	border: none;
	color: #fff;
	text-align: center;
	line-height: 35px;
	font-size: 20px;
	cursor: pointer;
}

#tripleseat_embed_form {
	padding: 30px;
	height: 100%;
	overflow: auto;
}

#tripleseat_embed_form::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	background-color: #F5F5F5;
}

#tripleseat_embed_form::-webkit-scrollbar {
	width: 3px;
	background-color: #F5F5F5;
}

#tripleseat_embed_form::-webkit-scrollbar-thumb {
	background-color: #000000;
}

#tripleseat_embed_form table {
	width: 100%;
}

.cpopup-inner h2 {
	font-size: 18px;
	margin: 0;
}

#tripleseat_embed_form table label {
	font-size: 14px;
}

#tripleseat_embed_form table td {
	padding: 10px 15px !important;
}

#tripleseat_embed_form table select,
#tripleseat_embed_form table textarea,
#tripleseat_embed_form table input:not([type="checkbox"]):not([type="submit"]) {
	min-width: 100%;
	border: none;
	border-bottom: 1px solid #ddd;
	border-radius: 0px;
	height: 40px;
	padding: 0;
	margin: 0;
}

#tripleseat_embed_form table #dp_lead_event_date,
#tripleseat_embed_form table #lead_start_time,
#tripleseat_embed_form table #lead_end_time {
	padding-left: 25px;
}

.row_email_opt_out input {
	position: relative;
	top: 6px;
	margin-right: 5px;
}

#tripleseat_embed_form table input[type="submit"] {
	min-width: 155px;
	height: 45px;
	line-height: 45px;
	padding: 0 20px;
	font-size: 14px;
	letter-spacing: 0.1em;
	color: #f4f0e5;
	text-transform: uppercase;
	display: inline-block;
	text-align: center;
	border: 1px solid #545454;
	position: relative;
	background: #545454;
}

#tripleseat_embed_form table input[type="submit"]:hover {
	background: transparent;
	color: #545454;
}

#lead_form_submit a,
#errorExplanation {
	display: none !important;
}

.image-text ul {
	margin: 25px 0 30px 20px;
	padding: 0;
}

.image-text ul li {
	list-style: disc;
	margin: 0 0 5px;
}

.image-text ul li::marker {
	color: #545454;
}

.image-text ul + .cta-btn {
	margin: 0;
}

.contact .contact-information ul:not(.timings) {
	 margin: -20px 0 0 15px;
}

.contact .contact-information ul:not(.timings) li {
	list-style: disc;
}

.contact .contact-information ul:not(.timings) li::marker {
	color: #545454;
}

.menu-wrap .content ul.btg-btb:before {
	content: "BTG / BTB";
	display: block;
	text-align: right;
	padding-bottom: 5px;
}

#tsLeadSuccessMessage {
	font-size: 25px;
	line-height: 35px;
	margin: 20% auto -10px;
	text-align: center;
	padding: 0 20px;
}

#tsLeadSuccessMessage + p + p{
	padding: 0 25px;
	text-align: center;
	max-width: 500px;
	margin: 0 auto;
}

body #ui-datepicker-div, 
body div.timeselect {
    z-index: 222222222222222222 !important;
}

.header-btn-group a i {
    margin-right: 2px;
    font-size: 15px;
    position: relative;
    top: 2px;
}

.cpopup-inner .gform_wrapper {
    padding: 20px 45px 40px;
}

.cpopup-inner .gform_wrapper label {
	font-size: 14px;
}

.cpopup-inner .gform_wrapper label span {
    color: #ed1c24;
	font-size: 0px;
}

.cpopup-inner .gform_wrapper label > span:after {
	content:" *";
	font-size: 14px;
}

.cpopup-inner .gform_wrapper .gfield {
	padding: 10px 0;
}

.cpopup-inner .gform_wrapper select,
.cpopup-inner .gform_wrapper textarea,
.cpopup-inner .gform_wrapper input:not([type="checkbox"]):not([type="submit"]) {
	min-width: 100%;
	border: none;
	border-bottom: 1px solid #ddd;
	border-radius: 0px;
	height: 40px;
	padding: 0;
	margin: 0;
}

.cpopup-inner .gform_wrapper input[type="submit"] {
	min-width: 155px;
	height: 45px;
	line-height: 45px;
	padding: 0 20px;
	font-size: 14px;
	letter-spacing: 0.1em;
	color: #f4f0e5;
	text-transform: uppercase;
	display: inline-block;
	text-align: center;
	border: 1px solid #545454;
	position: relative;
	background: #545454;
}

.cpopup-inner .gform_wrapper input[type="submit"]:hover {
	background: transparent;
	color: #545454;
}

body.page-id-1234 .cpopup-inner {
    height: auto;
    position: relative;
    max-height: 95vh;
    overflow: auto;
    overflow-x: hidden;
}

body.page-id-1234 #ui-datepicker-div {
	background: #fff;
	width: 220px;
}

body.page-id-1234 .ui-datepicker-header {
	border: 1px solid #ddd;
	position: relative;
	padding-top: 26px;
}

body.page-id-1234 .ui-datepicker-header .ui-datepicker-prev {
	left: 0;
}

body.page-id-1234 .ui-datepicker-header .ui-datepicker-next {
	right: 0;
}

body.page-id-1234 .ui-datepicker-header .ui-datepicker-prev ,
body.page-id-1234 .ui-datepicker-header .ui-datepicker-next {
	font-size: 10px;
	padding: 10px;
	line-height: 1;
	text-transform: uppercase;
	letter-spacing: 1px;
	position: absolute;
	top: 0;
}

body.page-id-1234 .ui-datepicker-title {
	padding: 0 7px 5px;
	display: flex;
}

body.page-id-1234 .ui-datepicker-title select {
	border: 1px solid #ddd;
	margin: 4px 3px;
	height: 30px;
	padding: 0 5px;
	width: 100%;
}

body.page-id-1234 #ui-datepicker-div table {
	width: 100%;
}

body.page-id-1234 #ui-datepicker-div table th {
	background: #000;
	color: #fff;
	text-align: center;
	font-size: 12px;
}

body.page-id-1234 #ui-datepicker-div table td {
	font-size: 12px;
	border: 1px solid #ddd;
	text-align: center;
	min-width: 25px;
}

.cpopup-inner .gform_wrapper textarea {
	min-height: 100px;
}

.page-id-1240 .image-text {
	text-align: center;
	padding: 100px 0;
}

.page-id-1240 .image-text [class*="col-"] {
	width: 100%;
	max-width: 750px;
	margin: 0 auto;
}

@media(min-width: 1600px) {

.page-id-1240 .image-text {
	padding: 190px 0;
}
    
}

.gallery-block > div {
	display: flex;
	justify-content: center;
	align-items: center;
}

.gallery-block > div:not(.Tall) {
	height: 50vh;
}

.gallery-block > div > a {
	width: 100%;
	height: 100%;
    overflow: hidden;
}

.gallery-block > div > a img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top center;
	transition: 0.3s all;
}

.gallery-block > div:hover > a img {
	transform: scale(1.06);
	transition: 0.4s all;
}

.gallery-block {
	display: grid;
	grid-gap: 10px;
	grid-template-columns: repeat(auto-fit, minmax(555px, 1fr));
	grid-auto-rows: auto;
	grid-auto-flow: dense;
	max-width: calc(100% - 100px);
	margin: 0 auto 70px;
	padding: 0 15px;
}

.gallery-block .Wide {
	grid-column: span 2;
}

.gallery-block .Tall {
	grid-row: span 2;
}

.gallery-block .Big {
	grid-column: span 2;
	grid-row: span 2;
}


@media(max-width: 1800px) {

.gallery-block {
	grid-template-columns: repeat(auto-fit, minmax(444px, 1fr));
}

.gallery-block > div:not(.Tall) {
	height: 43vh;
}
	
}

@media(max-width: 1500px) {

.gallery-block {
	grid-template-columns: repeat(auto-fit, minmax(25%, 1fr));
}
	
}

@media(max-width: 1000px) {

.gallery-block {
	grid-template-columns: repeat(auto-fit, minmax(25%, 1fr));
}

.gallery-block > div:not(.Tall) {
	height: 210px;
}
	
}

@media(max-width: 767px) {

.gallery-block > div:not(.Tall) {
	height: 150px;
}
	
}

@media(max-width: 585px) {

.gallery-block > div:not(.Tall) {
	height: 130px;
}

.gallery-block {
	grid-template-columns: repeat(auto-fit, minmax(50%, 1fr));
}	
	
}

@media(min-width: 1200px) {

.gallery-block.alt {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.gallery-block.alt > div:not(.Tall) {
        height: 36vh;
}

}

@media(min-width: 1600px) {

.gallery-block.alt {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

.gallery-block.alt > div:not(.Tall) {
        height: 38vh;
}

}

@media(min-width: 2200px) {

.gallery-block.alt {
    grid-template-columns: repeat(auto-fit, minmax(444px, 1fr));
}

.gallery-block.alt > div:not(.Tall) {
        height: 38vh;
}

}

@media (max-width: 585px) {

.gallery-block {
	grid-template-columns: repeat(auto-fit, minmax(46%, 1fr));
  width: 100%;
}

.gallery-block {
    max-width: calc(100% - 0px);
}

}


.image-banner-popup {
	background: rgba(0,0,0,0.4);
	position: fixed;
	top: 0;
	left: 0;
	z-index: 2222;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: 0.3s all;
}

.image-banner-popup.active {
	opacity: 1;
	visibility: visible;
}

.image-banner-popup .ibp-inner {
	background: #fffefa;
	max-width: 600px;
	width: 95%;
	max-height: 95%;
	overflow: auto;
	overflow-x: none;
	padding: 40px;
	position: relative;
}

.image-banner-popup .ibp-inner p:last-of-type {
	margin: 0;
}

.image-banner-popup .ibp-close {
	position: absolute;
	top: 0;
	right: 0;
	line-height: 30px;
	color: #000;
	font-size: 23px;
	background: rgba(0,0,0,0.1);
	width: 30px;
	height: 30px;
	text-align: center;
	cursor: pointer;
	transition: 0.3s all;
}

.image-banner-popup .ibp-close:hover {
	background: rgba(0,0,0,0.2);
}

.ibp-popup-enabled {
	cursor: pointer;
}

.image-text_v2 {
	padding: 60px 0;
}

.image-text_v2 .head {
	max-width: 850px;
	margin: 0 auto 40px;
	text-align: center;
}

.image-text_v2 .head h2 {
	margin-bottom: 5px;
}

.image-text_v2 .item {
	border-bottom: 1px solid #e4e4e1;
	margin-bottom: 40px;
	display: flex;
	flex-wrap: wrap;
	height: calc(100% - 40px);
	padding-bottom: 40px;
	align-items: center;
}

.image-text_v2 .item > div {
	width: 50%;
}

.image-text_v2 .item > div:first-child {
	padding-right: 15px;
}

.image-text_v2 .item > div:last-child {
	padding-left: 15px;
}

.image-text_v2 .item h3 {
	margin: 0;
	font-size: 20px;
}

.image-text_v2 .item p:first-of-type {
	margin-bottom: 8px;
}

.image-text_v2 .item p:last-of-type {
	margin-bottom: 0px;
}

.image-text_v2.alt .row {
	align-items: center;
	margin-top: 40px;
}

.image-text_v2.alt .head {
	margin-bottom: 20px;
}

@media(min-width: 768px) {

.image-text_v2.alt .row:nth-child(odd) {
	flex-direction: row-reverse;
}

.image-text_v2.alt .row [class*="col-"]:last-child {
	padding-left: 40px;
}

.image-text_v2.alt .row:nth-child(odd) [class*="col-"]:last-child {
	padding-left: 15px;
	padding-right: 40px;
}

}

.text-block-simple {
	padding: 60px 0;
}

.text-block-simple ul {
	margin: 0 0 0 16px;
}

.text-block-simple ul li {
	list-style: disc;
}

.text-block-simple ul li::marker {
	font-size: 16px;
	color: #545454;
}

.text-block-simple ol {
	margin: 0 0 0 20px;
}

.text-block-simple ol li {
	list-style: disc;
}

.text-block-simple ol li::marker {
	font-weight: bold;
	color: #545454;
}

.text-block-simple li {
	margin: 5px 0 0
}

.text-block-simple ul,
.text-block-simple ol {
	margin-top: -10px;
}

.text-block-simple hr,
.image-text_v2 hr {
    border-top: 1px solid #c9c9c9;
    margin: 60px 0 -60px;
    opacity: 1;
    opacity: 0.5;
}

.image-text_v2:not(.alt) {
	padding-bottom: 20px;
}

.image-text_v2:not(.alt) hr {
    margin: 30px 0 -30px;
    opacity: 1;
    opacity: 0.5;
}

.image-text_v2:not(.alt) + .image-text_v2.alt {
	padding-top: 0px;
}

@media(max-width: 585px) {

.image-text_v2 .item {
    display: block;
}

.image-text_v2 .item > div:first-child {
    padding-right: 0px;
}

.image-text_v2 .item > div {
    width: 100%;
}

.image-text_v2 .item > div:last-child {
    padding: 20px 20px 0;
}
	
}

@media(max-width: 767px) {

.image-text_v2.alt img {
	width: 100%;
}

.image-text_v2.alt .row [class*="col-"]:last-child {
	padding-top: 25px;
}

}

.note{
	text-align: center;
}
.note p{
	width: 50%;
	margin: auto;
}

.sbi_username {
    display: none;
}

body .lity-image img {
    max-width: 90% !important;
    margin: 0 5%;
}

.hero h2{
	color: #f4f0e5;
	font-size: 18px;
	letter-spacing: 0.05em;
	margin: 0;
}
.page-id-381 .ui-datepicker{
	background: #fff;
	border: 1px solid #ddd;
}
.page-id-381 .ui-datepicker-title{
	margin: 0px!important;
}
.page-id-381 .ui-datepicker-month{
	margin-right: 5px!important;
}
.page-id-381 .gform_validation_error .gform-body.gform_body {
    height: 690px;
    overflow-y: auto;
	  scrollbar-width: 1px;
    scrollbar-width: thin;
}

@media screen and (max-width: 600px) {
    h1, .h1 {
      font-size: 30px; 
			line-height: 35px;
   }
	.hero h2{
		font-size: 14px;
		line-height: 25px;
	}
	.l-blocks-wrap .cta-btn{
		width: calc(100% - 30px);
    margin-left: 15px!important;
	}
}
@media (max-width: 1050px) {
	.image-text .align-items-center{
		align-items: flex-start!important;
	}
}

.cta-btn span {
    line-height: 1.1;
    display: inline-block;
}

.cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 991px) {
    .features-list > div {
        padding: 0 10px;
        flex: 1
    }
    .features-list > div .item {
        display: block
    }
    .features .item span a {
        display: block;
        padding-top: 10px;
    }
}



.ui-datepicker {
    background: #fff;
        border: 1px solid #ddd;
}
.ui-datepicker select {
    border: 1px solid #777;
    padding: 10px 20px;
}
.ui-datepicker tr td {
    padding: 10px 15px;
    border: 1px solid #ddd;
}
a.ui-datepicker-prev.ui-corner-all, a.ui-datepicker-next.ui-corner-all {
    width: 50%;
    display: inline-block;
    text-align: center;
    padding: 10px;
    background: #545454;
    color: #f4f0e5;
    cursor: pointer
}
a.ui-datepicker-prev.ui-corner-all {
    border-right: 1px solid #f4f0e5;
}
.ui-datepicker select {
    border: 1px solid #777;
    padding: 10px 20px;
    width: 50%;
    background: #FFFEFA;
}
.ui-datepicker-calendar th {
    background: #545454;
    color: #f4f0e5;
    text-align: center;
}
.related-pages{
	text-align: center;
}
.related-pages li{
	display: inline-block;
	margin-right: 15px;
	margin-bottom: 15px;
}
.related-pages li:last-child{
	margin-right: 0px;
}
.related-pages li a.cta-btn {
	font-size: 12px;
}
@media(max-width:991px){
	.related-pages {
    display: flex;
    flex-wrap: nowrap;
    overflow: auto;
    align-items: flex-start;
}
.related-pages li {
    display: inline-block;
    margin-right: 15px;
    margin-bottom: 15px;
}
.related-pages li a.cta-btn {
    margin-left: 0 !important;
    width: 100%;
}
}

@media(min-width: 600px) {
.cpopup-inner #gform_fields_4 {
     display: flex;
     flex-wrap: wrap;
     margin: 0 -12px;
}

.cpopup-inner #gform_fields_4 > .gfield {
     width: 50%;
     padding-left: 12px;
     padding-right: 12px;
}

.cpopup-inner #gform_fields_4 > .gfield:nth-child(1) ,
.cpopup-inner #gform_fields_4 > .gfield:nth-child(8) {
     width: 100%;
}
}

.cpopup-inner {
    max-height: 95vh;
    height: auto;
}

#gform_fields_4 .gfield_description.instruction {
  display: none;	
}
.footer-menu ul{
	display: block!important;
}
.footer-menu ul li{
	display: inline-block!important;
}

#tripleseat_embed_form {
	overflow: auto;
	overflow-x: hidden;
	max-height: 95vh;
}

@media(max-width: 585px) {
	
.cpopup-inner h2 {
    font-size: 16px;
}

body #tripleseat_embed_form .row_email_opt_out label {
	float: none;
}

#tripleseat_embed_form {
	padding: 25px 0px;
}

#tripleseat_embed_form table td {
    padding: 10px 10px !important;
}

}

@media(min-width: 586px) {

#tripleseat_embed_form table {
	width: 100%;
}

}

.image-text ul + .d-md-none .cta-btn {
    margin-top: 0px;
}

#particles-js canvas {
  display: block;
  vertical-align: bottom;
}

#particles-js {
  position: fixed;
	top:0;
	left:0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

@media (max-width: 767px) {
.hero > img, .js-user-action .hero .bg img {
	display: none;
}
.js-user-action .hero > img, .js-user-action .hero .bg img {
	display: block;
}
	.breadcrumb-wrap *,
	.breadcrumb-wrap p,
	.breadcrumb-wrap p a,
	.breadcrumb-wrap p span{
	font-size: 8px;
}
}
.breadcrumb-wrap{
	top: 0px;
}

.nl-wrap {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 999999999;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0,0,0,0.4);
	opacity: 0;
	visibility: hidden;
	transition: 0.3s all;
}

.nl-wrap.act {
	opacity: 1;
	visibility: visible;
}

.nl-wrap .nl-inner {
	background: #fffefa;
	width: 98%;
	max-width: 460px;
	padding: 40px;
	position: relative;
}

.nl-wrap .nl-inner h3 {
	text-align: center;
	margin-bottom: 0;
}

.nl-wrap .nl-inner p {
	text-align: center;
	line-height: 1.5
}

.nl-wrap .nl-close {
	position: absolute;
	top: 0;
	right: 0;
	font-size: 30px;
	line-height: 40px;
	width: 25px;
	cursor: pointer;
}

.nl-wrap form label {
	display: none;
}

.nl-wrap form input:not([type="submit"]) {
    height: 50px;
    font-size: 16px;
    color: #818181;
    border: none;
    background: transparent;
    border: 1px solid #9b9b9b;
    width: 100%;
	padding: 0 20px;
}

.nl-wrap form input[type="submit"] {
	min-width: 195px;
	height: 55px;
	background: #545454;
	line-height: 55px;
	padding: 0 20px;
	font-size: 14px;
	letter-spacing: 0.1em;
	color: #f4f0e5;
	text-transform: uppercase;
	display: inline-block;
	text-align: center;
	border: none;
	margin: 10px 0 0;
	width: 100%;
}

.gform_confirmation_message_5 {
    font-size: 13px;
    color: #818181;
    border: none;
    background: transparent;
    border: 1px solid #9b9b9b;
    width: 100%;
	padding: 15px 20px;
	text-align: center;
	line-height: 1.4;
}

.gform_confirmation_message_5 strong {
    font-size: 15px;
	display: block;
	font-family: "Nunito Sans", sans-serif;
	color: #545454;
	margin-bottom: 5px;
}





.nls-wrap {
	background: rgb(37 37 37);
	padding: 30px 0;
}

.nls-wrap .row {
	align-items: center;
}

.nls-wrap h3 {
	margin-bottom: 0;
	color: #fff;
}

.nls-wrap p {
	line-height: 1.5;
	color: #fff;
	margin-bottom: 0;
}

.nls-wrap form {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

.nls-wrap .gform-body  {
	width: calc(100% - 150px);
	position: relative;
}

.nls-wrap form label {
	display: none;
}

.nls-wrap form input:not([type="submit"]) {
    height: 50px;
    font-size: 16px;
    border: none;
    background: transparent;
    border: 1px solid #9b9b9b;
    width: 100%;
	padding: 0 20px;
	color: #fff;
}

.nls-wrap form input[type="submit"] {
	min-width: 150px;
	height: 50px;
	background: #f4f0e5;
	line-height: 55px;
	padding: 0 20px;
	font-size: 14px;
	letter-spacing: 0.1em;
	color: #545454;
	text-transform: uppercase;
	display: inline-block;
	text-align: center;
	border: none;
}

.nls-wrap .gform_confirmation_message_5 {
    font-size: 13px;
    color: #818181;
    border: none;
    background: transparent;
    border: 1px solid #9b9b9b;
    width: 100%;
	padding: 15px 20px;
	text-align: center;
	line-height: 1.4;
}

.nls-wrap .gform_confirmation_message_5 strong {
    font-size: 15px;
	display: block;
	font-family: "Nunito Sans", sans-serif;
	color: #545454;
	margin-bottom: 5px;
}

.nls-wrap #validation_message_5_1 {
	position: absolute;
	bottom: -25px;
	z-index: 22;
	font-size: 12px;
}

@media(max-width: 767px) {

.nls-wrap  h3 {
	text-align: center;
}

.nls-wrap p {
	text-align: center;
	margin-bottom: 20px;
}

.nls-wrap form input[type="submit"] {
    min-width: 130px;
}

.nls-wrap .gform-body {
    width: calc(100% - 130px);
}
	
}


body .cp-custom-html form label {
    display: none;
}

body .cp-custom-html form input:not([type="submit"]) {
    height: 45px;
    font-size: 15px;
    color: #818181;
    border: none;
    background: transparent;
    border: 1px solid #9b9b9b;
    width: 100%;
    padding: 0 20px;
}

body .cp-custom-html form input[type="submit"] {
    min-width: 195px;
    height: 45px;
    background: #545454;
    line-height: 45px;
    padding: 0 20px;
    font-size: 14px;
    letter-spacing: 0.1em;
    color: #f4f0e5;
    text-transform: uppercase;
    display: inline-block;
    text-align: center;
    border: none;
    margin: 10px 0 0;
    width: 100%;
}

body .cp-field-element img.emoji {
	max-height: 22px;
	position: relative;
	top: -3px;
	max-width: 22px;
}