/* = Import Font
------------------------------------------------- */
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700');
@import url('jquery-filer.css');


/* = Reset Tags
------------------------------------------------- */
* {
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-moz-box-sizing: border-box;
}
*, html, body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, label, fieldset, input, p, blockquote, th, td {
	margin: 0;
	padding: 0;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
fieldset, img {
	border: 0;
}
address, caption, cite, code, dfn, em, strong, th, var {
	font-style: normal;
	font-weight: normal
}
ol, ul, li {
	list-style: none
}
caption, th {
	text-align: left
}
h1, h2, h3, h4, h5, h6 {
	font-size: 100%;
	font-weight: normal;
}
q:before, q:after {
	content: '';
}
strong {
	font-weight: bold;
}
em {
	font-style: italic;
}
img {
	max-width: 100%;
	vertical-align: top;
	height: auto;
}
a img {
	border: none;
}
iframe {
	border: none;
	max-width: none;
}


/* = General Tags
------------------------------------------------- */
html, body {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
body {	
	color: #313131;
	background-color: #fff;
	font-size: 14px;
	font-family: 'Open Sans', sans-serif;
	overflow-x: hidden;
	overflow-y: hidden;
}
textarea {
	min-height: 100px;
}
p {
	font-size: 14px;
	line-height: 22px;
}
a {
	text-decoration: none !important;
	color: #313131;
	transition: color 0.3s;
	-webkit-transition: color 0.3s;
	-moz-transition: color 0.3s;
	cursor: pointer;
}
a:hover {
	color: #ffc808;
}
a:hover, a:active, a:focus {
	outline: 0;
}
h1, h2, h3, h4, h5, h6 {
	font-style: normal;
	letter-spacing: 1px;
	font-weight: bold;
}
.container {
	width: 1170px;
	margin: 0 auto;
	padding: 0;
}
.container-fullwidth {
    width: 100%;
    margin: 0 auto;
    position: relative;
}
.container-full {
    width: 100%;
    margin: 0 auto;
    padding: 0 56px;
    position: relative;
}
.container-medium {
	width: 961px;
	margin: 0 auto;
	padding: 0;
}
.container-mini {
    width: 768px;
    margin: 0 auto;
    padding: 0 56px;
    position: relative;
}
.txt-uppercase {
	text-transform: uppercase;
}
.center {
    text-align: center !important;
}
.dark {
	color: white !important;
}

/* = Preload
------------------------------------------------- */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #F7CA18;
  z-index: 999;
  text-align: center;
}
.spinner {
  height: 60px;
  width: 60px;
  margin: 0 auto;
  display: inline-block;
  position: relative;
}

.double-bounce1, .double-bounce2 {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #fff;
  opacity: 0.4;
  position: absolute;
  top: 500%;
  -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
  animation: sk-bounce 2.0s infinite ease-in-out;
}
.double-bounce2 {
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}
@-webkit-keyframes sk-bounce {
  0%, 100% { -webkit-transform: scale(0.0) }
  50% { -webkit-transform: scale(1.0) }
}
@keyframes sk-bounce {
  0%, 100% { 
    transform: scale(0.0);
    -webkit-transform: scale(0.0);
  } 50% { 
    transform: scale(1.0);
    -webkit-transform: scale(1.0);
  }
}

/* = Select Style
------------------------------------------------- */
.nice-select {
  -webkit-tap-highlight-color: transparent;
  background-color: rgba(0,0,0,.3);
  border-radius: 3px;
  border: 2px solid #ddd;
  box-sizing: border-box;
  clear: both;
  color: rgba(255,255,255,.6);
  cursor: pointer;
  display: block;
  float: left;
  font-family: inherit;
  font-size: 14px;
  font-weight: normal;
  line-height: 40px;
  outline: none;
  padding-left: 16px;
  padding-right: 30px;
  position: relative;
  text-align: left !important;
  text-transform: capitalize;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  white-space: nowrap;
  width: auto;}
  .nice-select:after {
    border-bottom: 2px solid #999;
    border-right: 2px solid #999;
    content: '';
    display: block;
    height: 5px;
    margin-top: -4px;
    pointer-events: none;
    position: absolute;
    right: 12px;
    top: 50%;
    -webkit-transform-origin: 66% 66%;
        -ms-transform-origin: 66% 66%;
            transform-origin: 66% 66%;
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
    width: 5px; }
  .nice-select.open:after {
    -webkit-transform: rotate(-135deg);
        -ms-transform: rotate(-135deg);
            transform: rotate(-135deg); }
  .nice-select.open .list {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: scale(1) translateY(0);
        -ms-transform: scale(1) translateY(0);
            transform: scale(1) translateY(0); }
  .nice-select.disabled {
    border-color: #ededed;
    color: #999;
    pointer-events: none; }
    .nice-select.disabled:after {
      border-color: #cccccc; }
  .nice-select.wide {
    width: 100%; }
    .nice-select.wide .list {
      left: 0 !important;
      right: 0 !important; }
  .nice-select .list {
    background-color: #2f151c;
    border-radius: 5px;
    box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
    box-sizing: border-box;
    color: #fff;
    margin-top: 4px;
    max-height: 240px;
	overflow-y: auto;
	overflow-x: hidden;
    opacity: 0;
    padding: 0;
    pointer-events: none;
    position: absolute;
    top: 100%;
    left: 0;
    -webkit-transform-origin: 50% 0;
        -ms-transform-origin: 50% 0;
            transform-origin: 50% 0;
    -webkit-transform: scale(0.75) translateY(-21px);
        -ms-transform: scale(0.75) translateY(-21px);
            transform: scale(0.75) translateY(-21px);
    -webkit-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
    transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
    z-index: 9;}
    .nice-select .list:hover .option:not(:hover) {
      background-color: transparent !important; }
  .nice-select .option {
    cursor: pointer;
    font-weight: 400;
    line-height: 40px;
    list-style: none;
    min-height: 40px;
    outline: none;
    padding-left: 18px;
    padding-right: 29px;
    text-align: left;
    -webkit-transition: all 0.2s;
    transition: all 0.2s; }
    .nice-select .option:hover, .nice-select .option.focus, .nice-select .option.selected.focus {
      background-color: #F7CA18; }
    .nice-select .option.selected {
      font-weight: bold; }
    .nice-select .option.disabled {
      background-color: transparent;
      color: #f27024;
      font-weight: 600;
      text-transform: uppercase;
      cursor: default; }

.section-food-1 .nice-select {
	background-color: #fff;
	border-radius: 3px;
  	border: 2px solid #2f151c;
  	color: #333;
}

/* = Color Pallete
------------------------------------------------- */
.bg-white {
	background-color: #ffffff !important;
}
.clr-white {
	color: #ffffff !important;
}
.bg-black {
	background-color: #000000 !important;
}
.clr-black {
	color: #000000 !important;
}
.bg-light {
	background-color: #edf1f2 !important;
}
.clr-light {
	color: #edf1f2 !important;
}
.bg-dark {
	background-color: #3a3f51 !important;
}
.clr-dark {
	color: #3a3f51 !important;
}
.bg-primary {
	background-color: #9a80ff !important;
}
.clr-primary {
	color: #9a80ff !important;
}
.bg-success {
	background-color: #54d64e !important;
}
.clr-success {
	color: #54d64e !important;
}
.bg-info {
	background-color: #598cff !important;
}
.clr-info {
	color: #598cff !important;
}
.bg-warning {
	background-color: #fff159 !important;
}
.clr-warning {
	color: #fff159 !important;
}
.bg-danger {
	background-color: #ff5959 !important;
}
.clr-danger {
	color: #ff5959 !important;
}


/* = Headbar
------------------------------------------------- */
header {
	position: fixed;
	width: 100%;
	height: 100px;
	z-index: 9;
	background-color: black;
	-webkit-transition: height .4s ease, opacity .3s ease;
	-moz-transition: height .4s ease, opacity .3s ease;
	-ms-transition: height .4s ease, opacity .3s ease;
	-o-transition: height .4s ease, opacity .3s ease;
	transition: height .4s ease, opacity .3s ease;
}
.header-sticky {
	top: 0px;
	z-index: 99;
	height: 60px !important;
	background-color: rgba(0,0,0,.9) !important;
	-webkit-transition: height .4s ease, opacity .3s ease;
	-moz-transition: height .4s ease, opacity .3s ease;
	-ms-transition: height .4s ease, opacity .3s ease;
	-o-transition: height .4s ease, opacity .3s ease;
	transition: height .4s ease, opacity .3s ease;
}
.header-sticky #logo img {
	height: 60px;
}
.header-sticky .primary-menu .menu li a {
	height: 60px;
}
#logo {
	position: absolute;
	left: 0;
	right: 0;
	text-align: center;
	z-index: -1;
}
#logo img {
	height: 100px;
	padding: 4px 0;
	-webkit-transition: height .4s ease, opacity .3s ease;
	-moz-transition: height .4s ease, opacity .3s ease;
	-ms-transition: height .4s ease, opacity .3s ease;
	-o-transition: height .4s ease, opacity .3s ease;
	transition: height .4s ease, opacity .3s ease;
}
.primary-menu .menu.left {
	width: 43%;
	float: left;
}
.primary-menu .menu.left li {
	float: right;
	margin-right: 10%;
}
.primary-menu .menu.left li:first-child {
	margin-right: 0;
}
.primary-menu .menu.right {
	width: 43%;
	float: right;
}
.primary-menu .menu.right li {
	float: left;
	margin-right: 10%;
}
.primary-menu .menu.right li:last-child {
	margin-right: 0;
}
.primary-menu .menu li.current > a {
	color: #ffc808;
}
.primary-menu .menu li a {
	font-weight: 600;
	color: white;
	text-decoration: none;
	height: 100px;
	display: table-cell;
	vertical-align: middle;
	-webkit-transition: height .4s ease, opacity .3s ease;
	-moz-transition: height .4s ease, opacity .3s ease;
	-ms-transition: height .4s ease, opacity .3s ease;
	-o-transition: height .4s ease, opacity .3s ease;
	transition: height .4s ease, opacity .3s ease;
}
.primary-menu .menu li a:hover {
	color: #ffc808;
}
.head-collapse {
	overflow-x: visible;
	-webkit-overflow-scrolling: touch;
}
.head-collapse.in {
  	overflow-y: auto;
}


