/*-----------------------------------------------------------------------------------

 [Table of contents]

 1. Base (Global style for some elements)
 2. Banner section (Logo, Navigation and Video Banner Section)
 3. About us (Section)
 4. Service (Section)
 5. Statistics (Section)
 6. Testimonial (Section)
 7. Our Team (Section)
 8. Our Pricing (Section)
 9. Discount / Offer Banner (Section)
 10. Appointment Form (Section)
 11. Photo Gallery (Section)
 12. Join / Member (Section)
 13. Latest News (Section)
 14. Contact Us (Section)
 15. Footer (Section)

-----------------------------------------------------------------------------------*/
/*-----------------------------------------------------------------------------------

 [Global CSS for some elements]

 # html
 # body
 # a tag
 # responsive images
 # input placeholders
 # i tag for font awesome icons
 # paragraph
 # hr tag for horizontal line
 # white section
 # dark section
 # align center (class)
 # bootstrap fluid container
 # theme button
 # swiper (carousel slider)

-----------------------------------------------------------------------------------*/

/*-----------------------------------------------------------------------------------

Basic CSS

-----------------------------------------------------------------------------------*/
.first *{color: #fff !important;text-align: center}
.services{background-size: cover;background-repeat: no-repeat;background:#000;backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);background-position: center bottom;}
.services-section {position:relative; margin:0 auto; color:#000}
.services-section .sec-title {
    margin-bottom: 30px;
    padding: 0 15px;
}
.services-section .sec-title h2 {color:#fff;padding-top: 50px;text-align: center}
.services-section .sec-title .lower-text {color:#fff}
.services-section .row {counter-reset:slides-num}
.services-section .row .service-block {counter-increment:slides-num}
.service-block {position:relative; display:flex;}
.service-block .inner-box {position:relative;   justify-content: center;align-items: center;align-self: center;
; padding:40px 0px; border-radius:20px; overflow:hidden; transition:all .5s ease}
.service-block .inner-box h3 {position:relative; margin:0; margin-top:0px; font-size:20px; text-transform:uppercase; color:#fff; font-weight:400; letter-spacing:1px; line-height:1.1em}
.service-block .inner-box h3 {color:#fff; transition:all .5s ease; -moz-transition:all .5s ease; -webkit-transition:all .5s ease; -ms-transition:all .5s ease; -o-transition:all .5s ease}
.service-block .inner-box p{color:#fff;text-align: left}
.service-block-three {padding-top:0px}
.service-block p {color:#fff; top:15px;}


html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, address, cite, code, del, dfn, em, img, ins, q, small, strong, sub, sup, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
    border: 0;
    margin: 0;
    padding: 0;
    -webkit-text-size-adjust: none;
}

article, aside, figure, figure img, figcaption, hgroup, footer, header, nav, section, video, object {
    display: block
}

a img {
    border: 0
}

figure {
    position: relative
}

figure img {
    width: 100%
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

:before, :after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

body {
    color: #727272;
	font-family: 'Oswald', sans-serif;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased; /* This needs to be set or some font faced fonts look bold on Mac in Chrome/Webkit based browsers. */
    -moz-osx-font-smoothing: grayscale; /* Fixes font bold issue in Firefox version 25+ on Mac */
}

.skip-link {
  background: #f0d4a4;
  border-radius: 999px;
  color: #120d09;
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  font-weight: 700;
  left: 16px;
  letter-spacing: 0.12em;
  padding: 12px 18px;
  position: fixed;
  text-decoration: none;
  text-transform: uppercase;
  top: -64px;
  transition: top 0.2s ease;
  z-index: 12000;
}

.skip-link:focus {
  top: 16px;
}

.skip-link:focus-visible,
.slider-header .mobile-ic:focus-visible,
.slider-header .site-nav .nav-list li a:focus-visible,
.slider-header .responsive-menu ul li a:focus-visible,
.hero-btn:focus-visible,
.contact-main-actions a:focus-visible,
.review-more-btn:focus-visible,
.scroll-top:focus-visible {
  outline: 2px solid #f4e7c9;
  outline-offset: 4px;
}
.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.price-list-box {
  background: #000;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  padding: 20px;
}

.price-list-inner-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.price-list-service-name {
  font-weight: 600;
  font-size: 1.4rem;line-height: 20px;margin-bottom: 20px;
  text-transform: uppercase;
}

.price-list-service-price {
  font-weight: bold;
  font-size: 1.1rem;
  color: #c00;
}

.price-list-box p {
  margin: 0;
  line-height: 1.4;
  color: #fff;
}

.menu-title {
  text-transform: uppercase;
  font-size: 1.6rem;
  margin: 40px 0 20px;
  border-bottom: 2px solid #ddd;
  padding-bottom: 5px;
  text-align: center;
}
.container {
    /*padding-left: 15px;
    padding-right: 15px;*/
}

.row {
    /*width: 100%;
    max-width: 1170px;
    margin: 0 auto;*/
}

.clearfix:after {
    content: " "; /* Older browser do not support empty content */
    visibility: hidden;
    display: block;
    height: 0;
    clear: both;
}

.clr:before,
.clr:after,
.container:before,
.container:after,
.row:before,
.row:after {
    display: table;
    content: " "
}

.clr:after,
.clr:after,
.row:after, .clear {
    clear: both
}

img, object, embed {
    max-width: 100%;
}

img {
    height: auto;
    vertical-align: top;
}

input[type="submit"],
input[type="reset"],
input[type="text"],
input[type="button"],
input[type="search"],
input[type="url"],
input[type="tel"],
input[type="email"],
input[type="password"],
textarea, select {
    -webkit-appearance: none !important;
    border-radius: 0;
}

::-webkit-input-placeholder {
    opacity: 1 !important;
}

:-moz-placeholder {
    opacity: 1 !important;
}

::-moz-placeholder {
    opacity: 1 !important;
}

:-ms-input-placeholder {
    opacity: 1 !important;
}

*, img, a {
    outline: none;
}
a {
	transition: all ease 0.5s;
}
h1, h2, h3, h4, h5, h6, ul, li {
    font-weight: normal;
}

.table {
    width: 100%;
    height: 100%;
    display: table;
    table-layout: fixed;
}

.table-cell {
    display: flex;margin: 0 auto;flex-wrap: nowrap;
    vertical-align: middle;
}

.inline-block-outer:before {
    display: inline-block;
    height: 100%;
    vertical-align: middle;
    content: "";
}

h1 {
    font-weight: normal;
    font-size: 32px;
    line-height: 40px;
    color: #5c5d5e;
    font-family: 'Oswald', sans-serif;
    margin: 0;
	text-transform:uppercase;
}

h2 {
	font-weight: 700;
    color: #ffffff;
    font-family: 'Oswald', sans-serif;
    font-size: 50px;
    letter-spacing: 1.6px;
    line-height: 55px;
	text-transform:uppercase;
}

h3 {
    font-weight: normal;
    font-size: 17px;
    line-height: 25px;
}

h4 {
    font-weight: normal;
    font-size: 15px;
    line-height: 20px;
    overflow: hidden;
}
a {
    text-decoration: none;
}

p {
    font-size: 15px;
    line-height: 20px;
    color: #1d1d1b;
}

/*-----------------------------------------------------------------------------------

banner section

-----------------------------------------------------------------------------------*/

.banner-section {
    background: url("../images/banner-01.jpg") no-repeat top center;
    height: 100vh;
    background-size: cover;
}

.header {
    display: table;
    table-layout: fixed;
    width: 100%;
    height: 100%;
    padding-top:20px;
    position: relative;
}

.header ul {
    list-style: none;
}

.header ul li {
    display: inline-block;
    vertical-align: middle;
    padding-left: 35px;
}

.header ul li:first-child {
    padding-left: 0;
}

.header ul li a {
    display: block;
    font-weight:400;
    font-size: 12px;
    line-height: 16px;
    color: #ffffff;
    text-transform: uppercase;
    transition: all ease 0.5s;
    padding-bottom: 3px;
    letter-spacing: 0.2px;
	font-family: 'Oswald', sans-serif;
}

.header ul li a:hover, .header ul li.active a {
    color: #917758;
}

.header ul li.active a {
    border-bottom: 1px solid #917758;
}

.logo {
    text-align: center;
    max-width: 195px;
    margin: 0 auto;
}

.table-cell ul{margin: 0 auto}
.header .table-cell {
}

.logo.table-cell {
  max-width: 100%;
  text-align: left;
  width: 134px;
}

.banner-text {
    max-width: 1000px;
    width: 100%;
    margin: -70px auto 0;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
}

.banner-slide-show-wrapper {
    position: relative;
}

.banner-text span {
    display: block;
    font-weight:normal;
    color: #FFFFFF;
    font-size: 14px;
    line-height: 20px;
    text-transform: uppercase;
    letter-spacing: 4.2px;
	font-family: 'Oswald', sans-serif;
}

.banner-text h1 {
  color: #ffffff;
  font-size: 80px;
  font-weight: 600;
  line-height: 96px;
  letter-spacing: 0.6px;
  margin: 3px 0 5px;
}

.banner-text p {
  color: #ffffff;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.8px;
  line-height: 19px;
  margin-bottom: 35px;
}

.play-btn {
  display: block;
  margin-top: 72px;
}

/*-----------------------------------------------------------------------------------

banner slider css

-----------------------------------------------------------------------------------*/

.banner-slider-item {
	background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    height: auto;
}

.banner-slider-item .much-img img, .banner-slider-item .logo img {
	margin: 0 auto;
}
.much-img img {
    width: auto !important;
	padding-bottom:20px;
}
.banner-slider .slick-prev {
    left: 15px;
}

.banner-slider-item-img img {
    width: 100%;
}

.banner-slider .slick-next {
    right: 15px;
}

.slider-header {
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  background:rgba(0, 0, 0, 1);
  padding-bottom:20px;
}

.banner-slider-item {
  position: relative;
}
.banner-slider-item-img {
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
}
.banner-slider .banner-text {
  left: 0;
  margin: 0 auto;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}

.slider-more-btn
{
	display: block;
	background: #d19d64;
	text-transform: uppercase;
	color: #000000;
	font-weight: 700;
	text-align: center;
	font-size: 13px;
	letter-spacing:1px;
	line-height: 45px;
	max-width: 200px;
	width: 100%;
	height: 45px;
	margin:0 auto;
	font-family: 'Oswald', sans-serif;
}


/*-----------------------------------------------------------------------------------

About us

-----------------------------------------------------------------------------------*/

.experience-section {
	background: #FFFFFF;
	padding-bottom:110px;
}

.brush-image-big {
  background-position: center top;
  background-repeat: no-repeat;
  position: relative;
}

.brush-inner-big-img > img {
  width: 100%;
}

.brush-over-text-main {
  left: 0;
  padding: 25px;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
}

.timing-section {
  float: left;
  padding-right: 5px;
  position: relative;
  text-align: center;
  top: -150px;
  width:100%;
  border:1px solid rgba(255, 255, 255, 0.2);
}

.timing-section-box {
	float:left;
	width:100%;
	padding:25px 0;
}

.timing-section-icon {
	float:left;
	width:100%;
	text-align:center;
	font-size:22px;
	color:#d19d64;
	line-height:1.5;
}

.timing-section-text {
	float:left;
	width:100%;
	text-align:center;
	font-size:14px;
	color:#FFFFFF;
	font-family: 'Oswald', sans-serif;
	text-transform:uppercase;
	letter-spacing:1px;
	font-weight:normal;
	line-height:1.5;
}

.border-left-right {
	 border-left:1px solid rgba(255, 255, 255, 0.2);
	 border-right:1px solid rgba(255, 255, 255, 0.2);
}


.brush-over-text {
  background: rgba(0, 0, 0, 0.9) none repeat scroll 0 0;
  padding: 55px 0 30px;
  height: 100%;
  width: 100%;
}

.timing-text h5 {
  border-bottom: 1px solid #917758;
  color: #917758;
  display: inline-block;
  font-size: 33px;
  font-weight: 600;
  letter-spacing: 1.5px;
  line-height: 36px;
  margin-top: 4px;
  padding-bottom: 2px;
  text-transform: uppercase;
  vertical-align: middle;
}

.timing-text img {
  display: block;
  margin: 0 auto;
  text-align: center;
}

.days-text span, .location-text span, .phone-text span {
  color: #ffffff;
  display: block;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1px;
  line-height: 18px;
}

.days-text .day {
	color: #88837d;
	margin-bottom: 8px;
}

.timing-text {
    margin-bottom: 38px;
}

.days-text {
    margin-bottom: 29px;
}

.saturday-text, .sunday-text {
   position: relative;
   padding-top: 28px;
}

.saturday-text:before, .sunday-text:before {
  background: #88837d;
  border-radius: 100%;
  content: "";
  height: 8px;
  left: 0;
  margin: 0 auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 8px;
} 

.location-text span, .phone-text span {
	display: block;
	margin-top: 13px;
}

.phone-text {
   margin-top: 38px;
}

.location-text {
  padding-top: 69px;
  position: relative;
}

.location-text:before {
	content: "";
	background: #917758;
	width: 1px;
	height: 30px;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
}

.about-left-section h6 {
	font-size: 14px;
	line-height: 18px;
	color: #917758;
	text-transform: uppercase;
	letter-spacing:1px;
	font-family: 'Oswald', sans-serif;
}

.about-left-section h2 {
  color: #000000;
  font-size: 50px;
  font-weight:700;
  letter-spacing: 0.1px;
  line-height: 55px;
  margin-top: 4px;
}

.line {
	position: relative;
	display: block;
}

.line:after {
	content: "";
	background: #a38f78;
	width: 70px;
	height: 4px;
	position: absolute;
	left: 0;
	top: 28px;
}

.about-left-section {
  float: left;
  padding:0 0 98px 0;
  width: 100%;
}

.story-text-left .big-text {
	font-size: 18px;
	line-height: 27px;
	color: #2d2d2d;
	margin-bottom: 36px;
	text-transform:uppercase;
	font-family: 'Oswald', sans-serif;
	letter-spacing:1px;
}

.story-text {
  float: left;
  margin-top: 80px;
  width: 100%;
}

.story-text-left p {
	font-size: 14px;
	line-height: 26px;
	color: #2d2d2d;
}

.read-more-btn {
	display: block;
	background: #d19d64;
	text-transform: uppercase;
	letter-spacing:1px;
	color: #000000;
	font-weight: 700;
	text-align: center;
	font-size: 13px;
	line-height: 45px;
	max-width: 153px;
	width: 100%;
	height: 45px;
	font-family: 'Oswald', sans-serif;
	text-decoration:none;
	clear:both;
}


.read-more-btn:hover {
	background: #000000;
	color:#d19d64;
	text-decoration:none;
}

.story-text-left .read-more-btn {
	margin-top: 45px;
}

.story-text-left {
  float: left;
  width: 100%;
}

.story-text-right {
  float: left;
  width: 40%;
}

.about-right-section {
	float:right;
	width:100%;
	text-align:right;
}


/*-----------------------------------------------------------------------------------

Our-service

-----------------------------------------------------------------------------------*/
.our-service *{color: #fff !important}
.our-service {
	background: #000;
	padding-top: 106px;
	padding-bottom: 100px;
}

.heading-title {
	text-align: center;
	color: #000000;
	position: relative;
	margin-bottom: 100px;
	letter-spacing: 0;
}



.service-block h6 {
	font-size: 28px;
	line-height: 20px;
	font-weight: 700;
	color: #d19d64;
	position: relative;
	padding-bottom: 16px;
	font-family: 'Oswald', sans-serif;
	text-transform:uppercase;
}

.service-block p {
  color: #494949;
  font-size: 13px;
  font-weight: 400;
  line-height: 25px;
  margin: 25px auto 25px;
  padding:0 25px;
}

.service-block {
	text-align: center;
	float: left;
	width: 33.33%;
	padding: 0 30px;
}

.service-block-inner {
	border: 4px solid #000000;
	padding: 70px 0 60px;
    position: relative;
    cursor: pointer;
}

.service-block-inner:hover .service-block-image {
	background:#000000;
}

.service-block-image {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 0;
  position: relative;
}

.service-wrap-img > img {
  width: 100%;
}

.service-wrap-img {
  opacity: 0;
}

.service-middle.active .service-wrap-img {
  opacity: 1;
}

.service-block-image-wrap {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding-top:0px;
}

.service-block .read-more-btn {
	background:none;
	color: #000000;
	border: 1px solid gold;
	margin: 0 auto;
}

.service-wrapper {
	margin: 0 -30px;
}

.service-block .read-more-btn:hover {
	background: #2e2a26;
	color: #ffffff;
	text-decoration:none;
}

.service-ic {
  margin-bottom: 40px;
}

.service-ic img {
  margin: 0 auto;
}

.service-middle .service-block-inner {
	padding: 10px;
}

.service-middle.active h6, .service-block-inner:hover h6 {
	color: #ffffff;
}

.service-middle.active p, .service-block-inner:hover p {
	color: #c7c7c7;
}

 .service-middle.active .read-more-btn, .service-block-inner:hover .read-more-btn {
	background: #917758;
	color: #ffffff;
}

/*-----------------------------------------------------------------------------------

service slider

-----------------------------------------------------------------------------------*/

.slick-dots {
	list-style: none;
	text-align: center;
	margin-top: 44px;
}

.slick-dots li {
	display: inline-block;
	vertical-align: middle;
	padding-left: 10px;
}

.slick-dots li:first-child {
	padding-left: 0;
}

.slick-dots li button {
	background: none;
	width: 16px;
	height: 16px;
	border: 2px solid #917758;
	cursor: pointer;
	font-size: 0;
	border-radius: 100%;
	outline: none;
}

.slick-dots .slick-active button {
	background: #917758; 
}

.counter-text h5 {
	color: #000000;
	font-size: 32px;
	line-height: 40px;
	font-weight: 400;
	font-family: 'Oswald', sans-serif;
}

.counter-text p {
	font-size: 12px;
	line-height: 16px;
	color: #000000;
	font-weight: 700;
	text-transform: uppercase;
	margin-top: 6px;
	font-family: 'Open Sans', sans-serif;
}

.counter-img {
	float: left;
	width: 100%;
	text-align:center;
	padding:0 0 20px 0;
}

.counter-icon {
	float: left;
	width: 100%;
	text-align:center;
}

.counter-icon i{
	width:100%;
	height:50px;
	text-align:center;
	color:#b7b7b7;
	font-size:40px;
	display:block;
	line-height:50px;
}


.counter-text {
	overflow: hidden;
	float:left;
	width:100%;
	text-align:center;
}

.counter-box {
	float: left;
	width: 100%;
	clear:both;
	padding-bottom:25px;
}

.counter-wrapper {
	max-width: 1074px;
	width: 100%;
	margin: 0 auto;
}


/*-----------------------------------------------------------------------------------

Testimonial 

-----------------------------------------------------------------------------------*/

.client-testimonial {
	padding-top: 100px;
	padding-bottom: 115px;
	text-align: center;
}

.client-testimonial .heading-title {
	color:#FFFFFF;
}

.testimonial-wrapper {
    max-width: 730px;
    width: 100%;
    margin: 0 auto;
}

.testimonial-box {
	position: relative;
	width: 100%;
	margin: 0 auto;
	padding: 20px 10px 105px;
	box-shadow: 0 3px 10px 0px rgba(0, 0, 0, 0.1);
	border-radius: 3px;
}

.testimonial-box:before {
	content: "";
	bottom:0;
	left: 0;
	right: 0;
	position: absolute;
	width: 78px;
	height: 63px;
	margin: 0 auto;
}

.testimonial-wrapper .slick-arrow {
  border-radius: 4px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  margin-top: -49px;
}

.testimonial-wrapper .slick-prev {
	left: -219px;
}

.testimonial-wrapper .slick-next {
	right: -219px;
}

.test-img {
	margin-top:0px;
	margin-bottom:50px;
	position: relative;
}

.test-img img {
	margin: 0 auto;
}

.testimonial-box p {
	font-size: 14px;
	line-height: 26px;
	color: #FFFFFF;
	margin-bottom: 35px;
}

.testimonial-box span {
	display: block;
	font-size: 24px;
	line-height: 24px;
	color: #d19d64;
	font-weight: 400;
	font-family: 'Oswald', sans-serif;
}

.testimonial-box b {
	font-size: 17px;
	line-height: 20px;
	font-weight: 600;
}

.testi-logo-img {
	float: left;
	width: 25%;
	border:#cfdae0 solid 1px;
}

.testimonial-logo {
	width: 100%;
	margin: 100px auto 0;
}

.testimonial-logo .slick-prev {
  background: #F5EEE6 url("../images/logo-angle-left.png") no-repeat scroll center center;
  left: -40px;
}

.testimonial-logo .slick-next {
  background: #F5EEE6 url("../images/logo-angle-right.png") no-repeat scroll center center;
  right:-40px;
}

.testimonial-logo .slick-arrow {
	width: 17px;
	height: 9px;
}

.testimonial-logo a {
	display: block;
	text-align: center;
}

.testimonial-logo .slick-slide img {
	margin: 0 auto;
}


/*-----------------------------------------------------------------------------------

our-team 

-----------------------------------------------------------------------------------*/
.our-team {
	background-color: #FFFFFF;
	padding-top: 93px;
	padding-bottom:110px;
}

.our-team-text {
	text-align: center;
	position: relative;
	z-index: 9;
	padding-top: 22px;
	min-height: 105px;
}

.our-team-text:before {
	content: "";
	background:#000000;
	width: 100%;
	height: 100px;
	position: absolute;
	top:0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: -1;
}

.our-team-text h5 {
	color: #ffffff;
	font-family: 'Oswald', sans-serif;
	font-size: 18px;
	line-height: 20px;
	font-weight: normal;
	text-transform:uppercase;
}

.our-team-text span {
	display: block;
	font-family: 'Oswald', sans-serif;
	font-size: 14px;
	line-height: 16px;
	color: #d19d64;
	font-weight: 500;
	margin-top: 9px;
	text-transform:uppercase;
}

.our-team-box {
	float: left;
	width: 33.33%;
	padding-left: 28px;
	padding-right: 28px;
}

.our-team-inner {
	position: relative;

}

.our-team-inner:before {
	content: "";
    border: 4px solid #ffffff;
    position: absolute;
    top: 16px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    width: 91%;
    height: 75%;
}

.our-team .slick-arrow {
	display: none !important;
}

.our-team .slick-dots li button {
	background: transparent;
	border-color: #ababab;
}

.our-team .slick-dots .slick-active button {
	background: #d19d64;
}


/*-----------------------------------------------------------------------------------

Tab Style pricing

-----------------------------------------------------------------------------------*/

.tabbed-content {
  max-width: 100%;
  padding: 0;
  margin: 0 auto;
}

.tabs ul {
  margin: 0;
  padding:0;
  font-weight: bold;
  border-bottom:#d19d64 solid 2px;
  background:#000000;
}

.tabs ul li {
  font-size:28px;
  font-weight:700;
  font-family: 'Oswald', sans-serif;
  padding:0;
  background:none;
}

.tabs ul li a {
  padding: .5em 1.7em;
  color:#808080;
  text-decoration:none;
}

.tabs ul li a:hover, .tabs ul li a.active {
  background:rgba(0,0,0,0.0);
  color: #000000;
}

.item {
  margin-bottom: 2px;
  
}

.item::before {
  cursor: pointer;
  background: #000000;
  padding: .5em;
  display: block;
  font-size:28px;
  font-weight:700;
  font-family: 'Oswald', sans-serif;
  text-transform:uppercase;
}

.item.active::before {
  background:rgba(0,0,0,0.0);
  color: #000000;
  font-size:28px;
  font-weight:700;
  font-family: 'Oswald', sans-serif;
  text-transform:uppercase;
}

.item.active .item-content {
  padding:0;
  -webkit-transition: opacity 0.3s ease-in-out;
  -moz-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
  -ms-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}

.price-list-main {
	width: 100%;
}

.price-list-full-row {
	width: 100%;
	display:inline-block;
	margin-bottom:50px;

}

.price-list-row {
	width: 49%;
	display:inline-block;
}

.left-space {
	padding:0 0 0 2%;
}

.right-space {
	padding:0 2% 0 0;
}

.price-list-box {
	width: 100%;
}

.price-list-inner-box {
	width: 100%;
	border-bottom:#656464 solid 1px;
}

.price-list-service-name {
	font-family: 'Oswald', sans-serif;
	font-size:20px;
	text-transform:uppercase;
	text-align:left;
	color:#FFFFFF;
	display:inline-block;
}

.price-list-service-price {
	font-family: 'Oswald', sans-serif;
	font-size:20px;
	text-transform:uppercase;
	text-align:right;
	color:#d19d64;
	margin-top:-30px;
}

.price-list-discription p {
	font-size:14px;
	text-transform:capitalize;
	text-align:left;
	color:#c2c2c2;
	font-family: 'Open Sans', sans-serif;
	padding:8px 0 0 0;
}

.cta-box {
	float:left;
	width:100%;
	border:#3d3c3b solid 2px;
	padding:50px;
}

.cta-box:hover {
	background:#000000;
	border:#FFFFFF solid 2px;
	padding:50px;
	transition:all ease .5s;
}

.cta-box-hours {
	float:left;
	width:100%;
	font-family: 'Oswald', sans-serif;
	font-size:19px;
	text-transform:uppercase;
	color:#FFFFFF;
	padding:5px 0 0 0;
}

.ctaclock {
	color:#d19d64;
}

.cta-box-btn {
}

.cta-appoint-btn {
	display: block;
	background: #d19d64;
	text-transform: uppercase;
	letter-spacing:1px;
	color: #000000;
	font-weight: 700;
	text-align: center;
	font-size: 13px;
	line-height: 45px;
	max-width: 250px;
	width: 100%;
	height: 45px;
	font-family: 'Oswald', sans-serif;
	text-decoration:none;
}


.cta-appoint-btn:hover {
	background: #FFFFFF;
	color:#000000;
	text-decoration:none;
}


@media all and (min-width: 800px) {
  .item.active .item-content {
    padding-top: 0;
  }

  .tabs-side .tabs li {
    margin-bottom: 2px;
  }
  
 
  
  
}
/* 
The project specific CSS starts here
This is the minimum CSS that you will need in order for this to work
*/
.tabbed-content .tabs {
  display: none;
}
.tabbed-content .item {
  min-height: 2em;
}
.tabbed-content .item::before {
  content: attr(data-title);
}
.tabbed-content .item .item-content {
  opacity: 0;
  visibility: hidden;
  height: 0;
}
.tabbed-content .item.active .item-content {
  opacity: 1;
  visibility: visible;
  height: auto;
}

@media all and (min-width: 980px) {
  .tabbed-content .tabs {
    display: block;
  }
  .tabbed-content .tabs li {
    display: inline-block;

  }
  .tabbed-content .tabs li a {
    display: block;
  }
  .tabbed-content .item {
    min-height: 0;
  }
  .tabbed-content .item::before {
    display: none;
  }
  .tabbed-content.tabs-side .pricing-tabs {
    width: 150px;
    float: left;
  }
  .tabbed-content.tabs-side .pricing-tabs li {
    display: block;
  }
  .tabbed-content.tabs-side .item {
    margin-left: 150px;
  }
  
 
}





/*-----------------------------------------------------------------------------------

Box Style pricing

-----------------------------------------------------------------------------------*/

.our-pricing {
	background: url("../images/price-banner.jpg") no-repeat top center;
	background-size: cover;
	padding-top: 107px;
	padding-bottom: 107px;
}

.our-pricing .heading-title {
	color: #ffffff;
}

.our-pricing-wrapper {
	margin: 0px;
}

.our-price-box {
	float: left;
	width: 50%;
	padding: 0 15px;
	margin-bottom: 30px;
}

.our-price-box-inner {
    border: 3px solid #917758;
    display: table;
    height: 100%;
    table-layout: fixed;
    width: 100%;
    cursor: pointer;
    transition: all ease 0.5s;
}

.our-price-box-inner:hover {
    background: #000000;
}

.our-price-box-left {
	display: table-cell;
	vertical-align: middle;
	width: 72%;
	padding: 37px;
	border-right: 3px solid #917758;
}

.our-price-box-right {
	display: table-cell;
	vertical-align: top;
	width: 28%;
}

.our-price-text h4 {
	font-size: 16px;
	line-height: 20px;
	color: #ffffff;
	font-weight: 600;
}

.our-price-text p {
	font-size: 13px;
	line-height: 22px;
	color: #8a8682;
	font-weight: 400;
	margin: 15px 0;
}

.our-price-text .more {
	font-size: 11px;
	line-height: 16px;
	font-weight: 600;
	text-transform: uppercase;
	color: #8a8682;
	position: relative;
	padding-right: 18px;
}

.our-price-text .more:hover {
	color: #ffffff;
}

.our-price-ic {
	float: left;
	width: 60px;
}

.our-price-text {
	overflow: hidden;
	padding-left: 5px;
}

.price-discount {
    padding: 11px;
    border-bottom: 3px solid #917758;
}

.price-discount span {
	background-color: #917758;
	padding: 38px 25px;
	text-transform: uppercase;
	display: block;
	text-align: center;
	color: #ffffff;
	font-size: 17px;
	line-height: 20px;
	font-weight: 600;
}

.start-price span {
	display: block;
	font-size: 10px;
	line-height: 15px;
	color: #ffffff;
	font-weight: 600;
	text-transform: uppercase;
}

.start-price {
	text-align: center;
	padding-top: 21px;
}

.start-price b {
	display: block;
	font-size: 26px;
	line-height: 30px;
	color: #917758;
	font-weight: 400;
}


/*-----------------------------------------------------------------------------------

Discount

-----------------------------------------------------------------------------------*/

.get-discount {
	background-color: #eaeff2;
	padding-top: 150px;
	padding-bottom: 150px;
	text-align: center;
}

.get-discount-box{
	margin:0 auto;
	background:#000000;
	border: 8px solid #eaeff2;
    outline: black solid 2px;
	padding:50px;
}

.get-discount-box h3  {
	font-size: 50px;
	line-height: 54px;
	color: #FFFFFF;
	font-weight:300;
	font-family: 'Oswald', sans-serif;
	text-transform:uppercase;

}

.brown-text {
	color: #d19d64;
	}

.get-discount-img {
  margin-bottom:0px;
}

.get-discount-box h3 b {
	font-weight: 600;
}
.get-discount p {
	font-size: 14px;
	line-height: 26px;
	color: #494949;
	font-weight: 400;
	margin: 40px 0;
}

.get-discount a {
	margin: 0 auto;
	max-width: 260px;
}

.promocode {
	font-size: 19px;
	line-height: 54px;
	color: #FFFFFF;
	font-weight:normal;
	font-family: 'Oswald', sans-serif;
	text-transform:uppercase;
}


/*-----------------------------------------------------------------------------------

Appointment

-----------------------------------------------------------------------------------*/

.make-appointment {
	background-color: #000000;
	padding-top: 103px;
	padding-bottom: 103px;
	position: relative;
}


.make-appointment-left-section .heading {
    font-size:30px;
	margin-bottom:45px;
	letter-spacing:0;
	color:#d19d64;
}


.make-appointment-right-section {
	float:right;
	width:100%;
	background:#d19d64;
	padding:50px;
	}

.make-appointment .heading-title {
    color: #ffffff;
}

.make-appointment .heading-title:before {
}

.make-appointment-right-section .heading-title {
    font-size:30px;
	margin-bottom:45px;
}

.make-appointment-form {
	float:left;
	width:100%;
}

.appointment-form-field {
	float:left;
	width:100%;
	margin-bottom:10px;
	position:relative;
}



.appointment-form-field input[type="text"], .appointment-form-field input[type="email"], .appointment-form-field textarea {
	font-size: 14px;
	line-height: 16px;
	position: relative;
	background:none;
	border:#FFFFFF solid 1px;
	height: 40px;
	width: 100%;
	padding: 0 15px;
	border-radius: 0;
	box-shadow: none;
	color:#676767;
}

.appointment-form-field select {
	font-size: 14px;
	line-height: 16px;
	position: relative;
	background:none;
	border:#FFFFFF solid 1px;
	height: 40px;
	width: 100%;
	padding: 0 15px;
	border-radius: 0;
	box-shadow: none;
	color:#676767;
}

.appointment-calender {
	cursor: pointer;
	width: 33px;
	height: 33px;
	position: absolute;
	right: 5px;
	top: 5px;
	text-align: center;
	border: none;
	font-size: 20px;
	color:#FFFFFF;
}


.appointment-submit-field {
	width: 100%;
	text-align: right;
}

.appointment-form-field input[type="submit"] {
	cursor: pointer;
	background: #000000;
	font-size: 13px;
	line-height: 45px;
	height: 45px;
	text-transform: uppercase;
	font-weight:700;
	border: none;
	width: 100%;
	color: #d19d64;
	font-family: 'Oswald', sans-serif;
	letter-spacing:1px;
	margin:40px 0 0 0;
}

.appointment-form-field input[type="submit"]:hover {
	background: #FFFFFF;
	color:#000000;
	transition:all ease .5s;
}

.make-appointment:after {
}

.appointment-header {
	display: table;
	table-layout: fixed;
	width: 100%;
	height: 100%;
}

.appointment-cell {
	display: table-cell;
	vertical-align: middle;
	padding: 0 3px;
}

.appointment-inner {
	background-color: #736049;
	padding: 2px;
    cursor: pointer;
}

.appointment-inner span, .appointment-inner p {
	font-size: 16px;
	line-height: 20px;
	color: #bfb2a3;
	display: inline-block;
	vertical-align: middle;
}

.appointment-inner span {
	background-color: #67553f;
	text-align: center;
	padding: 6px 8px;
}

.appointment-inner p {
	padding-left: 10px;
}

.appointment-cell.active .appointment-inner, .appointment-inner.current {
	background-color: #2e2a26;
}

.appointment-cell.active p, .appointment-inner.current p {
	font-weight: 600;
}

.appointment-cell.active span, .appointment-inner.current span {
	color: #ffffff;
	background-color: #917758;
}

.appointment-form {
	margin-top: 55px;
	position: relative;
	z-index: 99;
}

.appointment-form p {
	font-size: 16px;
	line-height: 20px;
	font-weight: 600;
	margin-bottom: 29px;
	color: #ffffff;
}

.appointment-form-wrapper {
	margin: 0 -10px;
}

.form-field label {
	font-size: 13px;
	line-height: 16px;
	color: #d2ccc5;
	display: block;
	margin-bottom: 4px;
}

.form-field {
	float: left;
	width: 25%;
	padding: 0 10px;
	margin-bottom: 20px;
}

.form-field.full {
	width: 100%;
}

.form-field input[type="text"], .form-field input[type="email"], .form-field textarea {
	font-size: 13px;
	line-height: 16px;
	position: relative;
	background-color: #f5eee6;
	height: 40px;
	width: 100%;
	padding: 0 15px;
	border-radius: 0;
	border: none;
	box-shadow: none;
}

.form-field textarea {
	height: 109px;
	padding: 15px;
	resize: none;
}

.form-field input[type="submit"] {
	cursor: pointer;
	background: #2e2a26;
	font-size: 12px;
	line-height: 45px;
	height: 45px;
	text-transform: uppercase;
	font-weight: 600;
	border: none;
	max-width: 120px;
	width: 100%;
	color: #ffffff;
}

.form-field input[type="submit"]:hover {
	background: #d2ccc5;
}

.submit-field {
	width: 100%;
	text-align: right;
}

.calender input[type="text"] {
	background-repeat: no-repeat;
	background-position: 95% 50%;
}


.make-appointment-left-section {
	float:left;
	width:70%;
}
	

.make-appointment-hours-section {
	float:left;
	width:100%;
}

.hours-list li {
	color: #bdbdbd;
	list-style-type: none;
	margin-bottom: 55px;
	border-bottom: 2px dotted #898989;
	font-size: 16px;
	text-transform: uppercase;
	font-weight: 400;
	font-family: 'Oswald', sans-serif;

}

.hours-list li span {
	background: #000;
	position: relative;
	top: 5px;
	padding: 0 5px;
	display: inline-block;
}

.hours-list li span:last-child {
	float: right;
}



/*-----------------------------------------------------------------------------------

Photo Gallery

-----------------------------------------------------------------------------------*/

.our-gallery {
	background: #eaeff2;
	padding-top: 105px;
	padding-bottom: 105px;
	position: relative;
}

.our-gallery .row {
	position: relative;
}

.tab-col {
    float: left;
    width: 25%;
}

.gallery-img {
    margin-bottom:0px;
    padding:0px;
}

.tabs:after {
	content: "";
	width: 100%;
	display: inline-block;
}

.tabs {
	list-style: none;
	text-align: center;
	margin: 0 auto 40px;
	text-align: justify;	
}

.gallery-tabs  {
	max-width: 490px;
	width: 100%;

}


.tab-content, .tab-content2 {
	display: none;
}

.tab-content.current, .tab-content2.current{
	display: inherit;
}

.tabs li {
	display: inline-block;
	vertical-align: middle;
	cursor: pointer;
	font-size: 16px;
	line-height: 19px;
	color: #575757;
	font-weight:normal;
	padding-bottom: 2px;
	font-family: 'Oswald', sans-serif;
	text-transform:uppercase;
	background:#FFFFFF;
	padding:6px 15px;
}

.tabs li.current {
	color: #FFFFFF;
	background:#000000;
	
}

.tabs li:first-child {
	/*padding-left: 0;*/
}

.gallery-img a {
	display: block;
	position: relative;
	transition: all ease 0.5s;
    overflow: hidden;
}

.gallery-img a:hover {
	border:#d19d64 solid 10px;
}

.gallery-img a img {
    transition: all ease 0.5s;
	width:100%;
}

.gallery-img a:hover img {
    transform: scale(1.2);
}

.gallery-img a:after, .gallery-img a:before {
	content: "";
	background: rgba(0, 0, 0, 0.6) none repeat scroll 0 0;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	opacity: 0;
	transition: all ease 0.5s;

}

.gallery-img a:before {
  background: url("../images/plus-ic.png") no-repeat scroll center center;
  height: 85px;
  margin: 0 auto;
  width: 85px;
  z-index: 9;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);

}

.gallery-img a:hover:after, .gallery-img a:hover:before {
	display: block;
	transition: all ease 0.5s;
    opacity: 1;

}

.gallery_button {
	margin:0 auto;
	max-width: 150px;
}

.gallery-read-more-btn {
	display: block;
	background: #d19d64;
	text-transform: uppercase;
	letter-spacing:1px;
	color: #000000;
	font-weight: 700;
	text-align: center;
	font-size: 13px;
	line-height: 45px;
	width: 100%;
	height: 45px;
	font-family: 'Oswald', sans-serif;
	text-decoration:none;
	margin-top:70px;
}


.gallery-read-more-btn:hover {
	background: #000000;
	color:#d19d64;
	text-decoration:none;
}

.g1-ic, .g2-ic, .g3-ic {
	position: absolute;
}

.g1-ic {
  left: -204px;
}

.g3-ic {
  right: 0;
  top: 478px;
}

.g2-ic {
  left: -100px;
  bottom: 0;
}


/*-----------------------------------------------------------------------------------

join-member

-----------------------------------------------------------------------------------*/

.join-member {
	background: #000000;
	padding-top: 110px;
	padding-bottom: 110px;
}

.join-member h3 {
  color: #ffffff;
  font-size: 43px;
  font-weight: normal;
  line-height: 54px;
  padding-left: 200px;
  position: relative;
  font-family: 'Oswald', sans-serif;
  text-transform:uppercase;
}

.join-member h3:before {
	content: "";
	width: 137px;
	height: 44px;
	position: absolute;
	left: 0;
	top: 10px;
}

.join-member-left {
  float: left;
  width: 100%;

}

.join-member-right {
  float: left;
  width: 100%;
  padding-top:0px;
}

.join-member-right .read-more-btn {
  display: inline-block;
  max-width: 100%;
  padding: 0 30px;
  vertical-align: middle;
  width: auto;
}

.join-member-right .read-more-btn:hover {
	background:#d19d64;
	color:#000000;
}


/*-----------------------------------------------------------------------------------

latest-news 

-----------------------------------------------------------------------------------*/

.latest-news {
	background: #eaeff2;
	padding-top: 97px;
	padding-bottom: 122px;
}

.latest-news-row {
	margin: 0 -15px;
}

.latest-news-block {
	float: left;
	width: 100%;
	padding: 0 15px;
}

.latest-news-block-inner {
  cursor: pointer;
  position: relative;
  transition: all ease 0.5s;
}


.news-date {
	position: absolute;
	top:0;
	left:0px;
	font-size: 12px;
	line-height: 16px;
	color: #000000;
	font-weight: 600;
	text-align: center;
	background: #eaeff2;
	padding: 6px;
	text-transform: uppercase;
}

.news-date b {
	font-size: 29px;
	line-height: 32px;
	font-weight: normal;
	display: block;
	font-family: 'Oswald', sans-serif;
	text-transform: uppercase;
}

.news-date-inner {
  border: 1px solid #000000;
  padding: 4px 12px 6px;
}

.news-text {
  bottom: 0;
  left: 0;
  padding: 30px 0 0 0;
  transition: all 0.5s ease 0s;
  font-family: 'Oswald', sans-serif;
  text-transform:uppercase;
}

.news-text span {
  color: #575757;
  display: inline-block;
  font-size: 13px;
  font-weight:normal;
  line-height: 16px;
  padding-left: 10px;
  padding-right: 7px;
  position: relative;
  vertical-align: middle;
}

.news-text span:after {
	content: "|";
	position: absolute;
	left: 0;
	top: 0;
}

.news-text span:first-child {
	padding-left: 0;
	color:#d19d64;
}

.news-text span:first-child:after {
	display: none;
} 

.news-text p {
  color: #000000;
  font-size: 16px;
  font-weight: normal;
  line-height: 27px;
  margin-top: 10px;
}

.news-text a {
	display: block;
	font-size: 13px;
	line-height: 16px;
	color: #d19d64;
	text-transform: uppercase;
	font-weight:700;
	margin-top: 25px;
    display: none;
	background:#000000;
	max-width:120px;
	padding:10px 10px;
	text-align:center;
}

.latest-news-block-inner:hover .news-text a {
    display: block;
}

.latest-news-block-inner:hover .news-text {
    transform: translateY(-14px);
    -webkit-transform: translateY(-14px);
}

.news-text a:hover {
	color: #ffffff;
}


/*-----------------------------------------------------------------------------------

Our Brands Logo

-----------------------------------------------------------------------------------*/

.brand-section {
	float:left;
	width:100%;
	background:#FFFFFF;
	clear:both;
	padding:100px 0;
}


/*-----------------------------------------------------------------------------------

Contact us

-----------------------------------------------------------------------------------*/
.map-banner {
	background-size: cover;
	padding-bottom: 110px;
	padding-top: 110px;
	clear:both;
}

.map-banner .heading-title {
	color:#FFFFFF;
}
.map-top-ic {
	/*background: #191919;
	padding: 43px 31px;*/
}

.map-top-block {
  float: left;
  width: 25%;
}

.map-top-text {
  overflow: hidden;
  /*padding-left: 15px;*/
  padding:25px 0 0 0;
}

.map-top-text span {
	display: block;
	font-size: 14px;
	line-height: 16px;
	color: #d19d64;
	font-weight: 400;
	margin-bottom: 3px;
	text-align:center;
	font-family: 'Oswald', sans-serif;
	text-transform:uppercase;
	letter-spacing:1px;
}

.map-top-text p, .map-top-text a {
	font-size: 13px;
	line-height: 16px;
	color: #c7c7c7;
	font-weight:normal;
	font-family: 'Oswald', sans-serif;
	text-transform:uppercase;
	letter-spacing:1px;
	text-align:center;
}

.map-inner-ic {
  /*border: 1px solid #917758;*/
  border-radius: 100%;
  /*float: left;*/
  display:block;
  height: 40px;
  padding-top:8px;
  text-align: center;
  width: 40px;
  background:#FFFFFF;
  color:#000000;
  font-size:18px;
  margin:0 auto;
}

.map-top-text a:hover {
	color: #737373;
}

.map-img {
	position: relative;
}

.map-img iframe {
     webkit-filter: grayscale(100%);
    filter: grayscale(100%);
	width:100%;
	height:400px;
}

.map-img:after {
	content: "";
	position: absolute;
	top: 90px;
	left: 0;
	right: 0;
    width: 36px;
    height: 54px;
    margin: 0 auto;
}


/*-----------------------------------------------------------------------------------

Footer

-----------------------------------------------------------------------------------*/

.footer {
	background: #000;
	padding-top: 110px;
	padding-bottom: 110px;
	text-align: center;
}

.footer-logo {
	float:left;
	width:100%;
	text-align:center;
	padding:0 0 45px 0;
}

.footer-legal {
  color: rgba(255, 255, 255, 0.5);
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  letter-spacing: 0.04em;
  margin-top: 6px;
  text-align: center;
}

.footer-legal a {
  color: #ffffff;
}

.footer-legal a:hover {
  color: #d19d64;
}

.footer-legal span {
  display: inline-block;
  margin: 0 8px;
}

.footer-copy {
  margin-top: 16px;
  text-align: center;
}

.footer-copy p {
  color: rgba(255, 255, 255, 0.64);
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

.footer-copy a {
  color: #ffffff;
}

.footer-copy a:hover {
  color: #d19d64;
}

.footer-nav ul {
	list-style: none;
}

.footer-nav ul li {
	display: inline-block;
	vertical-align: middle;
	position: relative;
	padding-left: 34px;
}

.footer-nav ul li:first-child {
	padding-left: 0;
}

.footer-nav ul li a {
    display: block;
    font-size: 15px;
    line-height: 16px;
    color: #808080;
    font-weight: normal;	
	font-family: 'Oswald', sans-serif;
	text-transform:uppercase;
}

.footer-nav ul li a:hover {
	color: #d19d64;
}

.footer-nav ul li:before {
	content: "";
	position: absolute;
	left: 11px;
	top: 6px;
	width: 4px;
	height: 3px;
}

.footer-nav ul li:first-child:before {
	display: none;
}

.subscribe-us {
	padding-top: 81px;
}

.subscribe-us h5 {
	position: relative;
	font-size: 21px;
	line-height: 18px;
	color: #ffffff;
	font-weight:400;
	padding-bottom: 13px;
	font-family: 'Oswald', sans-serif;
	text-transform:uppercase;
}

.subscribe-us h5:after {
	content: "";
	width: 51px;
	height: 16px;
	position: absolute;
	left: 0;
	right: 0;
	margin: 0 auto;
	bottom: -13px;
}

.subscribe-us p {
	font-size: 14px;
	line-height: 16px;
	color: #a9aeb4;
	font-weight: 400;
	margin-top: 40px;
	margin-bottom: 27px;
	font-family: 'Open Sans', sans-serif;
}

.subscribe-email {
	max-width: 477px;
	width: 100%;
	margin: 0 auto;
	position: relative;
}

.subscribe-email input[type="text"] {
	border: 1px solid #626262;
	background: #191919;
	font-size: 12px;
	line-height: 14px;
	color: #a2a3a5;
	font-weight: 400;
	width: 100%;
	height: 43px;
	padding: 0 48px 0 9px;	
}

.subscribe-email input[type="submit"] {
	cursor: pointer;
	background: #917758;
	width: 33px;
	height: 33px;
	position: absolute;
	right: 5px;
	top: 5px;
	text-align: center;
	border: none;
	font-size: 0;
}

.subscribe-email input[type="submit"]:hover {
	background-color: #626262;
}

.social-ic {
	margin-top: 47px;
}

.social-ic ul {
	list-style: none;
}

.social-ic ul li {
	display: inline-block;
	vertical-align: middle;
	padding-left: 8px;
}

.social-ic ul li:first-child {
	padding-left: 0;
}

.social-ic ul li a {
	display: block;
	text-align: center;
	border-radius: 100%;
	border: 1px solid #636d79;
	width: 40px;
	height: 40px;
	padding-top: 8px;
	color:#FFFFFF;
}

.social-ic ul li img {
	vertical-align: middle;
}

.social-ic ul li a:hover {
	background: #d19d64;
}

.subscribe-us .copyright {
	margin-top: 63px;
	margin-bottom: 0;
}

.copyright span {
	color: #917758;
}

.copyright span a {
	color: #917758;
}


/*-----------------------------------------------------------------------------------

Screen Loader

-----------------------------------------------------------------------------------*/

.no-js #loader { display: none;  }
.js #loader { display: block; position: absolute; left: 100px; top: 0; }
.se-pre-con {
	position: fixed;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	z-index: 999999999;
	background: url(../images/loading.gif) center no-repeat #fff;
}


/*-----------------------------------------------------------------------------------

mobile-menu css

-----------------------------------------------------------------------------------*/

.mobile-ic {
  background: #917758;
  cursor: pointer;
  padding: 14px 10px;
  position: absolute;
  right: 0;
  top: 35px;
  border-radius: 4px;
  z-index: 9;
  display: none;
}

.mobile-ic span {
  background: #ffffff;
  display: block;
  height: 2px;
  margin-top: 7px;
  width: 30px;
}

.mobile-ic span:first-child {
	margin-top: 0;
}

.responsive-menu {
  position: absolute;
  top: 173px;
  display: none;
  background: #917758;
  padding: 15px;
  left: 0;
  right: 0;
  width: 100%;
    z-index: 999;
}
.header .responsive-menu ul{margin: 0 auto;}
.header .responsive-menu ul li {
  border-top: 1px solid rgba(46, 42, 38, 0.35);
  display: block;
  margin-top: 7px;
  padding-left: 0;margin: 0 auto;
  padding-top: 7px;
}

.header .responsive-menu  ul li a:hover, .header .responsive-menu  ul li.active a {
	color: #2e2a26;
}

.header .responsive-menu  ul li:first-child {
	border-top: none;
	padding-top: 0;
	margin-top: 0;
}


/*-----------------------------------------------------------------------------------

scroll to top

-----------------------------------------------------------------------------------*/

.scroll-top {
  background: #ffffff url("../images/logo-angle-right.png") no-repeat center center;
  bottom: 20px;
  font-size: 0;
  height: 40px;
  position: fixed;
  right: 15px;
  width: 40px;
  transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  display: none;
}
.scroll-top:hover {
    background-color: #000000;
}


/*-----------------------------------------------------------------------------------

Video Popup

-----------------------------------------------------------------------------------*/

.video-popup {
  background: rgba(0, 0, 0, 0.9) none repeat scroll 0 0;
  bottom: 0;
  height: 100%;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 999;
  display: none
}

.video-popup .container, .video-popup .row {
    height: 100%;
}

.video-popup-inner .close-btn {
    position: relative;
    z-index: 99;
}

.video-popup-inner .close-btn:before {
  background: #ffffff;
  border-radius: 100%;
  content: "+";
  height: 40px;
  position: absolute;
  right: 18px;
  top: 0;
  width: 40px;
  line-height: 42px;
  font-size: 33px;
  top: 18px;
  cursor: pointer;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}


/*-----------------------------------------------------------------------------------

Responsive CSS

-----------------------------------------------------------------------------------*/

@media handheld, only screen and (max-width: 1200px) {
.big-text br {
	display: none;
}

.join-member-left {
	padding-left: 0;
}
.header-align-left .menu.table-cell {
  width: auto;
  padding-left: 50px;margin: 0 auto
}
}


@media handheld, only screen and (max-width: 1100px) {
.logo {
    padding: 0 10px;
    text-align: left;
	margin-left:25px;
} 

.header .table-cell:first-child {
	width: 405px;
}

.about-left-section {
	padding-left: 60px;
}

.service-block p {
	padding: 0 10px;
}

.service-block-inner br {
	display: none;
}

.story-text-left .read-more-btn {
  margin-top: 53px;
}

.join-member h3 {
	padding-left: 179px;
}

.join-member-left {
	width:100%;
}

.join-member-right {
  float: right;
  width:100%;
  text-align:center;
}

.join-member h3 br {
	display: none;
}

.service-block-image-wrap {
  padding-top: 0px;
}

.header-align-left ul li {
    padding-left: 16px;
}


.price-list-main {
	padding:0px;
}

.price-list-full-row {
	margin-bottom:0px;
}

.price-list-row {
	margin-bottom:30px;
}

.right-space {
	padding-right:0;
}

.left-space {
	padding-left:0;
}

.about-right-section {
	padding:40px 0 0 0;
}


}


@media handheld, only screen and (max-width: 991px) {
.header .table-cell {
	display: none;
}
.header-align-left .table-cell {
  display: none;
}
.header-align-left .table-cell.logo {
  display: block;
  margin: 0;
}
.logo {
	max-width: 100%;
	padding: 0;
}
.logo.table-cell > a {
  text-align: center;
  margin: 0 auto;
  display: block;
}
.timing-section {
	float:left;
	width:100%;
  text-align: center;
  top: 0;
  width: 100%;
  margin: 0 auto;
  background:#000000;
  border:none;
}

.border-left-right {
	border-top:1px solid rgba(255, 255, 255, 0.2);
	 border-bottom:1px solid rgba(255, 255, 255, 0.2);
	 border-left:none;
	 border-right:none;
}


.about-left-section {
  padding: 50px 0 0;
  width: 100%;
}

.experience-section {
  padding-bottom: 40px;
  padding-top: 70px;
}

.service-block {
  padding: 0 10px;
}

.service-wrapper {
  margin: 0 -10px;
}

.service-block p {
  padding: 0 12px;
  font-size: 11px;
  line-height: 23px;
  margin: 25px auto 31px;
}

.testimonial-wrapper .slick-prev {
  left: 0;
}

.testimonial-wrapper .slick-next {
  right: 0;
}

.testimonial-box p br {
	display: none;
}

.testimonial-box p {
	max-width:100%;
	margin: 0 auto 15px;
	padding:0 60px;
}

.our-team-box {
	padding-left: 10px;
	padding-right: 10px;
}

.our-price-box-left {
	padding: 21px;
}

.appointment-inner span, .appointment-inner p {
	display: block;
	text-align: center;
}

.appointment-inner p {
	padding: 8px;
}

.price-discount span {
	padding: 34px 16px;
}

.g1-ic, .g2-ic, .g3-ic {
	display: none;
}

.join-member-left {
  width: 65%;
}

.join-member-right {
  width: 35%;
}

.map-top-block {
  width: 50%;
  margin-bottom: 21px;
}

.map-top-ic {
	padding-bottom: 23px;
}

.mobile-ic {
	display: block;
}

.service-block-image-wrap {
  padding-top: 0px;
}

.service-block h6 {
	font-size:20px;
	padding-top:20px;
	}

.service-ic {
  margin-bottom: 13px;
}

.service-block p {
  margin: 7px auto 17px;
  padding: 0 12px;
}
.banner-text {
    margin: 0 auto;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}


.price-list-row {
	width: 100%;
	display:inline-block;
}

.price-list-main {
	padding:20px 0;
}

.make-appointment-left-section {
	width:100%;
}

 

/*--responsive menu css--*/    

.menu  {
  position: absolute;
  top: 125px;
  display: none;
  background: #917758;
  padding: 15px;
  left: 0;
  right: 0;
  width: 100%;
    z-index: 999;
}

.menu ul li {
  border-top: 1px solid rgba(46, 42, 38, 0.35);
  display: block;
  margin-top: 7px;
  padding-left: 0;
  padding-top: 7px;
}

.menu ul li a:hover, .menu ul li.active a {
	color: #2e2a26;
}

.menu ul li:first-child {
	border-top: none;
	padding-top: 0;
	margin-top: 0;
}
.header-align-left .menu.table-cell {
    padding-left: 15px;
}    
.banner-text h1 {
    font-size: 85px;
}   
.play-btn {
  display: block;
  margin-top: 27px;
} 
.banner-text h1 {
    margin: 3px 0;
}

.cta-box-hours {
	width:100%;
	text-align:center;
	padding:0 0 20px 0;
}

.cta-box-btn {
	margin:0 auto;
	text-align:center;
	width:250px;
}

.join-member-left {
	width:100%;
}

.join-member-right {
	width:100%;
	text-align:center;
	margin-top:30px;
}


.join-member h3:before, .map-top-block {
	width: 100%
}

.join-member h3 {
  font-size: 30px;
  line-height: 35px;
  padding-left: 0;
  padding-top: 102px;
  text-align:center;
}



}


@media handheld, only screen and (max-width: 767px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .footer {
    padding-bottom: 72px;
    padding-top: 72px;
  }

  .footer-logo {
    float: none;
    padding-bottom: 18px;
  }

  .footer-legal {
    clear: both;
    flex-direction: column;
    font-size: 14px;
    gap: 8px;
    margin-top: 0;
  }

  .footer-copy p {
    font-size: 13px;
  }
}

.logo.table-cell > a {
    text-align: left;
}
.slider-header .logo img, .logo img {
  max-width:115px;
}

.slider-header .header, .header {
    padding-top: 11px;
}

.slider-header .mobile-ic, .mobile-ic {
    top: 19px;
	right:25px;
}

.banner-text {
	margin: 0;
	padding: 5px 0;
}
.banner-text h1 {
	font-size: 22px;
	line-height: 35px;
}

.story-text-right {
	display: none;
}

.story-text-left {
  float: left;
  width: 100%;
}

.experience-section {
  padding-bottom: 70px;

}

.about-left-section h2 {
  font-size: 25px;
  letter-spacing: 0.1px;
  line-height: 33px;
  margin-top: 12px;
}

.story-text {
  margin-top: 60px;
  width: 100%;
}

.story-text-left .big-text {
	margin-bottom: 20px;
}

.our-service, .client-testimonial {
	padding-top: 70px;
	padding-bottom: 70px;
}

.heading-title {
	margin-bottom: 104px;
}

.service-block p {
	font-size: 13px;
}

h2 {
	font-size: 40px;
}

.counter-box {
  float: left;
  margin-bottom: 20px;
  width:100%;
}

.counter-banner {
	height: auto;
	padding-top: 50px;
	padding-bottom: 30px;
}

.testimonial-logo {
	margin-top: 70px;
}

.our-team, .our-pricing, .get-discount, .make-appointment, .our-gallery,
.join-member, .map-banner {
	padding-top: 70px;
	padding-bottom: 70px;
}

.our-pricing-wrapper {
  margin: 0;
}

.our-price-box {
	padding: 0;
	width: 100%;
}

.start-price {
	padding-bottom: 21px;
}

.make-appointment:after {
	display: none;
}

.appointment-form-wrapper {
  margin: 0;
}

.form-field {
	padding: 0;
	width: 100%;
}

.calender input[type="text"] {
  background-position: 97% 50%;
}

.appointment-cell {
	float: left;
	padding: 0;
	margin-top: 15px;
	width: 100%;
}

.appointment-cell:first-child {
	margin-top: 0;
}

.tabs {
	margin-bottom: 56px;
}

.join-member-left {
  width: 100%;
}

.join-member-right {
  width: 100%;
  text-align: center;
  margin-top: 15px;
}

.latest-news, .footer {
	padding-top: 70px;
	padding-bottom: 70px;
}

.latest-news-row {
  margin: 0;
}

.latest-news-block {
  float: left;
  padding: 0;
  width: 100%;
  margin-top: 20px;
}

.latest-news-block:first-child {
	margin-top: 0;
}

.news-block-img img {
	width: 100%;
}

.subscribe-us {
  padding-top: 57px;
}
.service-block-image-wrap {
  /*margin-top: -159px;
  top: 50%;*/
}

.menu {
    top: 74px;
}
.responsive-menu {
    top: 77px;
}

.price-list li {
	width:100%;

}

.price-list-row {
	width: 100%;
	display:inline-block;
}

.price-list-main {
	padding:30px;
}

.service-ic img {
	width:100%;
}

.cta-box {
	width:90%;
	margin-left:5%;
	margin-top:30px;
}

.cta-box-hours {
	width:100%;
	text-align:center;
}

.get-discount-box {
	width:90%;
}

.hours-list li {
	margin-bottom:20px;
}

.hours-list {
	padding-bottom:30px;
}

.map-top-block {
	padding-bottom:25px;
}

.join-member h3:before, .map-top-block {
	width: 100%
}

.join-member h3 {
  font-size: 30px;
  line-height: 35px;
  padding-left: 0;
  padding-top: 102px;
  text-align:center;
}


} 
.price-list-discription p{text-transform: uppercase !important}

@media handheld, only screen and (max-width: 639px) {
.our-team-img > img {
	width: 100%;
}
	.col-xl-3{width: 100% !important}
.service-block p {
	font-size: 13px;
	padding:10px 30px;
}

.our-team-inner:before {
	width: calc(100% - 30px);
	height: 83%;
}

.our-team-text::before {
	background-size: 100% auto;
}

.get-discount h3 {
  font-size: 32px;
  line-height: 41px;
  text-align:center;
}

.join-member h3 {
  font-size: 30px;
  line-height: 35px;
  padding-left: 0;
  padding-top: 102px;
  text-align:center;
}

.join-member h3:before, .map-top-block {
	width: 100%
}

.map-img:after {
	top: 50%;
	margin-top: -31px;
}

.footer-nav ul li {
  display: block;
  padding-left: 0;
  margin-top: 10px;
}

.footer-nav ul li:first-child {
	margin-top: 0;
}

.footer-nav ul li:before {
	display: none;
}
.banner-slider .banner-text h1 {
  font-size: 24px;
  line-height: 25px;
  margin: 9px 0;
}
.banner-slider .banner-text {
  margin: 0 auto;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}
.banner-text span {
  letter-spacing: 1px;
}
.banner-text p {
  margin: 0 auto 20px;
  max-width: 200px;
}    

.price-list li {
	width:100%;

}

.price-list-row {
	width: 100%;
	display:inline-block;
}

.price-list-main {
	padding:30px;
}

.cta-box {
	width:90%;
	margin-left:5%;
	margin-top:30px;
}

.service-block h6 {
	padding-top:100px;
	font-size:40px;
	line-height:1.5;
	margin-bottom:30px;
}



}


@media handheld, only screen and (max-width: 479px) {
	
.service-block h6 {
	padding-top:50px;
}
	
.counter-box {
	width: 100%;
}

.our-team-inner:before {
	height: 78%;
}

.our-price-box-left, .our-price-box-right {
	float: left;
	width: 100%;
}

.our-price-box-left {
	border-bottom: 3px solid #917758;
	border-right: none;
}

.tabs li {
	display: block;
	margin-top: 10px;
}

.tabs li:first-child {
	margin-top: 0;
}

.tabs li.current {
  border-bottom: none;
  color: #FFFFFF;
}

.tabs {
  margin-bottom: 38px;
}

.gallery-img a:before {
	background-size: 100% auto;
	width: 50px;
	height: 50px;
}

.news-text p {
  font-size: 11px;
  line-height: 19px;
  margin-top: 10px;
}

.news-text {
  padding: 11px;
}

.news-text a {
	margin-top: 11px;
}

.news-date {
	top: 11px;
	left: 11px;
}
.price-list li {
	width:100%;

}

.price-list-row {
	width: 100%;
	display:inline-block;
}

.price-list-main {
	padding:30px;
}

.cta-box {
	width:90%;
	padding:20px;
}

.cta-box:hover {
	padding:20px;
}

.cta-box-btn {
	width:100%;
}




}


@media handheld, only screen and (max-width: 400px) {
	
.service-block h6 {
	padding-top:10px;
	font-size:25px;
	margin-bottom:10px;
}

.brush-over-text {
   padding-top: 25px;
} 

.timing-text {
  margin-bottom: 22px;
}

.days-text {
  margin-bottom:18px;
}

.location-text {
  padding-top: 46px;
}

.phone-text {
  margin-top: 16px;
}

.brush-over-text-main {
  padding: 10px;
}

.price-list li {
	width:100%;

}

.price-list-row {
	width: 100%;
	display:inline-block;
}

.price-list-main {
	padding:30px;
}

.cta-appoint-btn {
	font-size:10px;
	letter-spacing:0;
}



}


/*-----------------------------------------------------------------------------------

Navigation Refresh

-----------------------------------------------------------------------------------*/

.slider-header {
  background: transparent;
  left: 0;
  padding: 0;
  position: fixed;
  right: 0;
  top: 0;
  transition: background-color 0.35s ease, box-shadow 0.35s ease;
  z-index: 1000;
}

.slider-header .header {
  display: block;
  height: auto;
  padding-top: 0;
}

.slider-header .container {
  padding-left: 15px;
  padding-right: 15px;
}

.slider-header .header-shell {
  align-items: center;
  display: flex;
  --header-language-space: 148px;
  gap: 0;
  min-height: 132px;
  padding: 22px 0;
  position: relative;
  transition: min-height 0.35s ease, padding 0.35s ease;
}

.slider-header .header-shell::before {
  content: "";
  flex: 0 0 var(--header-language-space);
}

.slider-header .site-logo-mobile {
  display: none;
}

.footer-logo img {
  aspect-ratio: 1 / 1;
  border: 2px solid rgba(226, 196, 146, 0.85);
  border-radius: 50%;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
  display: block;
  object-fit: cover;
}

.slider-header .site-nav {
  display: flex;
  flex: 1 1 auto;
  justify-content: center;
  min-width: 0;
  width: auto;
}

.slider-header .header-language-switch {
  align-items: center;
  display: flex;
  flex: 0 0 var(--header-language-space);
  justify-content: flex-end;
}

.slider-header .site-nav .nav-list {
  align-items: center;
  display: flex;
  gap: clamp(18px, 2vw, 34px);
  justify-content: center;
  list-style: none;
  margin: 0 auto;
  padding: 0;
}

.slider-header .site-nav .nav-list li,
.slider-header .site-nav .nav-list li:first-child {
  padding-left: 0;
}

.slider-header .site-nav .nav-list li a {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.18em;
  padding: 10px 0;
  position: relative;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
  transition: color 0.3s ease;
}

.slider-header .site-nav .nav-list .nav-logo {
  padding: 0 clamp(18px, 2vw, 34px);
}

.slider-header .site-nav .nav-list .nav-logo a {
  display: inline-flex;
  padding: 0;
}

.slider-header .site-nav .nav-list .nav-logo a::after {
  display: none;
}

.slider-header .site-nav .nav-list .nav-logo img {
  display: block;
  height: 132px;
  object-fit: contain;
  transition: height 0.35s ease, transform 0.35s ease;
  width: auto;
}

.slider-header .site-nav .nav-list li a::after {
  background: linear-gradient(90deg, #f0d9af, #917758);
  border-radius: 999px;
  bottom: 0;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform ease 0.35s;
  width: 100%;
}

.slider-header .site-nav .nav-list li a:hover::after,
.slider-header .site-nav .nav-list li.active a::after {
  transform: scaleX(1);
}

.slider-header .site-nav .nav-list li.active a {
  border-bottom: none;
}

.slider-header .mobile-ic {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 14px;
  box-shadow: none;
  display: none;
  margin-left: auto;
  padding: 14px 12px;
  position: static;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.slider-header .mobile-ic span {
  background: #ffffff;
  margin-top: 5px;
  width: 24px;
}

.slider-header .mobile-ic[aria-expanded="true"] {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(240, 217, 175, 0.58);
}

.slider-header .responsive-menu {
  backdrop-filter: blur(16px);
  background: linear-gradient(160deg, rgba(7, 7, 8, 0.95), rgba(29, 19, 11, 0.92));
  border: 1px solid rgba(226, 196, 146, 0.24);
  border-radius: 24px;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.3);
  left: 0;
  padding: 16px 20px;
  right: 0;
  top: calc(100% + 14px);
}

.slider-header.scrolled {
  background: rgba(0, 0, 0, 0.96);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
}

.slider-header.scrolled .header-shell {
  min-height: 88px;
  padding: 10px 0;
}

.slider-header.scrolled .site-nav .nav-list .nav-logo img {
  height: 78px;
}

.slider-header.scrolled .mobile-ic {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.slider-header .responsive-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.slider-header .responsive-menu ul li {
  border-top: 1px solid rgba(226, 196, 146, 0.18);
  display: block;
  margin: 0;
  padding: 0;
}

.slider-header .responsive-menu ul li a {
  display: block;
  letter-spacing: 0.14em;
  padding: 14px 4px;
}

.slider-header .responsive-menu ul li a:hover,
.slider-header .responsive-menu ul li.active a {
  color: #f0d9af;
}

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

.footer-logo img {
  height: min(170px, 38vw);
  margin: 0 auto;
  width: min(170px, 38vw);
}

@media handheld, only screen and (max-width: 991px) {
  .slider-header {
    padding-top: 0;
  }

  .slider-header .header-shell {
    --header-language-space: 0px;
    gap: 12px;
    justify-content: space-between;
    min-height: 98px;
    padding: 14px 32px;
  }

  .slider-header .header-shell::before {
    content: none;
  }

  .slider-header .site-logo-mobile {
    display: block;
    flex: 0 0 auto;
    margin: 0;
    max-width: none;
    text-align: left;
  }

  .slider-header .site-logo-mobile a {
    display: inline-flex;
  }

  .slider-header .site-logo-mobile img {
    height: 92px;
    width: auto;
  }

  .slider-header .site-nav {
    display: none;
  }

  .slider-header .header-language-switch {
    display: none;
  }

  .slider-header .mobile-ic {
    display: block;
  }

  .slider-header .responsive-menu {
    position: absolute;
  }

  .slider-header.scrolled .header-shell {
    min-height: 82px;
    padding: 10px 32px;
  }

  .slider-header.scrolled .site-logo-mobile img {
    height: 70px;
  }
}

@media handheld, only screen and (max-width: 767px) {
  .slider-header {
    padding-top: 0;
  }

  .slider-header .site-logo-mobile img {
    height: 78px;
  }

  .slider-header .responsive-menu {
    padding: 14px 15px;
    top: calc(100% + 10px);
  }

  .slider-header .responsive-menu ul li a {
    font-size: 12px;
    padding: 12px 2px;
  }

  .footer-logo img {
    height: min(140px, 42vw);
    width: min(140px, 42vw);
  }

  .slider-header.scrolled .site-logo-mobile img {
    height: 62px;
  }
}


/*-----------------------------------------------------------------------------------

Hero Refresh

-----------------------------------------------------------------------------------*/

.hero-home {
  background: #060606;
  overflow: hidden;
  position: relative;
}

.hero-slider-wrap {
  margin: 0 auto;
  max-width: none;
  position: relative;
  width: 100%;
}

.hero-slider {
  height: 100svh;
}

.hero-slider .slick-list,
.hero-slider .slick-track {
  height: 100%;
}

.hero-slider .slick-list,
.hero-slider .slick-track {
  transform: translate3d(0, 0, 0);
}

.hero-slide {
  height: 100svh;
  min-height: 100vh;
  overflow: hidden;
  position: relative;
}

.hero-slide::before {
  content: none;
}

.hero-media {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  filter: saturate(1.02);
  inset: 0;
  opacity: 0.35;
  position: absolute;
  transition: opacity 1.8s ease, filter 1.8s ease, transform 7.2s ease-out;
  will-change: transform;
}

.hero-media.pan-left {
  transform: translate3d(-2.5%, 0, 0) scale(1.08);
}

.hero-media.pan-right {
  transform: translate3d(2.5%, 0, 0) scale(1.08);
}

.hero-slider .slick-current .hero-media {
  filter: saturate(1.08);
  opacity: 1;
}

.hero-slider.is-ready .slick-current .hero-media.pan-left {
  transform: translate3d(2.5%, 0, 0) scale(1.16);
}

.hero-slider.is-ready .slick-current .hero-media.pan-right {
  transform: translate3d(-2.5%, 0, 0) scale(1.16);
}

.hero-shell {
  align-items: center;
  display: flex;
  justify-content: center;
  height: 100svh;
  min-height: 100vh;
  padding: 190px 0 110px;
  position: relative;
  z-index: 2;
}

.hero-copy {
  margin: 0 auto;
  max-width: 720px;
  opacity: 0;
  text-align: center;
  transform: translate3d(-56px, 0, 0);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.hero-copy-right {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  transform: translate3d(56px, 0, 0);
}

.hero-slider .slick-current .hero-copy {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.hero-slider:not(.slick-initialized) .hero-slide:first-child .hero-copy {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.hero-kicker {
  color: #d9b882;
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.32em;
  margin-bottom: 22px;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.45);
  text-transform: uppercase;
}

.hero-title {
  color: #ffffff;
  font-family: 'Oswald', sans-serif;
  font-size: clamp(24px, 3vw, 46px);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.06;
  margin: 0;
  text-shadow: 0 6px 24px rgba(0, 0, 0, 0.45);
  text-transform: uppercase;
}

.hero-description {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  line-height: 1.75;
  margin: 24px 0 0;
  max-width: 660px;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.hero-copy-right .hero-description {
  margin-left: auto;
  margin-right: auto;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 30px;
}

.hero-copy-right .hero-tags {
  justify-content: center;
}

.hero-tags span {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: #ffffff;
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  letter-spacing: 0.18em;
  padding: 10px 16px;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 34px;
}

.hero-copy-right .hero-actions {
  justify-content: center;
}

.hero-btn {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 600;
  justify-content: center;
  letter-spacing: 0.18em;
  min-height: 56px;
  min-width: 190px;
  padding: 0 26px;
  text-transform: uppercase;
  transition: transform 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.hero-btn:hover {
  transform: translateY(-2px);
}

.hero-btn-primary {
  background: #d9b882;
  border: 1px solid #d9b882;
  color: #111111;
}

.hero-btn-primary:hover {
  background: #f0c990;
  border-color: #f0c990;
  color: #111111;
}

.hero-btn-secondary {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.34);
  color: #ffffff;
}

.hero-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.58);
  color: #ffffff;
}

.hero-slider .slick-dots {
  bottom: 40px;
  left: 50%;
  margin: 0;
  position: absolute;
  transform: translateX(-50%);
  z-index: 3;
}

.hero-slider .slick-dots li {
  padding-left: 12px;
}

.hero-slider .slick-dots li button {
  background: rgba(255, 255, 255, 0.28);
  border: none;
  border-radius: 999px;
  height: 4px;
  width: 42px;
}

.hero-slider .slick-dots .slick-active button {
  background: #d9b882;
}

.hero-slider:not(.slick-initialized) .hero-slide:first-child .hero-media {
  filter: saturate(1.08);
  opacity: 1;
}

@media only screen and (min-width: 2000px) {
  .hero-copy {
    max-width: 920px;
  }

  .hero-title {
    font-size: 60px;
  }

  .hero-description {
    font-size: 20px;
    max-width: 760px;
  }
}

@media only screen and (max-width: 1600px) {
  .hero-title {
    font-size: clamp(24px, 2.5vw, 40px);
  }

  .hero-tags {
    display: none;
  }
}

@media handheld, only screen and (max-width: 991px) {
  .hero-shell {
    height: auto;
    padding: 155px 0 110px;
  }

  .hero-copy,
  .hero-copy-right {
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    text-align: center;
    transform: translate3d(-36px, 0, 0);
  }

  .hero-copy-right .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-copy-right .hero-tags,
  .hero-copy-right .hero-actions {
    justify-content: center;
  }

  .hero-title {
    font-size: clamp(22px, 4.6vw, 34px);
  }

  .hero-description {
    font-size: 17px;
    max-width: 100%;
  }
}

@media handheld, only screen and (max-width: 767px) {
  .hero-shell {
    height: auto;
    min-height: 100vh;
    padding: 132px 15px 96px;
  }

  .hero-copy,
  .hero-copy-right {
    padding-left: 10px;
    padding-right: 10px;
    width: 100%;
  }

  .hero-title {
    font-size: 22px;
    line-height: 1.02;
  }

  .hero-description {
    font-size: 15px;
    line-height: 1.7;
    margin-top: 18px;
  }

  .hero-kicker {
    font-size: 12px;
    letter-spacing: 0.24em;
    margin-bottom: 16px;
  }

  .hero-tags {
    gap: 10px;
    margin-top: 22px;
  }

  .hero-tags span {
    font-size: 11px;
    letter-spacing: 0.12em;
    padding: 9px 12px;
  }

  .hero-actions {
    gap: 12px;
    margin-top: 26px;
  }

  .hero-btn {
    min-height: 52px;
    min-width: 100%;
  }

  .hero-slider .slick-dots {
    bottom: 24px;
  }

  .hero-slider .slick-dots li button {
    width: 30px;
  }
}


/*-----------------------------------------------------------------------------------

Business Idea Section

-----------------------------------------------------------------------------------*/

.business-idea-section {
  background:
    radial-gradient(circle at top right, rgba(217, 184, 130, 0.14), transparent 34%),
    radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.04), transparent 28%),
    linear-gradient(180deg, #070707 0%, #15110d 54%, #0a0908 100%);
  overflow: hidden;
  padding: 118px 0;
  position: relative;
}

.business-idea-section::before {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent);
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.business-idea-shell {
  position: relative;
  z-index: 1;
}

.business-idea-head {
  margin-bottom: 34px;
  max-width: 960px;
}

.business-idea-kicker {
  color: #d9b882;
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  letter-spacing: 0.28em;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.business-idea-head h2 {
  color: #ffffff;
  font-family: 'Oswald', sans-serif;
  font-size: clamp(34px, 4.4vw, 62px);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.02;
  margin: 0;
  text-transform: uppercase;
}

.business-idea-intro {
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.8;
  margin: 18px 0 0;
  max-width: 820px;
}

.business-idea-hero {
  align-items: stretch;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
}

.business-idea-core-card,
.business-idea-flow-card,
.business-idea-card {
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(217, 184, 130, 0.16);
  border-radius: 32px;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.24);
  overflow: hidden;
  position: relative;
}

.business-idea-core-card {
  padding: 36px 36px 34px;
}

.business-idea-core-card::after {
  background: radial-gradient(circle at top right, rgba(217, 184, 130, 0.24), transparent 42%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.business-idea-label {
  color: #d9b882;
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  letter-spacing: 0.18em;
  margin-bottom: 16px;
  position: relative;
  text-transform: uppercase;
  z-index: 1;
}

.business-idea-core-card h3,
.business-idea-flow-step h3,
.business-idea-card h3 {
  color: #ffffff;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  letter-spacing: 0.01em;
  margin: 0;
}

.business-idea-core-card h3 {
  font-size: clamp(30px, 3.2vw, 48px);
  line-height: 1.04;
  max-width: 720px;
  position: relative;
  z-index: 1;
}

.business-idea-core-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  line-height: 1.85;
  margin: 24px 0 0;
  max-width: 720px;
  position: relative;
  z-index: 1;
}

.business-idea-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
  position: relative;
  z-index: 1;
}

.business-idea-pill-row span {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  color: #ffffff;
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  letter-spacing: 0.16em;
  min-height: 40px;
  padding: 0 16px;
  text-transform: uppercase;
  align-items: center;
  display: inline-flex;
}

.business-idea-flow-card {
  padding: 34px 30px 30px;
}

.business-idea-flow {
  display: grid;
  gap: 18px;
  margin-top: 6px;
  position: relative;
}

.business-idea-flow::before {
  background: linear-gradient(180deg, rgba(217, 184, 130, 0.5), rgba(217, 184, 130, 0));
  content: "";
  left: 19px;
  position: absolute;
  top: 18px;
  bottom: 18px;
  width: 1px;
}

.business-idea-flow-step {
  align-items: flex-start;
  display: grid;
  gap: 16px;
  grid-template-columns: 40px minmax(0, 1fr);
  position: relative;
  z-index: 1;
}

.business-idea-flow-step strong {
  align-items: center;
  background: rgba(217, 184, 130, 0.16);
  border: 1px solid rgba(217, 184, 130, 0.28);
  border-radius: 999px;
  color: #f0d4a4;
  display: inline-flex;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  height: 40px;
  justify-content: center;
  letter-spacing: 0.06em;
  width: 40px;
}

.business-idea-flow-step h3 {
  font-size: 24px;
  line-height: 1.08;
}

.business-idea-flow-step p {
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  line-height: 1.7;
  margin: 12px 0 0;
}

.business-idea-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 26px;
}

.business-idea-card {
  min-height: 100%;
  padding: 28px 24px 26px;
  transition: transform 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}

.business-idea-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(217, 184, 130, 0.28);
  transform: translateY(-4px);
}

.business-idea-card-accent {
  background: linear-gradient(180deg, rgba(217, 184, 130, 0.12), rgba(255, 255, 255, 0.04));
}

.business-idea-card-kicker {
  color: #d9b882;
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  letter-spacing: 0.16em;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.business-idea-card h3 {
  font-size: 28px;
  line-height: 1.08;
}

.business-idea-card p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  line-height: 1.75;
  margin: 16px 0 0;
}

@media only screen and (max-width: 1199px) {
  .business-idea-hero {
    grid-template-columns: minmax(0, 1fr);
  }

  .business-idea-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media handheld, only screen and (max-width: 991px) {
  .business-idea-section {
    padding: 88px 0;
  }

  .business-idea-head h2 {
    font-size: clamp(28px, 5.6vw, 44px);
  }

  .business-idea-intro {
    font-size: 16px;
  }

  .business-idea-core-card {
    padding: 30px 28px 28px;
  }

  .business-idea-flow-card {
    padding: 28px 24px 24px;
  }

  .business-idea-grid {
    grid-template-columns: 1fr;
  }
}

@media handheld, only screen and (max-width: 767px) {
  .business-idea-section {
    padding: 72px 0;
  }

  .business-idea-head {
    margin-bottom: 24px;
  }

  .business-idea-kicker {
    font-size: 12px;
    letter-spacing: 0.2em;
  }

  .business-idea-head h2 {
    font-size: 25px;
    line-height: 1.06;
  }

  .business-idea-intro {
    font-size: 15px;
    line-height: 1.75;
  }

  .business-idea-core-card,
  .business-idea-flow-card,
  .business-idea-card {
    border-radius: 24px;
  }

  .business-idea-core-card {
    padding: 24px 18px 22px;
  }

  .business-idea-core-card h3 {
    font-size: 28px;
  }

  .business-idea-core-card p {
    font-size: 15px;
    line-height: 1.75;
    margin-top: 18px;
  }

  .business-idea-pill-row {
    gap: 10px;
    margin-top: 22px;
  }

  .business-idea-pill-row span {
    font-size: 11px;
    letter-spacing: 0.12em;
    min-height: 36px;
    padding: 0 12px;
  }

  .business-idea-flow-card {
    padding: 24px 18px 20px;
  }

  .business-idea-flow-step {
    gap: 14px;
    grid-template-columns: 36px minmax(0, 1fr);
  }

  .business-idea-flow::before {
    left: 17px;
  }

  .business-idea-flow-step strong {
    font-size: 12px;
    height: 36px;
    width: 36px;
  }

  .business-idea-flow-step h3,
  .business-idea-card h3 {
    font-size: 24px;
  }

  .business-idea-card {
    padding: 22px 18px 20px;
  }
}

/*-----------------------------------------------------------------------------------

Event Catering Section

-----------------------------------------------------------------------------------*/

.event-catering-section {
  background:
    radial-gradient(circle at top left, rgba(217, 184, 130, 0.18), transparent 34%),
    linear-gradient(180deg, #090909 0%, #15110d 52%, #0b0908 100%);
  overflow: hidden;
  padding: 118px 0;
  position: relative;
}

.event-catering-section::before {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.04), transparent);
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.event-catering-shell {
  position: relative;
  z-index: 1;
}

.event-catering-head {
  margin-bottom: 34px;
  max-width: 980px;
}

.event-catering-head h2 {
  color: #ffffff;
  font-family: 'Oswald', sans-serif;
  font-size: clamp(34px, 4.4vw, 62px);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.02;
  margin: 0;
  text-transform: uppercase;
}

.event-catering-intro {
  align-items: stretch;
  display: grid;
  gap: 42px;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
}

.event-catering-copy {
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(217, 184, 130, 0.14);
  border-radius: 34px;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
  padding: 34px 34px 32px;
}

.event-kicker {
  color: #d9b882;
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  letter-spacing: 0.28em;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.event-lead {
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
  line-height: 1.8;
  margin: 0;
  max-width: none;
}

.event-desktop-copy {
  display: none;
}

.event-benefit-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 34px;
}

.event-benefit-card {
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(217, 184, 130, 0.18);
  border-radius: 26px;
  min-height: 100%;
  padding: 22px 22px 20px;
}

.event-benefit-card strong {
  color: #ffffff;
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 21px;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
}

.event-benefit-card span {
  color: rgba(255, 255, 255, 0.76);
  display: block;
  font-size: 14px;
  line-height: 1.7;
}

.event-catering-visual {
  height: 100%;
  position: relative;
}

.event-image-frame {
  border: 1px solid rgba(217, 184, 130, 0.18);
  border-radius: 34px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  height: 100%;
  overflow: hidden;
  position: relative;
}

.event-image-frame::after {
  background: linear-gradient(180deg, transparent 28%, rgba(0, 0, 0, 0.42) 100%);
  content: "";
  inset: 0;
  position: absolute;
}

.event-image-frame img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.event-highlight-card {
  backdrop-filter: blur(16px);
  background: rgba(10, 10, 10, 0.88);
  border: 1px solid rgba(217, 184, 130, 0.24);
  border-radius: 28px;
  bottom: 26px;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.3);
  max-width: 340px;
  padding: 24px 24px 22px;
  position: absolute;
  right: -18px;
}

.event-highlight-label {
  color: #d9b882;
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  letter-spacing: 0.16em;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.event-highlight-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.event-highlight-list li {
  color: #ffffff;
  font-size: 15px;
  line-height: 1.7;
  padding-left: 18px;
  position: relative;
}

.event-highlight-list li + li {
  margin-top: 10px;
}

.event-highlight-list li::before {
  background: #d9b882;
  border-radius: 999px;
  content: "";
  height: 7px;
  left: 0;
  position: absolute;
  top: 10px;
  width: 7px;
}

.event-format-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 34px;
}

.event-format-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  min-height: 100%;
  padding: 28px 24px 26px;
  transition: transform 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}

.event-format-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(217, 184, 130, 0.28);
  transform: translateY(-4px);
}

.event-card-kicker {
  color: #d9b882;
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  line-height: 1.45;
  letter-spacing: 0.16em;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.event-format-card h3 {
  color: #ffffff;
  font-family: 'Oswald', sans-serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.22;
  margin: 0;
}

.event-format-card p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  line-height: 1.85;
  margin: 16px 0 0;
}

@media only screen and (max-width: 1199px) {
  .event-catering-intro {
    grid-template-columns: minmax(0, 1fr);
  }

  .event-catering-copy {
    min-height: 0;
  }

  .event-catering-visual {
    margin-top: 8px;
  }

  .event-highlight-card {
    right: 18px;
  }

  .event-format-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media handheld, only screen and (max-width: 991px) {
  .event-catering-section {
    padding: 88px 0;
  }

  .event-catering-head h2 {
    font-size: clamp(28px, 5.6vw, 44px);
  }

  .event-lead {
    font-size: 16px;
  }

  .event-benefit-grid {
    grid-template-columns: 1fr;
  }

  .event-highlight-card {
    bottom: 18px;
    left: 18px;
    max-width: none;
    right: 18px;
  }

  .event-highlight-label,
  .event-highlight-list {
    clear: both;
    display: block;
    width: 100%;
  }

  .event-highlight-list {
    margin-top: 12px;
  }
}

@media handheld, only screen and (max-width: 767px) {
  .event-catering-section {
    padding: 72px 0;
  }

  .event-catering-intro {
    gap: 24px;
  }

  .event-catering-head {
    margin-bottom: 24px;
  }

  .event-catering-head h2 {
    font-size: 25px;
    line-height: 1.06;
  }

  .event-kicker {
    font-size: 12px;
    letter-spacing: 0.2em;
  }

  .event-lead {
    font-size: 15px;
    line-height: 1.75;
  }

  .event-benefit-card,
  .event-format-card {
    border-radius: 22px;
    padding: 22px 18px 20px;
  }

  .event-catering-copy {
    border-radius: 24px;
    padding: 24px 18px 22px;
  }

  .event-benefit-card strong {
    font-size: 19px;
  }

  .event-catering-visual {
    height: auto;
    min-height: 360px;
    padding-bottom: 170px;
  }

  .event-image-frame {
    border-radius: 24px;
    height: 100%;
    min-height: 360px;
  }

  .event-catering-visual .event-highlight-card {
    align-items: flex-start;
    border-radius: 22px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    left: 16px;
    margin-top: 0;
    max-width: none;
    padding: 20px 18px 18px;
    position: absolute !important;
    right: 16px;
    bottom: 0 !important;
    transform: none;
    z-index: 2;
  }

  .event-highlight-label {
    display: block;
    line-height: 1.4;
    margin-bottom: 0;
  }

  .event-format-grid {
    grid-template-columns: 1fr;
    margin-top: 26px;
  }

  .event-format-card h3 {
    font-size: 24px;
  }
}

@media only screen and (min-width: 1600px) {
  .event-catering-intro {
    gap: 34px;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .event-catering-copy {
    gap: 28px;
    justify-content: flex-start;
    min-height: 100%;
    padding: 42px 42px 40px;
  }

  .event-lead,
  .event-desktop-copy {
    max-width: 58ch;
  }

  .event-desktop-copy {
    color: rgba(255, 255, 255, 0.74);
    display: block;
    font-size: 16px;
    line-height: 1.9;
    margin: 0;
  }

  .event-desktop-copy-secondary {
    color: rgba(255, 255, 255, 0.68);
  }

  .event-benefit-grid {
    margin-top: 0;
  }

  .event-catering-visual {
    height: 100%;
    min-height: 100%;
    position: relative;
  }

  .event-image-frame {
    height: 100%;
    min-height: 100%;
  }

  .event-highlight-card {
    bottom: auto;
    left: 28px;
    max-width: 360px;
    position: absolute;
    right: auto;
    top: 28px;
    z-index: 2;
  }
}


/*-----------------------------------------------------------------------------------

Menu Board Redesign

-----------------------------------------------------------------------------------*/

.our-pricing {
  background: url("../images/price-banner.jpg") no-repeat top center;
  background-size: cover;
  padding-bottom: 118px;
  padding-top: 118px;
}

.menu-board {
  backdrop-filter: blur(14px);
  background: rgba(8, 8, 8, 0.3);
  border: 1px solid rgba(217, 184, 130, 0.14);
  border-radius: 36px;
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.28);
  overflow: hidden;
  padding: 42px;
  position: relative;
}

.menu-board::before {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
  content: "";
  height: 1px;
  left: 42px;
  position: absolute;
  right: 42px;
  top: 148px;
}

.menu-board-header {
  margin: 0 auto 34px;
  max-width: 900px;
  text-align: center;
}

.menu-board-kicker {
  color: #d9b882;
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  letter-spacing: 0.3em;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.our-pricing .menu-board-header .heading-title {
  color: #ffffff;
  font-family: 'Oswald', sans-serif;
  font-size: clamp(36px, 4.8vw, 68px);
  line-height: 1;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.menu-board-intro {
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.8;
  margin: 0 auto;
  max-width: 760px;
}

.menu-board-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 24px;
}

.menu-board-meta span {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  color: #ffffff;
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  letter-spacing: 0.18em;
  padding: 10px 15px;
  text-transform: uppercase;
}

.our-pricing-wrapper {
  margin: 0;
}

.price-list-main {
  padding: 0;
}

.menu-section-head {
  display: grid;
  gap: 14px;
  justify-items: center;
  margin: 0 auto 34px;
  max-width: 760px;
  text-align: center;
}

.menu-section-badge {
  background: rgba(217, 184, 130, 0.12);
  border: 1px solid rgba(217, 184, 130, 0.24);
  border-radius: 999px;
  color: #d9b882;
  display: inline-flex;
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  letter-spacing: 0.18em;
  min-height: 40px;
  padding: 0 16px;
  text-transform: uppercase;
  align-items: center;
}

.menu-title {
  border-bottom: none;
  color: #ffffff;
  font-family: 'Oswald', sans-serif;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.05;
  margin: 0;
  padding-bottom: 0;
}

.menu-section-intro {
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.75;
  margin: 0;
  max-width: 680px;
}

.price-grid {
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 0;
}

.price-list-box {
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  box-shadow: none;
  min-height: 0;
  padding: 18px 18px 16px;
  position: relative;
  transition: transform 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}

.price-list-box:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(217, 184, 130, 0.26);
  transform: translateY(-3px);
}

.menu-item-tag {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: #ffffff;
  display: inline-flex;
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  letter-spacing: 0.16em;
  margin-bottom: 12px;
  min-height: 34px;
  padding: 0 12px;
  text-transform: uppercase;
  align-items: center;
}

.menu-item-tag-vegan {
  background: rgba(84, 160, 109, 0.14);
  border-color: rgba(84, 160, 109, 0.34);
  color: #b6efc2;
}

.price-list-inner-box {
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 5px;
  margin-top: 10px;
}

.price-list-service-name {
  color: #ffffff;
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.08;
  margin-bottom: 0;
  padding-bottom: 10px;
  text-transform: none;
}

.price-list-service-price {
  background: rgba(217, 184, 130, 0.14);
  border: 1px solid rgba(217, 184, 130, 0.2);
  border-radius: 999px;
  color: #f0d4a4;
  flex: 0 0 auto;
  font-family: 'Oswald', sans-serif;
  font-size: 17px;
  font-weight: 600;
  line-height: 1;
  padding: 10px 12px;
}

.price-list-box p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  line-height: 1.65;
}

@media only screen and (max-width: 991px) {
  .our-pricing {
    padding-bottom: 88px;
    padding-top: 88px;
  }

  .menu-board {
    border-radius: 28px;
    padding: 28px 22px;
  }

  .menu-board::before {
    left: 22px;
    right: 22px;
    top: 138px;
  }

  .our-pricing .menu-board-header .heading-title {
    font-size: clamp(30px, 7vw, 52px);
  }

  .menu-board-intro {
    font-size: 16px;
  }

  .price-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .price-list-service-name {
    font-size: 19px;
  }
}

@media handheld, only screen and (max-width: 767px) {
  .our-pricing {
    padding-bottom: 72px;
    padding-top: 72px;
  }

  .menu-board {
    border-radius: 24px;
    padding: 24px 24px;
  }

  .menu-board::before {
    display: none;
  }

  .menu-board-header {
    margin-bottom: 28px;
  }

  .menu-board-kicker {
    font-size: 12px;
    letter-spacing: 0.2em;
  }

  .our-pricing .menu-board-header .heading-title {
    font-size: 29px;
    line-height: 1.04;
  }

  .menu-board-intro {
    font-size: 15px;
    line-height: 1.7;
  }

  .menu-board-meta {
    gap: 10px;
  }

  .menu-board-meta span {
    font-size: 11px;
    letter-spacing: 0.12em;
    padding: 9px 12px;
  }

  .menu-section-head {
    margin-bottom: 24px;
  }

  .price-grid {
    grid-template-columns: 1fr;
  }

  .menu-title {
    font-size: 24px;
  }

  .menu-section-intro {
    font-size: 14px;
    line-height: 1.7;
  }

  .price-list-box {
    border-radius: 22px;
    padding: 16px 15px 14px;
  }

  .price-list-inner-box {
    align-items: flex-start;
    display: flex;
    flex-direction: row;
    gap: 12px;
    justify-content: space-between;
  }

  .menu-item-tag {
    left: auto;
    margin-bottom: 12px;
    position: static;
    top: auto;
  }

  .price-list-service-name {
    flex: 1 1 auto;
    font-size: 18px;
    padding-right: 8px;
  }

  .price-list-service-price {
    margin-left: auto;
    position: static;
    right: auto;
    font-size: 16px;
    padding: 9px 11px;
    top: auto;
  }
}


/*-----------------------------------------------------------------------------------

Overview Section

-----------------------------------------------------------------------------------*/

.overview-section {
  background:
    radial-gradient(circle at top left, rgba(217, 184, 130, 0.12), transparent 32%),
    linear-gradient(180deg, #f7f3ee 0%, #fffdfa 100%);
  padding: 110px 0;
  position: relative;
}

.overview-shell {
  position: relative;
  z-index: 1;
}

.overview-head {
  margin-bottom: 34px;
  max-width: 760px;
}

.overview-kicker {
  color: #a88457;
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  letter-spacing: 0.28em;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.overview-head h2 {
  color: #111111;
  font-family: 'Oswald', sans-serif;
  font-size: clamp(34px, 4.5vw, 62px);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.02;
  margin: 0;
  text-transform: uppercase;
}

.overview-intro {
  color: #4f4840;
  font-size: 18px;
  line-height: 1.8;
  margin: 18px 0 0;
  max-width: 680px;
}

.overview-layout {
  align-items: start;
  display: grid;
  gap: 30px;
  grid-template-columns: minmax(0, 1.42fr) minmax(240px, 0.58fr);
}

.overview-copy-card {
  align-self: start;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(168, 132, 87, 0.12);
  border-radius: 34px;
  box-shadow: 0 22px 50px rgba(25, 18, 11, 0.08);
  padding: 32px 32px 24px;
}

.overview-stat-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 26px;
}

.overview-stat-card {
  background: #17120e;
  border: 1px solid rgba(217, 184, 130, 0.18);
  border-radius: 28px;
  box-shadow: 0 18px 40px rgba(17, 11, 7, 0.14);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 100%;
  padding: 28px 24px 26px;
  text-align: left;
  transition: transform 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}

.overview-stat-card:hover {
  background: #1d1611;
  border-color: rgba(217, 184, 130, 0.28);
  transform: translateY(-4px);
}

.overview-stat-card strong {
  color: #d9b882;
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 34px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 12px;
}

.overview-stat-card span {
  color: #ffffff;
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.15;
  text-transform: none;
}

.overview-text-flow {
  display: grid;
  gap: 18px;
}

.overview-text-flow p {
  color: #322d28;
  font-size: 15px;
  line-height: 1.9;
  margin: 0;
}

.overview-visual-card {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.overview-image-frame {
  align-items: flex-start;
  background: transparent;
  border-radius: 34px;
  box-shadow: 0 24px 58px rgba(28, 18, 10, 0.18);
  display: flex;
  justify-content: flex-start;
  min-height: 0;
  overflow: hidden;
  padding: 0;
  width: 100%;
}

.overview-image-frame img {
  aspect-ratio: 4 / 5;
  display: block;
  object-fit: cover;
  width: 100%;
}

.overview-image-frame video {
  display: block;
  height: auto;
  max-height: none;
  max-width: 100%;
  object-fit: contain;
  object-position: left center;
  width: 100%;
}

@media only screen and (max-width: 1199px) {
  .overview-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .overview-image-frame,
  .overview-image-frame video {
    min-height: 0;
  }

  .overview-image-frame video {
    width: 100%;
  }

  .overview-stat-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media handheld, only screen and (max-width: 991px) {
  .overview-section {
    padding: 88px 0;
  }

  .overview-head h2 {
    font-size: clamp(30px, 6vw, 46px);
  }

  .overview-intro {
    font-size: 16px;
  }

  .overview-copy-card {
    padding: 26px 24px 24px;
  }

  .overview-stat-grid {
    grid-template-columns: 1fr;
  }
}

@media handheld, only screen and (max-width: 767px) {
  .overview-section {
    padding: 72px 0;
  }

  .overview-head {
    margin-bottom: 24px;
  }

  .overview-kicker {
    font-size: 12px;
    letter-spacing: 0.2em;
  }

  .overview-head h2 {
    font-size: 28px;
    line-height: 1.04;
  }

  .overview-intro {
    font-size: 15px;
    line-height: 1.75;
  }

  .overview-copy-card {
    border-radius: 24px;
    padding: 22px 18px 20px;
  }

  .overview-stat-card {
    border-radius: 22px;
    padding: 22px 18px 20px;
  }

  .overview-stat-card strong {
    font-size: 32px;
  }

  .overview-stat-card span {
    font-size: 16px;
  }

  .overview-image-frame {
    border-radius: 22px;
    min-height: 0;
    padding: 0;
  }

  .overview-image-frame video {
    width: 100%;
  }
}


/*-----------------------------------------------------------------------------------

Photo Gallery Section

-----------------------------------------------------------------------------------*/

.photo-gallery-section {
  background:
    radial-gradient(circle at top left, rgba(168, 132, 87, 0.18), transparent 30%),
    radial-gradient(circle at bottom right, rgba(17, 11, 7, 0.08), transparent 26%),
    linear-gradient(180deg, #f7f1e7 0%, #fcf8f3 52%, #efe2cf 100%);
  overflow: hidden;
  padding: 110px 0;
  position: relative;
}

.photo-gallery-section::before {
  background: linear-gradient(90deg, transparent, rgba(17, 11, 7, 0.1), transparent);
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.photo-gallery-shell {
  position: relative;
  z-index: 1;
}

.photo-gallery-head {
  margin-bottom: 34px;
  max-width: 820px;
}

.photo-gallery-kicker {
  color: #a88457;
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  letter-spacing: 0.28em;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.photo-gallery-head h2 {
  color: #111111;
  font-family: 'Oswald', sans-serif;
  font-size: clamp(34px, 4.5vw, 62px);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.02;
  margin: 0;
  text-transform: uppercase;
}

.photo-gallery-intro {
  color: #4f4840;
  font-size: 18px;
  line-height: 1.8;
  margin: 18px 0 0;
  max-width: 760px;
}

.photo-gallery-layout {
  align-items: start;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(260px, 0.4fr) minmax(0, 1fr);
}

.photo-gallery-summary-card {
  background: linear-gradient(180deg, rgba(17, 11, 7, 0.96), rgba(29, 22, 17, 0.96));
  border: 1px solid rgba(168, 132, 87, 0.18);
  border-radius: 32px;
  box-shadow: 0 24px 56px rgba(25, 18, 11, 0.18);
  padding: 32px 28px 28px;
  position: sticky;
  top: 120px;
}

.photo-gallery-label {
  color: #d9b882;
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  letter-spacing: 0.18em;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.photo-gallery-summary-card h3 {
  color: #ffffff;
  font-family: 'Oswald', sans-serif;
  font-size: clamp(28px, 2.8vw, 42px);
  font-weight: 600;
  line-height: 1.06;
  margin: 0;
}

.photo-gallery-summary-card p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.85;
  margin: 18px 0 0;
}

.photo-gallery-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.photo-gallery-pill-row span {
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  color: #ffffff;
  display: inline-flex;
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  letter-spacing: 0.14em;
  min-height: 38px;
  padding: 0 14px;
  text-transform: uppercase;
}

.photo-gallery-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.photo-gallery-card {
  --gallery-offset: 0px;
  background: #17120e;
  border-radius: 28px;
  box-shadow: 0 20px 44px rgba(25, 18, 11, 0.14);
  margin: 0;
  overflow: hidden;
  position: relative;
  transform: translateY(var(--gallery-offset));
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.photo-gallery-card:nth-child(4n + 2),
.photo-gallery-card:nth-child(4n) {
  --gallery-offset: 32px;
}

.photo-gallery-card:hover {
  box-shadow: 0 28px 58px rgba(25, 18, 11, 0.2);
  transform: translateY(calc(var(--gallery-offset) - 6px));
}

.photo-gallery-card::after {
  background: linear-gradient(180deg, transparent 52%, rgba(7, 7, 7, 0.55) 100%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.photo-gallery-card img {
  aspect-ratio: 3 / 4;
  display: block;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.35s ease;
  width: 100%;
}

.photo-gallery-card:hover img {
  filter: saturate(1.05);
  transform: scale(1.04);
}

.photo-gallery-index {
  align-items: center;
  backdrop-filter: blur(10px);
  background: rgba(12, 10, 8, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  bottom: 14px;
  color: #ffffff;
  display: inline-flex;
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  left: 14px;
  letter-spacing: 0.18em;
  min-height: 34px;
  padding: 0 11px 0 13px;
  position: absolute;
  text-transform: uppercase;
  z-index: 1;
}

@media only screen and (max-width: 1199px) {
  .photo-gallery-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .photo-gallery-summary-card {
    position: relative;
    top: auto;
  }

  .photo-gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .photo-gallery-card {
    --gallery-offset: 0px;
  }
}

@media handheld, only screen and (max-width: 991px) {
  .photo-gallery-section {
    padding: 88px 0;
  }

  .photo-gallery-head h2 {
    font-size: clamp(30px, 6vw, 46px);
  }

  .photo-gallery-intro {
    font-size: 16px;
  }

  .photo-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media handheld, only screen and (max-width: 767px) {
  .photo-gallery-section {
    padding: 72px 0;
  }

  .photo-gallery-head {
    margin-bottom: 24px;
  }

  .photo-gallery-kicker {
    font-size: 12px;
    letter-spacing: 0.2em;
  }

  .photo-gallery-head h2 {
    font-size: 28px;
    line-height: 1.04;
  }

  .photo-gallery-intro {
    font-size: 15px;
    line-height: 1.75;
  }

  .photo-gallery-summary-card {
    border-radius: 24px;
    padding: 24px 18px 20px;
  }

  .photo-gallery-summary-card h3 {
    font-size: 28px;
  }

  .photo-gallery-summary-card p {
    font-size: 14px;
    line-height: 1.75;
  }

  .photo-gallery-pill-row span {
    font-size: 11px;
    letter-spacing: 0.12em;
    min-height: 36px;
    padding: 0 12px;
  }

  .photo-gallery-grid {
    gap: 12px;
  }

  .photo-gallery-card {
    border-radius: 22px;
  }

  .photo-gallery-index {
    bottom: 10px;
    font-size: 10px;
    left: 10px;
    min-height: 30px;
    padding: 0 9px 0 11px;
  }
}

/*-----------------------------------------------------------------------------------

Reviews Section

-----------------------------------------------------------------------------------*/

.reviews-section {
  background:
    radial-gradient(circle at top right, rgba(217, 184, 130, 0.16), transparent 34%),
    linear-gradient(180deg, #0a0a0a 0%, #16120e 54%, #090908 100%);
  padding: 110px 0;
  position: relative;
}

.reviews-shell {
  position: relative;
  z-index: 1;
}

.reviews-top {
  align-items: stretch;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
}

.reviews-side,
.reviews-hours-card,
.review-card {
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 32px;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.22);
}

.reviews-hours-card {
  padding: 34px 32px 30px;
}

.reviews-side {
  padding: 30px 28px 28px;
}

.reviews-kicker {
  color: #d9b882;
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  letter-spacing: 0.18em;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.reviews-hours-card h2,
.reviews-head h2 {
  color: #ffffff;
  font-family: 'Oswald', sans-serif;
  font-size: clamp(30px, 3.4vw, 48px);
  font-weight: 700;
  line-height: 1.04;
  margin: 0;
  text-transform: uppercase;
}

.reviews-head h2 {
  font-size: clamp(18px, 1.9vw, 28px);
}

.reviews-hours-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.reviews-hours-row {
  align-items: flex-start;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  gap: 16px;
  justify-content: space-between;
  padding-bottom: 12px;
}

.reviews-hours-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.reviews-hours-row span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.4;
}

.reviews-hours-row strong {
  color: #ffffff;
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
  max-width: 68%;
  text-align: right;
}

.reviews-head {
  margin: 0 0 22px;
  max-width: 620px;
}

.reviews-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.review-card {
  min-height: 100%;
  padding: 26px 22px 22px;
}

.review-header {
  align-items: center;
  display: flex;
  gap: 14px;
  margin-bottom: 16px;
}

.review-avatar {
  border: 2px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  display: block;
  height: 42px;
  object-fit: cover;
  width: 42px;
}

.review-meta {
  display: grid;
  gap: 3px;
}

.review-author {
  color: #ffffff;
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.1;
}

.review-author-meta {
  color: rgba(255, 255, 255, 0.64);
  display: block;
  font-size: 12px;
  line-height: 1.35;
}

.review-stars {
  color: #f0d4a4;
  font-size: 20px;
  letter-spacing: 0.18em;
}

.review-card p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.75;
  margin: 16px 0 0;
}

.review-quote {
  margin-top: 14px;
}

.review-quote.is-clamped {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.review-more-btn {
  align-items: center;
  background: transparent;
  border: 1px solid rgba(240, 212, 164, 0.34);
  border-radius: 999px;
  color: #f0d4a4;
  cursor: pointer;
  display: inline-flex;
  font-family: 'Oswald', sans-serif;
  font-size: 9px;
  letter-spacing: 0.12em;
  margin-top: 14px;
  min-height: 32px;
  padding: 0 10px;
  text-transform: uppercase;
}

.review-more-btn:hover {
  background: rgba(240, 212, 164, 0.08);
  border-color: #f6e4c0;
  color: #f6e4c0;
}

.review-card > span {
  color: #d9b882;
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  letter-spacing: 0.14em;
  margin-top: 16px;
  text-transform: uppercase;
}

@media only screen and (max-width: 1199px) {
  .reviews-top {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media handheld, only screen and (max-width: 991px) {
  .reviews-section {
    padding: 88px 0;
  }

  .reviews-hours-card h2,
  .reviews-head h2 {
    font-size: clamp(28px, 5.6vw, 42px);
  }

  .reviews-head h2 {
    font-size: clamp(18px, 3.2vw, 24px);
  }
}

@media handheld, only screen and (max-width: 767px) {
  .reviews-section {
    padding: 72px 0;
  }

  .reviews-side,
  .reviews-hours-card,
  .review-card {
    border-radius: 24px;
  }

  .reviews-side {
    padding: 24px 18px 20px;
  }

  .reviews-hours-card {
    padding: 24px 20px 20px;
  }

  .reviews-kicker {
    font-size: 12px;
    letter-spacing: 0.16em;
  }

  .reviews-hours-card h2,
  .reviews-head h2 {
    font-size: 28px;
    line-height: 1.04;
  }

  .reviews-head h2 {
    font-size: 18px;
  }

  .reviews-hours-row span {
    font-size: 14px;
  }

  .reviews-hours-row strong {
    font-size: 16px;
  }

  .reviews-head {
    margin: 24px 0 18px;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .review-card {
    padding: 22px 18px 20px;
  }

  .review-header {
    gap: 12px;
    margin-bottom: 14px;
  }

  .review-avatar {
    height: 38px;
    width: 38px;
  }

  .review-author {
    font-size: 15px;
  }

  .review-more-btn {
    font-size: 8px;
    min-height: 30px;
    padding: 0 9px;
  }
}


/*-----------------------------------------------------------------------------------

Contact Section

-----------------------------------------------------------------------------------*/

.contact-section {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.52) 0%, rgba(0, 0, 0, 0.62) 100%),
    url("../images/kontakt.jpg") no-repeat center center;
  background-size: cover;
  padding: 110px 0;
  position: relative;
}

.contact-shell {
  position: relative;
  z-index: 1;
}

.contact-head {
  margin-bottom: 34px;
  max-width: 760px;
}

.contact-kicker {
  color: #a88457;
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  letter-spacing: 0.28em;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.contact-head h2 {
  color: #ffffff;
  font-family: 'Oswald', sans-serif;
  font-size: clamp(34px, 4.5vw, 62px);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.02;
  margin: 0;
  text-transform: uppercase;
}

.contact-intro {
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
  line-height: 1.8;
  margin: 18px 0 0;
  max-width: 660px;
}

.contact-layout {
  align-items: stretch;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.contact-main-card,
.contact-info-card {
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 32px;
  box-shadow: 0 22px 50px rgba(25, 18, 11, 0.12);
}

.contact-main-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 36px 34px 34px;
}

.contact-main-label,
.contact-info-card span {
  color: #a88457;
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-main-phone {
  color: #ffffff;
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1;
  margin-top: 18px;
}

.contact-main-phone:hover {
  color: #f6e4c0;
}

.contact-main-card p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.8;
  margin: 20px 0 0;
  max-width: 440px;
}

.contact-main-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.contact-main-actions a {
  align-items: center;
  background: #17120e;
  border: 1px solid #17120e;
  border-radius: 999px;
  color: #ffffff;
  display: inline-flex;
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  letter-spacing: 0.16em;
  min-height: 44px;
  padding: 0 18px;
  text-transform: uppercase;
}

.contact-main-actions a:last-child {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.52);
  color: #ffffff;
}

.contact-main-actions a:hover {
  border-color: #f6e4c0;
  color: #f6e4c0;
}

.contact-info-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-info-card {
  min-height: 100%;
  padding: 24px 24px 22px;
}

.contact-info-card p,
.contact-info-card a {
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  line-height: 1.75;
  margin: 14px 0 0;
}

.contact-info-card a:hover {
  color: #f6e4c0;
}

@media only screen and (max-width: 1199px) {
  .contact-layout {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media handheld, only screen and (max-width: 991px) {
  .contact-section {
    padding: 88px 0;
  }

  .contact-head h2 {
    font-size: clamp(30px, 6vw, 46px);
  }

  .contact-intro {
    font-size: 16px;
  }
}

@media handheld, only screen and (max-width: 767px) {
  .contact-section {
    padding: 72px 0;
  }

  .contact-head {
    margin-bottom: 24px;
  }

  .contact-kicker {
    font-size: 12px;
    letter-spacing: 0.2em;
  }

  .contact-head h2 {
    font-size: 28px;
    line-height: 1.04;
  }

  .contact-intro {
    font-size: 15px;
    line-height: 1.75;
  }

  .contact-main-card,
  .contact-info-card {
    border-radius: 24px;
  }

  .contact-main-card {
    padding: 24px 22px 22px;
  }

  .contact-main-phone {
    font-size: 34px;
    line-height: 1.02;
  }

  .contact-main-card p {
    font-size: 15px;
    line-height: 1.75;
  }

  .contact-main-actions {
    gap: 10px;
    margin-top: 22px;
  }

  .contact-main-actions a {
    font-size: 11px;
    letter-spacing: 0.12em;
    min-height: 42px;
    padding: 0 14px;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
  }

  .contact-info-card {
    padding: 20px 18px 18px;
  }

  .contact-info-card p,
  .contact-info-card a {
    font-size: 14px;
    line-height: 1.7;
  }
}


/*-----------------------------------------------------------------------------------

Language Switch, Legal Modal and Large Screen Refinements

-----------------------------------------------------------------------------------*/

.hero-media img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.language-switch {
  align-items: center;
  display: inline-flex;
  gap: 8px;
}

.language-btn {
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  gap: 8px;
  min-height: 42px;
  padding: 0 12px;
  transition: transform 0.25s ease, border-color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

.language-btn:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(240, 217, 175, 0.45);
  transform: translateY(-1px);
}

.language-btn.is-active {
  background: rgba(240, 217, 175, 0.14);
  border-color: rgba(240, 217, 175, 0.54);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.14);
}

.language-flag {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 3px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.18);
  display: inline-block;
  flex: 0 0 auto;
  height: 15px;
  line-height: 1;
  overflow: hidden;
  width: 22px;
}

.language-flag-de {
  background-image: url("../images/flags/de.svg");
}

.language-flag-en {
  background-image: url("../images/flags/gb.svg");
}

.language-code {
  color: #ffffff;
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.slider-header .header-language-switch .language-switch {
  justify-content: flex-end;
}

.slider-header .responsive-menu .mobile-language-switch {
  border-top: 1px solid rgba(226, 196, 146, 0.18);
  margin-top: 8px;
  padding-top: 16px;
}

.slider-header .responsive-menu .mobile-language-switch .language-switch {
  display: flex;
}

.slider-header .responsive-menu .mobile-language-switch .language-btn {
  flex: 1 1 50%;
  justify-content: center;
}

.footer-legal .legal-link {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  display: inline-flex;
  margin: 6px 0;
  min-height: 42px;
  padding: 0 18px;
}

.footer-legal .legal-link:hover {
  background: rgba(240, 217, 175, 0.08);
}

/*-----------------------------------------------------------------------------------

Scroll Reveal

-----------------------------------------------------------------------------------*/

.reveal-on-scroll {
  --reveal-base-y: var(--gallery-offset, 0px);
  --reveal-delay: 0ms;
  --reveal-scale: 0.98;
  --reveal-x: 0px;
  --reveal-y: 42px;
  filter: blur(12px);
  opacity: 0;
  transform: translate3d(var(--reveal-x), calc(var(--reveal-base-y) + var(--reveal-y)), 0) scale(var(--reveal-scale));
  will-change: opacity, transform, filter;
}

.reveal-on-scroll.reveal-from-left {
  --reveal-x: -56px;
  --reveal-y: 22px;
}

.reveal-on-scroll.reveal-from-right {
  --reveal-x: 56px;
  --reveal-y: 22px;
}

.reveal-on-scroll.reveal-from-up {
  --reveal-y: 48px;
}

.reveal-on-scroll.reveal-zoom {
  --reveal-scale: 0.92;
  --reveal-y: 24px;
}

.reveal-on-scroll.is-visible {
  animation: reveal-scroll-item 0.86s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: var(--reveal-delay);
}

.reveal-on-scroll.is-revealed,
.reveal-on-scroll.is-static {
  filter: blur(0);
  opacity: 1;
  transform: translate3d(0, var(--reveal-base-y), 0) scale(1);
  will-change: auto;
}

@keyframes reveal-scroll-item {
  to {
    filter: blur(0);
    opacity: 1;
    transform: translate3d(0, var(--reveal-base-y), 0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll,
  .reveal-on-scroll.is-visible,
  .reveal-on-scroll.is-revealed,
  .reveal-on-scroll.is-static {
    animation: none !important;
    filter: none !important;
    opacity: 1 !important;
    transform: translate3d(0, var(--reveal-base-y), 0) scale(1) !important;
  }
}

body.is-legal-modal-open {
  overflow: hidden;
}

.legal-modal {
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  transition: opacity 0.28s ease;
  z-index: 12000;
}

.legal-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.legal-modal-backdrop {
  background: rgba(3, 3, 4, 0.8);
  inset: 0;
  position: absolute;
}

.legal-modal-dialog {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
  padding: 24px;
  position: relative;
}

.legal-modal-panel {
  backdrop-filter: blur(18px);
  background: linear-gradient(180deg, rgba(9, 9, 10, 0.98), rgba(22, 16, 12, 0.96));
  border: 1px solid rgba(240, 217, 175, 0.16);
  border-radius: 34px;
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.45);
  display: flex;
  flex-direction: column;
  height: min(860px, calc(100vh - 48px));
  max-width: 1180px;
  overflow: hidden;
  position: relative;
  width: min(1180px, 100%);
}

.legal-modal-accent {
  border-radius: 999px;
  filter: blur(16px);
  position: absolute;
}

.legal-modal-accent-one {
  background: rgba(240, 217, 175, 0.18);
  height: 220px;
  left: -50px;
  top: -70px;
  width: 220px;
}

.legal-modal-accent-two {
  background: rgba(153, 102, 58, 0.18);
  bottom: -80px;
  height: 260px;
  right: -80px;
  width: 260px;
}

.legal-modal-header {
  align-items: center;
  display: grid;
  gap: 18px;
  grid-template-columns: auto minmax(0, 1fr) auto;
  padding: 28px 30px 22px;
  position: relative;
  z-index: 1;
}

.legal-modal-badge {
  align-items: center;
  background: rgba(240, 217, 175, 0.12);
  border: 1px solid rgba(240, 217, 175, 0.24);
  border-radius: 24px;
  color: #f0d4a4;
  display: inline-flex;
  font-family: 'Oswald', sans-serif;
  font-size: 26px;
  height: 66px;
  justify-content: center;
  width: 66px;
}

.legal-modal-kicker {
  color: #d9b882;
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  letter-spacing: 0.22em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.legal-modal-header-copy h2 {
  color: #ffffff;
  font-family: 'Oswald', sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.02;
  margin: 0;
}

.legal-modal-description {
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.7;
  margin: 10px 0 0;
  max-width: 680px;
}

.legal-modal-close {
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: #ffffff;
  cursor: pointer;
  display: inline-flex;
  font-family: 'Oswald', sans-serif;
  font-size: 26px;
  height: 48px;
  justify-content: center;
  width: 48px;
}

.legal-modal-close:hover {
  background: rgba(240, 217, 175, 0.12);
  border-color: rgba(240, 217, 175, 0.34);
  color: #f6e4c0;
}

.legal-modal-frame-shell {
  flex: 1 1 auto;
  padding: 0 22px 22px;
  position: relative;
  z-index: 1;
}

.legal-modal-frame-shell::before {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
  content: "";
  height: 1px;
  left: 30px;
  position: absolute;
  right: 30px;
  top: 0;
}

.legal-modal-frame-shell iframe {
  background: #0a0908;
  border: none;
  border-radius: 28px;
  box-shadow: inset 0 0 0 1px rgba(240, 217, 175, 0.1);
  display: block;
  height: 100%;
  min-height: 520px;
  width: 100%;
}

.legal-modal-panel.is-loading .legal-modal-frame-shell::after {
  align-items: center;
  background: radial-gradient(circle at top, rgba(240, 217, 175, 0.08), rgba(9, 9, 10, 0.78));
  border-radius: 28px;
  color: rgba(255, 255, 255, 0.84);
  content: attr(data-loading-text);
  display: flex;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  inset: 0 22px 22px;
  justify-content: center;
  letter-spacing: 0.18em;
  position: absolute;
  text-transform: uppercase;
}

@supports (content-visibility: auto) {
  #about,
  #pricing,
  #about-details,
  #services,
  #gallery,
  #location,
  .reviews-section,
  .footer {
    content-visibility: auto;
    contain-intrinsic-size: 960px;
  }
}

@media only screen and (min-width: 1600px) {
  .container {
    max-width: 1500px !important;
    width: min(1500px, calc(100% - 72px));
  }
}

@media only screen and (max-width: 1199px) {
  .slider-header .header-shell {
    --header-language-space: 136px;
  }

  .language-btn {
    min-height: 40px;
    padding: 0 11px;
  }

  .legal-modal-panel {
    height: min(820px, calc(100vh - 34px));
  }
}

@media handheld, only screen and (max-width: 991px) {
  .footer-logo {
    float: none;
    padding-bottom: 18px;
  }

  .footer-legal {
    align-items: center;
    clear: both;
    display: flex;
    flex-direction: column;
    gap: 8px;
    justify-content: center;
    margin-top: 0;
    width: 100%;
  }

  .footer-legal span {
    display: none;
  }

  .legal-modal-dialog {
    padding: 18px;
  }

  .legal-modal-panel {
    border-radius: 28px;
    height: min(860px, calc(100vh - 36px));
  }

  .legal-modal-header {
    grid-template-columns: 1fr auto;
    padding: 22px 22px 18px;
  }

  .legal-modal-badge {
    display: none;
  }

  .legal-modal-frame-shell {
    padding: 0 16px 16px;
  }

  .legal-modal-panel.is-loading .legal-modal-frame-shell::after {
    inset: 0 16px 16px;
  }
}

@media handheld, only screen and (max-width: 767px) {
  .slider-header .header-shell {
    gap: 10px;
  }

  .slider-header .responsive-menu .mobile-language-switch {
    padding-top: 14px;
  }

  .language-flag {
    height: 14px;
    width: 21px;
  }

  .language-code {
    font-size: 11px;
    letter-spacing: 0.16em;
  }

  .legal-modal-dialog {
    padding: 10px;
  }

  .legal-modal-panel {
    border-radius: 24px;
    height: calc(100vh - 20px);
  }

  .legal-modal-header {
    gap: 14px;
    padding: 18px 16px 14px;
  }

  .legal-modal-header-copy h2 {
    font-size: 28px;
  }

  .legal-modal-description {
    font-size: 14px;
  }

  .legal-modal-close {
    height: 42px;
    width: 42px;
  }

  .legal-modal-frame-shell {
    padding: 0 10px 10px;
  }

  .legal-modal-frame-shell iframe,
  .legal-modal-panel.is-loading .legal-modal-frame-shell::after {
    border-radius: 20px;
  }

  .legal-modal-panel.is-loading .legal-modal-frame-shell::after {
    font-size: 12px;
    inset: 0 10px 10px;
  }
}
