/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: 'Noto Sans TC', sans-serif;
  color: #444444;
  background: #fff;
  font-size: 16px;
  font-weight: 300;
}

a {
  color: #5846f9;
}

a:hover {
  color: #8577fb;
  text-decoration: none;
}

.gold{
  color: #bf5f38;
  font-weight: 400;
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.totop {
  cursor: pointer;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #d6ad3c;
  border-top-color: #e7e4fe;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
}
.gold-bg{
  background: rgba(214, 173, 60, 0.8);
}
@media (max-width: 768px) {
.gold-bg{
display: none;
}
}
#header.header-scrolled, #header.header-inner-pages {
  background: transparent;
  padding: 12px 0;
}

#header .logo {
  font-size: 32px;
  margin: 0;
  padding: 0 0 0 10px;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
}


#header .logo a {
  color: #fff;
}

#header .logo img {
  max-height: 40px;
}

@media (max-width: 992px) {
  #header {
    padding: 12px 0;
  }
  #header .logo {
  padding: 0;
  }
}
.bg{
  width: 100%;
  height: 100vh;
position: fixed;	
	  background: radial-gradient(4rem,
    rgba(255,255,255,0) 97%, 
    #f9f9f9 80%, #f9f9f9 99%, 
    rgba(255,255,255, 0) 
    ) 0 0,
    radial-gradient(4rem,
    rgba(255,255,255,0) 97%, 
    #f9f9f9 80%, #f9f9f9 99%,  
    rgba(255,255,255, 0) 
    ) 4em 4em,
    radial-gradient(0rem,
    rgba(255,255,255,0) 50%, 
    #B1C2B3 50%,
    #B1C2B3 75%, #B1C2B3 99%, 
    rgba(255,255,255, 0) 
    ) 4em 4em,
    radial-gradient(0rem,
    rgba(255,255,255,0) 50%, 
    #B1C2B3 50%,
    #F5FCD0 75%, #B1C2B3 99%, 
    rgba(255,255,255, 0) 
    ) 0 0;
  background-size: 8rem 8rem;
  background-color: #fff;
  z-index: -1;
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu ul {
  margin: 0;
  padding: 0 15px 0 0;
  list-style: none;
}

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

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
  padding: 10px 0 10px 24px;
}

.nav-menu a {
  display: block;
  position: relative;
  color: #fff;
  transition: 0.3s;
  font-size: 15px;
  font-weight: 300;
  padding: 0 3px;
}

.nav-menu > ul > li > a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: -5px;
  left: 0;
  background-color: #fff;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}

.nav-menu a:hover:before, .nav-menu li:hover > a:before, .nav-menu .active > a:before {
  visibility: visible;
  width: 100%;
}

.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
  color: #fff;
  font-weight: 500;
}

.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 22px;
  top: calc(100% + 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.nav-menu .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.nav-menu .drop-down li {
  min-width: 180px;
  position: relative;
}

.nav-menu .drop-down ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  color: #2c4964;
}

.nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
  color: #5846f9;
}

.nav-menu .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.nav-menu .drop-down .drop-down > a {
  padding-right: 35px;
}

.nav-menu .drop-down .drop-down > a:after {
  content: "\eaa0";
  font-family: IcoFont;
  position: absolute;
  right: 15px;
}

@media (max-width: 1366px) {
  .nav-menu .drop-down .drop-down ul {
    left: -90%;
  }
  .nav-menu .drop-down .drop-down:hover > ul {
    left: -100%;
  }
  .nav-menu .drop-down .drop-down > a:after {
    content: "\ea9d";
  }
}

/* Mobile Navigation */
.mobile-nav-toggle {
  position: fixed;
  right: 15px;
  top: 15px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  color: #fff;
}

.mobile-nav {
  position: fixed;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  z-index: 9999;
  overflow-y: auto;
  background: #fff;
  transition: ease-in-out 0.2s;
  opacity: 0;
  visibility: hidden;
  border-radius: 10px;
  padding: 10px 0;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #2c4964;
  padding: 10px 20px;
  font-weight: 500;
  outline: none;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
  color: #5846f9;
  text-decoration: none;
}

.mobile-nav .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down > a:after {
  content: "\eaa1";
}

.mobile-nav .drop-down > a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(28, 47, 65, 0.6);
  overflow: hidden;
  display: none;
  transition: ease-in-out 0.2s;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}

/*--------------------------------------------------------------
# kv Section
--------------------------------------------------------------*/
#kv {
  width: 100%;
  height: 100vh;
