/*
Template Name: Fruitkha - Responsive Bootstrap4 Shop Template
Template URI: 
Description: Bootstrap template for fruits or any other kind of shop
Author: Imran Hossain
Author URI: https://imransdesign.com/
Version: 1.0
*/
/* -----------------------------------------------------------------------------

# Base - Genral & Typography

----------------------------------------------------------------------------- */
html {
  font-size: 14px;
  font-weight: 400;
  line-height: 28px;
  height: 100%;
}

body {
  font-family: 'Open Sans', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.1px;
  line-height: 1.8;
  color: #231F20;
  overflow-x: hidden;
}

body img {
  max-width: 100%;
}
a {
  cursor: pointer;
  text-decoration: none;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

a:hover {
 
  text-decoration: none;
}

h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  margin: 0 0 1.25rem 0;
  color: #F1EAD2;
}

h1:last-child, .h1:last-child,
h2:last-child, .h2:last-child,
h3:last-child, .h3:last-child,
h4:last-child, .h4:last-child,
h5:last-child, .h5:last-child,
h6:last-child, .h6:last-child {
  margin: 0;
}
h1, .h1 {
  font-size: 4rem;
  font-weight: 700;
  line-height: 4rem;
}

@media only screen and (max-width: 767.96px) {
  h1, .h1 {
    font-size: 3rem;
    line-height: 3.25rem;
  }
}

@media only screen and (max-width: 575.96px) {
  h1, .h1 {
    font-size: 2.5rem;
    line-height: 2.75rem;
  }
}

h2, .h2 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 3.25rem;
}

@media only screen and (max-width: 767.96px) {
  h2, .h2 {
    font-size: 2.5rem;
    line-height: 2.75rem;
  }
}

@media only screen and (max-width: 575.96px) {
  h2, .h2 {
    font-size: 2rem;
    line-height: 2.25rem;
  }
}

h3, .h3 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 2.25rem;
}

@media only screen and (max-width: 575.96px) {
  h3, .h3 {
    font-size: 1.75rem;
    line-height: 2rem;
  }
}

h4, .h4 {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.75rem;
  font-family: Arial;
}

@media only screen and (max-width: 575.96px) {
  h4, .h4 {
    font-size: 1.25rem;
    line-height: 1.5rem;
  }
}

h5, .h5 {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5rem;
}

h6, .h6 {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.5rem;
}

p {
  font-family: 'Open Sans', sans-serif;
  /*font-family: Arial, sans-serif;*/
  font-weight: 400;
  font-size: 1.1rem;
  letter-spacing: 0.1px;
  line-height: 1.5;
  color: #000;
  margin: 0 0 1.25rem 0;
}

p:last-child {
  margin: 0;
}

/* -----------------------------------------------------------------------------

# All Common Styles

----------------------------------------------------------------------------- */
.loader {
  bottom: 0;
  height: 100%;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 1111;
  background: #fff;
  overflow-x: hidden;
}

.loader-inner {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  height: 50px;
  width: 50px;
}

.circle {
  width: 8vmax;
  height: 8vmax;
  border-right: 4px solid #000;
  border-radius: 50%;
  -webkit-animation: spinRight 800ms linear infinite;
  animation: spinRight 800ms linear infinite;
}

.circle:before {
  content: '';
  width: 6vmax;
  height: 6vmax;
  display: block;
  position: absolute;
  top: calc(50% - 3vmax);
  left: calc(50% - 3vmax);
  border-left: 3px solid #DA2128;
  border-radius: 100%;
  -webkit-animation: spinLeft 800ms linear infinite;
  animation: spinLeft 800ms linear infinite;
}

.circle:after {
  content: '';
  width: 6vmax;
  height: 6vmax;
  display: block;
  position: absolute;
  top: calc(50% - 3vmax);
  left: calc(50% - 3vmax);
  border-left: 3px solid #DA2128;
  border-radius: 100%;
  -webkit-animation: spinLeft 800ms linear infinite;
  animation: spinLeft 800ms linear infinite;
  width: 4vmax;
  height: 4vmax;
  top: calc(50% - 2vmax);
  left: calc(50% - 2vmax);
  border: 0;
  border-right: 2px solid #000;
  -webkit-animation: none;
  animation: none;
}

@-webkit-keyframes spinLeft {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(720deg);
    transform: rotate(720deg);
  }
}

@keyframes spinLeft {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(720deg);
    transform: rotate(720deg);
  }
}

