:root {
  --font-default: "Poppins";
  --font-primary: "Satisfy", serif, sans-serif;
  /*--font-secondary: "interregular", sans-serif;*/
}

/* Colors */
:root {
  --color-default: #444444;
  --color-white: #ffffff;
 /* --color-primary: #ce1212;*/
  /*--color-secondary: #37373f;*/
}


:root.dark {
  --color-primary: #936B11;
  --color-secondary: #444444;
  --bg-color: rgba(12, 11, 10, 0.5);
  --bg-color2: #f3f7ec;
  --text-color: #ffffff;
  --text-color2: #ffb03b;
}
:root,
:root.light {
  --color-primary: #bc9b62;/*DD5900*/
  --color-secondary: #37373f;
  --bg-color: none;
  --bg-color2: #f3f7ec;
 --text-color: #333333;
  --text-color2: #936B11;

}

body {
  font-family: var(--font-default); font-size: 14px;
  color: var(--color-default); 
}
a {
  text-decoration: none;
  color: var(--color-default);
}

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

h1, h2, h3, h4, h5, h6 {
  color: var(--color-secondary);
  font-family: var(--font-default);
}

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 15px;
  line-height: 1.2;
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
  color: inherit;
}

h1 {
  font-size: 60px;
  font-weight: 300;
}

h2 {
  font-size: 43px;
  font-weight: 300;
}

h3 {
  font-size: 28px;
  font-weight: 400;
}

h4 {
  font-size: 20px;
  font-weight: 500;
}

h5 {
  font-size: 15px; font-weight: 700;
}

h6 {
  font-size: 13px;
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 22px;
  }

  h4 {
    font-size: 18px;
  }

  h5 {
    font-size: 14px;
  }

  h6 {
    font-size: 12px;
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #ffb03b;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #ffc064;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  padding: 0;
  font-size: 15px;
  height: 50px;
  transition: all 0.5s;
  background: rgba(26, 24, 22, 0.8);
  z-index: 996;
  color: rgba(255, 255, 255, 0.7);
}

#topbar.topbar-transparent {
  background: transparent;
}

#topbar.topbar-scrolled {
  top: -50px;
}

#topbar i {
  color: #ffb03b;
  line-height: 0;
}

#topbar i span {
  color: #fff;
  font-style: normal;
  padding-left: 5px;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
/*#header {
  top: 50px;
  height: 70px;
  z-index: 0;
  transition: all 0.5s;
  padding: 10px 0;
  background: rgba(26, 24, 22, 0.85);
}

#header.header-transparent {
  background: transparent;
}

#header.header-scrolled {
  top: 0;
  background: rgba(26, 24, 22, 0.85);
}

#header .logo h1 {
  font-size: 28px;
  margin: 0;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 3px;
}

#header .logo h1 a,
#header .logo h1 a:hover {
  color: #fff;
  text-decoration: none;
}

#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 40px;
}*/

/*--------------------------------------------------------------
# Book a table button Menu
--------------------------------------------------------------*/
.book-a-table-btn {
  background: #ffb03b;
  color: #fff;
  border-radius: 50px;
  margin: 0 0 0 20px;
  padding: 10px 25px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  transition: 0.3s;
  white-space: nowrap;
}

.book-a-table-btn:hover {
  background: #ffa012;
  color: #fff;
}

@media (max-width: 992px) {
  .book-a-table-btn {
    margin: 0 15px 0 0;
    padding: 8px 20px;
    letter-spacing: 1px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  /*justify-content: space-between;*/
  padding: 10px 0 10px 24px;
  font-size: 15px;
  font-weight: 400;
  color: var(--text-color);
  white-space: nowrap;
  transition: 0.3s;
}
.navbar img{ margin-right: 3px}
.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: var(--text-color2);
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 24px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: var(--color-white);
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 400;
  color: var(--color-default);
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: var(--color-white);
		background-color: var(--color-primary);padding-left: 30px;

}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #ab9c3f;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(39, 37, 34, 0.9);
  transition: 0.3s;
  z-index: 0;
}
.navbar-mobile .bi-x .mobile-nav-toggle{z-index:1000 }
.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 8px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #433f39;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #ffb03b;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: var(color-primary);
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}
/*--------------------------------------------------------------
# main Section
--------------------------------------------------------------*/

#main{overflow-x: hidden}
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

#hero {
  width: 100%;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.8);
  overflow: hidden;
  padding: 0;
}

#hero .carousel-item {
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#hero .carousel-item::before {
  content: "";
  background-color: var(--bg-color);
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

#hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero .carousel-content {
  text-align: left; width: 80%;
}
@media (max-width: 575px) {
  #hero .carousel-content{
    margin-top: 330px;
  }  
	  #hero.inner-banner .carousel-content{
    margin-top: 530px; 
}

  
}
#hero h2 {
  color: var(--color-primary); ;
  margin-bottom: 30px;
  font-size: 38px;
  font-weight: 400;text-shadow: 1px 1px #ffffff
}

#hero h2 span {
  color: #ffb03b;
}

#hero p {
  animation-delay: 0.4s;
  /*margin: 0 auto 30px auto;*/
  color: var(--text-color); text-shadow: 1px 1px #ffffff;
}

#hero .carousel-inner .carousel-item {
  transition-property: opacity;
  background-position: right top;
}

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  opacity: 0;
}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
  opacity: 1;
  transition: 0.5s;
}

#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  left: 0;
  transform: translate3d(0, 0, 0);
}

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
  font-size: 30px;
  line-height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  transition: 0.3s;
  color: rgba(255, 255, 255, 0.5);
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#hero .carousel-control-next-icon:hover,
#hero .carousel-control-prev-icon:hover {
  background: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.8);
}

#hero .carousel-indicators li {
  cursor: pointer;
}

#hero .btn-menu,
#hero .btn-book, .button-primary {
  font-weight: 400;
  font-size: 13px;
  text-transform: uppercase;
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  transition: 0.5s;
  line-height: 1;
  margin: 0 10px;
  animation-delay: 0.8s;
  color: #fff;
  background-color: var(--color-primary);
}

#hero .btn-menu:hover,
#hero .btn-book:hover, .button-primary:hover{
  background: var(--text-color2);
  color: var(--color-white);
}

@media (max-width: 768px) {
  #hero h2 {
    font-size: 23px;
  }
}

@media (min-width: 1024px) {
  #hero p {
    width: 50%;
  }

  #hero .carousel-control-prev,
  #hero .carousel-control-next {
    width: 5%;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 38px 0;
}

.section-bg {
  background-color: white;
}
h1.section-title  {
  font-size: 30px;
  font-weight: 300;
}

.section-title h2 span {
  color: #ffb03b;
}

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


.section-title p {
  margin: 15px auto 0 auto;
  font-weight: 300;
}

@media (min-width: 1024px) {
  .section-title p {
    width: 50%;
  }
}*/

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  background-color: #f2f1ef;
  min-height: 40px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    /*margin-top: 70px;*/
  }
}

.breadcrumbs h2 {
  font-size: 18px;
  font-weight: 300;
  margin: 0;
}

@media (max-width: 992px) {
  .breadcrumbs h2 {
    margin: 0 0 10px 0;
  }
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #6c757d;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}
/*--------------------------------------------------------------
>>> Home About Section  
----------------------------------------------------------------*/
.section-about {
  padding-top: 70px;
  position: relative;
  z-index: 2; 
}
.section-about .section-shape {
  /*background-image: url("../img/shape1.png");*/
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -ms-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  height: 70px;
  width: 100%;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 9;
}
.section-about .about-icon-wrap {
  margin-top: 120px;
  margin-bottom: -150px;
}
.section-about .about-content {
  margin: 40px 0;
}
@media screen and (min-width: 1200px) {
  .section-about .section-about-container .row {
    margin: 0 -30px;
  }
  .section-about .section-about-container .row [class*=col-] {
    padding: 0 30px;
  }
}
@media screen and (max-width: 575px) {
  .section-about {
    padding-top: 50px;
  }
  .section-about .about-icon-wrap {
    margin-top: 70px;
  }
}

.about-image img {
  width: 100%;
}
.about-image .about-contact {
  background-color: var(--color-white);
  box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.1);
  padding: 25px;
  text-align: center;
  margin-top: -50px;
  margin-right: 50px;
  margin-left: 50px;
  position: relative;
}
.about-image .about-contact h3 {
  color: #bc9b62;
  margin-bottom: 0;
}
@media screen and (max-width: 575px) {
  .about-image .about-contact {
    margin-right: 20px;
    margin-left: 20px;
  }
}

