/*
* ----------------------------------------------------------------------------------------
* 00.COLOR CSS.
* ----------------------------------------------------------------------------------------
*/
:root {
  --font-body: "Pathway Extreme", serif;
  --font-head: "Forum", serif;
}

/*
* ----------------------------------------------------------------------------------------
* 01.BASE INDEX.
* ----------------------------------------------------------------------------------------
*/

* {
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  height: auto;
  color: #FFFFFF;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  background: #0e0e0e;
}

.link-button {
  padding: 20px 60px;
  color: #ecc892;
  text-decoration: none;
  font-size: 20px;
  font-weight: 600;
  display: inline-block;
  letter-spacing: 1px;
  border: 3px solid #ecc892;
}

.link-button:hover {
  background: #ecc892;
  color: #0e0e0e;
  border: 3px solid #ecc892;
}

.img-wrap img {
  width: 100%;
}

.fixi {
  background: #0e0e0e;
}

.title-section span {
  color: #ecc892;
  font-size: 20px;
}

.title-section h3 {
  font-size: 70px;
  font-family: var(--font-head);
}

.title-section p {
  font-size: 24px;
}

.main-title p {
  color: #ecc892;
  font-size: 20px;
}

.main-title h1 {
  font-family: var(--font-head);
  font-size: 120px;
  color: #FFFFFF;
}

.breadcum-btn {
  padding: 0;
}

.breadcum-btn li {
  list-style: none;
  font-size: 20px;
  font-weight: 300;
}


.breadcum-btn li i {
  font-size: 13px;
  padding: 0 10px;
}

.bread-btn-one {
  color: #ecc892;
  text-decoration: none;
}

.bread-btn-one:hover {
  color: #ecc892;
}

/* media query */
@media screen and (max-width: 999px) {
  .main-title h1 {
    font-size: 80px;
  }

  .title-section span {
    font-size: 20px;
  }

  .title-section h3 {
    font-size: 60px;
  }

  .title-section p {
    font-size: 24px;
  }
}

/*
* ----------------------------------------------------------------------------------------
* 02.HEADER MAIN.
* ----------------------------------------------------------------------------------------
*/

#header-main {
  position: fixed;
  width: 100%;
  z-index: 999;
  padding: 10px 0;
}

.navbar-nav li {
  position: relative;
  font-size: 15px;
  margin: 0 15px 0 0; 
}

.navbar-nav li:nth-last-child(1) {
  margin: 0 0 0 0;
}

.navbar-nav li a.nav-link {
  text-decoration: none; 
}

.navbar-nav li a.nav-link i {
  font-size: 13px;
}

.navbar-nav li a.nav-link.active {
  color: #ecc892 !important;
}

.navbar-nav li a.nav-link:hover {
  color: #ecc892 !important;
}

.navbar-nav .sub-menu li a {
  color: #FFFFFF;
  font-weight: 500;
  line-height: 38px;
  padding: 0 20px;
  width: 100%;
  text-decoration: none;
}

.navbar-nav .sub-menu li a.active {
  color: #ecc892;
}

.navbar-nav .sub-menu li a:hover {
  color: var(--five);
}

.offcanvas {
  transition: all 0.3s;
  background-color: #141414;
}


.head-sosmed {
  padding: 0;

}

.head-sosmed li {
  position: relative;
  display: inline-block;
  list-style: none;
  margin: 0 10px;
}

.head-sosmed li a {
  display: block;
  min-width: 20px;
  left: 0;
  font-size: 18px;
  height: 40px;
  width: 40px;
  line-height: 40px;
  text-align: center;
  color: #ecc892;
  border: 1px solid #ecc892;
  margin-right: 10px;
  border-radius: 100px;
}

.head-sosmed li a:hover {

  color: #0e0e0e;
  background: #ecc892;
}

/* media query */
@media screen and (min-width: 999px) {
  .navbar-nav .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 230px;
    font-size: 16px;
    background: #141414;
    padding: 18px 0;
    transition: all 0.3s ease-in-out;
    visibility: hidden;
    opacity: 0;
    margin: 20px 0 0;
    box-shadow: 0px 50px 100px rgba(0, 0, 0, 0.12);
  }

  .navbar-nav .sub-menu li {
    padding: 5px 0;
  }

  .navbar-nav .nav-item:hover>.sub-menu {
    margin-top: 0;
    visibility: visible;
    opacity: 1;
  }

  .offcanvas-backdrop.show {
    opacity: 0;
  }

}