/* = Video Slider
------------------------------------------------- */
#slider {
	position: relative;
	width: 100%;
	overflow: hidden;
}
.form-slider {
	position: absolute;
	z-index: 3;
	bottom: 45%;
	left: 0;
	right: 0;
	width: 840px;
	height: 140px;
	color: #fff;
}
.form-slider.home h1 {
	font-size: 56px;
	font-weight: 400;
	margin-bottom: 40px;
	animation-delay: .5s;
}
.form-slider.home .field-home {
	margin-bottom: 40px;
	animation-delay: 1s;
}
.form-slider.home input {
	width: 100%;
	padding: 10px 16px;
	border: 2px solid #ddd !important;
	border-radius: 4px;
	background-color: rgba(0,0,0,.3);
	outline: none;
}
.form-slider.home input::-webkit-input-placeholder {
	color: #fff;
}
.form-slider.home input::-moz-placeholder {
	color: #fff;
}
.form-slider.home input:-moz-placeholder {
	color: #fff;
}
.form-slider.home input:-ms-input-placeholder {
	color: #fff;
}
.form-slider.home #btn-home {
	border-radius: 3px;
	background-color: transparent !important;
	width: 100%;
	padding: 10px;
	border: 2px solid #ffc808;
	color: #ffc808;
	text-transform: uppercase;
	font-weight: 600;
	outline: none;
	-webkit-transition: background-color .3s ease, opacity .3s ease;
	-moz-transition: background-color .3s ease, opacity .3s ease;
	-ms-transition: background-color .3s ease, opacity .3s ease;
	-o-transition: background-color .3s ease, opacity .3s ease;
	transition: background-color .3s ease, opacity .3s ease;
}
.form-slider.home #btn-home:hover {
	background-color: #ffc808 !important;
	color: #fff;
}
.form-slider.home #btn-home span {
	cursor: pointer;
	display: inline-block;
	position: relative;
	transition: .3s;
}
.form-slider.home #btn-home i {
	content: '';
	position: absolute;
	opacity: 0;
	top: 0;
	right: 6px;
	transition: 0.2s;
	color: #000;
	background-color: rgba(255,255,255,.25);
	padding: 12px;
	border-radius: 3px;
	margin-right: 3px;
}
.form-slider.home #btn-home:hover span {
	padding-right: 25px;
	color: #000;
}
.form-slider.home #btn-home:hover i {
	opacity: 1;
	right: 12px;
}
.form-slider.home .food_rand {
	color: #fff;
}
.form-slider.home p {
	animation-delay: 1.5s;
	z-index: -1 !important;
}
.form-slider.outlet h1 {
	font-size: 56px;
	font-weight: 400;
	margin-bottom: 40px;
	animation-delay: .5s;
}
.form-slider.outlet .field-outlet {
	margin-bottom: 40px;
	animation-delay: 1s;
}
.form-slider.outlet #btn-outlet {
	border-radius: 3px;
	background-color: transparent !important;
	width: 100%;
	padding: 10px;
	border: 2px solid #ffc808;
	color: #ffc808;
	text-transform: uppercase;
	font-weight: 600;
	outline: none;
	-webkit-transition: background-color .3s ease, opacity .3s ease;
	-moz-transition: background-color .3s ease, opacity .3s ease;
	-ms-transition: background-color .3s ease, opacity .3s ease;
	-o-transition: background-color .3s ease, opacity .3s ease;
	transition: background-color .3s ease, opacity .3s ease;
}
.form-slider.outlet #btn-outlet:hover {
	background-color: #ffc808 !important;
	color: #fff;
}
.form-slider.outlet #btn-outlet span {
	cursor: pointer;
	display: inline-block;
	position: relative;
	transition: .3s;
}
.form-slider.outlet #btn-outlet i {
	content: '';
	position: absolute;
	opacity: 0;
	top: 0;
	right: 6px;
	transition: 0.2s;
	color: #000;
	background-color: rgba(255,255,255,.25);
	padding: 12px;
	border-radius: 3px;
	margin-right: 3px;
}
.form-slider.outlet #btn-outlet:hover span {
	padding-right: 25px;
	color: #000;
}
.form-slider.outlet #btn-outlet:hover i {
	opacity: 1;
	right: 12px;
}
.form-slider.streetfood {
	bottom: 35%;
}
.form-slider.streetfood h1 {
	margin-top: 20px;
	font-size: 66px;
	font-weight: 400;
	margin-bottom: 40px;
}
.scroll-arrow {
	position: absolute;
	z-index: 3;
	bottom: 20px;
	left: 50%;
	margin-left: -21px;
	height: 40px;
	width: 40px;
}
.scroll-arrow:hover, .scroll-arrow:focus {
	color: #fff;
}
.animated.infinite {
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

/* = OWL Slider
------------------------------------------------- */
.slider-default .owl-item {
	width: 100%;
}
.slider-default .item {
	padding: 100px 0;
}
.slider-default .caption {
	width: 768px;
	margin: 0 auto;
	height: 200px;
  	text-align: center !important;
}
.slider-default .caption a {
	height: 100px;
	display: table;
	margin-left: auto;
    margin-right: auto;
    cursor: default;
}
.slider-default .caption h1 {
	opacity: 0; 
	color: #fff;
	display: table-cell;
	vertical-align: middle;
  	font-size: 42px;
  	font-weight: 400;
  	text-shadow: 1px 1px 2px rgba(125, 125, 125, .5);
    -webkit-transition: opacity 1s, visibility 1s;
          	transition: opacity 1s, visibility 1s;
}
.slider-default .animate .caption a:hover {
	text-decoration: none;
}
.slider-default .animate .caption h1 { 
	opacity: 1; 
	visibility: visible;
	height: 100px; 
	text-align: center;
	-webkit-animation-name: slideInDown;
	animation-name: slideInDown;
	animation-duration: 1s;
}
.slider-default .caption .title_desc {
	opacity: 0; 
	color: #fff;
	font-size: 16px;
	font-weight: 600;
	height: 100px;
	text-transform: uppercase;
	text-shadow: 1px 1px 2px rgba(125, 125, 125, .5);
}
.slider-default .animate .caption .title_desc {
	-webkit-opacity: 1;
	-webkit-animation-delay: .4s !important;
	animation-delay: .4s !important;
	-webkit-animation: 1s ease 0s normal forwards 1 fadeIUp !important;
    animation: 1s ease 0s normal forwards 1 fadeInUp !important;
}
.slider-default .owl-theme .owl-nav {
	color: #eee;
	text-align: center;
	-webkit-tap-highlight-color: transparent; 
}
.slider-default .owl-theme .owl-nav [class*='owl-']:hover {
	color: #FFF;
}
.slider-default .owl-theme .owl-nav .owl-prev {
	position: absolute;
	width: 50px;
	z-index: 20;
	margin: 0;
	top: auto;
	bottom: 200px;
	left: 0;
	text-align: center;
}
.slider-default .owl-theme .owl-nav .owl-next {
	position: absolute;
	width: 50px;
	z-index: 20;
	margin: 0;
	top: auto;
	bottom: 200px;
	right: 0;
	text-align: center;
}
.slider-default .owl-theme .owl-controls {
    text-align: center !important;
}
.slider-default .owl-theme .owl-dot {
	display: inline-block;
	position: relative;
	top: -30px;
}
.slider-default .owl-theme .owl-dots .owl-dot span {
	width: 10px;
	height: 10px;
	margin: 5px 7px;
	border: 1px solid #fff;
	display: block;
	float: left;
	-webkit-backface-visibility: visible;
	transition: opacity 200ms ease;
	border-radius: 30px;
	-webkit-transition: background-color .3s ease, opacity .3s ease;
	-moz-transition: background-color .3s ease, opacity .3s ease;
	-ms-transition: background-color .3s ease, opacity .3s ease;
	-o-transition: background-color .3s ease, opacity .3s ease;
	transition: background-color .3s ease, opacity .3s ease; 
}
.slider-default .owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
	background: #F7CA18; 
	border-color: #F7CA18;
	-webkit-transition: background-color .3s ease, opacity .3s ease;
	-moz-transition: background-color .3s ease, opacity .3s ease;
	-ms-transition: background-color .3s ease, opacity .3s ease;
	-o-transition: background-color .3s ease, opacity .3s ease;
	transition: background-color .3s ease, opacity .3s ease;
}
.slider-image .owl-theme .owl-nav {
	color: #eee;
	text-align: center;
	-webkit-tap-highlight-color: transparent; 
}
.slider-image .owl-theme .owl-nav [class*='owl-']:hover {
	color: #FFF;
}
.slider-image .owl-theme .owl-nav .owl-prev {
	position: absolute;
	width: 50px;
	z-index: 20;
	margin: 0;
	top: auto;
	bottom: 50%;
	left: 0;
	text-align: center;
}
.slider-image .owl-theme .owl-nav .owl-next {
	position: absolute;
	width: 50px;
	z-index: 20;
	margin: 0;
	top: auto;
	bottom: 50%;
	right: 0;
	text-align: center;
}
.slider-image .owl-theme .owl-controls {
    text-align: center !important;
}
.slider-image .owl-theme .owl-dot {
	display: inline-block;
	position: relative;
	top: -30px;
}
.slider-image .owl-theme .owl-dots .owl-dot span {
	width: 10px;
	height: 10px;
	margin: 5px 7px;
	border: 1px solid #fff;
	display: block;
	float: left;
	-webkit-backface-visibility: visible;
	transition: opacity 200ms ease;
	border-radius: 30px;
	-webkit-transition: background-color .3s ease, opacity .3s ease;
	-moz-transition: background-color .3s ease, opacity .3s ease;
	-ms-transition: background-color .3s ease, opacity .3s ease;
	-o-transition: background-color .3s ease, opacity .3s ease;
	transition: background-color .3s ease, opacity .3s ease; 
}
.slider-image .owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
	background: #F7CA18; 
	border-color: #F7CA18;
	-webkit-transition: background-color .3s ease, opacity .3s ease;
	-moz-transition: background-color .3s ease, opacity .3s ease;
	-ms-transition: background-color .3s ease, opacity .3s ease;
	-o-transition: background-color .3s ease, opacity .3s ease;
	transition: background-color .3s ease, opacity .3s ease;
}

