@import url("https://fonts.googleapis.com/css?family=Poppins:500,700|Open Sans:400,500");
@font-face {
  font-family: 'Century Gothic';
  src: url('../fonts/centurygothic.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Century Gothic Bold';
  src: url('../fonts/centurygothic_bold.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

.no-padding { padding: 0; }

.section_gap { padding: 100px 0; }
@media (max-width: 991px) {
  .section_gap { padding: 70px 0; }
}

.section_gap_top_75 { padding: 75px 0; }
@media (max-width: 991px) {
  .section_gap_top_75 { padding: 70px 0; }
}

.section_gap_75 { padding: 75px 0; }
@media (max-width: 991px) {
  .section_gap_75 { padding: 70px 0; }
}

.section_gap_top { padding-top: 100px; }
@media (max-width: 991px) {
  .section_gap_top { padding-top: 80px; }
}

.section_gap_bottom { padding-bottom: 100px; }
@media (max-width: 991px) {
  .section_gap_bottom { padding-bottom: 80px; }
}

.gray-bg { background: #f9f9ff; }

/* Section title css
============================================================================================ */
.section-title { margin-bottom: 50px; }
.section-title h1 { font-size: 36px; }
.section-title h2 { 
  font-size: 26px; 
  font-weight: 200; 
}
.section-title p { margin-bottom: 0; }


/* Start Gradient Area css
============================================================================================ */
.gradient-bg, .primary-btn, .add-bag .add-btn, .single-product .product-details .prd-bottom .social-info span:after, .grid-btn:hover, .list-btn:hover, .grid-btn.active, .list-btn.active, .pagination a.active, .pagination a:hover, .s_Product_carousel .owl-dots div.active, .s_product_text .card_area .icon_btn:after, .product_description_area .nav.nav-tabs li a.active, .blog-pagination .page-item.active .page-link, .single-footer-widget .click-btn {
  background: -webkit-linear-gradient(90deg, #C7B299 0%, #C7B299 100%);
  background: -moz-linear-gradient(90deg, #C7B299 0%, #C7B299 100%);
  background: -o-linear-gradient(90deg, #C7B299 0%, #C7B299 100%);
  background: linear-gradient(90deg, #C7B299 0%, #C7B299 100%); }

.gradient-bg-reverse, #search_input_box {
  background: -webkit-linear-gradient(270deg, #E3DED7 0%, #E3DED7 100%);
  background: -moz-linear-gradient(270deg, #E3DED7 0%, #E3DED7 100%);
  background: -o-linear-gradient(270deg, #E3DED7 0%, #E3DED7 100%);
  background: linear-gradient(270deg, #E3DED7 0%, #E3DED7 100%); }

.gradient-color, .product_description_area .tab-content .total_rate .box_total h4, .single-footer-widget .bb-btn {
  background: -webkit-linear-gradient(90deg, #C7B299 0%, #C7B299 100%);
  background: -moz-linear-gradient(90deg, #C7B299 0%, #C7B299 100%);
  background: -o-linear-gradient(90deg, #C7B299 0%, #C7B299 100%);
  background: linear-gradient(90deg, #C7B299 0%, #C7B299 100%);
  background-clip:text ;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; }

  body { 
    line-height: 24px; 
    font-size: 14px; 
    font-family: "Century Gothic", sans-serif; 
    font-weight: 400; 
    color: #777777; 
    background: #fff; 
  }
  
  html, body { height: 100%; }
  
  ul { 
    margin: 0; 
    padding: 0; 
    list-style: none; 
  }
  
  h1, h2, h3, h4, h5, h6 { 
    font-family: "Century Gothic", sans-serif; 
    color: #222222; 
    font-weight: 500; 
    line-height: 1.2 !important; 
  }
  
  .list { 
    list-style: none; 
    margin: 0px; 
    padding: 0px; 
  }
  
  a {
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}
  
  a:hover, a:focus { 
    text-decoration: none; 
    outline: none; 
  }
  
  button:focus { 
    outline: none; 
    box-shadow: none; 
  }
  
  .overflow-hidden { overflow: hidden; }
  
  .sample-text-area { 
    background: #fff; 
    padding: 100px 0 70px 0; 
  }
  
  .text-heading { 
    margin-bottom: 30px; 
    font-size: 24px; 
  }
  
  b, sup, sub, u, del { color: #C7B299; }
  
  h1 { font-size: 36px; }
  h2 { font-size: 30px; }
  h3 { font-size: 24px; }
  h4 { font-size: 18px; }
  h5 { font-size: 16px; }
  h6 { font-size: 14px; }
  h1, h2, h3, h4, h5, h6 { 
    line-height: 1.5em; 
  }

  /* Splash Screen Styling */
.splash-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(6, 22, 41, 1);
  background: linear-gradient(to bottom, rgba(6, 22, 41, 1), rgba(5, 18, 33, 1), rgba(6, 24, 46, 1));
  color: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}

.splash-content {
  text-align: center;
  animation: fadeIn 1.5s ease-out;
  font-size: 14px;
}

.splash-screen.hide {
  opacity: 0;
  pointer-events: none;
}

/* Optional: Animation for content */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

  
  #ftco-loader {
    position: fixed;
    width: 96px;
    height: 96px;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background-color: rgba(255, 255, 255, 0.9);
    -webkit-box-shadow: 0px 24px 64px rgba(0, 0, 0, 0.24);
    box-shadow: 0px 24px 64px rgba(0, 0, 0, 0.24);
    border-radius: 16px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity .2s ease-out, visibility 0s linear .2s;
    -o-transition: opacity .2s ease-out, visibility 0s linear .2s;
    transition: opacity .2s ease-out, visibility 0s linear .2s;
    z-index: 1000; }
  
  #ftco-loader.fullscreen {
    padding: 0;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    background-color: #fff;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none; }
  
  #ftco-loader.show {
    -webkit-transition: opacity .4s ease-out, visibility 0s linear 0s;
    -o-transition: opacity .4s ease-out, visibility 0s linear 0s;
    transition: opacity .4s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1; }
  
  #ftco-loader .circular {
    -webkit-animation: loader-rotate 2s linear infinite;
    animation: loader-rotate 2s linear infinite;
    position: absolute;
    left: calc(50% - 24px);
    top: calc(50% - 24px);
    display: block;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg); }
  
  #ftco-loader .path {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
    -webkit-animation: loader-dash 1.5s ease-in-out infinite;
    animation: loader-dash 1.5s ease-in-out infinite;
    stroke-linecap: round; }
  
  @-webkit-keyframes loader-rotate {
    100% {
      -webkit-transform: rotate(360deg);
      transform: rotate(360deg); } }
  
  @keyframes loader-rotate {
    100% {
      -webkit-transform: rotate(360deg);
      transform: rotate(360deg); } }
  
  @-webkit-keyframes loader-dash {
    0% {
      stroke-dasharray: 1, 200;
      stroke-dashoffset: 0; }
    50% {
      stroke-dasharray: 89, 200;
      stroke-dashoffset: -35px; }
    100% {
      stroke-dasharray: 89, 200;
      stroke-dashoffset: -136px; } }
  
  @keyframes loader-dash {
    0% {
      stroke-dasharray: 1, 200;
      stroke-dashoffset: 0; }
    50% {
      stroke-dasharray: 89, 200;
      stroke-dashoffset: -35px; }
    100% {
      stroke-dasharray: 89, 200;
      stroke-dashoffset: -136px; } }

  .is-sticky .header_area .main_menu .main_box {
    max-width: 100%;
    margin-top: 0;
    transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
}
  
  .is-sticky .header_area #search_input_box {
    max-width: 100%; 
  }
  
  .sticky-wrapper {
    position: absolute;
    top: 40px;
    width: 100%; 
  }
  
  @media (max-width: 991px) {
    .sticky-wrapper {
      top: 0; 
    }
  }
  
  .header_area {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 99;
    transition: background 0.4s, all 0.3s linear;
    -webkit-transition: background 0.4s, all 0.3s linear;
    -moz-transition: background 0.4s, all 0.3s linear;
    -ms-transition: background 0.4s, all 0.3s linear;
    -o-transition: background 0.4s, all 0.3s linear;
}
  
  .header_area .main_menu .main_box {
    background: #fff;
    margin: 0 auto;
    max-width: 1200px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
}
  
  .header_area .navbar {
    background: #fff;
    padding: 0;
    border: 0;
    border-radius: 0;
    -webkit-border-radius:0;
    -moz-border-radius:0;
    -ms-border-radius:0;
    -o-border-radius:0;
}
  
  @media (max-width: 991px) {
    .header_area .navbar .navbar-collapse {
      margin-top: 30px; 
    }
    
    .header_area .navbar .navbar-collapse .nav-item {
      padding: 10px; 
    }
  }
  
  .header_area .navbar .navbar-toggler .icon-bar {
    color: #000;
    height: 2px;
    width: 20px;
    background: #000;
    display: block;
    margin: 5px; 
  }
  
  .header_area .navbar .nav .nav-item {
    margin-right: 45px; 
  }
  
  .header_area .navbar .nav .nav-item .nav-link {
    text-transform: uppercase;
    padding: 0;
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    color: #222222; 
  }
  
  @media (min-width: 991px) {
    .header_area .navbar .nav .nav-item .nav-link {
      padding: 10px 0; 
    }
  }
  
  .header_area .navbar .nav .nav-item .nav-link:after {
    display: none; 
  }
  
  .header_area .navbar .nav .nav-item:hover .nav-link,
  .header_area .navbar .nav .nav-item.active .nav-link {
    color: #a18b64; 
  }
  
  .header_area .navbar .nav .nav-item.submenu {
    position: relative; 
  }
  
  .header_area .navbar .nav .nav-item.submenu ul {
    border: none;
    padding: 0;
    box-shadow: none;
    margin: 0;
    background: #fff;
    border-radius: 0;
    -webkit-border-radius:0;
    -moz-border-radius:0;
    -ms-border-radius:0;
    -o-border-radius:0;
}
  
  @media (min-width: 992px) {
    .header_area .navbar .nav .nav-item.submenu ul {
      position: absolute;
      top: 140%;
      left: 0;
      min-width: 200px;
      text-align: left;
      opacity: 0;
      visibility: hidden;
      display: block;
      transition: visibility 0.5s ease;
      -webkit-transition: visibility 0.5s ease;
      -moz-transition: visibility 0.5s ease;
      -ms-transition: visibility 0.5s ease;
      -o-transition: visibility 0.5s ease;
}
  }
  
  .header_area .navbar .nav .nav-item.submenu ul:before {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 10px 0 10px;
    border-color: #eeeeee transparent transparent transparent;
    position: absolute;
    right: 24px;
    top: 45px;
    z-index: 3;
    opacity: 0;
    transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
}
  
  .header_area .navbar .nav .nav-item.submenu ul .nav-item {
    display: block;
    float: none;
    margin-right: 0;
    border-bottom: 1px solid #ededed;
    margin-left: 0;
    transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
}
  
  .header_area .navbar .nav .nav-item.submenu ul .nav-item.active {
    background: #E3DED7; 
  }
  
  .header_area .navbar .nav .nav-item.submenu ul .nav-item.active .nav-link {
    color: #222; 
  }
  
  .header_area .navbar .nav .nav-item.submenu ul .nav-item .nav-link {
    line-height: 45px;
    padding: 0 30px;
    display: block;
    margin-right: 0;
    transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
}
  
  .header_area .navbar .nav .nav-item.submenu ul .nav-item:last-child {
    border-bottom: none; 
  }
  
  .header_area .navbar .nav .nav-item.submenu ul .nav-item:hover .nav-link {
    background: #E3DED7;
    color: #222; 
  }
  
  @media (min-width: 992px) {
    .header_area .navbar .nav .nav-item.submenu:hover ul {
      visibility: visible;
      opacity: 1; 
    }
  }
  
  .header_area .navbar .nav .nav-item.submenu:hover ul .nav-item {
    margin-top: 0; 
  }
  
  .header_area .navbar .nav .nav-item:last-child {
    margin-right: 0; 
  }
  
  @media (min-width: 991px) {
    .header_area .navbar .nav.navbar-nav.navbar-right {
      display: -webkit-inline-box; 
    }
  }
  
  .header_area .navbar .nav.navbar-nav.navbar-right li {
    margin-left: 25px;
    margin-right: 0; 
  }
  
  @media (max-width: 991px) {
    .header_area .navbar .nav.navbar-nav.navbar-right li {
      margin-left: 0; 
    }
  }
  
  .header_area .navbar .nav.navbar-nav.navbar-right li:first-child {
    margin-left: 35px; 
  }
  
  @media (max-width: 991px) {
    .header_area .navbar .nav.navbar-nav.navbar-right li:first-child {
      display: none; 
    }
  }
  
  .header_area .navbar .nav.navbar-nav.navbar-right li span {
    color: #222222;
    line-height: 80px;
    font-weight: 500; 
  }
  
  .header_area .navbar .nav.navbar-nav.navbar-right .search {
    background: transparent;
    border: 0;
    cursor: pointer;
    padding: 0; 
  }
  
  .header_area #install-button {
    background:#082140;
    color: #ffffff;
    padding: 3px 20px;
    font-size: 12px;
    font-weight: 100;
    font-family: "Poppins", sans-serif;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    cursor: pointer;
}

.header_area #install-button:hover {
  background:#05182e ;
}

  #search_input_box {
    position: fixed;
    left: 50%;
    width: 100%;
    max-width: 1200px;
    z-index: 999;
    text-align: center;
    padding: 5px 20px;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}
  
  #search_input_box .form-control {
    background: transparent;
    border: 0;
    color: #222222;
    font-weight: 500;
    font-size: 15px;
    padding: 0;
  }
  
  #search_input_box .form-control:focus {
    box-shadow: none;
    outline: none;
  }
  
  #search_input_box input::placeholder {
    color: #555555;
    font-size: 14px;
  }
  
  #search_input_box .btn {
    width: 0;
    height: 0;
    padding: 0;
    border: 0;
  }
  
  #search_input_box .lnr-cross {
    color: #555555;
    font-weight: 600;
    cursor: pointer;
    padding: 10px 3px;
  }
  
  @media (max-width: 575px) {
    .navbar-expand-lg > .container,
    .navbar-expand-lg > .container-fluid {
      padding: 0px 15px;
    }
  }

  .btn-search-mobile {
    border: 1px solid rgba(0, 0, 0, .1);
    background: none;
    padding: 0px 15px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.navbar #backButton {
  padding: 0 3px 0 7px;
  border-radius: 5px;
  border: 1px solid rgba(0, 0, 0, .1);
  height: 40px;
  width: 40px;
  margin-left:-20px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.navbar #backButton span {
  font-weight: 700;
  font-size: 26px;
  color:rgba(0, 0, 0, .5)
}

  
/* banner area css
============================================================================================ */

.content {
  background: linear-gradient(to bottom, rgba(212, 205, 195, 0.3), rgba(255, 255, 255, 1));
  position: relative;
  padding: 7.5rem 0 0 0;
}

.slide-item {
  position: relative;
}

.slide-text {
  position: absolute;
  bottom: 32px;
  left: 100px;
  color: white;
  text-align: center;
  background-color: rgba(71, 71, 79, 0.1);
  padding: 5px 5px 5px 20px;
  display: inline-block;
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
  border-radius: 50px;
  -webkit-border-radius:50px;
  -moz-border-radius:50px;
  -ms-border-radius:50px;
  -o-border-radius:50px;
}

.slide-text span {
  font-size: 14px;
}

.read-more-btn {
  display: inline-block;
  height: 40px;
  width: 40px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  line-height: 42px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 100;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  transition: background-color 0.3s ease;
  -webkit-transition: background-color 0.3s ease;
  -moz-transition: background-color 0.3s ease;
  -ms-transition: background-color 0.3s ease;
  -o-transition: background-color 0.3s ease;
}

.read-more-btn:hover {
  background-color: #C7B299;
  color: #524033;
}

.home-banner-slide .owl-nav {
  width: 100%;
  position: absolute;
  top: 45%;
}

.home-banner-slide .owl-nav .owl-next,
.home-banner-slide .owl-nav .owl-prev {
  z-index: 92;
  position: absolute;
  top: 50%;
}

.home-banner-slide .owl-nav .owl-next:active,
.home-banner-slide .owl-nav .owl-next:focus,
.home-banner-slide .owl-nav .owl-prev:active,
.home-banner-slide .owl-nav .owl-prev:focus {
  outline: none;
}

.home-banner-slide .owl-nav .owl-next span,
.home-banner-slide .owl-nav .owl-prev span {
  color: #fff;
}

.home-banner-slide .owl-nav .owl-next span:before,
.home-banner-slide .owl-nav .owl-prev span:before {
  font-size: 40px !important;
}

.home-banner-slide .owl-nav .owl-next {
  right: 20px;
}

.home-banner-slide .owl-nav .owl-prev {
  left: 20px;
}

.home-banner-slide .owl-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}

.home-banner-slide .owl-dots .owl-dot {
  background: none;
  display: inline-block;
}

.home-banner-slide .owl-dots .owl-dot > span {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.5);
  margin: 4px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.home-banner-slide .owl-dots .owl-dot.active > span {
  background: #ffffff;
}

.home-banner-slide .owl-dots .owl-dot:active,
.home-banner-slide .owl-dots .owl-dot:focus {
  outline: none;
}

/* Style for tablets (screen width between 768px and 1024px) */
@media only screen and (max-width: 1024px) and (min-width: 768px) {
  .content {
    padding: 6rem 0 0 0; /* Adjust padding for tablets */
  }

  .slide-text {
    bottom: 20px;
    left: 60px;
    padding: 0px 0px 0px 15px;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
}

  .slide-text span {
    font-size: 13px;
    font-weight: 500;
  }

  .read-more-btn {
    height: 28px;
    width: 28px;
    line-height: 28px;
    font-size: 13px;
    font-weight: 100;
  }

  .home-banner-slide .owl-nav .owl-next span:before,
  .home-banner-slide .owl-nav .owl-prev span:before {
    font-size: 30px !important;
  }

  .home-banner-slide .owl-nav .owl-next {
    right: 10px;
  }

  .home-banner-slide .owl-nav .owl-prev {
    left: 10px;
  }

  .home-banner-slide .owl-dots {
    position: absolute;
    bottom: 18px;
  }
}

/* Style for mobile (screen width below 768px) */
@media only screen and (max-width: 768px) {
  .content {
    padding: 5.5rem 0 0 0; /* Adjust padding for mobile */
  }

  .slide-text {
    bottom: 10px;
    left: 35px;
    padding: 0px 0px 0px 10px;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
}

  .slide-text span {
    font-size: 11px;
    font-weight: 500;
  }

  .read-more-btn {
    height: 27px;
    width: 27px;
    line-height: 27px;
    font-size: 11px;
    font-weight: 100;
  }

  .home-banner-slide .owl-nav .owl-next span:before,
  .home-banner-slide .owl-nav .owl-prev span:before {
    font-size: 20px !important;
  }

  .home-banner-slide .owl-nav .owl-next {
    right: 5px;
  }

  .home-banner-slide .owl-nav .owl-prev {
    left: 5px;
  }

  .home-banner-slide .owl-dots {
    position: absolute;
    top: 5px;
  }

  .home-banner-slide .owl-dots .owl-dot > span {
    display: inline-block;
    width: 7px;
    height: 7px;
    background: rgba(255, 255, 255, 0.5);
    margin: 2px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}
}

.banner-area {
  background: linear-gradient(to top, rgba(243, 240, 238, 0.5), rgba(255, 255, 255, 1));
  position: relative;
}

.banner-container {
  padding-top: 120px;
  padding-bottom: 70px;
}

@media (max-width: 768px) {
  .banner-area .fullscreen {
    height: 650px !important;
  }
}

.banner-area .active-banner-slider .owl-nav {
  position: absolute;
  right: 0;
  bottom: -50px;
}

@media (max-width: 1920px) {
  .banner-area .active-banner-slider .owl-nav {
    right: -115px;
  }
}

@media (max-width: 1680px) {
  .banner-area .active-banner-slider .owl-nav {
    right: 0px;
  }
}

@media (max-width: 991px) {
  .banner-area .active-banner-slider .owl-nav {
    display: none;
  }
}

.banner-area .active-banner-slider .owl-nav .owl-prev,
.banner-area .active-banner-slider .owl-nav .owl-next {
  display: inline-block;
  margin: 10px;
  opacity: 0.5;
  transition: all 0.3s ease 0s;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
}

.banner-area .active-banner-slider .owl-nav .owl-prev:hover,
.banner-area .active-banner-slider .owl-nav .owl-next:hover {
  opacity: 1;
}

.banner-area .banner-content {
  padding-left: 10px;
}

@media (max-width: 991px) {
  .banner-area .banner-content {
    padding-left: 0;
  }
}

.banner-area .banner-content h2 {
  font-size: 60px;
  line-height: 66px;
  font-weight: 700;
  margin-bottom: 30px;
}

.banner-area h3 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.banner-area h4 {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 1px;
  margin-bottom: 0;
}

.banner-area h6 {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 0;
}

.banner-area .l-through {
  text-decoration: line-through;
  color: #BBBBBB;
}

.banner-area .box-list-promo {
  background: linear-gradient(to right, rgba(243, 240, 238, 0.0), rgba(255, 255, 255, 0.9));
  padding: 10px;
  margin-right: 10px;
  box-shadow: 0px 4px 10px rgba(197, 190, 174, 0.1);
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
}

.banner-area .btn-more-promo {
  background-color: rgba(71, 71, 79, 0.1);
  color: #FFF;
  padding: 7px 10px;
  font-size: 14px;
  margin-top: 15px;
  border: none;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  transition: 0.3s ease;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -ms-transition: 0.3s ease;
  -o-transition: 0.3s ease;
}

.banner-area .btn-more-promo:hover {
  background-color: #C7B299;
  color: #524033;
}

.banner-area .btn-more-promo:focus {
  outline: none;
}

.banner-area .mobile {
  display: none;
}

@media (max-width: 768px) {
  .banner-area .mobile {
    display: block;
  }
}

.banner-area .desktop {
  display: block;
}

@media (max-width: 768px) {
  .banner-area .desktop {
    display: none;
  }
}

.banner-area .mobile-content {
  padding: 30px 15px 20px;
  background-color: rgba(255, 255, 255, 1);
  box-shadow: 0px 4px 10px rgba(197, 190, 174, 0.1);
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.banner-area .mobile-content h3 {
  font-size: 20px;
  font-weight: 700;
}

.banner-area .mobile-content h5 {
  font-size: 14px;
  font-weight: 600;
}

.banner-area .mobile-content h6 {
  font-size: 14px;
  font-weight: 500;
}

.banner-area .mobile-content .btn-more-promo {
  margin-top: 15px;
}

.organic-breadcrumb {
  background-size: cover;
  padding-top: 120px;
  background-position: center;
}

@media (max-width: 991px) {
  .organic-breadcrumb {
    padding-top: 80px;
  }
}

@media (max-width: 767px) {
  .organic-breadcrumb {
    justify-content: center;
  }
}

#category .organic-breadcrumb {
  margin-bottom: 100px;
}

.breadcrumb-banner {
  padding: 90px 0 100px 0;
}

.breadcrumb-banner h1 {
  font-weight: 600;
  color: #fff;
}

@media (max-width: 767px) {
  .breadcrumb-banner h1 {
    font-size: 30px;
  }
}

.breadcrumb-banner p {
  margin-bottom: 0;
  color: #fff;
}

.breadcrumb-banner nav a {
  display: inline-block;
  color: #fff;
  font-weight: 400;
}

.breadcrumb-banner nav a span {
  display: inline-block;
  margin: 0 10px;
}

.breadcrumb-banner .col-first {
  padding-right: 15px;
}

@media (max-width: 1680px) {
  .breadcrumb-banner .col-first {
    padding-right: 40px;
  }
}

@media (max-width: 991px) {
  .breadcrumb-banner .col-first {
    width: 48%;
  }
}

@media (max-width: 767px) {
  .breadcrumb-banner .col-first {
    width: 100%;
  }
}

.ftco-treatment-detail #nav-kategori-treatment {
  background-image: linear-gradient(to right, rgba(243, 240, 238, .5), rgba(255, 255, 255, 1), rgba(243, 240, 238, .5)) !important;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  color: #000000;
}

.ftco-treatment-detail #nav-kategori-treatment .navbar-brand {
  color: #222222;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  
}

