@charset "utf-8";
/* CSS Document */
@font-face{
	font-family: fontheading;
	src: url("../font/Moglan_DEMO.ttf"),
		url("../font/Moglan_DEMO.eot"),
		url("../font/Moglan_DEMO.woff");
}
@font-face{
	font-family: fontbody;
	src: url("../font/Manrope-Regular.ttf"),
		url("../font/Manrope-Regular.eot"),
		url("../font/Manrope-Regular.woff");
}

body{
	font-family: fontbody;
	background-color: #1B1A1C;

	background-repeat: no-repeat;
	background-position: center;
  
}
p{
	font-family: fontbody;
	font-size: 16px;
}
h1, h2, h3, h4, h5, h6{
	font-family: fontheading;
	letter-spacing: 0.5px;
}






















/*============================================Sign In============================================*/

.fade {
	background-color: rgba(43,43,40,0.50);
}

.modal-dialog-signin {
	margin: 8% auto;
	max-width: 1500px;
}

.signin_body {
	font-size: 16px;
	line-height: 24px;
	color: #2B2B28;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	z-index: 50;
}

.signin_body h4 {
	margin-bottom: 0;
	line-height: normal;
}

.signin_body p {
	margin: 10px 0 0 0;
	font-size: 18px;
}

.signin_body span {
	font-size: 16px;
	margin-bottom: 5px;
}

.signin_body a {
	color: #E3B04B;
	font-size: 18px;
	margin: 20px 0 0 0;
	transition: all ease 0.3s;
	text-decoration: none;
}
.btnadd{
	height: 40px !important;
}
.signin_body button {
	border-radius: 10px;
	border: none;
	background-image: linear-gradient(to right, #E3B04B , #F1D6AB);
	color: #f8f8f8;
	padding: 10px 30px 5px;
	transition: transform 80ms ease-in;
	margin-top: 20px;
	height: 40px !important;
	font-size: 18px;
	transition: all ease 0.4s;
}

.signin_body button:active {
	transform: scale(0.95);
}

.signin_body button:focus {
	outline: none;
}

.signin_body button.ghost {
	background-color: #F1D6AB !important;
	border: none!important;
	font-size: 18px;
	padding-top: 10px !important;
	margin-top: 10px !important;
}

.signin_body form {
	background-color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	padding: 50px 30px;
	text-align: center;
	height: 100%;
}

.form-container h4 {
	color: #E3B04B;
	margin-bottom: 5px;
}

.signin_body input {
	background-color: transparent;
	border: 1px solid rgba(145,110,42,1.00);
	border-radius: 10px;
	padding: 7px 15px;
	margin: 15px 0 0 0;
	width: 100%;
	color: #2B2B28;
	font-size: 14px;
	transition: all ease 0.5s;
}

.signin_body input:focus {
	outline: none;
	transition: all ease 0.5s;
	border:none;
	border-bottom: 1px solid rgba(145,110,42,1.00);
	border-radius: 0px;
	transition: all ease 0.5s;
}

.signin_body input:valid, .signin_body input:invalid {
	transition: all ease 0.5s;
}

#signmodal {
	background-color: white;
	border-radius: 10px;
	box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
	position: relative;
	overflow: hidden;
	min-height: 550px;
}

.form-container {
	position: absolute;
	top: 0;
	height: 100%;
	transition: all 0.6s ease-in-out;
}

.sign-in-container {
	left: 0;
	width: 50%;
	z-index: 2;
}

#signmodal.right-panel-active .sign-in-container {
	transform: translateX(100%);
}

.sign-up-container {
	left: 0;
	width: 50%;
	opacity: 0;
	z-index: 1;
}

#signmodal.right-panel-active .sign-up-container {
	transform: translateX(100%);
	opacity: 1;
	z-index: 5;
	animation: show 0.6s;
}

@keyframes show {
	0%, 49.99% {
		opacity: 0;
		z-index: 1;
	}
	50%, 100% {
		opacity: 1;
		z-index: 5;
	}
}

.overlay-container {
	position: absolute;
	top: 0;
	left: 50%;
	width: 50%;
	height: 100%;
	overflow: hidden;
	transition: transform 0.6s ease-in-out;
	z-index: 100;
}

#signmodal.right-panel-active .overlay-container {
	transform: translateX(-100%);
}

.overlay {
	background-image: url("../imgs/Thi_imgs/Home/comming soon_1.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: 0 0;
	color: #2B2B28;
	position: relative;
	left: -100%;
	height: 100%;
	width: 200%;
	transform: translateX(0);
	transition: transform 0.6s ease-in-out;
	z-index: 1000;
}

#signmodal.right-panel-active .overlay {
	transform: translateX(50%);
}

.overlay-panel {
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	padding: 0 40px;
	text-align: center;
	top: 0;
	height: 100%;
	width: 50%;
	transform: translateX(0);
	transition: transform 0.6s ease-in-out;
	background-color: rgba(43,43,40,0.6);
	color: rgba(241,214,171,1.00);
}

.overlay-left {
	transform: translateX(-20%);
}

#signmodal.right-panel-active .overlay-left {
	transform: translateX(0);
}

.overlay-right {
	right: 0;
	transform: translateX(0);
}

#signmodal.right-panel-active .overlay-right {
	transform: translateX(20%);
}

.social-container {
	margin: 15px 0;
}

.social-container a {
	border: #E3B04B 1px solid;
	border-radius: 50%;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	margin: 0 5px;
	height: 40px;
	width: 40px;
}

#overlay_signup {
	margin-top: 5px;
	font-size: 18px;
}
/*============================================Extra Large============================================*/

@media(min-width: 1200px) {
	#signmodal {
		width: 768px;
	}
	.signin_body a:hover {
		text-decoration: none;
		color: #916E2A;
		transition: all ease 0.3s;
	}
	.signin_body button:hover {
		 background-image: linear-gradient(to right, #916E2A , #E3B04B);
	    color: #F8F8F8;  
	transition: all ease 0.4s;
	}
}

/*============================================Large============================================*/

@media(min-width: 992px) and (max-width: 1199px) {
	#signmodal {
		width: 768px;
	}.signin_body a:hover {
		text-decoration: none;
		color: #916E2A;
		transition: all ease 0.3s;
	}
	.signin_body button:hover {
		box-shadow: 2px 2px 5px #2B2B28;
	transition: all ease 0.4s;
	}
}

/*============================================Medium============================================*/

@media(min-width: 768px) and (max-width: 991px) {
	#signmodal {
		width: 700px;
	}
}































/*==========CHUNG=========*/
.title{
	text-align: center;
	margin-top: 120px;
	margin-bottom: 40px;
}
.title h1{
	margin: 0px;
}


ul.breadcrumb {
  margin-top: 40px;
  padding: 0px;
  list-style: none;
  background-color: transparent;
}
ul.breadcrumb li {
  display: inline;
  font-size: 18px;
}
ul.breadcrumb li+li:before {
  padding: 8px;
  color: black;
}
ul.breadcrumb li a {
  color: #F1D6AB;
  text-decoration: none;
  transition: all ease .5s;
}
ul.breadcrumb li a img{
	margin-top: -9px;
}





#searchbox{
	background-color: #2b2b28;
	height: 100px;
	position: absolute;
	z-index: 10000;
	top: 0;
	text-align: center;
}
#searchfill{
	padding: 30px 10px;
}
#searchbox .searchicon{
	width: 5%;
	display: inline-block;
	float: left;
	font-size: 28px;
	color: #f1d6ac;
	margin-top: 10px;
}
#searchbox .searchfill{
	width: 80%;
	float: left;
	border: none;
	border-bottom: 2px solid white;
	padding-left: 7px;
	height: 40px;
	margin: 0 10px;
	font-size: 16px;
	font-family: mb;
	color: white;
	outline: none !important;
	background-color: transparent;
}
#searchbox .searchbtn{
	width: 10%;
	float: left;
	background-image: linear-gradient(129deg, rgba(158,10,10,1) 0%, rgba(233,105,64,1) 100%);
	color: white;
	border: none;
	height: 40px;
	border-radius: 10px;
	font-size: 18px;
	font-family: fontbody;
	padding-top: 1px;
	margin-left: 15px;
	outline: none !important;
	transition: all ease 0.5s;
}

#searchfill:focus{
	outline: none;
}
#searchbox .searchbtn:hover{
	background-image:  linear-gradient(129deg, #D6BB92 0%, #D6BB92);
	color: #9E0A0A; 
    border: none;
	transition: all ease 0.5s;
}
/*==========HEADER=========*/

.header {
  position: fixed;
  right: 0;
  left: 0;
  margin: 0;
  padding: 10px;
  background-color: transparent;
  color: #ffffff;
  transition: all 1s ease;
  height: 80px;
  padding:  15px 30px;
    
  z-index: 1000;
}
.header.scrolling {
  -webkit-backface-visibility: hidden; 
      backdrop-filter: blur(10px) saturate(30%);
    -webkit-backdrop-filter: blur(70px) saturate(20%);
      background: rgb(34,32,35);
background: linear-gradient(157deg, rgba(34,32,35,0.5) 0%, rgba(216,216,216,0.1) 100%);
box-shadow: inset 4px 5px 10px rgba(246,239,239,0.2), 10px 5px 30px rgba(214,187,146,0.2) !important;
  color: #000 !important;
  box-shadow: 4px 0px 15px rgba(0,0,0,0.7);
}
.header-ul {
  list-style: none;
  float: right;
}
.header-ul > li {
  display: inline-block;
}
.main {
  height: 2000px;
  padding: 0 20%;
  margin-top: 10%;
  line-height: 1.5;
}

* {
  box-sizing: border-box;
}
.menu01:hover{
	text-decoration: none;
	background: linear-gradient(129deg, rgba(158,10,10,1) 0%, rgba(233,105,64,1) 100%);
	transition: all ease .5s;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; 
}
.menu01:hover > .gachchan, .menu01:hover{
	background: linear-gradient(129deg, rgba(158,10,10,1) 0%, rgba(233,105,64,1) 100%);
	transition: all ease .5s;
	text-decoration: none;
	 -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
	opacity: 100%;
	
}
.gachchan{
	opacity: 0%;
}
.gachchan{
	margin-bottom: 30px;

}
.menu{
	padding-top: 5px;
	text-align: center;
}
.menu01{
	text-align: center;
}
.menu ul{
	list-style-type: none;
	padding-top: 8px;
	margin: 0px !important;
	padding: 0px;
}
.menuicon ul a{
	margin: 0px;
	padding: 0px;
	background-color: transparent;
	border: none;
	float: right;
	padding-top: 10px;
}
.menu ul li a{
	color: white;
	font-size: 25px;
	padding-top: 12px;
	height: 62px;
	margin: 0px;
	text-align: center;
}
.menuicon ul{
	list-style-type: none;
	margin: 0px;
    padding: 0px;
}
.menuicon ul li svg{
	color: rgba(241,214,171,1.00);
	height: 30px;
	margin-left: 25px !important;
}
.header--white {
	background-image: linear-gradient(to bottom, rgba(227,176,75,1) , rgba(43,43,40,1));
	box-shadow: 0 1px 20px rgba(0,0,0,0.25), 0 1px 2px rgba(0,0,0,0.25);
	color: #666;
}
.header__logo {
  fill: #fff;
  transition: all 250ms ease;
}
.header--white .header__logo {
  fill: #666;
}
/* Dropdown Button */
.dropbtn {
  background-color: transparent;
}
.dropbtn i{
	line-height: 0;
	font-size: 19px;
	margin-left: 5px;
}
/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: rgba(43,43,40,0.40);
  min-width: 220px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 2005;
  border-radius: 5px;
  backdrop-filter: blur(10px) !important;
  box-shadow: 20px 20px 40px -6px rgba(0,0,0,0.2);
  margin-left: 16px;
}