.section-home-2 {
	background-color: #F7CA18;
}
.section-home-2 .owl-item {
	width: 100%;
}
.section-home-2 .caption {
	margin: 0 auto;
	padding: 80px 0;
	text-align: center !important;
}
.section-home-2 .caption a {
	display: table;
	margin-left: auto;
    margin-right: auto;
	width: 961px;
	height: 200px;
}
.section-home-2 .caption h1 {
	opacity: 0; 
	color: #fff;
  	font-size: 42px;
  	font-weight: 600;
  	display: table-cell;
  	vertical-align: middle;
  	text-shadow: 1px 1px 2px rgba(125, 125, 125, .5);
    -webkit-transition: opacity 1s, visibility 1s;
          	transition: opacity 1s, visibility 1s;
}
.section-home-2 .animate .caption a:hover {
	text-decoration: none;
}
.section-home-2 .animate .caption h1 { 
	opacity: 1; 
	-webkit-animation-name: fadeInUp;
	animation-name: fadeInUp;
	animation-duration: 1s;
}
.section-home-2 .item .desc, .section-home-5 .item .desc {
	padding: 30px 0 40px 0;
}
.section-home-2 .item p {
	opacity: 0; 
	color: #000;
	font-weight: 600;
	margin-bottom: 30px;
}
.section-home-2 .animate .item p {
	animation-delay: .5s !important;
	-webkit-animation: 1s ease 0s normal forwards 1 fadeIn;
    animation: 1s ease 0s normal forwards 1 fadeIn;
}
.section-home-2 .item .button {
	opacity: 0; 
	color: #fff;
	text-decoration: none;
	padding: 10px 20px;
	font-weight: 600;
	border: 2px solid #fff;
	border-radius: 3px;
	-webkit-transition: background-color .3s ease, opacity .3s ease;
	-moz-transition: background-color .3s ease, opacity .3s ease;
	-ms-transition: background-color .3s ease, opacity .3s ease;
	-o-transition: background-color .3s ease, opacity .3s ease;
	transition: background-color .3s ease, opacity .3s ease;
}
.section-home-2 .animate .item .button {
	animation-delay: 1s !important;
	-webkit-animation: 1s ease 0s normal forwards 1 fadeInLeft;
    animation: 1s ease 0s normal forwards 1 fadeInLeft;
}
.section-home-2 .item .button:hover {
	color: #000;
	background-color: #fff;
	border: 2px solid #fff;
}
.section-home-2 .owl-theme .owl-nav {
	color: #eee;
	text-align: center;
	-webkit-tap-highlight-color: transparent; 
}
.section-home-2 .owl-theme .owl-nav [class*='owl-']:hover {
	color: #FFF;
}
.section-home-2 .owl-theme .owl-nav .owl-prev {
	position: absolute;
	width: 50px;
	z-index: 20;
	margin: 0;
	top: auto;
	bottom: 366px;
	left: 0;
	text-align: center;
}
.section-home-2 .owl-theme .owl-nav .owl-next {
	position: absolute;
	width: 50px;
	z-index: 20;
	margin: 0;
	top: auto;
	bottom: 366px;
	right: 0;
	text-align: center;
}
.section-home-4, .section-home-5 {
	background-color: #F7CA18;
}
.section-home-4 .owl-item {
	width: 100%;
}
.section-home-4 .caption {
	margin: 0 auto;
	padding: 100px 0;
	text-align: center !important;
}
.section-home-4 .caption a {
	display: table;
	margin-left: auto;
    margin-right: auto;
	height: 200px;
	visibility: hidden;
}
.section-home-4 .caption h1 {
	opacity: 0; 
	color: #fff;
  	font-size: 42px;
  	font-weight: 600;
  	display: table-cell;
  	vertical-align: middle;
  	text-shadow: 1px 1px 2px rgba(125, 125, 125, .5);
    -webkit-transition: opacity 1s, visibility 1s;
          	transition: opacity 1s, visibility 1s;
}
.section-home-4 .animate .caption a:hover {
	text-decoration: none;
}
.section-home-4 .animate.active a { 
	visibility: visible;
}
.section-home-4 .animate .caption h1 { 
	opacity: 1; 
	-webkit-animation-name: fadeInUp;
	animation-name: fadeInUp;
	animation-duration: 1s;
}
.section-home-4 .owl-item .desc {
	margin: 35px 0; 
}
.section-home-4 .item p {
	opacity: 0; 
	color: #000;
	font-weight: 600;
	margin-bottom: 30px;
}
.section-home-4 .animate .item p {
	animation-delay: .5s !important;
	-webkit-animation: 1s ease 0s normal forwards 1 fadeIn;
    animation: 1s ease 0s normal forwards 1 fadeIn;
}
.section-home-4 .item .button {
	opacity: 0; 
	color: #fff;
	text-decoration: none;
	padding: 10px 20px;
	font-weight: 600;
	border: 2px solid #fff;
	border-radius: 3px;
	-webkit-transition: background-color .3s ease, opacity .3s ease;
	-moz-transition: background-color .3s ease, opacity .3s ease;
	-ms-transition: background-color .3s ease, opacity .3s ease;
	-o-transition: background-color .3s ease, opacity .3s ease;
	transition: background-color .3s ease, opacity .3s ease;
}
.section-home-4 .animate .item .button {
	animation-delay: 1s !important;
	-webkit-animation: 1s ease 0s normal forwards 1 fadeInLeft;
    animation: 1s ease 0s normal forwards 1 fadeInLeft;
}
.section-home-4 .item .button:hover {
	color: #000;
	background-color: #fff;
	border: 2px solid #fff;
}
.section-home-4 .owl-theme .owl-nav {
	color: #eee;
	text-align: center;
	-webkit-tap-highlight-color: transparent; 
}
.section-home-4 .owl-theme .owl-nav [class*='owl-']:hover {
	color: #FFF;
}
.section-home-4 .owl-theme .owl-nav .owl-prev {
	position: absolute;
	width: 50px;
	z-index: 20;
	margin: 0;
	top: auto;
	bottom: 336px;
	left: 0;
	text-align: center;
}
.section-home-4 .owl-theme .owl-nav .owl-next {
	position: absolute;
	width: 50px;
	z-index: 20;
	margin: 0;
	top: auto;
	bottom: 336px;
	right: 0;
	text-align: center;
}
.section-home-5 {
	display: none;
	background-color: #F7CA18;
}
.section-home-5 .owl-item {
	width: 100%;
}
.section-home-5 .caption {
	margin: 0 auto;
	padding: 80px 0;
	text-align: center !important;
}
.section-home-5 .caption a {
	display: table;
	margin-left: auto;
    margin-right: auto;
	width: 961px;
	height: 200px;
}
.section-home-5 .caption h1 {
	opacity: 0; 
	color: #fff;
  	font-size: 42px;
  	font-weight: 600;
  	display: table-cell;
  	vertical-align: middle;
  	text-shadow: 1px 1px 2px rgba(125, 125, 125, .5);
    -webkit-transition: opacity 1s, visibility 1s;
          	transition: opacity 1s, visibility 1s;
}
.section-home-5 .animate .caption a:hover {
	text-decoration: none;
}
.section-home-5 .animate .caption h1 { 
	opacity: 1; 
	-webkit-animation-name: fadeInUp;
	animation-name: fadeInUp;
	animation-duration: 1s;
}
.section-home-5 .item p {
	opacity: 0; 
	color: #000;
	font-weight: 600;
	margin-bottom: 30px;
}
.section-home-5 .animate .item p {
	animation-delay: .5s !important;
	-webkit-animation: 1s ease 0s normal forwards 1 fadeInLeft;
    animation: 1s ease 0s normal forwards 1 fadeInLeft;
}
.section-home-5 .item .button {
	opacity: 0; 
	color: #fff;
	text-decoration: none;
	padding: 10px 20px;
	font-weight: 600;
	border: 2px solid #fff;
	border-radius: 3px;
	-webkit-transition: background-color .3s ease, opacity .3s ease;
	-moz-transition: background-color .3s ease, opacity .3s ease;
	-ms-transition: background-color .3s ease, opacity .3s ease;
	-o-transition: background-color .3s ease, opacity .3s ease;
	transition: background-color .3s ease, opacity .3s ease;
}
.section-home-5 .animate .item .button {
	animation-delay: 1s !important;
	-webkit-animation: 1s ease 0s normal forwards 1 fadeInLeft;
    animation: 1s ease 0s normal forwards 1 fadeInLeft;
}
.section-home-5 .item .button:hover {
	color: #000;
	background-color: #fff;
	border: 2px solid #fff;
}
.section-home-5 .owl-theme .owl-nav {
	color: #eee;
	text-align: center;
	-webkit-tap-highlight-color: transparent; 
}
.section-home-5 .owl-theme .owl-nav [class*='owl-']:hover {
	color: #FFF;
}
.section-home-5 .owl-theme .owl-nav .owl-prev {
	position: absolute;
	width: 50px;
	z-index: 20;
	margin: 0;
	top: auto;
	bottom: 366px;
	left: 0;
	text-align: center;
}
.section-home-5 .owl-theme .owl-nav .owl-next {
	position: absolute;
	width: 50px;
	z-index: 20;
	margin: 0;
	top: auto;
	bottom: 366px;
	right: 0;
	text-align: center;
}

.slider-food {
	-webkit-box-shadow: 0 1px 2px rgba(0,0,0,.15);
	box-shadow: 0 1px 2px rgba(0,0,0,.15);
	transition: box-shadow 200ms cubic-bezier(0.4, 0.0, 0.2, 1);
}
.slider-food:hover {
	box-shadow: 0 3px 8px 0 rgba(0,0,0,0.2),0 0 0 1px rgba(0,0,0,0.08);
	border: none;
}
.slider-food .owl-item {
	width: 100%;
	cursor: pointer;
}
.slider-food .item {
	padding-top: 50%;
	border: 5px solid #fff;
}
.slider-food h3 {
	opacity: 0; 
	visibility: hidden; 
	color: #fff;
	background: rgba(247, 202, 24, .75);
	padding: 20px;
    font-size: 26px;
    font-weight: 600;
    text-align: left;
  	text-shadow: 1px 1px 2px rgba(125, 125, 125, .5);
    -webkit-transition: opacity 1s, visibility 1s;
          	transition: opacity 1s, visibility 1s;
}
.slider-food .item:hover > h3 {
	opacity: 1;
	visibility: visible;
	-webkit-animation-name: fadeInUp;
	animation-name: fadeInUp;
	animation-duration: .6s;
	text-shadow: 1px 1px 2px rgba(125, 125, 125, .5);
	-webkit-transition: opacity 1s, visibility 1s;
          	transition: opacity 1s, visibility 1s;
}
.slider-food .owl-theme .owl-nav {
	color: #eee;
	text-align: center;
	-webkit-tap-highlight-color: transparent; 
}
.slider-food .owl-theme .owl-nav [class*='owl-']:hover {
	color: #FFF;
}
.slider-food .owl-theme .owl-nav .owl-prev {
	display: none !important;
}
.slider-food .owl-theme .owl-nav .owl-next {
	display: none !important;
}
.slider-food .owl-theme .owl-dots {
	display: none !important;
}
.slider-mini .owl-theme .owl-nav {
	color: #eee;
	text-align: center;
	-webkit-tap-highlight-color: transparent; 
}
.slider-mini .owl-theme .owl-nav [class*='owl-']:hover {
	color: #FFF;
}
.slider-mini .owl-theme .owl-nav .owl-prev {
	position: absolute;
	z-index: 20;
	margin: 0;
	top: auto;
	bottom: 40px;
	left: 0;
	margin-left: -40px;
}
.slider-mini .owl-theme .owl-nav .owl-next {
	position: absolute;
	z-index: 20;
	margin: 0;
	top: auto;
	bottom: 40px;
	right: 0;
	margin-right: -40px; 
}

/* = Default 
------------------------------------------------- */
.slider-default img {
	min-height: 400px;
	object-fit: cover;
}
.section-default {
	padding: 60px 0;
	background-color: #f0f0f0;
	margin-top: -25px;
}
.section-default h3 {
	color: #000;
	font-size: 22px;
	font-weight: 600;
	margin-bottom: 15px;
}