/*.about-video-banner {
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -ms-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  min-height: 375px;
}*/

.about-content p {
  margin-bottom: 25px;
}
.about-content ul {
  padding: 0;
  margin: 0 0 30px;
}
.about-content li {
  list-style: none;
  margin-bottom: 5px;
  padding-left: 25px;
  position: relative;
}
.about-content li i {
  color: #bc9b62;
  margin-right: 5px;
  font-size: 18px;
  position: absolute;
  top: 4px;
  left: 0;
}

.section-about-container {
  position: relative;
}
.section-about-container [class*=-background-pattern] {
  position: absolute;
  z-index: -1;
}
.section-about-container [class*=-background-pattern] img {
  opacity: 0.7;
}
.section-about-container .left-background-pattern {
  bottom: 0;
  left: 0;
}
.section-about-container .left-background-pattern img {
  width: 100%;
}
.section-about-container .right-background-pattern {
  top: -10%;
  right: 0;
  text-align: right;
}
.section-about-container .right-background-pattern img {
  width: 50%;
  opacity: 0.5;
}
@media screen and (min-width: 1400px) {
  .section-about-container .right-background-pattern img {
    width: 100%;
  }
}
@media screen and (max-width: 991px) {
  .section-about-container [class*=-background-pattern] {
    display: none;
  }
}

.about-icon-box {
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -ms-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.08);
  padding: 45px;
  position: relative;
  z-index: 1;
}
.about-icon-box .overlay {
  background-color: rgba(255, 255, 255, 0.9);
}
@media screen and (max-width: 575px) {
  .about-icon-box {
    padding: 30px 20px;
  }
}

.icon-box-wrap .row {
  margin-bottom: -40px;
}
.icon-box-wrap .icon-box-item {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding-bottom: 40px;
}
.icon-box-wrap .icon-box {
  background-color: #bc9b62;
  color: var(--color-white);
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  border-radius: 100%;
  height: 70px;
  text-align: center;
  width: 70px;
}
.icon-box-wrap .icon-box i {
  font-size: 35px;
  line-height: 70px;
}
.icon-box-wrap .icon-box-content {
  width: -moz-calc(100% - 70px);
  width: -webkit-calc(100% - 70px);
  width: calc(100% - 70px);
  padding-left: 20px;
}
.icon-box-wrap .icon-box-content h4 {
  margin-bottom: 10px;
}
.icon-box-wrap .icon-box-content p:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 575px) {
  .icon-box-wrap .row {
    margin-bottom: -30px;
  }
  .icon-box-wrap .icon-box-item {
    padding-bottom: 30px;
  }
  .icon-box-wrap .icon-box {
    height: 50px;
    width: 50px;
  }
  .icon-box-wrap .icon-box i {
    font-size: 25px;
    line-height: 50px;
  }
  .icon-box-wrap .icon-box-content {
    width: -moz-calc(100% - 50px);
    width: -webkit-calc(100% - 50px);
    width: calc(100% - 50px);
  }
}

/*--------------------------------------------------------------
>>> Home Offer Section  
----------------------------------------------------------------*/
.offer-section {
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -ms-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  /*padding-top: 270px;*/
  padding-bottom: 175px;
  position: relative;
  z-index: 1;
}
.offer-section .section-heading .section-title {
  color: var(--color-white);
}
.offer-section:before {
  content: "";
  background-image: url(assets/images/section-shape-img2.png);
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -ms-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  height: 70px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9;
}
.offer-section:after {
  content: "";
  background-image: url(assets/images/section-shape-img1.png);
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -ms-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  height: 70px;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 9;
}
@media screen and (max-width: 575px) {
  .offer-section {
    /*padding-top: 230px;*/
    padding-bottom: 100px;
  }
  .offer-section:before, .offer-section:after {
    height: 40px;
  }
}

.offer-item {
  border: 5px solid rgba(188, 155, 98, 0.5);
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -ms-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  padding: 40px 20px 40px;
  position: relative;
  z-index: 1;
}
.offer-item:before {
  content: "";
  background-color: #111111;
  opacity: 0.8;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}
/*.offer-item * {
  color: var(--color-white);
}*/
.offer-item .offer-image {
  margin-bottom: 15px;
}
.offer-item .offer-content h3 {
  position: relative;
  font-weight: 400; color: var(--color-white)
}
.offer-item .offer-content h3:after {
  content: "";
  background-image: url(assets/images/title-divider1.png);
  background-size: contain;
  background-repeat: no-repeat;
  display: block;
  height: 10px;
  max-width: 80px;
  margin-top: 5px;
  margin-left: auto;
  margin-right: auto;
}
.offer-item .offer-content p, .offer-item .offer-content ul {
  margin-bottom: 20px;color: var(--color-white); text-align: left
}
.offer-item .offer-content .button-primary {
  padding: 12px 30px;
}
@media screen and (min-width: 576px) {
  [class*=col-]:nth-child(2n+1) .offer-item {
    margin-top: 50px;
  }
}
@media screen and (max-width: 575px) {
  .offer-item {
    margin-bottom: 30px;
  }
  [class*=col-]:last-child .offer-item {
    margin-bottom: 0;
  }
}


/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
/*.about {
  background: #fffaf3;
}

.about .content {
  padding: 0 80px;
}

.about .content h3 {
  font-weight: 400;
  font-size: 34px;
  color: #5f5950;
}

.about .content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
}

.about .content p {
  font-size: 15px;
  color: #848484;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li+li {
  margin-top: 15px;
}

.about .content ul li {
  position: relative;
  padding-left: 26px;
}

.about .content ul i {
  font-size: 20px;
  color: #ffb03b;
  position: absolute;
  left: 0;
  top: 2px;
}

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

.about .video-box {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  min-height: 400px;
  position: relative;
}

.about .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#ffb03b 50%, rgba(255, 176, 59, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}

.about .play-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.about .play-btn::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(255, 176, 59, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.about .play-btn:hover::after {
  border-left: 15px solid #ffb03b;
  transform: scale(20);
}

.about .play-btn:hover::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

@media (max-width: 1024px) {

  .about .content,
  .about .accordion-list {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 992px) {
  .about .content {
    padding-top: 30px;
  }

  .about .accordion-list {
    padding-bottom: 30px;
  }
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}*/

/*--------------------------------------------------------------
# Whu Us
--------------------------------------------------------------*/
/*.why-us .box {
  padding: 50px 30px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  transition: all ease-in-out 0.3s;
  height: 100%;
}

.why-us .box span {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: #ffcf88;
}

.why-us .box h4 {
  font-size: 24px;
  font-weight: 600;
  padding: 0;
  margin: 20px 0;
  color: #6c665c;
}

.why-us .box p {
  color: #aaaaaa;
  font-size: 15px;
  margin: 0;
  padding: 0;
}

.why-us .box:hover {
  background: #ffb03b;
  padding: 30px 30px 70px 30px;
  box-shadow: 10px 15px 30px rgba(0, 0, 0, 0.18);
}

.why-us .box:hover span,
.why-us .box:hover h4,
.why-us .box:hover p {
  color: #fff;
}
*/
/*--------------------------------------------------------------
# Menu Section
--------------------------------------------------------------*/
.menu #menu-flters {
  padding: 0;
  margin: 0 auto 0 auto;
  list-style: none;
  text-align: center;
  border-radius: 50px;
}

.menu #menu-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 16px 10px 16px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  color: #444444;
  margin: 0 3px 10px 3px;
  transition: all ease-in-out 0.3s;
  background: #fff;
  border: 2px solid #ffb03b;
  border-radius: 50px;
}

.menu #menu-flters li:hover,
.menu #menu-flters li.filter-active {
  color: #fff;
  background: #ffb03b;
}

.menu #menu-flters li:last-child {
  margin-right: 0;
}

.menu .menu-content {
  margin-top: 30px;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  position: relative;
}

.menu .menu-content::after {
  content: "......................................................................" "...................................................................." "....................................................................";
  position: absolute;
  left: 20px;
  right: 0;
  top: -4px;
  z-index: 1;
  color: #dad8d4;
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
}

.menu .menu-content a {
  padding-right: 10px;
  background: #fff;
  position: relative;
  z-index: 3;
  font-weight: 700;
  color: #ff9b08;
}