/* Links inside the dropdown */
.dropdown-content a {
  	text-decoration: none;
 	display: block;
	text-align: left !important;
	padding-left: 15px !important;
	padding-top: 15px !important;
	padding-bottom: 15px !important;
	font-size: 25px;
	color: #D6BB92 !important;
	height: 60px;
	display:block;
	transition: all ease 0.4s;
}

.dropdown-menu{
	position: relative !important;
	transform: none !important;
	background-color: transparent !important;
	border: none !important;
}
.dropdown-item{
	border: none !important; 
	color: #F1D6AB;
	font-size: 25px;
	padding-left: 90px !important;
	padding-bottom: 30px;
	font-family: mb;
}

.nav__links, .nav__submenu {
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__links {
  display: flex;
  margin-right: 10px;
}
.nav__item {
  transition-delay: 0ms;
  margin: 0px;
  position: relative;
  padding-bottom: 10px;
  display: flex;
  align-items: center;
}

.nav__icon {
  width: 16px;
  height: 16px;
  margin: 0px;
  fill: #fff;
  transition: all 250ms ease;
  cursor: pointer;
}
.header--white .nav__icon {
  fill: #666;
}
.nav__button {
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 30px;
  color: #F1D6AB;
  padding: 0;
  transition: all 250ms ease;
  outline: 0;
}
.nav__item[aria-expanded=true] .nav__button {
  color: #FF0000;
}
.nav__link {
  color: #FFDDA7;
  text-decoration: none;
  font-weight: bold;
}
.nav__submenu {
  position: absolute;
  top: calc(100%);
  transition: opacity 200ms ease-in-out var(--delay), transform 200ms ease-in-out var(--delay), visibility 200ms ease-in-out var(--delay);
  opacity: 0;
  pointer-events: none;
  padding: 30px 40px;
  z-index: 1;
  background: #fff;
  min-width: var(240px);
  left: calc(-1 * var(240px) / 3);
  transform: scale(0.9);
  border-bottom: 8px solid #FF9900;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.24), 0 1px 2px rgba(0, 0, 0, 0.24);
  border-radius: var(3px);
  visibility: collapse;
}
.nav__submenu li {
  margin-bottom: 30px;
}
.nav__submenu li:last-of-type {
  margin-bottom: 0;
}
.nav__submenu a {
  color: var(#666);
  text-decoration: none;
}
.intro-image {
  margin: 0;
  height: var(370px);
  overflow: hidden;
  background: var(#000);
}
.intro-image img {
  object-fit: cover;
  width: 100%;
  max-width: 100%;
  display: block;
  opacity: 0.7;
}

footer {
  display: flex;
  justify-content: center;
  padding: 20px;
}

.bt-action {
  margin: 0 5px;
}

.section {
  margin: 40px auto;
  max-width: 768px;
}
.section p {
  margin: 60px 0;
  line-height: 1.6;
}
#iconcart a:hover{
	color: #F1D6AB !important;
}


/* -------------------------------- 

xsigin/signup popup 

-------------------------------- */
.cd-user-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(52, 54, 66, 0.9);
  z-index: 2000;
  overflow-y: auto;
  cursor: pointer;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.3s 0, visibility 0 0.3s;
  -moz-transition: opacity 0.3s 0, visibility 0 0.3s;
  transition: opacity 0.3s 0, visibility 0 0.3s;
}
.cd-user-modal.is-visible {
  visibility: visible;
  opacity: 1;
  -webkit-transition: opacity 0.3s 0, visibility 0 0;
  -moz-transition: opacity 0.3s 0, visibility 0 0;
  transition: opacity 0.3s 0, visibility 0 0;
}
.cd-user-modal.is-visible .cd-user-modal-container {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}

.cd-user-modal-container {
  position: relative;
  width: 90%;
  max-width: 600px;
  background: #FFF;
  margin: 3em auto 4em;
  cursor: auto;
  border-radius: 0.25em;
  -webkit-transform: translateY(-30px);
  -moz-transform: translateY(-30px);
  -ms-transform: translateY(-30px);
  -o-transform: translateY(-30px);
  transform: translateY(-30px);
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.cd-user-modal-container .cd-switcher::after {
  clear: both;
  content: "";
  display: table;
}
.cd-switcher {
	padding: 0px;
	text-align: center;
}
.cd-user-modal-container .cd-switcher li {
  width: 50%;
  float: left;
  text-align: center;
	list-style-type: none;
}
.cd-user-modal-container .cd-switcher li:first-child a {
  border-radius: 0.25em 0 0 0;
}
.cd-user-modal-container .cd-switcher li:last-child a {
  border-radius: 0 0.25em 0 0;
}
.cd-user-modal-container .cd-switcher a {
  display: block;
  width: 100%;
  height: 50px;
  line-height: 50px;
  background: #d2d8d8;
  color: #809191;
}
.cd-user-modal-container .cd-switcher a.selected {
  background: #FFF;
  color: #505260;
}
@media only screen and (min-width: 600px) {
  .cd-user-modal-container {
    margin: 4em auto;
  }
  .cd-user-modal-container .cd-switcher a {
    height: 70px;
    line-height: 70px;
  }
}

.cd-form {
  padding: 1.4em;
}
.cd-form .fieldset {
  position: relative;
  margin: 1.4em 0;
}
.cd-form .fieldset:first-child {
  margin-top: 0;
}
.cd-form .fieldset:last-child {
  margin-bottom: 0;
}
.cd-form label {
  font-size: 14px;
  font-size: 0.875rem;
}
.cd-form label.image-replace {
  /* replace text with an icon */
  display: inline-block;
  position: absolute;
  left: 15px;
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  height: 20px;
  width: 20px;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  color: transparent;
  text-shadow: none;
  background-repeat: no-repeat;
  background-position: 50% 0;
}
.cd-form label.cd-username {
  background-image: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/148866/cd-icon-username.svg");
}
.cd-form label.cd-email {
  background-image: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/148866/cd-icon-email.svg");
}
.cd-form label.cd-password {
  background-image: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/148866/cd-icon-password.svg");
}
.cd-form input {
  margin: 0;
  padding: 0;
  border-radius: 0.25em;
}
.cd-form input.full-width {
  width: 100%;
}
.cd-form input.has-padding {
  padding: 12px 20px 12px 50px;
}
.cd-form input.has-border {
  border: 1px solid #d2d8d8;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
}
.cd-form input.has-border:focus {
  border-color: #343642;
  box-shadow: 0 0 5px rgba(52, 54, 66, 0.1);
  outline: none;
}
.cd-form input.has-error {
  border: 1px solid #d76666;
}
.cd-form input[type=password] {
  /* space left for the HIDE button */
  padding-right: 65px;
}
.cd-form input[type=submit] {
  padding: 16px 0;
  cursor: pointer;
  background: #2f889a;
  color: #FFF;
  font-weight: bold;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
}
.no-touch .cd-form input[type=submit]:hover, .no-touch .cd-form input[type=submit]:focus {
  background: #3599ae;
  outline: none;
}
.cd-form .hide-password {
  display: inline-block;
  position: absolute;
  right: 0;
  top: 0;
  padding: 6px 15px;
  border-left: 1px solid #d2d8d8;
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 14px;
  font-size: 0.875rem;
  color: #343642;
}
.cd-form .cd-error-message {
  display: inline-block;
  position: absolute;
  left: -5px;
  bottom: -35px;
  background: rgba(215, 102, 102, 0.9);
  padding: 0.8em;
  z-index: 2;
  color: #FFF;
  font-size: 13px;
  font-size: 0.8125rem;
  border-radius: 0.25em;
  /* prevent click and touch events */
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.2s 0, visibility 0 0.2s;
  -moz-transition: opacity 0.2s 0, visibility 0 0.2s;
  transition: opacity 0.2s 0, visibility 0 0.2s;
}
.cd-form .cd-error-message::after {
  /* triangle */
  content: "";
  position: absolute;
  left: 22px;
  bottom: 100%;
  height: 0;
  width: 0;
  border-bottom: 8px solid rgba(215, 102, 102, 0.9);
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
}
.cd-form .cd-error-message.is-visible {
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 0.2s 0, visibility 0 0;
  -moz-transition: opacity 0.2s 0, visibility 0 0;
  transition: opacity 0.2s 0, visibility 0 0;
}
@media only screen and (min-width: 600px) {
  .cd-form {
    padding: 2em;
  }
  .cd-form .fieldset {
    margin: 2em 0;
  }
  .cd-form .fieldset:first-child {
    margin-top: 0;
  }
  .cd-form .fieldset:last-child {
    margin-bottom: 0;
  }
  .cd-form input.has-padding {
    padding: 16px 20px 16px 50px;
  }
  .cd-form input[type=submit] {
    padding: 16px 0;
  }
}

.cd-form-message {
  padding: 1.4em 1.4em 0;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.4;
  text-align: center;
}
@media only screen and (min-width: 600px) {
  .cd-form-message {
    padding: 2em 2em 0;
  }
}

.cd-form-bottom-message {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: -30px;
  text-align: center;
  font-size: 14px;
  font-size: 0.875rem;
}
.cd-form-bottom-message a {
  color: #FFF;
  text-decoration: underline;
}

.cd-close-form {
  /* form X button on top right */
  display: block;
  position: absolute;
  width: 40px;
  height: 40px;
  right: 0;
  top: -40px;
  background: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/148866/cd-icon-close.svg") no-repeat center center;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
@media only screen and (min-width: 1170px) {
  .cd-close-form {
    display: none;
  }
}

#cd-login, #cd-signup, #cd-reset-password {
  display: none;
}

#cd-login.is-selected, #cd-signup.is-selected, #cd-reset-password.is-selected {
  display: block;
}



/*==========BLACK SCREEN=========*/
#blackscreen{
	background-color: rgba(0,0,0,0.5);
	height: 100%;
	position: fixed;
	z-index: 50;
}
/*==========NAVIGATION MOBILE=========*/
#bgnavimobile{
	-webkit-backface-visibility: hidden; 
      backdrop-filter: blur(10px) saturate(30%);
    -webkit-backdrop-filter: blur(70px) saturate(20%);
      background: rgb(34,32,35);
background: linear-gradient(157deg, rgba(34,32,35,0.5) 0%, rgba(216,216,216,0.1) 100%);
box-shadow: inset 4px 5px 10px rgba(246,239,239,0.2), 10px 5px 30px rgba(214,187,146,0.2) !important;
  color: #000 !important;
  box-shadow: 4px 0px 15px rgba(0,0,0,0.7);
	position: sticky;
	top: 0px;
	z-index: 1000;
	height: 70px;
}
#bgmobilenavi{
	position: fixed;
	z-index: 100;
	background-color: rgba(43,43,40,0.7);
	color: rgba(227,176,75,1.00);
  	backdrop-filter: blur(10px) !important;
  	box-shadow: 20px 20px 40px -6px rgba(0,0,0,0.2);
	font-size: 25px;
	font-family: mh;
	border-radius: 0px 0px 10px 10px;
}
#logomobile{
	text-align: center;
}
#logomobile img{
	padding-top: 7px;
	height: 50px;
	
}
#iconbar{
	color: white;
}
#iconcart{
	color: #F1D6AB;	
	text-align: right;
}
#iconcart, #iconbar{
	font-size: 40px;
	padding-top: 4px;
}