/* = Background Parallax
------------------------------------------------- */
.parallax {
    background-image: url("../img/system/bg_parallax_bottom_dark.jpg");
    min-height: 300px; 
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.section-home-1.parallax {
	background-image: url("../img/system/bg_parallax_bottom_dark.png");
    min-height: 300px; 
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.section-home-3.parallax {
	background-image: url("../img/system/bg_parallax_top.png");
    min-height: 300px; 
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.section-search-1.parallax {
    background-image: url("../img/system/bg_parallax_top.png"); 
    min-height: 100px; 
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.section-search-3.parallax {
    background-image: url("../img/system/bg_parallax_top.png"); 
    min-height: 100px; 
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.section-food-detail-1.parallax {
    background-image: url("../img/system/bg_parallax_top.png"); 
    min-height: 100px; 
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.section-food-detail-3.parallax {
    background-image: url("../img/system/bg_parallax_bottom_dark.png"); 
    min-height: 100px; 
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.section-promo-detail-1.parallax {
    background-image: url("../img/system/bg_parallax_top.png"); 
    min-height: 100px; 
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.section-promo-detail-3.parallax {
    background-image: url("../img/system/bg_parallax_bottom_dark.png"); 
    min-height: 100px; 
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.section-outlets-1.parallax {
	background-image: url("../img/system/bg_parallax_top.png"); 
    min-height: 100px; 
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.section-news-1.parallax {
	background-image: url("../img/system/bg_parallax_top.png"); 
    min-height: 100px; 
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.section-news-detail-1.parallax {
	background-image: url("../img/system/bg_parallax_top.png"); 
    min-height: 100px; 
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.section-food-1.parallax {
	background-image: url("../img/system/bg_parallax_top_light.png"); 
    min-height: 100px; 
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.section-food-2.parallax {
	background-image: url("../img/system/bg_parallax_bottom_dark.png"); 
    min-height: 100px; 
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.section-streetfood-1.parallax {
	background-image: url("../img/system/bg_parallax_bottom_right.png"); 
    min-height: 100px; 
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.section-streetfood-2.parallax {
	background-image: url("../img/system/bg_parallax_light_zigzag.png"); 
    min-height: 100px; 
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* = Image Effect
------------------------------------------------- */
.image-effect {
	margin-bottom: 20px;
}
.image-effect .image-item {
	position: relative;
	overflow: hidden;
	width: 100%;
}
.image-effect a {
	text-decoration: none;
}
.image-effect .image-item img {
	max-width: 100%;
	width: 100%;
	-moz-transition: all 0.3s;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}
.image-effect .image-item img:hover {
	-moz-transform: scale(1.1);
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}
.image-effect .image-item h4 {
	display: none;
}
.image-effect .image-item:hover > h4 {
	display: block;
	position: relative;
	margin-top: -61px;
	padding: 22px 16px;
	font-size: 16px;
	font-weight: 400;
	background: rgba(247, 202, 24, .9);
	-webkit-animation-name: fadeInLeft;
	animation-name: fadeInLeft;
	animation-duration: .5s;
	color: #fff;
}
.image-overlay a,
.image-zoom a,
.image-overlay .image-item::before,
.image-overlay .image-item::after,
.image-overlay .image-item figure::after,
.image-overlay .image-item img,
.image-zoom .image-item img,
.image-overlay .image-item h4 {
    -webkit-transition: .35s ease-in-out;
    transition: .35s ease-in-out
}

.image-overlay a {
    display: block;
    border: 1px solid #eaeaea;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}
.image-overlay .image-item {
    position: relative;
    overflow: hidden
}
.image-overlay .image-item::before,
.image-overlay .image-item::after {
    position: absolute;
    top: 15px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    z-index: 3;
    content: '';
    opacity: 0
}
.image-overlay .image-item::before {
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1)
}
.image-overlay .image-item::after {
    border-right: 1px solid #fff;
    border-left: 1px solid #fff;
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0)
}
.image-overlay a:hover .image-item::before,
.image-overlay a:hover .image-item::after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1)
}
.image-overlay .image-item figure::after {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    content: '';
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 255, 28, .6), rgba(247, 202, 24, .6));
    opacity: 0
}
.image-overlay a:hover .image-item figure::after {
    opacity: 1
}
.image-overlay .image-item img {
    width: 100%;
    -webkit-transform: scale(1);
    transform: scale(1);
}
.image-overlay a:hover .image-item img {
    /*-webkit-filter: blur(3px);*/
    /*filter: blur(3px);*/
    -webkit-transform: scale(1.2);
    transform: scale(1.2)
}
.image-overlay .image-item h4 {
    position: absolute;
    text-align: center;
    top: 45%;
    left: 5%;
    right: 5%;
    z-index: 4;
    color: #fff;
    font: italic 300 22px/1 'Open Sans', sans-serif;
    letter-spacing: 8px;
    opacity: 0;
}
.image-overlay a:hover .image-item h4 {
    text-align: center;
    letter-spacing: 2px;
    opacity: 1;
}
.image-zoom a {
    display: block;
    border: 1px solid #eaeaea;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}
.image-zoom .image-item {
    position: relative;
    overflow: hidden
}
.image-zoom .image-item img {
    width: 100%;
    -webkit-transform: scale(1);
    transform: scale(1);
}
.image-zoom a:hover .image-item img {
    cursor: default;
    -webkit-transform: scale(1.2);
    transform: scale(1.2)
}

/* = Twitter Typehead
------------------------------------------------- */
.twitter-typeahead {
  width: 100%;
  display: block !important;
}
.tt-menu {
  width: 100%;
  padding: 3px;
  margin-top: 11px;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-top: 0;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  -webkit-box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15);
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15);
}
.tt-suggestion {
  color: #626262;
  padding: 3px 7px 4px;
  padding-left: 26px;
  line-height: 24px;
}
.tt-suggestion:hover {
  cursor: pointer;
  background: #f0f0f0;
}
.tt-suggestion.tt-cursor {
  background: #f0f0f0;
}
.tt-suggestion p {
  margin: 0;
}

/* = Content
------------------------------------------------- */
.divider-head{
	height: 100px;  
	background-color: black;
}
.background-default .bg-img {
	width: 100%;
	height: 400px;
}
/* Home Page */
.section-home-1 {
	background-color: black;
	padding: 60px;
}
.section-home-1 h1 {
	color: #F7CA18;
	font-weight: 300;
	font-size: 26px;
	margin-bottom: 20px;
}
.section-home-1 p {
	margin-bottom: 50px;
}
.section-home-1 a {
	color: #fff;
	text-decoration: none;
	padding: 10px 20px;
	font-weight: 600;
	border: 2px solid #fff;
	border-radius: 3px;
	-webkit-transition: background-color .3s ease, opacity .3s ease;
	-moz-transition: background-color .3s ease, opacity .3s ease;
	-ms-transition: background-color .3s ease, opacity .3s ease;
	-o-transition: background-color .3s ease, opacity .3s ease;
	transition: background-color .3s ease, opacity .3s ease;
}
.section-home-1 a:hover {
	color: #000;
	background-color: #fff;
	border: 2px solid #fff;
}

.section-home-3 {
	padding: 30px 0 60px 0;
	background-color: #f0f0f0;
}
.section-home-3 .image-overlay {
	margin-top: 30px;
	margin-bottom: 20px;
}
.section-home-3 .button {
	text-decoration: none;
	font-weight: 700;
}

/* The Street Food Expert Page */
.section-streetfood-1 {
	padding: 60px 0;
}
.section-streetfood-1 h2 {
	color: #F7CA18;
	font-size: 22px;
	margin-bottom: 20px;
}
.section-streetfood-1 p {
	margin-bottom: 14px;
}
.section-streetfood-1 li {
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}
.section-streetfood-1 li:before {
   	content: "\f111";
    font-family: FontAwesome;
    color: #F7CA18; 
    padding-right: 10px;
}
.section-streetfood-2 {
	background-color: #F7CA18;
	padding: 60px 0 120px 0;
}
.section-streetfood-2 h3 {
	font-size: 70px;
	font-weight: 400;
	padding: 0 40px;
	line-height: 1.2;
	margin-bottom: 20px;
}
.section-streetfood-2 p {
	color: #000;
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 14px;
}
.section-streetfood-2 .button {
	color: #fff;
	position: relative;
	top: 30px;
	text-decoration: none;
	padding: 10px 20px;
	font-weight: 600;
	border: 2px solid #fff;
	border-radius: 3px;
	-webkit-transition: background-color .3s ease, opacity .3s ease;
	-moz-transition: background-color .3s ease, opacity .3s ease;
	-ms-transition: background-color .3s ease, opacity .3s ease;
	-o-transition: background-color .3s ease, opacity .3s ease;
	transition: background-color .3s ease, opacity .3s ease; 
}
.section-streetfood-2 .button:hover {
	color: #000;
	background-color: #fff;
	border: 2px solid #fff;
}

.section-streetfood-3 {
	background-color: #000;
	padding: 60px 0 100px 0;
}
.section-streetfood-3 h5 {
	font-size: 32px;
	font-weight: 400;
	padding: 0 40px;
	line-height: 1.2;
	margin-bottom: 20px;
}
.section-streetfood-3 p {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 14px;
}
.section-streetfood-3 .button {
	color: #fff;
	position: relative;
	top: 30px;
	text-decoration: none;
	padding: 10px 20px;
	font-weight: 600;
	border: 2px solid #fff;
	border-radius: 3px;
	-webkit-transition: background-color .3s ease, opacity .3s ease;
	-moz-transition: background-color .3s ease, opacity .3s ease;
	-ms-transition: background-color .3s ease, opacity .3s ease;
	-o-transition: background-color .3s ease, opacity .3s ease;
	transition: background-color .3s ease, opacity .3s ease; 
}
.section-streetfood-3 .button:hover {
	color: #000;
	background-color: #fff;
	border: 2px solid #fff;
}
.section-streetfood-video {
	padding: 60px 0;
}
.section-streetfood-video .amazingslider-nav-1 {
	left: 100% !important;
	top: 0px !important;
	margin-top: 0px !important;
}
.section-streetfood-video .amazingslider-nav-container-1 {
	margin-left: 123px !important;
	margin-right: 123px !important;
}
.section-streetfood-video .amazingslider-car-left-arrow-1 {
	left: 60px !important;
}
.section-streetfood-video .amazingslider-car-right-arrow-1 {
	right: 60px !important;
}

.section-streetfood-video .amazingslider-text-1 {
	display: block; 
	position: relative; 
	height: auto; 
	width: 90%; 
	left: 110%;
	margin-top: 90px;
}
.section-streetfood-video .amazingslider-title-1,
.section-streetfood-video .amazingslider-description-1 {
	color: #333;
}
.section-streetfood-video .amazingslider-box-1 {
	margin-left: 0 !important;
	border: none !important;
}


/* Food Page */
.section-food-1 {
	background-color: #F7CA18;
	padding: 30px 0 30px 0;
	margin-top: -30px;
}
.section-food-1 h2 {
	color: #000;
	font-size: 20px;
	margin-bottom: 20px;
}
.section-food-1 input {
	width: 100%;
	padding: 10px 16px;
	color: #333 !important;
	border: 2px solid #2f151c !important;
	border-radius: 4px;
	background-color: #fff;
	outline: none;
}
.section-food-1 input::-webkit-input-placeholder {
	color: #333;
}
.section-food-1 input::-moz-placeholder {
	color: #333;
}
.section-food-1 input:-moz-placeholder {
	color: #333;
}
.section-food-1 input:-ms-input-placeholder {
	color: #333;
}
.section-food-1 #btn-food {
	border-radius: 3px;
	background-color: transparent !important;
	width: 100%;
	padding: 10px;
	border: 2px solid #333;
	color: #333;
	text-transform: uppercase;
	font-weight: 600;
	outline: none;
	-webkit-transition: background-color .3s ease, opacity .3s ease;
	-moz-transition: background-color .3s ease, opacity .3s ease;
	-ms-transition: background-color .3s ease, opacity .3s ease;
	-o-transition: background-color .3s ease, opacity .3s ease;
	transition: background-color .3s ease, opacity .3s ease;
}
.section-food-1 #btn-food:hover {
	background-color: #333 !important;
	color: #fff;
}
.section-food-1 #btn-food span {
	cursor: pointer;
	display: inline-block;
	position: relative;
	transition: .3s;
}
.section-food-1 #btn-food i {
	content: '';
	position: absolute;
	opacity: 0;
	top: 0;
	right: 6px;
	transition: 0.2s;
	color: #000;
	background-color: rgba(255,255,255,.25);
	padding: 12px;
	border-radius: 3px;
	margin-right: 3px;
}
.section-food-1 #btn-food:hover span {
	padding-right: 25px;
	color: #fff;
}
.section-food-1 #btn-food:hover i {
	opacity: 1;
	right: 12px;
}
.section-food-1 .field-food {
	margin-bottom: 10px;
}
.section-food-1 .surprise a:hover {
	color: #fff;
}
.section-food-2 {
	background-color: #fff;
	padding: 60px 0;
}
.section-food-2 p {
	color: #000;
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 30px;
}
.section-food-2 a img {
	height: 40px;
	width: 40px;
}
.section-food-3 {
	padding: 60px 0;
	background-color: #f0f0f0;
}
.section-food-3 h3 {
	color: #000;
	font-size: 22px;
	font-weight: 600;
	margin-bottom: 20px;
}

/* Food Detail Page */
.section-food-detail-1 {
	padding: 100px 0 60px 0;
}
.section-food-detail-1 h2 {
	color: #F7CA18;
	font-size: 22px;
	margin-bottom: 20px;
}
.section-food-detail-1 p {
	margin-bottom: 14px;
}
.section-food-detail-1 li {
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}
.section-food-detail-1 li:before {
   	content: "\f111";
    font-family: FontAwesome;
    color: #F7CA18; 
    padding-right: 10px;
}
.section-food-detail-1 .food-alone {
	-webkit-box-shadow: 0 1px 2px rgba(0,0,0,.15);
	box-shadow: 0 1px 2px rgba(0,0,0,.15);
	transition: box-shadow 200ms cubic-bezier(0.4, 0.0, 0.2, 1);
	border: 5px solid #fff !important;
}
.section-food-detail-1 .food-alone:hover {
	box-shadow: 0 3px 8px 0 rgba(0,0,0,0.2),0 0 0 1px rgba(0,0,0,0.08);
}
.section-food-detail-1 .food-alone img {
	width: 100%;
}
.section-food-detail-2 {
	padding: 30px 0;
}
.section-food-detail-2 .detail {
	min-height: 180px;
}
.section-food-detail-2 h3 {
	font-weight: 600;
	font-size: 16px;
	margin-bottom: 20px;
}
.section-food-detail-2 h4 {
	font-weight: 600;
	font-size: 20px;
	margin-bottom: 10px;
}
.section-food-detail-2 p {
	font-weight: 700;
	margin-bottom: 10px;
}
.section-food-detail-2 a {
	font-weight: 700;
	color: #F7CA18;
}
.section-food-detail-3 {
	background-color: #f0f0f0;
	padding: 70px 0;
	width: 100%;
	text-align: center;
}
.section-food-detail-3 a {
	margin: 0 auto;
	padding: 10px 30px;
	border-radius: 3px;
	border: 2px solid #333;
	color: #333;
	background-color: #fff;
	transition: background .3s;
}
.section-food-detail-3 a:hover {
	text-decoration: none;
	background-color: #F7CA18;
	transition: background .3s;
}
.section-food-detail-4 {
	background-color: #F7CA18;
	padding: 60px 0;
	width: 100%;
	text-align: center;
}
.section-food-detail-4 p {
	font-weight: 700;
}
.section-food-detail-4 .slider-mini {
	margin-top: 20px;
}
.section-food-detail-4 .item img {
	border: 4px solid #fff;
}

/* Outlets Page */
.section-back-default {
	background-color: #F7CA18;
	padding: 70px 0;
	width: 100%;
	text-align: center;
	margin-top: -35px;
}
.section-back-default a {
	margin: 0 auto;
	padding: 10px 30px;
	border-radius: 3px;
	border: 2px solid #333;
	color: #333;
	background-color: #fff;
	transition: background .3s;
}
.section-back-default a:hover {
	text-decoration: none;
	background-color: #F7CA18;
	transition: background .3s;
}
.section-outlets-1 {
	padding: 60px 0 30px 0;
}
.section-outlets-1 h2 {
	color: #F7CA18;
	font-size: 22px;
	margin-bottom: 30px;
}
.section-outlets-1 h2.hidden {
	display: none;
}
.section-outlets-1 h3 {
	font-size: 20px;
	font-weight: 400;
	margin-bottom: 10px;
}
.section-outlets-1 .content {
	margin-bottom: 14px;
}
.section-outlets-1 .address {
	font-weight: 600;
	margin-bottom: 10px;
}
.section-outlets-1 .contact {
	font-weight: 600;
}
.section-outlets-1 .contact span {
	display: inline-block;
	font-weight: 700;
	width: 80px;
}
.section-outlets-1 .image-item {
	padding-bottom: 30px;
}
.section-outlets-1 iframe {
	-webkit-box-shadow: 0 1px 2px rgba(0,0,0,.15);
	box-shadow: 0 1px 2px rgba(0,0,0,.15);
	transition: box-shadow 200ms cubic-bezier(0.4, 0.0, 0.2, 1);
	border: 5px solid #fff !important;
}
.section-outlets-1 iframe:hover {
	box-shadow: 0 3px 8px 0 rgba(0,0,0,0.2),0 0 0 1px rgba(0,0,0,0.08);
}
.section-outlets-1 #map {
	-webkit-box-shadow: 0 1px 2px rgba(0,0,0,.15);
	box-shadow: 0 1px 2px rgba(0,0,0,.15);
	transition: box-shadow 200ms cubic-bezier(0.4, 0.0, 0.2, 1);
	border: 5px solid #fff !important;
}
.section-outlets-1 #map:hover {
	box-shadow: 0 3px 8px 0 rgba(0,0,0,0.2),0 0 0 1px rgba(0,0,0,0.08);
}
.section-outlets-2 {
	padding: 60px 0 0 0;
	background-color: #f0f0f0;
}
.section-outlets-2 h4 {
	color: #F7CA18;
	font-size: 22px;
	font-weight: 600;
	margin-bottom: 20px;
}
.section-outlets-2 h5 {
	color: #000;
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 15px;
}
.section-outlets-2 h6 {
	color: #000;
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 10px;
}
.section-outlets-2 .tenant {
	min-height: 200px;
}
.section-outlets-2 .tenant a {
	text-decoration: none;
}
.section-outlets-2 h6:hover {
	color: #F7CA18;
}
.section-outlets-2 .address {
	color: #000;
	font-weight: 400;
	margin-bottom: 10px;
}
.section-outlets-2 .contact {
	color: #000;
	font-weight: 400;
}
.section-outlets-2 .contact span {
	display: inline-block;
	font-weight: 600;
	width: 80px;
}
.section-outlets-2 .contact span:last-child {
	margin-bottom: 50px;
}

.section-outlets-detail-2 {
	padding: 60px 0;
	background-color: #f0f0f0;
}
.section-outlets-detail-2 h5 {
	color: #000;
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 15px;
}
.section-outlets-detail-2 li {
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}
.section-outlets-detail-2 li:before {
   	content: "\f111";
    font-family: FontAwesome;
    color: #F7CA18; 
    padding-right: 10px;
}

/* News Page */
.section-news-1 {
	padding: 60px 0 40px 0;
	background-color: #f0f0f0;
	margin-top: -35px;
}
.section-news-1 .news-item {
	padding-bottom: 40px;
}
.section-news-1 a {
	text-decoration: none;
}
.section-news-1 h1 {
	color: #333;
	font-size: 22px;
	margin-bottom: 20px;
	text-align: center;
	padding-bottom: 20px;
	text-transform: capitalize;
}
.section-news-1 h2 {
	color: #F7CA18;
	font-size: 22px;
	margin-bottom: 20px;
}
.section-news-1 h3 {
	font-size: 20px;
	font-weight: 400;
	margin-bottom: 10px;
}
.section-news-1 span {
	text-transform: capitalize;
	border-radius: 25px;
	background: #ddd;
	padding: 5px 13px;
	font-size: 12px;
	font-weight: 600;
	color: #fff;
}
.section-news-1 span i {
	padding-right: 10px;
}
.section-news-1 .btn-share:hover {
	background: #ff5959;
	color: #fff !important;
}
.section-news-1 .content {
	margin-top: 10px;
	margin-bottom: 14px;
}
.section-news-1 .button {
	color: #F7CA18;
	font-weight: 700;
	text-decoration: none;
}
.section-news-1 .image-item img {
	border: 5px solid #fff;
	width: 100%;
}
.section-news-1 .pagination-centered {
	text-align: center;
}
.section-news-1 .pagination-centered .pagination > li > a, .pagination > li > span {
	float: none !important;
	border: none;
	border-radius: 4px;
	margin-left: 0;
}
.section-news-1 .pagination-centered .pagination > li > a {
	color: #333;
}
.section-news-1 .pagination-centered .pagination > li > a:hover {
	background: #ddd;
}
.section-news-1 .pagination-centered .pagination > .active > span,
.section-news-1 .pagination-centered .pagination > .active > span:hover {
	background: #F7CA18;
}
.featherlight a {
	text-decoration: none;
}
.featherlight .social-facebook {
	background: #3B5998;
	padding: 4px 10px;
	border-radius: 2px;
	font-weight: 600;
	font-size: 13px;
	color: #fff;
	margin-right: 10px;
}
.featherlight .social-facebook i {
	padding-right: 4px;
}
.featherlight .social-twitter {
	background: #00ACEE;
	padding: 4px 10px;
	border-radius: 2px;
	font-weight: 600;
	font-size: 13px;
	color: #fff;
}
.featherlight .social-twitter i {
	padding-right: 4px;
}

.section-news-detail-1 {
	padding: 100px 0 70px 0;
}
.section-news-detail-1 img {
	border: 5px solid #fff;
	-webkit-box-shadow: 0 1px 2px rgba(0,0,0,.15);
	box-shadow: 0 1px 2px rgba(0,0,0,.15);
	transition: box-shadow 200ms cubic-bezier(0.4, 0.0, 0.2, 1);
}
.section-news-detail-1 img:hover {
	box-shadow: 0 3px 8px 0 rgba(0,0,0,0.2),0 0 0 1px rgba(0,0,0,0.08);
}
.section-news-detail-1 h2 {
	color: #000;
	font-size: 20px;
	font-weight: 600;
	margin-top: 15px;
	margin-bottom: 15px;
	text-transform: uppercase;
}
.section-news-detail-1 a {
	font-weight: 700;
	color: #F7CA18;
}
.section-news-detail-1 .news-share {
	margin-bottom: 5px;
}
.section-news-detail-1 .news-share li {
	overflow: hidden;
	background: #eee;
	list-style: none;
	white-space:nowrap;
	margin-right: 10px;
	padding: 10px 9px;
	border-radius: 25px;
	display: inline-block;
	cursor: pointer;
	transition: background .5s ease-out .1s, opacity .4s ease-out .1s, color;
}
.section-news-detail-1 .news-share .social-facebook {
	color: #3B5998;
}
.section-news-detail-1 .news-share .social-facebook:hover {
	color: #fff;
	background: #3B5998;
}
.section-news-detail-1 .news-share .social-twitter {
	color: #00ACEE;
}
.section-news-detail-1 .news-share .social-twitter:hover {
	color: #fff;
	background: #00ACEE;
}
.section-news-detail-1 .news-share a {
    text-decoration: none;
}
.section-news-detail-1 .news-share li span {
    opacity: 0;
    color: #fff;
    max-width: 0;
    display: inline-block;
    text-decoration: none;
    transition: max-width .5s ease-out .1s, opacity .4s ease-out .1s;
}
.section-news-detail-1 .news-share li span i {
    float:right;
    display: block;
    font:13px sans-serif;
    height: 14px;
    padding: 0 10px 0 5px;
}
.section-news-detail-1 .news-share li b {
    line-height:1;
    display: inline-block;
    padding: 0 3px 0 6px;
}
.section-news-detail-1 .news-share li b i {
	width: 12px;
	text-align: center;
	transition: color .4s ease-out .1s;
}
.section-news-detail-1 .news-share li:hover span {
    opacity: 1;
    max-width: 250px;
    transition: max-width 1s ease-out .1s, opacity .4s ease-out .1s;
}

/* Eat & Eat Card Page */
.background-card .bg-img {
	width: 100%;
	padding: 50px 0;
}
.background-card h1 {
	height: 300px;
	width: 768px;
	color: #fff;
	font-size: 56px;
	font-weight: 400;
	text-align: center;
	text-shadow: 1px 1px rgba(0,0,0,.1);
    margin: 0 auto;
    padding: 0 16px;
    position: relative;
}
.slider-card img {
	min-height: 450px;
	object-fit: cover;
}
.section-card-1 {
	background-color: #F7CA18;
}
.section-card-1 .card-right {
	position: relative;
	top: -130px;
	right: -135px;
	width: 454px;
	margin: auto;
	border-radius: 20px;
	-webkit-transform: rotate(-17.5deg);
	-moz-transform: rotate(-17.5deg);
	-ms-transform: rotate(-17.5deg);  
	transform: rotate(-17.5deg);
}
.section-card-1 .card-left {
	position: relative;
	top: -420px;
	left: -135px;
	width: 454px;
	margin: auto;
	border-radius: 20px;
	-webkit-transform: rotate(-17.5deg);
	-moz-transform: rotate(-17.5deg);
	-ms-transform: rotate(-17.5deg);  
	transform: rotate(-17.5deg);
}
.section-card-1 .shadow:after {
	z-index: -1;
	position: absolute;
	content: "";
	bottom: 15px;
	right: 20px;
	left: auto;
	width: 60%;
	top: 80%;
	max-width:300px;
	box-shadow: 0 15px 20px rgba(0,0,0,.6);
	transform: rotate(5deg);
}
.section-card-1 img {
	position: relative;
}
.section-card-1 h2 {
	position: relative;
	margin-top: -400px;
	padding: 90px 0 60px 0;
	font-weight: 600;
	line-height: 16px;
}
.section-card-2 {
	padding: 60px 0;
	background-color: #f6f6f6;
}
.section-card-2 h1 {
	color: #707070;
	font-size: 16px;
	font-weight: 600;
	line-height: 20px;
}
.section-card-2 ol li {
    position: relative;
    list-style: decimal;
    left: 40px;
    margin-right: 40px;
}

/* Become a Tenant Page */
.background-tenant .bg-img {
	width: 100%;
	padding: 100px 0;
}
.background-tenant h1 {
	height: 100px;
	width: 100%;
	color: #fff;
	font-size: 56px;
	font-weight: 400;
	text-align: center;
	text-shadow: 1px 1px rgba(0,0,0,.1);
    margin: 0 auto;
    padding: 0 16px;
    position: relative;
}
.background-tenant .tenant-desc {
	height: 100px;
	text-align: center;
	font-size: 16px;
	color: #fff;
	text-transform: uppercase;
	text-shadow: 1px 1px rgba(0,0,0,.1);
	animation-delay: .4s;
}
.section-tenant-1 {
	background-color: #f0f0f0;
	padding: 30px 0;
} 

/*Search Page*/
.section-search-1 {
	padding: 130px 0 60px 0;
}
.section-search-1 h5 {
	color: #000;
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 25px;
	text-transform: uppercase;
}
.section-search-1 li {
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}
.section-search-1 li:before {
   	content: "\f111";
    font-family: FontAwesome;
    color: #F7CA18; 
    padding-right: 10px;
}
.section-search-2 {
	padding: 60px 0;
	background-color: #f0f0f0;
}
.section-search-2 h5 {
	color: #000;
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 25px;
	text-transform: uppercase;
}
.section-search-2 li {
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}
.section-search-2 li:before {
   	content: "\f111";
    font-family: FontAwesome;
    color: #F7CA18; 
    padding-right: 10px;
}
.section-search-3 {
	padding: 60px 0;
	width: 100%;
	text-align: center;
}
.section-search-3 a {
	margin: 0 auto;
	padding: 10px 30px;
	border-radius: 3px;
	border: 2px solid #333;
	color: #333;
	background-color: #fff;
	transition: background .3s;
}
.section-search-3 a:hover {
	text-decoration: none;
	background-color: #F7CA18;
	transition: background .3s;
}

/* Promotion Detail Page*/
.section-promo-detail-1 {
	padding: 100px 0 20px 0;
}
.section-promo-detail-1 img {
	border: 5px solid #fff;
	width: 100%;
	-webkit-box-shadow: 0 1px 2px rgba(0,0,0,.15);
	box-shadow: 0 1px 2px rgba(0,0,0,.15);
	transition: box-shadow 200ms cubic-bezier(0.4, 0.0, 0.2, 1);
}
.section-promo-detail-1 img:hover {
	box-shadow: 0 3px 8px 0 rgba(0,0,0,0.2),0 0 0 1px rgba(0,0,0,0.08);
}
.section-promo-detail-1 h2 {
	color: #000;
	font-size: 20px;
	font-weight: 600;
	margin-top: 15px;
	margin-bottom: 15px;
	text-transform: uppercase;
}
.section-promo-detail-1 a {
	font-weight: 700;
	color: #F7CA18;
}
.section-promo-detail-1 .news-share {
	margin-bottom: 10px;
}
.section-promo-detail-1 .news-share li {
	overflow: hidden;
	background: #eee;
	list-style: none;
	white-space:nowrap;
	margin-right: 10px;
	padding: 10px 9px;
	border-radius: 25px;
	display: inline-block;
	cursor: pointer;
	transition: background .5s ease-out .1s, opacity .4s ease-out .1s, color;
}
.section-promo-detail-1 .news-share .social-facebook {
	color: #3B5998;
}
.section-promo-detail-1 .news-share .social-facebook:hover {
	color: #fff;
	background: #3B5998;
}
.section-promo-detail-1 .news-share .social-twitter {
	color: #00ACEE;
}
.section-promo-detail-1 .news-share .social-twitter:hover {
	color: #fff;
	background: #00ACEE;
}
.section-promo-detail-1 .news-share a {
    text-decoration: none;
}
.section-promo-detail-1 .news-share li span {
    opacity: 0;
    color: #fff;
    max-width: 0;
    display: inline-block;
    text-decoration: none;
    transition: max-width .5s ease-out .1s, opacity .4s ease-out .1s;
}
.section-promo-detail-1 .news-share li span i {
    float:right;
    display: block;
    font:13px sans-serif;
    height: 13px;
    padding: 0 10px 0 5px;
}
.section-promo-detail-1 .news-share li b {
    line-height:1;
    display: inline-block;
    padding: 0 3px 0 6px;
}
.section-promo-detail-1 .news-share li b i {
	width: 12px;
	text-align: center;
	transition: color .4s ease-out .1s;
}
.section-promo-detail-1 .news-share li:hover span {
    opacity: 1;
    max-width: 250px;
    transition: max-width 1s ease-out .1s, opacity .4s ease-out .1s;
}
.section-promo-detail-1 ol li {
	position: relative;
	list-style: decimal;
	left: 40px;
	margin-right: 40px;
}
.section-promo-detail-2 {
	padding: 30px 0;
}
.section-promo-detail-2 .detail {
	min-height: 180px;
}
.section-promo-detail-2 h3 {
	font-weight: 600;
	font-size: 16px;
	margin-bottom: 20px;
}
.section-promo-detail-2 h4 {
	font-weight: 600;
	font-size: 20px;
	margin-bottom: 10px;
}
.section-promo-detail-2 p {
	font-weight: 700;
	margin-bottom: 10px;
}
.section-promo-detail-2 a {
	font-weight: 700;
	color: #F7CA18;
}
.section-promo-detail-3 {
	background-color: #f0f0f0;
	padding: 60px 0;
	width: 100%;
	text-align: center;
}
.section-promo-detail-3 p {
	margin-bottom: 30px;
	font-weight: 700;
}
.section-promo-detail-3 a {
	margin: 0 auto;
	padding: 10px 30px;
	border-radius: 3px;
	border: 2px solid #333;
	color: #333;
	background-color: #fff;
	transition: background .3s;
}
.section-promo-detail-3 a:hover {
	text-decoration: none;
	background-color: #F7CA18;
	transition: background .3s;
}
.section-promo-detail-4 {
	background-color: #F7CA18;
	padding: 60px 0;
	width: 100%;
	text-align: center;
}
.section-promo-detail-4 a {
	margin: 0 auto;
	padding: 10px 30px;
	border-radius: 3px;
	border: 2px solid #333;
	color: #333;
	background-color: #fff;
	transition: background .3s;
}
.section-promo-detail-4 a:hover {
	text-decoration: none;
	background-color: #F7CA18;
	transition: background .3s;
}

/* Masonry */
.masonry .masonry-item {
    display: inline-block;
    margin: 0 0 20px 0;
    width: 100%;
    padding: 0 5px;
}
.masonry .masonry-image iframe {
	margin-bottom: -5px;
}
.masonry .masonry-desc {
	background: #fff;
	padding: 16px 20px;
}
.masonry .masonry-desc h3 a {
	color: #F7CA18;
	text-decoration: none;
}
.masonry .masonry-desc p {
	text-align: justify;
	margin-bottom: 10px;
}
.masonry .masonry-desc .button {
	font-weight: 600;
}
@media only screen and (min-width: 400px) {
    .masonry {
        -moz-column-count: 2;
        -webkit-column-count: 2;
        column-count: 2;
    }
}

@media only screen and (min-width: 768px) {
    .masonry {
        -moz-column-count: 3;
        -webkit-column-count: 3;
        column-count: 3;
    }
}

@media only screen and (min-width: 961px) {
    .masonry {
        -moz-column-count: 4;
        -webkit-column-count: 4;
        column-count: 4;
    }
}

/* Floating Input Label */
.section-tenant-1 form {
	font-size: 14px;
}
.section-tenant-1 form h2 {
	padding-bottom: 20px;
	font-weight: 600;
	color: #58666e;
}
.section-tenant-1 form .field-1 {
	background-color: #fff;
	padding: 20px 24px;
	margin-bottom: 30px;
	-webkit-box-shadow: 0 1px 2px rgba(0,0,0,.15);
	box-shadow: 0 1px 2px rgba(0,0,0,.15);
}
.section-tenant-1 form .field-2 {
	background-color: #fff;
	padding: 20px 24px;
	-webkit-box-shadow: 0 1px 2px rgba(0,0,0,.15);
	box-shadow: 0 1px 2px rgba(0,0,0,.15);
}
.section-tenant-1 .dashed {
	border-bottom: 1px dashed #ededed;
	margin-bottom: 15px;
}
.section-tenant-1 .btn-submit {
	border: 2px solid #F7CA18;
	background-color: #F7CA18;
	padding: 10px 0;
	border-radius: 2px;
	color: #fff;
	font-weight: 600;
}
.float-label .control {
	float: left;
	position: relative;
	width: 100%;
	border-bottom: 1px solid rgba(160,160,160,.3);
	padding-top: 23px;
	padding-bottom: 10px;
	margin-bottom: 10px;
}
.float-label input, .float-label textarea {
    display: block;
    background-color: transparent;
    box-shadow: none;
    width: 100%;
    border: 0;
    outline: 0;
    resize: none;
    overflow:hidden;
}
.float-label input + label, .float-label textarea + label {
    position: absolute;
    top: 10px;
    transition: top 0.7s ease, opacity 0.7s ease;
    opacity: 0;
    font-size: 11px;
    font-weight: 600;
    color: #939393;
    -webkit-transition: color .2s ease, opacity .3s ease;
	-moz-transition: color .2s ease, opacity .3s ease;
	-ms-transition: color .2s ease, opacity .3s ease;
	-o-transition: color .2s ease, opacity .3s ease;
	transition: color .2s ease, opacity .3s ease;
}
.float-label input:focus + label, .float-label textarea:focus + label {
	color: #2196F3;
}
.float-label input:valid + label, .float-label textarea:valid + label {
    opacity: 1;
    top: 3px;
}
.float-label input ~ span, .float-label textarea ~ span {
	display: block;
	width: 0;
	height: 2px;
	background: #2196F3;
	position: absolute;
	bottom: 0;
	left: 0;
	-webkit-transition: all 0.125s ease;
	transition: all 0.125s ease;
}
.float-label input:focus ~ span, .float-label textarea:focus ~ span {
	width: 100%;
	-webkit-transition: all 0.075s ease;
	transition: all 0.075s ease;
}
.section-tenant-2 {
	background-color: #F7CA18;
	text-align: center;
	padding: 60px 0;
}
.section-tenant-2 p {
	font-style: italic;
	font-size: 16px;
}
.section-tenant-2 .quote-left {
	font-size: 24px;
	padding-right: 5px;
	font-weight: 600;
}
.section-tenant-2 .quote-right {
	font-size: 24px;
	padding-left: 5px;
	font-weight: 600;
}
.section-tenant-2 .owner {
	font-weight: 700;
	padding-left: 5px;
	font-style: normal;
}
.section-tenant-3 {
	background-color: #F7CA18;
	text-align: center;
	padding: 70px 0;
}
.section-tenant-3 h2 {
	font-size: 18px;
	font-weight: 600;
}
.section-complete {
	background-color: #F7CA18;
	text-align: center;
	padding: 180px 0;
}
.section-complete h1 {
	font-size: 66px;
	font-weight: 400;
	margin-bottom: 20px;
	color: #fff;
	-webkit-animation-name: fadeInDown;
	animation-name: fadeInDown;
	animation-duration: 1s;
}
.section-complete h2 {
	opacity: 0;
	font-size: 20px;
	font-weight: 400;
	margin-bottom: 20px;
	-webkit-animation: 1s ease 0s normal forwards 1 fadeIUp;
    animation: 1s ease 0s normal forwards 1 fadeInUp;
    animation-delay: .4s;
}
.section-complete a {
	opacity: 0;
	-webkit-animation: 1s ease 0s normal forwards 1 fadeIn;
    animation: 1s ease 0s normal forwards 1 fadeIn;
    animation-delay: 1s;
    transition: color .3s ease-in;
}
.section-complete a:hover {
	color: #fff;
	transition: color .3s ease-out;
}
.section-complete a i {
	transition: margin .3s ease-in;
}
.section-complete a:hover i {
	margin-right: 10px;
	transition: margin .3s ease-out;
}

.section-error {
	background-color: #F7CA18;
	text-align: center;
	padding: 110px 0 170px 0;
}
.section-error h1 {
	font-size: 175px;
	font-weight: 400;
	margin-bottom: 20px;
	color: #fff;
	-webkit-animation-name: fadeInDown;
	animation-name: fadeInDown;
	animation-duration: 1s;
}
.section-error h2 {
	opacity: 0;
	font-size: 20px;
	font-weight: 400;
	margin-bottom: 25px;
	-webkit-animation: 1s ease 0s normal forwards 1 fadeIUp;
    animation: 1s ease 0s normal forwards 1 fadeInUp;
    animation-delay: .4s;
}
.section-error a {
	opacity: 0;
	-webkit-animation: 1s ease 0s normal forwards 1 fadeInRight;
    animation: 1s ease 0s normal forwards 1 fadeInRight;
    animation-delay: 1s;
    transition: color .3s ease-in;
}
.section-error a:hover {
	color: #fff;
	transition: color .3s ease-out;
}
.section-error a i {
	transition: margin .3s ease-in;
}
.section-error a:hover i {
	margin-right: 10px;
	transition: margin .3s ease-out;
}

/* = Masonry Grid
------------------------------------------------- */
.masonry {
	max-width: 100%;
	list-style: none;
	padding: 0;
}
.masonry li {
	display: block;
	float: left;
	padding: 0 7px;
	width: 25%;
	opacity: 0;
}
.masonry li.shown,
.no-js .masonry li,
.no-cssanimations .masonry li {
	opacity: 1;
}
.masonry li a,
.masonry li img {
	outline: none;
	border: none;
	display: block;
	max-width: 100%;
	width: 100%;
}
.masonry.moveup li.animate {
	-webkit-transform: translateY(200px);
	transform: translateY(200px);
	-webkit-animation: moveUp 0.65s ease forwards;
	animation: moveUp 0.65s ease forwards;
}
@-webkit-keyframes moveUp {
	0% { }
	100% { -webkit-transform: translateY(0); opacity: 1; }
}
@keyframes moveUp {
	0% { }
	100% { -webkit-transform: translateY(0); transform: translateY(0); opacity: 1; }
}

/* = Grid Filter
------------------------------------------------- */
.filter-content {
	clear: both;
}
.portfolio-filter {
	position: relative;
	margin: 0 0 20px 0;
	list-style: none;
	float: left;
}
.portfolio-filter li {
	float: left;
	position: relative;
}
.portfolio-filter li a {
	display: block;
	position: relative;
	padding: 12px 0;
	font-size: 13px;
	font-weight: 700;
	line-height: 15px;
	color: #F7CA18;
}
.portfolio-filter li a:hover { color: #333; }
.portfolio-filter li.activeFilter a {
	color: #FFF !important;
	background-color: #F7CA18;
	margin: -1px 0;
	padding: 13px 18px;
	font-weight: bold;
}

.portfolio-filter.style-4 {
	border: none;
	border-radius: 0;
}

.portfolio-filter.style-4 li { margin-bottom: 10px; }

.portfolio-filter.style-4 li a {
	padding-top: 9px;
	padding-bottom: 9px;
	font-size: 14px;
	line-height: 16px;
	border: none;
}


.portfolio-filter.style-4 li:not(:first-child) { margin-left: 30px; }
.portfolio-filter.style-4 li a {
	padding: 13px 0;
	font-size: 15px;
	border-radius: 0;
}
.portfolio-filter.style-4 li a {
	text-decoration: none;
}
.portfolio-filter.style-4 li a:after {
	content: '';
	position: absolute;
	top: auto;
	bottom: 0;
	left: 50%;
	width: 0;
	height: 2px;
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.portfolio-filter.style-4 li.activeFilter a {
	color: #444 !important;
	background-color: transparent;
	margin: 0;
}
.portfolio-filter.style-4 li.activeFilter a:after {
	width: 100%;
	left: 0%;
	background-color: #F7CA18;
}



.filter-item {
  position: relative;
  float: left;
  width: 100%;
  margin-bottom: 20px;
}
.filter-item h4 {
  font-size: 52px;
  font-weight: 600;
  color: #F7CA18;
}
.filter-item .food-item {
  margin-bottom: 5px;
}
.filter-item .food-item a {
  text-transform: capitalize;
}


/* = Footbar
------------------------------------------------- */
.footbar {
	padding: 60px 0;
}
.footbar .social {
	font-weight: 600;
	margin-bottom: 30px;
}
.footbar .social p {
	margin-bottom: 8px;
}
.footbar .social .social-facebook a:hover {
	color: #3B5998;
}
.footbar .social .social-instagram a:hover {
	color: #517fa4;
}
.footbar .social .social-twitter a:hover {
	color: #00ACEE;
}
.footbar .social a {
	text-decoration: none;
	margin-bottom: 10px;
}
.footbar .social a i {
	width: 25px;
}
.footbar h1 {
	color: 	#F7CA18;
	font-size: 30px;
	font-weight: 600;
	margin-bottom: 10px;
}
.footbar .address {
	font-weight: 600;
	margin-bottom: 30px;
}
.footbar .contact {
	font-weight: 600;
}
.footbar .contact span {
	display: inline-block;
	width: 50px;
}
.testi-carousel.owl-carousel, 
.testi-carousel .owl-stage-outer, 
.testi-carousel .owl-stage, 
.testi-carousel .owl-item, 
.testi-carousel .caption {
	min-height: 1px; 
	width: 100%;
}
.testi-carousel h4 {
	font-size: 14px;
	font-weight: 600;
	font-style: italic;
	line-height: 20px;
	padding: 16px 46px;
	color: #fff;
	background-color: rgba(247, 202, 24, .90);
	background-image: url('../img/system/quote.png');
	background-repeat: no-repeat;
	border-radius: 8px;
	width: 96%;
	margin: 0 auto;
}
.testi-carousel .user {
	width: 60px;
	margin: 0 auto;
	margin-top: 16px;
}
.testi-carousel .user img {
	border-radius: 50%;
}
.testi-carousel .bubble {
	width: 56px;
	margin: 0 auto;
}
.testi-carousel p {
	font-size: 16px;
	font-weight: 600;
	color: #F7CA18;
	margin-top: 10px;
}
.testi-carousel span {
	color: #666;
}
.copyright {
	height: 60px;
	background-color: #f6f6f6;
	border-top: 1px solid #e6e6e6;
}
.secodary-menu .menu.left li {
	display: inline-block;
	font-weight: 600;
	color: #707070;
	line-height: 60px;
	padding-right: 60px;
}
.secodary-menu .menu.left li a {
	text-decoration: none;
}


/* = Media Query
------------------------------------------------- */
@media (min-width: 1600px) {
	.video-wrap video {
		width: 100%;
	}
}

/* Min Width 961px */
@media (min-width: 961px) {
  .head-collapse {
    width: auto;
    border-top: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .head-collapse.collapse {
    display: block !important;
    height: auto !important;
    padding-bottom: 0;
    overflow: visible !important;
  }
  .head-collapse.in {
    overflow-y: visible;
  }
  .navbar-fixed-top .head-collapse,
  .navbar-static-top .head-collapse,
  .navbar-fixed-bottom .head-collapse {
    padding-right: 0;
    padding-left: 0;
  }
}

/* Max widht 1140px and Min Width 961px */
@media screen and (max-width: 1140px) and (min-width: 961px) {
	.container-full {
	    width: 100%;
	    padding: 0 16px;
	}
	.primary-menu .menu.left li,
	.primary-menu .menu.right li {
		margin-right: 7%;
	}
	.primary-menu .menu.left li:first-child,
	.primary-menu .menu.right li:last-child  {
		margin-right: none !important;
	}
}

/* Max width 960px */
@media only screen and (max-width: 960px) {
	.container-full {
	    width: 100%;
	    padding: 0 16px;
	}
	.container-medium {
		width: 100%;
	    padding: 0 16px;	
	}
	.container-mini {
	    width: 100%;
	    padding: 0 16px;
	}
	.divider-head{
		height: 60px;  
	}
	header {
		height: 60px;
	}
	#logo {
		position: relative;
		z-index: 1;
		margin: 0 20px;
	}
	#logo img {
		height: 60px;
	}
	.primary-menu .menu.left li:first-child { 
		margin-top: 15px;
	}
	.mobile-menu {
		float: left;
		height: 60px;
		width: 22px;
	}
	.mobile-search {
		float: right;
		height: 60px;
		width: 22px;
		/*background-color: red;*/
	}
	.btn-hamburger {
		width: 22px;
		height: 2px;
		background-color: #fff;
		display: block;
		margin-top: 2px;
		margin-bottom: 5px;
		-webkit-transform: rotate(0deg);
		-moz-transform: rotate(0deg);
		-o-transform: rotate(0deg);
		transform: rotate(0deg);
		-webkit-transition: .25s ease-in-out;
		-moz-transition: .25s ease-in-out;
		-o-transition: .25s ease-in-out;
		transition: .25s ease-in-out;
	}
	.btn-hamburger:last-child {
		margin-bottom: 0px;
	}
	.mobile-toggle {
		width: 22px;
		position: absolute;
		height: 20px;
		left: 16px;
		top: 20px;
	}
	header.open {
		height: 100% !important;
		background-color: #000 !important;
		opacity: 0.99;
		z-index: 9999;
	}
	.mobile-toggle.open .btn-hamburger:nth-child(1) {
		margin-top: 9px;
		-webkit-transform: rotate(225deg);
		-moz-transform: rotate(225deg);
		-o-transform: rotate(225deg);
		transform: rotate(225deg);	
	}
	.mobile-toggle.open .btn-hamburger:nth-child(2) {
		opacity: 0;
		-webkit-transform: rotate(-180deg);
		-moz-transform: rotate(-180deg);
		-o-transform: rotate(-180deg);
		transform: rotate(-180deg);	
	}
	.mobile-toggle.open .btn-hamburger:nth-child(3) {
		margin-top: -14px;
		-webkit-transform: rotate(135deg);
		-moz-transform: rotate(135deg);
		-o-transform: rotate(135deg);
		transform: rotate(135deg);
	}
	.primary-menu .menu.left,
	.primary-menu .menu.right {
		float: none;
		width: 100%;
	}
	.primary-menu .menu.left li,
	.primary-menu .menu.right li {
		float: none;
		text-align: center;
		margin: 0;
		padding: 0 40px;
	}
	.primary-menu .menu li a {
		display: block;
		height: 60px;
		line-height: 60px;
		border-bottom: .1px solid #333;
	}
	.form-slider {
		width: 100%;
		padding: 0 15px;
	}
	.fa-4x {
	    display: none;
	    visibility: hidden;
	}
	.section-home-4 {
		display: none;
	}
	.section-home-5 {
		display: block;
	}
	.section-home-2 .caption h1 {
		width: 100%;
		padding: 0 16px;
	}
	.masonry li {
		width: 33.3%;
  	}
  	.section-streetfood-video {
		padding: 60px 0 150px 0;
	}
	.section-streetfood-video .amazingslider-nav-1 {
		left: 0px !important;
		top: 100% !important;
		margin-top: 8px !important;
	}
	.section-streetfood-video #amazingslider-wrapper-1 {
		max-width: 100% !important;
	}
	.section-streetfood-video .amazingslider-nav-container-1 {
		margin-left: 40px !important;
		margin-right: 40px !important;
	}
	.section-streetfood-video .amazingslider-car-left-arrow-1 {
		left: 0 !important;
	}
	.section-streetfood-video .amazingslider-car-right-arrow-1 {
		right: 0 !important;
	}
	.section-streetfood-video .amazingslider-text-1 {
		display: none;
	}
}

/* Max width 768px */
@media only screen and (max-width: 768px) {
	.section-home-1 {
		padding: 60px 16px;
	}
	.form-slider.outlet,
	.form-slider.home {
		bottom: 55%;
	}
	.form-slider.home h1 {
		font-size: 36px;
	}
	.form-slider.outlet h1 {
		font-size: 36px;
		margin-bottom: 30px;
	}
	.form-slider.outlet button,
	.form-slider.home button {
		margin-top: 15px;
	}
	.form-slider.outlet #btn-outlet i,
	.form-slider.home #btn-home i {
		margin-top: 73px;
	}
	.form-food button {
		margin-top: 15px;
	}
	.section-food-1 #btn-food {
		width: 99%;
	}
	.form-slider.outlet #btn-outlet i,
	.section-food-1 #btn-food i {
		display: none;
	}
	.form-slider.outlet .field-outlet {
		margin: 0;
	}
	.section-home-2 .caption,
	.section-home-5 .caption {
		padding: 50px 0;
	}
	.section-home-2 .caption a,
	.section-home-5 .caption a {
		width: 100%;
		height: 100px;
	}
	.section-home-2 .caption h1,
	.section-home-5 .caption h1 {
		font-size: 26px;
	}
	.image-effect .image-item:hover > h4 {
		margin-top: -59px;
		font-size: 14px;
	}
	.home-promo {
		margin-bottom: 20px; 
	}
	.nice-select {
		margin-top: 15px;
		z-index: 10;
	}
	.fixwidth .featherlight-content {
		width: 85%;
		padding: 40px 20px;
	}

	.section-home-2 .owl-item p, .section-home-5 .owl-item p {
		font-weight: 400;
		padding: 0 16px;
	}
	.section-streetfood-2 h3 {
		font-size: 30px;
		font-weight: 400;
		padding: 0 16px;
		line-height: 1.2;
		margin-bottom: 20px;
	}
	.section-streetfood-2 p {
		font-size: 14px;
		padding: 0 16px;
	}
	.form-slider.streetfood h1 {
		font-size: 36px;
	}
	.section-streetfood-3 h5 {
		padding: 0;
		font-size: 30px;
	}
	.slider-default .item {
		padding: 30px 0 40px 0;
	}
	.slider-default .caption {
		width: 100%;
		margin: 0 auto;
		height: 150px;
	  	text-align: center !important;
	}
	.slider-default .caption a {
		height: 50px;
		display: table;
		margin-left: auto;
	    margin-right: auto
	}
	.slider-default .caption h1 {
		opacity: 0; 
		color: #fff;
		display: table-cell;
		vertical-align: middle;
	  	font-size: 26px;
	  	font-weight: 400;
	  	text-shadow: 1px 1px 2px rgba(125, 125, 125, .5);
	    -webkit-transition: opacity 1s, visibility 1s;
	          	transition: opacity 1s, visibility 1s;
	}
	.slider-default .animate .caption h1 { 
		opacity: 1; 
		visibility: visible;
		height: 50px; 
		text-align: center;
		-webkit-animation-name: slideInDown;
		animation-name: slideInDown;
		animation-duration: 1s;
	}
	.slider-default .caption .title_desc {
		opacity: 0; 
		color: #fff;
		font-size: 11px;
		font-weight: 600;
		height: 100px;
		text-transform: uppercase;
		text-shadow: 1px 1px 2px rgba(125, 125, 125, .5);
	}
	.slider-default .animate .caption .title_desc {
		-webkit-opacity: 1;
		-webkit-animation-delay: .4s !important;
		animation-delay: .4s !important;
		-webkit-animation: 1s ease 0s normal forwards 1 fadeIUp !important;
	    animation: 1s ease 0s normal forwards 1 fadeInUp !important;
	}
	.background-card {
		display: table;
	}	
	.background-card h1 {
		font-size: 36px;
		height: 120px;
		display: table-cell;
		vertical-align: middle;
	}
	.section-card-1 .card-right {
		width: 100%;
		right: 0;
		top: -40px;
		z-index: 1;
		margin: 10px 0;
		-webkit-transform: rotate(0deg);
		-moz-transform: rotate(0deg);
		-ms-transform: rotate(0deg);  
		-o-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	.section-card-1 .card-left {
		width: 100%;
		left: 0;
		top: -160px;
		margin: 10px 0;
		-webkit-transform: rotate(0deg);
		-moz-transform: rotate(0deg);
		-ms-transform: rotate(0deg);  
		-o-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	.section-card-1 .shadow:after {
		z-index: -1;
		position: absolute;
		content: "";
		bottom: 15px;
		left: 0; 
		right: 0; 
		margin-left: auto; 
		margin-right: auto; 
		top: 80%;
		width: 80%;
		max-width:400px;
		box-shadow: 0 20px 20px rgba(0,0,0,.6);
		transform: rotate(0deg);
	}
	.section-card-1 h2 {
		margin-top: -140px;
		padding: 20px 0 40px 0;
	}
	.background-tenant .bg-img {
		padding: 45px 0;
	}
	.background-tenant h1 {
		font-size: 26px;
		height: 40px;
	}
	.background-tenant .tenant-desc {
		height: 90px;
		font-size: 13px;
	}
	.footbar .owl-carousel,
	.footbar .owl-carousel .owl-stage-outer,
	.footbar .owl-carousel .owl-stage {
		margin-top: 20px;
		min-height: 100px;
	}
	.copyright {
		height: 100%;
	}
	.secodary-menu .menu.left li {
		width: 100%;
		text-align: center;
		padding-right: 0;
		border-bottom: 1px solid #eee;
	}
	.masonry li {
		width: 50%;
  	}
  	.section-search-1 {
  		padding: 60px 0;
  	}
  	.section-food-detail-1 {
  		padding: 60px 0;
  	}
  	.section-food-detail-1 .food-alone img {
		width: 100%;
  	}
  	.food-detail-desc {
  		margin-bottom: 20px;
  	}
  	.slider-mini .owl-theme .owl-nav {
  		display: none;
  	}
  	.select-outlet-city {
  		z-index: 77;
  	}
  	.section-promo-detail-1,
  	.section-news-detail-1 {
  		padding: 40px 0 20px 0;
  	}
  	.section-promo-detail-1 .promo-image,
  	.section-news-detail-1 .news-image{
		width: 100% !important;
		padding-right: 0 !important;
  	}
  	.section-promo-detail-1 img,
  	.section-news-detail-1 img {
    	margin-bottom: 20px !important;
  	}
  	.section-promo-detail-1 .news-share li span i {
  		height: 12px;
  	}
  	.background-default .bg-img {
  		height: 250px;
  	}
  	.section-outlets-detail-2 h5,
  	.section-news-1 h2 {
  		margin-top: 15px;
  	}

  	/* = Background Parallax
	------------------------------------------------- */
	.section-home-1.parallax {
		background: #000;
	}
	.section-home-3.parallax {
		background: #fff;
	}
	.section-search-1.parallax {
	    background: #fff;
	}
	.section-search-3.parallax {
	    background: #fff;
	}
	.section-food-1.parallax {
		background: #F7CA18;
	}
	.section-food-2.parallax {
		background: #fff;
	}
	.section-food-detail-1.parallax {
		background: #fff;
	}
	.section-food-detail-3.parallax {
	    background: #f0f0f0;
	}
	.section-promo-detail-1.parallax {
	    background: #fff;
	}
	.section-promo-detail-3.parallax {
	    background: #f0f0f0;
	}
	.section-outlets-1.parallax {
		background: #fff;
	}
	.section-news-1.parallax {
		background: #f0f0f0;
	}
	.section-news-detail-1.parallax {
		background: #fff;
	}
	.section-streetfood-1.parallax {
		background: #fff;
	}
	.section-streetfood-2.parallax {
		background: #F7CA18;
	}
}

/* Max width 480px */
@media only screen and (max-width: 480px) {
	.masonry li {
		width: 100%;
  	}
}

/* Max width 360px */
@media only screen and (max-width: 360px) {
  	.form-slider.home h1 {
	    font-size: 30px;
  		margin-bottom: 20px;
  	}
  	.form-slider.home .field-home {
	    margin-bottom: 20px;
	}
	.form-slider.outlet h1,
	.form-slider.streetfood h1 {
	    font-size: 30px;
	    margin-bottom: 20px;
	}
	.slider-default .animate .caption .title_desc {
		padding: 0 16px;
	}
	.primary-menu .menu li a {
		display: block;
		height: 45px;
		line-height: 45px;
		border-bottom: .1px solid #333;
	}
	.slider-food h3 {
		padding: 10px;
		font-size: 16px;
	}
}