.ftco-treatment-detail #nav-kategori-treatment .navbar-nav .nav-item .nav-link {
  color: #000000;
  margin-right: 20px;
  font-size: 14px;
  padding: 5px 20px;
  border: 1px solid rgba(0, 0, 0, 0);
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
}

.ftco-treatment-detail #nav-kategori-treatment .navbar-nav .nav-item .nav-link.actived {
  border: 1px solid #222222;
}

.ftco-treatment-detail #nav-kategori-treatment .navbar-nav .nav-item .nav-link:hover {
  border: 1px solid #222222;
}


/* start Treatment Kategori css
============================================================================================ */
.treatment-wrap {
  display: block;
  width: 100%;
   }
.bg-treatment-primary {
  background: rgba(243, 240, 238, .5);
}

@media (max-width: 767.98px) {
.treatment-wrap {
  height: auto;
  margin-bottom: 40px; } 
}

.treatment-wrap .img {height: 250px; background-color: #ccc; background-size: cover; background-position: center; }

.treatment-wrap .text {position: relative; }

.treatment-wrap .text .subheading {
  display: block;
  font-size: 12px;
  letter-spacing: 3px;
  color: #000000;
  font-weight: 600; }
.treatment-wrap .text h3 {
  font-size: 20px;
  display: inline-block;
  line-height: 1.3;
  letter-spacing: 2px; }
  
@media (max-width: 767.98px) {
  .treatment-wrap .text h3 {
  font-size: 18px; }
}

.treatment-wrap .text h3 a {color: #000000;padding-bottom: 5px; }

.treatment-wrap .text .desc {position: relative;width: 100%; }

.treatment-wrap .text .desc .custom-btn {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1px;
  color: #222222;
  font-weight: 500;
  border: 1px solid #222222;
  padding: 7px 15px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.treatment-wrap .text .desc p {margin-bottom: 30px; }

.treatment-wrap .text .desc .top {position: relative; }

@media (max-width: 767.98px) {
  .treatment-wrap .text .desc .top::after {display: none; } 
}


.single-product {
  position: relative;
  margin-bottom: 50px;
}

.single-product img {
  margin-bottom: 20px;
  width: 100%;
}

.single-product .product-details h6 {
  font-size: 16px;
  font-weight: 400;
  color: #303030;
  text-transform: capitalize;
}

.single-product .product-details p {
  font-size: 13px;
  color: #b3b3b3;
  font-weight: 400;
  line-height: 1.85;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  line-clamp:2;
  box-orient: vertical;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.single-product .product-details .price h6 {
  font-size: 14px;
  display: inline-block;
  font-weight: 600;
  padding-right: 15px;
  margin: 0;
}

.single-product .product-details .price .l-through {
  text-decoration: line-through;
  font-weight: 500;
  color: #cccccc;
  margin-bottom: 0;
}

.single-product .product-details .prd-bottom {
  position: relative;
  margin-top: 20px;
}

.single-product .product-details .prd-bottom .social-info {
  position: relative;
  display: inline-block;
  width: 35px;
  overflow: hidden;
  transition: all 0.3s ease 0s;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
}

.single-product .product-details .prd-bottom .social-info span {
  position: relative;
  height: 30px;
  width: 30px;
  line-height: 30px;
  text-align: center;
  background: #828bb2;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  display: inline-block;
  color: #fff;
  z-index: 1;
  transition: all 0.3s ease 0s;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
}

.single-product .product-details .prd-bottom .social-info span:after {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  content: "";
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  opacity: 0;
  visibility: hidden;
  z-index: -1;
}

.single-product .product-details .prd-bottom .social-info .hover-text {
  position: absolute;
  left: 0;
  top: 3px;
  width: 100px;
  left: -40px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 12px;
  color: #222222;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease 0s;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
}

.single-product .product-details .prd-bottom .social-info:hover {
  width: 115px;
}

.single-product .product-details .prd-bottom .social-info:hover span:after {
  opacity: 1;
  visibility: visible;
}

.single-product .product-details .prd-bottom .social-info:hover .hover-text {
  opacity: 1;
  visibility: visible;
  left: 40px;
}

@keyframes pulse {
  0% {
    transform: scale(.95);
    -webkit-transform: scale(.95);
    -moz-transform: scale(.95);
    -ms-transform: scale(.95);
    -o-transform: scale(.95);
}
  50% {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
}
  100% {
    transform: scale(.95);
    -webkit-transform: scale(.95);
    -moz-transform: scale(.95);
    -ms-transform: scale(.95);
    -o-transform: scale(.95);
}
}

.single-product .paket-promo-cont {
  position: absolute;
  display: inline-block;
  margin-top: 10px;
  margin-left: 10px;
  padding: 0px 10px;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  font-size: 10px;
  letter-spacing: .5px;
  font-weight: 600;
  color: #ffffff;
  cursor: pointer;
  background-color: #0D2540;
  animation: pulse 1s ease-in-out infinite;
  -webkit-animation: pulse 1s ease-in-out infinite;
  animation-delay: 0s;
  animation-timing-function: ease-in-out;
}

.single-product .diskon {
  position: absolute;
  display: inline-block;
  margin-top: 10px;
  right: 0px;
  padding: 0px 10px;
  border-radius: 50px 0px 0px 50px;
  -webkit-border-radius: 50px 0px 0px 50px;
  -moz-border-radius: 50px 0px 0px 50px;
  -ms-border-radius: 50px 0px 0px 50px;
  -o-border-radius: 50px 0px 0px 50px;
  font-size: 10px;
  letter-spacing: .5px;
  font-weight: 600;
  color: #222222;
  background-color: #dcd3b2;
}

.single-product .flip-card {
  background-color: transparent;
  width: 100%;
  height: 100%;
  perspective: 1000px;
  position: relative;
}

.single-product .flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.6s;
  -webkit-transition: transform 0.6s;
  -moz-transition: transform 0.6s;
  -ms-transition: transform 0.6s;
  -o-transition: transform 0.6s;
}

.single-product .flip-card-front,
.single-product .flip-card-back {
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.single-product .flip-card-front {
  position: relative;
  background-color: #fff;
  color: black;
}

.single-product .flip-card-back {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #f7f7f7;
  color: black;
  transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  -o-transform: rotateY(180deg);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px 15px 30px 15px;
  
}

.single-product .flip-card-back .body-promo {
  max-height: 260px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #e0dace #f1f1f1;
}

.single-product .flip-card-back .body-promo::-webkit-scrollbar {
  width: 8px;
}

.single-product .flip-card-back .body-promo::-webkit-scrollbar-thumb {
  background-color: #e0dace;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.single-product .flip-card-back .body-promo::-webkit-scrollbar-track {
  background-color: #f1f1f1;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.single-product .flip-card-back .box-promo {
  font-size: 12px;
  font-weight: 500;
  border-bottom: 1px solid #cccccc;
  line-height: 16px;
}

.single-product .flip-card-back .box-promo .price {
  font-size: 12px;
  font-weight: 600;
}

.single-product .flip-card-back .box-promo .price .l-through {
  text-decoration: line-through;
  font-weight: 500;
  color: #999999;
}

.single-product .flip-card.flipped .flip-card-inner {
  transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  -o-transform: rotateY(180deg);
}

.single-product .flip-back-btn {
  position: absolute;
  bottom: 20px;
  right: 15px;
  cursor: pointer;
  background: transparent;
  border: 1px solid #222222;
  padding: 0px 20px;
  font-size: 12px;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  transition: background-color 0.5s ease;
  -webkit-transition: background-color 0.5s ease;
  -moz-transition: background-color 0.5s ease;
  -ms-transition: background-color 0.5s ease;
  -o-transition: background-color 0.5s ease;
}

.single-product .flip-back-btn:hover {
  background-color: #f1eee8;
}

.tab-navigation .nav-tabs {
  border: none;
}

.tab-navigation .nav-link {
  border: none;
  background: #f9fafc;
  padding: 0 30px;
  line-height: 35px;
  margin: 10px 3px;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
}

.tab-navigation .nav-link:hover {
  box-shadow: 2.828px 2.828px 15px 0px rgba(0, 0, 0, 0.1);
}

.tab-navigation .nav-link.active {
  box-shadow: 2.828px 2.828px 15px 0px rgba(0, 0, 0, 0.1);
}

.category-list .single-product {
  margin-top: 10px;
}

label {
  margin-bottom: 0;
}

.view-btn {
  box-shadow: none;
  border: 1px solid #eee;
  padding: 0 30px;
  cursor: pointer;
  min-width: 172px;
  border-radius: 0px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
}

.view-btn.color-2:after {
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}

.view-btn span {
  font-weight: 400;
}

/* Single Product Area css
============================================================================================ */
.product_image_area {
  padding-top: 120px; }

.s_Product_carousel .owl-dots {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}
.s_Product_carousel .owl-dots div {
  height: 5px;
  width: 20px;
  background: #dddddd;
  margin: 5px;
  display: block;
  content: "";
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
}

.s_Product_carousel .owl-dots div.active {width: 30px; }


.s_product_text {
  margin-left: -15px;
  margin-top: 65px; }

  @media (max-width: 575px) {
    .s_product_text {
      margin-left: 0px; } }
.s_product_text h2 {
  font-size: 24px;
  font-weight: 600;
  font-family: "Century Gothic", sans-serif;
  letter-spacing: 1px;
  color:#222222;
  margin-bottom: 10px; }

.s_product_text h3 {
  font-size: 24px;
  margin-bottom: 15px; }

.s_product_text .price-normal {
  text-decoration: line-through;
  color: #999999; 
  font-size: 14px;
  font-weight: 500;
}
    
.s_product_text .price-promo {
  color: #AD9374;
  font-weight: 600;
  margin-right: 10px;
}

.s_product_text .discount {
  color: #ffffff;
  background-color: #222222;
  font-weight: 500;
  font-size: 12px;
  padding: 3px 5px;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
}

.s_product_text .paket-promo {
  position: relative;
  display: inline-block;
}

.s_product_text .paket-promo button {
  background:none;
  color: #222222;
  padding: 1px 10px;
  border: 1px solid #222222;
  cursor: pointer;
  font-size: 13px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
}

.s_product_text .paket-promo button:hover {
  background:#222222;
  color: #ffffff;
}

.s_product_text .paket-promo button .badge {
  background:#222222;
  font-size: 10px;
  padding: 3px 5px;
  color: #ffffff;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  }

.s_product_text .paket-promo button:hover .badge{
  background:#ffffff;
  color: #222222;
}

.s_product_text .list li {
  margin-bottom: 5px; }
  
ul.list {
  list-style: none;
  padding: 0;
  margin: 0;
}
    
.s_product_text ul.list li {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 3px;
}
    
.s_product_text ul.list li .label {
  width: 150px;
  font-weight: 600;
  color: #444444;
}
    
.s_product_text ul.list li .value {
  flex-grow: 1;
  color: #555555;
  font-weight: 500;
}

.s_product_text ul.list li .value a {
  color: #AD9374;
  font-weight: 600;
}
    
.s_product_text p {
  padding-top: 20px;
  border-top: 1px dotted #d5d5d5;
  margin-top: 20px;
  margin-bottom: 70px; }

.product_description_area {
  padding-bottom: 120px;
  margin-top: 60px; }

.product_description_area .nav.nav-tabs {
  background: #f1f1f1;
  text-align: center;
  display: block;
  border: none;
  padding: 10px 0px; }

.product_description_area .nav.nav-tabs li {
  display: inline-block;
  margin-right: 7px; }

.product_description_area .nav.nav-tabs li:last-child {
  margin-right: 0px; }

@media (max-width: 441px) {
  .product_description_area .nav.nav-tabs li:last-child {
    margin-top: 15px; 
  } 
}

.product_description_area .nav.nav-tabs li a {
  padding: 0px;
  line-height: 38px;
  background: #fff;
  border: 1px solid #eeeeee;
  border-radius: 0px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  padding: 0px 30px;
  color: #222222;
  font-size: 13px;
  font-weight: normal;
}
  
@media (max-width: 570px) {
  .product_description_area .nav.nav-tabs li a {
    padding: 0 15px; 
  } 
}

.product_description_area .nav.nav-tabs li a.active {
  color: #fff;
  border: 1px solid transparent; }

.product_description_area .tab-content {
  border-left: 1px solid #eee;
  border-right: 1px solid #eee;
  border-bottom: 1px solid #eee;
  padding: 30px; }

.product_description_area .tab-content h1,h2,h3,h4,h5,h6{
  font-family: "Open Sans", sans-serif;
}

.product_description_area .tab-content{
  font-size: 13px;
  color: #444;
  font-weight: 500;
  line-height: 18px;
  text-align: justify;
}

.product_description_area .tab-content ul{
  margin-bottom: 15px;
}

.product_description_area .tab-content ul li{
  margin-left: 25px;
  position: relative;
  margin-bottom: 5px;
  line-height: 1.5;
  list-style-type: none;
}

.product_description_area .tab-content ul li:before{
  position: absolute;
  content: '';
  height: 10px;
  width: 10px;
  margin-left: -18px;
  top: 0.35em;
  border:3px solid #C4B9AB;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.product_description_area .tab-content h3{
  font-size: 16px;
}

.product_description_area .tab-content h4{
  font-size: 14px;
}

.product_description_area .tab-content h5{
  font-size: 13px;
}

.product_description_area .tab-content h6{
  font-size: 12px;
}
    
/* End Single Product Area css
============================================================================================ */

.footer-area {
  padding-top: 40px;
  background-color: #222222; }

.footer-area p {
  font-size: 13px; }

.copy-right-text i,
.copy-right-text a {
  color: #C7B299; }

.footer-social a {
  padding-right: 25px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s; }

.footer-social a:hover svg {
  fill: #C7B299; }

.footer-social svg {
  fill: #cccccc;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s; }

@media (max-width: 991px) {
.single-footer-widget {
    margin-bottom: 40px;
  } 
}

.footer-text {
  padding-top: 30px;
  font-size: 14px;
 }

@media (max-width: 991px) {
  .footer-text {
    padding-top: 10px; 
  } 
}

.footer-text a{
  color: #C7B299; }

.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #C2AE8C;
  color: white;
  padding: 10px 15px;
  font-size: 14px;
  text-align: center;
  display: none;
  z-index: 1000;
  cursor: pointer;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
}
    
.back-to-top:hover {
  background-color: #A89A8F;
  color: #FFFFFF;
}
    

.modal {
  display: none; 
  position: fixed;
  z-index: 998;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.4); 
  overflow: hidden;
}

.modal-content {
  position: fixed;
  bottom: -100%;
  left: 0;
  width: 100%;
  background-color: white;
  padding: 20px;
  border-radius: 15px 15px 0 0;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

  .modal-content h3 {
   font-size: 16px;
   font-weight: 500;
  }

  .close {
    position: absolute;
    top: 10px;
    right: 15px;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
  }

  .close:hover,
  .close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
  }

  .promo-list .cont-promo {
    padding: 10px;
    color: #222222;
    font-weight: 600;
    font-size: 14px;
    border-bottom: 1px solid #ddd;
  }

  .promo-list .cont-promo .periode {
    padding-left: 15px;
    color: #666666;
    font-size: 12px;
    font-weight: 400;
  }

  .promo-list .cont-promo .price {
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    color: #222222;
  }

  .promo-list .cont-promo .price .l-through {
    text-decoration: line-through;
    color: #999999;
  }

  .modal.show .modal-content {
    bottom: 0;
  }

  .modal-content.dragging {
    transition: none;
    -webkit-transition: none;
    -moz-transition: none;
    -ms-transition: none;
    -o-transition: none;
}

.swiper-slide {
  cursor: pointer;
  background: #000;
}

.swiper-slide img {
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
}

.swiper-slide.swiper-slide-thumb-active img {
    opacity: 0.8;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: .6;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transition: transform 0.3s ease, opacity 0.3s ease;
  -webkit-transition: transform 0.3s ease, opacity 0.3s ease;
  -moz-transition: transform 0.3s ease, opacity 0.3s ease;
  -ms-transition: transform 0.3s ease, opacity 0.3s ease;
  -o-transition: transform 0.3s ease, opacity 0.3s ease;
}

.play-button::before {
  content: '';
  border-style: solid;
  border-width: 15px 0 15px 25px;
  border-color: transparent transparent transparent white;
  display: inline-block;
  margin-left: 5px;
}

.small-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 35px;
  height: 35px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: .6;
  transition: transform 0.3s ease, opacity 0.3s ease;
  -webkit-transition: transform 0.3s ease, opacity 0.3s ease;
  -moz-transition: transform 0.3s ease, opacity 0.3s ease;
  -ms-transition: transform 0.3s ease, opacity 0.3s ease;
  -o-transition: transform 0.3s ease, opacity 0.3s ease;
}

.small-play-button::before {
  content: '';
  border-style: solid;
  border-width: 10px 0 10px 15px;
  border-color: transparent transparent transparent white;
  display: inline-block;
  margin-left: 5px;
}

/* Hover Effect on Video Thumbnail */
.video-slide {
  position: relative;
}

.video-slide:hover .play-button {
  transform: translate(-50%, -50%) scale(1.2);
  -webkit-transform: translate(-50%, -50%) scale(1.2);
  -moz-transform: translate(-50%, -50%) scale(1.2);
  -ms-transform: translate(-50%, -50%) scale(1.2);
  -o-transform: translate(-50%, -50%) scale(1.2);
  opacity: 1;
}

/* pastikan lightbox memusatkan video */
.glightbox-container .gslide-media {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
}

/* ini yang benar-benar memaksa video vertikal */
.gvideo-container {
    width: 100% !important;
    height: 100% !important;
    max-height: 100vh !important;
    max-width: 100vw !important;
    aspect-ratio: 9 / 16 !important;
}

/* iframe Shorts agar tidak letterboxing */
.gvideo-container iframe {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    background: #000 !important;
    border: none !important;
}



.promo-card {
  background: #fff;
  overflow: hidden;
  margin-bottom: 20px;
}

.promo-image img {
  width: 100%;
  height: auto;
  border-bottom: 1px solid #ddd;
}

.promo-details {
  padding: 7px 0px;
}

.promo-date {
  font-size: 12px;
}

.promo-title h5 {
  font-size: 16px;
  color: #222222;
  font-weight: 500;
}

.promo-title a:hover {
  text-decoration: none;
  color: #000000;
}

.promo-description {
  font-size: 13px;
  color: #999;
  margin-bottom: 15px;
}

.btn-promo-detail {
  background-color: #C7B299;
  color: #ffffff;
  font-size: 12px;
  padding: 7px 20px;
}

.btn-promo-detail:hover {
  background-color: #222222;
  color: #ffffff;
}


.promo-detail-body {
  background-color:rgba(30, 5, 89, 0.05) ;
}

.promo-detail-container {
  display: flex;
  flex-wrap: wrap;
}

.promo-detail-image {
  position: sticky;
  top: 120px; /* Sticky dengan jarak 20px dari atas layar */
  align-self: flex-start;
}

.promo-detail-content {
  flex-grow: 1;
}

.promo-detail-content h4 {
  font-size: 16px;
}

.promo-detail-content .paket-promo-cont {
  background-color: #ffffff;
  transition: transform 0.3s ease, opacity 0.3s ease;
  -webkit-transition: transform 0.3s ease, opacity 0.3s ease;
  -moz-transition: transform 0.3s ease, opacity 0.3s ease;
  -ms-transition: transform 0.3s ease, opacity 0.3s ease;
  -o-transition: transform 0.3s ease, opacity 0.3s ease;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.promo-detail-content .paket-promo-cont:hover {
  background: linear-gradient(to right, rgba(227, 222, 215, .3), #fefefe, rgba(227, 222, 215, .3));
}

.promo-detail-content .paket-promo {
  font-size: 13px;
  font-weight: 500;
  font-family: 'Open Sans';
  color:#444444;
}

.promo-detail-content .normal-price {
 font-size: 14px;
 font-weight: 600;
 color: #999999;
 text-decoration: line-through;
}

.promo-detail-content .diskon-price {
  font-size: 14px;
  font-weight: 600;
  color:#444444;
 }

 .promo-detail-image {
  margin-bottom: 20px;
}

.promo-detail-image h2 {
  font-size: 22px;
}

.promo-detail-image p {
  font-size: 12px;
}

.promo-detail-image img {
  width: 100%;
}

/* Kontainer Utama Before-After */
.before-after-container {
  position: relative;
  width: 100%;   /* Mengikuti lebar kontainer induk */
  padding-top: 100%; /* Aspect ratio 16:9 untuk membuat tinggi kontainer relatif */
  overflow: hidden;
}

/* Gambar Before (Setengah Kiri) */
.before-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  clip-path: inset(0 50% 0 0);
  object-fit: cover;
}


.after-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  clip-path: inset(0 0 0 50%); 
  object-fit: cover;
}

/* Garis Pemisah di Tengah */
.separator {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  background-color: #fafafa;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}