#mobilesearchfill{
	margin-top: 30px;
	width: 85%;
	float: left;
	height: 50px;
	border: 0.5px solid white;
	border-right: none;
	border-radius: 10px 0px 0px 10px;
	background-color: transparent;
	padding-left: 15px;
	padding-top: 5px;
	color: rgba(251,251,251,0.5);
	font-size: 18px;
	margin-bottom: 40px;
	font-family: fontbody;
}
#mobilesearchbtn{
	margin-top: 30px;
	width: 15%;
	float: left;
	height: 50px;
	border: 0.5px solid white;
	border-left: none;
	border-radius: 0px 10px 10px 0px;
	background-color: transparent;
	text-align: right;
	padding-right: 15px;
}
#mobilesearchbtn{
	color: white;
	font-size: 25px;
}
#mobilesearchfill:focus{
	outline: none;
}
.nav p{
	font-family: fontbody;
	font-size: 35px;
	font-weight: 550;
	margin: 0px;
	padding: 0px;
	color: #D6BB92;
}
.menumobile{
	padding-left: 60px;
	color: white;
	font-family: fontheading;
}
.menumobile:hover{
	background: linear-gradient(180deg, rgba(158,10,10,1) 0%, rgba(233,105,64,1) 100%);
	transition: all ease .5s;
	text-decoration: none;
	 -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

}
.dropdown-item:hover, .dropdown-item:focus{
	background-color: transparent;
	color: #F1D6AB;
	
}
/*==========MODAL=========*/



/*======================================BANNER TRUOT==========================================*/
.bannertruot:not(:disabled), [type="button"]:not(:disabled), [type="reset"]:not(:disabled), [type="submit"]:not(:disabled) {
	background-color: transparent;
	outline: none;
	border: 1px solid transparent;
}

/*======================================CHOOSE AND ENJOY==========================================*/
.heading h2{
	color: #D6BB92;
}
.heading{
	text-align: center;
	padding: 100px 15px 60px;
}
.gachchan2{
	margin-bottom: 20px;
}


/*code cua thanh icon sushi*/
.roll, .gungan, .musubi, .sashimi{
	padding: 15px;
	margin: 0px 15px;
	border: 0.5px solid transparent;
}
.roll h6, .gungan h6, .musubi h6, .sashimi h6{
	text-align: center;
	color: white;
	text-decoration: none;
}
.roll:hover, .gungan:hover, .musubi:hover, .sashimi:hover{
	border: 0.5px solid rgba(255,255,255,0.2);
	border-radius: 10px;
	box-shadow: 4px 5px 10px rgba(0,0,0,0.2);
	transition: all ease .5s;
	text-decoration: none;
}

.chitietsp ul li a{
	text-decoration: none;
	text-align: center;
}
.gungan h6{
	margin: 20px 0px 0px;
}
.roll h6{
	margin: 35px 0px 0px;
}
.musubi h6{
	margin: 40px 0px 0px;
}
.sashimi h6{
	margin: 30px 0px 0px;
}

/*trang dau tien*/
.fade:not(.show) {
	opacity: 100%
}






.spcart input{
    display: none;
}

.spcart{
    max-width: 100em;
    /* background-color: lightgreen; */
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    align-content: flex-start;
    margin: auto;
    min-height: 30em;
    padding: 3em 1em 1em 1em;
    box-sizing: border-box;
}

/* Card Styling */
.card-div{
    width: 20em;
    min-height: 20em;
    display: flex;
    flex-direction: column;
    justify-items: center;
    align-items: center;
    background-color: var(--card-main-color);
    margin: 0.6em;
    box-sizing: border-box;
    border-radius: 10px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    transition: transform 0.2s ease-in-out;
}

/* ======== General styling of all cards and heart divs ========== */
.img-div{
    width: 100%;
    height: 8em;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding-top: 1rem;
    z-index: 1;
    border-radius: 0 0 10px 10px;
}

.img-div img{
    transform-origin: bottom;
    transform: translateY(7.5%);
    transition: transform 0.3s ease-in-out
}

/* === Styling the like Icon ==== */
.like-icon-div{
    padding: 1em 1em 0 1em;
    width: 100%;
    box-sizing: border-box;
    text-align: right;
    font-size: 1.5em;
    color: var(--heart-icon-color);
    border-radius:10px 10px 0 0;
    display: flex;
    justify-content: flex-end;
}

.like-icon-div-child{
    /* background-color: yellow; */
    width: 1em;
    height: 1em;
    position: relative;
    z-index: 3;
    cursor: pointer;
}

.heart-empty{
    position: absolute;
    left: 0;
    opacity: 1;
}

.heart-fill{
    position: absolute;
    left: 0;
    opacity: 0;
    transform: scale(0);
    transition: transform 0.25s ease-in-out, opacity 0.2s ease-in-out;
}


/* God of war image and heart-background*/
.gow-img-div{
    background-color: var(--card-1-secondary-color);
}

.gow-img-div img{
    width: 65%;
    transform: translateY(7.5%);
    /* background-color: whitesmoke; */
}

.card-1 .like-icon-div{
    background-color: var(--card-1-secondary-color);
}


/* Sekiro image and heart-background */
.sekiro-img-div{
    background-color: var(--card-2-secondary-color);
}

.sekiro-img-div img{
    width: 45%;
    transform: translateY(7.5%);
}

.card-2 .like-icon-div{
    background-color: var(--card-2-secondary-color);
}


/* Dazai image and heart-background */
.dazai-img-div{
    background-color: var(--card-3-secondary-color);
}

.dazai-img-div img{
    width: 80%;
    transform: translateY(7.5%);
}

.card-3 .like-icon-div{
    background-color: var(--card-3-secondary-color);
    
}

/* U4 image and heart-background*/
.u4-img-div{
    background-color: var(--card-4-secondary-color);
}

.u4-img-div img{
    width: 50%;
    transform: translateY(7.5%);
}

.card-4 .like-icon-div{
    background-color: var(--card-4-secondary-color);
}

/* ======== text Container Styling general ======== */

.text-container{
    width: 100%;
    display: flex;
    flex-direction: column;
    /* background-color: yellow; */
    padding: 0 1.5em;
    padding-top: 7em;
    padding-bottom: 1em;
    box-sizing: border-box;
}

.text-container .item-name,
.text-container .date{
    margin: 0.25em 0;
    text-align: center;
}

.text-container .item-name{
    font-size: 1.2em;
    font-weight: var(--title-font-weight);
    color: var(--heading-color);
}

.text-container .date{
    font-size: 0.9em;
    font-weight: var(--date-font-weight);
    color: var(--date-text-color);
}

/* === Pricing and cart div  ===== */
.pricing-and-cart{
    /* background-color: wheat; */
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 0.25em 0 1em 0;
}

.pricing{
    display: flex;
    flex-direction: column;
    text-align: left;
}

.previous-price{
    font-size: 0.8rem;
    font-weight: var(--pricing-font-weight);
    color: var(--previous-price-text-color);
    text-decoration: line-through;
    /* background-color: whitesmoke; */
    text-align: left;
}

.current-price{
    color: var(--current-price-text-color);
    font-size: 1.3rem;
    font-weight: var(--pricing-font-weight);
    /* background-color: yellow; */
    margin: 0;
}

.pricing-and-cart{
    width: 100%;
}

.fa-shopping-cart{
    font-size: 1.3rem;
    top: 0;
    transform: translateY(50%);
}


/* ====== Hover effects ======= */
.card-div:hover .img-div img{
    transform: translateY(7.5%) scale(1.5);
}

.card-div:hover{
    transform: translate(0, -10px);
}

.like-icon-div-child:hover .heart-fill{
    opacity: 1;
    transform: scale(1);
}

.like-icon-div-child:hover .heart-empty{
    transition-delay: 0.25s;
    opacity: 0;
}

#card-1-like:checked ~ .heart-empty,
#card-2-like:checked ~ .heart-empty,
#card-3-like:checked ~ .heart-empty,
#card-4-like:checked ~ .heart-empty{ 
        opacity: 0;
}

#card-1-like:checked ~ .heart-fill,
#card-2-like:checked ~ .heart-fill,
#card-3-like:checked ~ .heart-fill,
#card-4-like:checked ~ .heart-fill{
    animation: like-animation 0.25s ease-in-out forwards;
}

#card-1-like:not(:checked) ~ .heart-fill,
#card-2-like:not(:checked) ~ .heart-fill,
#card-3-like:not(:checked) ~ .heart-fill,
#card-4-like:not(:checked) ~ .heart-fill{
    animation: unlike-animation 0.25s ease-in-out ;
}


@keyframes like-animation{
    0%{
        opacity: 1;
        transform: scale(1)
    }
    
    50%{
        opacity: 1;
        color: var(--liked-heart-icon-color);
        transform: scale(0.5);
    }

    100%{
        opacity: 1;
        color: var(--liked-heart-icon-color);
        transform: scale(1.0);
    }
}

@keyframes unlike-animation{
    0%{
        opacity: 1;
        transform: scale(1)
    }
    
    50%{
        opacity: 1;
        transform: scale(0.5);
    }

    100%{
        opacity: 1;
        color: var(--heart-icon-color);
        transform: scale(1.0);
    }
}


/*======================================BEST SPECIALTIES==========================================*/
.iconbest{
	list-style-type: none;
	text-align: center;
	color: white;
}
.iconbest li{
	float: left;
	margin: 30px;
}
.ndbest{
	text-align: left;
	color: white;
}
 


/*======================================BANNER 2==========================================*/

#bannerphu2{
	background-image: url("../imgs/banner 2 ở dưới.png");
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	height: 500px;
}
/*=======================================review========================*/

.snip1356 {
  position: relative;
  overflow: hidden;
  background: #2B2B28;
  text-align: left;
  color: #f8f8f8;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
  font-size: 16px;
  border-radius: 20px;
  margin-bottom: 100px;
}
.snip1356 * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.snip1356 > img,
.snip1356 .image img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
  max-width: 100%;
}
.snip1356 > img {
  vertical-align: top;
  position: relative;
  -webkit-filter: blur(5px);
  filter: blur(5px);
  opacity: 0.7;
}
.snip1356 .image {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  overflow: hidden;
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}
.snip1356 .image img {
  position: absolute;
  top: 0;
}
.snip1356 figcaption {
  opacity: 0;
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  border-bottom: 2px solid #f8f8f8;
  padding-bottom: 15px;
  z-index: 1;
}
.snip1356 h3,
.snip1356 p {
  margin: 0;
}
.snip1356 h2 {
  color: #F1D6AB;
  font-weight: 700;
  margin-bottom: 5px;
  
}
.snip1356 p {
  font-size: 16px;
  letter-spacing: 1px;
  font-weight: 400;
 color: #fff;
	opacity: 50%;
	padding-bottom: 16px;
  
}
.snip1356 h6 {
  font-size: 16px;
  letter-spacing: 1px;
  font-weight: 400;
 color: #fff;
	
	padding-bottom: 16px;
	
  
}
.snip1356 h5 {
  font-size: 16px;
  letter-spacing: 1px;
  font-weight: 400;
  color: #fff;
  padding-bottom: 16px;
  text-align: center;
  
}
#iconrv, #iconrv1, #iconrv2{
	font-size: 250%;
	color: #D6BB92;
}
.snip1356 .iconbtn {
  display: block;
  opacity: 0;
  -webkit-transform: translateX(-20px);
  transform: translateX(-20px);
  line-height: 48px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0 20px;
  color: #f8f8f8;
  right: 0;
  bottom: 0;
  font-weight: 500;
  position: absolute;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}