@media (max-width: 999px) {
  .offcanvas-end.show {


    background: #141414;
  }

  .sub-menu {
    display: none;
  }

  .sub-menu.showdrop {
    display: block;
    position: relative;
    visibility: visible;
    opacity: 1;
  }
  
.head-sosmed {
  padding: 10px 0;

}

}

/*
* ----------------------------------------------------------------------------------------
* 03.HERO SECTION.
* ----------------------------------------------------------------------------------------
*/
#section-hero {
  padding: 200px 0;
  position: relative;
  z-index: 1;
  background-size: cover !important;
}

#section-hero:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(14, 14, 14, .3);
  width: 100%;
  height: 100%;
  z-index: -1;
}

.main-content {
  height: auto;
}

/*
* ----------------------------------------------------------------------------------------
* 03.ABOUT SECTION.
* ----------------------------------------------------------------------------------------
*/
#section-about {
  padding: 150px 0;
}

/* by menu section */
#section-bymenu {
  padding: 0 0 150px;
}

.icon-menu {
  font-size: 40px;
  background: #0e0e0e;
  color: #ecc892;
  width: 100px;
  height: 100px;
  display: inline-block;
  line-height: 2.8;
  border-radius: 100px;
}

.inner-content {
  margin: 0 50px;
  padding: 100px;
  background: #141414;
}

.inner-bymenu h3 {
  font-family: var(--font-head);
  font-size: 40px;
  color: #ecc892;
}

.inner-bymenu p {
  font-size: 16px;
}

.inner-bymenu.center-col {
  padding: 100px 0 0;
}

/* media query */
@media (max-width: 999px) {
  .inner-content {
    margin: 0 0;
    padding: 100px 30px;
  }

  .inner-bymenu.center-col {
    padding: 0 0 0;
  }
}

/* gap counter section */
#section-gap {
  padding: 100px 0;
  background-size: cover !important;
  background-attachment: fixed !important;
}


.wrap-odometer {
  display: inline-block;
  height: 70px;
  width: 70px;
  text-align: center;
  padding: 10px 0;
  background: var(--one);
}

.odometer-wrap h4 {
  height: 100px;
}

.odometer-wrap i {
  font-size: 40px;
  color: var(--five);
  background: var(--one);
}

.odometer-wrap .odometer {
  font-family: var(--font-head);

  font-size: 100px;
  color: #ecc892;
}

.odometer-wrap .unit {
  font-weight: 700;
  position: relative;
  top: 0;
  font-size: 40px;
  color: #ecc892;
}

.odometer-wrap p {
  line-height: 1.8;
  font-size: 20px !important;
  color: #FFFFFF !important;
}

.inner-ffact {
  padding: 50px 30px;
  border: 1px solid #a5a5a5;
  background: #0e0e0e;
}

.inner-ffact .icon-count {
  font-size: 60px;
}

.inner-ffact h3 {
  font-family: var(--font-head);
  color: #ecc892;
}

/* section menu */
#section-menu {
  padding: 100px 0;
}

#section-menu .nav-link {
  background: transparent;
  border: none;
  font-family: var(--font-head);
  color: #a5a5a5;
  font-size: 35px;
}

#section-menu .nav-link.active {
  color: #ecc892;
}

.menu-nav {
  display: flex;
  justify-content: center;
  list-style: none;
  margin: 32px 0;
  padding: 30px 0;
  border-top: 1px solid #a5a5a5;
  border-bottom: 1px solid #a5a5a5;
}


.menu-content {
  margin: 0 0 0 0;
  padding: 50px 30px;
  border: 1px solid #a5a5a5;
}

.menu-content ul {
  padding: 0;
}

.menu-content ul li {
  list-style: none;
  margin: 50px 0;
}

.menu-item {
  display: flex;
  position: relative;
}

.menu-item:after {

  flex-grow: 1;
  background: #a5a5a5;
  order: 2;
  left: 0;
  top: 20px;
  content: "";
  margin: 0 20px;
  height: 1px;
  position: relative;
}