position: relative;
background: #fffbd0;
}

#kv::before {
	content: ""; 
	position: absolute; 	
  height:100%;
  width: 100%;
 	background: url(../img/bg-light.png) no-repeat;
 	background-position: right 35% bottom 50%;
	background-size: cover; 
  animation: bg-sparkle 6s infinite ease-in-out;

}



@keyframes bg-sparkle {
  0% {
	  opacity: 0.3;
    transform: scale(1);

  }
  
 50% {
    	  opacity: 0.7 ;	  
    transform: scale(1.1);

  }
  
  100% {
    transform: scale(1);
	  opacity: 0.3;

  }
}


.circle-gold{
  position: absolute; 	
  	background: url(../img/circle-gold.png) no-repeat center center; 
  		background-size: contain; 
  left: -50px;
  bottom: -50px;
  height:250px;
  width: 250px;	
  border-radius: 50%;
   opacity: 0.5; 
  -webkit-animation: rotating 50s linear infinite;
  -moz-animation: rotating 50s linear infinite;
  -ms-animation: rotating 50s linear infinite;
  -o-animation: rotating 50s linear infinite;
  animation: rotating 50s linear infinite;
}
.circle-red{
  position: absolute; 	
  background: url(../img/circle-red.png) no-repeat center center; 
  background-size: contain; 
  top: -80px;
  right: -80px;
  height:300px;
  width: 300px;	
  border-radius: 50%;
  opacity: 0.9;
  -webkit-animation: rotating 50s linear infinite;
  -moz-animation: rotating 50s linear infinite;
  -ms-animation: rotating 50s linear infinite;
  -o-animation: rotating 50s linear infinite;
  animation: rotating 50s linear infinite;
}
@-webkit-keyframes rotating /* Safari and Chrome */ {
  from {
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotating {
  from {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}


#kv .container, #kv .container-fluid {
  padding-bottom: 60px;
}

#kv h1 {
  margin: 0;
width: 160px;
  margin: 0 0 0 30px;
}

#kv h2 {
  color: #555;
  margin: 30px 0 0 30px;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.8;
}


#kv .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

#kv .kv-img img {
    width: 100%;
    max-height: 80vh;
    width: auto;
  margin: auto;
  display: block;    
  }

@media (min-width: 1400px) {
#kv h1 {
width: 190px;
}
  #kv h2 {
  margin: 30px 0 0 0;
    font-size: 20px;
  }
.circle-gold{
  left: -80px;
  bottom: -80px;
  height:380px;
  width: 380px;		
}
.circle-red{
  top: -100px;
  right: -100px;
  height:420px;
  width: 420px;	
    opacity: 0.9;	
}  
}
@media (max-width: 991px) {
  #kv {
    text-align: center;
  }
  #kv .container, #kv .container-fluid {
/*     padding-top: 68px; */
  }
#kv h1 {
  margin: 0 auto;
  width: 150px;
}
  #kv .kv-img {
    text-align: center;
  }
  #kv .kv-img img {
    width: 60%;
    max-height: 85vh;
  }
}

@media (max-width: 768px) {

  #kv h2 {
  margin: 30px 0 0 0;
  }
  #kv .kv-img img {
/*     width: 60%; */
  }
}

@media (max-width: 575px) {
 #kv h1 {
  margin: 0 auto;
  width: 110px;
}
#kv h2 {
  font-size: 12px;
}
  #kv .kv-img img {
     width: 70%; 
  }
}
@media (max-width: 320px) {
 #kv h1 {
  margin: 0 auto;
  width: 100px;
  margin: 0 ;
}
  #kv h2 {
  margin: 15px 0 0 0;
  }
  #kv .kv-img img {
     width: 60%; 
  }
  .kv-text{
	  padding-top: 0 !important;
  }
}
/*

@-webkit-keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}
*/

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 100px 0;
  overflow: hidden;
}
@media (max-width: 576px) {
	section {
  padding: 80px 0;
  overflow: hidden;
}
}
.section-bg {
 
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
   
  font-size: 30px;
  font-weight: 300;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #d6ad3c;
}

.section-title h2::after {
  content: '';
  position: absolute;
  display: block;
  width: 80px;
  height: 1px;
  background: #d6ad3c;
  bottom: 0;
  left: calc(50% - 40px);
}

/*
.section-title p {
  margin-bottom: 0;
}
*/

.section-subtitle{
	text-align: left;  
	font-size: 26px;
	font-weight: 300;
	margin-bottom: 10px;
}