.snip1356 a {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
  z-index: 1;
}
.iconbtn svg{
	color: #F1D6AB;
	font-size: 20px;
	margin-left: 15px;
}





/*======================================ABOUT US==========================================*/

.bodyabus{
	color: aliceblue;
}

.imgabus img{
	position: absolute;
}
.imgabus{
	margin-bottom: 700px;
}
.img2{
	top:390px;
	z-index: 500;

}
.img1{
	left: 300px;
	z-index: 400;
}
.img3{
	left:560px;
	top:450px;
	z-index: 200;
}
.hcnbogoc{
	height: 470px;
	width: 350px;
	border: 1px solid #D6BB92;
	border-radius: 10px;
	position: absolute;
	top: 70px;
	left: 250px;
	z-index: 210;
}
.hcnbogoc2{
	height: 400px;
	width: 300px;
	border: 1px solid #D6BB92;
	border-radius: 10px;
	position: absolute;
	top: 200px;
	left: 120px;
	z-index: 11;
}
.hcnbogoc3{
	height: 280px;
	width: 200px;
	border: 1px solid #D6BB92;
	border-radius: 10px;
	position: absolute;
	top: 420px;
	left: 620px;
	z-index: 5;
}
/*noi dung ben phai*/
.ndabus2{
	color: white;
	position: absolute;
}
.ngoac1{
	position: absolute;
	left: -30px;
}

.bodyabus2{
	margin-bottom: 100px;
	margin-top: 200px;
	position: absolute;
	left: 600px;
	z-index: 1000;
}
.ndabus4{
	color: white;
	position: absolute;
	z-index: 1000px;
	top: 340px;
}
.ndabus3{
	color: white;
	
	position: absolute;
	z-index: 1000;
	
  	top: 220px;
}

/*button about us*/
.btn5 {
 	position: relative;
 	height: fit-content;
 	display: flex;
 	justify-content: left;
 	align-items: center;
 	width: 150px;
 	height: 40px;
 	text-align: center;
	text-indent: 50px;
 	transition: 300ms;
 	font-weight: 500;
	margin-left: 150px;
	color: white;
	margin-top: 440px;
	background-color: transparent;
	font-family: fontbody;
}

.btn5::before {
  content: "";
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  left: 0;
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 10px;
background: linear-gradient(180deg, rgba(158,10,10,1) 0%, rgba(233,105,64,1) 100%);
  z-index: -1;
}

.btn5::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 17px;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 12px;
  height: 12px;
  border-top: 2px solid #D6BB92;
  border-right: 2px solid #D6BB92;
  transition: 400ms;
	border-radius: 1px;
}

.btn5:hover {
  text-indent: 15px;
  color: white;
  font-weight: 600;
	font-family: fontbody;
}
.btn5:active {
  scale: 0.95;
}

.btn5:hover::before {
  width: 100%;
}

.btn5:hover::after {
  left: calc(100% - 25px);
}
/*======Medium======*/
.boxhdau{
	color: white;
}
.ngoacau1{
	position: absolute;
	z-index: 20;
	top: 190px;
}
.boxngoachd h5{
	color: white;
	position: absolute;
	z-index: 30;
	left: 50px;
	top: 200px;
}
.ngoacau2{
	position: absolute;
	z-index: 20;
	top: 230px;
	left: 400px;
}
.imgmd{
	width: 60%;
	position: absolute;
	left: 350px;
	z-index: 15;
}
.boxhdaubu2{
	margin-bottom: 100px;
}
.hcnbgmd{
	height: 450px;
	width: 300px;
	border: 1px solid #D6BB92;
	border-radius: 10px;
	position: absolute;
	z-index: 10;
	left: 400px;
	top: -20px;
}
.boximgbg{
	margin-bottom: 550px;
}
.boxhdabu2{
	margin-bottom: 100px;
}
.boximgabu img{
	position: absolute;
	top: -200px;
	z-index: 30;
	left: 30px;
}
.bghcn2{
	height: 250px;
	width: 300px;
	border: 1px solid #D6BB92;
	border-radius: 10px;
	position: absolute;
	z-index: 10;
	top: -250px;
	left: 100px;
}
.boxhdabu2 p{
	color: aliceblue;
	position: absolute;
	z-index: 30;
	left: 400px;
	top: -50px;
	
}
.hcnbgab3{
	height: 320px;
	width: 300px;
	border: 1px solid #D6BB92;
	position: absolute;
	border-radius: 10px;
	z-index: 10;
	top: -20px;
}
.boximghd3 img{
	position: absolute;
	z-index: 20;
}
.bgabu3sm p{
	color: white;
	position: absolute;
	z-index: 30;
	left: 360px;
	top: 100px;
}
.bgabu3sm{
	margin-bottom: 300px;
}
/*=====small======*/
.headingboxaboutu{
	color: white;
}
.boximgbodyaboutus2 h4{
	color: aliceblue;
	position: absolute;
	z-index: 5;
	top: 200px;
	left: 70px;
}
.boximgbodyaboutus2 .ngoacdosm1{
	position: absolute;
	z-index: 10;
	top: 200px;
}
.boximgbodyaboutus2 .ngoacdosm2{
	position: absolute;
	z-index: 10;
	top: 270px;
	left: 260px;
	
}
.imgsmab1 img{
	width: 50%;
	left: 250px;
	position: absolute;
	z-index: 3;
}
.imgsmab1{
	margin-bottom: 400px;
}
.hcnsm1{
	height: 400px;
	width: 200px;
	border: 1px solid #D6BB92;
	border-radius: 10px;
	position: absolute;
	z-index: 2;
	left: 340px;
	top: 30px;
}
.bghcn2bgsm{
	height: 160px;
	width: 200px;
	border: 1px solid #D6BB92;
	border-radius: 10px;
	position: absolute;
	z-index: 9;
	top: 10px;
}
.boximgsmabu img{
	position: absolute;
	z-index: 10;
	top: 40px;
	left: 30px;
	width: 70%;
}
.boxbdabu2 p{
	color: white;
	position: absolute;
	z-index: 20;
	left: 270px;
	top: 60px;
}
.boxbdabu2{
	margin-bottom: 250px;
}
.boximgbdabu3 img{
	position: absolute;
	z-index: 20;
	left: 50px;
}
.chnbgaboutus3{
	height: 300px;
	width: 200px;
	border: 1px solid #D6BB92;
	border-radius: 10px;
	position: absolute;
	top:-30px;
}
.bdaboutus3 p{
	color: white;
	position: absolute;
	left: 350px;
	top: 100px;
}
.bdaboutus3{
	margin-bottom: 300px;
}

/*======================================MEET OUR CHEF==========================================*/
/*phan 1*/
.hdmeetourchef img{
	position: absolute;
}
.hdmeetourchef h4{
	left: 300px;
	top:100px;
	position: absolute;
	color: white;
	z-index: 30;
}
.ngoactraimoc{
	left: 250px;
	top: 100px;
}
.ngoacphaimoc{
	left:660px;
	top:140px;
	z-index: 100;
}
.chnmoc1{
	height: 530px;
	width:370px;
	border: 1px solid #D6BB92;
	border-radius: 10px;
	position: absolute;
	top: 40px;
	left: 30px;
	z-index: 1;
}
.ndmeetourchef2 p{
	position: absolute;
	color: white;
	opacity: 50%;
	top: 170px;
	left: 520px;
}
.ndmeetourchef3 p{
	margin-top: 110px;
	color: white;
	position: absolute;
	top: 100px;
}
.hinhmoc1{
	margin-bottom: 500px;
}
.hinhmoc1 img{
	position: absolute;
	z-index: 3;
}

/*phan 2*/
.hinhmoc2{
	margin-bottom: 500px;
}

.hinhmoc2 img{
	position: absolute;
	top:50px;
	left: 80px;
	z-index: 50;
}
.chnmoc2{
	border: 1px solid #D6BB92;
	border-radius: 10px;
	height: 600px;
	width: 400px;
	position: absolute;
	z-index: 10;
	
}
.ngoactraimocp2{
	top: 240px;
}
.ngoacphaimocp2{
	left: 430px;
	top: 280px;
}
.ndmeetourchefp2 img{
	position: absolute;
	z-index: 70;
}
.ndmeetourchefp2 h4{
	position: absolute;
	color: white;
	top: 240px;
	left: 60px;
	z-index: 70;
}
.tendaubep{
	color: white;
	opacity: 50%;
	position: absolute;
	left: 500px;
	top:-330px;
	font-size: 14px;
}
.ndmocp211 {
	color: white;
	position: absolute;
	left: 500px;
	top: -130px;
}
.ndmocp21{
	margin-bottom: 150px;
}


.bdour p{
	color: white;
}
.boxbdimg .ngoacdo1{
	position: absolute;
	top: 100px;
	
}
.boxbdimg h4{
	color: white;
	position: absolute;
	left: 60px;
	top: 100px;
	z-index: 50;
}
.boxbdimg .ngoacdo2{
	position: absolute;
	top: 150px;
	left: 410px;
	z-index: 70;
}
.imgsm1 img{
	width: 90%;
	position: absolute;
	z-index: 20;
	left: -10px;
}
.imgsm1{
	margin-bottom: 550px;
}
.tendb p{
	position: absolute;
  color: white;
  opacity: 50%;
  top: -170px;
	left: 500px;
}
.hcn1{
	height: 500px;
	width: 360px;
	border-radius: 10px;
	border: 0.5px solid #D6BB92;
	top: -20px;
	position: absolute;
	z-index: 1;
}
.imgsm2 img{
	position: absolute;
	z-index: 40;
}
.imgsm2{
	margin-bottom: 600px;
}
.hddb2 .ngoac1p2{
	position: absolute;
	z-index: 60;
	top: -400px;
	left: 250px;
}
.hddb2 h4{
	position: absolute;
	z-index: 70;
	color: white;
	top: -400px;
	left: 300px;
}
.hddb2 .ngoac2p2{
	position: absolute;
	z-index: 60;
	top: -360px;
	left: 650px;
}
.tendb2 p{
	color: white;
	opacity: 50%;
	position: absolute;
	z-index: 70;
	top: -320px;
	left: 450px;
}
.hcn12 {
	height: 560px;
	width: 380px;
	position: absolute;
	z-index: 30;
	border: 0.5px solid #D6BB92;
	border-radius: 10px;
	top: -20px;
	left: -20px;
}
/*===========================FOLLOR INSTAGRAM=================================*/

