@charset "utf-8";
/* CSS Document */

/* Table of Contents
-----------------------------------------------------------------------------
  1. Clean Base
  2. Base Typography
  3. Images
  4. Links
  5. Forms
  6. Tables
  7. Framework 
*/

/* 1. Clean Base
------------------------------------------------------------------------------*/
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, 
legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, a, nav, section, summary, time, mark, audio, video 
{margin:0 auto; padding:0; border:0; outline:0; font-size:100%; vertical-align:baseline; background:transparent; text-decoration:none; list-style:none; outline:none; -webkit-font-smoothing: subpixel-antialiased; -webkit-tap-highlight-color:rgba(0,0,0,0);}
  
html,body { -webkit-text-size-adjust:none; -webkit-font-smoothing: antialiased; height: 100%;}
article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {display: block;}
img{border:none;}

input[type="text"], input[type="submit"], input[type="button"], input[type="password"], input[type="email"], input[type="tel"], input[type="search"], textarea {-webkit-appearance: none; outline: none;}
textarea:focus, input:focus, a, div, img { outline: none; }

/* ----- 2. Design tokens ----- */
:root {
  /* palette (from Figma) */
  --black:        #000000;
  --off-black:    #171717;
  --primary:      #262626;
  --neutral:      #BBB7B4;
  --neutral-dark: #A4A19F;
  --white:        #FFFFFF;
  --secondary:    #E2DFD8;
  --card-bg:      rgba(226, 223, 216, 0.30); /* Secondary @ 30% */
  --card-hover:      rgba(226, 223, 216, 0.75);
  --accent:       #AF9888;

  /* semantic roles */
  --bg:        var(--white);
  --text:      var(--primary);
  --heading:   var(--off-black);
  --border:    var(--primary);
  --footer-bg: var(--off-black);
  --footer-fg: var(--white);
  --btn-bg:    var(--primary);
  --btn-fg:    var(--white);
  --btn-hover: var(--accent);

  /* fonts */
  --font-display: "Bebas Neue", sans-serif; /* 400 / 500 / 700 self-hosted */
  --font-body:    "Quicksand", sans-serif;  /* 400 + 700 */

  /* type scale â€” fluid via clamp(min, fluid, max) */
  --text-h1:        clamp(2.5rem, 1.2rem + 5vw, 4rem);   /* 64px */
  --text-h2:        clamp(2rem,   1.2rem + 3vw, 3rem);   /* 48px */
  --text-h3:        1.5rem;                               /* 24px */
  --text-button:    1.5rem;                               /* 24px */
  --text-preheader: 1.5rem;                               /* 24px */
  --text-eyebrow:   1.25rem;                              /* 20px */
  --text-body:      1.125rem;                             /* 18px */
  --text-small:     1rem;                                 /* 16px */

  /* tracking */
  --tracking-display: 0.02em; /* ~1px on display sizes */
  --tracking-eyebrow: 0.10em; /* 2px @ 20px */
  --tracking-body:    0;

  /* line-height */
  --leading-tight: 1;    /* 100% â€” headings/buttons */
  --leading-body:  1.4;  /* ~24px @ 18px */

  /* layout */
  --container: 1280px;                    /* TODO: confirm from Figma */
  --container-wide: 1400px;
  --gutter:    clamp(1.25rem, 5vw, 5rem);    /* page side padding */
  --section-y: clamp(3rem, 8vw, 7rem);    /* vertical section rhythm */
  --gap:       clamp(1rem, 2vw, 2rem);

  --radius: 0; /* design is square-cornered throughout */
}
 
.cf:before, .cf:after { content: ""; display: table; }
.cf:after { clear: both; }
.cf { zoom: 1; }
.clear { clear: both; }
.clearfix:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; }
.clearfix { display: inline-block; }
* html .clearfix { height: 1%; }
.clearfix { display: block;}