.menu-item h4.title {
  font-family: var(--font-head);
  font-size: 30px;
  color: #ecc892;
  order: 1;
}

.menu-item span.price {
  font-family: var(--font-head);
  font-size: 30px;
  color: #ecc892;
  order: 3;
}

/* section gap video */

#section-gapvideo {
  padding: 0 0 50px 0;
}

#section-gapvideo .inner-content {
  background-size: cover !important;
  background-position: center !important;
}

.video-btn {
  background: rgba(236, 200, 146, .06);
  border: 1px solid rgba(236, 200, 146, .15);
  border-radius: 50%;
  cursor: pointer;
  height: 200px;
  width: 200px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

.inner-videobtn {
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  background: linear-gradient(180deg, rgba(236, 200, 146, 0) 17.71%, rgba(236, 200, 146, .20) 100%), rgba(236, 200, 146, .15);
  border-radius: 100%;
  height: 130px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 130px;
}

.inner-videobtn span {
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 30px;
  color: #FFFFFF;
}


/* media query */
@media (max-width: 999px) {
  .video-btn {
    position: relative;
    margin: 30px 0;
  }
}

/* section chef */
#section-chef {
  padding: 50px 0;
}

#section-chef .owl-dots {
  padding: 50px 0 0 0;
}

#section-chef .owl-dots .owl-dot span {
  background: #ecc892;
  opacity: .3;
  width: 7px;
  height: 7px;
}

#section-chef .owl-dots .owl-dot.active span {
  background: #ecc892;
  opacity: 1;
}

.poto-img {
  position: relative;
}

.poto-img:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.miniteam-wrap:hover .poto-img:after {
  background: linear-gradient(to right, rgba(27, 27, 27, 0.5) 0%, rgba(27, 27, 27, .3) 100%),
    linear-gradient(to top, rgba(27, 27, 27, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

.poto-img {
  overflow: hidden;
}

.poto-img img {
  width: 100%;
  transition: all .3s;
}

.miniteam-wrap:hover .poto-img img {
  transform: scale(1.1);
}

.thename {
  position: absolute;
  bottom: 0;
  left: 20px;
  transition: all .3s;
  opacity: 0;
}

.thename a {

  text-decoration: none;
  color: #FFFFFF;
}

.thename a h3 {
  font-family: var(--font-head);
}

.thename a:hover h3 {
  font-family: var(--font-head);
  color: #ecc892;
}

.miniteam-wrap:hover .thename {
  opacity: 1;
  bottom: 20px;
}

/* section funcount */
#section-funcount {
  padding: 50px 0;
}

#section-funcount .box-card {
  border: 1px solid #ecc892;
  padding: 30px 20px;
}

/* section news */
#section-news {
  padding: 50px 0;
  
}

.img-part {
  position: relative;
}

.img-part img {
  width: 100%;
}

.img-part:after {
  content: '';
  position: absolute;
  z-index: 1;
  top: 0;
  width: 100%;
  left: 0;
  background: linear-gradient(to bottom, transparent 0, rgba(8, 8, 8, .01) 2%, rgba(8, 8, 8, .90) 90%);
  height: 100%;
}

.detail-news {
  padding: 50px 30px 30px;
  background: #141414;
  position: relative;
  top: -50px;
  margin: 0 30px 0 30px;
  border: 1px solid #ecc892;
  z-index: 1;
}

.detail-news p {
  color: #ecc892;
}

.detail-news a {
  color: #FFFFFF;
  text-decoration: none;
  font-family: var(--font-head);
}

.detail-news a:hover {
  color: #ecc892;
}


.blog-badge {
  width: auto;
  height: 50px;
  line-height: 50px;
  padding: 0 15px;
  position: absolute;
  left: -8px;
  top: 20px;
  background: #ecc892;
  color: #0e0e0e;
  font-weight: 400;
  z-index: 2;
}

.blog-badge:before,
.blog-badge:after {
  content: "";
  position: absolute;
}

.blog-badge:before {
  height: 0;
  width: 0;
  top: -8.5px;
  left: 0.1px;
  border-bottom: 9px solid #574935;
  border-left: 9px solid transparent;
}

.blog-badge:after {
  height: 0;
  width: 0;
  right: -14.5px;
  border-top: 25px solid transparent;
  border-bottom: 25px solid transparent;
  border-left: 15px solid #ecc892;
}