.menu .menu-content span {
  background: #fff;
  position: relative;
  z-index: 3;
  padding: 0 10px;
  font-weight: 600;
}

.menu .menu-ingredients {
  font-style: italic;
  font-size: 14px;
  font-family: "Comic Neue", sans-serif;
  color: #948c81;
}

/*--------------------------------------------------------------
# Specials
--------------------------------------------------------------*/
.specials {
  overflow: hidden;
}

.specials .nav-tabs {
  border: 0;
}

.specials .nav-link {
  border: 0;
  padding: 12px 15px 12px 0;
  transition: 0.3s;
  color: #433f39;
  border-radius: 0;
  border-right: 2px solid #e8e7e4;
  font-weight: 400;
  font-size: 15px;
}

.specials .nav-link:hover {
  color: #ffb03b;
}

.specials .nav-link.active {
  color: #ffb03b;
  border-color: #ffb03b;
}

.specials .tab-pane.active {
  animation: fadeIn 0.5s ease-out;
}

.specials .details h3 {
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 20px;
  color: #433f39;
}

.specials .details p {
  color: #777777;
}

.specials .details p:last-child {
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .specials .nav-link {
    border: 0;
    padding: 15px;
  }

  .specials .nav-link.active {
    color: #fff;
    background: #ffb03b;
  }
}

/*--------------------------------------------------------------
# Events
--------------------------------------------------------------*/
.events {
  background: url(../img/events-bg.jpg) center center no-repeat;
  background-size: cover;
  position: relative;
}

.events::before {
  content: "";
  background-color: rgba(12, 11, 10, 0.8);
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

.events .section-title h2 {
  color: #fff;
}

.events .container {
  position: relative;
}

@media (min-width: 1024px) {
  .events {
    background-attachment: fixed;
  }
}

.events .events-carousel {
  background: rgba(255, 255, 255, 0.08);
  padding: 30px;
}

.events .event-item {
  color: #fff;
}

.events .event-item h3 {
  font-weight: 400;
  font-size: 26px;
  color: #ffb03b;
}

.events .event-item .price {
  font-size: 26px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  margin-bottom: 15px;
}

.events .event-item .price span {
  border-bottom: 2px solid #ffb03b;
}

.events .event-item ul {
  list-style: none;
  padding: 0;
}

.events .event-item ul li {
  padding-bottom: 10px;
}

.events .event-item ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #ffb03b;
}

.events .event-item p:last-child {
  margin-bottom: 0;
}

.events .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.events .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.5);
  opacity: 1;
}

.events .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #ffb03b;
}



/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------
.gallery {
  padding-bottom: 0;
}

.gallery .gallery-item {
  overflow: hidden;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
}

.gallery .gallery-item img {
  transition: all ease-in-out 0.4s;
}

.gallery .gallery-item:hover img {
  transform: scale(1.1);
}
*/
/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
/*.services {
  background: url("../img/chefs-bg.jpg") center center no-repeat;
  background-size: cover;
  padding: 60px 0;
  position: relative;
}

.services::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.8);
  z-index: 9;
}*/
.services{background-color: var(--bg-color2)}
.services .container {
  position: relative;
  z-index: 10;
}
.services p{padding:0 20px}
.services .member {
  text-align: left;
  margin-bottom: 80px;
  position: relative;box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.services .member .pic {
  overflow: hidden;
}

.services .member .member-info {
  background: #fff;
  padding: 20px 18px;
  color: #433f39;
  /*box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);*/
  transition: max-height 0.5s ease-in-out; float: left;
}

.services .member h4 {
  font-weight: 400; text-align: center;
  margin-bottom: 10px;
  font-size: 17px;
  color: #6c665c;
  position: relative;
  padding-bottom: 10px;
  font-family: var(--font-default);
}

.services .member h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: #ffcf88;
  bottom: 0;
  left: calc(50% - 25px);
}

.services .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
}

.services .member .social {
  margin-top: 15px;
}

.services .member .social a {
  transition: color 0.3s;
  color: #7a7368;
}

.services .member .social a:hover {
  color: #ffb03b;
}

.services .member .social i {
  font-size: 16px;
  margin: 0 2px;
}

@media (max-width: 992px) {
  .services .member {
    margin-bottom: 110px;
  }
}

@media (min-width: 1024px) {
  .services {
    /*background-attachment: fixed;*/
  }
}
/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery {
  overflow: hidden;
}

.gallery .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.gallery .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #d1d1d7;
  opacity: 1;
}

.gallery .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}

.gallery .swiper-slide-active {
  text-align: center;
}

@media (min-width: 992px) {
  .gallery .swiper-wrapper {
    padding: 40px 0;
  }

  .gallery .swiper-slide-active {
    border: 6px solid var(--color-primary);
    padding: 4px;
    background: #fff;
    z-index: 1;
    transform: scale(1.2);
  }
}
/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------
.testimonials {
  padding: 80px 0;
}

.testimonials::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(12, 11, 10, 0.7);
}

.testimonials .section-header {
  margin-bottom: 40px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  text-align: left;
  
}

.testimonials .testimonial-item .testimonial-img {
  width: 300px;
  border: 6px solid rgba(255, 255, 255, 0.15);
  margin: 0 auto; display: block 
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: 400;
  margin: 10px 0 5px 0;
  color: #000;
  font-family: "Poppins", sans-serif;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  margin: 0 0 15px 0;
}