.section-text{
	font-weight: 300;
	text-align: left;
	font-size: 14px;
	line-height: 1.7;
	margin-bottom:5px;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about {

}

.about .section-title h2{
	color: #d6ad3c;
}
.about .section-title h2::after{
	background: #d6ad3c;
}
.about .section-subtitle{
  color: #444;
  font-size: 24px;
  font-weight: 300;
}

.about .section-text{
  color: #444;
}

.about .content h3 {
/*    	 */
  font-weight: 500;
  font-size: 21px;
	color: #d6ad3c;
  margin-bottom: 20px;
}


.about .content p:last-child {
  margin-bottom: 0;
}


.content-text, .content-detail{
	color: #999;
	font-size: 20px;
	line-height: 1.8;
}


/*
.about-12y{
	margin-bottom: 50px;
}
@media (max-width: 767px) {
.about-12y{
	margin-bottom: 50px;
}
*/
.content-text, .content-detail{
	color: #999;
	font-size: 18px;
	line-height: 1.8;
}
}


/*--------------------------------------------------------------
# info
--------------------------------------------------------------*/
.info{

}

.info .icon-box {
  text-align: center;
  padding: 70px 20px 80px 20px;
  transition: all ease-in-out 0.3s;
  background: #fffef8;
  border: 1px solid #d6ad3c;
}

.info .icon-box .icon {
  margin: 0 auto;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease-in-out 0.3s;
  position: relative;
}
.info .icon-box .icon i{
  color: #d6ad3c;
  font-size: 50px;
}

.info .icon-box h4 {
   	
  font-weight: 400;
  margin: 5px 0 20px 0;
  font-size: 22px;
  color: #d6ad3c;
}
.info .icon-box h6 {
   	
  font-weight: 800;
  font-size: 12px;
  margin: 5px 0 0 0;
  color: #d6ad3c;
}


.info .icon-box:hover {
  border: 1px solid #d6ad3c;
  background: #fffef8;
  transform: translateY(-10px);  
/*   box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1); */
}




.blob {
  border-radius: 50%;
  margin: 10px;
  height: 52px;
  width: 52px;
  transform: scale(1);
  background: #d6ad3c;
  box-shadow: 0 0 0 0 rgba(214, 173, 60, 1);
  animation: pulse-gold 3s infinite;
}


@keyframes pulse-gold {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(214, 173, 60, 0.7);
  }
  
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 15px rgba(214, 173, 60, 0);
  }
  
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(214, 173, 60, 0);
  }
}

.blob p{
	color: #fff;
     	
    font-weight: 300;
    line-height: 52px;
    font-size: 20px;
}

.terms{
/* 	margin-top: 50px; */
	font-size: 13px;
	font-weight: 300;
	color: #999;
	list-style-type: decimal;
	margin-left: 15px;
	line-height: 2;
}
.terms-title{
	font-size: 18px;
	color: #444;
	font-weight: 300;
	margin-bottom: 20px;
	text-align: center;
}

/*--------------------------------------------------------------
# restaurants
--------------------------------------------------------------*/
.restaurants .restaurant-item {
  background: #fff;
  box-sizing: content-box;
  min-height: 320px;
  margin: 0 20px 30px 20px;
  transition: all 0.2s ease-in-out;
}
#taichung{



}
#taipei{	
  width: 100%;
height: 100%;
position: relative;
/* background-color: #fffbd0; */
background-origin: border-box;
 	background: url(../img/bg-tl.png) no-repeat top left #fffbd0;
	background-size: 80%; 
}
#kaohsiung{	
  width: 100%;
height: 100%;
position: relative;
/* background-color: #fffbd0; */
background-origin: border-box;
 	background: url(../img/bg-tr.png) no-repeat top right #fffbd0;
	background-size: 80%; 
}
@media (max-width: 576px) {
#taipei{	
	background-size: 100%; 
}
#kaohsiung{	
	background-size: 100%; 
}	
}


.restaurants .section-text{
  font-size: 15px;
}
.restaurants .small{
	font-weight: 300;
	color: #d6ad3c;
}
.taichung .restaurant-item {
border: 1px solid #eee;
}
.restaurants .restaurant-item a{
  color: #444;
}