/* footer main */
#footer-main {
  padding: 0 0 0;
}

.info-footer {
  padding: 100px 0 0;
}
.info-footer p {
font-size: 20px;}

.info-footer h3 {
  font-family: var(--font-head);
  color: #ecc892;
}

.link-footer {
  padding: 100px 0 50px;
}

.link-footer ul.list-link {
  padding: 0;
}

.link-footer ul.list-link li {
  list-style: none;
  position: relative;
  padding: 0 25px 0 0;
  margin: 5px 0;
}

.link-footer ul.list-link li i  {
  margin: 0 10px 0 0;
  color: #ecc892;
}
.link-footer ul.list-link li a{
 text-decoration: none;
 color: #a5a5a5;
}
.link-footer ul.list-link li a:hover{
   color: #FFFFFF;
 }
.link-footer h3 {
  font-family: var(--font-head);
  color: #ecc892;
}

.bottom-footer {
  background: #141414;
  padding: 20px 0;
}

.copyright p {
  color: #a5a5a5;
}
/* media query */
@media (max-width: 999px) {
.link-footer {
  padding: 0 0 50px;
}
}
/* banner section */

#section-banner {
  padding: 150px 0;
}

#section-content {
  padding: 100px 0;
}

/* team detail page */

.mini-detailteam p {
  color: #a5a5a5;
}

.list-detailteam {
  padding: 0;
}

.list-detailteam li {
  list-style: none;
  position: relative;
  padding: 0 0 0 60px;
}

.list-detailteam li i {
  position: absolute;
  min-width: 35px;
  left: 0;
  font-size: 20px;
  line-height: 40px;
  color: #ecc892;
  margin-right: 15px;
}

.list-detailteam li p {
  padding: 10px 0;
  color: #FFFFFF;
  font-weight: 300;
  font-size: 18px;
}

.list-sosmed {
  padding: 0;
}

.list-sosmed li {
  position: relative;
  list-style: none;
  display: inline-block;
}

.list-sosmed li a {
  display: block;
  min-width: 35px;
  left: 0;
  font-size: 20px;
  height: 50px;
  width: 50px;
  line-height: 50px;
  text-align: center;
  color: #FFFFFF;
  border: 1px solid #a5a5a5;
  margin-right: 15px;
}


/* testimonial */
#section-testimonial {
  padding: 50px 0 100px;
}

#testimonial-slide .minitesti-wrap {
  padding: 50px 30px;
  background: #141414;
  border: 1px solid #ecc892;
}

#testimonial-slide .minitesti-wrap p {
  font-size: 24px;
}

.container-card-user {
  display: inline-flex;
  padding: 20px 0 20px;
}

.container-card-user img {
  border-radius: 50%;
  height: 50px;
  width: 50px !important;
}

.container-card-user-flex {
  display: flex;
  flex-direction: column;
  padding-left: 20px;
}

.container-card-user .user {
  color: #ecc892;
}

.container-card-user-flex span {
  color: #a5a5a5;
}

/* section gap subcribe */

#section-subcribe {
  padding: 100px 0;
}

.outer-subcribe {
  padding: 20px;
  background: #141414;
}

.inner-subcribe {
  border: 1px solid #ecc892;
  padding: 100px 150px;
}

.inner-subcribe h3 {
  font-size: 50px;
  font-family: var(--font-head);
}

.inner-subcribe p {
  font-weight: 300;
  font-size: 20px;
}

.inner-subcribe form input.form-control {
  background-color: transparent;
  border-radius: 0 !important;
  border: 1px solid #ecc892 !important;
  color: #FFFFFF !important;
  padding: 18px 12px !important;
}

.inner-subcribe form button.btn-primary {
  padding: 18px 38px !important;
  height: 100%;
  border-radius: 0;
  border: none;
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #0e0e0e;
  background: #ecc892;
}

/* media query */
@media (max-width: 999px) {
  .inner-subcribe {
    border: 1px solid #ecc892;
    padding: 100px 30px;
  }

  .inner-subcribe form {
    flex-direction: column;
  }

  .inner-subcribe form button.btn-primary {
    display: block;
    width: 100%;
  }
}