.img1ins{
	margin-top: 30px;
	border-radius: 20px;
}
.img3ins{
	border-radius: 20px;
}
.img2ins{
	margin-bottom: 50px;
	margin-top: 200px;
	border-radius: 20px;
}
.img4ins{
	margin: 100px 0px 50px;
	border-radius: 20px;
}
.img5ins{
	border-radius: 20px;
}
.img6ins, .img7ins{
	margin-bottom: 60px;
	border-radius: 20px;
}
.img8ins{
	border-radius: 20px;
}
.ndinsgradient{
	text-decoration: none;
	background: linear-gradient(129deg, rgba(158,10,10,1) 0%, rgba(233,105,64,1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
	margin-top: 200px;
}
/*Main button styles*/
.btnins {
  position: relative;
  height: fit-content;
  display: flex;
  justify-content: left;
  align-items: center;
  width: 140px;
  height: 40px;
  text-align: center;
  text-indent: 50px;
  transition: 300ms;
  font-weight: 500;
	background-color: transparent;
	color: white;
}

.btnins::before {
  content: "";
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  left: 0;
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background-color: #D6BB92;
  z-index: -1;
}

.btnins::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 17px;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 12px;
  height: 12px;
  border-top: 2px solid #9E0A0A;
  border-right: 2px solid #9E0A0A;
  transition: 400ms;
}

.btnins:hover {
  text-indent: 15px;
  background: linear-gradient(129deg, rgba(158,10,10,1) 0%, rgba(233,105,64,1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
}
.btnins:active {
  scale: 0.95;
}

.btnins:hover::before {
  width: 100%;
}

.btnins:hover::after {
  left: calc(100% - 25px);
}

/*=================================BOOK A TABLE========================================*/

.hdname, .hdemail, .hdphone{
	color: white;
	margin-bottom: 15px;
}
.etyn, .etym, .etypn{
	color: white;
	height: 50px;
	border: 0.5px solid white;
	border-radius: 10px;
	background: linear-gradient(129deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 100%);
      
      backdrop-filter: blur(5px);
          -webkit-backdrop-filter: blur(5px);
	width: 100%;
	margin-top: 5px;
	margin-bottom: 15px;
	padding-left: 15px;
	font-size: 16px;
	margin: 0px 0px 30px 0px;
}
.etyn:focus, .etym:focus, .etypn:focus{
	outline: none;
}
.tat{
	margin-bottom: 30px;
}


/*time*/
.tat, .aop, .tn{
	margin-top: -20px;
	color: white;
}
.tat h4, .aop h4, .tn h4{
	margin-bottom: 15px;
}
.clock-column {
  margin-right: 7rem;
  text-align: center;
  position: relative;
	
}
.boxtime{
	margin-bottom: 30px;
}
.clock-column::after {
  content: ":";
  display: block;
  height: 0.25rem;
  width: 0.25rem;
  font-size: 36px;
  font-weight: 200;
  color: #131313;
  position: absolute;
  top: 60px;
  right: -35px;
}
.clock-column:last-child::after {
  display: none;
}

.clock-column:last-child {
  margin-right: 0;
}

.clock-label {
  padding-top: 10px;
  text-transform: uppercase;
  color: #131313;
  font-size: 14px;
  text-align: center;
  border-top: 1px solid rgba(19, 19, 19, 0.5);
}

.clock-timer {
  color: #131313;
  font-size: 36px;
  line-height: 1;
}

.clock-input {
  clear: both;
  text-align: left;
  max-width: 500px;
  width: 100%;
  margin: 0 auto 10px;
}

input#time-to {
 	padding: 5px;
 	border: 0;
 	border-radius: 3px;
 	font-size: 16px;
 	text-align: left;
 	color: rgba(255,255,255,0.5);
	height: 50px;
	border: 0.5px solid white;
	border-radius: 10px;
	background: linear-gradient(129deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 100%);
      
    backdrop-filter: blur(5px);
          -webkit-backdrop-filter: blur(5px);
	width: 100%;
	outline: none;
}

.done {
  color: #fff;
  font-weight: 600;
}



/*note*/
#messagefill{
	padding-top: 15px;
	padding-left: 15px;
	width: 100%;
	border: 0.5px solid white;
	border-radius: 10px;
	background: linear-gradient(129deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 100%);
	backdrop-filter: blur(5px);
          -webkit-backdrop-filter: blur(5px);
	resize: none;
	margin-bottom: 10px;
	color: white;
	font-family: fontbody;
}
#messagefill:focus{
	outline: none;
}
.boxnote h4{
	color: white;
	margin-bottom: 15px;
}
.boxnote p{
	color: white;
}
.boxnote .signup{
	background: linear-gradient(129deg, rgba(158,10,10,1) 0%, rgba(233,105,64,1) 100%);
    background-clip: border-box;
  transition: all ease .5s;
  text-decoration: none;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
	font-size: 16px;
}
.signup:hover{
	font-size: 17px;
	transition: all ease .5s;
	text-decoration: none;
}

/*button vang*/
.btnvang {
  position: relative;
  height: fit-content;
  display: flex;
  justify-content: left;
  align-items: center;
  width: 140px;
  height: 40px;
  text-align: center;
  text-transform: uppercase;
  text-indent: 50px;
  transition: 300ms;
  font-weight: 500;
	margin-left: 150px;
}

.btnvang::before {
  content: "";
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  left: 0;
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 20px;
  background-color: #282936;
  z-index: -1;
}

.btnvang::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 17px;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 12px;
  height: 12px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transition: 400ms;
}

.btnvang:hover {
  text-indent: 15px;
  color: white;
  font-weight: 600;
}
.btnvang:active {
  scale: 0.95;
}

.btnvang:hover::before {
  width: 100%;
}

.btnvang:hover::after {
  left: calc(100% - 25px);
}
.note{
	margin-bottom: 100px;
}
#myNumber, #myNumber2 {
  word-wrap: normal;
  width: 70%;
  padding: 5px;
    padding-right: 5px;
  border: 0;
  border-radius: 3px;
  font-size: 18px;
  text-align: left;
  color: rgba(255,255,255,0.5);
  height: 50px;
  border: 0.5px solid white;
  border-radius: 10px;
  background: linear-gradient(129deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 100%);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  outline: none;
}
#myNumber option, #myNumber2 option{
	color: black;
}
/*======================================SUBCRIBE==========================================*/
.boxsubcribe{
	margin-bottom: 100px;
}
.bgsub{
	background-image: url("../imgs/subscribe/istockphoto-806380330-2048x2048.png");
	background-repeat: no-repeat;
	background-position: right;
	background-size: cover;
	mix-blend-mode: screen;
	height: 550px;
}
.search {
  width: 100%;
  position: relative;
  display: flex;
}

.searchTerm {
  width: 80%;
  padding: 5px;
  height: 40px;
  outline: none;
  color: rgba(255,255,255,0.5);
	border: 0.5px  solid white;
	border-right-color: transparent;
	border-radius: 10px 0px 0px 10px;
	background: linear-gradient(129deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 100%);
      
      backdrop-filter: blur(5px);
          -webkit-backdrop-filter: blur(5px);
}

.searchTerm:focus{
  color: white;
}

.searchButton {
  width: 20%;
  height: 41px;
  background: linear-gradient(129deg, rgba(158,10,10,1) 0%, rgba(233,105,64,1) 100%);
  text-align: center;
  color: #fff;
  border-radius: 0px 10px 10px 0px;
  cursor: pointer;
  font-size: 20px;
}
.searchButton p{
	margin-bottom: 4px;
}
.searchButton:hover{
background-color: rgba(214,187,146,1.00);
}
/*Resize the wrap to see the search bar change!*/
.wrap{
  width: 30%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.bdsub{
	margin-top: 200px;
	color: white;
}
.bdsub h2{
	color: #D6BB92;
}
.sale{
	font-family: fontheading;
	font-size: 50px;
}
.sale strong{
	font-family: fontbody;
}



/*============================FOODTER===============================*/

/*====footer desktop===*/
.logo2 h5{
	color: #D6BB92;
	padding: 50px 0px 30px;
	margin: 0px;
}
.icon-footer{
	list-style-type: none;
	padding:0px;
	
}
.icon-footer i{
	color: #D6BB92;
	font-size: 20px;
	margin-bottom: 20px;
}
.icon-footer i p{
	float: right;
	padding: 0px 0px 0px 15px;
	color: white;
	padding-right: 0px;
	margin: 0px;
}
.iconcuoi i{
	margin: 0px;
}
.information h5, .menu h5, .support h5{
	color: #D6BB92;
	padding: 50px 0px 30px;
	margin: 0px;
}
.bodyfoter{
	text-decoration: none;
	list-style-type: none;
}
.bodyfoter p{
	color: aliceblue;
	margin-bottom: 20px;
}
.bodyfoter p:hover{
	color: #D6BB92;
	transition: all ease .5s;
}
.bodyfoter a{
	padding: 0px;
}
.payment{
	font-size: 30px;
	color: white;
}
#cpr p{
	font-size: 14px;
	margin-top: 9px; 
}
.copyright{
	height: 40px;
	color: white;
}
/*====footer tablet======*/
.support2{
	padding-right: 0px;
}
.visitourstore2 h5, .infor2 h5, .menu2 h5, .support2 h5{
	color: #D6BB92;
}




.subfill{
	width: 70%;
	float: left;
	height: 30px;
	margin-top: 5px;
	border-radius: 9px 0px 0px 9px;
	padding-left: 10px;
	border-style: hidden;
	margin-left: 55px;
	outline: none;
}
.subbtn{
	width: 10%;
	float: left;
	height: 30px;
	margin-top: 5px;
	background-color:rgba(255,255,255,1.00);
	border-top-right-radius: 9px;
	border-bottom-right-radius: 9px;
	border-style: hidden;
	color: #766B9D;
	font-size: 18px;
	
}

/*============footer small==============*/


#logosm1{
	width: 80%;
	text-align: center;
	margin: 0px 50px 30px;
}
.pm{
	display: flex;
	padding-right: 100px;
}
.visit h4, .information h4, .menu h4, .support h4, .payments h4{
	color: white;
	text-align: center;
}
.jumbotron {
  padding: 30px;
  background: #efefef;
}

li {
  list-style: none;
}
.question {
  color:rgba(255,255,255,1.00);
 
  cursor: pointer;
  position: relative;
}
#mobilefooter .accordion ul{
	padding: 0px;
}
#mobilefooter .accordion ul li{
	padding-bottom: 30px;
}
.answer {
  max-height: 0;
  overflow: hidden;
  transition: 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) all;
	padding-left: 150px;
}
.answer ul{
	padding: 0px;
	margin: 0px
}
.answer ul li a{
	color: white;
	text-decoration: none;
	
}


.answer ul li i{
	color: white;
	text-decoration: none;
	padding: 0px 15px
	
}
li.open .answer {
  max-height: 150px;
}
.bannertruot span {
  
  right: 20px;
  top: 0px !important;
  height: 100%;
  display: flex !important;
  align-items: center;
}
li.open span {
  transform: rotate(180deg);
}
.question h6{
	margin-bottom: 10px;
}

button:not(:disabled), [type="button"]:not(:disabled), [type="reset"]:not(:disabled), [type="submit"]:not(:disabled) {
	outline: none;
	border: 1px solid transparent;
}


#mobilefooter .accordion {

	background-color: transparent;
  color: #444;
  cursor: pointer;
  padding: 30px 20px 30px 0px;
  width: 100%;
 border-top: 1px solid white;
  text-align: center;
  outline: none;
  font-size: 15px;
  transition: 0.4s;
	
}
#mobilefooter .menusm{
	padding: 30px 20px 30px 0px;
}
#mobilefooter .visit, #mobilefooter .information, #mobilefooter .menusm, #mobilefooter .support, #mobilefooter .payments{
	border-top: 1px solid white;
}