.restaurants .restaurant-item:hover{
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.restaurant-content {
  padding: 25px;
}

.restaurants .restaurant-item h3 {
  font-weight: 300;
  font-size: 20px;
  color: #d6ad3c;
     
}

.restaurants .restaurant-content .restaurant-text {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    font-size: 14px;
    margin-bottom: 5px;
}
.restaurant-profile {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #eef0ef;
}
.restaurant-profile i{
  color: #d6ad3c;
}
.restaurant-profile p{
  font-size: 12px;
  color: #aaa;
  margin-bottom: 0px;
  line-height: 1.6;
}

.restaurants .owl-nav, .restaurants .owl-dots {
  margin-top: 5px;
  text-align: center;
}

.restaurants .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd !important;
}

.restaurants .owl-dot.active {
  background-color: #d6ad3c !important;
}




/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  font-size: 12px;
  background: #fffef7;
  padding-bottom: 10vh;
  color: #d6ad3c;;
}


#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  border: 1px solid #d6ad3c;
  color: #d6ad3c;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}
@media (max-width: 320px){
#footer {
  font-size: 11px;
}
.social-links{
	width: 40%;
}
#footer .social-links a {
  font-size: 14px;
  display: inline-block;
  border: 1px solid #d6ad3c;
  color: #d6ad3c;
  line-height: 1;
  padding: 8px 0;
  margin:0 0 0 3px;
  border-radius: 50%;
  text-align: center;
  width: 32px;
  height: 32px;
  transition: 0.3s;

}
}
#footer .social-links a:hover {
  background: #d6ad3c;
  color: #fff;
  text-decoration: none;
}
/* 警語 */
.copyrightLarge {
/*
    font-size: 1.6em;
    font-weight: 300;
    letter-spacing: 1.1em;
    line-height: 1.2em;
    padding: .5em;
    margin-top: 10px;
*/
    width: 100%;
    height: 10vh;
    position: fixed;
    bottom: 0;
    text-align: center;
    z-index: 3;
    background: url(../img/alcohol_web.png) no-repeat center center rgba(214, 173, 60, 0.8);
    background-size:contain;
}
.copyrightLarge img {

}
@media (max-width: 768px){
.copyrightLarge {
    background: url(../img/alcohol_web-s.png) no-repeat center center rgba(214, 173, 60, 0.8);
    background-size:contain;
}
}
/* menu */
* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  background-size: cover;
  background-repeat: no-repeat;
  font-family: sans-serif;
}

.landing-page {
  height: 100vh;
  width: 100%;
  background-color: lightcoral;
}
.menu-btn {
  position: fixed;
  top: 15px;
  right: 15px;
  height: 50px;
  width: 50px;
  border-radius: 100%;
  background-color: #d6ad3c;
  z-index: 6;
}
.menu-btn:hover {
  cursor: pointer;
}
.overlay {
  position: fixed;
  top: 15px;
  right: 15px;
  height: 50px;
  width: 50px;
  border-radius: 100%;
  background-color: #d6ad3c;
  transition-duration: 700ms;
  z-index: 4;
}
.overlay.active {
  transform: scale(100, 100);
}
.menu-container {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  z-index: -10;
  opacity: 0;
  transition: opacity 1500ms;
  display: flex;
  justify-content: center;
  align-items: center;
}
.menu-container .menu-wrapper {
  list-style: none;
      display: flex;
    flex-direction: column;
    list-style: none;
    margin: 0;
    padding: 0;
}
.menu-container .menu-wrapper li {
  margin: 10px 0;
  display: flex;
  justify-content: center;
}
.menu-container .menu-wrapper li a {
  text-decoration: none;
  letter-spacing: 5px;
  font-weight: 300;
  font-size: 22px;
  color: rgba(255, 255, 255, 1);
/*   -webkit-text-stroke: 1.4px #343436; */
  transition-duration: 200ms;
}
.menu-container .menu-wrapper li a:hover {
  color: #fff;
  font-weight: 400;
}
.menu-container .menu-wrapper li span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 68vmin;
  font-weight: 900;
  color: rgba(0, 0, 0, 0.2);
}
.menu-container .menu-underlay {
  position: absolute;
  top: 100px;
  left: 100px;
  background-color: lightblue;
}
.menu-container.active {
  transition-delay: 00ms;
  opacity: 1;
  z-index: 5;
}
.landing-page-content {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #343436;
  color: #f8f8f8;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.landing-page-content div {
  font-size: 20vmin;
  font-weight: 700;
}
.landing-page-content div span {
  font-size: 40px;
  font-weight: 400;
}
.menu__line {
  display: block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 22px;
  height: 2px;
  background-color: #fffac6;
  border-radius: 13px;
  transition-duration: .4s;
}
.menu__line:nth-child(1) {
  top: 15px;
}
.menu__line:nth-child(2) {
  top: 24px;
}
.menu__line:nth-child(3) {
  bottom: 15px;
}
.menu-btn.active {
  background-color: rgba(0, 0, 0, 0);
  box-shadow: none;
}
.menu-btn.active .menu__line:nth-child(1) {
  transform: translate(-12px, 9px) rotate(-45deg);
}
.menu-btn.active .menu__line:nth-child(2) {
  transition-duration: 0s;
  opacity: 0;
}
.menu-btn.active .menu__line:nth-child(3) {
  transform: translate(-12px, -9px) rotate(45deg);
}