/* 2. Base Typography
------------------------------------------------------------------------------*/
body{ color:#171717; font-size:18px; font-family: "Quicksand", sans-serif; font-weight:400; line-height:24px;}

h1, h2, h3, h4, h5, h6{ margin-bottom:20px; font-weight:700; font-family: "Bebas Neue", sans-serif; color:#262626; }
h1, .h1{ font-size:64px; line-height:100%; letter-spacing: 1px; text-transform: uppercase; }
h2{ font-size:48px; line-height:100%; letter-spacing: 1px; text-transform: uppercase; }
h3{ font-size:32px; line-height:100%; letter-spacing: 1px; text-transform: uppercase; }
h4{ font-size:24px; line-height:100%; letter-spacing: 1px; }
h5{ font-size:22px; line-height:28px; }
h6{ font-size:18px; line-height:24px; }

p{ color:#171717; font-size:18px; font-weight:400; line-height:24px; margin-bottom:20px; }

ul{ margin:20px 20px; padding:0;}
ul li{ font-size:18px; color:#171717; font-weight:400; line-height:24px; padding:0 0 0 0; list-style:outside circle;}

ol{ margin:20px 20px; padding:0;}
ol li{ font-size:18px; color:#171717; font-weight:400; line-height:24px; padding:0 0 0 0; list-style: decimal; margin-left:20px; }

blockquote{ display:block; text-align:left; margin-bottom:20px; position:relative; background:#f3f3f3; padding:20px 20px 10px 20px; border-left:2px solid #1589cb; }
blockquote p{ font-size:18px; font-weight:400; line-height:24px; margin-bottom:15px; position:relative; }

hr{ border:0 #262626 solid; border-top-width:1px; clear:both; height:0; opacity:0.3; }

/* ----- 6. Components (starters) ----- */
/* ----- 4. Type helpers (map to the named Figma styles) ----- */
.t-h1        { font: 700 var(--text-h1)/var(--leading-tight) var(--font-display); letter-spacing: var(--tracking-display); text-transform: uppercase; }
.t-h2        { font: 700 var(--text-h2)/var(--leading-tight) var(--font-display); letter-spacing: var(--tracking-display); text-transform: uppercase; text-align: center; }
.t-h3        { font: 700 var(--text-h3)/var(--leading-tight) var(--font-display); letter-spacing: var(--tracking-display); text-transform: uppercase; }
.t-eyebrow   { font: 400 var(--text-eyebrow)/1 var(--font-display); letter-spacing: var(--tracking-eyebrow); text-transform: uppercase; }
.t-preheader { font: 700 var(--text-preheader)/var(--leading-tight) var(--font-body); text-align: center; }
.t-body      { font: 400 var(--text-body)/var(--leading-body) var(--font-body); }
.t-body-bold { font: 700 var(--text-body)/var(--leading-body) var(--font-body); }

.grid {
  display: grid;
  gap: var(--gap);
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font: 700 var(--text-button)/1 var(--font-display);
  letter-spacing: var(--tracking-display);
  text-transform: uppercase;
  background: var(--btn-bg);
  color: var(--btn-fg);
  padding-inline: 1.5em;
  padding-block: 0.5em 0.4em;
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  box-sizing: border-box;
}
.btn:hover { background: var(--btn-hover); color: var(--white); text-decoration: none; }

.btn--outline {
  background: transparent;
  color: var(--heading);
  border: 1px solid var(--primary);
}
.btn--outline:hover { background: var(--primary); color: var(--white); }

.btn__group {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.btn__group_center {
  justify-content: center;
}

.btn__group a {
  margin: 0;
}

.card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  background: var(--card-bg);
  border: 3px solid var(--border);
  border-radius: var(--radius);
}

/* 3. Images
------------------------------------------------------------------------------*/
img{ border:none; border-style: none; }

/* 4. Link
------------------------------------------------------------------------------*/
a{ color: var(--primary); transition: all 0.3s ease-in-out; }
a:hover{ color: var(--accent); text-decoration: underline; }
a:active, a.current{ color: #e8941a; }
a:focus{ outline: none; }

.btn-primary{ font-size: 24px; line-height: 100%; color: #262626; text-transform: uppercase; font-weight: 700; border: 1px solid #262626; padding: 12px 25px; box-sizing: border-box; font-family: "Bebas Neue", sans-serif; letter-spacing: 1px; display: inline-block;}
.btn-primary:hover{ background: #262626; text-decoration:none; color:#fff; }

.btn-secondary{ font-size: 24px; line-height: 100%; color: #ffffff; text-transform: uppercase; font-weight: 700; background: #262626; padding: 13px 35px 11px 35px; box-sizing: border-box; font-family: "Bebas Neue", sans-serif; letter-spacing: 1px; display: inline-block; text-align:center; }
.btn-secondary:hover{ background: #AF9888; text-decoration:none; color:#ffffff; }

.disable-btn{ pointer-events: none; background:#A4A19F; }


/* 5. Forms
------------------------------------------------------------------------------*/
input[type="text"], input[type="password"], input[type="email"], input[type="tel"], input[type="search"]{ padding:0 15px; color:#000000; font-size:18px; line-height: 24px; height:49px; background:#ffffff; width: 100%; box-sizing:border-box; font-family: "Quicksand", sans-serif; font-weight:400; border: 1px solid #262626; }
textarea{ border:none; padding:15px 15px; color:#000000; font-size:18px; line-height: 24px; height:266px; resize:none; font-family: "Quicksand", sans-serif; line-height:16px; background:#ffffff; width: 100%; box-sizing:border-box; border: 1px solid #262626; }

input[type="submit"], input[type="button"], input[type="reset"]{ background:#262626; cursor:pointer; color:#ffffff; border:none; height:50px; line-height:21px; display:block; font-size:24px; text-transform: uppercase; width: 100%; font-weight:700; font-family: "Bebas Neue", sans-serif; transition: all 0.3s ease-in-out; letter-spacing: 1px; }
input[type="submit"]:hover, input[type="button"]:hover{ background:#000000; color:#ffffff; }
.field-set{ display: block; width:100%; margin-bottom:20px; }

label{ font-size: 16px; line-height: 24px; font-weight: 600; display: block; margin-bottom: 10px; }

::placeholder{ color: #000; opacity: 1; }
::-ms-input-placeholder{ color: #000; }

/* 6. Tables
------------------------------------------------------------------------------*/
table {border-spacing: 0; border-collapse: collapse;}
td {text-align: left; font-weight: normal; }

/* 7. Layout Framework
------------------------------------------------------------------------------*/
/* main container */
#wrapper{ width:100%; min-height:100%; min-height: 100%;height: auto !important; height: 100%; padding-top: 76px;
    transition: all 0.3s ease-in-out; }
.container{ max-width:1282px; width:100%; }

.footer, .push{ height: 22px; }

/* header */
header{ transition: all 0.6s ease-in-out; }
header.sticky{ position: fixed; top: 0; left: 0; z-index: 999; width: 100%; box-shadow: 0 8px 20px 0 rgb(0 0 0 / 10%); -webkit-animation: headerSlideDown .95s ease forwards; animation: headerSlideDown .95s ease forwards; }
header{ width:100%; height:auto; border-bottom: 3px solid #000000; background: #fff; position: absolute; z-index: 5; top: 0; }
header .container{ max-width: 1400px; display:flex; align-content:center; justify-content: space-between; }
.logo{ max-width: 282px; margin-right: 27px; box-sizing:border-box; margin-top: 17px; margin-bottom:17px; }
.logo figure{ display:block; width:100%; }
.logo figure img{ display:block; width:100%; }
.header-left-part{ display:inline-flex; align-items:center; margin:0; }
.time{ display: inline-flex; padding-left: 30px; padding-right: 30px; box-sizing: border-box; font-size: 22px; line-height: 100%; letter-spacing: 2px; text-transform: uppercase; font-family: "Bebas Neue", sans-serif; font-weight: 400; height: 100%; align-items: center; border-left: 3px solid #000000; border-right: 3px solid #000000; }
.time span{ display: inline-block; margin-right:20px; }
.time-cell-hover{ position: relative; display: inline-block; cursor: pointer; }
.time-cell-hover .header-time{ position: absolute; top: 27px; visibility: hidden; background: #ffffff; padding: 8px 0; opacity: 0; border-bottom: 3px solid #000000; box-shadow: 0 6px 12px rgb(0 0 0 / 18%); text-align: left; min-width: 230px; z-index: 999; left: -15px; display: none; }
.time-cell-hover:hover .header-time{ opacity: 1; visibility: visible; display: block; }
.time-cell-hover .header-time ul{ margin: 0; }
.time-cell-hover .header-time ul li{ display: block; width: 100%; margin-bottom: 3px; padding: 0; transition: all 0.3s ease-in-out; }
.time-cell-hover .header-time li, .time-cell-hover .header-time ul ul li a{ color: #000000; }
.time-cell-hover .header-time:after{ content:''; display: block; position: absolute; left: 0; top: -10px; height: 20px; width: 100%; }
.time-cell-hover .header-time ul li span{ padding: 5px 15px; display: block; box-sizing: border-box; transition: all 0.3s ease-in-out; }
.time-cell-hover .header-time ul li:hover span{ color: var(--accent); padding-left: 20px; }
.time-cell-hover > span{ position: relative; }
.time-cell-hover > span:after{ content: ''; display: block; position: absolute; right: -20px; top: 2px; width: 19px; height: 16px; background: url(../images/down-arrow.svg) no-repeat; background-size: cover; cursor: pointer; }
.main-hader.open .time-cell-hover > span:after{ background: url(../images/down-arrow-white.svg) no-repeat; content: ''; display: block; position: absolute; right: -20px; top: 4px; width: 19px; height: 16px; background-size: cover; cursor: pointer; }
.hours-operation-box .time-list ul{ width: 100%; margin: 0; display: flex; flex-wrap: wrap; }
#content-area .hours-operation-box .time-list ul li{ width: 50%; margin-left: 0; padding-left: 0; }
.header-right-part{ display:inline-flex; margin: 0; align-items: center; }

/* Header slide down Animation */
/*start*/
@-webkit-keyframes headerSlideDown {0% {margin-top: -100px; } to {margin-top: 0; } }
@keyframes headerSlideDown {0% {margin-top: -100px; } to {margin-top: 0; } }
.logo img{ display: block; width: 100%; }
/*end*/

/* nav */
.navigation{ display: inline-block; margin-right: 15px; }
nav{ width:100%; height:auto; }
nav ul{ margin: 0; }
nav ul li{ font-size: 20px; line-height: 28px; text-transform: uppercase; font-family: "Bebas Neue", sans-serif; font-weight: 400; color: #171717; letter-spacing: 2px; margin: 0 15px; list-style: none; display: inline-block; padding-bottom:0; }
nav ul li a{ color: #000; }
nav ul li a:hover, nav .active, .navigation ul li.active > a{ color: var(--accent); text-decoration:none; }

/*sub menu*/
/*start*/
.navigation ul li{ position: relative; }
.navigation > ul > li:after{ content: ''; display: block; position: absolute; left: 19px; bottom: -30px; width: 100%; height: 35px; background: transparent; } 
.navigation nav > ul > li:before{ content: ''; display: block; position: absolute; left: 0; bottom: -22px; width: 100%; height: 22px; cursor: pointer; }
.navigation ul li ul li{ display: block; width: 100%; margin-bottom: 3px; padding: 0; transition: all 0.3s ease-in-out; }
.navigation ul > li > ul > li > ul > li:hover > a{ padding-left: 15px; }
.navigation ul li > ul li a{ padding: 12px 15px; display: block; box-sizing: border-box; }
.navigation ul > li > ul > li:hover > a{ color: var(--accent); padding-left: 20px; }
.navigation ul li ul{ position: absolute; top: 27px; visibility: hidden; background: #ffffff; padding: 8px 0; opacity: 0; border-bottom: 3px solid #000000; box-shadow: 0 6px 12px rgb(0 0 0 / 18%); text-align: left; min-width: 200px; z-index: 999; right: 0; display: none; } 
.navigation > ul > li:hover > ul{ display: block; visibility: visible; opacity: 1; }
.navigation ul li ul li ul{ right: -100%; top: 0; left: auto; }
.navigation > ul > li > ul > li:hover > ul{ display: block; visibility: visible; opacity: 1; }
.navigation nav > ul > li:hover > ul{ visibility: visible; opacity: 1; }
.navigation nav > ul > li > ul > li:hover > ul{ display: block; visibility: visible; opacity: 1; }
.navigation nav > ul > li > ul > li, .navigation nav > ul > li > ul > li > ul > li { margin: 0; }
.navigation ul > li > ul > li > ul > li:hover > a{ padding-left: 20px; }
.navigation nav > ul ul a:before{ display: none; }
.navigation nav > ul ul li, .navigation nav > ul ul li a{ color: #000000; }
.navigation nav > ul > li:hover a:before{ opacity: 1; visibility: visible; }
.sub-menu:after{ content: ''; display: block; position: absolute; right: 0; top: 5px; width: 15px; height: 12px; background: url(../images/down-arrow.svg) no-repeat; background-size: cover; cursor: pointer; }
.header-right{ display: inline-flex; margin-right: 0; align-items: center; }
.search-cell{ display: inline-block; float: right; }
.search-cell .search-icon{ width: 30px; height: 30px; cursor: pointer; } 
.search-cell .search-icon figure{ display: flex; align-items: center; justify-content: center; width:100%; height: 100%; }
.navigation .sub-menu{ padding-right:20px; box-sizing:border-box; }
.navigation .sub-menu:hover > ul{ display: block; }
/*end*/

/*search box*/
/*start*/
.s-icon1{ display: block; width: 30px; height: 30px; cursor: pointer; }
.s-icon2{ display: none; width: 30px; height: 30px; cursor: pointer; }
.search-cell.open .s-icon1{ display:none; } 
.search-cell.open .s-icon2{ display:block; } 
.search-cell img{ display:block; width:100%; max-width: 16px; }
.search-block{ display: none; width:100%; position: relative; background: #E2DFD8; }
.search-box{ max-width: 1355px; margin: 0 auto; padding-top: 30px; padding-bottom: 30px; }
.search-inner-area{ display: block; width: 100%; }
.search-inner-area form{ display: flex; width: 100%; border: 1px solid #262626; }
.search-inner-area form .search-inputbox{ box-sizing:border-box; padding-right: 30px; }
.search-inner-area form .search-btn{ width: 172px; height:50px; }

/*banner*/
/*start*/
.banner{ display:block; width:100%; }
.banner .container{ padding:0; max-width: 100%; }
.full-slider{ display:block; width:100%; }
.full-slider .two-col{ display:flex; }
.full-slider .two-col .col-left{ display: flex; align-items: center; width:50%; margin:0; background:#262626; }
.full-slider .two-col .col-right{ display: flex; width: 50%; margin: 0; align-items: center; justify-content: center;  border: 3px solid #000000; box-sizing: border-box; padding:52px; box-sizing:border-box; border-top:0; }
.full-slider .two-col .col-right figure{ display:block; width:100%; }
.full-slider .two-col .col-right figure img{ display:block; width:100%; }
.full-slider h1, .full-slider .h1{ color:#ffffff; margin-bottom: 40px; }
.banner-desc{ display:block; width:100%; padding-top: 150px; padding-right: 81px; padding-bottom:75px; box-sizing:border-box; padding-left:calc((100vw - 1282px)/2 ); }
.banner-desc-top{ display:block; width:100%; border-bottom: 1px solid rgba(255, 255, 255, 0.3); padding-bottom:52px; }
.banner-desc-btm{ display:flex; width:100%; padding-top: 64px; box-sizing:border-box; gap: 27px; align-items:center; }
.banner-desc-btm .left-cell{ display: inline-block; width: 175px; margin:0; }
.banner-desc-btm .left-cell figure{ display:block; width:100%; }
.banner-desc-btm .left-cell img{ display:block; width:100%; }
.banner-desc-btm .right-cell{ display: inline-block; width: calc( 100% - 200px ); margin:0; }
.banner-desc-btm .right-cell p{ color:#ffffff; }
.text-link{ display: inline-block; font-size: 24px; line-height: 100%; color:#ffffff; font-family: "Bebas Neue", sans-serif; font-weight: 700; text-transform: uppercase; position:relative; padding-right: 50px; box-sizing:border-box; letter-spacing: 1px; }
.text-link:after{ content:''; display:block; position:absolute; right: 0; top: 3px; width:40px; height:18px; background: url(../images/link-arrow.svg) no-repeat; background-size: cover; }
.text-link:hover{ padding-right:55px; color:#E2DFD8; }
/*end*/

/*banner slider*/
/*start*/
.banner-slider{ display:block; width:100%; }
.banner-slider .item{ display:block; width:100%; }
.banner-slider .item .banner-img{ display:block; width:100%; height: 700px; }
.banner-slider .slick-next{ right: 25px; }
.banner-slider .slick-prev{ left: 25px; z-index:9; }
.banner-slider .slick-prev:before{ display:none; }
.banner-slider .slick-next:before{ display:none; }
.banner-slider .slick-prev, .banner-slider .slick-next{ width: 42px; height:17px; }
.banner-slider .slick-prev:after{ content:''; display: block; position: absolute; left: 0; top: 0; width:33px; height:16px; background: url(../images/banner-slider-left-arrow.svg) no-repeat; background-size:cover;  transition: all 0.3s ease-in-out; }
.banner-slider .slick-next:after{ content:''; display: block; position: absolute; right: 0; top: 0; width:33px; height:16px; background: url(../images/banner-slider-right-arrow.svg) no-repeat; background-size:cover; transition: all 0.3s ease-in-out; }
/*end*/

/*video banner*/
/*start*/
.video-banner{ display:block; width:100%; height: 700px; }
.banner-video{ display: block; width: 100%; position: relative; height: 100%; background-size: cover !important; background-position: center center !important; }
.video-cell{ display: block; width: 100%; height: 100%; object-fit: cover; }
/*end*/

/* footer */
/* start */
/*footer{ width:100%; height:auto; }
.footer-top{ display:block; width:100%; padding-top:65px; padding-bottom: 45px; }
footer .container{ max-width: 1280px; }
footer .container .col-grp{ display: flex; flex-wrap: wrap; align-items: start; }
footer .container .col-grp .col-cell{ display: inline-block; width: 20%; }
.footer-logo{ display: inline-block; max-width: 185px; margin-bottom:30px; }
.footer-logo figure{ display: block; width: 100%; }
.footer-logo figure img{ display: block; width: 100%; }
.social-grp{ display: inline-flex; flex-wrap:wrap; gap: 14px; }
.social-grp a{ display: inline-block; }
.social-grp a figure{ width: 100%; display: block; }
.social-grp a figure img{ width: 100%; display: block; transition: all 0.3s ease-in-out; }
.social-grp a:hover figure img{ transform: scale(1.1); }
footer ul{ margin: 0; }
footer ul li{ font-size: 16px; line-height: 19px; color: #BBB7B4; margin-bottom: 15px; list-style: none; }
footer ul li a{ color: #BBB7B4; text-decoration: none; }
footer ul li a:hover{ color: #ffffff; text-decoration: none; }
.contact-cell{ font-size: 16px; line-height: 26px; color: #BBB7B4; margin-bottom:20px; }
.contact-cell a{ color: #BBB7B4; text-decoration:underline; }
.contact-cell a:hover{ text-decoration:none; color: #ffffff; }
.copy-cell{ font-size: 16px; line-height: 26px; color: #BBB7B4; margin-bottom: 20px; }
.copy-cell a{ color:#BBB7B4; text-decoration:none; }
.copy-cell a:hover{ color:#ffffff; text-decoration:none; }
.copy-cell a em{ text-decoration: underline; font-style: normal; }
.footer-btm{ display:block; width:100%; padding-top:20px; padding-bottom:20px; box-sizing:border-box; position:relative; }
.footer-btm:before{ content:''; display:block; position:absolute; left:0; top:0; width:100%; height:1px; background: #BBB7B4; opacity:0.3; }
.copyright-cell{ display:block; font-size:13px; line-height: 16px; color:#BBB7B4; padding-left:20%; box-sizing:border-box; }*/
/*end*/

/*welcome sec*/
/*start*/
.welcome-sec{ display:block; padding-top: 103px; padding-bottom: 110px; box-sizing:border-box; text-align:center; position:relative; }
.welcome-sec:before{ content:''; display:block; position:absolute; left:0; top:0; width: 416px; height: 277px; background: url(../images/pattern.svg) no-repeat; background-size: cover; }
.welcome-inn-box{ max-width:890px; margin: 0 auto; position:relative; }
.welcome-inn-box h2{ margin-bottom: 25px; }
.welcome-inn-box p{ margin-bottom: 35px; }
.welcome-sec .btn-primary{ min-width: 203px; }
/*end*/

/*services box sec*/
/*start*/
.services-box-sec{ display:block; width:100%; }
.services-box-sec .container{ max-width: 1300px; }
.services-box-grp{ display:flex; flex-wrap:wrap; }
.service-box{ display:block; width:25%; height:494px; position: relative; margin:0; border: 2px solid #262626; box-sizing:border-box; }
.service-name{ display:block; position:absolute; left: 30px; bottom: 30px; font-size: 64px; line-height: 100%; color:#ffffff; font-family: "Bebas Neue", sans-serif; font-weight: bold; transition: all 0.3s ease-in-out; }
.service-box:hover .service-name{ bottom: 50px; }
/*end*/

/* featured sec */
/* start */
.featured-sec{ display: block; width:100%; padding: 103px 0 113px 0; }
.featured-sec .container{ max-width: 1300px; }
.featured-sec .title-sec{ font-size: 24px; line-height: 24px; color: #171717;  font-family: "Quicksand", sans-serif; font-weight:700; display: block; width: 100%; text-align: center; margin-bottom: 55px; }
.featured-slider-area{ display: block; width:100%; }
.featured-slider{ display: block; width: 95%; }
.featured-slider .slick-track{ display: flex; flex-wrap: wrap; align-items:center; }
.featured-slider .item{ text-align: center; }
.featured-slider a{ display: inline-block; width: 100%; }
.featured-slider a figure{ display: block; width: 100%; }
.featured-slider a figure img{ display: block; width: 100%; max-height: 71px; }
.featured-slider .slick-prev:before{ display:none; }
.featured-slider .slick-next:before{ display:none; }
.featured-slider .slick-prev, .featured-slider .slick-next{ width: 42px; height:17px; }
.featured-slider .slick-prev:after{ content:''; display: block; position: absolute; left: 0; top: 0; width:33px; height:16px; background: url(../images/logo-slider-left-arrow.svg) no-repeat; background-size:cover;  transition: all 0.3s ease-in-out; }
.featured-slider .slick-next:after{ content:''; display: block; position: absolute; right: 0; top: 0; width:33px; height:16px; background: url(../images/logo-slider-right-arrow.svg) no-repeat; background-size:cover; transition: all 0.3s ease-in-out; }
/* end */

/* offers slider sec */
/* start */
.offers-slider-sec{ border-top:3px solid #262626; }
.offers-slider-sec .container{ position: relative; max-width: 100%; }
.offer-slider{ display: block; width:100%; }
.offer-slider .two-col{ display: flex; }
.offer-slider .two-col .col-left{ width: 50%; display: flex; align-items: start; position: relative; padding-top: 120px; }
.offer-slider .two-col .col-left:before{ content:''; display:block; position:absolute; right:0; bottom:0; background: url(../images/slider-bg.svg) no-repeat; background-size: cover; background-position: center; width:475px; height:277px; }
.offer-slider h4{ margin-bottom:0; text-transform: none; font-family: "Quicksand", sans-serif; margin-bottom:15px; }
.offer-slider h2{ margin-bottom:30px; }
.offer-slider p{ margin-bottom:40px; }
.offer-slider .two-col .col-right{ width: 50%; }
.offers-slide-img{ height: 603px; width: 100%; }
.offers-desc{ display: inline-block; padding-left:calc((100vw - 1282px)/2 ); padding-right: 103px; box-sizing:border-box; } 
.offer-slider-min-text{ font-size:16px; line-height: 24px; color: #F7F0E4; text-transform: uppercase; display: block; margin-bottom:20px; letter-spacing: 2px; }
.offer-slider-title{ font-size: 34px; line-height: 41px; color: #F7F0E4; font-weight: bold; margin-bottom: 40px; }    
.offer-slider-title em{ font-style: normal; position: relative; }
.offer-slider-title em:after{ content: ''; display: block; position: absolute; left: 0; bottom: -1px; width: 100%; height: 3px; background: #EDE96B; }
.offers-desc .btn{ padding: 12px 30px; }
.offer-slider-arrow{ display: inline-block; position: absolute; bottom: 45px; left: calc((100vw - 1282px)/2 ); }
.offer-slider-arrow .left-arrow{ display: inline-block; width: 33px; cursor: pointer; margin-right:7px; transition: all 0.3s ease-in-out; }
.offer-slider-arrow .right-arrow{ display: inline-block; width: 33px; cursor: pointer; margin-left: 7px; transition: all 0.3s ease-in-out; }
.offer-slider-arrow .left-arrow figure, .offer-slider-arrow .right-arrow figure{ display: block; width:100%; }
.offer-slider-arrow .left-arrow figure img, .offer-slider-arrow .right-arrow figure img{ display: block; width:100%; }
.offer-slider-arrow .left-arrow:hover, .offer-slider-arrow .right-arrow:hover{ opacity: 1; }
.offer-slider .btn-primary{ min-width: 204px; text-align:center; }
/* end */

/* newsletter sec */
/* start */
.newsletter-sec{ display:block; width:100%; background:#E2DFD8; padding:48px 0 48px 0; box-sizing:border-box; border-top: 3px solid #262626; }
.newsletter-sec .two-col{ display:flex; }
.newsletter-sec .two-col .col-left{ width: 43%; margin-left:0; }
.newsletter-sec .two-col .col-right{ width: 57%; margin-right: 0; }
.newsletter-sec h3{ margin-bottom:0; color:#000000; }
.newsletter-sec p{ color:#000000; margin-bottom:0; }
/*end*/

/* main content area sec */
/* start */
.main-content-area{ display: block; width:100%; padding: 93px 0 90px 0; box-sizing:border-box; }
.content-top-area{ display: flex; width:100%; align-items: center; justify-content: space-between; max-width: 1318px; margin: 0 auto; margin-bottom: 45px; }
.content-top-area h1{ display: inline-block; margin-left:0; margin-bottom:0; }
.content-right-push{ display: inline-flex; margin-right: 0; }
.tab-btn-area{ display: inline-block; }
.main-content-detail-area{ display: block; width:100%; }
.tab-group-main-area{ display: block; width:100%; }
#content-area .tab-btn-area{ display:inline-block; margin: 0; }
#content-area .tab-btn-area .tab-btn{ display: inline-block; font-size: 24px; line-height: 100%; color: #ffffff; background: #262626; border: 3px solid transparent; text-transform: uppercase; font-family: "Bebas Neue", sans-serif; padding: 10px 60px; box-sizing: border-box; float: left; letter-spacing: 1px; cursor: pointer; transition: all 0.3s ease-in-out; }    
#content-area .tab-btn-area .tab-btn.active{ background: transparent; color:#000000; border: 3px solid #262626; }
#content-area .tab-btn-area .tab-btn:before{ display:none; }
.map-section{ display: block; width:100%; }
.map-section figure{ display: block; width:100%; }
.map-section figure img{ display: block; width:100%; }
.tab-group{ display: none; }
.tab-group.show-tab{ display: block; }
.list-area{ display: flex; width: 100%; max-width: 1280px; margin: 0 auto; flex-wrap: wrap; justify-content: space-between; }
.list-cell{ display: inline-block; background: rgba(226, 223, 216, 0.3); width: 23.8%; margin-left: 0; margin-right: 1.5%; float: left; padding-bottom: 13px; margin-bottom: 20px; border: 3px solid #262626; box-sizing:border-box; transition: all 0.3s ease-in-out; }
.list-cell:hover{ background: rgba(226, 223, 216, 0.75); }
.list-cell .btn-secondary{ width:100%; text-align:center; }
.list-area .list-cell:nth-child( 4n + 4 ){ margin-right: 0; } 
.logo-area{ display: flex; width:100%; height: 185px; }
.logo-area figure{ display: inline-flex; height: 190px; width: 100%; align-items: center;   justify-content: center; }
.logo-area figure img{ display: inline-block; max-height:90%; max-width: 90%; }
.list-details{ display: block; width: 100%; padding: 0 25px; box-sizing: border-box; margin-bottom: 27px; padding-top: 30px; border-top: 3px solid #262626; }
.list-details h6{ color: #000; font-weight: 600; font-family: "Quicksand", sans-serif; letter-spacing: 1px; }
.info-cell{ display: flex; align-items: start; margin-bottom: 15px; }
.info-cell .info-icon{ display: inline-block; width: 11px; margin-left:0; margin-right: 12px; margin-top: 4px; }
.info-cell .info-icon figure{ display: block; width:100%; }
.info-cell .info-icon figure img{ display: block; width:100%; }
.info-detail{ font-size: 18px; line-height: 24px; color: #000; font-family: "Quicksand", sans-serif; margin-left:0; display: inline-block; letter-spacing: 1px; text-decoration:none; }
a.info-detail{ text-decoration: underline; }
a.info-detail:hover{ text-decoration: none; color: #D39E6E; cursor: pointer; }
.list-cell .list-btn-area{ display: block; width:100%; padding: 0 13px; box-sizing:border-box; }
.list-cell .list-btn-area .list-btn{ display: block; width: 100%; font-size: 14px; line-height: 21px; color: #000; padding: 13px 20px; box-sizing: border-box; border: 1px solid #000; text-align: center; font-family: "Bebas Neue", sans-serif; letter-spacing: 2px; }
.list-cell .list-btn-area .list-btn:hover{ background: #D39E6E; border-color: #D39E6E; text-decoration: none; }
/* end */

/*shop detail area*/
/*start*/
.shop-detail-area{ display: block; width: 100%; }
.shop-detail-area .three-col{ display: flex; max-width: 1318px; margin: 0 auto; }
.shop-detail-area .three-col .col-left{ display: inline-block; margin-left: 0; width: 213px; }
.shop-detail-title{ font-size: 24px; line-height: 100%; color: #262626; margin-bottom: 30px; font-family: "Quicksand", sans-serif; font-weight: bold; }
.shop-detail-area .btn{ display: block; width:100%; text-align: center; margin-top: 25px; }
.shop-detail-area .three-col .col-mid{ width: 460px; margin: 0; }
.shop-detail-area .three-col .col-right{ width: 413px; margin-right: 0; }
.time-list{ display: block;  }
.time-list ul{ margin: 0; columns: 2; }
#content-area .time-list ul li{ list-style: none; font-size: 18px; line-height: 24px; margin-bottom: 10px; color: #262626; display: flex; padding-left: 0; }
#content-area .time-list ul li:before{ display: none; }
.time-list ul li .day{ display: inline-block; margin: 0; width: 55px; }
.time-list ul li .shop-time{ display: inline-block; margin-left: 0; }
.offer-box{ display: block; width: 100%; border: 3px solid #262626; box-sizing: border-box; }
.offer-img{ display: block; width:100%; height: 190px; }
.offer-box-details{ display: block; width: 100%; background: rgba(226, 223, 216, 0.3); padding: 35px 18px 18px 18px; box-sizing:border-box; border-top: 3px solid #262626; }
.offer-date{ padding-left: 11px; box-sizing: border-box; font-size: 18px; line-height: 24px; color: #262626; font-family: "Quicksand", sans-serif; font-weight: 400; margin-bottom: 10px; }
.offer-box-details h4{ padding-left: 11px; box-sizing:border-box; letter-spacing: 1px; margin-bottom: 40px; }
.offer-box-details .list-btn{ display: block; width: 100%; font-size: 14px; line-height: 21px; color: #000; padding: 13px 20px; box-sizing: border-box; border: 1px solid #000; text-align: center; font-family: "Bebas Neue", sans-serif; letter-spacing: 2px; }
.offer-box-details .list-btn:hover{ text-decoration: none; background: #D39E6E; border-color: #D39E6E; }
.main-content-area.pb-4{ padding-bottom: 40px; }
.shop-detail-area .three-col .col-left .btn-secondary{ margin-top:7px; width: 100%; }
.detail-box-cell{ display:block; width:100%; }
.detail-box-cell h4{ font-family: "Bebas Neue", sans-serif; color:#171717; font-weight: 700; letter-spacing:0; }
.detail-box-cell h6{ font-family: "Bebas Neue", sans-serif; color:#171717; font-weight: 700; letter-spacing:0; margin-bottom:0; }
.time-list.mb-70{ margin-bottom:70px; }
.detail-box-cell ul{ margin-top: 5px; }
.detail-box-cell ul{ margin-left:0; }
.detail-box-cell ul li{ list-style: none; position:relative; padding-left: 15px; }
.detail-box-cell ul li:before{ content: ''; display: block; position: absolute; left: 4px; top: 9px; width: 5px; height: 5px; background: #171717; border-radius: 50%; }
.shop-detail-area .three-col .col-right .btn-secondary{ width:100%; }
.btm-bg{ position:relative; }
.btm-bg:before{ content: ''; display: block; position: absolute; right: 0; bottom: 0; background: url(../images/slider-bg.svg) no-repeat; background-size: cover; background-position: center; width: 475px; height: 277px; }
/* end */

/*back link*/
/*start*/
.back-link{ display: inline-block; }
.back-link a{ display: inline-block;font-size:24px; line-height:100%; letter-spacing: 1px; position: relative; padding-right: 45px; box-sizing:border-box; text-transform: uppercase; font-family: "Bebas Neue", sans-serif; color: #000000; }
.back-link a:after{ content: ''; display: block; position: absolute; right: 0; top: 3px; width: 33px; height: 17px; background: url(../images/back-to-link-arrow.svg) no-repeat; background-size: cover; }
/* end */

/* event slider area */
/* start */
.event-slider-area{ display: block; width: 100%; max-width: 1318px; margin: 0 auto; }
.event-slider-area .item{ display: block; width: 100%; }
.event-box-grp{ display: flex; flex-wrap: wrap; }
.event-box-grp .event-box{ display: inline-block; width:24%; margin-left: 0; margin-bottom: 20px; }
.event-box-grp .event-box .offer-box{ display: block; width: 100%; }
.event-box-grp .event-box:nth-child( 4n + 4){ margin-right: 0; }
.event-slider-area .offer-date{ text-transform: uppercase; }
.event-slider-arrow{ display: block; width:100%; text-align:right; padding-top: 26px; max-width: 1318px; margin: 0 auto; }
.event-slider-slider-arrow{ display: inline-block; position: relative; }
.event-slider-slider-arrow .left-arrow{ display: inline-block; width: 42px; cursor: pointer; margin-right:7px; transition: all 0.3s ease-in-out; opacity:0.2; }
.event-slider-slider-arrow .right-arrow{ display: inline-block; width: 42px; cursor: pointer; margin-left: 7px; transition: all 0.3s ease-in-out; }
.event-slider-slider-arrow .left-arrow figure, .event-slider-slider-arrow .right-arrow figure{ display: block; width:100%; }
.event-slider-slider-arrow .left-arrow figure img, .event-slider-slider-arrow .right-arrow figure img{ display: block; width:100%; }
.event-slider-slider-arrow .left-arrow:hover, .event-slider-slider-arrow .right-arrow:hover{ opacity: 1; }
.event-box .btn-secondary{ width:100%; }
.event-box .offer-box-details{ padding: 25px 13px 13px 13px; border-top: 3px solid #262626; } 
.event-box .offer-box-details h4{ margin-bottom: 30px; padding-left: 2px; }
.event-box .offer-date{ padding-left: 2px; }
/* end */

/* custom select */
/* start */
.custom-select{ display: inline-block; float: left; position: relative; width: 100%; }
.custom-select select{ display: none; }
.select-selected{ background: #F2E9D7; }
.select-selected:after{ position: absolute; content: ""; top: 17px; right: 50px; width: 22px; height: 22px; background: url(../images/down-arrow.svg); background-size: cover; }
.select-selected.select-arrow-active:after{ top: 18px; transform: rotate(180deg) }
.select-items div,.select-selected{ padding: 14px 35px 14px 15px; cursor: pointer; font-size: 24px; line-height: 100%; color: #000000; text-align: left; font-family: "Bebas Neue", sans-serif; letter-spacing: 1px; min-width: 237px; box-sizing: border-box; }
.select-items{ position: absolute; background-color: #E2DFD8; top: 100%; left: 0; right: 0; z-index: 99; font-family: "Bebas Neue", sans-serif; letter-spacing: 2px; }
.select-items div{ color: #262626; border-bottom: 1px solid rgb(255 255 255 / 10%); }
.select-hide{ display: none; }
.select-items div:hover, .same-as-selected{ background-color: rgba(0, 0, 0, 0.1); }
.select-box label{ min-height: 16px; }
.select-selected{ text-align: center; border: 3px solid #262626; font-size: 24px; line-height: 100%; background: transparent; }
/* end */

/*mobile menu*/
/*start*/
#mobile-menu{ display: block; position: relative; z-index: 999999; }
.menu-trigger.open span{background-color: rgba(0,0,0,.0)}
.menu-trigger.open span:before{top: 0;transform: rotate(45deg);-webkit-transform: rotate(45deg);background: #E74A30; }
.menu-trigger.open span:after{top: 0;transform: rotate(-45deg);-webkit-transform: rotate(-45deg);background: #E74A30; }
#mobile-menu .navbar{ background: rgba(226, 223, 216, 0.9); position: fixed; top: -100vh; width: 320px; height: 100vh; right: 0; box-sizing: border-box; z-index: 99999; overflow-y: auto; -webkit-overflow-scrolling: touch; -webkit-transition: all 0.5s ease; -moz-transition: all 0.5s ease; -o-transition: all 0.5s ease; transition: all 0.5s ease; padding: 0px 0;}
#mobile-menu .navbar.open{ top:0; }
#mobile-menu  ul ul{ display: none; background: transparent; margin-top: 10px;margin-bottom: 0; }
#mobile-menu  ul ul ul{background: transparent; margin-bottom: 0; }
#mobile-menu  ul ul ul ul{background:rgb(60, 60, 56)}
#mobile-menu  li{ border-bottom:2px solid #000000; list-style: none; position: relative; display: block;margin: 0; padding: 9px 0px 12px 15px; }
#mobile-menu  li:before{ display: none; }
#mobile-menu  li:last-child{ border-bottom-width: 0; }
#mobile-menu  em{display: block;position: absolute;top: 0;right: 0;width: 100%;height: 48px;-webkit-transition: all 0.5s ease;-moz-transition: all 0.5s ease;-o-transition: all 0.5s ease;transition: all 0.5s ease;}
#mobile-menu  em.toggled:after{transform: rotate(180deg);-moz-transform: rotate(180deg);-webkit-transform: rotate(180deg); top: 16px; right: 17px; }
#mobile-menu  em.level-two:before{content: '';position: absolute;width: 0;height: 0;border-style: solid;border-width: 6px 6px 0 6px;border-color: #fff transparent transparent transparent;background-color: transparent;left: 50%;top: 50%;transform: translate(-50% , -50%);-webkit-transform: translate(-50% , -50%);-moz-transform: translate(-50% , -50%);margin: 0;}
#mobile-menu  em.level-two:after{display: none;}
#mobile-menu  em.level-two.toggled{transform: rotate(-180deg);-moz-transform: rotate(-180deg);-webkit-transform: rotate(-180deg)}
#mobile-menu li a{ color: #262626; padding: 0; display: inline-block; margin-right: 0; line-height: 17px; font-size: 17px; font-weight: 500; letter-spacing: 0.09em; position: relative; z-index: 1; font-weight: 500; cursor: pointer; text-transform: uppercase; }
#mobile-menu  li a:hover{ text-decoration: underline; color: #262626; }
#mobile-menu  li li{border-color: transparent; }
#mobile-menu  li li a{text-transform: none;padding-left: 0;}
#mobile-menu  li li li a{padding-left: 25px;margin-right: 0;}
#mobile-menu  li li li li a{padding-left: 30px;margin-right: 0; }
.scroll-hidden{overflow: hidden;height: 100%;}
#mobile-menu li > a{ margin-bottom: 0px; position: relative; }
#mobile-menu li > em:after{ content: ''; display: block; position: absolute; right: 17px; top: 8px; width: 30px; height: 21px; background: url(../images/down-arrow-mobile.svg) no-repeat; background-size: cover; pointer-events: none; transition: all 0.3s ease-in-out; }
.sub-menu.hassub.up-arrow em:after{ transform: rotate(180deg); }
#mobile-menu ul > li > ul > li > em:after{ top:16px; }
#mobile-menu  li li > a{ font-weight: 500; font-size: 13px; line-height: 15px; }
#mobile-menu ul > li{ padding-top: 14px; padding-right: 10px; }
.navbar ul{ margin: 0; }
#mobile-menu ul > li > ul > li{ padding: 9px 20px 8px 20px;  }
#mobile-menu ul > li > ul > li > ul > li:before{ display: none; }
#mobile-menu ul > li > ul > li > ul > li{ padding: 9px 0px 8px 22px;  }
#mobile-menu ul > li > ul > li > ul > li> a{ padding: 0; font-weight: normal; }
.mobile-overlay{position: fixed;left: 0;top: 0;width: 100%;height: 100%;background: rgba(0,0,0,0.5);z-index: 99;-moz-transition: all 0.8s ease;-webkit-transition: all 0.8s ease;-o-transition: all 0.8s ease;transition: all 0.8s ease;opacity: 0;visibility: hidden;}
.mobile-overlay.open{opacity: 1;visibility: visible;}
#mobile-menu ul > li > ul > li > em{ height: 41px; }
#mobile-menu ul > li > ul > li.hassub a:after{ top: 5px;}
#mobile-menu ul > li a:after{ display: none; }
#mobile-menu ul > li.hassub > a:After{ display: inline-block; }
#mobile-menu .sub-menu:after{ display:none; }
.contact-mb-info{ display: block;width: 100%;padding: 20px 10px;border-top: 2px solid #555555;margin-top: 17px; box-sizing: border-box; }
.contact-mb-info ul{ display: block; width: 100%; float: left; display: flex;flex-direction: row;flex-wrap: nowrap;justify-content: space-between;align-items: baseline;align-content: stretch;}
#mobile-menu .contact-mb-info ul li{ font-size: 16px; line-height: 18px; color:#fff; font-weight: normal; text-transform: none; border-bottom: 0; padding: 0px 5px; box-sizing: border-box; float: left; }
#mobile-menu .contact-mb-info ul li > a{ font-size: 13px; line-height: 15px; color:#fff; font-weight: normal; }
#mobile-menu .contact-mb-info ul li:before{ display: none; }
.menu-area{ display: block; width: 100%; margin-top: 0; height: calc( 100vh - 80px ) }
.menu-area ul{ display: block; }
#mobile-menu ul > li.active > a, #mobile-menu .current_page_item > a { color: #262626; }
.menu-area ul li{ display: block; float: none; }
.menu-trigger { display: block; width: 42px; height: 42px; position: fixed; -ms-touch-action: manipulation; touch-action: manipulation; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; background-image: none; white-space: nowrap; z-index: 999999; right: 320px; top: -50px; transition: all 1s ease-in-out; }
#mobile-menu.open .menu-trigger{ top:7px; }
.menu-trigger span, .menu-trigger span:after, .menu-trigger span:before{ height: 3px; transition: all 0.5s ease-in-out; } 
.menu-trigger span {position: absolute; display: block; width: 30px; left: 50%; top: 50%; transform: translate(-50% , -50%); -webkit-transform: translate(-50% , -50%); -moz-transform: translate(-50% , -50%); }
.menu-trigger span:after, .menu-trigger span:before { border-radius: 25%; top: 0; transform: rotate(-45deg); -webkit-transform: rotate(-45deg); background: #ffffff; } 
.menu-trigger span:before {top: 0; transform: rotate(45deg); -webkit-transform: rotate(45deg); background: #ffffff; } .menu-trigger span:after, .menu-trigger span:before { content: ''; position: absolute; left: 0; width: 100%; border-radius: 25%; }
.menu-overlayer{ display: block; position: fixed; width: 0; height: 100vh; right: 0; bottom: 0; background: rgba(0,0,0,0.6); transition: all 0.3s ease-in-out; opacity: 0; }
.menu-overlayer.open { width: 100vw; height: 100vh; opacity: 1; top:0; }
.navbar ul.third-menu, .navbar ul.second-menu{ display: none; margin-top: 25px; border-top: 2px solid #555555; }
.second-menu li .new-post{ float: right; margin-top: 2px; margin-left: 0; margin-right: 0; position: absolute; right: 5px; top:12px; }
#mobile-menu .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{ background-color:  rgba(255, 187, 35, 0.75); }
#mobile-menu ul > li.active > a, #mobile-menu .current_page_item > a{ color: #262626; }
/*end*/

/*mobile menu*/
/*start*/
.mb-toggled.mb-closed{ position: relative; display: none; margin-left: 10px; }
.mb-button { display: inline-block; position: relative; }
.mb-button span { display: block; margin: 4px 0px 6px 0px; height: 2px; background: #262626; width: 28px; float: none; border-radius: 24px; } 
.pb-0{ padding-bottom: 0 !important; }
.sub-menu-toggle{ display: none; }
#mobile-menu em.toggled:after{ transform: rotate(180deg); -moz-transform: rotate(180deg); -webkit-transform: rotate(180deg); top: 16px; right: 17px; }
/*end*/

/* two col select */
/* start */
.contact-area .container{ max-width: 100%; }
.contact-area .two-col-content{ display: block; width:100%; max-width: 100%; margin: 0 auto; }
.two-col-content .two-col{ display: flex; }
.two-col-content .two-col .col-left{ display: block; margin-left:0; width: 50%; }
.two-col-content .two-col .col-right{ display: flex; align-items: start; margin-right:0; width: 50%; padding-left: 50px; box-sizing:border-box; padding-right: 35px; padding-top: 18px; }
.event-img{ display: block; width:100%; }
.event-img figure{ display: block; width:100%; }
.event-img figure img{ display: block; width:100%; }
.two-col-content .two-col .col-right h6{ font-weight: 600; letter-spacing: 1px; }
.event-title{ font-size: 14px; line-height: 21px; color: #000; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 50px; }
/* end */

/* contact info */
/* start */
.no-space{ padding-bottom:0; }
.no-space h1{ margin-bottom:0; }
.contact-info{ display:block; width:100%; border-top: 3px solid #262626; border-bottom: 3px solid #262626; }
.contact-info .two-col{ display: flex; }
.contact-info .two-col .col-left{ width:50%; margin:0; display: flex; }
.contact-info .two-col .col-left iframe{ width:100%; height:100%; min-height: 350px; }
.contact-info .two-col .col-left figure{ display:block; width:100%; }
.contact-info .two-col .col-left figure img{ width:100%; display:block; object-fit: cover; height:100%; }
.contact-info .two-col .col-right{ width:50%; margin:0; padding: 55px 40px 40px 95px; box-sizing:border-box; border-left: 3px solid #262626; }
.contact-info .two-col .col-right .time-list{ margin-bottom: 0; }
.contact-info .two-col .col-right .btn-primary{ margin-top: 25px; margin-bottom:50px; }
.contact-info .two-col .col-right .shop-detail-title{ padding-top: 40px; margin-bottom: 20px; }
/* end */

/*contact form area*/
/*start*/
.contact-form-area{ display: block; padding-top:82px; padding-bottom:112px; box-sizing:border-box; }
.contact-form-area .two-col{ display: flex; }
.contact-form-area .two-col .col-left{ width:794px; margin:0; }
.contact-form-area .two-col .col-right{ width: calc( 100% - 794px ); margin: 0; padding-left: 116px; box-sizing:border-box; }
.contact-cell{ display:block; width:100%; margin-bottom:40px; }
.contact-cell h6{ margin-bottom:10px; font-family: "Quicksand", sans-serif; font-weight:bold; color:#262626; }
.contact-cell p, .contact-cell p a{ color:#000000; }
.contact-cell p a{ word-break: break-word; }
.contact-cell p a:hover{ text-decoration: none; color:#000000; }
.contact-form-area .two-col .col-right .contact-cell:last-child{ margin-bottom:0; } 
/*end*/

/*form area*/
/*start*/
.form-area{ display:block; width:100%; }
.contact-form-area h2{ margin-bottom:30px; }
.submit-cell input{ min-width:165px; width:auto; }
.search-inner-area form input{ border:0; }
/*end*/

/*leasing sec*/
/*start*/
.leasing-sec{ display:block; width: 100%; padding-top: 20px; padding-bottom: 40px; }
.leasing-sec .two-col{ display: flex; }
.leasing-sec .two-col .col-left{ width:794px; margin:0; }
.leasing-sec .two-col .col-right{ width: calc( 100% - 794px ); margin: 0; padding-left: 116px; box-sizing:border-box; }
.leasing-cell{ display: block; width: 100%; padding-bottom: 30px; position:relative; padding-top: 68px; }
.leasing-cell:after{ content:''; display:block; position:absolute; left:0; bottom: 0; width: 100%; height: 1px; background: #262626; opacity:0.3; }
.leasing-sec .container .leasing-cell:first-child{ padding-top: 0; }
.leasing-sec .container .leasing-cell:last-child:after{ display: none; }
.leasing-sec .two-col .col-left p{ margin-bottom:40px; }
.leasing-sec .two-col .col-right h6{ margin-bottom:5px; }
/*end*/

/*movies list cell*/
/*start*/
.movies-list-cell{ display:block; width:100%; border: 3px solid #262626; box-sizing:border-box; margin-bottom:19px; }
.movies-list-cell .two-col{ display:flex; }
.movies-list-cell .two-col .col-left{ display: inline-flex; width:307px; margin:0; }
.movies-list-cell .two-col .col-left figure{ display:block; width:100%; height:100%; }
.movies-list-cell .two-col .col-left figure img{ display:block; width:100%; height:100%; object-fit: cover; object-position: center; }
.movies-list-cell .two-col .col-right{ display:block; width:calc( 100% - 307px ); margin:0; padding: 35px; box-sizing:border-box; border-left: 3px solid #262626; background: rgba(226, 223, 216, 0.3); }
.movies-list-cell h2{ margin-bottom: 13px; }
.text-link.black-text{ color:#000000; font-family: "Quicksand", sans-serif; font-weight:700; text-transform: capitalize; letter-spacing: 0; font-size: 18px; padding-right: 28px; text-decoration: underline; }
.text-link.black-text:after{ width: 21px; height: 11px; background: url(../images/logo-slider-right-arrow.svg) no-repeat; background-size: cover; top: 5px; }
.text-link.black-text:hover{ padding-right: 35px; }
.amc-cell{ display:block; width:100%; padding-top: 45px; margin-bottom: 20px; }
.amc-cell h6{ margin-bottom:5px; color:#000000; font-family: "Quicksand", sans-serif; font-weight:700; letter-spacing: 0; }
.amc-cell ul{ margin:0; display:flex; align-items:center; gap: 5px 25px; flex-wrap: wrap; }
.amc-cell ul li{ display:inline-block; margin:0; }
.movies-time-type p{ margin-bottom: 15px; }
.movies-time{ display:block; width:100%; }
.time-cell-grp{ display: flex; flex-wrap: wrap; align-items: start; gap: 13px; }
.time-cell-grp .time-cell{ display:inline-block; text-align:center; margin:0; }
.time-cell p{ margin-bottom:0; padding-top:7px; }
/*end*/

/*amenities area*/
/*start*/
.amenities-area .event-box h4{ margin-bottom: 15px; }
.amenities-area .event-box .offer-box-details{ padding: 25px; }
.amenities-area .event-box .offer-box-details p{ margin-bottom:0; }
/*end*/


.site-footer {
  background: var(--footer-bg) url('../images/footer-bg.svg') center / cover no-repeat;
  color: var(--footer-fg);
      width: 100%;
    height: auto;
}
.site-footer a { color: var(--neutral); }
.site-footer a:hover { color: var(--white); }

.site-footer__top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
  padding-block: clamp(3rem, 6vw, 5rem) !important;
}
.site-footer__logo img { width: auto; margin: 0 auto; }

/* single nav, balanced into columns regardless of link count */
.site-footer__col ul { list-style: none; margin: 0; padding: 0; columns: 3; column-gap: 2rem; }
.site-footer__col li { break-inside: avoid; display: list-item;
    margin: 0 0 .75rem; }
.site-footer__col a {
  font: 400 var(--text-small)/1 var(--font-body);
  letter-spacing: var(--tracking-eyebrow);
  text-transform: capitalize;
}

.site-footer__contact { font-style: normal; color: var(--neutral); font-size: var(--text-small); }
.site-footer__contact p { margin-bottom: 2rem; line-height: 1.5; font-size: inherit; color: var(--neutral); }
.site-footer__social { display: flex; gap: 1rem; margin-top: 1rem; }
.site-footer__social a { display: inline-flex; margin: 0; }

.site-footer__social a:hover img {
  transform: scale(1.1);
}

.site-footer__bottom { border-top: 1px solid rgba(255,255,255,.15); }
.site-footer__bottom p { padding-block: 1.25rem; text-align: center; font-size: .85rem; color: var(--neutral); }

@media (max-width: 64em) {
  .site-footer__top { grid-template-columns: 2fr 1fr; }
  .site-footer__logo { grid-column: 1 / -1; }
}
@media (max-width: 48em) {
  .site-footer__top { grid-template-columns: 1fr; }
  .site-footer__social { justify-content: center; }
}
@media (max-width: 40em) {
  .site-footer__col ul { columns: 1; text-align: center; }
  .site-footer__contact { text-align: center; }
}

.time-cell-hover .header-time li.is-today {
  color: var(--accent);
}

.page-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap);
  width: 100%;
  margin: 0;
}

.page-header__back {
      margin: 0;
    font-size: var(--text-button);
    font-family: var(--font-display);
}

.toggle {
  display: inline-flex;
  border: 3px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin: 0;
}
.toggle__btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  flex: 1 1 auto;
  text-align: center;
  font: 400 var(--text-button)/1 var(--font-display);
  text-transform: uppercase;
  letter-spacing: var(--tracking-display);
  padding: 0.5em 1rem;
  min-width: 11rem;
  background: var(--heading);
  color: var(--white);
  border: 0;
  cursor: pointer;
  /*white-space: nowrap;*/
  transition: all 0.3s ease-in-out;
}
.toggle__btn + .toggle__btn { border-left: 3px solid var(--border); }

.toggle__btn:hover {
  text-decoration: none;
}

/* active â€” works for both aria-selected (tabs) and aria-current (links) */
.toggle__btn[aria-selected="true"],
.toggle__btn[aria-current="page"] {
  background: var(--white);
  color: var(--heading);
}


.card:hover {
  background: var(--card-hover);
}

.card-details {
  padding: 0 10px;
  margin: 0;
}

.events-grid .card-details { padding: 0px; }

.card-image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  border-bottom: 3px solid var(--border);
}

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

.card-image.is-logo img {
  object-fit: contain;
  padding: 1.5rem;
}

.card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 24px 12px 12px;
  margin: 0;
}

.card-content .card-caption { display: block; margin: 0 0 10px; }

.card-content h3 {
  margin: 0 0 20px;
  font-weight: 400;
}

.card-content .btn {
  margin-top: auto;
  text-align: center;
  margin-left: 0;
  margin-right: 0;
}

.info-desc {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 0 0 24px;
}

.info-detail {
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 16px 16px;
  padding-left: 24px;
}

.info-detail.info-phone {
  background-image: url('../images/call-icon.svg');
}

.info-detail.info-address {
  background-image: url('../images/location-icons.svg');
}


.directory {
  display: grid;
  grid-template-columns: 2fr 1fr;
  height: 75vh;
  min-height: 480px;
  border: 3px solid var(--primary);
}

/* Column 1 â€” map */
.directory__map {
  display: flex;
  flex-direction: column;
  min-width: 0;
  border-right: 3px solid var(--primary);
  overflow: hidden;
  background: var(--white);
  margin: 0;
}
.directory__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem;
  border-bottom: 3px solid var(--primary);
  margin: 0;
}
.floorplan-select-wrapper {
  position: relative;
  display: inline-block;
  width: 150px;
  margin: 0;
}
.floorplan-select-wrapper:after {
  content: "";
  position: absolute;
  width: 25px;
  height: 25px;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  background: url(../images/down-arrow.svg);
  background-size: cover;
  pointer-events: none;
}
.directory__toolbar select {
  padding: 0.45rem 0.6rem;
  border: none;
  background: var(--card-bg);
  color: var(--primary);
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 100%;
  cursor: pointer;
  outline: 0;
  font-family: var(--font-body);
  font-size: var(--text-button);
}
.zoom-controls { display: inline-flex; gap: 0.25rem; margin: 0; }
.zoom-controls button {
  width: 42px;
  height: 42px;
  border: none;
  background: var(--primary);
  color: var(--white);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.zoom-controls button:hover { background: var(--btn-hover); }

.directory__viewport {
  position: relative;
  flex: 1;
  overflow: hidden;
  background: var(--card-bg);
  cursor: grab;
  touch-action: none;
  margin: 0;
}
.directory__viewport.is-dragging { cursor: grabbing; }

.floorplan-map { position: absolute; inset: 0; }
.floorplan-map[hidden] { display: none; }
.floorplan-map__stage {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-origin: 0 0;
  transition: transform 0.2s ease;
}
.floorplan-map__stage svg {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}

.directory__viewport.is-dragging .floorplan-map__stage { transition: none; }

/* Shapes behave like the CP field */
.floorplan-map__stage path,
.floorplan-map__stage polygon,
.floorplan-map__stage rect {
  cursor: pointer;
  transition: fill 0.12s ease, stroke 0.12s ease, fill-opacity 0.12s ease;
}
.floorplan-map__stage path:hover,
.floorplan-map__stage polygon:hover,
.floorplan-map__stage rect:hover {
  fill: #2b7de9 !important;
  fill-opacity: 0.55;
  stroke: #1b5fc0 !important;
}
.floorplan-map__stage .is-active,
.floorplan-map__stage .is-active:hover {
  fill: var(--primary) !important;
  fill-opacity: 0.7;
  stroke: var(--primary) !important;
  stroke-width: 2;
}

.floorplan-map__stage path,
.floorplan-map__stage polygon,
.floorplan-map__stage rect { pointer-events: none; }

.floorplan-map__stage .is-linked { pointer-events: all; cursor: pointer; }

/* Active entry in the sidebar */
.store-item.is-selected .store-item__btn {
  background: var(--card-hover);
}

/* Column 2 â€” search + list */
.directory__sidebar {
  display: flex;
  flex-direction: column;
  min-height: 0;
  overflow: hidden;
  padding: 0.75rem;
  margin: 0;
}
.directory__sidebar input[type="search"] {
  border: none;
  background: var(--card-bg);
  padding: 0.55rem 0.7rem;
  width: 100%;
  padding-right: 40px;
  box-sizing: border-box;
  -webkit-appearance: none;
  outline: none;
}
.directory__search {
  display: block;
  width: 100%;
  position: relative;
  padding-bottom: 14px;
}
.directory__search:after {
  content: '';
  display: block;
  position: absolute;
  right: 12px;
  top: 12px;
  width: 20px;
  height: 20px;
  background: url(../images/Search-icon.svg) no-repeat;
  background-size: cover;
}

.directory__list {
  margin: 0;
}

.directory__list .store-list {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
}

.store-list {
  flex: 1;
  overflow-y: auto;
  margin: 0;
  padding: 0 0 0.5rem;
  list-style: none;
}
.store-item {
  border-top: 1px solid var(--primary);
}
.store-item__details {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
  padding-top: 0;
  padding-bottom: 0;
}
.store-item__details a.btn {
  width: 100%;
  box-sizing: border-box;
}
.store-item.is-selected .store-item__details {
  max-height: 600px;
  opacity: 1;
  padding: 0.2rem 0.6rem 1.2rem;
  box-sizing: border-box;
  background: var(--card-hover);
}
.store-item__btn {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 2px;
  padding: 1.2rem 0.6rem;
  text-align: left;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.store-item__btn:hover { background: var(--card-bg); }
.store-item__title { font-weight: 400; margin: 0; }
.store-item__floor { font-size: 0.8rem; color: #6b7280; }
.store-item[hidden] { display: none; }

.floorplan-map__stage .is-linked {
  cursor: pointer;
  stroke: var(--primary);
  stroke-width: 3px;
  transition: fill 0.12s ease, stroke 0.12s ease, fill-opacity 0.12s ease;
}
.floorplan-map__stage .is-linked:hover {
  fill: #2b7de9 !important;
  fill-opacity: 0.55;
  stroke: #1b5fc0 !important;
}

.directory__tooltip {
  position: fixed;
  z-index: 1000;
  pointer-events: none;
  /* center on the cursor X, sit above it with room for the arrow */
  transform: translate(-50%, calc(-100% - 8px));
  padding: 6px 8px;
  background: #231f20;
  color: #fff;
  font-size: 12px;
  line-height: 1;
  border-radius: 4px;
  white-space: nowrap;
}
.directory__tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: #231f20; /* matches the tooltip background */
}
.directory__tooltip[hidden] { display: none; }

.block__divider hr {
  margin: 0;
}

.form-area [data-freeform-controls]>div { margin: 0;}
.form-area .freeform-form-errors>p { margin: 0; }
.form-area .btn-primary { color: var(--white); }
.form-area .freeform-row .freeform-column .freeform-errors { margin-left: 20px; }

/* two-column section (maps to sectionTwoColumn + columnRatio) */
.two-cols { display: grid; gap: var(--gutter); }
.two-cols .col { display: flex; flex-direction: column; min-width: 0; align-items: stretch; align-items: stretch;
    width: 100%; }
.two-cols .col > * { width: 100%; min-width: 0; }
@media (min-width: 48em) {
  .two-cols            { grid-template-columns: 1fr 1fr; }
  .two-cols.is-70-30   { grid-template-columns: 5fr 2fr; }
  .two-cols.is-30-70   { grid-template-columns: 2fr 5fr; }

  .two-cols.is-70-30 > :first-child { grid-column: 2; }
  .two-cols.is-70-30 > :last-child  { grid-column: 1; grid-row: 1; }
}


@media (max-width: 720px) {
  .directory { grid-template-columns: 1fr; height: auto; }
  .directory__viewport { flex: none; height: 40vh; }
  .directory__map { border-right: none; }
  .store-list { max-height: 40vh; }
}

@media (max-width: 48em) {
  .toggle { display: flex; width: 100%; }
  .toggle__btn { min-width: 0; font-size: var(--text-body); }
}