#mobilefooter .accordion:after {
  content: '\002B';
  color: white;
  font-weight: bold;
  float: right;
  margin-right: 100px;
	font-size: 30px;
	margin-top: -45px;
}

#mobilefooter .active1:after {
  content: "\2212";
}

/*=======================ONLY X-LARGE=======================*/
@media(min-width: 1200px){
	.bgbatt{
	background-image: url("../imgs/2 62428.png");
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	mix-blend-mode: screen;
	height: 400px;
	}
	.iconbest li i{
		font-size: 30px;
		color: #D6BB92;
		
	}
	.headingnavi{
	margin-top: 50px;
	}
	.iconnavi{
		padding-top: 50px;
	}
	.headinggc a{
	padding: 0px 12px;
	}
	.iconnavi{
		font-size: 20px;
	}
	.iconnavi ul li a{
		padding: 0px 16px;
		color: #D6BB92;
	}
	.iconnavi ul li a:hover{
		color: white;
	}
	.foodterbg{
	background-color: #9E0A0A;
	padding: 60px 15px 30px 15px;
	}
	.bgft{
	height: auto;
	background-color: #9E0A0A;
	padding: 60px 15px;
	}
	#imgbestspecialties{
	background-image: url("../imgs/banner 2.png");
	background-repeat: no-repeat;
	background-position: left;
	background-size: cover;
	mix-blend-mode: screen;
	height: 530px;
		margin-bottom: 100px;
	}
	.spbest{
		margin-top: 50px;
	}
	
	.snip1369:hover .btn,
	.snip1369.hover .btn,
	.snip1369:hover figcaption,
	.snip1369.hover figcaption {
	  opacity: 1;
	  -webkit-transform: translateX(0px);
	  transform: translateX(0px);
	}
	.snip1369:hover figcaption,
	.snip1369.hover figcaption,
	.snip1369:hover .image,
	.snip1369.hover .image {
	  -webkit-transition-delay: 0s;
	  transition-delay: 0s;
	}
	.snip1369:hover figcaption,
	.snip1369.hover figcaption {
	  top: 54%;
	}
	.snip1369:hover .image,
	.snip1369.hover .image {
	  bottom: 50%;
	}
	.snip1369:hover p,
	.snip1369.hover p {
	  opacity: 1;
	  -webkit-transition-delay: 0.2s;
	  transition-delay: 0.2s;
	}
	
	/*follow ins*/
	#instabtn:hover{
		transition: all ease .4s;
		padding-left: 50px;
	}
	.ins02:hover .overlay01 {
	  opacity: 1;
	}
	.ig02 {
	  position: relative;
	  width: 100%;
	}
	.ig02:hover .overlay01 {
	  opacity: 1;
	}
	.ins03{
	  position: relative;
	  width: 100%;
	}
	.ins03:hover .overlay01 {
	  opacity: 1;
	}
	.snip1356:hover .iconbtn,
	.snip1356.hover .iconbtn,
	.snip1356:hover figcaption,
	.snip1356.hover figcaption {
	  opacity: 1;
	  -webkit-transform: translateX(0px);
	  transform: translateX(0px);
	  -webkit-transition-delay: 0.2s;
	  transition-delay: 0.2s;
	}
	.snip1356:hover .image,
	.snip1356.hover .image {
	  bottom: 100%;
	  -webkit-transition-delay: 0s;
	  transition-delay: 0s;
	}
	.comeimg00 img:hover{
		transform:scale(1.05);
		transition: all ease 0.4s;
	}
	.comeimg00 img{
		transition: all ease 0.4s;
	}
	.comeimg img:hover{
		transform:scale(1.05);
		transition: all ease 0.4s;
	}
	.comeimg img{
		transition: all ease 0.4s;
	}
	
	/*about us*/
	.ngoac2{
	position: absolute;
	left: 330px;
	top: 40px;
	}
	
	/*best specialties*/
	.sp1 .owl-nav{
	margin-top: -160px;
	color: #D6BB92;
	font-size: 25px;
	}
	.sp1 .owl-nav .owl-prev{
		position: absolute;
		right: -50px;
		z-index: -1;
	}
	.sp1 .owl-nav .owl-next{
		position: absolute;
		left: -50px;
		z-index: -1;
	}
	
	
/* Change color of dropdown links on hover */
.dropdown-content a:hover {
	background-color: #D6BB92 !important; 
	color: #F8F8F8 !important;
	backdrop-filter: blur(10px) !important;
	border-radius: 5px;
	transition: all ease 0.4s;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {display: block;}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {background-color: transparent;}

.menuicon ul li a:hover{
	cursor: pointer;
	text-decoration: none;
	color: white;
	transition: all ease 0.5s;
	padding-bottom: 5px;
}
	.menuicon ul li a{
		font-size: 25px;
		color: #D6BB92;
		padding: 13px;
		text-decoration: none;
	}
.card:hover{
	box-shadow: 3px 3px 15px rgba(112,112,112,.5);
	border: none;
	transition: all ease 0.5s;
}
}
/*=======================ONLY LARGE=======================*/
@media(min-width: 992px) and (max-width: 1199px){
	.tendb p {
		left: 500px;
		top: -220px;
	}
	
	.headingnavi{
		padding: 0px;
		margin-top: 35px;
	}
	.iconnavi{
		padding: 0px;
		margin-top: 38px;
		font-size: 19px;
	}
	.headinggc a{
	padding: 8px 0px;
	}
	.iconnavi ul li a{
		padding: 0px 16px;
		color: #D6BB92;
	}
	.iconnavi ul li a:hover{
		color: white;
	}
	.iconbest li i{
		font-size: 30px;
		color: #D6BB92;
		
	}
	.foodterbg{
	background-color: #9E0A0A;
	padding: 60px 15px 30px 15px;
	}
	#bannerphu2 {
		height: 360px;
	}
	#imgbestspecialties{
	background-image: url("../imgs/banner 2.png");
	background-repeat: no-repeat;
	background-position: left;
	background-size: cover;
	mix-blend-mode: screen;
	height: 480px;
	}
	.bgft{
	height: auto;
	background-color: #9E0A0A;
	padding: 60px 15px;
	}
	.menuicon ul li a:hover{
	cursor: pointer;
	text-decoration: none;
	color: white;
	transition: all ease 0.5s;
	padding-bottom: 5px;
}
	.menuicon ul li a{
		font-size: 25px;
		color: #D6BB92;
		padding: 8px;
		text-decoration: none;
	}
	.menu01{
		padding: 16px 5px;
	}
	.menu01 h4{
		margin: 0px;
	}
	
	.img1{
		left: 100px;
		width: 300px;
		top: -20px;
	}
	.hcnbogoc{
		left: 50px;
		top:10px;
		width: 250px;
		height: 400px
	}
	.img2{
		width: 300px;
		left: 1px;
	}
	.hcnbogoc2{
	height: 200px;
		width: 370px;
		left: 10px;
		top: 300px;
		z-index: 300;
	}
		
	.img3{
		width: 200px;
		left: 350px;
		top: 400px;
	}
	.hcnbogoc3{
		height: 250px;
		width: 200px;
		top: 420px;
		left: 370px;
	}

	.ndabus3{
	left: -200px
	}
	.ndabus4{
		top: 300px;
		left: -200px;
	}
	.btn5{
		margin-left: 0px;
	}
	.ngoactraimoc {
	  left: 30px;
	  top: 100px;
	  z-index: 90;
	}
	.hdmeetourchef h4 {
  left: 70px;
	}
	.ngoacphaimoc {
		left: 320px;
	}
	.hinhmoc1 img{
		left: 600px;
	}
	.chnmoc1{
		
		left: 610px;
	}
	.ndmeetourchef3 p {
		left: 50px;
	}
	.ndmeetourchef2 p {
		left: 400px;
	}
	.tendaubep{
		top:-200px;
	}
	.ndmocp211{
		top: -170px;
	}
	.ngoactraimocp2 {
	  top: -300px;
	  left: 400px;
	  z-index: 40;
	}
	.ndmeetourchefp2 h4 {
	  top: -300px;
	  left: 450px;
	  
	}
	.ngoacphaimocp2 {
  left: 830px;
  top: -260px;
}
	.bgbatt {
		background-image: url("../imgs/2 62428.png");
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
		mix-blend-mode: screen;
		height: 270px;
	}
	.tat, .aop, .tn {
		margin-top: 120px;
	}
	.boxtat .btnvang{
		margin-left: 400px;
	}
	.bgsub{
		height: 480px;
	}
	.bdsub{
		margin-top: 150px;
	}
	/*about us*/
	.ngoac2{
	position: absolute;
	left: -120px;
    top: 70px;
	}
	.ndabus2{
		left: -300px;
		margin-right:200px; 
	}
	 .ngoac1 {
    left: -350px;
  	}
	
	/*best specialties*/
	.sp1 .owl-nav{
	margin-top: -160px;
	color: #D6BB92;
	font-size: 25px;
	}
	.sp1 .owl-nav .owl-prev{
		position: absolute;
		right: -50px;
		z-index: -1;
	}
	.sp1 .owl-nav .owl-next{
		position: absolute;
		left: -50px;
		z-index: -1;
	}
	

	/*=======================================review========================*/