/*--------------------------------------------------------------
# over18
--------------------------------------------------------------*/
.kv-logo img{
	width: 300px;
	margin-bottom: 30px;
}
.over18-q {
	color: #d6ad3c;
	 
	font-size: 32px;
}
.over18-a img{
	width: 150px;
	margin: 30px 10px 0 10px;
}
.over18-w{
	display: none;
}
.over18 .circle-gold{
  left: -80px;
  bottom: -80px;
  height:350px;
  width: 350px;		
}
.over18 .circle-red{
  top: -80px;
  right: -80px;
  height:320px;
  width: 320px;	
    opacity: 0.9;	
}
@media (max-width: 576px) {
.kv-logo img{
	width: 280px;
	margin-bottom: 30px;
}	
.over18-q {
	color: #d6ad3c;	 
	font-size: 28px;
}
.over18 .circle-red{
  top: -90px;
  right: -90px;
  height:250px;
  width: 250px;	
    opacity: 0.9;	
}
.over18 .circle-gold{
  left: -80px;
  bottom: -80px;
  height:280px;
  width: 280px;		
}	
.over18-a img{
	width: 120px;
	margin: 30px 5px 0 5px;
}
}
/*--------------------------------------------------------------
# arrow
--------------------------------------------------------------*/
.kv-arrow {
    width: 100%;
    position: absolute;
    bottom: 0;
    z-index: 2;
}
.arrow_box {
    position: absolute;
    right: 0;
    left: -24px;
    bottom: 10vh;
    display: block;
    width: 24px;
    height: 24px;
    margin: 30px auto;
    animation-name: SlideDown;
    animation-duration: 3s;
    animation-iteration-count: infinite;
}
.arrow_box::before {
    content: '';
    width: 24px;
    height: 24px;
    border: 0px;
    border-top: solid 2px #bf5f38;
    border-right: solid 2px #bf5f38;
    -ms-transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    position: absolute;
}
@keyframes SlideDown {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }
    60% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateY(0);
    }
    }
@media (max-width: 576px){
.arrow_box {
    position: absolute;
    right: 0;
    left: -20px;
    bottom: 10vh;
    display: block;
    width: 20px;
    height: 20px;
    margin: 10px auto;
    animation-name: SlideDown;
    animation-duration: 3s;
    animation-iteration-count: infinite;
}
.arrow_box::before {
    content: '';
    width: 20px;
    height: 20px;
    border: 0px;
    border-top: solid 1px #bf5f38;
    border-right: solid 1px #bf5f38;
    -ms-transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    position: absolute;
}	
}  
/* gift */
#gift .section-title h2{
	 color: #fff;
}
#gift .section-title h2::after {

    background: #fff;

}
#gift .section-title{
	padding-bottom: 20px;
}
#gift .section-text{
	color: #fff;

}
	
#gift{	
  width: 100%;
height: 100%;
position: relative;
/* background-color: #fffbd0; */
background-origin: border-box;
 	background: url(../img/bg-12.jpg) no-repeat top center;
	background-size: cover; 
} 
#gift30{	
  width: 100%;
height: 100%;
position: relative;
/* background-color: #fffbd0; */
background-origin: border-box;
 	background: url(../img/bg-30.jpg) no-repeat top center ;
	background-size: cover; 
} 
.gift .content h3 {
  font-weight: 500;
  font-size: 28px;
	color: #ffe5c4;
	line-height: 38px;
  margin-bottom: 15px;
}
#gift30 .content h3 {
  font-weight: 500;
  font-size: 28px;
  color: #542913;
  line-height: 38px;
  margin-bottom: 15px;
}
@media (max-width: 768px) {
.gift .content h3,#gift30 .content h3  {

  font-size: 24px;

}	
}
.gift .content p:last-child {
  margin-bottom: 0;
}