@-webkit-keyframes spinRight {
  from {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
  to {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

@keyframes spinRight {
  from {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
  to {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

.mt-80 {
  margin-top: 80px;
}
.mt-60 {
  margin-top: 60px;
}
.mt-40 {
  margin-top: 40px !important;
}
.mt-30 {
  margin-top: 30px !important;
}
.mt-20 {
  margin-top: 20px !important;
}

@media only screen and (max-width: 767.96px) {
  .mt-80 {
    margin-top: 50px !important;
  }
  .mt-60 {
    margin-top: 40px !important;
  }
}
.mb-20 {
  margin-bottom: 20px !important;
}
.mb-30 {
  margin-bottom: 30px !important;
}
.mb-40 {
  margin-bottom: 40px !important;
}
.mb-80 {
  margin-bottom: 80px;
}

@media only screen and (max-width: 767.96px) {
  .mb-80 {
    margin-bottom: 50px !important;
  }
}

.mt-100 {
  margin-top: 100px !important;
}

@media only screen and (max-width: 767.96px) {
  .mt-100 {
    margin-top: 80px !important;
  }
}

.mb-100 {
  margin-bottom: 100px !important;
}

@media only screen and (max-width: 767.96px) {
  .mb-100 {
    margin-bottom: 80px !important;
  }
}

.mt-150 {
  margin-top: 150px !important;
}

@media only screen and (max-width: 767.96px) {
  .mt-150 {
    margin-top: 100px !important;
  }
}

.mb-150 {
  margin-bottom: 150px !important;
}

@media only screen and (max-width: 767.96px) {
  .mb-150 {
    margin-bottom: 100px !important;
  }
  .pt-60 {
    padding-top: 40px !important;
  }
}

.pt-80 {
  padding-top: 80px;
}
.pt-60 {
  padding-top: 60px;
}
.pt-30 {
  padding-top: 30px !important;
}
.pt-20 {
  padding-top: 20px !important;
}
.pt-40 {
  padding-top: 40px !important;
}
.pt-200 {
  padding-top: 200px !important;
}
.pt-250 {
  padding-top: 250px !important;
}
.pt-350 {
  padding-top: 350px !important;
}
.pt-300 {
  padding-top: 300px !important;
}

@media only screen and (max-width: 767.96px) {
  .pt-80 {
    padding-top: 50px !important;
  }
  .pb-80 {
    padding-bottom: 50px !important;
  }
  .pb-60 {
    padding-bottom: 40px !important;
  }
}

.pb-80 {
  padding-bottom: 80px !important;
}
.pb-60 {
  padding-bottom: 60px !important;
}
.pb-40 {
  padding-bottom: 40px !important;
}
.pb-30 {
  padding-bottom: 30px !important;
}
.pb-20 {
  padding-bottom: 20px !important;
}
@media only screen and (max-width: 767.96px) {
  .pb-80 {
    padding-bottom: 50px !important;
  }
  .pt-80 {
    padding-top: 50px !important;
  }
}

.pt-100 {
  padding-top: 100px !important;
}

@media only screen and (max-width: 767.96px) {
  .pt-100 {
    padding-top: 80px !important;
  }
}

.pb-100 {
  padding-bottom: 100px !important;
}

@media only screen and (max-width: 767.96px) {
  .pb-100 {
    padding-bottom: 80px !important;
  }
}

.pt-150 {
  padding-top: 150px !important;
}

@media only screen and (max-width: 767.96px) {
  .pt-150 {
    padding-top: 100px !important;
  }
}

.pb-150 {
  padding-bottom: 150px !important;
}

@media only screen and (max-width: 767.96px) {
  .pb-150 {
    padding-bottom: 100px !important;
  }
}

.gray-bg {
  background-color: #f5f5f5;
}

.orange-text {
  color: #DA2128;
}

.blue-bg {
  background-color: #162133;
}

a.boxed-btn {
  font-family: Arial, sans-serif;
  display: inline-block;
  background-color: #DA2128;
  color: #fff;
  padding: 10px 20px;
}

a.bordered-btn {
  font-family: Arial, sans-serif;
  display: inline-block;
  color: #fff;
  border: 2px solid #DA2128;
  padding: 7px 20px;
}

a.read-more-btn {
  display: inline-block;
  margin-top: 16px;
  color: #231F20;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  font-weight: 700;
}

a.read-more-btn:hover {
  color: #DA2128;
}

a.boxed-btn, a.bordered-btn, a.cart-btn {
  border-radius: 10px;
}

.section-title h3 {
  font-size: 40px;
  position: relative;
  padding-bottom: 15px;
}

.section-title h3:after {
  position: absolute;
  content: '';
  left: 0px;
  right: 0px;
  bottom: 0px;
  width: 50px;
  height: 2px;
  background-color: #DA2128;
  margin: 0 auto;
}

.section-title p {
  font-size: 16px;
  width: 530px;
  margin: 0 auto;
  color: #555;
  margin-top: 10px;
  line-height: 1.8;
}

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

.breadcrumb-bg {
  background-image: url(../img/breadcrumb-bg.jpg);
}

.breadcrumb-text p {
  color: #DA2128;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 7px;
}

.breadcrumb-text h1 {
  font-size: 50px;
  font-weight: 900;
  color: #fff;
  margin: 0;
  margin-top: 20px;
}

.breadcrumb-section {
  padding: 150px 0;
  background-size: cover;
  background-position: center center;
  position: relative;
  z-index: 1;
  background-attachment: fixed;
  padding-top: 200px;
}

.breadcrumb-section:after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #07212e;
  z-index: -1;
  opacity: 0.8;
}

/* -----------------------------------------------------------------------------

# Header Styles

----------------------------------------------------------------------------- */
ul.navbar-nav li.nav-item a.nav-link, ul.navbar-nav li.nav-item.active a.nav-link {
  color: #231F20;
}

.top-header-area {
  z-index: 999;
  width: 100%;
  padding: 0 0;
  position: fixed; 
  top: 0; 
}
.lang-box {
  position: absolute;
  right: 0px;
  top: 10px;
}
.lang-box a {
  color: #231F20;
  font-weight: 600;
}
.lang-box a.active-lang {
  color: #DA2128;
  font-weight: 600;
}
.top-header-area.white ul.navbar-nav li.nav-item a.nav-link, .top-header-area.white ul.navbar-nav li.nav-item.active a.nav-link {
  color: #231F20;
}

ul.navbar-nav li.nav-item a.nav-link, ul.navbar-nav li.nav-item.active a.nav-link {
  color: #231F20;
  font-weight: 500;
  margin-right: 14px;
}

a.navbar-brand img {
  max-width: 150px;
}

nav.main-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: right;
}

nav.main-menu ul li {
  display: inline-block;
}

nav.main-menu ul li a {
  color: #F1EAD2;
  font-weight: 500;
  display: block;
  padding: 10px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
}
nav.main-menu ul li:last-child a {
  padding-right: 0px;
}

nav.main-menu ul > li {
  position: relative;
}

nav.main-menu ul ul.sub-menu {
  position: absolute;
  background-color: #fff;
  width: 220px;
  padding: 15px 15px;
  margin: 0;
  left: 0;
  top: 50px;
  border-radius: 3px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
  -webkit-box-shadow: 0 0 20px #555555;
  box-shadow: 0 0 20px #555555;
}

nav.main-menu ul ul.sub-menu li {
  display: block;
  text-align: left;
}

nav.main-menu ul ul.sub-menu li a {
  color: #555;
  font-weight: 600;
  padding: 7px 10px;
  font-size: 13px;
}

nav.main-menu ul > li:hover ul {
  opacity: 1;
  visibility: visible;
}

.site-logo {
  float: left;
  max-width: 220px;
  margin-top: -40px;
}

ul.sub-menu li:last-child {
  float: none !important;
}

.mean-container .mean-bar {
  background-color: transparent;
  position: absolute;
  right: 0;
  top: 17px;
}

.mean-bar a.meanmenu-reveal {
  background-color: #F6F0DA;
}

.main-menu-wrap {
  position: relative;
  padding: 25px 0;
}

.mean-container a.meanmenu-reveal {
  color: #153335;
}

.mean-container a.meanmenu-reveal span {
  background-color: #153335;
}

.mean-container .mean-nav ul li a {
  padding: 0.5em 5%;
}

.mean-container .mean-nav ul li li a {
  padding: 0.5em 10%;
}

.mean-container .mean-nav ul li a.mean-expand {
  font-size: 16px;
  height: 10px;
  line-height: 10px;
  width: 15px;
}

.mean-container a.meanmenu-reveal {
  padding: 8px 8px 6px;
}

nav.mean-nav > ul > li:first-child > a {
  border-top: none;
}

.header-icons a {
  color: #fff;
  display: inline-block;
  padding: 10px;
}

.site-logo {
  padding: 6px 0;
}

.top-header-area.sepherate-header ul li > a, .top-header-area.sepherate-header .header-icons a {
  color: #231F20;
}

nav.main-menu ul ul.sub-menu li {
  display: block;
}

nav.main-menu ul ul.sub-menu li a {
  color: #555;
  padding: 8px;
  font-size: 13px;
  font-weight: 600;
}

nav.main-menu ul li.current_page_item > a,nav.main-menu ul li.current-page-ancestor > a {
  color: #fff;
}

nav.main-menu li:hover > a {
  color: #fff;
}
nav.main-menu li:hover a::after {
  transform: scale(1);
}

nav.main-menu li a {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
nav.main-menu li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
  transition: opacity 300ms, transform 300ms;
  opacity: 1;
  transform: scale(0);
  transform-origin: center;
}

.top-header-area .header-icons a {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.top-header-area .header-icons a:hover {
  color: #DA2128;
}

.sticky-wrapper {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 999 !important;
}

.sticky-wrapper.is-sticky .top-header-area {
  background-color: #231F20;
  padding: 15px 0;
}

.top-header-area {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

ul.navbar-nav {
  margin: 0 auto;
}

.search-area {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 5555;
  background-color: #231F20;
  width: 100%;
  height: 100%;
  text-align: center;
}

span.close-btn {
  position: absolute;
  right: 0%;
  color: #fff;
  top: 5%;
  cursor: pointer;
}

.search-area {
  height: 100%;
}

.search-area div {
  height: 100%;
}

.search-bar {
  height: 100%;
  display: table;
  width: 100%;
}

a.mobile-show {
  display: none;
}

.search-area .search-bar div.search-bar-tablecell {
  display: table-cell;
  vertical-align: middle;
  height: auto;
}

.search-bar-tablecell input {
  border: none;
  padding: 15px;
  width: 60%;
  background-color: transparent;
  border-bottom: 1px solid #DA2128;
  display: block;
  margin: 0 auto;
  text-align: center;
  font-size: 50px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #fff;
}

.search-bar-tablecell button[type=submit] {
  border: none;
  background-color: #DA2128;
  padding: 15px 30px;
  cursor: pointer;
  display: inline-block;
  border-radius: 50px;
  font-weight: 700;
}

.search-bar-tablecell input::-webkit-input-placeholder {
  color: #fff;
}

.search-bar-tablecell input:-ms-input-placeholder {
  color: #fff;
}

.search-bar-tablecell input::-ms-input-placeholder {
  color: #fff;
}

.search-bar-tablecell input::placeholder {
  color: #fff;
}

.search-bar-tablecell button[type=submit] i {
  margin-left: 5px;
}

.search-area {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.search-area.search-active {
  visibility: visible;
  opacity: 1;
  z-index: 999;
}

.search-bar-tablecell h3 {
  color: #fff;
  margin-bottom: 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 7px;
}

/* -----------------------------------------------------------------------------

# Footer Styles

----------------------------------------------------------------------------- */
.single-logo-item img {
  max-width: 180px;
  margin: 0 auto;
}

.logo-carousel-section {
  background-color: #f5f5f5;
  padding: 50px 0;
}

.footer-area {
  border-top: 1px solid #163860;
  color: #fff;
  padding: 60px 0;
}

h2.widget-title {
  font-size: 20px;
  position: relative;
  color: #414042;
  font-weight: normal;
  margin-bottom: 0px;
}


.footer-box p {
  color: #fff;
  opacity: 0.7;
  line-height: 1.8;
}

.footer-box ul {
  margin: 0;
  padding: 0;
  list-style: none;
}


.footer-box ul li:last-child {
  margin-bottom: 0;
}

.footer-box.subscribe form input[type=email] {
  border: none;
  background-color: #012738;
  width: 78%;
  padding: 15px;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  color: #fff;
}

.footer-box.subscribe form button {
  width: 20%;
  border: none;
  background-color: #012738;
  color: #DA2128;
  padding: 14px 0;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  cursor: pointer;
}

.footer-box.subscribe form button:focus {
  outline: none;
}

.copyright {
  background-color: #231F20;
  border-top: 1px solid #232a35;
}

.copyright p {
  margin: 0;
  color: #fff;
  opacity: 0.7;
  padding: 16px 0;
  font-size: 16px;
}

.copyright a {
  color: #DA2128;
  font-weight: 700;
}

.copyright a:hover {
  color: #f59d53;
}

.social-icons ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.social-icons ul li {
  display: inline-block;
}

.social-icons ul li a {
  font-size: 16px;
  color: #414042;
  opacity: 0.7;
  padding: 16px 10px;
  display: block;
}
.footer-box {
  padding-top: 70px;
}
.footer-box ul li a {
  color: #153335;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 700;
}
.footer-box.pages {
  padding-left: 20px;
  padding-right: 20px;
}
.footer-box.company {
  border-left: 0.5px solid #A7A9AC;
  border-right: 0.5px solid #A7A9AC;
  padding-left: 20px;
  padding-right: 20px;
}
.footer-box.community {
  padding-left: 20px;
  padding-right: 20px;
}
.footer-box.pages ul li,.footer-box.company ul li {
  position: relative;
  /*padding-left: 20px;*/
}
/*
.footer-box.pages ul li:before {
  position: absolute;
  left: 0;
  top: 0;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #DA2128;
}*/

/* -----------------------------------------------------------------------------

# Hover Styles

----------------------------------------------------------------------------- */
a.navbar-brand {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

a.navbar-brand:hover {
  opacity: 0.7;
}

.boxed-btn {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.boxed-btn:hover {
  background-color: #fff;
  color: #DA2128;
  border:1px solid #DA2128 ;
}

.bordered-btn {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.bordered-btn:hover {
  background-color: #DA2128;
  color: #fff;
}

ul.sub-menu a {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

ul.sub-menu li:hover a {
  color: #DA2128;
}

.single-tof-box {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.single-tof-box:hover {
  -webkit-box-shadow: 0 0 80px #353535;
  box-shadow: 0 0 80px #353535;
}

a.video-play-btn {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

a.video-play-btn:hover {
  background-color: #FFFFFF;
  color: #333;
}

.latest-news-bg {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.single-latest-news:hover .latest-news-bg {
  opacity: 0.8;
}

a.tof-btn {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

a.tof-btn i {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

a.tof-btn:hover {
  color: #DA2128;
}

a.tof-btn:hover i {
  margin-left: 10px;
}

.single-latest-news {
  -webkit-box-shadow: 0 0 20px #dddddd;
  box-shadow: 0 0 20px #dddddd;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.single-latest-news:hover {
  -webkit-box-shadow: 0 0 0;
  box-shadow: 0 0 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.single-logo-item {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.single-logo-item:hover {
  opacity: 0.7;
}


.footer-box.pages ul li:hover a {
  color: #B28B5E;
}

.footer-box.subscribe form button {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.footer-box.subscribe form button:hover {
  background-color: #DA2128;
  color: #231F20;
}

.social-icons ul li:hover a {
  color: #DA2128;
}

.social-icons ul li a {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

ul.social-link-team li a {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

ul.social-link-team li a:hover {
  background-color: #231F20;
  color: #DA2128;
}

.counter-box {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.counter-box:hover {
  -webkit-box-shadow: 0 0 80px #6f6f6f;
  box-shadow: 0 0 80px #6f6f6f;
}

input[type="submit"] {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  border-radius: 50px !important;
}

input[type="submit"]:hover {
  color: #fff;
  opacity: 0.9;
}

div.owl-controls, .owl-controls div {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

div.owl-controls div.owl-nav div:hover {
  opacity: 1;
}
div.owl-controls div.owl-nav div:hover i.gg-chevron-right::after {
  border-bottom: 2px solid;
  border-right: 2px solid;
}
div.owl-controls div.owl-nav div:hover i.gg-chevron-left::after {
  border-bottom: 2px solid;
  border-left: 2px solid;
}

.pagination-wrap ul li a {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.pagination-wrap ul li:hover a {
  background-color: #B28B5E;
}

.icons a i {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.icons a:hover i {
  color: #DA2128;
}

.tof-text a.tof-btn {
  margin-top: 15px;
  display: inline-block;
}

.single-pricing-table {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.single-pricing-table:hover {
  -webkit-box-shadow: 0 0 20px #ddd;
  box-shadow: 0 0 20px #ddd;
}

.product-image img {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.product-image img:hover {
  -webkit-box-shadow: none;
  box-shadow: none;
}

a.cart-btn {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

a.cart-btn:hover {
  background-color: #231F20;
  color: #DA2128;
}

.recent-posts ul li {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.recent-posts ul li:hover {
  opacity: 0.7;
}

ul.sub-menu li a {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

ul.sub-menu li:hover a {
  color: #DA2128 !important;
}

.sidebar-section ul li a {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.sidebar-section ul li a:hover {
  opacity: 0.7;
}

.comment-text-body h4 a {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.comment-text-body h4 a:hover {
  color: #DA2128;
}

ul.product-share li a {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

ul.product-share li:hover a {
  color: #DA2128;
}

.service-menu ul li a {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.service-menu ul li a.active {
  font-weight: 600;
  color: #ffe200;
}

.service-menu ul li a:hover {
  color: #ffe200;
}

.single-product-item {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.single-product-item:hover {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.search-bar-tablecell button[type=submit] {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.search-bar-tablecell button[type=submit]:hover {
  background-color: #fff;
  color: #000;
}

span.close-btn {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

span.close-btn:hover {
  color: #fff;
}

a.mobile-show.search-bar-icon {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

a.mobile-show.search-bar-icon:hover {
  color: #DA2128;
}

/* -----------------------------------------------------------------------------

# Hero Styles

----------------------------------------------------------------------------- */
.hero-bg {
  background-image: url(https://storage.googleapis.com/kyubispiritlodge/2024/01/home-banner.png);
  background-size: cover;
  background-position: center;
}
.hero-accommodations-bg {
  background-image: url('../img/accom-bg.png');
  background-size: cover;
  background-position: center;
}
.hero-adventure-trip {
  background-image: url('../img/main-resi-bg.png');
  background-size: cover;
  background-position: center;
}
.hero-contact-us-bg {
  background-image: url('../img/header_bg.jpeg');
  background-size: cover;
  background-position: center;
}
.hero-news-bg {
  background-image: url('../img/news-bg.png');
  background-size: cover;
  background-position: center;
}
.hero-text {
  font-size: 48px;
  color: #fff;
  font-weight: 700;
  max-width: 610px;
  line-height: 60px;
  margin-right: 30px;
  align-self: center;

}

.hero-text-tablecell {
  display: table-cell;
}

.hero-area {
  height: 780px;
  position: relative;
  z-index: 1;
}

html, body {
  height: 100%;
}

.hero-area:after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(15, 25, 25, 0.5);
  z-index: -1;
  opacity: 1;
}
.hero-news-bg::after{
  background: none;
}
.hero-contact-us-bg::after {
  background: none;
}
.hero-accommodations-bg::after {
  background: none;
}

.hero-text p.subtitle {
  color: #DA2128;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 7px;
  font-size: 16px;
}

.hero-text h1 {
  font-size: 64px;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
}


.hero-area div.hero-text {
  height: 100%;
  width: 100%;
}

.hero-area div.hero-text-tablecell {
  height: auto;
  vertical-align: middle;
}

.hero-area div.hero-text-tablecell div {
  height: auto;
  vertical-align: middle;
}

.hero-btns {
  margin-top: 5px;
}

.hero-btns a.bordered-btn {
  margin-left: 15px;
}

.hero-area div.hero-form {
  background-color: #fff;
  text-align: center;
  width: 380px;
  margin: 0 auto;
  margin-right: 0;
  border-radius: 5px;
  -webkit-box-shadow: 0 0 15px #2d2d2d;
  box-shadow: 0 0 15px #2d2d2d;
  position: absolute;
  right: 30px;
  bottom: -15%;
  height: 600px;
}

input[type="submit"] {
  color: #fff;
  background-color: #B28B5E;
  border: 2px solid #B28B5E;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 16px;
  border: none !important;
  cursor: pointer;
  padding: 15px 25px;
  border-radius: 3px;
}

.homepage-bg-1 {
  background-image: url(../img/home-banner.jpg);
}

.homepage-bg-2 {
  background-image: url(../img/home-banner.jpg);
}

.homepage-bg-3 {
  background-image: url(../img/home-banner.jpg);
}

.homepage-slider {
  height: 567px;
}

.homepage-slider div {
  height: 100%;
}

.homepage-slider div.hero-text {
  display: table;
  width: 100%;
}

.homepage-slider div.hero-text-tablecell {
  height: auto;
  vertical-align: middle;
  display: table-cell;
}

.homepage-slider div.hero-text-tablecell div {
  height: auto;
}

.single-homepage-slider {
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
}

.single-homepage-slider:after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  z-index: -1;
  opacity: 0.7;
}

div.owl-controls, .owl-controls div {
  color: #AE9D8E;
  text-align: center;
  font-size: 48px;
}
.owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
}
.owl-theme .owl-dots .owl-dot span {
  width: 13px;
  height: 13px;
  margin: 5px 7px;
  border:1px solid #AE9D8E;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity .2s ease;
  border-radius: 30px;
}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
  background-color: #AE9D8E;
}
.homepage-slider {
  position: relative;
}

.owl-prev {
  position: absolute;
  left: -40px;
  margin-top: -80px;
}

.owl-next {
  position: absolute;
  right: -40px;
  margin-top: -80px;
}

/* -----------------------------------------------------------------------------

# List Styles

----------------------------------------------------------------------------- */
.list-section {
  background-color: #f5f5f5;
}

.list-box {
  overflow: hidden;
  letter-spacing: 0.5px;
}

.list-box .content h3 {
  display: block;
  line-height: 22px;
  font-size: 18px;
  margin-bottom: 4px;
}

.list-box .content p {
  margin-bottom: 0px;
  opacity: 0.75;
}

.list-box .list-icon i {
  display: block;
  font-size: 24px;
  margin-right: 15px;
  color: #DA2128;
  width: 65px;
  height: 65px;
  text-align: center;
  line-height: 60px;
  border: 2px #DA2128 dotted;
  border-radius: 999px;
}

/* -----------------------------------------------------------------------------

# News Styles

----------------------------------------------------------------------------- */
.news-bg-1 {
  background-image: url(../img/latest-news/news-bg-1.jpg);
}

.news-bg-2 {
  background-image: url(../img/latest-news/news-bg-2.jpg);
}

.news-bg-3 {
  background-image: url(../img/latest-news/news-bg-3.jpg);
}

.news-bg-4 {
  background-image: url(../img/latest-news/news-bg-4.jpg);
}

.news-bg-5 {
  background-image: url(../img/latest-news/news-bg-5.jpg);
}

.news-bg-6 {
  background-image: url(../img/latest-news/news-bg-6.jpg);
}

.latest-news-bg {
  height: 200px;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  background-color: #ddd;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.single-latest-news h3 {
  font-size: 20px;
  line-height: 1.25em;
  font-weight: 600;
}

.single-latest-news h3 a {
  color: #231F20;
}

p.blog-meta span {
  margin-right: 15px;
  opacity: 0.6;
  color: #231F20;
  font-size: 0.85em;
}

p.blog-meta span:last-child {
  margin-right: 0;
}

p.blog-meta span i {
  margin-right: 5px;
}

p.excerpt {
  line-height: 1.8;
  color: #555;
}

.latest-news a.boxed-btn {
  margin-top: 80px;
}

.news-text-box {
  padding: 25px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.single-latest-news {
  margin-bottom: 30px;
}

.single-artcile-bg {
  background-image: url(../img/latest-news/news-bg-3.jpg);
  height: 450px;
}

.pagination-wrap {
  margin-top: 40px;
}

.pagination-wrap ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.pagination-wrap ul li {
  display: inline-block;
}

.pagination-wrap ul li a {
  color: #6f6f6f;
  font-size: 14px;
  border: 1px solid #BCBEC0;
  display: inline-block;
  padding: 9px 17px;
  margin: 3px;
  border-radius: 50%;
}
.pagination-wrap ul li a:hover {
  color: #fff;
}
.pagination-wrap ul li a.active:hover {
  color: #fff;
}
.pagination-wrap ul li a.active {
  color: #fff;
  background-color: #B28B5E;
}

.single-artcile-bg {
  background-size: cover;
  background-position: center;
  background-color: #ddd;
  border-radius: 5px;
  margin-bottom: 20px;
}

.single-article-text h2 {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 10px;
}

.single-article-text p {
  font-size: 16px;
  line-height: 1.6;
  color: #231F20;
}

.comments-list-wrap {
  margin: 100px 0;
}

.comments-list-wrap h3 {
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 50px;
}

.comment-template h4 {
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 50px;
}

.single-comment-body {
  position: relative;
}

.comment-user-avater {
  position: absolute;
  left: 0;
  top: 0;
}

.comment-user-avater img {
  width: 60px;
  max-width: 60px;
  border-radius: 50%;
}

.comment-text-body {
  padding-left: 80px;
  margin-bottom: 40px;
}

.comment-text-body h4 {
  font-size: 18px;
  font-weight: 600;
}

span.comment-date {
  opacity: 0.5;
  font-size: 80%;
  font-weight: 700;
  margin-left: 5px;
}

.comment-text-body h4 a {
  color: #231F20;
  font-size: 80%;
  margin-left: 10px;
  border-bottom: 1px solid #aaa;
}

.single-comment-body.child {
  margin-left: 75px;
}

.comment-text-body p {
  color: #888;
  line-height: 2;
  margin: 0;
}

.comment-template h4 {
  margin-bottom: 10px;
}

.comment-template > p {
  opacity: 0.7;
  margin-bottom: 30px;
}

.comment-template form p input[type=text] {
  border: 1px solid #ddd;
  width: 49%;
  padding: 15px;
  border-radius: 5px;
  font-size: 16px;
  color: #231F20;
}

.comment-template form p input[type=email] {
  border: 1px solid #ddd;
  width: 49%;
  padding: 15px;
  border-radius: 5px;
  font-size: 16px;
  color: #231F20;
  margin-left: 10px;
}

.comment-template form p textarea {
  border: 1px solid #ddd;
  padding: 15px;
  font-size: 16px;
  color: #231F20;
  border-radius: 5px;
  height: 250px;
  resize: none;
  width: 100%;
}

.sidebar-section {
  margin-left: 30px;
}

.sidebar-section h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}

.sidebar-section ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.sidebar-section ul li {
  line-height: 1.5;
}

.sidebar-section ul li a {
  color: #555;
  font-size: 16px;
}

.sidebar-section > div {
  margin-bottom: 60px;
}

.sidebar-section > div:last-child {
  margin-bottom: 0;
}

.recent-posts ul li, .archive-posts ul li {
  position: relative;
  padding-left: 17px;
  margin-bottom: 10px;
}

.recent-posts ul li:before, .archive-posts ul li:before {
  position: absolute;
  left: 0;
  top: 2px;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.tag-section ul li {
  display: inline-block;
}

.tag-section ul li a {
  background-color: #ddd;
  padding: 3px 10px;
  display: block;
  border-radius: 5px;
  margin-bottom: 10px;
  margin-right: 5px;
}

/* -----------------------------------------------------------------------------

# Intro Banner Styles

----------------------------------------------------------------------------- */
.intro-banner {
  
}

.intro-banner .image-column {
  position: relative;
  margin-top: 40px;
}

.intro-banner .image-column .price-box {
  position: absolute;
  left: 15%;
  top: -30px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 1px solid #fff;
  background-color: rgba(242, 129, 35, 0.75);
}

.intro-banner .image-column .price-box .inner-price {
  position: relative;
  width: 94px;
  height: 94px;
  margin: 0 auto;
  margin-top: 8px;
  text-align: center;
  border-radius: 50%;
  background-color: #DA2128;
}

.intro-banner .image-column .price-box .inner-price .price {
  color: #231F20;
  padding-top: 27px;
  position: relative;
  display: inline-block;
  line-height: 18px;
  font-weight: 400;
}

.intro-banner .image-column .price-box .inner-price .price strong {
  color: #231F20;
  font-size: 24px;
}

.intro-banner .content-column {
  position: relative;
  padding-top: 40px;
}

.intro-banner .content-column h3 {
  font-size: 40px;
}

.intro-banner .content-column h4 {
  position: relative;
  font-weight: 300;
  text-transform: uppercase;
}

.intro-banner .content-column .text {
  position: relative;
  font-weight: 400;
  line-height: 1.8em;
  margin-top: 25px;
  margin-bottom: 25px;
}

.time-counter {
  position: relative;
  margin-bottom: 25px;
}

.time-counter .time-countdown {
  position: relative;
}

.time-countdown .counter-column {
  position: relative;
  display: inline-block;
  margin: 0px 0px 5px;
  font-size: 13px;
  line-height: 1em;
  padding: 8px 60px 14px;
  text-transform: capitalize;
  text-align: center;
}
.time-countdown .counter-column .inner {
  font-family: "Times New Roman", Times, serif;
  color: #231F20;
  font-size: 18px;
  font-style: italic;
}
.time-countdown .counter-column .count {
  position: relative;
  display: block;
  font-size: 64px;
  line-height: 1.2em;
  padding: 0px 0px;
  color: #DA2128;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: 'Times New Roman', Times, serif;
}

/* -----------------------------------------------------------------------------

# Testimonial Styles

----------------------------------------------------------------------------- */
.client-avater {
  margin-bottom: 20px;
}

.client-meta h3 {
  font-size: 20px;
  font-weight: 600;
}

.client-meta h3 span {
  display: block;
  font-size: 70%;
  margin-top: 10px;
  color: #231F20;
  font-weight: 600;
  opacity: 0.5;
}

p.testimonial-body {
  font-size: 17px;
  font-style: italic;
  width: 700px;
  margin: 0 auto;
  line-height: 1.8;
  color: #999999;
  margin-top: 20px;
}

.last-icon {
  margin-top: 20px;
  font-size: 25px;
  opacity: 0.3;
}

.client-avater img {
  max-width: 100px;
  border-radius: 50%;
  margin: 0 auto;
}

/* -----------------------------------------------------------------------------

# About Styles

----------------------------------------------------------------------------- */
a.video-play-btn {
  position: absolute;
  background-color: #231F20;
  color: #F6F0DA;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  font-size: 14px;
  padding-left: 3px;
  display: block;
  z-index: 2;
  top: 50%;
  margin-top: -20px;
  -webkit-box-shadow: 0 0 20px #adadad;
  box-shadow: 0 0 20px #adadad;
  left: 50%;
  margin-left: -20px;
}

.abt-bg {
  background-image: url(../img/abt.jpg);
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.abt-bg:after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #231F20;
  opacity: 0.3;
}

.abt-section .abt-text {
  padding: 50px;
  padding-left: 30px;
}

.abt-text p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 10px;
}

.abt-text p.top-sub {
  opacity: 0.8;
  margin-bottom: 10px;
}

.abt-text p:last-child {
  margin-bottom: 0;
}

/* -----------------------------------------------------------------------------

# Shop Banner Styles

----------------------------------------------------------------------------- */
.shop-banner {
  position: relative;
  background-color: #f5f5f5;
  background-image: url(../img/1.jpg);
  background-size: cover;
  padding: 110px 0px 115px;
}

.shop-banner h3 {
  position: relative;
  font-size: 50px;
  line-height: 1.2em;
  margin-bottom: 0px;
}

.shop-banner .sale-percent {
  position: relative;
  font-size: 60px;
  font-weight: 700;
  color: #DA2128;
}

.shop-banner .sale-percent span {
  position: relative;
  font-size: 24px;
  line-height: 1.1em;
  color: #231F20;
  font-weight: 400;
  text-align: center;
  margin-right: 10px;
  display: inline-block;
}

/* -----------------------------------------------------------------------------

# About Page Styles

----------------------------------------------------------------------------- */
.feature-bg {
  position: relative;
  margin: 150px 0;
}

.feature-bg:after {
  background-image: url(../img/feature-bg.jpg);
  position: absolute;
  right: 0;
  top: 0;
  width: 40%;
  height: 100%;
  content: "";
  background-size: cover;
  background-position: center;
  border-top-left-radius: 5px;
  -webkit-box-shadow: 0 0 20px #cacaca;
  box-shadow: 0 0 20px #cacaca;
  border-bottom-left-radius: 5px;
}

.team-bg-1 {
  background-image: url(../img/team/team-1.jpg);
}

.team-bg-2 {
  background-image: url(../img/team/team-2.jpg);
}

.team-bg-3 {
  background-image: url(../img/team/team-3.jpg);
}

.team-bg-4 {
  background-image: url(../img/team/team-4.jpg);
}

.team-bg {
  height: 400px;
  background-size: cover;
  background-position: center;
  border-radius: 5px;
  background-color: #ddd;
}

.single-team-item {
  position: relative;
}

.single-team-item h4 {
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  margin-top: 15px;
  margin-bottom: 10px;
}

.single-team-item h4 span {
  font-size: 70%;
  display: block;
  margin-top: 10px;
  opacity: 0.7;
}

ul.social-link-team {
  position: absolute;
  bottom: 80px;
  left: 0;
  right: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
}

ul.social-link-team li {
  display: inline-block;
}

ul.social-link-team li a {
  color: #fff;
  background-color: #DA2128;
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  border-radius: 50%;
  display: block;
  margin: 5px;
}

/* -----------------------------------------------------------------------------

# Contact Page Styles

----------------------------------------------------------------------------- */
.form-title {
  margin-bottom: 25px;
}

.form-title h2 {
  font-size: 25px;
}

.form-title p {
  font-size: 16px;
  line-height: 1.8;
}

.contact-form form p input[type=text], .contact-form form p input[type=tel], .contact-form form p input[type=email] {
  width: 49%;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 3px;
}

.contact-form form p textarea {
  border: 1px solid #ddd;
  padding: 15px;
  height: 200px;
  border-radius: 3px;
  width: 100%;
  resize: none;
}

.contact-form-wrap {
  background-color: #FBFBFB;
  padding: 45px 30px;
  border-radius: 5px;
}

.contact-form-box {
  padding-left: 40px;
  margin-bottom: 30px;
}

.contact-form-box h4 {
  font-size: 20px;
  font-weight: 600;
  position: relative;
  margin-bottom: 10px;
}

.contact-form-box h4 i {
  position: absolute;
  left: -13%;
  color: #DA2128;
  top: 2px;
}

.contact-form-box p {
  line-height: 1.8;
  opacity: 0.8;
}

.contact-form-wrap .contact-form-box:last-child {
  margin: 0;
}

.find-location p {
  color: #fff;
  font-size: 40px;
  margin: 0;
  font-weight: 600;
  padding: 95px 0;
}

.find-location p i {
  margin-right: 10px;
  color: #DA2128;
}

#form_status span {
  color: #fff;
  font-size: 14px;
  font-weight: normal;
  background: #E74C3C;
  width: 100%;
  text-align: center;
  display: inline-block;
  padding: 10px 0px;
  border-radius: 3px;
  margin-bottom: 18px;
}

#form_status span.loading {
  color: #333;
  background: #eee;
  border-radius: 3px;
  padding: 18px 0px;
}

#form_status span.notice {
  color: yellow;
}

#form_status .success {
  color: #fff;
  text-align: center;
  background: #2ecc71;
  border-radius: 3px;
  padding: 30px 0px;
}

#form_status .success i {
  color: #fff;
  font-size: 45px;
  margin-bottom: 14px;
}

#form_status .success h3 {
  color: #fff;
  margin-bottom: 10px;
}

/* -----------------------------------------------------------------------------

# Shop Page Styles

----------------------------------------------------------------------------- */
.product-filters {
  margin-bottom: 80px;
}

.product-filters ul {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
}

.product-filters ul li {
  display: inline-block;
  font-weight: 700;
  font-size: 18px;
  margin: 15px;
  border: 2px solid #231F20;
  color: #323232;
  cursor: pointer;
  padding: 8px 20px;
  border-radius: 25px;
}

.product-filters ul li.active {
  border: 2px solid #DA2128;
  background-color: #DA2128;
  color: #fff;
}

.single-product-item {
  margin-bottom: 30px;
}

.product-image {
  padding: 30px;
  padding-bottom: 0;
}

.product-image img {
  width: 90%;
  border-radius: 5px;
  margin-bottom: 20px;
}

.single-product-item h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

p.product-price {
  font-family: 'Poppins', sans-serif;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 15px;
}

p.product-price span {
  display: block;
  opacity: 0.8;
  font-size: 15px;
  font-weight: 400;
}

a.cart-btn {
  font-family: 'Poppins', sans-serif;
  display: inline-block;
  background-color: #DA2128;
  color: #fff;
  padding: 10px 20px;
}

a.cart-btn i {
  margin-right: 5px;
}

.single-product-img img {
  border-radius: 5px;
  -webkit-box-shadow: 0 0 20px #ddd;
  box-shadow: 0 0 20px #ddd;
}

.single-product-content h3 {
  font-size: 22px;
  font-weight: 600;
}

p.single-product-pricing span {
  font-size: 18px;
  display: block;
  opacity: 0.8;
  margin-bottom: 10px;
  font-weight: 400;
}

.single-product-content p {
  font-size: 15px;
  color: #555;
  line-height: 1.8;
}

.single-product-content p.single-product-pricing {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #231F20;
  line-height: inherit;
}

input[type="number"] {
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 10px;
  width: 100px;
  margin-bottom: 15px;
}

.single-product-form a.cart-btn {
  margin-bottom: 15px;
}

.single-product-content h4 {
  font-size: 20px;
  font-weight: 600;
  margin-top: 35px;
}

ul.product-share {
  margin: 0;
  padding: 0;
  list-style: none;
}

ul.product-share li {
  display: inline-block;
}

ul.product-share li a {
  display: block;
  color: #231F20;
  margin-right: 10px;
}

.single-product-content {
  margin-left: 30px;
}

table.cart-table {
  border: 1px solid #f9f9f9;
  width: 100%;
}

thead {
  border-bottom: 1px solid #eee;
}

tr.table-head-row th {
  border-right: 1px solid #efefef;
  padding: 15px;
  font-weight: 500;
  text-align: center;
}

tr.table-head-row th:last-child {
  border-right: none;
}

.cart-table-wrap tbody tr td {
  text-align: center;
}

td.product-image img {
  max-width: 50px;
  -webkit-box-shadow: none;
  box-shadow: none;
  margin-bottom: 0;
}

.cart-table-wrap tbody tr td {
  border: 1px solid #efefef;
  padding: 20px 0;
  color: #231F20;
}

thead.cart-table-head tr {
  background-color: #efefef;
}

td.product-quantity input {
  margin-bottom: 0;
}

td.product-remove a {
  color: #231F20;
}

.total-section table.total-table {
  border: 1px solid #efefef;
  width: 100%;
}

tr.table-total-row {
  background-color: #efefef;
}

tr.table-total-row th {
  font-weight: 500;
  font-size: 15px;
  padding: 15px;
}

table.total-table tbody tr.total-data td {
  border: 1px solid #efefef;
  padding: 19px 15px;
}

tr.total-data td strong {
  margin-right: 32px;
}

.cart-buttons {
  margin-top: 30px;
}

.cart-buttons a:first-child {
  margin-right: 20px;
}

.coupon-section {
  margin-top: 50px;
}

.coupon-section h3 {
  font-size: 20px;
  font-weight: 500;
}

.coupon-form-wrap form p input[type=text] {
  border: 1px solid #ddd;
  color: #231F20;
  padding: 15px;
  width: 100%;
  border-radius: 5px;
  font-size: 15px;
}

.card.single-accordion {
  margin-bottom: 15px;
  border-bottom: 1px solid #EFEFEF !important;
}

.card.single-accordion .card-header {
  background-color: #fff;
  border: none;
  padding: 0;
}

.card.single-accordion:last-child {
  margin-bottom: 0;
}

.card.single-accordion .card-header h5 button {
  color: #231F20;
  font-size: 15px;
  display: block;
  width: 100%;
  text-align: left;
  padding: 20px;
  text-decoration: none;
  border: none;
  background-color: #EFEFEF;
  position: relative;
  padding-left: 50px;
  font-weight: 600;
}

.card.single-accordion {
  border: 1px solid #F9F9F9;
}

.billing-address-form {
  padding: 20px;
}

.billing-address-form form p input {
  border: 1px solid #ddd;
  padding: 15px;
  width: 100%;
  border-radius: 3px;
}

.billing-address-form form p textarea {
  width: 100%;
  border-radius: 3px;
  border: 1px solid #ddd;
  padding: 15px;
  height: 120px;
  resize: none;
}

.shipping-address-form p, .card-details p {
  margin: 0;
}

.card.single-accordion .card-header h5 button:before {
  position: absolute;
  left: 20px;
  top: 50%;
  content: "\f058";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  line-height: 22px;
  margin-top: -11px;
  color: #DA2128;
}

.billing-address-form form p:last-child {
  margin-bottom: 0;
}

table.order-details {
  border: 1px solid #efefef;
}

table.order-details thead tr th {
  background-color: #efefef;
  padding: 18px;
  font-size: 15px;
  font-weight: 500;
}

table.order-details tbody td {
  border: 1px solid #efefef;
  padding: 15px;
}

.order-details-wrap > a {
  margin-top: 30px;
}

.card.single-accordion {
  border: 1px solid #eeeeee;
}

.single-product-item {
  -webkit-box-shadow: 0 0 20px #e4e4e4;
  box-shadow: 0 0 20px #e4e4e4;
  padding-bottom: 50px;
  border-radius: 5px;
}

/* -----------------------------------------------------------------------------

# 404 Page Styles

----------------------------------------------------------------------------- */
.error-text i {
  font-size: 90px;
  margin-bottom: 30px;
}

.error-text h1 {
  font-size: 40px;
  font-weight: 500;
  margin-bottom: 10px;
}

.error-text p {
  font-size: 15px;
  margin-bottom: 30px;
}

.full-height-section {
  height: 100%;
  display: table;
  width: 100%;
}

.full-height-tablecell {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}
.home-contact-text {
  font-size: 48px;
    color: #fff;
    font-weight: 700;
    max-width: 680px;
    line-height: 60px;
    margin-right: 30px;
    align-self: center;
}
.home-contact-box {
  display: flex;
  justify-content: space-between;
  padding: 180px 0 64px 20px;
  margin-right: 30px;
}
.home-contact-form {
  font-size: 14px;
  color: #4c5158;
  width: 350px;
  background: rgb(241, 242, 242, 0.7);
  box-shadow: 0px 3px 25px rgba(25, 32, 56, 0.08);
  padding: 0 20px 20px 20px;
  border-radius: 20px;
  align-self: center;
}
.home-contact-text h2 {
  font-size: 38px;
  color: #fff;
  font-weight: 500;
  margin-bottom: 10px;
  line-height: 1.1em;
}
a.bordered-white-btn {
  font-family: "Cali Font", sans-serif;
  display: inline-block;
  color: #fff;
  border: 1px solid #fff;
  padding: 5px 20px;
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
  border-radius: 10px;
}
a.bordered-white-btn:hover {
  color:#231F20;
  background-color: #fff;
}
.contact-form-title {
  font-weight: 500;
  font-size: 21px;
  line-height: 26px;
  margin: 20px 0px;
  font-family: "Cali Font", sans-serif;
}
.home-form .input {
  border: 1px solid #fff;
  border-radius: 4px;
  width: 100%;
  padding: 5px;
}
.boxed-btn {
  font-family: "Cali Font", sans-serif;
  display: inline-block;
  color: #fff;
  border: 1px solid #DA2128;
  padding: 5px 20px;
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
  border-radius: 10px;
  background-color: #DA2128;
}
.list-partner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-flow: wrap;
    margin-top: 20px;
}
.list-partner img {
  margin-top: 10px;
}
.trusted-partner {
  padding-left: 30px;
  padding-right: 30px;
}
.title-trusted-partner {
  font-size: 18px;
  color: #414042;
  font-weight: 550;
}
.intro-text p {
  font-size: 20px;
  margin-bottom: 0px;
  text-align: justify;
}
h3.title-numbers {
  display: table;
  white-space: nowrap;
  color:#B28B5E;
  text-transform: uppercase;
  font-size: 22px;
  font-weight: 500;
  &:before, &:after {
    border-top: 1px solid #B28B5E;
    content: '';
    display: table-cell;
    position: relative;
    top: 0.66em;
    width: 45%;
  }
  &:before { right:10px; }
  &:after { left:10px; }
}
.time-counter {
  padding-bottom: 30px;
  /*border-bottom: 1px solid #6D6E71;*/
}
.ship-banner {
  position: relative;
  background-color: #6D6E71;
  background-image: url(../img/ships.png);
  background-size: cover;
  padding: 110px 0px 115px;
  min-height: 430px;
  background-position:center;
}
.spirit-banner {
  position: relative;
  background-color: #6D6E71;
  background-image: url(https://storage.googleapis.com/kyubispiritlodge/2024/01/fox.png);
  background-size: cover;
  padding: 360px 0px 115px;
  min-height: 730px;
  background-position:center;
}
.explore-section {
  position: relative;
}
.explore-section::after {
  position: absolute;
    content: '';
    left: 0px;
    right: 0px;
    bottom: 0px;
    width: 280px;
    height: 2px;
    background-color: #DA2128;
    margin: 0 auto;
}
.explore-section h3 {
  color: #231F20;
  font-size: 34px;
  font-weight: 500;
  font-family: Arial, Times, serif;
  line-height: 1.1em;
}
.explore-section p {
  font-family: 'Times New Roman', Times, serif;
  /*font-family: Arial, Times, serif;*/
  font-size: 20px;
}
.bordered-black-btn {
  font-family: "Cali Font", sans-serif;
  display: inline-block;
  color: #6D6E71;
  border: 1px solid #6D6E71;
  padding: 5px 20px;
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
  border-radius: 10px;
}
.bordered-black-btn:hover {
  color:#DA2128;
  background-color: #fff;
  border: 1px solid #DA2128;
}
.bordered-grey-btn {
  font-family: Arial, Helvetica, sans-serif;
  display: inline-block;
  color: #fff;
  border: 2px solid #B28B5E;
  padding: 5px 20px;
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
}
.bordered-grey-btn:hover {
  color:#fff;
  background-color: #B28B5E;
  border: 2px solid #B28B5E;
}
.latest-news h3 {
  color: #231F20;
  font-size: 34px;
  font-weight: 500;
  font-family: Arial, Times, serif;
  line-height: 1.1em;
}
.pdate {
  margin-bottom: 0px;
  font-size: 15px;
  margin-top: 5px;
  font-family: Arial, Times, serif;
}
.title-article {
  margin-top: 5px;
  margin-bottom: 8px;
  
}
.title-article a {
  font-weight: 500;
  font-size: 20px;
  color: #231F20;
}
.title-article a:hover {
  color:#B28B5E;
}
.pdescription {
  font-size: 18px;
}
.item-article {
  margin-bottom: 30px;
}
.our-services {
  position: relative;
  background-color: #1D1F21;
}
.our-npc {
  position: relative;
  background-image: url(https://storage.googleapis.com/kyubispiritlodge/2024/01/npc-bg.png);
  background-size: cover;
  background-position:center;
}
.our-white-bg {
  position: relative;
  background-color: #fff;
}
.our-founders {
  position: relative;
  background-image: url(../img/founder-say.png);
  background-size: cover;
  background-position:center;
}
.our-founders h3 {
  color: #fff;
  font-size: 34px;
  font-weight: 500;
  font-family: Arial, Times, serif;
  line-height: 1.1em;
}
.line-service::after {
  position: absolute;
    content: '';
    left: 0px;
    right: 0px;
    top: 0px;
    width: 280px;
    height: 2px;
    background-color: #B28B5E;
    margin: 0 auto;
}
.white-txt {
  color: #fff !important;
}
.our-services h3 {
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  font-family: Arial, Times, serif;
  line-height: 1.1em;
  text-transform: uppercase;
}
.sub-title {
  font-size: 20px;
}
.title-service {
  text-transform: uppercase;
  color: #B28B5E;
}
.title-service a {
  color: #B28B5E;
}
.item-service {
  margin-bottom: 10px;
}
.box-testimonial {
  padding: 30px 30px 30px 0px;
}
.box-testimonial p {
  font-size: 19px;
}
.left-box {
  padding: 30px 0px 30px 0px;
}
.overlay-div {
  position: relative;
  right: -20px;
}
.partner-box {
  display: flex;
  justify-content: space-between;
  position: relative;
}
.list-community {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: wrap;
  margin-top: 10px;
}
.list-community a {
  margin-top: 10px;
  margin-left: 5px;
}
.list-community a:first-child {
  margin-left: 0px;
}
.join-journey h3 {
    color: #231F20;
    font-size: 34px;
    font-weight: 500;
}
.join-journey p {
  font-size: 20px;
  margin-bottom: 20px;
}
.partner-img {
  padding: 25px 0px;
}
.partner-box img {
  z-index: 99;
  position: relative;
}
.left-box::after {
  left: 15px !important;
}
.flex-content-right {
  justify-content: right;
}
.latest-menu-item {
  margin: 0px;
  padding: 0px;
}
.latest-menu-item li {
  list-style: none;
  float: left;
  margin-right: 20px;
}
.latest-menu-item li a {
  color: #000;
  font-size: 1.1rem;
}
.latest-menu-item li a:hover {
  color: #B28B5E;
  border-bottom: 2px solid #B28B5E;
}
.latest-menu-item li.active a {
  color: #B28B5E;
  border-bottom: 2px solid #B28B5E;
}
.latest-menu-item li.active {
  background-color: #fbfaf4;
    padding-left: 10px;
    padding-right: 10px;
}
.latest-menu-item li:last-child {
  margin-right: 0px;
}
.dv-latest-menu-item {
  display: table;
  width: 100%;
  border-bottom: 4px solid #fbfaf4;
}
.dv-latest-menu-item::after {
  
}
.font-normal {
  font-weight: 400 !important;
}
.highlight-news {
  border-bottom: 1px solid #B28B5E;
}

.item-videos {
  margin-bottom: 30px;
}
.item-videos img {
  border-radius: 5px;
}
.video-bg {
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 10px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.video-bg:after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #231F20;
  opacity: 0.3;
}
.box-journey {
  border: 0.5px solid #6D6E71;
  padding: 30px 40px;
  position: relative;
}
.ab-border {
  position: absolute;
  left: 50%;
  bottom: -11%;
  width: 150px;
  display: block !important;
  right: auto;
  margin-left: -75px;
}
h3.title-section {
  color: #231F20;
  font-size: 34px;
  font-weight: 500;
  font-family: Arial, Times, serif;
  line-height: 1.1em;
}
p.des-section {
  font-family: 'Times New Roman', Times, serif;
  /*font-family: Arial, Times, serif;*/
  font-size: 20px;
}
.sub-title-section {
  color: #231F20;
  font-size: 32px;
  font-weight: 500;
  font-family: Arial, Times, serif;
  line-height: 1.1em;
}
.item-swiper {
  border: 2px solid #939598;
  /*padding: 15px;*/
  min-height: 265px;
  text-align: center;
}
.item-swiper h5 {
  background-color: #163860;
  padding: 15px;
  color: #fff;
  font-weight:normal;
  margin-bottom: 0px;
}
.item-swiper p {
  font-size: 18px;
}
.swiper-slide-active .item-swiper {
  border: 5px solid #DA2128;
}
.font-weight-550 {
  font-weight: 550;
}
.color-red {
  color: #DA2128 !important;
}
.text-upper {
  text-transform: uppercase;
}
.swiper-slide-active .item-swiper h5 {
  color: #fff;
}
.vt-section--10 {
  padding-top: 25px;
}
.small-16 {
  font-size: 18px;
}
.small-20 {
  font-size: 20px;
}
.small-24 {
  font-size: 24px;
}
.small-26 {
  font-size: 26px;
}
.small-14 {
  font-size: 14px;
}
.txt-italic {
  font-style: italic;
  color: #808285;
}
.color-grey {
  color: #808285 !important;
}
.mb-0 {
  margin-bottom: 0px;
}
.mb-10 {
  margin-bottom: 10px;
}
.vt-section--10 ul {
  list-style: none; 
  padding-left: 20px;
}

.vt-section--10 ul li::before {
  content: "\2022"; 
  color: #808285; 
  font-weight: bold;
  display: inline-block; 
  width: 1em; 
  margin-left: -1em; 
}
.vt-section--10 ul li p {
  display: inline;
}
.invest-content {
  display: none;
}
/*.invest-content:first-of-type {display:block}*/
/*form foundation*/
.flex-wrap {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.input-group{
  display: table;
  padding: 0 20px;
  width:100%;
  border: 1px solid #DA2128;
  border-radius: 20px;
  background-color: #fff;
}
.input-group > div{
  display: table-cell;
  border-radius: 0px;
  vertical-align: middle;  /* needed for Safari */
}
.input-group-icon{
  background:#fff;
  color: #777;
  padding: 0 12px
}
.input-group-area{
  width:100%;
}
.input-group input{
  border: 0;
  display: block;
  width: 100%;
  padding: 8px;
}
*:focus {
  outline: none;
}
.form-check-radio:checked~.form-check-label {
  background-color: #fff;
  border-color: #DA2128;
  color: #DA2128;
}
.form-check-radio~.form-check-label {
  border: 1px solid #000000;
  background-color: #fff;
  border-radius: 10px;
  padding: 5px 20px;
  width: 80px;
  text-align: center;
}
.hidden {
  display: none;
}
.donate-item {
  margin-bottom: 15px;
  margin-right: 25px;
}
.mr-0 {
  margin-right: 0px;
}
.fontSize18 {
  font-size:21px !important;
}
.fontSize29 {
  font-size:29px !important;
}
.link-story {
  color: #6D6E71;
  font-size: 18px;
  margin-right: 5px;
}
.link-story + i {
  color: #DA2128;
}
.quote-bg {
  background: url(../img/quote.png);
  background-repeat: no-repeat;
  background-position: left top;
  padding: 20px 0px;
}
.color-white {
  color: #fff !important;
}
.group-line {
  position:relative;
  height:10px;
  border-bottom:1px solid #6D6E71;
}

.group-line span {
  position: absolute;
  left: 50%;
  margin-left: -60px;
  background-color: white;
  padding: 0px 10px 0px 10px;
  font-size: 2rem;
  font-weight: 400;
  line-height: 2.25rem;
  color: #DA2128;
  top: -10px;
}
.value-item {
  text-align: center;
  margin: 0 auto;
  cursor: pointer;
}
.value-item img {
  height: 90px;
}
.value-item p{
  font-weight: bold;
  margin-top: 10px;
  font-family: Arial, Times, serif;
  font-size: 14px;
}
.bor-left {
  border-left: 1px solid #D1D3D4;
}
.mrHasTxt {
  margin-right: 340px;
}
.mrHasTxtHome {
  margin-right: 228px;
  padding-top: 65px;
}
.lab-icon{
  position: relative;
  &:after {
    content: url(../img/venture-lab-lift.png);
    position: absolute;
    bottom: 4px;
    right: 5px;
  }
}
.lab-icon-sub {
  position: relative;
  &:after {
    content: url(../img/lab-ico-small-lift.png);
    position: absolute;
    bottom: 2px;
    right: 1px;
  }
}
.author__social {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid #414042;
  border-radius: 50%;
  transition: .2s;
}
.author__social i {
  color: #414042;
}
.white {
  background: #fff;
}
.breadcrumb-item {
  font-size: 16px;
}
.breadcrumb-item a {
  color: #414042;
  font-size: 16px;
}
.breadcrumb-item a:hover {
  color: #DA2128;
}
.fs-32 {
  font-size: 2.3rem;
  line-height: 3.3rem;
}
.author__img-wrapper img {
  display: block;
  width: inherit;
  height: inherit;
  -o-object-fit: cover;
  font-family: "object-fit:cover";
  object-fit: cover;
}
.author__img-wrapper {
  display: inline-block;
  border-radius: 50%;
  width: 4em;
  height: 4em;
  overflow: hidden;
  transition: transform .2s cubic-bezier(.175,.885,.32,1.275);
  transition: transform .2s var(--bounce);
  margin-right: 10px;
}
.flex-container {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  margin: 30px 0px;
}

.author--meta {
  display: flex;
}
.share-social {
  display: flex;
}
.share-social li {
  list-style: none;
  margin-left: 5px;
}
.author__social:hover, .share-social a:hover {
  color: #B28B5E;
  border: 1px solid #B28B5E;
  background: #B28B5E;
}
.author__social:hover i,.share-social a:hover i {
  color: #fff;
}
.text-base {
  font-size: 16px;
  margin-bottom: 2px;
  color: #414042;
}
p.text-sm time {
  font-size: 16px;
}
.invest-info {
  border: 1px solid #6D6E71;
  padding: 20px 30px;
  min-height: 195px;
  display: flex;
  justify-content: space-around;
  flex-direction: column;
}
.invest-info p {
  font-size: 18px;
}
.invest-info p a {
  font-size: 18px;
}
.learn-more {
  color: #6D6E71;
  margin-right: 5px;
}
.learn-more + i {
  color: #DA2128;
  font-size: 14px;
}
.white-popup-block {
  background: #FFF;
  padding: 20px 30px;
  text-align: left;
  max-width: 650px;
  margin: 40px auto;
  position: relative;
}
.popup-modal-dismiss {
  color:  #DA2128;
}
.form-group label {
  font-size: 16px;
}
.form-group .form-control {
  height: 50px;
}

/**/
/* Quick-zoom Container */
.img-hover-zoom {
  height: 100%; /* Modify this according to your need */
  overflow: hidden; /* Removing this will break the effects */
}/* [2] Transition property for smooth transformation of images */
.img-hover-zoom img {
  transition: transform .5s ease-in-out;
}

/* [3] Finally, transforming the image when container gets hovered */
.img-hover-zoom:hover img {
  transform: scale(1.1);
}
.img-hover-zoom--colorize img {
  transition: transform .5s, filter 1.5s ease-in-out;
  filter: grayscale(100%);
}

/* The Transformation */
.img-hover-zoom--colorize:hover img {
  filter: grayscale(0);
  transform: scale(1.1);
}
.hauto {
  height: auto !important;
}
.hidden-content {
  display: none;
  font-size: 14px;
  line-height: 1.4em;
  margin: 0px;
  padding: 20px;
  height: auto;
  position: absolute;
  left: 0px;
  width: 100%;
}
.item-invest {
  border: 1px solid #AE9D8E;
  border-radius: 5px;
  text-align: center;
  height: 370px;
  position: relative;
  cursor: pointer;
  width: 100%;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center center;
  overflow: hidden;
}
.item-invest img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}
.active-invest {
  position: static;
}
.active-invest .item-invest {
  border: 1px solid #FFFFFF;
}
.item-invest:hover {
  border: 1px solid #FFFFFF;
}
.item-invest:hover img {
  filter: grayscale(0);
}
.item-invest img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.active-invest .item-invest img{
  
}
.active-invest .item-invest + h4 {
  color: #DA2128;
}
.div-invest {
  border: 0.75px solid #BCBEC0;
  border-radius: 20px;
  padding: 25px;
}
.div-invest p {
  font-size: 18px;
}
.pos-relative {
  position: relative;
}
.txt-bold {
  font-weight: 600;
}
.active-invest .value-item p {
  color: #DA2128;
  border-bottom: 2px solid #DA2128;
  padding-bottom: 5px;
}

/*about*/
.timeline {
  width: 100%;
  padding: 0px 50px;
  position: relative;
}
.timeline:before {
  content: "";
  position: absolute;
  top: 0px;
  left: calc(33% + 15px);
  bottom: 0px;
  width: 1px;
  background: #6D6E71;
}
.timeline:after {
  content: "";
  display: table;
  clear: both;
}

.entry {
  clear: both;
  text-align: left;
  position: relative;
}
.entry .title {
  margin-bottom: 0.5em;
  float: left;
  width: 33%;
  padding-right: 30px;
  text-align: right;
  position: relative;
}
.entry .title:before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border: 8px solid #DA2128;
  background-color: #fff;
  border-radius: 100%;
  top: 15%;
  right: -6px;
  z-index: 99;
}
.entry .title h2 {
  color: #DA2128;
}
.entry .title p {
  margin: 0;
  font-size: 100%;
}
.entry .body {
  margin: 0 0 3em;
  float: right;
  width: 66%;
  padding-left: 30px;
}
.entry .body p {
  line-height: 1.4em;
}
.entry .body p:first-child {
  margin-top: 0;
  font-weight: 400;
}
.entry .body ul {
  color: #aaa;
  padding-left: 0;
  list-style-type: none;
}
.entry .body ul li:before {
  content: "–";
  margin-right: 0.5em;
}
.lang-box button {
  background: none;
  color: #F6F0DA;
  border: none;
  font-weight: 600;
  font-size: 1rem;
  padding-top: 0px;
}
.lang-box .btn-secondary.focus, .lang-box .btn-secondary:focus, .lang-box .btn-secondary:hover {
  background: none;
  color: #F6F0DA;
  border: none;
}
.lang-box .dropdown-menu {
  min-width: 49px;
}
.lang-box .btn-secondary:not(:disabled):not(.disabled).active, .lang-box .btn-secondary:not(:disabled):not(.disabled):active, .lang-box .show>.btn-secondary.dropdown-toggle {
  background: none;
  color: #F6F0DA;
  border: none;
}
.article-detail img, .wp-block-image:not(.is-style-rounded) img {
  max-width: 100% !important;
  height: auto !important;
  border-radius: 0.25rem;
}
.tags {
  font-size: 16px;
}
.mtTxtContact {
  padding-top: 130px;
}
.item-swiper p {
  padding: 5px 15px 15px 15px;
}
.cookie-box {
  display: none;
  background-color: #163860;
  padding: 20px 0px 10px 0px;
  position: fixed;
  bottom: 0px;
  left: 0px;
  width: 100%;
  z-index: 9999;
}
.cookie-box p {
  color: #fff;
}
.cookie-box a {
  color: #fff;
}
.cookie-box a:hover {
  color: #DA2128;
}
a.bordered-white-cookie-btn {
  font-family: "Cali Font", sans-serif;
  display: inline-block;
  color: #fff;
  border: 1px solid #fff;
  padding: 2px 10px;
  font-size: 12px;
  font-weight: 400;
  line-height: 25px;
  border-radius: 10px;
}
a.bordered-white-cookie-btn:hover {
  color:#231F20;
  background-color: #fff;
}
.radius-10 {
  border-radius: 10px !important;
}
.chevron-left {
  background: url(../img/chevron-left.png);
  background-repeat: no-repeat;
  background-position: left top;
  width: 19px;
  height: 56px !important;
  display: block;
}
.chevron-right {
  background: url(../img/chevron-right.png);
  background-repeat: no-repeat;
  background-position: left top;
  width: 19px;
  height: 56px !important;
  display: block;
}
.advisory-invest-content {
  padding: 15px;
}
.b-item-invest {
  padding: 15px;
}
.gg-chevron-right {
  box-sizing: border-box;
  position: relative;
  display: block;
  transform: scale(var(--ggs,1));
  width: 52px;
  height: 52px;
  border: 2px solid transparent;
  border-radius: 100px
}
.gg-chevron-right::after {
  content: "";
  display: block;
  box-sizing: border-box;
  position: absolute;
  width: 40px;
  height: 40px;
  border-bottom: 1px solid #939598;
  border-right: 1px solid #939598;
  transform: rotate(-45deg);
  right: 6px;
  top: 4px
}
.gg-chevron-left {
  box-sizing: border-box;
  position: relative;
  display: block;
  transform: scale(var(--ggs,1));
  width: 52px;
  height: 52px;
  border: 2px solid transparent;
  border-radius: 100px
}
.gg-chevron-left::after {
  content: "";
  display: block;
  box-sizing: border-box;
  position: absolute;
  width: 40px;
  height: 40px;
  border-bottom: 1px solid #939598;
  border-left: 1px solid #939598;
  transform: rotate(45deg);
  left: 6px;
  top: 4px
}
.hidden-content-values {
  display: none;
  font-size: 14px;
  line-height: 1.4em;
  margin: 0px;
  padding: 20px;
  height: auto;
  position: absolute;
  left: 0px;
  width: 100%;
}
.pos-value-relative {
  position: relative;
}
.responsive-ic {
  background-image: url('../img/n-responsive-ic.png');
}
.active-invest .responsive-ic {
  background-position-x: -90px;
}
.community-ic {
  background-image: url('../img/n-community-ic.png');
}
.active-invest .community-ic {
  background-position-x: -90px;
}
.innovate-ic {
  background-image: url('../img/n-innovate-ic.png');
}
.active-invest .innovate-ic {
  background-position-x: -90px;
}
.forward-ic {
  background-image: url('../img/n-forward-ic.png');
}
.active-invest .forward-ic {
  background-position-x: -90px;
}
.progress-ic {
  background-image: url('../img/n-progress-ic.png');
}
.active-invest .progress-ic {
  background-position-x: -90px;
}
.the-best-ic {
  background-image: url('../img/n-the-best-ic.png');
}
.active-invest .the-best-ic {
  background-position-x: -90px;
}
.value-item:hover .value-item-bg {
  background-position-x: -90px;
}
.value-item:hover >p {
  color: #DA2128;
}
.value-item-bg {
  background-repeat: no-repeat;
  background-position-x: 0px;
  width: 90px;
  height: 90px;
  margin: 0 auto;
}
.max-width-880 {
  padding: 0 15px;
  max-width: 880px;
  margin: 0 auto;
}
.text-align-justify {
  text-align: justify !important;
}
.iframe-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
}
.iframe-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.mb-0 {
  margin-bottom: 0px;
}
.mb-3 {
  margin-bottom: 3px !important;
}
.about-widget {
  margin-bottom: 30px;
}
.jsSwiper03 .swiper-slide {
 
}
.pt-65-l {
  padding-top: 65px;
}
.hero-foundation-bg {
  background-image: url(../img/foundation.webp);
  background-size: cover;
  background-position: center;
}
.hero-advisory-bg {
  background-image: url(../img/advisory-bg.webp);
  background-size: cover;
  background-position: center;
}
.hero-contact-bg {
  background-image: url(https://storage.googleapis.com/kyubispiritlodge/2024/01/contact-bg.png);
  background-size: cover;
  background-position: center;
}
.display-table {
  display: table;
  height: 500px;
  width: 100%;
}
.sub-display-cell {
  display: table-cell;
  vertical-align: middle;
}
.line-break-small {
  display: block;
  padding: 3px;
}
.theme-black-txt {
  color: #153335 !important;
}
.theme-white-txt {
  color: #fff !important;
}
.testimonial-sliders{
  padding: 0px 15px;
}
.accommodations-sliders{
  padding: 0px 15px;
}
.accommodations-sliders .owl-next,.accommodations-sliders .owl-prev {
  background-color: #B28B5E;
  width: 42px;
  height: 42px;
  border: 1px solid #AE9D8E;
  display: block;
  transition: opacity .2s ease;
  border-radius: 30px;
  margin-top:-280px;
}
.accommodations-sliders .owl-controls div {
  font-size:24px;
}
.accommodations-sliders .owl-controls div i {
  color:#fff;
}
.contact-us {
  background-color: #1D1F21;
}
.header-contact-us h3{
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  font-family: Arial, Times, serif;
  line-height: 1.1em;
  text-transform: uppercase;
}
.contact-us .form-group label {
  color: #fff;
  font-size: 18px;
}
.contact-us .form-group input, .contact-us .form-group textarea {
  border-color: #AE9D8E;
  background-color: unset;
  color:#fff;
}
.bordered-fullgrey-btn {
  font-family: Arial, Helvetica, sans-serif;
  display: inline-block;
  color: #fff;
  border: 2px solid #B28B5E;
  padding: 5px 20px;
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
  background-color: #B28B5E;
}
.bordered-fullgrey-btn:hover {
  color:#fff;
  opacity: 0.9;
  border: 2px solid #B28B5E;
}
.footer-box-logo img{
  float: left;
  margin-right: 20px;
}
.content-footer {
  padding-top: 30px;
}
.content-footer h3{
  color: #153335;
}
.content-footer p{
  font-size: 16px;
  margin-bottom: 5px;
}
.hero-area h2{
  color: #fff;
}
.hero-area h3{
  color: #fff;
  font-weight: 400;
}
.title-npc {
  text-transform: uppercase;
  color: #fff;
  font-size: 38px;
}

.item-no-border {
  border-radius: 5px;
  text-align: center;
  height: 370px;
  position: relative;
  cursor: pointer;
  width: 100%;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center center;
  overflow: hidden;
}
.item-no-border img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}
.color-light-grey {
  color: #F6F0DA !important;
}
.h500 {
  height: 500px;
}
.footer-box-logo p a {
  color: #153335;
}
.footer-box-logo p a:hover {
  color: #B28B5E;
}
.switch-lang {
  object-fit: contain;
  color: #cccccc;
  display: inline-block;
}
.switch-lang a {
  color: #B28B5E !important;
}
.switch-lang a.active {
  color: #ffffff !important;
  font-weight: bold;
}
.pt-booking-box {
  padding-top: 490px
}
#paypal-button-container {
  max-width: 400px;
  margin: 0 auto;
}
.stripe__payment__form__wrapper .primary-btn {
    font-family: Arial, Helvetica, sans-serif;
    display: inline-block;
    color: #fff;
    border: 2px solid #B28B5E;
    padding: 5px 20px;
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
    background-color: #B28B5E;
}
/*New page*/
/* === new Section Title === */
    .new-section-title {
      text-align: center;
      font-size: 1.9rem;
      font-weight: 500;
      margin: 3rem 0 3rem;
      color:#1a2b2b;
    }

    /* === Image Grid === */
    .new-feature-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      grid-gap: 15px;
      margin-bottom: 3rem;
    }

    .new-feature-grid img {
      width: 100%;
      height: 250px;
      object-fit: cover;
      transition: transform 0.3s ease;
    }

    .new-feature-grid img:hover {
      transform: scale(1.02);
    }

    /* === Icon Features === */
    .new-icon-features {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      grid-gap: 20px 40px;
      justify-items: center;
      align-items: start;
      text-align: center;
      padding-bottom: 3rem;
    }

    .new-icon-feature {
      max-width: 240px;
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 10px 15px;
      transition: transform 0.2s ease;
    }

    .new-icon-feature img {
      font-size: 1.8rem;
      margin-bottom: 10px;
      color: #444;
    }

    .new-icon-feature p {
      font-size: 1.1rem;
      line-height: 1.4;
      margin: 0;
    }

    /* === Responsive === */
    @media (max-width: 991.98px) {
      .new-feature-grid img {
        height: 200px;
      }
    }

    @media (max-width: 767.98px) {
      .new-feature-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .new-icon-features {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 575.98px) {
      .new-feature-grid {
        grid-template-columns: 1fr;
      }
      .new-icon-features {
        grid-template-columns: 1fr;
      }
    }
    /* --- Common section style --- */
    .new-full-section {
      display: flex;
      flex-wrap: wrap;
      width: 100%;
      min-height: 650px;
      position: relative;
      overflow: hidden;
    }

    .new-image-side {
      flex: 1;
      background-size: cover;
      background-position: center;
      min-height: 650px;
      padding: 7rem;
    }

    .new-text-side {
      flex: 1;
      display: flex;
      align-items: flex-start;
      justify-content: center;
      padding: 3rem 4rem;
    }

    /* --- The Kyubi Experience --- */
    .new-experience-section {
      background-color: #faf6f3;
      z-index: 2;
    }

    .new-experience-section .new-image-side {
      background-image: url('../img/home-left-img-new.png');
    }
    .new-experience-text {
      padding-top: 80px;
      text-align: center;
    }
    .new-experience-text h5 {
      font-size: 1.2rem;
      font-weight: 500;
      letter-spacing: 1px;
      color: #918673;
    }

    .new-experience-text h3 {
      font-size: 1.8rem;
      margin: 1rem 0;
      font-weight: 500;
      color: #1a2b2b;
    }
    .new-experience-text p {
      font-size: 1.1rem;
    }

    /* --- About Accommodations (staggered up) --- */
    .new-about-section {
      background-color: #faf6f3;
      margin-top: -80px; /* 👈 Dịch section này lên chồng nhẹ ảnh trên */
      z-index: 3;
    }

    .new-about-section .new-image-side {
      background-image: url('../img/home-right-img-new.png');
    }
    .new-about-text {
      padding-top: 80px;
      text-align: center;
    }
    .new-about-text h5 {
      font-size: 1.2rem;
      font-weight: 500;
      letter-spacing: 1px;
      color: #918673;
    }

    .new-about-text h3 {
      font-size: 1.8rem;
      margin: 1rem 0;
      font-weight: 500;
      color: #1a2b2b;
    }
    .new-about-text p {
      font-size: 1.1rem;
    }

    /* --- Optional: subtle shadow effect --- */
    .new-about-section::before {
      content: "";
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 80%;
      height: 10px;
      background: rgba(0, 0, 0, 0.05);
      border-radius: 4px;
      filter: blur(4px);
    }

    /* --- Responsive adjustments --- */
    @media (max-width: 991.98px) {
      .new-full-section {
        flex-direction: column;
        min-height: auto;
      }

      .new-image-side {
        height: 300px;
      }

      .new-text-side {
        padding: 2rem;
      }

      .new-about-section {
        margin-top: 0;
      }
    }
/* === Section === */
    .adventure-section {
      padding: 80px 0;
    }

    .adventure-header {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      margin-bottom: 50px;
    }

    .adventure-title {
      flex: 0 0 35%;
    }

    .adventure-title h2 {
      font-size: 2rem;
      line-height: 1.3;
      color: #1a2b2b;
      font-weight: 500;
      margin-bottom: 10px;
    }

    .adventure-desc {
      flex: 0 0 60%;
      font-size: 1rem;
      line-height: 1.7;
    }
    .adventure-desc p {
      font-size: 1.1rem;
    }

    .adventure-desc strong {
      font-weight: 500;
      color: #1a2b2b;
      font-size: 1.4rem;
    }

    /* === Tabs === */
    .adventure-tabs {
      display: flex;
      border-bottom: 4px solid #fbfaf4;
      margin-bottom: 40px;

    }

    .adventure-tab {
      flex: 1;
      text-align: center;
      padding: 20px 10px;
      cursor: pointer;
      transition: all 0.3s ease;
      font-size: 1.05rem;
      background-color: #fff;
      border-left: 2px solid #fbfaf4;
      color: #1a2b2b;
      font-size: 1.3rem;
    }

    .adventure-tab.active {
      background-color: #fbfaf4;
      font-weight: 500;
      color: #1a2b2b;
      font-size: 1.3rem;
    }

    .adventure-tab small {
      display: block;
      color: #918673;
      font-size: 1rem;
      margin-top: 3px;
    }

    /* === Content === */
    .tab-content {
      margin-top: 30px;
    }

    .tab-pane {
      display: none;
      animation: fadeIn 0.4s ease-in-out;
    }

    .tab-pane.active {
      display: block;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(10px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .highlight {
      border-left: 3px solid #bca57f;
      padding-left: 15px;
      margin-bottom: 30px;
      font-size: 1rem;
      color: #444;
      line-height: 1.6;
    }

    /* === List === */
    .activity-list {
      list-style: none;
      padding: 0;
      margin-bottom: 30px;
    }

    .activity-list li {
      margin-bottom: 18px;
      line-height: 1.5;
    }

    .activity-list li::before {
      content: "●";
      color: #bca57f;
      font-size: 0.8rem;
      margin-right: 8px;
    }

    .activity-list strong {
      color: #503d2a;
      font-weight: 600;
      display: inline-block;
      margin-bottom: 5px;
    }

    .activity-list p {
      margin-left: 20px;
      font-size: 0.95rem;
      color: #333;
    }

    /* === Image grid === */
    .adventure-images {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      grid-gap: 12px;
      margin-top: 20px;
    }

    .adventure-images img {
      width: 100%;
      height: 220px;
      object-fit: cover;
      border-radius: 4px;
      transition: transform 0.3s ease;
    }

    .adventure-images img:hover {
      transform: scale(1.02);
    }

    .footnote {
      border-top: 2px solid #ddd;
      margin-top: 35px;
      padding-top: 15px;
      font-style: italic;
      font-size: 0.95rem;
      color: #555;
    }

    /* Responsive */
    @media (max-width: 767.98px) {
      .adventure-header {
        flex-direction: column;
        padding: 0 15px;
      }
      .adventure-title, .adventure-desc {
        flex: 100%;
      }
      .adventure-tabs {
        flex-direction: column;
      }
      .adventure-images {
        grid-template-columns: 1fr;
      }
    }
 /* === Highlight quote === */
.highlight-quote {
  border-left: 4px solid #918673;
  padding-left: 18px;
  font-size: 1.1rem;
  color: #000;
  line-height: 1.6;
  max-width: 600px;
}

/* === List style === */
.winter-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.winter-list li {
  position: relative;
  margin-bottom: 18px;
  padding-left: 18px;
}

.winter-list li::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 0px;
  color: #918673;
  font-size: 1rem;
}

.winter-list strong {
  color: #918673;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 4px;
  font-size: 1.1rem;
}

.winter-list p {
  margin: 0;
  font-size: 0.95rem;
  color: #000;
  line-height: 1.45;
}

/* === Masonry-like gallery === */
.winter-gallery-masonry img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.winter-gallery-masonry img:hover {
  transform: scale(1.03);
}

/* === Footnote === */
.winter-footnote {
  display: flex;
  align-items: flex-start;
  margin-top: 30px;
  margin-bottom: 20px;
}

.winter-footnote .line {
  display: inline-block;
  width: 40px;
  height: 2px;
  background-color: #918673;
  margin-right: 10px;
  margin-top: 10px;
  flex-shrink: 0;
}

.winter-footnote p {
  margin: 0;
  font-size: 0.95rem;
  color: #000;
}

/* === Responsive === */
@media (max-width: 991.98px) {
  .winter-gallery-masonry img {
    height: 150px;
  }
}

@media (max-width: 767.98px) {
  .winter-gallery-masonry .row > div {
    padding: 0 !important;
    margin: 0;
  }
  .winter-gallery-masonry img {
    margin-bottom: 10px;
    height: auto;
  }
}
.about-section {
  background-color: #faf6f3;
  text-align: center;
  padding: 60px 0;
  font-family: 'Georgia', serif;
}

.about-header {
  margin-bottom: 40px;
}

.about-header .sub-title {
  font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 1px;
    color: #918673;
}

.about-header h2 {
  font-size: 1.8rem;
    margin: 1rem 0;
    font-weight: 500;
    color: #1a2b2b;
}

/* === SLIDER === */
.about-slider {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  background-color: #fffbf9;
  overflow: hidden;
  
  /*min-height: 370px; /* giữ chiều cao cố định */
}
.about-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.about-slide.active {
  opacity: 1;
  visibility: visible;
  position: relative;
}

.about-img img {
  width: 350px;
  height: auto;
  object-fit: cover;
}

.about-text {
  flex: 1;
  text-align: center;
  padding: 0 30px 0 0;
}

.about-text h3 {
 font-size: 1.4rem;
    margin: 1rem 0;
    font-weight: 500;
    color: #1a2b2b;
}

.about-text p {
  color: #000;
  font-size: 1.1rem;
  line-height: 1.7;
}

/* === ARROWS === */
.about-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 25px;
  gap: 40px;
}

.about-controls button {
  background: none;
  border: none;
  font-size: 2.1rem;
  cursor: pointer;
  color: #1a2b2b;
  transition: all 0.2s ease;
}

.about-controls button:hover {
  color: #a88c64;
  transform: scale(1.2);
}

/* === Responsive === */
@media (max-width: 768px) {
  .about-slide {
    flex-direction: column;
    text-align: center;
  }

  .about-img img {
    width: 100%;
    max-width: 400px;
  }

  .about-text {
    text-align: center;
  }
}
/* ========== MAIN SECTION ========== */
/* ===== HERO ===== */
    .own-heaven-section {
      position: relative;
      background: url('../img/house-bg.png') center center / cover no-repeat;
      min-height: 480px;
      display: flex;
      align-items: center;
      overflow: hidden;
    }
    .own-heaven-section::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(to right, rgba(20, 45, 20, 0.95) 0%, rgba(20, 45, 20, 0.85) 35%, rgba(20, 45, 20, 0.0) 75%);
      z-index: 1;
    }
    .own-heaven-section::after{
      /* dark green overlay */
      content: "";
      position: absolute;
      inset: 0;
      /*background: var(--dark-green);*/
      pointer-events: none;
    }

    /* container inside hero aligns text to left */
    .own-heaven-section .container {
      position: relative;
      z-index: 2;
    }

    .hero-row {
      display:flex;
      align-items:flex-start;
      padding: 64px 0;
    }

    .hero-left{
      width: 48%;
      color: #eef6ea; /* light text on dark overlay */
      padding-right: 4rem;
      text-align: center;
    }

    .hero-left h2{
      margin:0 0 18px 0;
      font-size: 34px;
      font-weight: 400;
      color: #f1ead2;
      letter-spacing: .3px;
      font-size: 1.8rem;
    }

    .hero-left p{
      color: #f1ead2;
      line-height: 1.7;
      font-size: 1.1rem;
      margin-bottom: 0.9rem;
    }

    /* Keep a blank right column to show background image */
    .hero-right{
      flex:1;
    }

    /* ===== FEATURE CARDS (3 blocks) ===== */
    .features-wrap{
      /* pull up to overlap hero bottom */
    
      margin-bottom: 40px;
      padding: 0 12px;
    }

    .feature-card{
      
      border-radius:6px;
     
     z-index: 100;
      min-height: 260px;
      display:flex;
      flex-direction:column;
      align-items:center;
      text-align:center;
    }


    .feature-card .thumb{
      
      display:flex;
      align-items:center;
      justify-content:center;
      margin-top: -30px;
      box-shadow: 0 26px 60px rgba(18,18,18,0.12);
      z-index:100;
    }

    .feature-card .thumb img{
      max-width:100%;
      max-height:100%;
      object-fit:contain;
    }

    .feature-card h4{
      margin-top:25px;
      margin-bottom:10px;
      font-size:1.6rem;
      font-weight:500;
      color:#1a2b2b;
    }

    .feature-card p{
      margin:0;
      color:#000;
      font-size:1.1rem;
      line-height:1.5;
    }

    /* center the three cards and limit width so they match original spacing */
    .features-row{
      max-width:1100px;
      margin: 0 auto;
    }

    /* ===== QUOTE + LOGO ===== */
    .quote-section{
      padding: 50px 0 110px;
    }

    .quote-left{
      padding-right: 30px;
      background: url('../img/quote-right.png') right bottom no-repeat;
    }

    .quote-mark{
      background: url('../img/quote-left.png') 0 0 no-repeat;
     width: 65px;
     height: 65px;
    }
    .quote-mark.bottom{
      background: url('../img/quote-right.png') right 0 no-repeat;
     width: 65px;
     height: 65px;
     display: block;
    }

    .quote-text{
      color:#000;
      font-size:15px;
      line-height:1.8;
      font-size: 1.1rem;
      text-align: center;
      padding: 10px 40px 10px 30px;
    }

    .quote-logo{
      display:flex;
      align-items:center;
      justify-content:center;
    }

    .quote-logo img{
      width:160px;
      height:auto;
      border-radius:100%;
    }

    /* small screens */
    @media (max-width: 991.98px){
      .hero-left{ width: 100%; padding-right: 0; }
      .hero-row{ padding:40px 0; }
      .features-wrap{ margin-top: -60px; padding: 0 18px; }
      .feature-card{ min-height: 220px; padding:20px; }
      /*.feature-card .thumb{ width:140px; height:100px; margin-top:-55px; }*/
      .features-row{ max-width: 720px; }
      .quote-section{ padding:40px 0 70px; }
      .quote-left{ padding-right:0; margin-bottom:20px; text-align:center; }
      .quote-text{ text-align:center; }
      .quote-logo img{ width:120px; }
    }

    @media (max-width: 575.98px){
      /*.feature-card .thumb{ width:120px; height:90px; margin-top:-50px; }*/
      .feature-card h4{ font-size:18px; }
    }
    .site-footer {
      background: #0f2625;
      color: #c9d2ce;
      padding: 48px 0;
    }

    .footer-inner {
      max-width: 1200px;
      margin: 0 auto;
    }

    /* LEFT block */
    .footer-brand {
      display:flex;
      align-items:flex-start;
      gap: 18px;
    }

    .footer-logo {
    
     
      display:inline-flex;
      align-items:center;
      justify-content:center;
     
      overflow:hidden;
      flex-shrink:0;
    }

    .footer-logo img{
      max-width:100%;
      max-height:100%;
      display:block;
      height: 150px;
    }

    .footer-info h5 {
      margin:0 0 15px 0;
      color: #f1ead2;
      font-size: 2rem;
      letter-spacing: 0.6px;
      font-weight: 400;
    }

    .footer-info p, .footer-info a {
      margin:0;
      color: #fff;
      font-size: 1.1rem;
      line-height:1.5;
      text-decoration:none;
    }

    .footer-info a:hover{ color:#fff; text-decoration:underline; }

    /* social icons row */
    .footer-social {
      margin-top:30px;
      display:flex;
      gap:10px;
      align-items:center;
    }

    .footer-social a {
      width:34px;
      height:34px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      border-radius:50%;
      background: #e8e0c9;
      color: #0f2625;
      text-decoration:none;
      font-size:14px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    }

    /* right block - map */
    .footer-map {
      background: transparent;
      border-radius:6px;
      overflow:hidden;
      box-shadow: 0 6px 18px rgba(0,0,0,0.3);
    }

    /* layout on larger screens: left (brand) and right (map) */
    .footer-row {
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap: 30px;
    }

    .footer-left {
      flex: 0 0 55%;
    }

    .footer-right {
      flex: 0 0 40%;
      display:flex;
      justify-content:flex-end;
    }

    /* small screens -> stacked and centered */
    @media (max-width: 767.98px){
      .footer-row{ flex-direction:column; align-items:center; text-align:center; }
      .footer-left, .footer-right { flex: 1 1 100%; width:100%; }
      .footer-info { text-align:center; }
      .footer-right { justify-content:center; margin-top:18px; }
      /*.footer-logo { width:64px;height:64px; }*/
    }

    /* map iframe responsiveness */
    .footer-map iframe {
      width:100%;
      height:220px;
      border:0;
      display:block;
    }
    /* Icon mạng xã hội */
.footer-social a {
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background-color: #a08c62;
  color: #fff;
  transform: translateY(-3px);
  text-decoration: none;
  box-shadow: 0 6px 14px rgba(160, 140, 98, 0.4);
}

/* Bổ sung nhẹ phần map để đồng bộ */
.footer-map iframe {
  border: 2px solid rgba(160, 140, 98, 0.15);
  border-radius: 6px;
  transition: border-color 0.3s ease;
}

.footer-map:hover iframe {
  border-color: rgba(160, 140, 98, 0.5);
}
.hero-content {
    position: relative;
    z-index: 2;
    margin-top: 350px;
    max-width: 800px;
  }
.hero-subcontent {
  max-width: 500px;
  margin: 0 auto;
}
  /* ===== HEADLINE ===== */
  .hero-title {
    font-size: 1.9rem;
    font-weight: 400;
    color: #F1EAD2;
    line-height: 1.4;
  }

  .hero-sub {
    color: #F1EAD2;
    font-size: 1.1rem;
    margin-top: 14px;
    line-height: 1.6;
  }

  /* ===== BOOKING FORM ===== */
  .booking-box {
    position: relative;
    z-index: 2;
    margin-top: 40px;
  }

  .booking-form {
    background-color: rgba(0, 0, 0, 0.4);
    padding: 20px 30px;
    border-radius: 4px;
    display: inline-block;
  }

  .booking-form .form-inline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
  }

  .booking-input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    border-radius: 3px;
    padding: 8px 10px;
    width: 160px;
    font-size: 0.9rem;
  }

  .booking-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
  }

  .btn-check {
    background-color: var(--accent);
    color: #000;
    border: none;
    padding: 9px 22px;
    border-radius: 3px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
  }

  .btn-check:hover {
    background-color: #fff;
    color: #000;
  }

  /* Small label below */
  .booking-labels {
    margin-top: 8px;
    color: rgba(255,255,255,0.8);
    font-size: 0.75rem;
    display: flex;
    justify-content: center;
    gap: 100px;
  }

  @media (max-width: 767.98px) {
    .hero-nav ul { flex-wrap: wrap; gap: 20px; }
    .hero-content { margin-top: 210px; padding: 0 15px; }
    .booking-form .form-inline { flex-direction: column; gap: 12px; }
    .booking-input { width: 100%; }
    .booking-labels { flex-direction: column; gap: 4px; text-align: center; }
  }
  .hero-home{
    display: flex
;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    overflow: hidden;
  }
/* ===== BOOKING FORM ===== */
.booking-form-wrapper {
margin-top: 40px;
position: relative;
z-index: 2;
}

.booking-title {
  font-family: 'Open Sans', sans-serif;
  color: #F1EAD2;
  font-size: 1.15rem;
  margin-bottom: 18px;
  letter-spacing: 0.3px;
  font-weight: 400;
}

.booking-bar {

border-radius: 4px;
padding: 12px 20px;
flex-wrap: nowrap;
}

.booking-field {
position: relative;
display: flex;
flex-direction: column;
align-items: flex-start;
margin: 0 6px;
}

.booking-field .icon {
position: absolute;
top: 10px;
left: 12px;
width: 18px;
opacity: 0.8;
}

.booking-input {
background-color: rgba(0, 0, 0, 0.4);
border:0 none;
border-radius: 2px;
color: #fff;
padding: 8px 10px 8px 36px; /* space for icon */
width: 180px;
height: 38px;
font-size: 1rem;
outline: none;
transition: border-color 0.3s ease;
}

.booking-input:focus {
border-color: #f5f0de;
background-color: rgba(255,255,255,0.15);
}

.booking-field small {
color: #F1EAD2;
font-size: 0.9rem;
margin-top: 4px;
margin-left: 20px;
}

/* Button */
.btn-book {
background-color: #f5f0de;
border: none;
color: #1a1a1a;
font-weight: 500;
font-family: 'Open Sans', sans-serif;
padding: 8px 30px;
margin-left: 10px;
height: 38px;
border-radius: 2px;
letter-spacing: 0.5px;
transition: all 0.3s ease;
margin-bottom: 26px;
}

.btn-book:hover {
background-color: #fff;
transform: translateY(-2px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991.98px) {
.booking-bar {
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  padding: 15px;
}
.booking-field {
  align-items: center;
  text-align: left;
  width: 100%;
}
.booking-input {
  width: 100%;
}
.btn-book {
  width: 100%;
  margin-left: 0;
}
}
/* ===== CONTACT SECTION ===== */
    .contact-section {
      padding: 80px 0;
    }

    .contact-title {
      font-size: 1.9rem;
      margin-bottom: 20px;
      color: #1A2b2b;
      font-weight: 500;
    }

    .contact-desc {
      font-size: 1.1rem;
      line-height: 1.6;
      max-width: 320px;
    }

    .contact-form-box {
      background-color: #fbfaf4;
      padding: 40px 50px;
      border-radius: 2px;
    }

    .form-group label {
      font-size: 1.1rem;
      
      color: #000;
    }

    .form-group label span {
      color: #c00;
    }

    .form-control {
      border-radius: 0;
      border: 1px solid #ccc;
      box-shadow: none;
      font-size: 0.9rem;
      color: #333;
    }

    .form-control:focus {
      border-color: #a08c62;
      box-shadow: 0 0 0 0.1rem rgba(160,140,98,0.25);
    }

    textarea.form-control {
      height: 120px;
      resize: vertical;
    }

    .btn-submit {
      background-color: #faead2;
      border: none;
      padding: 10px 40px;
      font-weight: 500;
      color: #1a2b2b;
      letter-spacing: 0.5px;
      transition: all 0.3s ease;
      border-radius: 0;
      margin-top: 5px;
    }

    .btn-submit:hover {
      background-color: #dcd3b8;
      transform: translateY(-2px);
    }

    /* Responsive tweaks */
    @media (max-width: 767.98px) {
      .contact-section { padding: 60px 0; }
      .contact-form-box { padding: 30px 25px; }
      .contact-desc { max-width: 100%; margin-bottom: 25px; }
    }
    /* ===== THE CIRCLE SECTION ===== */
    .circle-section {
      padding: 0;
    }

    .circle-row {
      display: flex;
      flex-wrap: wrap;
      align-items: stretch;
    }

    .circle-col {
      flex: 0 0 50%;
      max-width: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .circle-col img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .circle-content {
      padding: 60px 80px;
      text-align: center;
    }

    .circle-content h3 {
        font-size: 1.8rem;
        margin: 1rem 0;
        font-weight: 500;
        color: #1a2b2b;
    }

    .circle-content p {
      font-size: 1.1rem;
      color: #000;
      line-height: 1.7;
      max-width: 420px;
      margin: 0 auto;
    }

    /* second row */
    .circle-content.alt {
      text-align: center;
      padding: 80px 100px;
    }

    .circle-content.alt h3 {
     font-size: 1.8rem;
        margin: 1rem 0;
        font-weight: 500;
        color: #1a2b2b;
    }

    .circle-content.alt p {
      max-width: 460px;
      color: #000;
      font-size: 1.1rem;
    }

    .circle-content.alt p strong {
      font-weight: 600;
    }

    /* Responsive adjustments */
    @media (max-width: 991.98px) {
      .circle-col { flex: 0 0 100%; max-width: 100%; }
      .circle-content, .circle-content.alt {
        padding: 50px 30px;
        text-align: center;
      }
    }
/* ===== TOP HERO ===== */
    .residences-hero {
      position: relative;
      background: url("../img/resi-bg.png") center center / cover no-repeat;
      min-height: 500px;
      
      color: #111;
    }
    .residences-hero .container{
      display: flex;
      flex-direction: row-reverse;
      justify-content: flex-start;
      align-items: center;
      text-align: center;
    }

    .residences-hero::after {
      
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(to left, rgba(245, 248, 245, 0.95) 0%, rgba(238, 241, 238, 0.85) 35%, rgba(244, 246, 244, 0) 75%);
      z-index: 1;
      
    }

    .residences-hero-content {
      position: relative;
      z-index: 2;
      max-width: 700px;
      padding: 60px 0px;
    }

    .residences-hero-content h2 {
      font-size: 1.8rem;
      margin-bottom: 15px;
      color: #1a2b2b;
      font-weight: 500;
    }

    .residences-hero-content p {
      font-size: 1rem;
      color: #000;
      max-width: 400px;
      margin: 0 auto;
      margin-bottom: 25px;
    }

    .residences-types {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 10px;
    }

    .residences-types div {
      max-width: 200px;
    }

    .residences-types h5 {
      font-weight: 600;
      margin-bottom: 8px;
      font-size: 1rem;
      color:#000;
    }

    .residences-types p {
      font-size: 1rem;
      color: #000;
      margin-bottom: 0;
    }

    /* ===== HOUSE THUMBNAILS ===== */
    .residences-thumbs {
      margin-top: -100px;
      position: relative;
      z-index: 5;
    }

    .residences-thumbs .thumb-box {
      background: #fff;
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
      border-radius: 4px;
      padding: 15px;
      transition: transform 0.3s ease;
    }

    .residences-thumbs .thumb-box:hover {
      transform: translateY(-5px);
    }

    .residences-thumbs img {
      width: 100%;
      border-radius: 3px;
    }

    /* ===== EXPERIENCE SECTION ===== */
    .experience-section {
      position: relative;
      padding: 60px 0;
      overflow: hidden;
      background-color: #fff;
    }

    /* Watermark background text */
    /* Watermark background text: use ::before + ::after for 2 lines */
    .experience-section::before,
    .experience-section::after {
      position: absolute;
      right: 5%;
      text-align: right;
      font-weight: 400;
      color: rgba(200, 195, 180, 0.25);
      letter-spacing: -1px;
      pointer-events: none;
      user-select: none;
      z-index: 0;
      line-height: 0.9;
    }

    .experience-section::before {
      content: "Residence";
      bottom: 160px;         /* dòng trên */
      font-size: 9rem;
    }
    .experience-section::after {
    content: "Experience";
    bottom: 50px;          /* dòng dưới */
    font-size: 9rem;
  }

    .experience-content {
      position: relative;
      z-index: 2;
    }

    .experience-content h3 {
      font-size: 1.8rem;
      margin-bottom: 20px;
      color: #1a2b2b;
      font-weight: 500;
    }

    .experience-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .experience-list li {
      font-size: 1rem;
      color: #000;
      margin-bottom: 10px;
      position: relative;
      padding-left: 18px;
    }

    .experience-list li::before {
      content: "●";
      position: absolute;
      left: 0;
      top: 0px;
      color: #918673;
      font-size: 1rem;
    }

    .experience-images img {
      width: 100%;
      margin-bottom: 10px;
      
    }

    @media (max-width: 991.98px) {
      .residences-types { gap: 30px; }
      .residences-hero-content h2 { font-size: 1.5rem; }
      .experience-section::before {
        font-size: 5rem;
        bottom: 100px;
      }
      .experience-section::after {
        font-size: 5rem;
        bottom: 30px;
      }
    }

    @media (max-width: 767.98px) {
      .residences-thumbs { margin-top: -50px; }
      .experience-section { padding: 80px 0; }
      .experience-section::before,
      .experience-section::after {
        font-size: 3rem;
        opacity: 0.15;
        right: 3%;
      }
      .experience-section::before {
        bottom: 70px;
      }
      .experience-section::after {
        bottom: 20px;
      }
      .experience-images { margin-top: 20px; }
    }
/* ===== POWDER CLUB EXPERIENCE ===== */
    .powder-section {
      position: relative;
      padding: 100px 0;
      overflow: hidden;
      background-color: #fff;
    }

    /* Watermark */
    .powder-section::before,
    .powder-section::after {
      position: absolute;
      left: 5%;
      text-align: left;
      font-weight: 400;
      color: rgba(200, 195, 180, 0.25);
      letter-spacing: -1px;
      pointer-events: none;
      user-select: none;
      z-index: 0;
      line-height: 0.9;
    }

    .powder-section::before {
      content: "Powder Club";
      bottom: 160px;
      font-size: 9rem;
    }

    .powder-section::after {
      content: "Experience";
      bottom: 50px;
      font-size: 9rem;
    }

    .powder-content {
      position: relative;
      z-index: 2;
    }

    .powder-images img {
      width: 100%;
      
      margin-bottom: 10px;
      
    }

    .powder-text h3 {
      font-size: 1.8rem;
      margin-bottom: 20px;
      color: #1a2b2b;
      font-weight: 500;
    }

    .powder-text p {
      
    }

    .powder-text ul {
      list-style: none;
      padding: 0;
    }

    .powder-text ul li {
      position: relative;
      padding-left: 15px;
      margin-bottom: 8px;
      font-size: 1rem;
    }

    .powder-text ul li::before {
      content: "●";
      position: absolute;
      left: 0;
      top: 0px;
      color: #918673;
      font-size: 1rem;
    }

    /* ===== TWO WAYS TO BELONG ===== */
    .belong-section {
      background-color: #f9f8f1;
      padding: 60px 0;
    }

    .belong-section h3 {
      font-size: 1.8rem;
      margin-bottom: 20px;
      color: #1a2b2b;
      font-weight: 500;
      text-align: center;
    }

    .belong-card {
      background: none;
      padding: 20px 30px;
      text-align: left;
    }

    .belong-header {
      display: flex;
      align-items: flex-start;
      margin-bottom: 15px;
    }

    .belong-number {
      flex: 0 0 40px;
      height: 40px;
      border: 1px solid #000;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 500;
      margin-right: 15px;
      color: #a4904e;
    }

    .belong-title {
      font-weight: 600;
      font-size: 1.2rem;
      margin-bottom: 3px;
    }

    .belong-sub {
      font-size: 1.1rem;
      color: #a3904e;
      margin-bottom: 10px;
      font-style: italic;
    }

    .belong-list {
      list-style: none;
      padding-left: 0;
      margin-bottom: 10px;
    }

    .belong-list li {
      position: relative;
      margin-bottom: 8px;
      font-size: 0.95rem;
      padding-left: 5px;
      color: #000;
    }

    .belong-list li img {
      margin-right: 15px;
      width: 25px;
    }

    .belong-footer {
      font-size: 0.95rem;
      color: #000;
      margin-top: 8px;
    }
    .belong-footer strong{
      color: #a3904e;
    }
    /* Responsive */
    @media (max-width: 991.98px) {
      .powder-section::before {
        font-size: 5rem;
        bottom: 100px;
      }
      .powder-section::after {
        font-size: 5rem;
        bottom: 30px;
      }
    }

    @media (max-width: 767.98px) {
      .powder-section::before,
      .powder-section::after {
        font-size: 3rem;
        opacity: 0.15;
        left: 3%;
      }
      .belong-section {
        padding: 60px 0;
      }
    }
/* ===== SECTION 1: Lifestyle ===== */
    .lifestyle-section {
      position: relative;
      background: url('../img/lifestyle-bg.png') center center/cover no-repeat;
      min-height: 500px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
    }

    .lifestyle-section::after {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,0.45);
    }

    .lifestyle-content {
      position: relative;
      z-index: 2;
      max-width: 1100px;
      width: 100%;
      padding: 80px 15px;
    }
    .lifestyle-left {
      text-align: center;
    }
    .lifestyle-left h2 {
      font-size: 1.9rem;
      font-weight: 400;
      color: #F1EAD2;
      line-height: 1.4;
    }

    .lifestyle-left p {
      font-size: 1.1rem;
      color: #F1EAD2;
      margin-bottom: 0;
    }

    .lifestyle-right {
      font-size: 0.95rem;
      line-height: 1.5;
      text-align: center;
    }
    .lifestyle-right p {
      color: #F1EAD2;
      line-height: 1.1;
    }
    .lifestyle-right strong {
      color: #F1EAD2;
      font-weight: 600;
    }

    @media (max-width: 767.98px) {
      .lifestyle-section {
        min-height: 600px;
      }
      .lifestyle-left, .lifestyle-right {
        text-align: center;
        margin-bottom: 30px;
      }
    }

    /* ===== SECTION 2: Inquiry ===== */
    .inquiry-section {
      position: relative;
      background: url('../img/opp-bg.png') center center/cover no-repeat;
      padding: 100px 15px;
      text-align: center;
      color: #fff;
    }

    .inquiry-section::after {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,0.3);
    }

    .inquiry-content {
      position: relative;
      z-index: 2;
      max-width: 600px;
      margin: 0 auto;
    }

    .inquiry-section h2 {
      font-size: 1.9rem;
      font-weight: 400;
      color: #F1EAD2;
      line-height: 1.4;
    }

    .inquiry-section p {
      font-size: 1.1rem;
      margin-bottom: 40px;
      color: #f1ead2;
      
    }

    .inquiry-form {
      display: flex;
      justify-content: center;
      align-items: stretch;
      background-color: rgba(255,255,255,0.9);
      border-radius: 2px;
      overflow: hidden;
      max-width: 400px;
      margin: 0 auto;
    }

    .inquiry-form .input-group-text {
      background: #fff;
      opacity: 0.5;
      border: none;
      color: #444;
      padding: 0 12px;
      font-size: 1rem;
    }

    .inquiry-form input {
      border: none;
      outline: none;
      padding: 12px;
      font-size: 0.95rem;
      color: #1a2b2b;
      flex: 1;
      background: #fff;
      opacity: 0.5;
    }

    .inquiry-form button {
      background-color: #f1ead2;
      border: none;
      padding: 0 28px;
      font-weight: 500;
      color: #1a2b2b;
      letter-spacing: 0.5px;
      transition: all 0.3s ease;
      font-family: 'Open Sans', sans-serif;
    }

    .inquiry-form button:hover {
      background-color: #dcd3b8;
    }

    @media (max-width: 575.98px) {
      .inquiry-section { padding: 80px 15px; }
      .inquiry-form { flex-direction: column; }
      .inquiry-form input { text-align: center; }
      .inquiry-form button { width: 100%; padding: 12px 0; }
    }
/* ===== WHISKY LIBRARY SECTION ===== */
.whisky-section {
  position: relative;
  padding: 80px 0 50px;
  overflow: hidden;
  background: #fff;
  text-align: center;
}

/* Watermark */
.whisky-section::before {
  content: "Whisky Library";
  position: absolute;
  top: -48px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11rem;
  color: rgba(200,195,180,0.18);
  font-weight: 400;
  letter-spacing: -1px;
  white-space: nowrap;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}
.whisky-section .gallery-right-bottom img{
  height: 134px;
}
.whisky-section .gallery-left img{
  height: 374px;
}
/* Title */
.whisky-title {
  position: relative;
  z-index: 2;
  margin-bottom: 40px;
}
.whisky-title h2 {
  font-size: 1.8rem;
  color: #111;
}

/* === Gallery layout === */
.whisky-gallery {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
}

/* Left big image */
.gallery-left {
  flex: 0 0 48%;
  max-width: 48%;
}
.gallery-left img {
  width: 100%;
  height: 401px;
  object-fit: cover;
}

/* Right column */
.gallery-right {
  flex: 0 0 48%;
  max-width: 48%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Top single wide image */
.gallery-right-top img {
  width: 100%;
  height: 220px;
  object-fit: cover;
 
}

/* Bottom two equal images side by side */
.gallery-right-bottom {
  display: flex;
  gap: 20px;
}
.gallery-right-bottom img {
  width: 100%;
  height: 161px;
  object-fit: cover;
  
}

/* Captions */
.caption-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.cap {
  flex: 0 0 48%;
  max-width: 48%;
  font-size: 1.1rem;
  color: #000;
  text-align: center;
  line-height: 1.4;
  margin-top: 10px !important;
}

/* Responsive */
@media (max-width: 991.98px) {
  .whisky-section::before { font-size: 7rem; top: 40px; }
  .gallery-left img { height: 360px; }
  .gallery-right-top img { height: 180px; }
  .gallery-right-bottom img { height: 160px; }
}
@media (max-width: 767.98px) {
  .whisky-gallery { flex-direction: column; }
  .gallery-left, .gallery-right { flex: 0 0 100%; max-width: 100%; }
  .gallery-left img, .gallery-right-top img, .gallery-right-bottom img { height: auto; }
  .caption-row { flex-direction: column; align-items: center; }
  .caption-row .cap { max-width: 100%; margin-bottom: 10px; }
  .whisky-section::before { font-size: 4.5rem; opacity: 0.15; }
}
/* ==== Section Container ==== */
.culinary-section {
  position: relative;
  padding: 80px 0 70px;
  overflow: hidden;
}

/* Watermark chữ lớn */
.culinary-section::before {
  content: "Culinary Alchemy";
  position: absolute;
  top: 1px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10rem;
  color: rgba(200,195,180,0.18);
  white-space: nowrap;
  letter-spacing: -1px;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}
.culinary-section .gallery-right-bottom img{
  height: 134px;
}
.culinary-section .gallery-left img{
  height: 374px;
}
/* Title row */
.culinary-header {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto 40px;
  padding: 0 20px;
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  flex-wrap: wrap;
}

.culinary-header-left h5 {
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 6px;
  color: #333;
}

.culinary-header-left h2 {
  font-size: 2rem;
  margin: 0;
  color: #111;
}

.culinary-header-right {
  max-width: 420px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #222;
}

/* ==== Image Gallery ==== */
.culinary-gallery {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hàng trên */
.culinary-gallery-top {
  display: grid;
  grid-template-columns: 2fr 2fr 2fr;
  gap: 20px;
  margin-bottom: 20px;
}

.culinary-gallery-top img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.08);
}

/* Hàng dưới */
.culinary-gallery-bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.culinary-gallery-bottom img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.08);
}

/* Caption dưới */
.culinary-captions {
  margin-top: 25px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.culinary-captions p {
  flex: 0 0 48%;
  max-width: 48%;
  font-size: 0.95rem;
  color: #333;
  line-height: 1.5;
}

/* ==== Responsive ==== */
@media (max-width: 991.98px) {
  .culinary-section::before { font-size: 7rem; top: 50px; }
  .culinary-gallery-top img { height: 220px; }
  .culinary-gallery-bottom img { height: 180px; }
}
@media (max-width: 767.98px) {
  .culinary-header { flex-direction: column; align-items: flex-start; }
  .culinary-header-right { max-width: 100%; margin-top: 20px; }
  .culinary-gallery-top, .culinary-gallery-bottom {
    grid-template-columns: 1fr;
  }
  .culinary-captions { flex-direction: column; }
  .culinary-captions p { max-width: 100%; margin-bottom: 15px; }
  .culinary-section::before { font-size: 4rem; opacity: 0.15; }
}
.grand-living-section {
  position: relative;
  padding: 80px 0 50px;
  overflow: hidden;
  background: #fff;
  text-align: center;
}

/* Watermark */
.grand-living-section::before {
  content: "Grand Living";
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11rem;
  color: rgba(200,195,180,0.18);
  font-weight: 400;
  letter-spacing: -1px;
  white-space: nowrap;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}
.grand-living-section .gallery-left img{
  height: 374px;
}
.grand-living-section .gallery-right-bottom img{
  height: 134px;
}
@media (max-width: 991.98px) {
  .grand-living-section::before { font-size: 7rem; top: 50px; }
}
@media (max-width: 767.98px) {
 
  .grand-living-section::before { font-size: 4rem; opacity: 0.15; }
}
.sanctuary-section {
  position: relative;
  padding: 80px 0 50px;
  overflow: hidden;
  background: #fff;
  text-align: center;
}

/* Watermark */
.sanctuary-section::before {
  content: "Sacred Sanctuary";
  position: absolute;
  top: -48px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11rem;
  color: rgba(200,195,180,0.18);
  font-weight: 400;
  letter-spacing: -1px;
  white-space: nowrap;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}
@media (max-width: 991.98px) {
  .sanctuary-section::before { font-size: 7rem; top: 50px; }
}
@media (max-width: 767.98px) {
 
  .sanctuary-section::before { font-size: 4rem; opacity: 0.15; }
}

.dreamcatcher-section {
  position: relative;
  padding: 80px 0 50px;
  overflow: hidden;
  background: #fff;
  text-align: center;
}

/* Watermark */
.dreamcatcher-section::before {
  content: "Dreamcatcher Nook";
  position: absolute;
  top: -48px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11rem;
  color: rgba(200,195,180,0.18);
  font-weight: 400;
  letter-spacing: -1px;
  white-space: nowrap;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}
.dreamcatcher-section .accent-line{
  max-width: 600px;
}
@media (max-width: 991.98px) {
  .dreamcatcher-section::before { font-size: 7rem; top: 50px; }
}
@media (max-width: 767.98px) {
 
  .dreamcatcher-section::before { font-size: 4rem; opacity: 0.15; }
}
.game-room-section {
  position: relative;
  padding: 80px 0 50px;
  overflow: hidden;
  background: #fff;
  text-align: center;
}

/* Watermark */
.game-room-section::before {
  content: "Movie & Game";
  position: absolute;
  top: 1px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11rem;
  color: rgba(200,195,180,0.18);
  font-weight: 400;
  letter-spacing: -1px;
  white-space: nowrap;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}
@media (max-width: 991.98px) {
  .game-room-section::before { font-size: 7rem; top: 50px; }
}
@media (max-width: 767.98px) {
  .game-room-section::before { font-size: 4rem; opacity: 0.15; }
}
.deckside-section {
  position: relative;
  padding: 80px 0 50px;
  overflow: hidden;
  background: #fff;
  text-align: center;
}

/* Watermark */
.deckside-section::before {
  content: "Deckside Reverie";
  position: absolute;
  top: -48px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11rem;
  color: rgba(200,195,180,0.18);
  font-weight: 400;
  letter-spacing: -1px;
  white-space: nowrap;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}
.deckside-section .gallery-left img{
  height: 312px;
}
@media (max-width: 991.98px) {
  .deckside-section::before { font-size: 7rem; top: 50px; }
}
@media (max-width: 767.98px) {
  .deckside-section::before { font-size: 4rem; opacity: 0.15; }
}
.deckside-section .gallery-right-bottom img{
  height: 146px;
}
.bathrooms-section {
  position: relative;
  padding: 80px 0 50px;
  overflow: hidden;
  background: #fff;
  text-align: center;
}

/* Watermark */
.bathrooms-section::before {
  content: "Bathrooms";
  position: absolute;
  top: -48px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11rem;
  color: rgba(200,195,180,0.18);
  font-weight: 400;
  letter-spacing: -1px;
  white-space: nowrap;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}
@media (max-width: 991.98px) {
  .bathrooms-section::before { font-size: 7rem; top: 50px; }
}
@media (max-width: 767.98px) {
  .bathrooms-section::before { font-size: 4rem; opacity: 0.15; }
}

.amenities-section {
  position: relative;
  padding: 80px 0 50px;
  overflow: hidden;
  background: #fff;
  text-align: center;
}

/* Watermark */
.amenities-section::before {
  content: "Amenities";
  position: absolute;
  top: -48px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11rem;
  color: rgba(200,195,180,0.18);
  font-weight: 400;
  letter-spacing: -1px;
  white-space: nowrap;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}
@media (max-width: 991.98px) {
  .amenities-section::before { font-size: 7rem; top: 50px; }
}
@media (max-width: 767.98px) {
  .amenities-section::before { font-size: 4rem; opacity: 0.15; }
}
.amenities-section .gallery-right-bottom img{
  height: 245px;
}
.amenities-section .gallery-left img {
  height: 485px;
}
.amenities-section .cap{
  max-width: 100%;
}
.txt-left{
  text-align: left;
}
.sub-accom {
  font-size: 1.15rem;
  font-weight: 400;
  color:#918673;
  margin-bottom: 0px;
}
.txt-main-accom {
  font-size: 2rem;
  color:#1a2b2b;
  font-weight: 500;
  margin-bottom: 20px !important;
}
.accent-line {
  position: relative;
  font-size: 1.1rem;
  line-height: 1.5;
  color: #000;
  padding-left: 55px;         
  margin: 0;
  max-width: 350px;
}
.accent-line::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 40px;
  height: 3px;
  background-color: #918673;
}
.game-room-section .txt-main-accom {
  max-width: 480px;
}
.dreamcatcher-section .cap,.game-room-section .cap{
  max-width: 100%;
}
.page-template-News-Insights-Page h3.font-normal {
  color: #1a2b2b;
  
}
@media (max-width: 767.98px){
      .grand-living-section{
        padding-top: 50px;
      }
      .grand-living-section .gallery-left img {
        height: auto;
      }
      .grand-living-section .gallery-right-bottom img {
        height: 120px;
      }
      .culinary-section .gallery-right-bottom img {
        height: 120px;
      }
      .whisky-section .gallery-left img {
        height: auto;
      }
      .whisky-section .gallery-right-bottom img {
        height: 120px;
      }
      .deckside-section .gallery-left img{
        height: auto;
      }
      .deckside-section .gallery-right-bottom img {
        height: 132px;
      }
      .inquiry-section .inquiry-form .input-group-text {
        display: none;
      }
      .hero-adventure-trip {
        background-image: url('../img/main-resi-bg.png') !important;
        background-size: cover;
        background-position: center;
      }
}
@media only screen and (min-width: 768px) and (max-width: 992px) { 
    .grand-living-section .gallery-left img {
      height: 298px;
    }
    .grand-living-section .gallery-right-bottom img {
      height: 98px;
    }
    .culinary-section .gallery-right-top img{
      height: 256px;
    }
    .culinary-section .gallery-right-bottom img{
      height: 99px;
    }
    .whisky-section .gallery-right-bottom img {
      height: 98px;
    }
    .whisky-section .gallery-right-top img{
      height: 256px;
    }
    .sanctuary-section .gallery-right-bottom img{
      height: 121px;
    }
    .sanctuary-section .gallery-left img{
      height: 321px;
    }
    .dreamcatcher-section .accent-line {
      margin-bottom: 20px;
    }
    .deckside-section .gallery-right-bottom img {
      height: 108px;
    }
    .deckside-section .gallery-left img{
      height: 236px;
    }
    .amenities-section .gallery-left img {
      height: 445px;
    }
    .residences-hero::after {
      background:linear-gradient(to left, rgba(245, 248, 245, 0.55) 0%, rgba(238, 241, 238, 0.55) 87%, rgba(244, 246, 244, 0.55) 101%);
    }
}
.single-post h1,.single-post h2, .single-post h3,.single-post h4,.single-post h5 {
  color: #231F20;
}
.latest-news-section h1,.latest-news-section h2,.latest-news-section h3,.latest-news-section h4,.latest-news-section h5{
  color: #000;
}