.menu ul li a:hover{
		text-decoration: none;
		color: #E3B04B;
	}
	.menu ul li:hover{
		padding-top: 3px;
		transition: all ease .4s;
	}
	.menuicon ul a svg:hover{
		padding-top: 8px !important;
		transition: all ease .4s;
	}
	.menuicon ul button li svg:hover{
		text-decoration: none;
		color: #E3B04B;
		padding-top: 3px;
		transition: all ease .4s;
	}
	.nav__item:hover .nav__submenu {
	  opacity: 1;
	  pointer-events: auto;
	  transform: scale(1);
	  visibility: visible;
	}
	.nav__item:hover .nav__link,
	.nav__item:hover .nav__button {
	  color: #916E2A;
	}
	.nav__item:hover .nav__icon {
	  transform: scaleX(1) scaleY(-1);
	  fill: #916E2A;
	}
	.nav__link:hover, .nav__button:hover {
	  color: #916E2A !important;
	}
	.nav__submenu a:hover {
	  text-decoration: underline;
	}

	.overlay01 a i:hover{
		color: #E3B04B;
		transition: all ease .4s;
	}
	.purchasebtn{
		padding: 5px 20px 0px;
	}
	.purchasebtn:hover{
	  background-image: linear-gradient(to left, #E3B04B , #F1D6AB);
	  color: #F8F8F8; 	
	  transition-duration: 0.4s;
	}
	.decorbox:hover .overlay01 {
	  opacity: 1;
	}
	.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
		background-image: linear-gradient(to right, #E3B04B , #F1D6AB);
	}
	.focus a h3:hover{
		background-image: linear-gradient(to right, rgba(227,176,75,0.5) , rgba(43,43,40,0.5));
		transition: all ease .5s;
	}
	.focusafter a h3:hover{
		background-image: linear-gradient(to right, rgba(227,176,75,0.5) , rgba(43,43,40,0.5));
		transition: all ease .5s;
	}
	.btn:hover{
	  background-image: linear-gradient(to left, #E3B04B , #F1D6AB);
	  color: #F8F8F8; 	
	  transition-duration: 0.4s;
	}
	#logofooter:hover{
		margin-left: 5px;
		transition: all ease 0.4s;
	}
	#footericon ul li a:hover{
		color: #E3B04B;
		transition: all ease 0.4s;
	}
	.button1:hover {
	  background-image: linear-gradient(to right, #916E2A , #E3B04B);
	    color: #F8F8F8; 
	  transition: all ease 0.4s;
	}
	.snip1369:hover .btn,
	.snip1369.hover .btn,
	.snip1369:hover figcaption,
	.snip1369.hover figcaption {
	  opacity: 1;
	  -webkit-transform: translateX(0px);
	  transform: translateX(0px);
	}
	.snip1369:hover figcaption,
	.snip1369.hover figcaption,
	.snip1369:hover .image,
	.snip1369.hover .image {
	  -webkit-transition-delay: 0s;
	  transition-delay: 0s;
	}
	.snip1369 figcaption{
		padding-top: 10px; 
	}
	.snip1369:hover figcaption,
	.snip1369.hover figcaption {
	  top: 50%;
	}
	.snip1369:hover .image,
	.snip1369.hover .image {
	  bottom: 50%;
	}
	.snip1369:hover p,
	.snip1369.hover p {
	  opacity: 1;
	  -webkit-transition-delay: 0.2s;
	  transition-delay: 0.2s;
	}
	#instabtn:hover{
		transition: all ease .4s;
		padding-left: 50px;
	}
	.ins02:hover .overlay01 {
	  opacity: 1;
	}
	.ig02 {
	  position: relative;
	  width: 100%;
		height:98%;
	}
	.ig02:hover .overlay01 {
	  opacity: 1;
	}
	.ins03{
	  position: relative;
	  width: 100%;
	}
	.ins03:hover .overlay01 {
	  opacity: 1;
	}
	.snip1356:hover .iconbtn,
	.snip1356.hover .iconbtn,
	.snip1356:hover figcaption,
	.snip1356.hover figcaption {
	  opacity: 1;
	  -webkit-transform: translateX(0px);
	  transform: translateX(0px);
	  -webkit-transition-delay: 0.2s;
	  transition-delay: 0.2s;
	}
	.snip1356:hover .image,
	.snip1356.hover .image {
	  bottom: 100%;
	  -webkit-transition-delay: 0s;
	  transition-delay: 0s;
	}
.dropdown-item:hover{
	background-color: transparent!important;
	color: rgba(241,214,171,1.00);
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {
	background-color: rgba(227,176,75,0.5) !important; 
	color: #F8F8F8 !important;
	backdrop-filter: blur(10px) !important;
	border-radius: 10px;
	transition: all ease 0.4s;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {display: block;}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {background-color: transparent;}

.menuicon ul li a:hover{
	cursor: pointer;
}
.menumobile:hover{
	color: rgba(227,176,75,1.00);
}
.card:hover{
	box-shadow: 3px 3px 15px rgba(112,112,112,.5);
	border: none;
	transition: all ease 0.5s;
}
	
	
	

	
	
	
	
	
	/*follow ins*/
	#instabtn:hover{
		transition: all ease .4s;
		padding-left: 50px;
	}
	.ins02:hover .overlay01 {
	  opacity: 1;
	}
	.ig02 {
	  position: relative;
	  width: 100%;
		height:98%;
	}
	.ig02:hover .overlay01 {
	  opacity: 1;
	}
	.ins03{
	  position: relative;
	  width: 100%;
	}
	.ins03:hover .overlay01 {
	  opacity: 1;
	}
	.snip1356:hover .iconbtn,
	.snip1356.hover .iconbtn,
	.snip1356:hover figcaption,
	.snip1356.hover figcaption {
	  opacity: 1;
	  -webkit-transform: translateX(0px);
	  transform: translateX(0px);
	  -webkit-transition-delay: 0.2s;
	  transition-delay: 0.2s;
	}
	.snip1356:hover .image,
	.snip1356.hover .image {
	  bottom: 100%;
	  -webkit-transition-delay: 0s;
	  transition-delay: 0s;
	}
.dropdown-item:hover{
	background-color: transparent!important;
	color: rgba(241,214,171,1.00);
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {
	background-color: rgba(227,176,75,0.5) !important; 
	color: #F8F8F8 !important;
	backdrop-filter: blur(10px) !important;
	border-radius: 10px;
	transition: all ease 0.4s;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {display: block;}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {background-color: transparent;}

.menu{
	padding: 0px;
}
.menu ul li a h4{
	font-size: 19px;
}
.menu ul li a{
	padding: 15px 0px;
}
.menuicon ul li a:hover{
	cursor: pointer;
}
.menumobile:hover{
	color: rgba(233,105,64,1);
}
.card:hover{
	box-shadow: 3px 3px 15px rgba(112,112,112,.5);
	border: none;
	transition: all ease 0.5s;


	
}
	
}
	
	


/*=======================ONLY MEDIUM=======================*/
@media(min-width: 768px) and (max-width: 991px){
	.hcn1{
		height: 380px;
		width: 280px;
	}
	
	#bannerphu2 {
  	background-position: right;
  	height: 400px;
	margin-top: 100px;	
	}
	.menu01 h4{
		font-size: 17px;
		text-align: center;
	}
	.menu01{
		padding: 12px 0px;
	}
	.headingnavi{
		padding: 15px 0px;
		
	}
	.headingnavi ul li a{
		padding: 13px 0px;
	}
	.headingnavi ul li a h5{
		font-size: 17px;
	}
	.gachchan{
		width: 70%;
	}
	.nav{
		flex-wrap: nowrap;
	}
	.iconnavi{
		padding: 15px 0px 0px;
		font-size: 19px;
	}
	.iconnavi ul li a{
		padding: 10px;
		color: #D6BB92;
	}
	.iconnavi ul li a:hover{
		color: white;
	}
	.foodterbg{
	background-color: #9E0A0A;
	padding: 60px 15px 30px 15px;
	}
	.bodyfoter{
		padding-top: 15px;
	}
	.icon-footer {
	  list-style-type: none;
	}
	.vossm{
		margin-top: 50px;
		padding: 0px;
	}
	.menu{
		text-align: left;
	}
	.vossm h5{
		padding-bottom: 20px;
		color: #D6BB92;
	}
	.information{
		padding-right: 0px;
	}
	.bodyfoter{
		padding: 0px;
	}
	/*icon best specialties*/
	.ndbest {
		margin-top: 190px;
	}
	.iconbest li i{
		font-size: 40px;
		color: #D6BB92;
		
	}
	.bgft{
	height: auto;
	background-color: #9E0A0A;
	padding: 60px 15px;
	}
	.logo{
		padding-top: 5px;
	}
	.menuicon{
		font-size: 18px;
		padding-top: 6px
		
	}.menuicon ul li a{
		padding: 5px;
		color: #D6BB92;
	}
	.menuicon ul li a:hover{
		color: white;
		transition: all ease 0.5s;
		padding-top: 9px;
	}
	.snip1356 .iconbtn,
	.snip1356.hover .iconbtn,
	.snip1356 figcaption,
	.snip1356.hover figcaption {
	  opacity: 1;
	  -webkit-transform: translateX(0px);
	  transform: translateX(0px);
	  -webkit-transition-delay: 0.2s;
	  transition-delay: 0.2s;
	}
	.snip1356 .image,
	.snip1356.hover .image {
	  bottom: 100%;
	  -webkit-transition-delay: 0s;
	  transition-delay: 0s;
	}
	.bgbatt{
	background-image: url("../imgs/book2.png");
	background-repeat: no-repeat;
	background-position: right;
	background-size: cover;
	mix-blend-mode: screen;
	height: 300px;
	}
	.bgbatd{
		margin-top: 80px;
	}
	.note .btnvang{
		margin-left: 300px;
	}
	.bgsub{
		height: 280px;
	}
	.bdsub{
		margin-top: 0px;
	}
	.imgsm2{
	margin-bottom: 400px;
	}
	.imgsm2 img{
		width: 90%;
	}
	.hcn12 {
  		height: 370px;
		width: 250px;
	}
	.bnt5{
		margin-top: 200px;
  margin-left: 450px;
	}
	
	
	/*best specialties*/
	.sp1 .owl-nav{
	margin-top: -190px;
	color: #D6BB92;
	font-size: 25px;
	}
	.sp1 .owl-nav .owl-prev{
		position: absolute;
		right: -20px;
		z-index: -1;
	}
	.sp1 .owl-nav .owl-next{
		position: absolute;
		left: -20px;
		z-index: -1;
	}
	
	/*about us*/
	.ngoac2{
	position: absolute;
	left: -120px;
    top: 70px;
	}
	.boxngoachd h5{
	left: 40px;
  	top: 100px;
	margin-right: 200px;
	}
	.ngoacau1{
		top: 100px;
		left: -7px;
	}
	 .ngoac1 {
    left: -10px;
  	}
	.ngoacau2{
		top: 160px;
		left: 200px;
	}
	.bgabu3sm {
		margin-bottom: 20px;
	}
	/*button*/
	.btn5{
		margin-top: 250px;
		margin-left: 400px;
	}
	/*meet our chef*/
	.tendb p {
		top: 190px;
		left: 250px;
	}
	.hddb2 h4{
		top: -300px;
	}
	.hddb2 .ngoac1p2 {
		top:-300px;
	}
	.tendb2 p {
		top: -180px;
		left: 300px;
	}
	.hddb2 .ngoac2p2{
		top: -230px;
		left: 420px;
	}
	.imgsm1{
		margin-bottom: 400px;
	}
	
	/*=======================================review========================*/


	.snip1356 .iconbtn,
	.snip1356.hover .iconbtn,
	.snip1356 figcaption,
	.snip1356.hover figcaption {
	  opacity: 1;
	  -webkit-transform: translateX(0px);
	  transform: translateX(0px);
	  -webkit-transition-delay: 0.2s;
	  transition-delay: 0.2s;
	}
	.snip1356 .image,
	.snip1356.hover .image {
	  bottom: 100%;
	  -webkit-transition-delay: 0s;
	  transition-delay: 0s;
	}
	.post-module:hover,
.hover {
  -webkit-box-shadow: 0px 1px 35px 0px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 1px 35px 0px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 1px 35px 0px rgba(0, 0, 0, 0.3);
}

.post-module .thumbnail {
  background: #111111;
  height: 350px;
  overflow: hidden;
  border-radius: 20px;
}
.post-module .thumbnail .date {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 1;
  background: #e74c3c;
  padding: 12.5px 0;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  color: #FFFFFF;
  font-weight: 700;
  text-align: center;
  -webkti-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}


.post-module{
	height: 500px;
	
	
}
.post-module .post-content {
 margin-left: 10px;
 font-size: 10px;
  border: 1px solid #d8d8d8;
  border-radius: 60px 10px 10px 10px;
  position:absolute;
  bottom: 0;
  background: linear-gradient(0deg, rgba(30,30,32,1) 0%, rgba(126,126,134,1) 100%);
  width: 90%;
  padding: 20px;
  -webkti-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.3s cubic-bezier(0.37, 0.75, 0.61, 1.05) 0s;
  -moz-transition: all 0.3s cubic-bezier(0.37, 0.75, 0.61, 1.05) 0s;
  -ms-transition: all 0.3s cubic-bezier(0.37, 0.75, 0.61, 1.05) 0s;
  -o-transition: all 0.3s cubic-bezier(0.37, 0.75, 0.61, 1.05) 0s;
  transition: all 0.3s cubic-bezier(0.37, 0.75, 0.61, 1.05) 0s;
}

.post-module .post-content .post-meta .timestamp {
  margin: 0 16px 0 0;
}
.post-module .post-content .post-meta a {
  color: #999999;
  text-decoration: none;
}
.hover .post-content .description {
  display: block !important;
  height: auto !important;
  opacity: 1 !important;
}

.column {
  width: 100%;
  padding: 0 10px;
  -webkti-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  float: left;
 
}

.info {
  width: 300px;
  margin: 50px auto;
  text-align: center;
}

}
/*=======================ONLY SMALL=======================*/
@media(min-width: 576px) and (max-width: 767px){
	#bannerphu2 {
	height: 300px;
	background-position: right;
	margin-top: 200px;	

	}
	#cpr{
		text-align: center;
	}
	#brfootermobile1{
	height: auto;
	background-color: #9E0A0A;
	padding: 60px 0px 0px 0px;
}
	.bdsub{
		margin-top: 0px;
	}
	.chitietsp ul li a img{
		height: 50%;
	}
	.chitietsp ul li{
		margin: 8px;
	}
	.chitietsp ul li a h6{
		margin-top: 25px;
	}
	.roll, .gungan, .musubi, .sashimi{
	padding: 0px;
	margin: 0px 15px;
	border: 0.5px solid transparent;
		text-align: center;
		height: 150px;
		width: 100px;
		padding: 15px;
	}
	/*meet our chef*/
	.imgsm1 img {
		width: 50%;
		left: 250px;
	}
	.hcn1 {
		width: 250px;
		height: 380px;
		left: 300px;
		top: -10px;
	}
	.boxbdimg h4 {
		font-size: 20px;
		left: 50px;
		
	}
	.boxbdimg .ngoacdo1 {
		width: 8%;
	}
	.boxbdimg .ngoacdo2 {
		left: 220px;
		width: 8%;
		top:160px;
	}
	.imgsm2 img{
		width: 50%;
		top: -100px
	}
	.hcn12{
		width: 250px;
		height: 400px;
		top: -120px;
		left: 0px;
	}
	.hddb2 .ngoac1p2 {
		top: -200px;
		width: 6%;
		left: 160px;
	}
	.hddb2 h4{
		font-size: 20px;
		top: -200px;
		left: 200px;
	}
	.tendb p {
		top:190px;
		left: 100px;
	}
	.hddb2 .ngoac2p2 {
		left: 290px;
		top:-140px;
		width: 6%;
	}
	/*about us*/
	.boximgbodyaboutus2 .ngoacdosm1{
		top:100px;
		width: 5%;
	}
	.boximgbodyaboutus2 h4{
		top: 100px;
		left: 50px;
		margin-right: 150px;
	}
	.boximgbodyaboutus2 .ngoacdosm2{
		top: 200px;
		width: 5%;
		left: 350px;
	}
	.imgsmab1 img {
		width: 40%;
	}
	.hcnsm1{
		height: 300px;
		left: 280px;
	}
	.imgsmab1 {
	margin-bottom: 350px;
	}
	.boximgbdabu3 img{
		width: 90%;
	}
	.bdaboutus3 p{
		left: 300px;
		top: 60px;
	}
	
	
	/*best specialties*/
	.ndbest{
		margin-top: 120px;
	}
	.iconbest li{
		margin: 0px 20px;
	}
	.iconbest li i{
		font-size: 30px;
		color: #D6BB92;
		
	}
	.tendb2 p {
	  top: -100px;
	  left: 300px;
	}
	.imgsm2{
		margin-bottom: 300px;
	}
	
	.sp1 .owl-nav{
	margin-top: -390px;
	color: #D6BB92;
	font-size: 25px;
	}
	.sp1 .owl-nav .owl-prev{
		position: absolute;
		right: -20px;
		z-index: -1;
	}
	.sp1 .owl-nav .owl-next{
		position: absolute;
		left: -20px;
		z-index: -1;
	}
	
	/*follow ins*/
	.img4ins{
		width: 48%;
		padding: 0px 15px;
	}
	.img5ins{
		width: 48%;
		padding: 0px 15px;
	}
	.img6ins, .img7ins{
		width: 48%;
		padding: 0px 15px;
		border-radius: 20px;
	}
	.img6ins{
		margin: 60px 0px 0px;
	}
	/*book a table*/
	.boxtn{
		margin-bottom: 20px;
		text-align: center;
	}
	/*=======================================review========================*/