.testimonials .testimonial-item .stars {
  color: #ffb03b;
  margin-bottom: 10px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: rgba(0, 0, 0, 0.5);
  font-size: 26px; padding-left: 3px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
  color: #000;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
  
  }
}*/
/*--------------------------------------------------------------
>>> Main Footer  
----------------------------------------------------------------*/
.site-footer {background-color: #333333 /*var(--color-primary)*/; font-size: 13px;
 /* -webkit-background-size: cover;
  -moz-background-size: cover;
  -ms-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom center;z-index: 1;  position: relative;*/
  padding-top: 30px;
  padding-bottom: 30px;

  
}
.site-footer:before {
  content: "";
  /*background-image: url(assets/images/section-shape-img2.png);*/
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -ms-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  height: 70px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9;
}
.site-footer .top-footer {
  
}
@media screen and (min-width: 768px) {
  .site-footer .lower-footer [class*=col-] {
    border-right: 1px solid rgba(255, 255, 255, 0.17);
  }
  .site-footer .lower-footer [class*=col-]:last-child {
    border-right: none;
  }
}
.site-footer .footer-logo {
  position: relative;
  margin-bottom: 78px;
}
.site-footer .footer-logo:before, .site-footer .footer-logo:after {
  background-color: rgba(255, 255, 255, 0.17);
  content: "";
  height: 1px;
  width: -moz-calc(50% - 105px);
  width: -webkit-calc(50% - 105px);
  width: calc(50% - 105px);
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.site-footer .footer-logo:before {
  left: 0;
}
.site-footer .footer-logo:after {
  right: 0;
}
.site-footer .footer-logo a {
  display: inline-block;
}
.site-footer .footer-logo a img {
  width: 170px;
}
.site-footer .social-links {
  margin-bottom: 30px;
}
.site-footer .social-links li {
  margin: 0 5px;
}
.site-footer .social-links li a {
  background-color: var(--text-color2);
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  border-radius: 100%;
  font-size: 18px;
  color: var(--color-white);
  display: block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  -webkit-transition: background-color 0.4s;
  -moz-transition: background-color 0.4s;
  -ms-transition: background-color 0.4s;
  -o-transition: background-color 0.4s;
  transition: background-color 0.4s;
}
.site-footer .social-links li a:hover {
  background-color: var(--text-color);
}
.site-footer .social-links img{ padding: 10px 0}
.site-footer .copy-right {
  color: var(--color-white);
}
.site-footer .copy-right a {
  color: var(--color-white);
}
.site-footer .copy-right a:hover {
  color: var(--color-primary);
}
.site-footer .footer-menu ul {
  margin: 0;
  padding: 0;
  font-size: 0;
}
.site-footer .footer-menu ul li {
  list-style: none;
  display: inline-block;
  position: relative;
  padding: 0 10px;
}
.site-footer .footer-menu ul li:before {
  content: "|";
  position: absolute;
  top: 0;
  right: -2px;
  font-size: 14px;
  color: #B6B6B6;
}
.site-footer .footer-menu ul li:last-child:before {
  display: none;
}
.site-footer .footer-menu ul li a {
  color: var(--color-white);
  font-size: 15px;
}
.site-footer .footer-menu ul li a:hover, .site-footer .footer-menu ul li a:focus {
  color: #95432D;
}
@media screen and (max-width: 767px) {
  .site-footer .footer-menu {
    text-align: center;
    margin-top: 10px;
  }
  .site-footer .footer-logo {
    margin-bottom: 30px;
  }
  .site-footer .copy-right {
    text-align: center;
  }
}
@media screen and (max-width: 575px) {
  .site-footer {
    padding-top: 18px;
    padding-bottom: 40px;
  }
  .site-footer:before {
    height: 40px;
  }
  .site-footer .top-footer {
    padding-bottom: 40px;
  }
  .site-footer .footer-menu ul li a {
    font-size: 13px;
  }
}

.footer-primary .widget {
  padding: 0 15px;
}
.footer-primary .widget * {
  color: var(--color-white);
}
.footer-primary .widget .widget-title-icon {
  display: block;
  margin-bottom: 20px;
}
.footer-primary .widget .widget-title-icon i {
  font-size: 50px;
  color: var(--color-white);
}
.footer-primary .widget .widget-title {
  color: var(--color-white);
  margin-bottom: 18px;
}
.footer-primary .widget ul li {
  margin-bottom: 2px;list-style: none;
}
.footer-primary .widget ul li:last-child {
  margin-bottom: 0;
}
.footer-primary .widget ul li a {
  color: var(--color-white);
}
.footer-primary .widget ul li a:hover, .footer-primary .widget ul li a:focus, .footer-primary .widget ul li a:active {
  color: var(--color-white);
}
.footer-primary .widget.widget-contact-detail li a {
  display: inline-block;
}
.footer-primary .widget.widget-service h5 {
  font-size: 17px;
  margin-bottom: 8px;
}
.footer-primary .widget.widget-service p {
  color: var(--color-white);
}
.footer-primary .widget.widget-menu ul {
  color: var(--color-white);
   text-align: left; 
}
.footer-primary .widget.widget-menu ul li{
  font-size: 15px;
}
.footer-primary .widget.widget-menu ul li ul li{
  margin-bottom: 0;list-style:disc;font-size: 13px;
}
.footer-primary .widget.widget-menu h4{text-align: left}
.footer-primary .widget button {
  background-color: #bc9b62;
  border-radius: 0;
  border: none;
  font-size: 16px;
  width: 65px;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.footer-primary .widget button:hover {
  background-color: #ab9c3f;
}
@media screen and (max-width: 991px) {
  .footer-primary .widget {
    margin-bottom: 30px;
  }
}


/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-wrap {
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
}
.contact .info-item{padding-bottom: 18px}
.contact .info {
  background: #fff;
}

.contact .info i {
  font-size: 20px;
  color: #ffb03b;
  float: left;
  width: 43px;
  height: 43px;
  background: #fff6e8;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}
.contact .info i.whatsapp, .contact .info:hover i.whatsapp {  
  font-size: 20px;
  color: #fff;
  float: left;
  width: 38px;
  height: 10px;
  background: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact .info h4 {
  padding: 0 0 0 30px;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 5px;
  color: #433f39;
  font-family: "Poppins", sans-serif;
}

.contact .info p {
  padding: 0 0 0 30px;
  margin-bottom: 0;
  font-size: 14px; 
  color: #7a7368;
}

.contact .info-item:hover i {
  background: #ffb03b;
  color: #fff;
}

.contact .php-email-form {
  width: 100%;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
  padding: 30px;
  background: #fff;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .error-message {
  color: #fff;
  background: #ed3c0d;
  text-align: center;
  padding: 15px;
  font-weight: 400;
}

.contact .php-email-form .sent-message {
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 400;
}

.contact .php-email-form .loading {
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type=submit] {
  background: var(--color-primary);
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background:var(--color-primary);
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #35322d;
  color: #fff;
  font-size: 14px;
  padding: 30px 0;
}
.bottom-footer a, .bottom-footer {color: #ffffff; }
.bottom-footer a:hover {color:#ffb03b  }
#footer h3 {
  font-size: 36px;
  font-weight: 400;
  color: #ffb03b;
  position: relative;
  padding: 0;
  margin: 0 0 15px 0;
}

#footer p {
  font-size: 15;
  font-style: italic;
  padding: 0;
  margin: 0 0 40px 0;
}

#footer .social-links {
  margin: 0 0 40px 0;
}

#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #46423b;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .social-links a:hover {
  background: #ffb03b;
}

#footer .copyright {
  margin: 0 0 5px 0;
}

#footer .credits {
  font-size: 13px;
}

/**/
.site-header-transparent {
  left: 0;
  right: 0;
  position: absolute;
  width: 100%;
  top: 0;
  z-index: 99;
}

/*--- top header css start ---*/
.top-header {
  border-bottom: 1px solid rgba(251, 245, 206, 0.8);
  padding: 15px 0;
}
@media screen and (max-width: 575px) {
  .top-header {
    padding: 7px 0;
  }
}