.gift .content-text{
	color: #ffe5c4;
	font-size: 18px;
	line-height: 1.8;
}
#gift30 .content-text{
	color: #6a371b;
	font-size: 18px;
	line-height: 1.8;
}

.gift .content-detail{
	color: #444;
	font-size: 15px;
	line-height: 1.8;
}
.stockist{
	border: 1px solid ;
	border-color: rgba(255,229,196,0.5);
	padding: 25px 15px;
	margin-top:30px; 
}
#gift30 .stockist{
	border: 1px solid ;
	border-color: rgba(84,41,19,0.5);
	padding: 25px 15px;
	margin:30px 0 10px 0; 
}
.stockist-title{
	font-size: 18px;
	color: #ffe5c4;
	text-align: left;
}
#gift30 .stockist-title{
	font-size: 18px;
	color: #542913;
	margin-bottom: 18px;
	text-align: left;
}
.stockist-gold{
	color: #d6ad3c;
	font-weight: 400;
}
.stockist-txt{
	font-size: 18px;
	color: #ffe5c4;
}
#gift30 .stockist-txt{
	font-size: 15px;
	color: #542913;
}
.stockist-shop{
	font-size: 18px;
	color: #999;
}
#gift30 .stockist-shop{
	font-size: 15px;
	color:#666;
}
/* regent */
#regent{	
	width: 100%;
	height: 100%;
	position: relative;
	/* background-color: #fffbd0; */
	background-origin: border-box;
	background: url(../img/bg-silks.jpg) no-repeat center center;
	background-size: cover;
	background-attachment: fixed;
} 
#regent h2 {
	color: #fff;
	margin: 0 35px 0 40px;
	font-weight: 300;
	font-size: 16px;
	line-height: 1.8;
}
@media (max-width: 576px){
#regent h2 {
	font-size: 15px;
}	
}

.regent-btn{
	color: #000;
	background: #d6ad3c;
	padding: 10px;
	font-weight: 400;
	text-align: center;
	margin: 30px auto;
	width: 80%;
}
.regent-btn:hover{
	color: #000;	
	background: #fad973;
}

#regent .icon-box {
	text-align: center;
	padding: 70px 20px 80px 20px;
	transition: all ease-in-out 0.3s;
	/*   background: #f0e7ca; */
	background: #f9f1da;
	border: 3px solid #d6ad3c;
}

#regent .icon-box .icon {
	margin: 0 auto;
	width: 100px;
	height: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: ease-in-out 0.3s;
	position: relative;
}
#regent .icon-box .icon i{
	color: #d6ad3c;
	font-size: 50px;
}

#regent .icon-box h4 {   	
	font-weight: 400;
	margin: 5px 0 20px 0;
	font-size: 22px;
	color: #d6ad3c;
}
#regent .icon-box h6 { 	
	font-weight: 800;
	font-size: 12px;
	margin: 5px 0 0 0;
	color: #d6ad3c;
}


#regent .icon-box:hover {
    transform: translateY(-10px);  
/*   box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1); */
}


#regent .terms{
/* 	margin-top: 50px; */
	font-size: 13px;
	font-weight: 300;
	color: #d6ad3c;
	list-style-type: decimal;
	margin-left: 15px;
	line-height: 2;
}
#regent .terms-title{
	font-size: 18px;
	color: #d6ad3c;
	font-weight: 300;
	margin-bottom: 20px;
	text-align: center;
}
#regent .restaurant-item {
	background: #fff;
	box-sizing: content-box;
	min-height: 320px;
	margin: 0 20px 30px 20px;
	transition: all 0.2s ease-in-out;
}



#regent .section-text{
	font-size: 15px;
}
#regent .small{
	font-weight: 300;
	color: #d6ad3c;
}

#regent .restaurant-item a{
	color: #444;
}

#regent .restaurant-item:hover{
	box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
	transform: translateY(-5px);
}

#regent .restaurant-content {
	padding: 25px;
}

#regent .restaurant-item h3 {
	font-weight: 300;
	font-size: 20px;
	color: #d6ad3c;     
}

#regent .restaurant-content .restaurant-text {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	font-size: 14px;
	margin-bottom: 5px;
}

#regent .section-title h2 {  
	font-size: 30px;
	font-weight: 300;
	text-transform: uppercase;
	margin-bottom: 20px;
	padding-bottom: 20px;
	position: relative;
	color: #fff;
}
#regent .section-title h2::after {
	background: #fff;
}
#regent .section-title p {
	color: #fff;
}