.snip1356 .iconbtn,
	.snip1356.hover .iconbtn,
	.snip1356 figcaption,
	.snip1356.hover figcaption {
	  opacity: 1;
	  -webkit-transform: translateX(0px);
	  transform: translateX(0px);
	  -webkit-transition-delay: 0.2s;
	  transition-delay: 0.2s;
	}
	.snip1356 .image,
	.snip1356.hover .image {
	  bottom: 100%;
	  -webkit-transition-delay: 0s;
	  transition-delay: 0s;
	}
}
/*=======================ONLY X-SMALL=======================*/
@media(max-width: 575px){
	/*footer*/
	#cpr{
		text-align: center;
	}
	#mobilefooter .accordion {
  padding: 30px 20px 30px 0px;
	}
	#mobilefooter .menusm{
	padding: 30px 20px 30px 0px;
	}
	
	/*best specialties*/
	.sp1 .owl-nav{
	margin-top: -300px;
	color: #D6BB92;
	font-size: 25px;
	}
	.sp1 .owl-nav .owl-prev{
		position: absolute;
		right: -20px;
		z-index: -1;
	}
	.sp1 .owl-nav .owl-next{
		position: absolute;
		left: -20px;
		z-index: -1;
	}
	.iconbest li{
		margin: 0px 10px;
	}
	.iconbest li i{
		font-size: 25px;
		color: #D6BB92;
		
	}
	
	/*=======================================review========================*/
.snip1356 .iconbtn,
	.snip1356.hover .iconbtn,
	.snip1356 figcaption,
	.snip1356.hover figcaption {
	  opacity: 1;
	  -webkit-transform: translateX(0px);
	  transform: translateX(0px);
	  -webkit-transition-delay: 0.2s;
	  transition-delay: 0.2s;
	}
	.snip1356 .image,
	.snip1356.hover .image {
	  bottom: 100%;
	  -webkit-transition-delay: 0s;
	  transition-delay: 0s;
	}
	
	
	
	
	#brfootermobile1{
	height: auto;
	background-color: #9E0A0A;
	padding: 60px 0px 0px 0px;
}
	.tat, .aop, .tn {
  		margin-top: 0px;
	}
	.tn{
		margin: 0px 0px 30px 150px;
	}
	.bdsub{
		margin-top: 0px;
	}
	.payment{
		padding-left: 0px;
	}
	/*best specialties*/
	.ndbest {
		margin-top: 100px;
	}
	#bannerphu2 {
  	background-position: right;
  	background-size: cover;
  	height: 400px;
	margin-top: 200px;
}
	/*about us*/
.headingboxaboutu{
	color: white;
}
.boximgbodyaboutus2 h4{
	color: aliceblue;
	position: absolute;
	z-index: 5;
	top: 70px;
	left: 40px;
	font-size: 18px;
	margin-right: 130px;
}
.boximgbodyaboutus2 .ngoacdosm1{
	position: absolute;
	z-index: 10;
	top: 70px;
	width: 5%;
}
.boximgbodyaboutus2 .ngoacdosm2{
	position: absolute;
	z-index: 10;
	top: 140px;
	left: 140px;
	width: 5%;
	
}
.imgsmab1 img{
	width: 45%;
	left: 250px;
	position: absolute;
	z-index: 3;
}
.imgsmab1{
	margin-bottom: 400px;
}
.hcnsm1{
	height: 300px;
	width: 200px;
	border: 1px solid #D6BB92;
	border-radius: 10px;
	position: absolute;
	z-index: 2;
	left: 240px;
	top: -10px;
}
.bghcn2bgsm{
	height: 140px;
	width: 180px;
	border: 1px solid #D6BB92;
	border-radius: 10px;
	position: absolute;
	z-index: 9;
	top: -130px;
}
.boximgsmabu img{
	position: absolute;
	z-index: 10;
	top: 40px;
	left: 30px;
	width: 70%;
	top: -100px;
}
.boxbdabu2 p{
	color: white;
	position: absolute;
	z-index: 20;
	left: 230px;
	top: -80px;
}
.boxbdabu2{
	margin-bottom: 100px;
}
.boximgbdabu3 img{
	position: absolute;
	z-index: 20;
	left: 50px;
	width: 80%;
	top: -10px
}
.chnbgaboutus3{
	height: 200px;
	width: 200px;
	border: 1px solid #D6BB92;
	border-radius: 10px;
	position: absolute;
	top:-30px;
}
.bdaboutus3 p{
	color: white;
	position: absolute;
	left: 250px;
	top: 10px;
}
.bdaboutus3{
	margin-bottom: 200px;
}
	
	
	
	
	/*tablet mobile*/
.boxbdimg .ngoacdo1{
	position: absolute;
	top: 200px;
	z-index: 40;
	left: 10px;
	width: 6%;
}
.boxbdimg h4{
	color: white;
	position: absolute;
	left: 40px;
	top: 200px;
	z-index: 50;
	font-size: 18px;
}
.boxbdimg .ngoacdo2{
	position: absolute;
	top: 230px;
	left: 180px;
	z-index: 70;
	width: 6%;
}
.imgsm1 img{
	width: 60%;
	position: absolute;
	z-index: 20;
	left: 150px;
}
.imgsm1{
	margin-bottom: 400px;
}
.tendb p{
	position: absolute;
  color: white;
  opacity: 50%;
  top: 250px;
  left: 0px;
}
.hcn1{
	left: 200px;
	height: 400px;
	width: 260px;
	border-radius: 10px;
	border: 0.5px solid #D6BB92;
	top: 20px;
	position: absolute;
	z-index: 1;
}
.imgsm2 img{
	position: absolute;
	z-index: 40;
	width: 55%;
	top: 60px;
	
}
.imgsm2{
	margin-bottom: 400px;
}
.hddb2 .ngoac1p2{
	position: absolute;
	z-index: 60;
	top: -150px;
	left: 150px;
	width: 6%;
}
.hddb2 h4{
	position: absolute;
	z-index: 70;
	color: white;
	top: -150px;
	left: 190px;
	font-size: 18px;
}
.hddb2 .ngoac2p2{
	position: absolute;
	z-index: 60;
	top: -100px;
	left: 300px;
	width: 6%;
}
.tendb2 p{
	color: white;
	opacity: 50%;
	position: absolute;
	z-index: 70;
	top: -60px;
	left: 280px;
}
.hcn12 {
	height: 380px;
	width: 230px;
	position: absolute;
	z-index: 30;
	border: 0.5px solid #D6BB92;
	border-radius: 10px;
	top: 40px;
	left: 0px;
}
	/*follow ins*/
	.img4ins{
		width: 49%;
		padding: 0px 15px;
	}
	.img5ins{
		width: 49%;
		padding: 0px 15px;
	}
	.img6ins, .img7ins{
		width: 49%;
		padding: 0px 15px;
	}
	.img6ins{
		margin: 30px 0px 0px;
	}
}