.header-contact-info * {
  color: var(--text-color);
}
.header-contact-info a {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.header-contact-info i {
  background-color: #bc9b62;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  border-radius: 100%;
  color: var(--color-white);
  display: block;
  font-size: 18px;
  line-height: 40px;
  height: 40px;
  text-align: center;
  width: 40px;
}
.header-contact-info .header-contact-details {
  width: -moz-calc(100% - 55px);
  width: -webkit-calc(100% - 55px);
  width: calc(100% - 55px);
  padding-left: 10px;
}
.header-contact-info .header-contact-details .contact-label {
  display: block;
  font-size: 13px;
  text-transform: capitalize;
}
.header-contact-info .header-contact-details .header-contact-no {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
}

.offcanvas-icon a {
  color: var(--color-white);
  font-size: 30px;
}

.header-social {
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-align-content: center;
  -moz-align-content: center;
  -ms-align-content: center;
  align-content: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.header-social a{
  display: inline-block;
  line-height: 1;
  padding: 9px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;}
.header-social a.xiaohongshu img{padding-top: 0}

.contact a .google-map{background-color: #ffffff; color: red }
.contact a:hover .google-map{background-color: #ffffff; color: red }
.contact a .waze{background-color: #ffffff; color: #7ec0ee}
.contact a:hover .waze{background-color: #ffffff; color: #7ec0ee}
.header-social a.xiaohongshu {background-color: #ff0004;}
.header-social a.facebook{ background-color: #3b5998}
.header-social a.youtube{ background-color: #c4302b}
.contact a .whatsapp{ background-color: #25D366; color: #ffffff}
.header-social a.tiktok{ background-color: #000000; }
.header-social a.linkedin{ background-color: #0077b5}
.header-social a.instagram{ background: #f09433; 
background: -moz-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); 
background: -webkit-linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); 
background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); 
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f09433', endColorstr='#bc1888',GradientType=1 );}
.header-social li {
  margin: 0 8px;
}
.site-header:not(.fixed-header) .header-social a {
  color: var(--color-white);
}
.site-header:not(.fixed-header) .header-social a:hover, .site-header:not(.fixed-header) .header-social a:focus {
  color: var(--color-white);
}
.header-social a:hover, .header-social a:focus {
  color: var(--color-white); background-color: var(--color-primary)
}

@media screen and (max-width: 991px) {
  .header-social {
    padding: 10px 0;
  }
}

.header-search-icon {
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-align-content: center;
  -moz-align-content: center;
  -ms-align-content: center;
  align-content: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-left: 5px;
}
.header-search-icon .search-icon {
  background-color: transparent;
  border: none;
  border-radius: 0;
  height: 100%;
  padding: 0;
  width: 100%;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
.site-header:not(.fixed-header) .header-search-icon .search-icon {
  color: #fafafa;
}
.site-header:not(.fixed-header) .header-search-icon .search-icon:hover, .site-header:not(.fixed-header) .header-search-icon .search-icon:focus {
  outline: none;
  color: #95432D;
}
.header-search-icon .search-icon:hover, .header-search-icon .search-icon:focus {
  outline: none;
  color: #95432D;
}

/*--- top header css end ---*/
/*--- header Logo css start ---*/
.site-identity .site-title {
  margin: 0;
  line-height: 1.1;
  font-size: 28px;
}
.site-identity .site-description {
  font-size: 13px;
  margin-bottom: 0;
}
.site-identity img {
  max-width: 170px;
  -webkit-transition: opacity 0.4s linear;
  -moz-transition: opacity 0.4s linear;
  -ms-transition: opacity 0.4s linear;
  -o-transition: opacity 0.4s linear;
  transition: opacity 0.4s linear;
}
.site-identity a {
  display: block;
}
.site-identity a:hover img, .site-identity a:focus img, .site-identity a:active img {
  opacity: 0.5;
}
  .site-identity {
    text-align: center;
  }
@media screen and (min-width: 768px) {
  .site-identity {
    text-align: center;
  }
}
@media screen and (max-width: 575px) {
  .site-identity img {
    max-width: 130px;
  }
}

/*--------------------------------------------------------------
>>> Main Header Menu
----------------------------------------------------------------*/
@media screen and (max-width: 991px) {
  .bottom-header {
    border-bottom: 1px solid rgba(251, 245, 206, 0.8);
    padding: 8px 0;
  }
}

.navigation-container {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 991px) {
  .navigation-container {
    padding-right: 35px;
  }
}

.main-navigation .navbar > ul > li {
  display: inline-block;
  padding: 0 16px;
}

.main-navigation ul {
  font-size: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}
/*.main-navigation ul > li.dropdown > a:after {
  content: "\f0d7";
}*/
.main-navigation ul > li:last-child {
  border-bottom: none;
}
.main-navigation ul > li:last-child:before {
  display: none;
}
.main-navigation ul > li > a {
  font-family: "Marcellus", serif;
  color: var(--color-white);
  display: inline-block;
  font-size: 17px;
  padding: 30px 0;
  font-weight: 500;
  line-height: 1;
  position: relative;
  text-transform: capitalize;
}
.main-navigation ul > li:hover > ul, .main-navigation ul > li:focus > ul, .main-navigation ul > li:active > ul {
  display: block;
}
.main-navigation ul > li:hover > a, .main-navigation ul > li:focus > a, .main-navigation ul > li:active > a {
  color: #bc9b62;
}
.main-navigation ul > li:hover > a:after, .main-navigation ul > li:focus > a:after, .main-navigation ul > li:active > a:after {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
.main-navigation ul ul {
  background: var(--color-white);
  border-top: 4px solid #bc9b62;
  left: 0;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 100%;
  width: 250px;
  z-index: 99;
  display: none;
  text-align: left;
  -webkit-animation: slide-up 0.3s ease-out;
  -moz-animation: slide-up 0.3s ease-out;
  -ms-animation: slide-up 0.3s ease-out;
  -o-animation: slide-up 0.3s ease-out;
  animation: slide-up 0.3s ease-out;
}
.main-navigation ul ul li {
  border-bottom: 1px solid #DDD;
  position: relative;
  display: block;
}
.main-navigation ul ul li a {
  color: #424242;
  display: block;
  padding: 13px 20px;
  text-transform: capitalize;
  font-weight: 400;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
.main-navigation ul ul li a:hover, .main-navigation ul ul li a:focus, .main-navigation ul ul li a:active {
  padding-left: 30px;
  color: #bc9b62;
}
.main-navigation ul ul li > ul {
  left: 100%;
  top: 0;
}
/*.main-navigation ul ul li.dropdown > a:after {
  content: "\f0da";
}*/
.main-navigation ul ul li:hover > ul, .main-navigation ul ul li:focus > ul, .main-navigation ul ul li:active > ul {
  display: block;
  top: -3px;
}
.main-navigation ul ul li:hover a:after, .main-navigation ul ul li:focus a:after, .main-navigation ul ul li:active a:after {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
.main-navigation ul li {
  position: relative;
}
.main-navigation ul li:last-child ul, .main-navigation ul li:nth-last-child(2) ul {
  left: auto;
  right: 0;
}
.main-navigation ul li:last-child ul ul, .main-navigation ul li:nth-last-child(2) ul ul {
  right: 100%;
}
.main-navigation ul li.dropdown > a {
  position: relative;
}
.main-navigation ul li.dropdown > a:after {
  display: inline-block;
  float: right;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-left: 10px;
  -webkit-transition: transform 0.4s;
  -moz-transition: transform 0.4s;
  -ms-transition: transform 0.4s;
  -o-transition: transform 0.4s;
  transition: transform 0.4s;
}
.main-navigation ul li.dropdown li:hover > a, .main-navigation ul li.dropdown li:focus > a {
  background-color: #95432D;
  color: var(--color-white);
}
.main-navigation ul li.current-menu-item > a, .main-navigation ul li.current-menu-parent > a {
  color: #bc9b62;
}

@-webkit-keyframes slide-up {
  from {
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
    transform: translateY(10px);
  }
  to {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
}
@-moz-keyframes slide-up {
  from {
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
    transform: translateY(10px);
  }
  to {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
}
@-o-keyframes slide-up {
  from {
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
    transform: translateY(10px);
  }
  to {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes slide-up {
  from {
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
    transform: translateY(10px);
  }
  to {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
}
.header-btn {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  white-space: nowrap;
}
.header-btn a {
  padding: 10px 24px;
}
@media screen and (max-width: 575px) {
  .header-btn {
    -webkit-justify-content: flex-end;
    -moz-justify-content: flex-end;
    -ms-justify-content: flex-end;
    justify-content: flex-end;
    -ms-flex-pack: flex-end;
  }
  .header-btn a {
    padding: 8px 20px;
    font-size: 14px;
  }
}

/*---  header search css ---*/
/*.header-search-form {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.header-search-form {
  background-color: rgba(0, 0, 0, 0.4);
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  -webkit-transition: transform 0.5s, opacity 0.5s, visibility 0.5s;
  -moz-transition: transform 0.5s, opacity 0.5s, visibility 0.5s;
  -ms-transition: transform 0.5s, opacity 0.5s, visibility 0.5s;
  -o-transition: transform 0.5s, opacity 0.5s, visibility 0.5s;
  transition: transform 0.5s, opacity 0.5s, visibility 0.5s;
  z-index: 999;
}
.header-search-form .header-search {
  position: relative;
}
.header-search-form input[type=text] {
  background-color: #ffffff;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
  color: #292929;
  border: none;
  width: 100%;
  height: 42px;
  padding: 0 20px;
  text-align: center;
}
.header-search-form .search-close {
  color: #ffffff;
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 18px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: background-color 0.4s;
  -moz-transition: background-color 0.4s;
  -ms-transition: background-color 0.4s;
  -o-transition: background-color 0.4s;
  transition: background-color 0.4s;
}
.header-search-form .search-close:hover, .header-search-form .search-close:focus, .header-search-form .search-close:active {
  color: #95432D;
}
.header-search-form.search-in {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
*/
/*---  fixed header css ---*/
.bottom-header {
  -webkit-transition: background-color 0.5s linear;
  -moz-transition: background-color 0.5s linear;
  -ms-transition: background-color 0.5s linear;
  -o-transition: background-color 0.5s linear;
  transition: background-color 0.5s linear;
}
.social-links ul {
  margin: 0;
  padding: 0;
  font-size: 0;
}
.social-links li {
  display: inline-block;
  list-style: none;
  margin: 0 10px;
}
.social-links a {
  font-size: 17px;
  color: #404040;
  -webkit-transition: color 0.4s;
  -moz-transition: color 0.4s;
  -ms-transition: color 0.4s;
  -o-transition: color 0.4s;
  transition: color 0.4s;
}
.social-links a:hover, .social-links a:focus, .social-links a:active {
  color: #95432D;
}
.social-links img{ padding: 5px 0}
@media screen and (min-width: 992px) {
  .bottom-header {
    border-bottom: 1px solid rgba(251, 245, 206, 0.8);
    padding: 8px 0;
  }
}

/*@media screen and (min-width: 992px) {
  .fixed-header .bottom-header {
    background-color: #ffffff;
    -webkit-box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.2);
    -ms-box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.2);
    -o-box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.2);
    box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.2);
    top: 0;
    width: 100%;
    left: 0;
    z-index: 999;
  }
}
@media screen and (max-width: 991px) {
  .fixed-header .bottom-header {
    background-color: transparent;
    position: relative;
  }
}
.fixed-header .main-navigation .navigation > ul > li > a {
  color: #060F14;
  padding: 22px 0;
}
.fixed-header .main-navigation .navigation > ul > li > a:before {
  background-color: #1e4a62;
}
.fixed-header .header-icons .icon-item a {
  color: #060F14;
}
.fixed-header .header-icons .icon-item a:hover {
  color: #95432D;
}
@media screen and (max-width: 991px) {
  .fixed-header .mobile-menu-container {
    background-color: #ffffff;
    -webkit-box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.2);
    -ms-box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.2);
    -o-box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.2);
    box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.2);
    position: fixed;
    top: 0;
    width: 100%;
    left: 0;
    z-index: 999;
  }
  .fixed-header .mobile-menu-container .slicknav_nav {
    min-height: calc(100vh - 78px);
    height: 100%;
    overflow-y: scroll;
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
  }
  .fixed-header .mobile-menu-container .slicknav_menu .slicknav_menutxt {
    color: #212121;
  }
  .fixed-header .mobile-menu-container .slicknav_btn .slicknav_icon span {
    background-color: #212121;
  }
  .fixed-header .mobile-menu-container .slicknav_btn .slicknav_icon span:first-child:before, .fixed-header .mobile-menu-container .slicknav_btn .slicknav_icon span:first-child:after {
    background-color: #212121;
  }
}*/
/*--------------------------------------------------------------
>>> Home Dish Section  
----------------------------------------------------------------*/
.section-dish {
  padding-top: 120px;
  padding-bottom: 74px;
}
.section-dish .section-heading {
  margin-bottom: 0;
}
.section-dish .section-heading .title-divider {
  margin-bottom: 15px;
}
.section-dish .dist-item {
  margin-bottom: 30px;
}
.section-dish .dist-item .dist-image img {
  width: 100%;
}
@media screen and (max-width: 575px) {
  .section-dish {
    padding-top: 70px;
    padding-bottom: 40px;
  }
}

/*--------------------------------------------------------------
>>> Home Callback Section  
----------------------------------------------------------------
.section-callback {
  padding-top: 0;
  padding-bottom: 0;
}
@media screen and (min-width: 1200px) {
  .section-callback .row {
    margin: 0 -30px;
  }
  .section-callback .row [class*=col-] {
    padding: 0 30px;
  }
}
.section-callback .section-heading {
  margin-bottom: 0;
}
.section-callback .section-heading p {
  margin-top: 25px;
}
.section-callback .section-heading a {
  margin-top: 15px;
}
@media screen and (max-width: 575px) {
  .section-callback {
    padding-top: 50px;
    padding-bottom: 60px;
  }
}

.imagebg-callback {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom center;
  padding-top: 175px;
  padding-bottom: 175px;
  position: relative;
  z-index: 1;
}
.imagebg-callback:before {
  content: "";
  background-image: url(assets/images/section-shape-img2.png);
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -ms-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  height: 70px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9;
}
.imagebg-callback:after {
  content: "";
  background-image: url(assets/images/section-shape-img1.png);
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -ms-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  height: 70px;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 9;
}
.imagebg-callback * {
  color: var(--color-white);
}
@media screen and (max-width: 575px) {
  .imagebg-callback {
    padding-top: 110px;
    padding-bottom: 110px;
  }
  .imagebg-callback .section-heading {
    margin-bottom: 40px;
  }
  .imagebg-callback:before, .imagebg-callback:after {
    height: 40px;
  }
}

.discount-badge {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
}

.discount-badge {
  background-color: #bc9b62;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  border-radius: 100%;
  height: 200px;
  padding: 10px;
  width: 200px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: -60px;
  position: relative;
}
.discount-badge h3 {
  color: #060F14;
}
.discount-badge h4 {
  color: var(--color-white);
}
.discount-badge h3, .discount-badge h4 {
  margin-bottom: 12px;
}
.discount-badge span {
  color: var(--color-white);
  font-size: 16px;
  font-weight: 500;
}
@media screen and (max-width: 575px) {
  .discount-badge {
    height: 150px;
    width: 150px;
  }
  .discount-badge span {
    font-size: 14px;
  }
}
*/

/**/
/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio {
  padding: 60px 0;
}

.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 0 35px 0;
  list-style: none;
  text-align: center;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  margin: 0 15px 15px 0;
  display: inline-block;
  padding: 10px 20px;
  font-size: 12px;
  line-height: 20px;
  color: #444444;
  border-radius: 4px;
  text-transform: uppercase;
  background: #fff;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  background: #3498db;
  color: #fff;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-wrap {
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08); border: 1px #eaeaea solid;border-radius: 4px 4px 0 0;
  transition: 0.3s; margin-bottom: 3px
}

.portfolio .portfolio-wrap:hover {
  box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.16);
}

.portfolio .portfolio-item {
  position: relative;
  height: auto;
  overflow: hidden;
}

.portfolio .portfolio-item figure {
  background: #000;
  overflow: hidden;
  height: auto;
  position: relative;
/*  border-radius: 4px 4px 0 0;*/
  margin: 0;
}

.portfolio .portfolio-item figure:hover img {
  opacity: 0.4;
  transition: 0.4s;
}

.portfolio .portfolio-item figure .link-preview,
.portfolio .portfolio-item figure .link-details {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  line-height: 0;
  text-align: center;
  width: 36px;
  height: 36px;
  background: #fff;
  border-radius: 50%;
  transition: all 0.2s linear;
  overflow: hidden;
  font-size: 20px;
}

.portfolio .portfolio-item figure .link-preview i,
.portfolio .portfolio-item figure .link-details i {
  color: #384046;
  line-height: 0;
}

.portfolio .portfolio-item figure .link-preview:hover,
.portfolio .portfolio-item figure .link-details:hover {
  background: var(--color-primary);
}

.portfolio .portfolio-item figure .link-preview:hover i,
.portfolio .portfolio-item figure .link-details:hover i {
  color: #fff;
}

.portfolio .portfolio-item figure .link-preview {
  left: calc(50% - 38px);
  top: calc(50% - 18px);
}

.portfolio .portfolio-item figure .link-details {
  right: calc(50% - 38px);
  top: calc(50% - 18px);
}

.portfolio .portfolio-item figure:hover .link-preview {
  opacity: 1;
  left: calc(50% - 44px);
}

.portfolio .portfolio-item figure:hover .link-details {
  opacity: 1;
  right: calc(50% - 44px);
}

.portfolio .portfolio-item .portfolio-info {
  background: #fff;
  text-align: center;
  padding: 20px;
  height: auto;
  border-radius: 0 0 3px 3px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  line-height: 1px;
  font-weight: 500;
  margin-bottom: 18px;
  padding-bottom: 0;
}

.portfolio .portfolio-item .portfolio-info h4 a {
  color: var(--color-secondary);
}

.portfolio .portfolio-item .portfolio-info h4 a:hover {
  color: var(--color-primary);
}

.portfolio .portfolio-item .portfolio-info p {
  padding: 0;
  margin: 8px;
  color: #b8b8b8;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
}

.section-callback{background-color: var(--bg-color2)}
/*--------------------------------------------------------------
# Others
--------------------------------------------------------------*/
.site-main {
  background-color: var(--color-white);
}

.container {
  max-width: 1170px;
  padding-left: 15px;
  padding-right: 15px;
}

.overlay {
  background-color: rgba(21, 21, 21, 0.2);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.section-heading {
  margin-bottom: 8px;
}
.section-heading .title-divider img {
  width: auto;
}
@media screen and (max-width: 575px) {
  .section-heading .title-divider img {
    width: 90px;
  }
}
@media screen and (max-width: 575px) {
  .section-heading {
    margin-bottom: 30px;
  }
}

.sub-title {
  color: #bc9b62;/*#bc9b62*/
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 3px;
  margin-bottom: 18px;
  text-transform: uppercase;
}
@media screen and (max-width: 575px) {
  .sub-title {
    font-size: 12px;
    margin-bottom: 15px;
    letter-spacing: 2px;
    font-weight: 500;
  }
}

.section-title {
  margin-bottom: 20px;
}

.list-more-btn {
  padding-top: 20px;
}
/**/
.section-about .animated2 {margin-top: -180px}
.animated2 {
right: -100px; z-index: 1;
  position: absolute; 
}
@media (max-width: 575px) {
  .animated2 {
    max-width: 80%;
  }
}
@-webkit-keyframes float-bob-y {
  0% {
    transform: translateY(-20px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(-20px);
  }
}

@keyframes float-bob-y {
  0% {
    transform: translateY(-20px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(-20px);
  }
}

.float-bob-y {
  -webkit-animation-name: float-bob-y;
  animation-name: float-bob-y;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}
/**/
/*section.about-inner{padding-bottom: 0}*/
.inner-page .section-title h4{ font-family: var(--font-default)} 
.about-inner h4{font-family: var(--font-primary); color: var(--text-color2); font-size: 30px;  }
@media (min-width: 767px) {
  .core{width: 80%; margin: 0 auto; display: block}
  }
.contact-location{margin-left: 60px; margin-top: 20px}
.contact-location img{padding-right: 8px}

/* page banner */
.page-banner{
  width: 100%;
  height: 80vh;
  overflow: hidden;
   background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
 padding: 0;
}

@media (max-width: 575px) {
.page-banner h1 {font-size: 28px;} 
.page-banner p {
   font-size: 20px;
  }

}
.page-banner h1 {
  color: #555555;
  margin-bottom: 0;
  font-size: 26px;
  font-weight: 400;text-shadow: 1px 1px #ffffff;
}
/*
.page-banner h1 span {
  color: #ffb03b;
}
*/
.page-banner p {
  animation-delay: 0.4s;
  /*margin: 0 auto 30px auto;*/ text-align: center;
  color: var(--text-color); text-shadow: 1px 1px #ffffff; font-size:20px;
}


@media (max-width: 768px) {
  .page-banner h1 {
    font-size: 23px;
  }
  .page-banner p {
   font-size: 18px;
  }
}

@media (min-width: 1024px) {

}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  
  position: relative;
  overflow: hidden;
  margin: 0;
  background: #fff;
  box-shadow: 0 10px 29px 0 rgba(68, 88, 144, 0.1);
  transition: all 0.3s ease-in-out;
  border-radius: 4px;
  text-align: center;
  border-bottom: 3px solid #fff;
}

.services .icon-box:hover {
  transform: translateY(-5px);
}
.services .icon img{}
/*.services .icon i {
  font-size: 48px;
  line-height: 1;
  margin-bottom: 15px;
}
*/
.services .title {
  font-weight: 500;padding: 18px 18px 0 18px;

  font-size: 18px;
}

.services .title a {
  color: #111;
}

.services .description {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 0;
}

.services .icon-box-gold .icon i {
  color: #bc9b62;
}

.services .icon-box-gold:hover {
  border-color: #bc9b62;
}


.services .icon-box-blue .icon i {
  color: #2282ff;
}

.services .icon-box-blue:hover {
  border-color: #2282ff;
}

.modal .modal-body{padding: 30px;}
/**/

.leaf-shape{
	border-radius: 40% 0;  width: 128px; height: 128px; font-size: 39px; color: #ffffff; margin: auto auto; text-align: center; 
	padding: 27px; transform: rotate(0deg); font-weight: bold; 
background: rgba(107,74,23,1);
background: -moz-linear-gradient(45deg, rgba(107,74,23,1) 0%, rgba(182,141,76,1) 40%, rgba(193,158,103,1) 52%, rgba(99,74,38,1) 100%);
background: -webkit-gradient(left bottom, right top, color-stop(0%, rgba(107,74,23,1)), color-stop(40%, rgba(182,141,76,1)), color-stop(52%, rgba(193,158,103,1)), color-stop(100%, rgba(99,74,38,1)));
background: -webkit-linear-gradient(45deg, rgba(107,74,23,1) 0%, rgba(182,141,76,1) 40%, rgba(193,158,103,1) 52%, rgba(99,74,38,1) 100%);
background: -o-linear-gradient(45deg, rgba(107,74,23,1) 0%, rgba(182,141,76,1) 40%, rgba(193,158,103,1) 52%, rgba(99,74,38,1) 100%);
background: -ms-linear-gradient(45deg, rgba(107,74,23,1) 0%, rgba(182,141,76,1) 40%, rgba(193,158,103,1) 52%, rgba(99,74,38,1) 100%);
background: linear-gradient(45deg, rgba(107,74,23,1) 0%, rgba(182,141,76,1) 40%, rgba(193,158,103,1) 52%, rgba(99,74,38,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#6b4a17', endColorstr='#634a26', GradientType=1 );
}
.product-hightlight {border-bottom: 1px solid #ccc; margin: 28px}
ul.page-list { list-style: none; }
ul.page-list i{color: #936B11}

.page-row{ background-color: #ffffff}
.page-row-content{padding: 10px 38px 10px 20px}
/*--------------------------------------------------------------
# Blog Home Posts List
--------------------------------------------------------------*/
.blog .posts-list article {
  box-shadow: 0 10px 29px 0 rgba(68, 88, 144, 0.1);
  padding: 30px;
  height: 100%;
}

.blog .posts-list article+article {
  margin-top: 60px;
}

.blog .posts-list .post-img {
  max-height: 240px;
  margin: -30px -30px 0 -30px;
  overflow: hidden;
}
/*.post-img-slide{max-height: 600px;}*/
.post-img-slide img{margin-left: auto; margin-right: auto; }
.blog .posts-list .title {
  font-size: 18px;
  font-weight: 500;
  padding: 0;
  margin: 20px 0 0 0;
}

.blog .posts-list .title a {
  color: var(--color-secondary);
  transition: 0.3s;
}

.blog .posts-list .title a:hover {
  color: var(--color-primary);
}

.blog .posts-list .meta-top {
  margin-top: 20px;
  color: var(--color-gray);
}

.blog .posts-list .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog .posts-list .meta-top ul li+li {
  padding-left: 20px;
}

.blog .posts-list .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: rgba(var(--color-primary-rgb), 0.8);
}

.blog .posts-list .meta-top a {
  color: var(--color-gray);
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog .posts-list .content {
  margin-top: 20px;
}

.blog .posts-list .read-more a {
  display: inline-block;
  background: var(--color-primary);
  color: var(--color-white);
  padding: 8px 30px;
  transition: 0.3s;
  font-size: 14px;
  border-radius: 4px;
}

.blog .posts-list .read-more a:hover {
  background:var(--text-color2);
}

/*--------------------------------------------------------------
# Blog Details Page
--------------------------------------------------------------*/
.blog .blog-details {
  box-shadow: 0 4px 16px rgba(var(--color-black-rgb), 0.1);
  padding: 30px;
}

.blog .blog-details .post-img {
  margin: -30px -30px 20px -30px;
  overflow: hidden;
}

.blog .blog-details .title {
  font-size: 28px;
  font-weight: 500;
  padding: 0;
  margin: 20px 0 0 0;
  color: var(--color-secondary);
}

.blog .blog-details .content {
  margin-top: 20px;
}

.blog .blog-details .content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}

.blog .blog-details .content blockquote {
  overflow: hidden;
  background-color: rgba(var(--color-secondary-rgb), 0.06);
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.blog .blog-details .content blockquote p {
  color: var(--color-default);
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.blog .blog-details .content blockquote:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--color-secondary);
  margin-top: 20px;
  margin-bottom: 20px;
}

/*.blog .blog-details .meta-top {
  margin-top: 20px;
  color: var(--color-gray);
}

.blog .blog-details .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog .blog-details .meta-top ul li+li {
  padding-left: 20px;
}

.blog .blog-details .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: rgba(var(--color-primary-rgb), 0.8);
}

.blog .blog-details .meta-top a {
  color: var(--color-gray);
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog .blog-details .meta-bottom {
  padding-top: 10px;
  border-top: 1px solid rgba(var(--color-secondary-rgb), 0.15);
}

.blog .blog-details .meta-bottom i {
  color: var(--color-secondary-light);
  display: inline;
}

.blog .blog-details .meta-bottom a {
  color: rgba(var(--color-secondary-rgb), 0.8);
  transition: 0.3s;
}

.blog .blog-details .meta-bottom a:hover {
  color: var(--color-primary);
}

.blog .blog-details .meta-bottom .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog .blog-details .meta-bottom .cats li {
  display: inline-block;
}

.blog .blog-details .meta-bottom .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog .blog-details .meta-bottom .tags li {
  display: inline-block;
}

.blog .blog-details .meta-bottom .tags li+li::before {
  padding-right: 6px;
  color: var(--color-default);
  content: ",";
}

.blog .blog-details .meta-bottom .share {
  font-size: 16px;
}

.blog .blog-details .meta-bottom .share i {
  padding-left: 5px;
}

.blog .post-author {
  padding: 20px;
  margin-top: 30px;
  box-shadow: 0 4px 16px rgba(var(--color-black-rgb), 0.1);
}

.blog .post-author img {
  max-width: 120px;
  margin-right: 20px;
}

.blog .post-author h4 {
  font-weight: 500;
  font-size: 22px;
  margin-bottom: 0px;
  padding: 0;
  color: var(--color-secondary);
}*/

.blog .post-author .social-links {
  margin: 0 10px 10px 0;
}

.blog .post-author .social-links a {
  color: rgba(var(--color-secondary-rgb), 0.5);
  margin-right: 5px;
}

.blog .post-author p {
  font-style: italic;
  color: rgba(var(--color-gray-rgb), 0.8);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Blog Sidebar
--------------------------------------------------------------*/
/*.blog .sidebar {
  padding: 30px;
  box-shadow: 0 4px 16px rgba(var(--color-black-rgb), 0.1);
}

.blog .sidebar .sidebar-title {
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0;
  color: var(--color-secondary);
}

.blog .sidebar .sidebar-item+.sidebar-item {
  margin-top: 40px;
}

.blog .sidebar .search-form form {
  background: var(--color-white);
  border: 1px solid rgba(var(--color-secondary-rgb), 0.3);
  padding: 3px 10px;
  position: relative;
}

.blog .sidebar .search-form form input[type=text] {
  border: 0;
  padding: 4px;
  border-radius: 4px;
  width: calc(100% - 40px);
}

.blog .sidebar .search-form form input[type=text]:focus {
  outline: none;
}

.blog .sidebar .search-form form button {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 15px;
  margin: -1px;
  background: var(--color-primary);
  color: var(--color-white);
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  line-height: 0;
}

.blog .sidebar .search-form form button i {
  line-height: 0;
}

.blog .sidebar .search-form form button:hover {
  background: rgba(var(--color-primary-rgb), 0.8);
}

.blog .sidebar .categories ul {
  list-style: none;
  padding: 0;
}

.blog .sidebar .categories ul li+li {
  padding-top: 10px;
}

.blog .sidebar .categories ul a {
  color: var(--color-secondary);
  transition: 0.3s;
}

.blog .sidebar .categories ul a:hover {
  color: var(--color-default);
}

.blog .sidebar .categories ul a span {
  padding-left: 5px;
  color: rgba(var(--color-default-rgb), 0.4);
  font-size: 14px;
}

.blog .sidebar .recent-posts .post-item {
  display: flex;
}

.blog .sidebar .recent-posts .post-item+.post-item {
  margin-top: 15px;
}

.blog .sidebar .recent-posts img {
  width: 80px;
  margin-right: 15px;
}

.blog .sidebar .recent-posts h4 {
  font-size: 18px;
  font-weight: 400;
}

.blog .sidebar .recent-posts h4 a {
  color: var(--color-secondary);
  transition: 0.3s;
}

.blog .sidebar .recent-posts h4 a:hover {
  color: var(--color-primary);
}

.blog .sidebar .recent-posts time {
  display: block;
  font-style: italic;
  font-size: 14px;
  color: rgba(var(--color-default-rgb), 0.4);
}

.blog .sidebar .tags {
  margin-bottom: -10px;
}

.blog .sidebar .tags ul {
  list-style: none;
  padding: 0;
}

.blog .sidebar .tags ul li {
  display: inline-block;
}

.blog .sidebar .tags ul a {
  color: var(--color-secondary-light);
  font-size: 14px;
  padding: 6px 14px;
  margin: 0 6px 8px 0;
  border: 1px solid rgba(var(--color-secondary-light-rgb), 0.8);
  display: inline-block;
  transition: 0.3s;
}

.blog .sidebar .tags ul a:hover {
  color: var(--color-white);
  border: 1px solid var(--color-primary);
  background: var(--color-primary);
}

.blog .sidebar .tags ul a span {
  padding-left: 5px;
  color: rgba(var(--color-secondary-light-rgb), 0.8);
  font-size: 14px;
}*/

/*--------------------------------------------------------------
# Blog Comments
--------------------------------------------------------------*/
/*.blog .comments {
  margin-top: 30px;
}

.blog .comments .comments-count {
  font-weight: bold;
}

.blog .comments .comment {
  margin-top: 30px;
  position: relative;
}

.blog .comments .comment .comment-img {
  margin-right: 14px;
}

.blog .comments .comment .comment-img img {
  width: 60px;
}

.blog .comments .comment h5 {
  font-size: 16px;
  margin-bottom: 2px;
}

.blog .comments .comment h5 a {
  font-weight: bold;
  color: var(--color-default);
  transition: 0.3s;
}

.blog .comments .comment h5 a:hover {
  color: var(--color-primary);
}

.blog .comments .comment h5 .reply {
  padding-left: 10px;
  color: var(--color-secondary);
}

.blog .comments .comment h5 .reply i {
  font-size: 20px;
}

.blog .comments .comment time {
  display: block;
  font-size: 14px;
  color: rgba(var(--color-secondary-rgb), 0.8);
  margin-bottom: 5px;
}

.blog .comments .comment.comment-reply {
  padding-left: 40px;
}

.blog .comments .reply-form {
  margin-top: 30px;
  padding: 30px;
  box-shadow: 0 4px 16px rgba(var(--color-black-rgb), 0.1);
}

.blog .comments .reply-form h4 {
  font-weight: bold;
  font-size: 22px;
}

.blog .comments .reply-form p {
  font-size: 14px;
}

.blog .comments .reply-form input {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
}

.blog .comments .reply-form input:focus {
  box-shadow: none;
  border-color: rgba(var(--color-primary-rgb), 0.8);
}

.blog .comments .reply-form textarea {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
}

.blog .comments .reply-form textarea:focus {
  box-shadow: none;
  border-color: rgba(var(--color-primary-rgb), 0.8);
}

.blog .comments .reply-form .form-group {
  margin-bottom: 25px;
}

.blog .comments .reply-form .btn-primary {
  border-radius: 4px;
  padding: 10px 20px;
  border: 0;
  background-color: var(--color-secondary);
}

.blog .comments .reply-form .btn-primary:hover {
  background-color: rgba(var(--color-secondary-rgb), 0.8);
}*/

/*--------------------------------------------------------------
# Blog Home Pagination
--------------------------------------------------------------*/
.blog .blog-pagination {
  margin-top: 30px;
  color: var(--color-secondary-light);
}

.blog .blog-pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog .blog-pagination li {
  margin: 0 5px;
  transition: 0.3s;
}

.blog .blog-pagination li a {
  color: var(--color-secondary);
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog .blog-pagination li.active,
.blog .blog-pagination li:hover {
  background: var(--color-primary);
}

.blog .blog-pagination li.active a,
.blog .blog-pagination li:hover a {
  color: var(--color-white);
}
/**/
.about-founder p{ line-height: 2}
.about-founder h4{ line-height: 1.7}


/*about chairman */

.flip-box {
	background-color: #fff; border: 1px solid #ccc;
	/* 	border: 1px solid black; */
	perspective: 1000px; /* Remove this if you don't want the 3D effect */
	cursor: pointer;margin-top: 10px
}
.flip-box .button-primary{margin-top: 8px;}
/* This container is needed to position the front and back side */
.flip-box-inner {
	position: relative;
	width: 100%;
	height: 100%;
	padding-top: 52.65%;
	text-align: center;
	transition: transform 0.8s;
	transform-style: preserve-3d;
}

/* Do an horizontal flip when you move the mouse over the flip box container */
.flip-box:hover .flip-box-inner {
	transform: rotateY(180deg);
}

/* Position the front and back side */
.flip-box-front,
.flip-box-back {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-webkit-backface-visibility: hidden; /* Safari */
	backface-visibility: hidden; 
}

.flip-box img {
	max-width: 80%;
	max-height: 80%; padding-top: 39px; 
	/*object-fit: cover;*/
}

/* Style the front side (fallback if image is missing) */
.flip-box-front {
	color: black;background-image: url("../img/card-bg.jpg"); background-size: cover;
}

/* Style the back side */
.flip-box-back {
	background-color: #333333; 
	color: #ffffff;
	transform: rotateY(180deg);
	display: grid;
	align-content: center; padding: 10px;
}
.flip-box-back h5 {color: #ffffff;}
@media screen and (max-width: 600px) {
	.flip-box-inner {
		padding-top: 100%;
	}
	.flip-box {
		/*width: 90vw;*/
	}
}

/* news */
.post-img-slide .carousel-item  {text-align: center; max-heigh: 500px}

.announcement .modal-body{padding:0!important}