@charset "UTF-8";

@import url("https://fonts.googleapis.com/css?family=Playfair+Display|Kumbh Sans:300,400,600,800&amp;display=swap&amp;subset=latin-ext");
@import url("https://fonts.googleapis.com/css2?family=Gotu&family=Kumbh+Sans:wght@100..900&display=swap");
/* BODY */
* {
  outline: none !important;
}
:root{
  --fp-accent: #8a6a3f;
  --fp-text: #2b2b2b;
  --fp-muted: #777;
  --fp-border: #e9e9e9;
  --fp-bg: #fff;
  --fp-radius: 4px;
  --fp-gap: 28px;
  --fp-font: "'Playfair Display'", Georgia, serif;
  
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 0; /* adjust if needed */
}

/* Add slow scroll effect via pseudo-animation */
.scroll-sec a:focus {
  outline: none;
  animation: slow-scroll 5.5s forwards;
}

@keyframes slow-scroll {
  from { scroll-behavior: auto; }
  to { scroll-behavior: smooth; }
}
body {
  margin: 0;
  padding: 0;
  font-family: "Kumbh Sans", sans-serif;
  color: #26282b;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
}

/* HTML ELEMENT */
img {
  max-width: 100%;
}

/* CUSTOM CLASSES */
.overflow {
  overflow: hidden;
}

/* LINKS */
a {
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -ms-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
  color: #26282b;
}

a:hover {
  text-decoration: underline;
}

/* CUSTOM CONTAINER */
/*.container {
  max-width: 1280px;
}*/
.nav-icon{
  display: flex;
      position: relative;
    z-index: 1;
        align-items: center;
}
.nav-icon .nav-txt {
    color: #000 ;
    /*font-size: 1.375rem;*/
    font-weight: 600;
    margin: 0 24px;
    text-transform: uppercase;
}
.navbar-absolute .nav-icon .nav-txt {
    color: #fff ;
    /*font-size: 1.375rem;*/
    font-weight: 600;
    margin: 0 24px;
    text-transform: uppercase;
}
.nav-icon .nav-modal {
    display: none;
}
.nav-icon .new-nav:hover .nav-modal {
    background: rgba(0, 0, 0, .35);
    border-radius: 5px;
    color: #fff;
    display: block;
    display: flex;
    flex-direction: column;
    font-size: 18px;
    /*height: 130px;*/
    justify-content: space-evenly;
    margin-left: 20px;
    padding: 5px 23px;
    position: absolute;
    text-shadow: 0 0 6px #000;
    text-transform: uppercase;
    width: 173px;
    /*margin-top: 10px;*/
}
.nav-icon .nav-modal a {
    /*font-size: 1.375rem;*/
    font-weight: 600;
        color: #fff;
            font-size:14px;
            line-height: 32px;
}
.header-absolute  .upper-side svg{
  fill:#fff;
}
.navbar_fixed .upper-side  svg{
  fill:#000;
}

/* PAGINATION */
.pagination {
  display: flex;
}
.pagination .page-item {
  display: inline-block;
  margin-right: 6px;
}
.pagination .page-item.active .page-link {
  background: #9f8054;
  color: #fff;
  border-color: transparent;
  position: relative;
  z-index: 2;
}
.pagination .page-item.active .page-link:hover {
  background: #9f8054;
  border-color: transparent;
  color: #fff;
}
.pagination .page-item .page-link {
  display: inline-block;
  border-radius: 0 !important;
  padding: 15px 20px;
  color: #26282b;
  font-weight: 600;
  font-size: 13px;
  border: 1px solid #dee2e6;
  line-height: 1;
}
.pagination .page-item .page-link:hover {
  background: none;
  border-color: #dee2e6;
  color: #9f8054;
}



/* NAV PILLS */
.nav-pills {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.nav-pills .nav-item {
  display: inline-block;
  margin-right: 30px;
}
.nav-pills .nav-item:last-child {
  margin-right: 0;
}
.nav-pills .nav-item .nav-link {
  background: none;
  color: #26282b;
  border-bottom: 2px solid transparent;
  padding: 4px 0;
  border-radius: 0;
  font-weight: 600;
  font-size: 14px;
}
.nav-pills .nav-item .nav-link.active {
  border-bottom: 2px solid #26282b;
}

/* HAMBURGER */
.hamburger {

  position: relative;
  cursor: pointer;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  transition-duration: 500ms;
  -webkit-transition-duration: 500ms;
  transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
      z-index: 4;
}
.hamburger span {
  display: block;
  height: 2px;
  width: 30px;
  background: #000;
  opacity: 1;
  position: absolute;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
.navbar-absolute .hamburger span {
  background: #000;

}
.hamburger span:nth-child(1) {
  top: 0;
}
.hamburger span:nth-child(2) {
  top: 9px;
}
.hamburger span:nth-child(3) {
  /*width: 10px;*/
  top: 19px;
}
.hamburger span:nth-child(4) {
  width: 6px;
  top: 19px;
  left: 15px;
}
.hamburger.open {
  /*margin: 0;*/
      margin: 0;
    position: absolute;
    right: 50px;
    top: 50px;
}
.hamburger.open span:nth-child(1) {
  top: 9px;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
  left: 20px;
}
.hamburger.open span:nth-child(3) {
  width: 30px;
  top: 9px;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
.hamburger.open span:nth-child(4) {
  opacity: 0;
  left: 20px;
}
.hamburger:hover span:nth-child(4) {
  width: 20px;
  left: 10px;
}
.sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  right: 0;
  background:rgba(0,0,0,.92);
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 60px;

}

/*.sidenav a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 25px;
  color: #818181;
  display: block;
  transition: 0.3s;
}

.sidenav a:hover {
  color: #f1f1f1;
}
*/
.sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 46px;
    margin-left: 50px;
    color: #fff;
}

@media screen and (max-height: 450px) {
  .sidenav {padding-top: 15px;}
  /*.sidenav a {font-size: 18px;}*/
}

/* SIDE NAVIGATION */
.side-navigation {
  /*width: 400px;
    max-width: 45vw;
    min-width: 675px;
  height: 100vh;
  min-height: 400px;
width: 200px;
    max-width: 25vw;
    min-width: 375px;
  position: fixed;
  right: -100%;
  top: 0;
  background:rgba(0,0,0,.92);
  z-index: 9;*/
  box-shadow: 10px 10px 50px rgba(0, 0, 0, 0.2);
  color: #fff;
  font-size: 14px;
  padding: 20px 40px 0;
  display: flex;
  flex-direction: column;
  justify-content: start;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
  transition-duration: 700ms;
  -webkit-transition-duration: 700ms;
  transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}
.side-navigation .menu {
  /*display: none;*/
  margin-bottom: 20px;
}
.side-navigation .menu ul {
  width: 100%;
  margin: 0;
  padding: 0;
}
.side-navigation .menu ul li {
  width: 100%;
  display: block;
  margin: 0;
  padding: 10px 0;
  list-style: none;
  position: relative;
}
.side-navigation .menu ul li ul {
  width: 100%;
  display: none;
  padding-left: 20px;
    margin-bottom: 5px;
    margin-top: 15px;
}
.side-navigation .menu ul li ul li {
  display: block;
}
.side-navigation .menu ul li ul li a {
  font-size: 14px;
}
.side-navigation .menu ul li a {
display: inline-block;
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    text-transform: uppercase;
}
.side-navigation .menu ul li a.active {
  color: #ebcfa7;
}
.side-navigation .menu ul li a i{
font-size: 15px;
    position: absolute;
    left: 47%;
    top: 15px;
}
.side-navigation .menu ul li a:hover {
  color: #ebcfa7;
  text-decoration: none;
}
.side-navigation .side-content {
  width: 100%;
  display: block;
}
.side-navigation figure {
  display: block;
  margin-bottom: 30px;
}
.side-navigation figure img {
  height: 40px;
}
.side-navigation address {
  display: block;
  margin-bottom: 20px;
}
.side-navigation h6 {
  font-weight: 600;
  font-size: 20px;
}
.side-navigation p {
  display: block;
  margin-bottom: 30px;
}
.side-navigation p a {
  color: #fff;
}
.side-navigation .gallery {
  margin-bottom: 20px;
  padding: 0;
  margin-left: -5px;
  margin-right: -5px;
}
.side-navigation .gallery li {
  width: 33.33333%;
  float: left;
  margin: 0;
  padding: 0 5px;
  list-style: none;
}
.side-navigation .gallery li img {
  width: 100%;
}
.side-navigation .social-media {
  width: 100%;
  float: left;
  margin: 0;
  margin-bottom: 20px;
  padding: 0;
}
.side-navigation .social-media li {
  float: left;
  margin-left: 5px;
  padding: 0;
  list-style: none;
}
.side-navigation .social-media li a {
  width: 40px;
  height: 40px;
  float: left;
  text-align: center;
  line-height: 42px;
  font-size: 13px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}
.side-navigation .social-media li a:hover {
  color: #26282b;
  background: #ebcfa7;
}
.side-navigation.active {
  right: 0;
}

/* NAVBAR */
.navbar {
  width: 100%;
  padding: 0;
  /*position: absolute;*/
  left: 0;
  top: 0;
  /*z-index: 2;*/
}
.navbar-absolute {
    width: 100%;
    padding: 0;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    /*background: #fff;*/
}
.navbar .container {
  flex-direction: column;
}
.navbar .container .upper-side {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 0px 0;
  align-items: center;
 /* transform: translateY(-80px);
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
  transition-duration: 700ms;
  -webkit-transition-duration: 700ms;
  transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  transition-delay: 1.2s;*/
}
.navbar .container .upper-side .logo {
  margin-left: 0;
      position: relative;
    z-index: 4;
}
.navbar .container .upper-side .logo img {
  height:100px;
   /*filter: grayscale(100%);*/
   padding: 5px 0;
}
.navbar .container .upper-side .phone-email {
   margin-right: 24px;
    margin-left: auto;
    margin-top: 0;
     text-align: right; 
    color: #fff;
    position: relative;
    z-index: 2;
    display: flex;
    gap: 6px;
    align-items: center;
    /*margin-right: 24px;
    margin-left: auto;
    margin-top: 5px;
    text-align: right;
    color: #fff;
    position: relative;
    z-index: 2;*/
}
.navbar .container .upper-side .phone-email img {
  float: right;
  height: 55px;
  /*margin-left: 15px;
  margin-top: 4px;*/
}
.navbar .container .upper-side .phone-email h4 {
  margin-bottom: 0;
  /*margin-top: 12px;*/
  font-size: 17px;
  /*font-weight: 600;*/
  display: -webkit-box;
  line-height: 1;
      position: relative;
    z-index: 4;
}
.ph-em{
      background: #503207;
    padding: 10px 15px;
    border-radius: 50px;
}

.navbar .container .upper-side .phone-email h4 a{ 
  color:#fff ;
}
.navbar .container .upper-side .ph-em h4 a{ 
  color:#fff ;
}
.navbar .container .upper-side .whatsapp h4 a{ 
  color:#000 !important;
}
.navbar .container .upper-side .phone-email small {
     line-height: 22px;
     color:#7c7c7c;
         margin-left: 3px;
    /*color: #9e8157;*/
}
.navbar .container .upper-side .phone-email small a {
  opacity: 0.5;
  color: ;
  /*color: #fff;*/
}
.navbar .container .upper-side .phone-email small a:hover {
  text-decoration: none;
  color: #ebcfa7;
  opacity: 1;
}
.navbar .container .upper-side .language {
  margin-right: 40px;
  margin-left: 60px;
  padding: 10px 0;
  padding-right: 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}
.navbar .container .upper-side .language a {
  display: inline-block;
  margin: 0 5px;
  /*color: #fff;*/
  font-weight: 600;
}
.navbar .container .upper-side .language a:hover {
  color: #ebcfa7;
  text-decoration: none;
}
.navbar .container .upper-side .hamburger {
  width: 30px;
  height: 21px;
  margin-right: 0;
  margin-left: 24px;
}
.navbar .container .menu {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  /*border-top: 1px solid rgba(255, 255, 255, 0.15);*/
 /* -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
  transition-duration: 700ms;
  -webkit-transition-duration: 700ms;
  transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  transition-delay: 1.4s;
  opacity: 0;*/
}
/*.navbar .container .menu ul {
  display: flex;
  flex-wrap: wrap;
  margin-left: auto;
  margin-right: 0;
  margin-top: -1px;
}
.navbar .container .menu ul li {
  margin: 0;
  margin-left: 40px;
  padding: 0;
  list-style: none;
  position: relative;
}
.navbar .container .menu ul li:hover ul {
  top: 100%;
  opacity: 1;
  visibility: visible;
}
.navbar .container .menu ul li ul {
  min-width: 220px;
  position: absolute;
  left: -35px;
  top: 120%;
  background: #26282b;
  margin: 0;
  padding: 25px 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -ms-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
.navbar .container .menu ul li ul:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 10px 10px 10px;
  border-color: transparent transparent #26282b transparent;
  position: absolute;
  left: 35px;
  top: -10px;
}
.navbar .container .menu ul li ul li {
  margin: 0;
  padding: 0 35px;
  white-space: nowrap;
}
.navbar .container .menu ul li ul li a {
  padding: 8px 0;
}
.navbar .container .menu ul li ul li a:hover {
  border-color: transparent;
}
.navbar .container .menu ul li a {
  color: #fff;
  display: inline-block;
  font-weight: 600;
  padding: 12px 0;
  border-top: 1px solid transparent;
}
.navbar .container .menu ul li a:hover {
  text-decoration: none;
  color: #ebcfa7;
  border-top: 1px solid #ebcfa7;
}
*/
/* SLIDER */
.slider {
  width: 100%;
  /* height: 100vh;
  min-height: 600px; */
  display: flex;
  flex-wrap: wrap;
  background: #26282b;
  overflow: hidden;
    
}
.slider .slider-container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
/*  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
  transition-duration: 700ms;
  -webkit-transition-duration: 700ms;
  transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  transform: scale(1.3);
  transition-delay: 1.25s;*/
  /*opacity: 0;*/
}
.slider .slider-container .swiper-slide {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  align-content: center;
  background-size: cover;
}
.slider .slider-container .swiper-slide:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  /*background: #26282b;*/
  background: -moz-linear-gradient(161deg, #26282b 0%, #26282b 49%, #9f8054 100%);
  background: -webkit-linear-gradient(161deg, #26282b 0%, #26282b 49%, #9f8054 100%);
 background: linear-gradient(161deg, #26282b73 0%, #26282bbf 49%, #9f805442 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#26282b",endColorstr="#9f8054",GradientType=1);
  opacity: 0.65;
}
.slider .slider-container .swiper-slide .container {
  position: relative;
  z-index: 9;
  padding-left: 100px;
}
.slider .slider-container .swiper-slide .container h1 {
  font-size: 4vw;
  color: #fff;
  font-family: "Playfair Display", serif;
  color: #ebcfa7;
  margin-bottom: 20px;
}
.slider .slider-container .swiper-slide .container h1 span {
  display: inline-block;
  position: relative;
}
.slider .slider-container .swiper-slide .container h1 span:before {
  content: "";
  width: 247px;
  height: 70px;
  position: absolute;
  left: 0;
  top: 40px;
  background: url(../images/title-mark.png) center no-repeat;
  background-size: contain;
  z-index: -1;
}
.slider .slider-container .swiper-slide .container h2 {
  font-weight: 600;
  color: #fff;
  margin-bottom: 50px;
}
.slider .slider-container .swiper-slide .container a {
  height: 60px;
  line-height: 56px;
  float: left;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding-bottom: 10px;
  position: relative;
  border: 2px solid #ebcfa7;
  padding: 0 40px;
  box-shadow: 0 0 20px rgba(235, 207, 167, 0.4);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -ms-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
.slider .slider-container .swiper-slide .container a i {
  margin-left: 10px;
}
.slider .slider-container .swiper-slide .container a:hover {
  text-decoration: none;
  background: #9f8054;
  border-color: #9f8054;
}
.slider .slider-container .swiper-slide .container figure {
  float: left;
  margin-left: 40px;
  margin-bottom: 0;
}
.slider .slider-container .swiper-slide .container figure img {
  height: 60px;
}
.slider .slider-container .inner-elements {
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.slider .slider-container .inner-elements .container {
  position: relative;
  height: 100vh;
}
.slider .slider-container .inner-elements .container .social-media {
  width: 20px;
  position: absolute;
  left: 15px;
  top: calc(50% + 60px);
  transform: translateY(-50%);
  z-index: 2;
  text-align: center;
}
.slider .slider-container .inner-elements .container .social-media h6 {
  width: 120px;
  color: #fff;
  transform: rotate(90deg);
  transform-origin: left;
  margin-left: 9px;
  font-weight: 600;
  margin-bottom: 120px;
  font-size: 14px;
}
.slider .slider-container .inner-elements .container .social-media ul {
  margin: 0;
  padding: 0;
}
.slider .slider-container .inner-elements .container .social-media ul:before {
  content: "";
  width: 1px;
  height: 42px;
  background: #fff;
  display: inline-block;
  margin-bottom: 15px;
  margin-top: 10px;
}
.slider .slider-container .inner-elements .container .social-media ul li {
  margin: 0;
  padding: 3px 0;
  list-style: none;
}
.slider .slider-container .inner-elements .container .social-media ul li a {
  color: #fff;
  font-size: 12px;
}
.slider .slider-container .inner-elements .container .social-media ul li a:hover {
  color: #ebcfa7;
}
.slider .slider-container .inner-elements .container .pagination {
  width: auto;
  position: absolute;
  left: auto;
  right: 55px;
  bottom: 20px;
  z-index: 1;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: 50px;
}
.slider .slider-container .inner-elements .container .pagination .swiper-pagination-current {
  font-size: 40px;
  font-weight: 800;
  margin-right: 5px;
}
.slider .slider-container .inner-elements .container .pagination .swiper-pagination-total {
  font-size: 20px;
  margin-left: 5px;
}
.slider .slider-container .inner-elements .container .button-prev {
  width: 40px;
  position: absolute;
  right: 10px;
  top: calc(50% + 60px);
  z-index: 1;
  transform: rotate(90deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -ms-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
  transform-origin: bottom;
  margin-top: -60px;
  font-weight: 600;
  color: #fff;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
}
.slider .slider-container .inner-elements .container .button-prev:hover {
  color: #ebcfa7;
}
.slider .slider-container .inner-elements .container .button-prev:after {
  content: "";
  width: 42px;
  height: 1px;
  background: #fff;
  position: absolute;
  right: calc(-100% - 20px);
  top: 5px;
}
.slider .slider-container .inner-elements .container .button-next {
  width: 40px;
  position: absolute;
  right: 10px;
  top: calc(50% + 60px);
  z-index: 1;
  transform: rotate(90deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -ms-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
  transform-origin: bottom;
  margin-top: 60px;
  font-weight: 600;
  color: #fff;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
}
.slider .slider-container .inner-elements .container .button-next:hover {
  color: #ebcfa7;
}

/* PAGE HEADER */
.page-header {
  width: 100%;
  height: 500px;
  display: flex;
  flex-wrap: wrap;
  padding-top: 200px;
  background-color: #26282b;
  position: relative;
  margin-bottom: 30px;
}
.page-header:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: #26282b;
  background: -moz-linear-gradient(161deg, #26282b 0%, #26282b 49%, #9f8054 100%);
  background: -webkit-linear-gradient(161deg, #26282b 0%, #26282b 49%, #9f8054 100%);
  background: linear-gradient(161deg, #26282b 0%, #26282b 49%, #9f8054 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#26282b",endColorstr="#9f8054",GradientType=1);
  opacity: 0.65;
}
.page-header .container {
  position: relative;
  z-index: 2;
}
.page-header .container h1 {
  font-size: 60px;
  color: #fff;
  font-family: "Playfair Display", serif;
  color: #ebcfa7;
  margin-bottom: 20px;
}
.page-header .container p {
  display: block;
  color: #fff;
  font-size: 20px;
  margin: 0;
}
.page-header .container .breadcrumb {
  position: absolute;
  left: 15px;
  bottom: -30px;
  background: #9f8054;
  width: 70%;
  padding: 40px 30px;
  padding-right: 60px;
  margin: 0;
}

/* INTRO */
.intro {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.intro figure {
  display: inline-block;
  margin-bottom: 0;
  margin-top: -20px;
  background: #ebcfa7;
  position: relative;
}
.intro figure .pattern-bg {
  width: 120%;
  height: 100%;
  position: absolute;
  left: 5%;
  top: -5%;
  /*background: url(../images/side-pattern-bg.png);*/
  background-size: contain;
}
.intro figure .holder {
  position: relative;
  width: 100%;
  float: left;
  display: block !important;
  transform: translate(85px, -65px);
}
.intro figure .holder img {
  box-shadow: 10px 10px 50px rgba(0, 0, 0, 0.2);
  width: 525px;
}
 .content-box {
  display: block;
  padding-left: 5%;
}
 .content-box b {
  display: block;
  font-size: 22px;
  font-weight: 800;
  opacity: 0.2;
}
 .content-box h4 {
  display: block;
  font-size: 38px;
  font-family: "Playfair Display", serif;
  margin-bottom: 15px;
}
 .content-box h4 span {
  color: #9f8054;
}
 .content-box h3 {
  font-weight: 600;
  margin-bottom: 30px;
}
 .content-box p {
  display: block;
  padding-right: 10%;
  margin-bottom: 30px;
      line-height: 32px;
          font-family: 'Kumbh Sans';
}
 .content-box a {
      display: inline-block;
    color: #26282b;
    font-weight: 600;
    border: 1px solid #eacfaa;
    padding: 12px 30px;
}
 .content-box a:hover{
  background: #8a6a3f;
  color: #fff !important;
}
.intro .content-box a img {
  height: 46px;
  margin-right: 15px;
}
.intro .content-box a:hover {
  color: #9f8054;
  text-decoration: none;
}


/* LOGOS */
.logos {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 50px 0 50px;
}
.logos * {
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -ms-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
.logos .col-lg-2 {
  border-right: 1px dashed #eee;
}
.logos .col-lg-2:last-child {
  border-right: none;
}
.logos figure {
  width: 100%;
  margin: 0;
  position: relative;
}
.logos figure:hover img {
  /*opacity: 0;*/
  transform: scale(1.1);
}
.logos figure:hover h6 {
  opacity: 1;
  transform: scale(1);
}
.logos figure img {
  /*width: 100%;*/
      height: 100px;
    object-fit: contain;
}
.logos figure h6 {
  width: 100%;
  height: 20px;
  line-height: 20px;
  margin: 0;
  position: absolute;
  top: 50%;
  margin-top: -10px;
  text-align: center;
  opacity: 0;
  font-weight: 800;
  font-size: 13px;
  transform: scale(1.1);
}

/* BENEFITS */
.benefits {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 80px 0;
  /*background: #F9FAF1;*/
  text-align: center;
}
.benefits .col {
  border-right: 1px solid #eee;
  padding-top: 20px;
  padding-bottom: 20px;
}
.benefits .col:nth-child(odd) {
  margin-top: 50px;
}
.benefits .col:hover figure:after {
  opacity: 1;
}
.benefits .col:last-child {
  border-right: none;
}
.benefits b {
  display: block;
  font-size:22px;
  font-weight: 800;
  opacity: 0.2;
}
.benefits h4 {
  display: block;
  font-size: 38px;
  font-family: "Playfair Display", serif;
  margin-bottom: 15px;
}
.benefits h4 span {
  color: #9f8054;
}
.benefits h3 {
  /*font-weight: 600;*/
  margin-bottom: 50px;
}
.benefits figure {
  display: block;
  margin-bottom: 20px;
  position: relative;
}
.benefits figure:after {
  content: "";
  width: 70px;
  height: 70px;
  position: absolute;
  left: 50%;
  top: 0;
  background: #ebcfa7;
  border-radius: 50%;
  opacity: 0;
  z-index: 0;
  margin-left: -35px;
}
.benefits figure img {
  height: 70px;
  position: relative;
  z-index: 2;
}
.benefits h6 {
  font-weight: 600;
  font-size: 14px;
}
.benefits .odometer {
  font-size: 50px;
  line-height: 1;
  font-weight: 800;
}
.benefits .extra {
  font-size: 18px;
  font-weight: 600;
  display: inline-block;
  transform: translateY(10px);
}


/* PROPERTY CALCULATOR */
.property-calculator {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding-top: 80px;
  padding-bottom: 100px;
  margin-top: 100px;
  position: relative;
}
.property-calculator figure {
  display: inline-block;
  margin-bottom: 0;
  margin-top: -20px;
  background: #ebcfa7;
  position: relative;
}
.property-calculator figure:before {
  content: "";
  width: 50vw;
  height: 100%;
  background: #ebcfa7;
  position: absolute;
  left: -50vw;
  top: 0;
}
.property-calculator figure .pattern-bg {
  width: 120%;
  height: 100%;
  position: absolute;
  left: 5%;
  top: -5%;
  background: url(../images/side-pattern-bg.png);
  background-size: contain;
}
.property-calculator figure .holder {
  position: relative;
  width: 100%;
  float: left;
  display: block !important;
  transform: translate(85px, -35px);
}
.property-calculator figure .holder img {
  box-shadow: 10px 10px 50px rgba(0, 0, 0, 0.2);
  width: 525px;
}
.property-calculator .content-box {
  display: block;
  padding-left: 10%;
}
.property-calculator .content-box b {
  display: block;
  font-size: 30px;
  font-weight: 800;
  opacity: 0.2;
}
.property-calculator .content-box h4 {
  display: block;
  font-size: 30px;
  font-family: "Playfair Display", serif;
  margin-bottom: 15px;
}
.property-calculator .content-box h4 span {
  color: #9f8054;
}
.property-calculator .content-box h3 {
  font-weight: 600;
  margin-bottom: 30px;
}
.property-calculator .content-box ul {
  display: block;
  margin-bottom: 60px;
  padding: 0;
}
.property-calculator .content-box ul li {
  display: inline-block;
  margin: 0;
  padding: 0;
  list-style: none;
}
.property-calculator .content-box ul li:nth-child(1) {
  margin-right: 30px;
}
.property-calculator .content-box ul li img {
  height: 35px;
}
.property-calculator .content-box p {
  display: block;
  padding-right: 40%;
  margin-bottom: 30px;
}
.property-calculator .content-box a {
  display: inline-block;
  color: #26282b;
  font-weight: 600;
}
.property-calculator .content-box a img {
  height: 46px;
  margin-right: 10px;
}
.property-calculator .content-box a:hover {
  color: #9f8054;
  text-decoration: none;
}


/* GET CONSULTATION */
.get-consultation {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding-top: 150px;
  /*margin-bottom: 100px;*/
  background-size: auto 120%;
  background-position: right;
  background-repeat: no-repeat;
  background-color: #e5e4df;
}
.get-consultation .content-box {
  width: 500px;
  max-width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 80px 50px;
  margin-bottom: -100px;
  color: #fff;
  background: #9f8054;
  position: relative;
  overflow: hidden;
}
.get-consultation .content-box:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 100px 200px 100vh 0;
  border-color: transparent #ebcfa7 transparent transparent;
  position: absolute;
  right: 0;
  top: 0;
  opacity: 0.15;
}
.get-consultation b {
  width: 100%;
  display: block;
  font-size: 22x;
  font-weight: 800;
  opacity: 0.2;
}
.get-consultation h4 {
  display: block;
  font-size: 30px;
  font-family: "Playfair Display", serif;
  margin-bottom: 15px;
}
.get-consultation h4 span {
  color: #ebcfa7;
}
.get-consultation h3 {
  font-weight: 600;
  margin-bottom: 30px;
}
.get-consultation p {
  display: block;
  padding-right: 20%;
  margin-bottom: 40px;
}
.get-consultation a {
  height: 60px;
  line-height: 60px;
  float: left;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding-bottom: 10px;
  position: relative;
  background: #26282b !important;
  padding: 0 40px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -ms-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
.get-consultation a i {
  margin-left: 10px;
}
.get-consultation a:hover {
  text-decoration: none;
  background: #fff;
  color: #9f8054;
}


/* PROPERTY CUSTOMIZATION */
.property-customization {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 100px 0;
  /*background: linear-gradient(90deg,rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 50%, rgba(235, 207, 167, 1) 100%);*/
      background: linear-gradient(90deg, rgb(26 24 21) 0%, rgb(28 27 25) 50%, rgb(104 94 77) 100%);
  /*background: #26282b;*/
  color: #fff;
  position: relative;
}
.property-customization b {
  width: 100%;
  display: block;
  font-size: 30px;
  font-weight: 800;
  opacity: 0.2;
}
.property-customization h4 {
  display: block;
  font-size: 38px;
  font-family: "Playfair Display", serif;
  margin-bottom: 15px;
}
.property-customization h4 span {
  color: #ebcfa7;
}
.property-customization h3 {
  /*font-weight: 600;*/
  margin-bottom: 30px;
}
.property-customization figure {
  width: 100%;
  /*display: flex;*/
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
     padding: 40px;
  margin: 15px 0;
      text-align: center;
}
.property-customization figure img {
  height: 40px;
  float: left;
  margin-right: 15px;
}
.property-customization figure figcaption {
  color: #fff;
    font-size: 20px;
    font-weight: 600;
    padding-top: 20px;
}


/*why choose Us*/

.why-choose-us {
  padding: 130px 0;
  font-family: 'Poppins', sans-serif;
}

.subtitle {
  color: #c79f63;
  font-size: 16px;
  font-weight: 500;
  display: block;
  margin-bottom: 10px;
}

.title {
  font-size: 36px;
  
  color: #05264e;
  margin-bottom: 30px;
}

.description {
    margin: 5px 0 0;
    color: #000;
    line-height: 28px;
    font-family: 'Kumbh Sans';
    font-size: 18px;
}

.image-wrapper {
  position: relative;
  max-width: 100%;
}

.main-img {
  width: 100%;
  border-radius: 20px;
  border: 4px solid #eee;
}

.small-img {
  position: absolute;
  width: 180px;
  border-radius: 15px;
  border: 4px solid #fff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.top-img {
  top: -40px;
  right: -30px;
}

.bottom-img {
  bottom: -40px;
  left: 30px;
}

.feature-box {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

.feature-box .icon {
  font-size: 32px;
  color: #c79f63;
  margin-right: 20px;
  min-width: 40px;
}

.feature-box h4 {
  margin: 0;
    font-size: 23px;
    color: #05264e;
    font-family: 'Kumbh Sans';
    font-weight: 600;
}

.feature-box p {
        margin: 5px 0 0;
    color: #000;
    line-height: 28px;
    font-family: 'Kumbh Sans';
    font-size: 18px;
}

/*project area*/
.project-area {
  background: var(--tg-secondary-background);
}
.project-item {
  text-align: center;
  margin-bottom: 55px;
      padding: 20px;
    border: 1px solid #dedede;
}
.project-item .project-thumb {
  margin-bottom: 35px;
}
.project-thumb span {
  position: relative;
  display: block;
  overflow: hidden;
}
.project-thumb span::before {
  position: absolute;
  top: 0;
  left: -100%;
  display: block;
  content: '';
  width: 50%;
  height: 100%;
  background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 42556, 255, 0)), to(rgba(255, 255, 255, .3)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
  -webkit-transform: skewX(-25deg);
  -ms-transform: skewX(-25deg);
  transform: skewX(-25deg);
}
.project-item-two:hover .project-thumb span::before,
.project-item:hover .project-thumb span::before {
    -webkit-animation: shine 1s;
    animation: shine 1s;
}
@-webkit-keyframes shine {
  100% {
    left: 125%;
  }
}
@keyframes shine {
  100% {
    left: 125%;
  }
}
.project-item .project-thumb img {
  /*border-radius: 16px;*/
      /*height: 400px;*/
    object-fit: cover;
}
.benefits .project-item .project-thumb img {
height:295px
}
.project-content .title {
  font-size: 20px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.project-content .title span{
      color: #856d47;
      font-size: 20px;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.project-content .title span:hover {
  text-decoration: underline;
  color: var(--tg-heading-font-color);
}
.project-content span {
  display: block;
  /*text-transform: uppercase;*/
  /*font-weight: 500;*/
  font-size: 15px;
  /*letter-spacing: 0.04em;*/
}
.project-item-wrap .row {
  margin: 0 -12px;
}
.project-item-wrap .row [class*="col-"] {
  padding: 0 12px;
}
a:hover {
    color: #000; 
   
}
/* project-two */
.project-style-two .project-content .title {
  font-size: 22px;
  margin-bottom: 8px;
}
.project-style-two .row {
  margin: 0 -12px;
}
.project-style-two .row [class*="col-"] {
  padding: 0 12px;
}
.transparent-btn {
    background: transparent;
    color: #BD9A68;
}

.btn {
    user-select: none;
    -moz-user-select: none;
    background: #BD9A68 none repeat scroll 0 0;
    border: 1.3px solid #BD9A68;
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
    display: inline-flex
;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.04em;
    line-height: 1rem;
    margin-bottom: 0;
    padding: 19px 38px;
    text-align: center;
    text-transform: uppercase;
    touch-action: manipulation;
    vertical-align: middle;
    white-space: nowrap;
    transition: background .6s cubic-bezier(.55, 0, .1, 1), border .6s cubic-bezier(.55, 0, .1, 1);
}
.btn_m {
    position: relative;
    overflow: hidden;
    height: 1rem;
}
.btn_c {
    transition: transform .6s cubic-bezier(.55, 0, .1, 1);
}
.btn_t1 {
    transform-origin: 100%;
    transition: transform .45s cubic-bezier(.55, 0, .1, 1), color .6s cubic-bezier(.55, 0, .1, 1);
    display: block;
}
.btn_t2 {
    transform-origin: 0;
    transition: transform .45s cubic-bezier(.55, 0, .1, 1), color .6s cubic-bezier(.55, 0, .1, 1);
    display: block;
    transform: rotate(40deg);
}
.roadmap-area{
  padding: 80px 0;
}

.roadmap-wrap {
  position: relative;
  /*padding: 60px 0;*/
}

.roadmap-wrap::before {
 /*   content: "";
    position: absolute;
    top: calc(50% - 0px);
    left: 0;
    width: 100%;
    height: 2px;
    border-top: 1px dashed #b99c74;
    z-index: 1;*/
}

.roadmap-active .swiper-wrapper {
  display: flex;
  gap: 40px;
  padding: 0 40px;
  min-height: 600px;
}

.roadmap-item {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  flex: 0 0 auto;
  /*width: 400px;*/
  position: relative;
  z-index: 2;
}

/*.roadmap-item .title {
  font-size: 24px;
  font-weight: bold;
  margin: 30px 0 0;
  color: #000;
}*/

.roadmap-content {
 position: relative;
    text-align: center;
    border: 1.3px solid #000;
    border-radius: 16px;
    padding: 30px 30px;
        margin-bottom: 60px;
}

.roadmap-content::before {
      content: "";
    position: absolute;
    left: 50%;
    bottom: -9.3px;
    transform: translateX(-50%) rotate(-45deg);
    width: 16px;
    height: 16px;
    background: #fff;
    border-left: 1.3px solid #000;
    border-bottom: 1.3px solid #000;
}

.roadmap-content .dot {
  width: 11px;
    height: 11px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
     bottom: -55px;
    background: #BD9A68;
    border-radius: 50%;
}

.roadmap-content span {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 500;
    display: block;
    color: #BD9A68;
}

.roadmap-content p {
  margin-bottom: 15px;
  font-size: 15px;
  color: #666;
}

/*.roadmap-active .swiper-slide:nth-child(odd) .roadmap-item {
  flex-direction: column;
}

.roadmap-active .swiper-slide:nth-child(odd) .roadmap-content {
  margin-top: 40px;
  margin-bottom: 0;
}

.roadmap-active .swiper-slide:nth-child(odd) .roadmap-content::before {
  bottom: auto;
    top: -9.3px;
  
  border-top: 1px solid #ccc;
  border-right: 1px solid #ccc;
  border-left: none;
  border-bottom: none;
}

.roadmap-active .swiper-slide:nth-child(odd) .roadmap-content .dot {
  top: -40px;
  bottom: auto;
}
*/
.roadmap-item {
    width: 800px;
    margin: auto;
    /*height: 318px;*/
    
  flex: 0 0 auto;
}
/*.roadmap-active .swiper-slide:nth-child(odd) {
    align-self: flex-end;
}
.roadmap-active .swiper-slide:nth-child(odd) .roadmap-item .title {
       margin-top: -24px;
    margin-bottom: 19px;
}*/
.roadmap-item .title {
       margin-bottom: -22px;
    font-size: 24px;
    
    /*margin-top: 30px;*/
}
/*.roadmap-active .swiper-slide:nth-child(odd) .roadmap-item .roadmap-content .dot {
    bottom: auto;
    top: -52px;
}
.roadmap-active .swiper-slide:nth-child(odd) .roadmap-item .roadmap-content {
    margin-bottom: 0;
    margin-top: 40px;
}
.roadmap-active .swiper-slide:nth-child(odd) {
    align-self: flex-end;
}*/


.footer-bg {
  background-image: url(../images/footer_bg.jpg);
  background-size: cover;
  background-position: center;
}
.footer-top {
  padding: 105px 0 40px;
}
.footer-widget {
  margin-bottom: 40px;
}
.fw-title {
  color: #fff;
  font-size: 22px;
  text-transform: uppercase;
  margin-bottom: 35px;
}
.footer-contact p {
  margin-bottom: 15px;
  color:#9B9B9B;
}
.footer-contact .list-wrap li a {
  color:#9B9B9B;
      line-height: 32px;
}
.footer-contact .list-wrap li:first-child a {
  text-decoration: underline;
}
.footer-contact .list-wrap li a:hover {
  color: #BD9A68;
}
.footer-link .list-wrap li {
  margin-bottom: 10px;
}
.footer-link .list-wrap li:last-child {
  margin-bottom: 0;
}
.footer-link .list-wrap li a {
  color:#9B9B9B;
}
.footer-link .list-wrap li a:hover {
  color: #BD9A68;
}
.footer-newsletter form {
  position: relative;
}
.footer-newsletter input {
  width: 100%;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  color:#9B9B9B;
  background: var(--tg-black);
  padding: 14px 70px 14px 25px;
}
.footer-newsletter input::placeholder {
  font-size: 15px;
  color:#9B9B9B;
}
.footer-newsletter button {
  border: none;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #BD9A68;
  font-size: 14px;
  border-radius: 0 8px 8px 0;
}
.footer-bottom {
  padding: 30px 0 55px;
}
.copyright-text p {
  margin-bottom: 25px;
  color:#9B9B9B;
}
.copyright-text p span {
  color: #fff;
}
.footer-social .list-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 -4px;
}
.footer-social .list-wrap li {
  padding: 0 4px;
}
.footer-social .list-wrap li a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.3px solid #BD9A68;
  border-radius: 50%;
  font-size: 14px;
  color: #BD9A68;
}
.footer-social .list-wrap li a i{
      font-family: 'Font Awesome 5 Brands';
}
.footer-social .list-wrap li a:hover {
  background: #BD9A68;
  color: #fff;
}
.list-wrap li {
    list-style: none;
}
a, button {
   
    outline: medium none;
    text-decoration: none !important;
}
.list-wrap {
  margin: 0px;
  padding: 0px;
}
.list-wrap li {
  list-style: none;
}

.footer-logo img{
      filter: grayscale(100%);
    padding: 10px 0;
    height: 150px;
}


*{ box-sizing: border-box; }

section.featured-projects{
  padding:60px 20px;
  max-width:1440px;
  margin:0 auto;
}
.fp-head{
  margin-bottom:30px;
}
.fp-eyebrow{
  letter-spacing:.25em;
  font-size:.85rem;
  color:#9c8d72;
  font-weight:600;
}
.fp-title{
      font-family: 'Playfair Display';
      font-size: 38px;
  font-weight:500;
  margin:.25em 0 0;
}
.fp-wrapper{
  position:relative;
}
.fp-nav{
  position:absolute;
  top:18px;
  right:20px;
  z-index:2;
  display:flex;
  gap:10px;
}
.fp-nav button{
  width:44px;height:44px;border-radius:50%;
  border:1px solid var(--fp-border);
  background:#fff;display:grid;place-items:center;
  cursor:pointer;transition:.2s;
}
.fp-nav button:hover{
  background:#f5f5f5;
}
.fp-layout{
  display:grid;
  /*grid-template-columns: minmax(0,1fr) 420px 120px; */
  gap: var(--fp-gap);
  align-items:stretch;
}
@media (max-width:1199px){
  .fp-layout{
    grid-template-columns: minmax(0,1fr) 420px;
  }
  .fp-thumbs{
    display:none;
  }
}
@media (max-width:991px){
  .fp-layout{
    grid-template-columns: 1fr;
  }
  .fp-nav{
    position:static;
    justify-content:flex-end;
    margin-bottom:12px;
  }
}
.featured-swiper{
  width:100%;
  height:100%;
}
.fp-slide{
  background:#fff;
  border:1px solid var(--fp-border);
  height:400px;
  display:grid;
  grid-template-columns:minmax(0,1fr) 500px;
}
@media (max-width:991px){
  .fp-slide{
    grid-template-columns:1fr;
  }
}
.fp-image{
  position:relative;
  overflow:hidden;
      margin-bottom: 0;
}
.fp-image img{
  width:100%;
  height:400px;
  object-fit:cover;
  display:block;

}
.fp-card{
  /*background:var(--fp-bg);*/
  padding:28px;
  display:flex;
  flex-direction:column;
  border-left:1px solid var(--fp-border);
}
.fp-logo{
  width:200px; height:60px;
  background:#f5f5f5;
  margin-bottom:18px;
  display:flex;align-items:center;justify-content:center;
  font-size:.9rem;color:#aaa;
}
.fp-project-title{
  font-family: var(--fp-font);
  font-size:1.8rem;
  color:#7f633e;
  line-height:1.2;
}
.fp-location{
  margin-top: 0;
    color: #000;
    font-size: .95rem;
}
.fp-divider{
  height:1px;background:var(--fp-border);
  margin:18px 0 20px;
}
.fp-meta{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  row-gap:14px;
  column-gap:0px;
  margin-bottom:20px;
}
.fp-meta dt{
     font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #282624;
    font-weight: 400;
}
.fp-meta dd{
  margin:2px 0 0 0;
  font-weight:600;
}
.fp-cta{
  margin-top:auto;
  display:flex;
  gap:12px;
  align-items:center;
}
.fp-price{
  flex:1;
  background:var(--fp-accent);
  color:#fff;
  border:none;
  padding:14px 18px;
  font-weight:600;
  border-radius:2px;
  cursor:pointer;
}
.fp-icon-btn{
  width:44px;height:44px;border:1px solid var(--fp-border);
  background:#fff;border-radius:2px;display:grid;place-items:center;cursor:pointer;
}
.fp-icon-btn svg{
  /*width:18px;height:18px;*/
  stroke:#8c8c8c;
}
.fp-thumbs{
  height:100%;
}
.fp-thumbs .swiper-slide{
  opacity:.4;
  transition:.2s;
  border:1px solid var(--fp-border);
}
.fp-thumbs .swiper-slide-thumb-active{
  opacity:1;
}
.fp-thumbs img{
  width:100%;
  height:100%;object-fit:cover;display:block;
}
.featured-swiper .swiper-slide {
  transition: opacity 0.3s ease;
  opacity: 0.4; /* Less visible by default */
}

.featured-swiper .swiper-slide.swiper-slide-active {
  opacity: 1; /* Fully visible active slide */
}

section.h-testimonial {
    /*background: #f2f2f2;*/
    position: relative;
    z-index: 0;
     padding-top: 80px;
     padding-bottom: 100px;
}
section.h-testimonial:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: url(../images/dot-shape.png);
    top: 0;
    left: 0;
    background-repeat: no-repeat;
    background-size: auto;
    background-position: center center;
}
.tstb-user {
    position: absolute;
}
.htst-box {
    position: relative;
    z-index: 0;
    padding: 50px 50px;
    background: #fff;
    margin-top: 100px;
}
.tstb-user {
    position: absolute;
    max-width: 80px;
    left: 50%;
    transform: translateX(-50%);
    top: -40px;
    max-height: 80px;
    min-width: 80px;
    min-height: 80px;
}
.htst-box {
    position: relative;
    z-index: 0;
    padding: 70px 50px 0px 50px;
    background: #fff;
    margin-top: 100px;
    text-align: center;
    border-radius: 10px;
    margin-inline: 0px;
    margin-inline: auto;
}
.tstb-user-info {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 400px;
    margin-inline: auto;
    gap: 12px;
    background: #e5e5e5;
    padding: 10px 0 10px 0;
    border-radius: 6px 6px 0 0;
}
.tstb-user-info h5 {
    margin-bottom: 0;
    font-size: 18px;
    font-weight: 600;
        color: #000;
}
.tstb-user-info span {
    font-weight: 600;
    font-size: 18px;
    color: #696b72;
}
.htst-box.slick-slide.slick-current.slick-active {
    background: #4f83fa;
    /* margin-inline:50px ; */
}
.htst-box.slick-slide.slick-current.slick-active p{
color: #fff;
}
.htst-box.slick-slide.slick-current.slick-active .tstb-user-info {
    background: #fff;
}
.tstb-user img {
    border-radius: 6px;
}.gt-testimonial-box-items-2 {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 32px;
    position: relative;
    max-width: 875px;
    margin-inline: auto;
}.gt-testimonial-box-items-2 {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 32px;
    position: relative;
    max-width: 875px;
    margin-inline: auto;
}
.gt-testimonial-box-items-2 .gt-testimonial-content .gt-star {
    color: #FCD554;
    margin-bottom: 7px;
    text-align: center;
}
.gt-testimonial-box-items-2 .gt-testimonial-content p {
    font-size: 20px;
    /*font-weight: 600;*/
    color: #000;
    font-style: italic;
    opacity: 0.88;
    text-align: center;
}
.gt-testimonial-box-items-2 .gt-testimonial-content .gt-client-info {
    margin-top: 24px;
}
.gt-testimonial-box-items-2 .gt-testimonial-content .gt-client-info h3 {
    color: #000;
        font-size: 24px;
    font-weight: 800;
    text-align: center;
}
.gt-testimonial-box-items-2 .gt-testimonial-content .gt-client-info span {
    opacity: 0.88;
}
.gt-testimonial-box-items-2 .quote-icon {
    position: absolute;
    bottom: 0;
    right: 0;
}
.gt-client-image img {
    min-width: 170px;
}
.p-logo{
  position: absolute;
  right: 20px;
  top: 20px;
}
.p-logo{
  max-width: 100px;
}


.amenities-list {padding:0;margin:0;list-style:none;    display: inline-block;}
.amenities-list li{display:block;margin:0 0 15px;display:block;color:#000;font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #282624;
    font-weight: 400;padding:0 0 0 34px;position:relative;line-height:25px;    display: inline-block;}
.amenities-list li svg{position:absolute;left:0;margin-top:2px;font-size:20px;color:#fff}


@media(min-width: 991px){
  .amenities-list {
   
    columns: 2;
}
}.navbar_fixed {
    position: fixed !important;
    top: 0;
    width: 100%;
    z-index: 3;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1); /* Optional: add shadow for effect */
} .navbar_fixed .logo img {
        height: 75px !important;
        padding: 5px 0 5px !important;
    }

.navbar_fixed .phone-email {
    
    color: #000 !important;
   
}
.navbar_fixed  .phone-email small a {
   
    color: #000 !important;
}
.navbar_fixed  .nav-txt {
    color: #000 !important;
   
} 
.navbar_fixed .hamburger span {
 
  background: #000;
 
}
  .navbar .hamburger.open{
    z-index: 99;
  }
  .navbar_fixed.hamburger.open {
  
    z-index: 99 !important;

  }
.navbar_fixed .hamburger.open span {
    background: #fff;
}


    .prj-name, .page-banner h1 {
    font-size: 36px;
    line-height: 1.2;
        font-family: "Playfair Display", serif;
}

    .ps-description {
    text-align: center;
    padding: 20px 16px 0
}

.ps-description-title {
    text-align: center;
    position: relative
}

.ps-description-title span {
    display: inline-block;
    background: #fff;
    position: relative;
    z-index: 1;
    padding: 0 8px;
    font-size: 14px;
    text-transform: uppercase
}

.ps-description-title:before {
    content: "";
    background: #d8d8d8;
    width: 100%;
    height: 1px;
    position: absolute;
    left: 0;
    top: 12px
}

.psd-address {
    font-size: 14px;
    color: #666;
    text-transform: uppercase;
    position: relative;
    padding-left: 16px;
    display: inline-block;
    margin-bottom: 16px;
    margin-top: 8px
}

.psd-address:before {
    content: url(/wp-content/themes/neve-child/images/ps-marker.svg);
    display: inline-block;
    position: absolute;
    top: 2px;
    left: 0
}
@media (min-width: 1200px) {
    .ps-description-sec .ps-description-inner {
        margin-top: -100px;
    }
}
.ps-description-sec .ps-description-inner {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    background: #fff;
    box-shadow: 0 0 16px rgb(0 0 0 / .16);
    padding: 50px 30px;
    margin-top: -60px;
        z-index: 0;
    position: relative;
}

.rm--btn {
    position: relative;
    color: #1c74bc;
    border: 0;
    background: #fff0;
    padding: 0;
   
    text-decoration: underline;
    font-size: 18px;
    font-weight: 600;
}

.project-details {
    flex: 1;
    min-width: 300px;
    padding: 60px 0;
}
.project-details h2 {
    font-size: 28px;
    margin-bottom: 20px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 5px;
}
.project-details table {
    width: 100%;
    border-collapse: collapse;
}
.project-details td {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    vertical-align: top;
}
.project-details td a {
    color: #9f8054;
    font-weight: 800;
    text-decoration: none;
}
.project-details td a:hover {
    text-decoration: underline;
}
.project-details td strong {
    font-weight: bold;
}

.enquiry-form {
    flex: 1;
    min-width: 300px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    background: #fff;
}
.enquiry-form h4 {
    color: #777;
    font-size: 14px;
    margin: 0 0 10px;
    text-transform: uppercase;
}
.enquiry-form h3 {
    font-size: 20px;
    font-weight: normal;
    margin: 0 0 20px;
}
.enquiry-form form {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.enquiry-form input, .enquiry-form textarea {
    width: 100%;
    border: none;
    border-bottom: 1px solid #ccc;
    padding: 8px 0;
    font-size: 14px;
}
.enquiry-form .half {
    width: calc(50% - 10px);
}
.enquiry-form textarea {
    resize: none;
    min-height: 80px;
}
.enquiry-form button {
    background: #000;
    color: #fff;
    padding: 12px 20px;
    border: none;
    cursor: pointer;
    font-size: 14px;
}
.enquiry-form button:hover {
    background: #333;
}
/*.amenities-row {
    margin: 0 -75px;
}*/
.amenities-icon-box{
    padding: 30px 10px;
     text-align: center;
     border: 1px solid #ececec;
     margin-bottom: 20px;
      height: 200px; 
        background: #ececec;
    border-radius: 10px;
}
.amenities-icon-box p{
  font-size: 16px;
  line-height: 22px;
}
.amenities-icon-box img {
    width: 25% !important;
}
.ps-amenities-sec{
   padding: 50px 0 80px;
   background-image: url('../images/bg5.jpg');
   background-blend-mode: overlay;
    background-color: #ebe4e4;
    
}

.project-details-sec{
  width: 100%;
  height: 100vh;
  max-height: 500px;
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
  background-size: cover !important;
  background-position: top !important;
  background-repeat: no-repeat !important;
}

.faq {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 50px 0;
}

.faq .sidebox {
  width: calc(100% - 70px);
  float: left;
  margin-left: 70px;
  padding: 40px 30px;
  text-align: center;
  background: #9f8054; /* Replace with your $color-brown value */
  color: #fff;
  position: -webkit-sticky !important;
  position: sticky !important;
  top: 0;
}

.faq .sidebox i {
  font-size: 100px;
  margin-bottom: 20px;
  display: inline-block;
}

.faq .sidebox h3 {
  display: block;
  /* Replace @include second-font with your actual font styles */
 
  margin-bottom: 20px;
}

.faq .sidebox p {
  color: #fff;
}


.accordion-container {
  /*max-width: 600px;*/
  margin: auto;
  /*border-radius: 8px;*/
  overflow: hidden;
}

.accordion-item {
  background: #fff;
}
.accordion-header p{
  text-align: left;
  margin-bottom: 0;
  font-size: 16px;
}

.accordion-header {
 
  position: relative;
  width: 100%;
  padding: 10px 20px;
  /*margin-top: 30px;*/
    font-size: 19px;
    font-weight: 600;
     background: transparent;
  border: none;
  /*border-radius: 10px;*/
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  box-shadow: inset 0 -2px 0 #ececec
    0 4px 6px #ececec;
  transition: background #ececec,
    box-shadow #ececec;
  color: #000;
}

.accordion-header:before {
  /*content: "";
  transition: all 0.3s ease;
  width: 91px;
  height: 15px;
  position: absolute;
  right: 17px;
  top: -14px;
  background-color: var(--color-accordion-header-bg);
  clip-path: polygon(5% 0%, 95% 0%, 100% 100%, 0% 100%);*/
}.accordion-header.active.accordion-header:before,
.accordion-header:hover.active.accordion-header:before {
  background-color: #afaaa4;
  width: 120px;
}
.accordion-item{
      position: relative;
    border: 1px solid #dedede;
    border-bottom: 0;
}
.accordian_item:last-child {
    border-bottom: 1px solid #dedede !important;
}
.accordion-header:hover.accordion-header:before {
  background-color: #afaaa4;
  width: 120px;
}
.active .accordion-header:before {
  background-color: #afaaa4;
  width: 120px;
}
.active  .accordion-header {
  background: transparent;
  /*color: #fff;*/
}
.accordion-header:hover {
 background: transparent;
  /*color: #fff;*/
}
.accordion-header.active {
     background: #9e8157;
    color: #fff;
    border-radius: 10px 10px 0 0;
    box-shadow: inset 0 -2px 0 #ececec, 0 6px 10px #fff;
}

.icon {
  transition: transform var(--accordion-duration);
  color: var(--color-icon);
}

.accordion-header.active .icon {
  transform: rotate(var(--icon-rotate-open));
}

.accordion-content {
 /* box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.08),
    inset 0 -1px 3px rgba(0, 0, 0, 0.05);*/
  padding: 0 10px;
  /*max-height: 0;*/
  overflow: hidden;
  transition: max-height var(--accordion-duration) ease;
  background: var(--color-accordion-content-bg);
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
  position: relative;
   transition: max-height 0.6s ease;
}

.accordion-body {
  /*font-family: "Patrick Hand", cursive;*/
  background-color: white;
  /*margin: 10px 10px -10px 10px;*/
      padding: 8px 13px 20px 13px;
  border-radius: 10px;
  transform: rotate(-0.5deg);
  /*background-image: repeating-linear-gradient(
    to bottom,
    #c8d6e53d 0px,
    #c8d6e54f 1px,
    transparent 1px,
    transparent 28px
  );*/
  background-size: 100% 25px;
  background-position: left top;
  background-repeat: repeat;
/*  box-shadow: 
    0 1px 0 rgba(0, 0, 0, 0.05), 
    3px 3px 0 var(--color-shadow-paper-1),
    6px 6px 0 var(--color-shadow-paper-2),
    9px 9px 0 var(--color-shadow-paper-3),
    0 4px 6px rgba(0, 0, 0, 0.1),
    0 1px 3px var(--color-shadow-subtle);*/
  opacity: 1;
  transition: all 0.3s ease-in-out;
}
.accordion-content:before{
  position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background-color: #856d47;
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.accordion-header.active + .accordion-content .accordion-body {
  animation: slideUp 0.6s ease-out forwards;
}

@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(40px) rotate(-2deg);
  }
  60% {
    opacity: 1;
    transform: translateY(-10px) rotate(2deg);
  }
  80% {
    opacity: 1;
    transform: translateY(5px) rotate(-1deg);
  }
  100% {
    opacity: 1;
    transform: translateY(0) rotate(0deg);
  }
}

.accordion-content p {
  padding: 0;
  margin: 0;
  /*padding-left: 10px;*/
  line-height: 30px;
}

/* Responsive */
@media (max-width: 600px) {
  .accordion-header {
    font-size: 15px;
    padding: 12px 16px;
  }

  .accordion-content {
    padding: 0 16px;
  }
}

.badge-sticky {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--color-badge-bg);
  color: var(--color-badge-text);
  padding: 8px 14px;
  border-radius: 20px;
  font-family: Arial, sans-serif;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  transition: background-color 0.3s ease;
  animation: popBounce 1.2s ease forwards;
}

@keyframes popBounce {
  0% {
    opacity: 0;
    transform: translateX(-50%) scale(0.5);
  }
  60% {
    opacity: 1;
    transform: translateX(-50%) scale(1.15);
  }
  80% {
    transform: translateX(-50%) scale(0.95);
  }
  100% {
    transform: translateX(-50%) scale(1);
  }
}

.badge-sticky:hover {
  background-color: var(--color-badge-bg-hover);
}
.checklist {
      list-style: none;
      /*padding: 0;*/
     margin-left: 2em;
      
    }

    .checklist li {
      display: flex;
      align-items: flex-start;
      margin-bottom: 10px;
    }

    .checklist i {
        color: #afaaa4;
    font-size: 24px;
    margin-right: 5px;
    flex-shrink: 0;
    margin-top: 2px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    left: 51px;

    }

    .checklist-content h2 {
      font-size: 18px;
      margin: 0 0 5px;
      color: #222;
    }

    .checklist-content p {
          margin: 0;
    color: #000;
    /*font-size: 20px;*/
    line-height: 32px;
    font-family: 'Kumbh Sans';
    }
.why-choose-us1 {
       padding: 70px 0 !important;
    background: #f7f7f7;
    
}
.about-one__shape-6 {
    position: absolute;
    /*top: 270px;*/
    left: 0;
}
.about-one__shape-6 img {
    width: auto;
}
.about-one__shape-3 {
    position: absolute;
    /*top: -419px;*/
    right: 0px;
    /*opacity: .30;*/
}

.about-one__shape-3 img {
    width: auto;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.gallery-swipe img {
  width: 200px;
  height: auto;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s;
}
.gallery-swipe img:hover {
  transform: scale(1.05);
}
.gallery-swiper img{
  height: 350px;
   border: 10px solid #fff;
   object-fit: cover;
   width: 100%;
}

.project-banner {
  position: relative;
  width: 100%;
  height: 90vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  color: #fff;
}

.project-banner .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4); /* dark overlay */
}

.banner-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
  /*padding: 0 50px;*/
}

.banner-content .sub-title {
  display: inline-block;
  margin-bottom: 15px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  border-bottom: 1px solid #fff;
  padding-bottom: 5px;
}

.banner-content h1 {
  font-size: 42px;
  margin: 0 0 20px;
  font-weight: 700;
  line-height: 1.2;
}

.banner-content p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.banner-content .btn {
  display: inline-block;
  background: #fff;
  color: #000;
  padding: 12px 25px;
  text-decoration: none;
  font-weight: 600;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.banner-content .btn:hover {
  background: #000;
  color: #fff;
}
.project-banner {
    width: 100%;
    height: 100vh;
    min-height: 600px;
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.filter-section {
      display: flex;
      justify-content: center;
      gap: 40px;
      padding: 40px 20px;
    }

    .filter-box {
      flex: 1;
      max-width: 300px;
    }

    .filter-label {
      font-weight: 700;
      font-size: 14px;
      letter-spacing: 1px;
      display: flex;
      align-items: center;
      gap: 6px;
      margin-bottom: 10px;
      text-transform: uppercase;
      color: #000;
    }

    .filter-label i {
      color: #0073e6;
      font-size: 14px;
    }

    .custom-select {
      position: relative;
      font-size: 15px;
      color: #666;
          border: none;
    }

    .custom-select select {
      appearance: none;
      -webkit-appearance: none;
      -moz-appearance: none;
      background: transparent;
      border: none;
      border-bottom: 1px solid #333;
      padding: 5px 25px 5px 0;
      font-size: 15px;
      color: #666;
      width: 100%;
      cursor: pointer;
    }

    .custom-select:after {
      content: "▾";
      position: absolute;
      right: 5px;
      top: 50%;
      transform: translateY(-50%);
      font-size: 14px;
      color: #333;
      pointer-events: none;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .filter-section {
        flex-direction: column;
        align-items: stretch;
      }
    }

    .project-vertical-block {
    padding: 20px;
    border: 1px solid #dedede;
    position: relative;
    /*height: 100%;*/
    overflow: hidden;
    margin-bottom: 25px;
}

.block-link {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}.project-vertical-block .project-status {
    position: absolute;
    top: 0;
    right: 30px;
}

.project-status.under-construction {
    background-color: #303030;
}
.project-status.under-construction {
    background-color: #303030;
}
.project-status {
    background-color: #856d47;
    color: #fff;
    font-size: 10px;
    line-height: 10px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 6px 5px 4px;
}.projects-img {
    position: relative;
}picture {
    display: block;
}
.img-fixed-ratio {
    width: 100% !important;
    aspect-ratio: 16 / 9 !important;
    object-fit: cover !important;
    object-position: center !important;
    height: auto !important;
}
.project-vertical-block .project-logo {
    position: absolute;
    bottom: 8px;
    left: 8px;
    background-color: #fff;
}
.project-logo {
    border: 1px solid #f6f6f6;
}
.project-vertical-block .project-title-and-price {
    position: relative;
    z-index: 2;
}
.project-title h1, .project-title h2, .project-title h4
 {
    font-size: 24px;
    line-height: 26px;
    font-weight: 400;
    color: #856d47;
    margin-bottom: 5px;
}
.project-desc-price {
    display: flex
;
    flex-direction: column;
    flex-wrap: wrap;
    margin: 6px -15px 0;
    gap: 5px;
}
.project-desc-price span {
    font-size: 14px;
    display: block;
    padding: 0 15px;
}
.project-desc-price .project-price {
    color: #856d47;
    font-weight: 600;
}
.project-desc-price span {
    font-size: 14px;
    display: block;
    padding: 0 15px;
}
.cursor-pointer, .theme-toast-close {
    cursor: pointer;
}
    .project-configurations {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: 0;
}.project-configurations {
    position: relative;
    border-top: 1px solid #dedede;
    /*border-bottom: 1px solid #dedede;*/
    padding: 16px 0 0;
    margin: 16px 0 0;
    
}
@media(min-width: 991px){
.project-configurations {
   
        height: 140px;
}}
.project-configurations ul {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -16px -16px;
      list-style: none;
        padding: 0;
}
.project-configurations ul li {
    width: 50%;
    flex: 0 0 50%;
    padding: 0 12px;
    margin-bottom: 12px;

}
.project-configurations-items {
    display: flex
;
    align-items: center;
    gap: 10px;
}
.project-configurations-icon {
    width: 30px;
    flex: 0 0 30px;
}
.project-configurations-icon svg {
    width: 30px;
    height: 30px;
    display: block;
    color: #7c7c7c;
}
.project-configurations-desc h4 {
    text-transform: uppercase;
    font-size: 11px;
    color: #7c7c7c;
        margin-bottom: 0;
}
.project-configurations-desc span {
    font-size: 14px;
}

.project-configurations-desc span {
    color: #856d47;
    font-weight: 600;
}

.project-list-sec{
  padding: 80px 0;
}

.project-contact-detail {
    position: absolute;
    bottom: -20px;
    left: 0;
    background-color: #f1e4c9;
    background: rgb(255 255 255 / 80%);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    width: 100%;
    padding: 10px 5px;
    border-top: 1px solid #dedede;
    opacity: 0;
    visibility: hidden;
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
    z-index: 9;
}
.project-contact-detail ul {
    display: flex
;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: -10px;
        list-style: none;
        padding-left: 0;
}
.project-contact-detail ul li {
    padding: 0 5px;
    margin-bottom: 10px;
    flex-shrink: 1;
    flex-grow: 1;
}
.project-contact-detail .theme-btn.line-btn {
    background-color: #f1e4c9;
}
.theme-btn.line-btn {
    background-color: transparent;
    border: 1px solid #856d47;
    color: #856d47;
}
.project-contact-detail ul li a {
    width: 100%;
    display: flex
;
    font-size: 12px;
    align-items: center;
    gap: 5px;
    justify-content: center;
    text-transform: none;
    padding: 7px;
}
.theme-btn {
    position: relative;
    background-color: #856d47;
    font-family: "Montserrat", sans-serif;
    border: 1px solid #856d47;
    color: #fff;
    display: inline-block;
    padding: 7px 16px;
    font-size: 14px;
    text-align: center;
    line-height: 24px;
    font-weight: 600;
    cursor: pointer;
    z-index: 1;
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
    text-transform: capitalize;
}
.project-contact-icon {
    display: flex
;
}
.project-vertical-block:hover .project-contact-detail {
    opacity: 1;
    visibility: visible;
    bottom: 0;
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.project-contact-detail .theme-btn.line-btn:hover {
    background-color: #856d47;
}
.theme-btn.line-btn:hover {
    background-color: #856d47;
    border: 1px solid #856d47;
    color: #ffffff;
}
.theme-btn:hover {
    color: #fff;
    background-color: #303030;
    border: 1px solid #ffffff30;
}
.project-contact-detail ul li.project-price-and-contact-item {
    flex-shrink: 0;
    flex-grow: 0;
}

.project-contact-detail ul li {
    padding: 0 5px;
    margin-bottom: 10px;
    flex-shrink: 1;
    flex-grow: 1;
}
.project-price-and-contact-item {
    padding: 0 7px !important;
    flex-shrink: 0;
    flex-grow: 0;
}
.divider-text, .divider-text-secondary {
    position: relative;
    text-align: center;
}
.divider-text h2 {
    position: relative;
    display: inline-block;
    padding: 10px 20px;
    background: #fff;
    z-index: 2;
     font-family: "Playfair Display", serif;
}
.divider-text:after {
    content: "";
    position: absolute;
    top: 40%;
    left: 0;
    width: 100%;
    height: 1px;
    background: #D8D8D8;
}
.divider-text h1 {
    position: relative;
    display: inline-block;
    padding: 10px 20px;
    background: #fff;
    z-index: 2;
    font-family: "Playfair Display", serif;
}

@media (min-width: 992px) {
    .sp-50 {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}
.list-items-check {margin:0;list-style:none;;}
.list-items-check li{    
  display: block;
    margin: 0 0 15px;
    display: block;
    /* color: #000; */
     font-size: 15px; 
    padding: 0 0 0 34px;
    position: relative;
    line-height: 25px;
    font-family: 'Kumbh Sans';}
.list-items-check li i{position:absolute;left:0;margin-top:2px;font-size:24px;color:#afaaa4}
p {
    margin-top: 0;
    margin-bottom: 1rem;
    line-height: 32px;
}
.py-70 {
    padding: 70px 0;
}
.award-col{
    overflow: hidden;
    margin-bottom: 30px;
}
.award-name{
    font-size: 24px;
    line-height: 27px;
    color: #000;
    font-weight: 800;
    text-align: center;
    margin-top: 10px;
     margin-bottom: 15px;
    max-width: 60%;
    position: relative;
    display: inline-block;
    transition: 0.3s ease;
}
.award-name a{
     color: #000;
}
.award-col:hover .award-name, .award-col:hover .award-name a{
    color: #856d47 !important;
    transition:color 0.3s ease;
}
.award-name::before,
.award-name::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 60px;
    height: 3px;
    background-color: #856d47;
}

.award-name::before {
    left: -80px;
}

.award-name::after {
    right: -80px;
}

.award-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px 40px 10px 40px;
    cursor: pointer;
      /*box-shadow: #856d4738 0px 10px 36px 0px, rgba(73, 179, 59, 0.1) 0px 0px 0px 1px;*/
      border: 5px double #e0dddc;
    padding: 30px;

}
.award-card img {
    height: 370px;
    width: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
}
.award-card::before {
    content: "";
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #9b979047;
    transition: top 0.4s ease-in-out;
    z-index: 1;
}
.href-icon-wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0;
    background-color: #fff;
    z-index: 2;
    transition: all 0.4s ease-in-out;
   height: 50px;
   width: 50px;
   border-radius: 10px;
   display: flex;
   justify-content: center;
   align-items: center;
}
.href-icon-wrap i{
    font-size: 30px;
    color:#856d47;
}
.award-card:hover::before {
    top: 0;
}
.award-card:hover .href-icon-wrap {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}
.translate-btn{
    margin-top: -20px;
    display: block;
    text-align: end;
    color: #49B33B;
    font-weight: 600;
}
.page-header .container .breadcrumb {
    position: absolute;
    left: 15px;
    bottom: -30px;
    background: #9f8054;
    width: 70%;
    padding: 20px 30px;
    padding-right: 60px;
    margin: 0;
}
.breadcrumb .breadcrumb-item.active {
    color: #ebcfa7;
}
.breadcrumb .breadcrumb-item {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    padding: 0;
}
.breadcrumb-item.active {
    color: #6c757d;
}
.breadcrumb-item+.breadcrumb-item {
    padding-left: .5rem;
}
.breadcrumb .breadcrumb-item a {
    color: #fff;
}
.breadcrumb-item+.breadcrumb-item::before {
   
    color: #fff;
   
}
.facilities {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 50px 0;
}

.facilities b {
  display: block;
  font-size: 30px;
  font-weight: 800;
  opacity: 0.2;
}

.facilities h4 {
  display: block;
  font-size: 30px;
  margin-bottom: 15px;
  /* @include second-font;  --> replace with actual font-family */
}

.facilities h4 span {
  color: #9f8054; /* replace $color-brown */
}

.facilities small {
  display: block;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 40px;
  opacity: 0.5;
}

.facilities small:after {
  content: "";
  width: 50px;
  height: 1px;
  background: #333; /* replace $color-dark */
  display: inline-block;
  margin-left: 5px;
  margin-bottom: 4px;
  opacity: 0.5;
}

.facilities figure {
  width: 100%;
  float: left;
  margin: 15px 0;
  padding: 50px 30px;
  box-shadow: 0 0 20px rgba(235, 207, 167, 0.4);
}

.facilities figure img {
  height: 70px;
  float: left;
}

.facilities figure figcaption {
  width: calc(100% - 90px);
  float: right;
}

.facilities figure figcaption h5 {
font-size: 26px;
    font-family: 'Playfair Display';
        color: #9e8157;
}

.facilities figure figcaption p {
 font-size: 17px;
  margin: 0;
}
.contact-section {
      /*max-width: 900px;*/
      margin: 50px auto;
      padding: 30px;
      background: #fff;
      box-shadow: 0px 4px 15px rgba(0,0,0,0.08);
      border-radius: 5px;
    }

    .contact-section h2 {
      text-align: center;
      font-size: 28px;
      margin-bottom: 10px;
      font-weight: 500;
    }

    .contact-section p {
      text-align: center;
      margin-bottom: 30px;
      color: #555;
    }

    form {
      width: 100%;
    }

    .form-row {
      display: flex;
      gap: 20px;
      margin-bottom: 20px;
    }

    .form-group {
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    label {
      font-size: 14px;
      margin-bottom: 5px;
      font-weight: 600;
    }

    input, textarea {
      border: none;
      border-bottom: 1px solid #ccc;
      padding: 10px 0;
      font-size: 15px;
      outline: none;
      transition: border-color 0.3s ease;
    }

    input:focus, textarea:focus {
      border-color: #000;
    }

    textarea {
      min-height: 100px;
      resize: vertical;
    }

    .checkbox-group {
      display: flex;
      align-items: flex-start;
      margin: 15px 0;
      font-size: 14px;
      color: #333;
    }

    .checkbox-group input {
      margin-right: 10px;
      margin-top: 3px;
    }

    .submit-btn {
      display: block;
      margin: 20px auto 0;
      background: #000;
      color: #fff;
      padding: 12px 40px;
      border: none;
      cursor: pointer;
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 1px;
      transition: background 0.3s ease;
    }

    .submit-btn:hover {
      background: #444;
    }

    @media (max-width: 768px) {
      .form-row {
        flex-direction: column;
      }
    }
    .footer-bar {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
      margin: 80px 0 0;
  /*margin-bottom: -80px;*/
}

.footer-bar .inner {
  background: #7c7c7c; /* replace $color-brown with its hex value */
  padding: 60px 30px;
  color: #fff;
}

.footer-bar .inner figure {
  margin-bottom: 20px;
  /*float: left;
  margin-right: 30px;*/
}

.footer-bar .inner figure img {
  /*height: 70px;*/
}

.footer-bar .inner h3 {
font-family: 'Playfair Display';
    font-size: 16px;
    /* margin-bottom: 15px; */
    line-height: 20px;
}

.footer-bar .inner p {
  font-size: 14px;
  margin: 0;
}

.footer-bar .inner strong {
  font-weight: 600;
  text-decoration: underline;
}


            .sidebar-active {
                overflow: hidden;
            }

            .theme-sidebar {
                position: fixed;
                top: 0;
                right: 0;
                z-index: 1111;
                pointer-events: none;
                left: 0px;
                background: rgba(51, 51, 51, 0.9);
                width: 100vw;
                height: 100vh;
                opacity: 0;
                transition: all 0.3s linear;
                -moz-transition: all 0.3s linear;
                -ms-transition: all 0.3s linear;
                -o-transition: all 0.3s linear;
                -webkit-transition: all 0.3s linear;
            }

            .theme-sidebar.active {
                opacity: 1;
                pointer-events: auto;
            }

            .theme-sidebar.theme-full-sidebar .theme-sidebar-card {
                top: -100%;
                right: 0;
            }

            .theme-sidebar.theme-full-sidebar.active .theme-sidebar-card {
                top: 0;
            }

            .theme-full-sidebar .close-sidebar {
                position: absolute;
                top: 10px;
                right: 10px;
            }

            .theme-sidebar-sm .form-group:last-child {
                margin-bottom: 0;
            }

            .theme-sidebar-action {
                display: flex;
            }

            .theme-sidebar-contant {
                position: relative;
                height: calc(100vh - 65px);
                padding: 30px;
            }

            .theme-sidebar-footer {
                padding: 1rem 2rem 1rem;
                background-color: #fff;
            }

            .theme-sidebar-card {
                position: fixed;
                top: 0;
                right: -100%;
                background-color: #fff;
                height: 100%;
                width: 100%;
                display: flex;
                flex-direction: column;
                transition: all 0.3s linear;
                -moz-transition: all 0.3s linear;
                -ms-transition: all 0.3s linear;
                -o-transition: all 0.3s linear;
                -webkit-transition: all 0.3s linear;
            }

            .theme-sidebar.theme-sidebar-lg .theme-sidebar-card {
                width: 79.625rem;
            }

            .theme-sidebar.theme-sidebar-md .theme-sidebar-card {
                width: 59rem;
            }

            .theme-sidebar.theme-sidebar-sm .theme-sidebar-card {
                width: 22.75rem;
            }

            .theme-sidebar-header {
                display: flex;
                align-items: center;
                gap: 1.5rem;
                justify-content: end;
                padding: 20px 30px;
            }

            .theme-sidebar-title {
                margin-bottom: 0;
                font-size: 1.125rem;
            }

            .theme-sidebar.active .theme-sidebar-card {
                right: 0;
            }

            .theme-sidebar-detail {
                position: relative;
                overflow: hidden;
            }

            .sidebar-filter-detail .custom-checkbox-btn:last-child, .sidebar-filter-detail .custom-radio-btn:last-child {
                padding-right: 8px;
            }

            .close-sidebar {
                display: flex;
                align-items: center;
                cursor: pointer;
                color: #000000;
                transition: all 0.3s linear;
                -moz-transition: all 0.3s linear;
                -ms-transition: all 0.3s linear;
                -o-transition: all 0.3s linear;
                -webkit-transition: all 0.3s linear;
            }

            .close-sidebar:hover {
                color: #856d47;
                transition: all 0.3s linear;
                -moz-transition: all 0.3s linear;
                -ms-transition: all 0.3s linear;
                -o-transition: all 0.3s linear;
                -webkit-transition: all 0.3s linear;
            }

            .theme-sidebar-detail .select2-selection__rendered {
                white-space: pre-wrap !important;
            }

            .theme-sidebar-detail .select2-container .select2-selection--single {
                height: auto !important;
            }

            .theme-sidebar .search-by-project-name {
            }

            .sidebar-filter-items {
                padding: 0 30px;
            }

            .sidebar-filter-btn {
                padding: 0 30px;
            }

            .top-range-slider.custom-range-slider ul {
                position: absolute;
                top: -40px;
                right: 0;
            }

            .top-range-slider.custom-range-slider .custom-range-title {
                max-width: 90px;
            }

            .irs--round .irs-bar {
                background-color: #856d47;
                top: 0;
            }

            .irs--round .irs-handle {
                background-color: #856d47;
                border: 2px solid #fff;
            }

            .irs--round .irs-handle.state_hover, .irs--round .irs-handle:hover {
                background-color: #856d47;
            }

            .irs--round .irs-handle {
                width: 14px;
                height: 14px;
                top: -5px;
            }

            .irs--round .irs-from, .irs--round .irs-to, .irs--round .irs-single {
                background-color: transparent;
                color: #666;
            }

            .irs-from, .irs-to, .irs-single, .irs--round .irs-from:before, .irs--round .irs-to:before, .irs--round .irs-single:before, .irs--round .irs-min, .irs--round .irs-max {
                display: none;
            }

            .dark-range-slider .irs--round .irs-handle {
                border: 2px solid #000;
            }

            .img-fixed-ratio {
                width: 100% !important;
                aspect-ratio: 16/9 !important;
                object-fit: cover !important;
                object-position: center !important;
                height: auto !important;
            }

            .square-img-fixed-ratio {
                width: 100% !important;
                aspect-ratio: 1/1 !important;
                object-fit: cover !important;
                object-position: center !important;
                height: auto !important;
            }

            /*.theme-block {
                padding: 20px;
                border: 1px solid #dedede;
                height: 100%;
            }*/

            .theme-block-title h4 {
                font-size: 20px;
                font-weight: 600;
                color: #856d47;
                margin-bottom: 5px;
            }

            .theme-block-title span {
                font-size: 14px;
            }

            .theme-block-title {
                position: relative;
                margin-top: 16px;
            }

            .theme-img-title {
                position: absolute;
                bottom: 0;
                left: 0;
                color: #545454;
                font-size: 14px;
                background-color: #ffffffcc;
                width: 100%;
                padding: 6px 10px;
            }

            .theme-block-img {
                position: relative;
            }

            .theme-block-ybox .theme-block-img {
                border: 1px solid #dedede;
            }

            .theme-block-ybox .theme-block-img:before {
                position: absolute;
                content: "";
                left: 0;
                width: 100%;
                height: 100%;
                top: 0;
                background-color: #856d47;
                opacity: 0;
                visibility: hidden;
                -moz-transition: all 0.3s linear;
                -ms-transition: all 0.3s linear;
                -o-transition: all 0.3s linear;
                -webkit-transition: all 0.3s linear;
                transition: all 0.3s linear;
            }

            .theme-block-ybox:hover .theme-block-img:before {
                opacity: 0.6;
                -moz-transition: all 0.3s linear;
                -ms-transition: all 0.3s linear;
                -o-transition: all 0.3s linear;
                -webkit-transition: all 0.3s linear;
                transition: all 0.3s linear;
                visibility: visible;
            }

            .theme-block-ybox:hover .theme-block-icon {
                opacity: 1;
                visibility: visible;
            }

            .theme-block-ybox .theme-block-icon svg {
                border: 0;
                color: #fff;
                padding: 8px;
            }

            .theme-modal {
                position: fixed;
                top: 0;
                right: 0;
                bottom: 0;
                left: 0;
                overflow: hidden;
                outline: 0;
                opacity: 0;
                visibility: hidden;
                padding: 36px 0;
            }

            .theme-modal.is-active {
                visibility: visible;
                opacity: 1;
                overflow-x: hidden;
                overflow-y: auto;
                z-index: 9999;
            }

            .theme-modal-content {
                border: 0;
                border-radius: 0;
            }

            .theme-modal-card-head {
                background-color: transparent;
                border: 0;
                padding: 20px 30px;
                height: inherit;
                border-radius: 0;
                border-bottom: 1px solid rgb(255 255 255 / 20%);
            }

            .theme-modal-card {
                position: relative;
                top: -10px;
                max-width: 1200px;
                width: 100%;
                padding: 40px;
                max-height: inherit;
                transition: all 0.3s linear;
                background-color: #fff;
                margin: 0 auto;
            }

            #home.is-active {
                overflow: hidden;
            }

            .theme-modal.is-active .theme-modal-card {
                top: 0;
            }

            .close:hover {
                color: #856d47;
            }

            .theme-modal-card-header {
                position: relative;
                display: flex;
                align-items: center;
                margin-bottom: 24px;
            }

            .theme-modal-card-title {
                margin: 0;
                text-transform: uppercase;
            }

            .theme-modal-background {
                background-color: #000;
                transition: all 0.3s linear;
                opacity: 0;
                visibility: hidden;
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
            }

            .theme-dropdown-menu.is-active .theme-modal-background, .theme-modal.is-active .theme-modal-background {
                opacity: 0.1;
                visibility: visible;
            }

            .theme-modal[style="visibility: visible;"] .theme-modal-card {
                -webkit-transform: translate(0, -50%);
                -ms-transform: translate(0, -50%);
                -o-transform: translate(0, -50%);
                transform: translate(0, -50%);
                opacity: 1;
            }

            .theme-modal[style="visibility: visible;"] .theme-modal-background {
                opacity: 0.9;
                visibility: visible;
            }

            .theme-modal-card-body {
                border: 0;
                position: relative;
                overflow: visible;
                border-radius: 10px;
            }

           .close {
    color: #fff !important;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-shadow: none;
    opacity: 1;
    border: none;
    background-color: transparent;
    position: absolute;
    top: 30px;
    right: 40px;
    margin: 0 auto;
    z-index: 10;
    cursor: pointer;
    background-color: #9f8054 !important;
}

            .close1:hover, .close:hover {
                color: #856d47;
                opacity: 1;
            }

            .theme-modal-card-body:before {
                left: 0;
            }

            .theme-modal-card-body:after {
                right: 0;
            }

            .theme-modal-card-title {
                color: #020203;
                font-weight: 400;
                line-height: 1.4;
                margin-bottom: 5px;
            }

            .col-theme-modal .section-title {
                margin-bottom: 15px;
            }

            .theme-modal .section-title h2 {
                font-size: 26px;
                line-height: 30px;
                color: #fff;
            }

            .theme-block-floting-tag {
                position: absolute;
                background-color: #fff;
                border: 1px solid #dedede;
                font-size: 12px;
                font-weight: 500;
                padding: 4px 8px;
                left: 10px;
                bottom: 10px;
            }

            .list-point {
                padding: 0;
                margin-bottom: 24px;
            }

            .list-point:last-child {
                margin-bottom: 0;
            }

            .list-point li {
                position: relative;
                list-style: none;
                padding-left: 20px;
                margin-bottom: 8px;
                line-height: 1.4;
            }

            .list-point li:last-child {
                margin-bottom: 0;
            }

            .list-point li:before {
                content: "";
                position: absolute;
                width: 3px;
                height: 3px;
                background: #545454;
                border-radius: 100%;
                left: 0;
                top: 7px;
            }

            .theme-scrollbar {
                overflow-x: hidden;
                overflow-y: auto;
                padding-right: 10px;
            }

            .theme-scrollbar::-webkit-scrollbar-track {
                -webkit-box-shadow: none;
                background-color: transparent;
            }

            .theme-scrollbar::-webkit-scrollbar {
                width: 6px;
                background-color: transparent;
            }

            .theme-scrollbar::-webkit-scrollbar-thumb {
                background-color: #ddd;
                border-radius: 3px;
            }

            .theme-scrollbar-horizontal {
                overflow-x: auto;
                overflow-y: hidden;
                padding-bottom: 0;
            }

            .theme-scrollbar-horizontal::-webkit-scrollbar-track {
                -webkit-box-shadow: none;
                background-color: transparent;
                display: none;
            }

            .theme-scrollbar-horizontal::-webkit-scrollbar {
                height: 6px;
                display: none;
                background-color: transparent;
            }

            .theme-scrollbar-horizontal::-webkit-scrollbar-thumb {
                display: none;
                background-color: #ddd;
                border-radius: 3px;
            }
            a:active, a:focus, input, input:active, input:focus, input:hover, textarea, textarea:active, textarea:focus, textarea:hover {
    -moz-outline: none;
    outline: 0;
}
.form-control {
    display: block;
    width: 100%;
    color: #000000;
    background-color: #fff;
    background-clip: padding-box;
    border: 0;
    border-bottom: 1px solid #303030;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    font-family: "Argesta Display";
    padding: 9px 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 21px;
}

 .form-control {
                display: block;
                width: 100%;
                color: #000000;
                background-color: #fff;
                background-clip: padding-box;
                border: 0;
                border-bottom: 1px solid #303030;
                -webkit-appearance: none;
                -moz-appearance: none;
                appearance: none;
                border-radius: 0;
                transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
                font-family: "Argesta Display";
                padding: 9px 0;
                font-size: 16px;
                font-weight: 400;
                line-height: 21px;
            }

            .form-group.focused select.form-control {
                padding-top: 21px;
            }

            .form-group.focused .select2-selection {
                border-color: #856d47 !important;
            }

            .form-control:focus, .form-select:focus {
                border-color: #856d47;
            }

            .form-floating>.form-control:focus~label, .form-floating>.form-control:not(:placeholder-shown)~label, .form-floating>.form-select~label {
                color: #856d47;
            }

            ::placeholder {
                color: #aaaaaa !important;
                font-weight: 400;
            }

            .form-check {
                display: block;
                min-height: 1.378125rem;
                padding-left: 22px;
                margin-bottom: 0;
                cursor: pointer;
            }

            .form-check .form-check-input {
                float: left;
                margin-left: -1.7em;
                cursor: pointer;
            }

            .form-check-reverse {
                padding-right: 1.7em;
                padding-left: 0;
                text-align: right;
            }

            .form-check-reverse .form-check-input {
                float: right;
                margin-right: -1.7em;
                margin-left: 0;
            }

            .form-check-input {
                width: 1.2em;
                height: 1.2em;
                margin-top: 0.135em;
                vertical-align: top;
                background-color: #fff;
                background-repeat: no-repeat;
                background-position: center;
                background-size: contain;
                border: 1px solid #bbbbbb;
                -webkit-appearance: none;
                -moz-appearance: none;
                appearance: none;
                -webkit-print-color-adjust: exact;
                print-color-adjust: exact;
            }

            .form-check-input[type="checkbox"] {
                border-radius: 0.25em;
            }

            .form-check-input.form-custom-item .form-custom-input {
                border-radius: 50%;
            }

            .form-check-label {
                font-size: 13px;
                font-weight: 500;
                color: #7c7c7c;
                cursor: pointer;
            }

            .form-check-input:active {
                filter: brightness(90%);
            }

            .form-check-input:focus {
                border-color: #856d47;
                outline: 0;
                box-shadow: 0 0.125rem 0.25rem rgba(165, 163, 174, 0.3);
            }

            .form-check-input:checked {
                background-color: #856d47;
                border-color: #856d47;
            }

            .form-check-input:checked[type="checkbox"] {
                background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='13' viewBox='0 0 15 14' fill='none'%3E%3Cpath d='M3.41667 7L6.33333 9.91667L12.1667 4.08333' stroke='%23fff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
            }

            .form-check-input:checked.form-custom-item .form-custom-input {
                background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='5' y='5' width='8' height='8' rx='4' fill='%23fff'/%3E%3C/svg%3E%0A");
            }

            .form-check-input[type="checkbox"]:indeterminate {
                background-color: #856d47;
                border-color: #856d47;
                background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.5 9H12.5' stroke='%23fff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
            }

            .form-check-input[type="radio"] {
                border-radius: 50%;
            }

            .form-check-input:checked[type="radio"] {
                background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='5' y='5' width='8' height='8' rx='4' fill='%23fff'/%3E%3C/svg%3E%0A");
            }

            .form-check-input:disabled {
                pointer-events: none;
                filter: none;
                opacity: 0.5;
            }

            .form-check-input[disabled]~.form-check-label, .form-check-input:disabled~.form-check-label {
                cursor: default;
                opacity: 0.5;
            }

            .form-control:focus~.form-label {
                border-color: #856d47;
            }

            .form-control:focus~.form-label::after {
                border-color: inherit;
            }

            .form-group.focused .floating-label {
                opacity: 1;
                color: #7c7c7c;
                top: -7px;
                left: 14px;
                padding: 0 4px;
                font-size: 12px;
                font-weight: 500;
                background-color: #fff;
                width: initial;
            }

            .custom-file-upload {
                cursor: pointer;
            }

            .custom-file-upload .form-control {
                opacity: 0;
                position: absolute;
                top: 0;
                left: 0;
                cursor: pointer;
            }

            .custom-file-label {
                display: block;
                width: 100%;
                color: #000000;
                background-color: #fff;
                background-clip: padding-box;
                border: 0;
                border-bottom: 1px solid #7c7c7c;
                -webkit-appearance: none;
                -moz-appearance: none;
                appearance: none;
                border-radius: 0;
                transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
                font-family: "Argesta Display";
                padding: 8px 30px 8px 0;
                font-size: 16px;
                font-weight: 400;
                line-height: 24px;
                cursor: pointer;
            }

            .custom-file-upload svg {
                position: absolute;
                top: 50%;
                right: 0;
                color: #303030;
                transform: translateY(-50%);
                -webkit-transform: translateY(-50%);
                -moz-transform: translateY(-50%);
                -ms-transform: translateY(-50%);
                -o-transform: translateY(-50%);
            }

            .custom-radio-btn, .custom-checkbox-btn {
                position: relative;
                display: block;
                text-wrap: nowrap;
            }

            .custom-radio-btn input, .custom-checkbox-btn input {
                position: absolute;
                width: 100%;
                height: 100%;
                border-radius: 0;
                border: 0;
                z-index: -9999;
                opacity: 0;
            }

            .custom-radio-btn label, .custom-checkbox-btn label {
                position: relative;
                color: #383838;
                background-color: #f8f8f8;
                padding: 7px 16px;
                display: block;
                font-size: 14px;
                font-weight: 400;
                line-height: 24px;
                border-radius: 30px;
                cursor: pointer;
                color: #7c7c7c;
                border: 1px solid #7c7c7c;
                background-color: transparent;
                font-family: "Argesta Display";
            }

            .horizontal-grid-item {
                display: inline-block;
                margin: 0 10px;
            }

            .custom-radio-btn input:checked+label, .custom-checkbox-btn input:checked+label {
                background-color: #856d47;
                color: #fff;
                border: 1px solid #856d47;
            }

            .checkbox[type="checkbox"]:checked+label, .radio[type="radio"]:checked+label {
                background-color: transparent;
            }.column {
    display: block;
    flex-basis: 0;
    flex-grow: 1;
    flex-shrink: 1;
    padding: 0.75rem;
}
.theme-sidebar.active {
    opacity: 1;
    pointer-events: auto;
}
.checkbox-text {
    font-size: 12px;
        line-height: 1.3;
}
.checkbox-desc{
  font-size: 12px;
        line-height: 1.3;
}
.view-plan{
  font-weight: bold;
     color: #9f8054;
}
.small, small {
    font-size: .875em;
}
.btn-close {
   
    box-sizing: content-box;
   /* width: 1em;
    height: 1em;*/
    padding: .25em .25em;
    color: var(--bs-btn-close-color);
    background: transparent var(--bs-btn-close-bg) center / 1em auto no-repeat;
    border: 0;
    border-radius: .375rem;
    opacity: var(--bs-btn-close-opacity);
        font-size: 32px;
}
.modal-header {
    display: -ms-flexbox;
    display: flex
;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0 20px !important;
    border-bottom: 1px solid #dee2e6;
    border-top-left-radius: .3rem;
    border-top-right-radius: .3rem;
    align-items: center;
}

.navbar_fixed .container .upper-side .phone-email h4 {
   color: #000;
}
.navbar_fixed .container .upper-side .phone-email h4 a{
   color: #000;
}
.navbar_fixed .container .upper-side .ph-em h4 a{
   color: #fff;
}
.navbar_fixed .container .upper-side .ph-em i{
   color: #fff !important;
}
.how-wrk{
  padding: 30px 10px;
    text-align: center;
    /* border: 1px solid #9E9E9E; */
    margin-bottom: 20px;
    height: 180px;
    background: #ececec;
    border-radius: 10px;
    clip-path: polygon(20% 0%, 80% 0%, 100% 20%, 100% 80%, 80% 100%, 20% 100%, 0% 80%, 0% 20%);
    border-radius: 3% 80px;
}
.how-wrk h4{
  font-size: 18px;
}
 h5 {
    font-size: 26px;
    font-family: 'Playfair Display';
    
}

.theme-block {
                padding: 20px;
                /*border: 1px solid #dedede;*/
                /*height: 100%;*/
                margin-bottom: 30px;
                box-shadow: 0 0 16px rgb(0 0 0 / .16);
            }

            .theme-block-title h4 {
                font-size: 20px;
                font-weight: 600;
                color: #856d47;
                margin-bottom: 5px;
            }

            .theme-block-title span {
                    font-size: 16px;
    line-height: 30px;
            }

            .theme-block-title {
                position: relative;
                margin-top: 16px;
            }

            .theme-img-title {
                position: absolute;
                bottom: 0;
                left: 0;
                color: #545454;
                font-size: 14px;
                background-color: #ffffffcc;
                width: 100%;
                padding: 6px 10px;
            }

            .theme-block-img {
                position: relative;
            }

            .theme-block-ybox .theme-block-img {
                border: 1px solid #dedede;
            }

            .theme-block-ybox .theme-block-img:before {
                position: absolute;
                content: "";
                left: 0;
                width: 100%;
                height: 100%;
                top: 0;
                background-color: #856d47;
                opacity: 0;
                visibility: hidden;
                -moz-transition: all 0.3s linear;
                -ms-transition: all 0.3s linear;
                -o-transition: all 0.3s linear;
                -webkit-transition: all 0.3s linear;
                transition: all 0.3s linear;
            }

            .theme-block-ybox:hover .theme-block-img:before {
                opacity: 0.6;
                -moz-transition: all 0.3s linear;
                -ms-transition: all 0.3s linear;
                -o-transition: all 0.3s linear;
                -webkit-transition: all 0.3s linear;
                transition: all 0.3s linear;
                visibility: visible;
            }

            .theme-block-ybox:hover .theme-block-icon {
                opacity: 1;
                visibility: visible;
            }

            .theme-block-ybox .theme-block-icon svg {
                border: 0;
                color: #fff;
                padding: 8px;
            }

            .theme-modal {
                position: fixed;
                top: 0;
                right: 0;
                bottom: 0;
                left: 0;
                overflow: hidden;
                outline: 0;
                opacity: 0;
                visibility: hidden;
                padding: 36px 0;
            }

            .theme-modal.is-active {
                visibility: visible;
                opacity: 1;
                overflow-x: hidden;
                overflow-y: auto;
                z-index: 9999;
            }

            .theme-modal-content {
                border: 0;
                border-radius: 0;
            }

            .theme-modal-card-head {
                background-color: transparent;
                border: 0;
                padding: 20px 30px;
                height: inherit;
                border-radius: 0;
                border-bottom: 1px solid rgb(255 255 255 / 20%);
            }

            .theme-modal-card {
                position: relative;
                top: -10px;
                max-width: 1200px;
                width: 100%;
                padding: 40px;
                max-height: inherit;
                transition: all 0.3s linear;
                background-color: #fff;
                margin: 0 auto;
            }
.testimonial-area{
  padding: 50px 0;
}
.more-text {
      display: none;
    }
    .read-more-btn {
      
      cursor: pointer;
      border: none;
      background: none;
     
      padding: 0;
    }
.clients-says-item{
padding: 20px 30px 30px;
    /*border: 3px double #f0d1a0;*/
    /* height: 100%; */
    margin-bottom: 30px;
    border-radius: 0 50px 50px;
    background: #fff;
    display: flex;
    justify-content: center;
    text-align: center;
    height: 300px;
  }
  .client-icon i{
        color: #856d47;
    font-size: 50px;
    margin-bottom: 10px;
  }
  #home-video{
    margin-top: -23px;
  }
  @media (min-width: 768px) {
    #home-video {
        /*width: 100vw;*/
        /*height: 100vh;*/
    }

    #home-video .wp-video-shortcode {
        width: 100%;
        /*height: 100%;*/
        object-fit: cover;
        object-position: bottom;
    }
}

@media (max-width: 767px) {
    #home-video {
        width: 100vw;
        height: 35vh;
    }

    #home-video .wp-video-shortcode {
        width: 100%;
        height: 260px;
        object-fit: cover;
    }
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.video-container video {
    width: 100%;
    height: auto;
    display: block;
}
.aws {
  padding-left: 15px;  /* adjust to your container */
  padding-right: 15px;
  box-sizing: border-box;
  overflow: hidden;    /* prevent horizontal scroll */
}

.awards-swiper {
  width: 100%;
  box-sizing: border-box;
}

.awards-swiper .swiper-wrapper {
  padding-left: 0;
  padding-right: 0;
  box-sizing: border-box;
}

.awards-swiper .swiper-slide {
  width: calc((100% / 3) - 16px);
  margin-right: 16px;
  box-sizing: border-box;
}

.award-card img {
    width: 100%;
    height: 359px;
    object-fit: contain;
    object-position: center;
}

.award-text {
  text-align: center;
  padding: 10px 5px;
}
.awards-swiper p{
  margin-top: 10px;
}
.support-us{
    display: flex;
    justify-content: center;
}
.support-us a {
  height: 60px;
  line-height: 60px;
  float: left;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding-bottom: 10px;
  position: relative;
  background: #26282b;
  padding: 0 40px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -ms-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
.support-us a i {
  margin-left: 10px;
}
.support-us a:hover {
  text-decoration: none;
  background: #fff;
  color: #9f8054;
}
   .project-configurations {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: 0;
}.project-configurations {
    position: relative;
    border-top: 1px solid #dedede;
    /*border-bottom: 1px solid #dedede;*/
    padding: 16px 0 0;
    margin: 16px 0 0;
    
}

.project-configurations1{
      position: relative;
  /*  border-top: 1px solid #dedede;
    border-bottom: 1px solid #dedede;*/
    /*padding: 16px 0;*/
}
.project-configurations1 ul {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -16px -16px;
      list-style: none;
        padding: 0;
}
.project-configurations1 ul li {
    width: 50%;
    flex: 0 0 50%;
    padding: 0 12px;
    margin-bottom: 12px;

}
.project-configurations-items1 {
    display: flex;
    align-items: self-start;
    gap: 10px;
}
.project-configurations-icon1 {
    width: 26px;
    flex: 0 0 18px;
}
.project-configurations-icon1 svg {
    width: 30px;
    height: 30px;
    display: block;
    color: #7c7c7c;
}
.project-configurations-desc1 h4 {
    text-transform: uppercase;
    font-size: 11px;
    color: #7c7c7c;
        margin-bottom: 0;
}
.project-configurations-desc1 span {
        font-size: 13px;
    /*text-transform: uppercase;*/
    /*height: 25px;*/
    /* position: relative; */
    display: block;
    /*overflow: hidden;*/
}

.project-configurations-desc1 span {
    color: #856d47;
    /*font-weight: 600;*/
}
 .project-configurations1 ul {
                display: flex;
                flex-wrap: wrap;
                margin: 0 -16px -16px;
            }

            .project-configurations1 ul li {
                width: 50%;
                flex: 0 0 50%;
                padding: 0 12px;
                margin-bottom: 17px;
            }


            .hover-card {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /*padding: 20px;*/
  /*border-radius: 10px;*/
  background: transparent;
  cursor: pointer;
  transition: all 0.4s ease;
  transform: translateY(0);
}

.hover-card .icon {
  transition: all 0.4s ease;
}

.hover-card figcaption {
  margin-top: 10px;
  font-weight: 600;
  transition: color 0.4s ease;
}

.hover-card:hover {
  background: #ffffff29;
  transform: translateY(-10px); /* slide up */
}

/*.hover-card:hover .icon {
  fill: #856d47;
}
*/
.hover-card:hover figcaption {
  color: #fff;
}

.swiper-button-prev,
.swiper-button-next {
  width: 40px;
  height: 40px;
  background: rgba(0,0,0,0.5);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 18px;
}
.navbar .hamburger.open span{
        background: #fff;
}

/*sticky form*/


.inqButtonDektop {
    position: fixed;
    bottom: 1rem;
    left: 20px;
    border-radius: 50px;
    padding: 10px 20px;
    z-index: 99;
    display: inline-flex;
    align-items: center;
    justify-content: center;
        color: #fff !important;
}

.inqButtonDektop i {
    width: 25px;
    display: inline-flex;
    height: 25px;
    background: rgba(0,0,0,.7);
    border-radius: 100%;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    font-size: 13px
}

.pulseanimation {
    animation: pulse-cust 2s infinite
}

@-webkit-keyframes pulse-cust {
    0% {
        -webkit-box-shadow: 0 0 0 0 #BD9A68
    }

    70% {
        -webkit-box-shadow: 0 0 0 20px transparent
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 transparent
    }
}

@keyframes pulse-cust {
    0% {
        -webkit-box-shadow: 0 0 0 0 #BD9A68
    }

    70% {
        -webkit-box-shadow: 0 0 0 20px transparent
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 transparent
    }
}

.whatsapp-floating {
      border-radius: 100%;
    display: flex
;
    justify-content: center;
    font-size: 24px;
    position: fixed;
    background: #0cbf0c;
    width: 50px;
    height: 50px;
    align-items: center;
    color: #fff;
    z-index: 9;
    bottom: 1rem;
    right: 1rem;
    line-height: 1
}
.fixed-call-btn, .mobile-inqury {
    height: 50px;
    background: #fff;
    z-index: 9;
        border-radius: 100%;
    display: flex
;
    justify-content: center;
    font-size: 24px;
    position: fixed;
        width: 50px;
    align-items: center;
    color: #432745;
    animation: 2s infinite zoom-in-zoom-out;
    bottom: 1rem;
    left: 1rem;
    border: 1px solid #cecece;
    background: #BD9A68 ;
}.form-control:focus {
    color: #495057;
    background-color: #fff;
    border-color: #80bdff;
    outline: 0;
    box-shadow: none;
}
.counter-box {
        text-align: center;
    padding: 20px 0;
    border: 1px solid #efe5d7;
    margin-bottom: 10px;
    }
    .counter-box h2 {
      font-size: 48px;
      font-weight: 500;
      color: #333;
    }
    .counter-box h2 span {
     
          font-family: "Playfair Display", serif;
    }
    .counter-box .count{
       color: #000; /* gold/brown accent */
    }
      .counter-box  .plus{
        color: #8a6d45;
      }
    .counter-box p {
      font-size: 16px;
         color: #000;
    margin-top: 5px;
    }
    .review-sec{
          position: relative;
    overflow: hidden;
    padding: 50px 0;
    background: #ececec;
    }
   .testimonial-slider .swiper-button-prev,
.swiper-button-next {
 
  background: #856d47;
  
}
.testimonial-slider .swiper-slide{
  margin: 10px 0;
}
.client-caption .cl-name{
font-weight: 600;
}
.client-caption .cl-job{
  font-weight: 600;
}

.share_get{
  display: none;
}
@media (max-width: 1024px) {
    .share_get.mob-view {
        background: #fff;
        padding: 12px 17px;
    }
}
@media (max-width: 991px) {
    .share_get.mob-view {
        bottom: 0;
        display: flex
;
        width: 100%;
        justify-content: space-between;
        left: 0;
        right: 0;
        position: fixed;
        z-index: 1001;
    }
    .share_get {
    bottom: 6.5%;
    gap: 10px;
    position: relative;
    right: unset;
    z-index: 99;
    width: fit-content;
    background: #fff;
    padding: 10px;
    left: 0;
    border-radius: 10px;
    box-shadow: 0 3px 20px #00000029;
}
 button.share_fix_new_mob {
        background: no-repeat padding-box #f5f5f6;
        border: 1px solid #bcbdc0a6;
        border-radius: 4px;
        width: 31%;
        display: flex
;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
        .share_get.mob-view button.share_fix_new_mob a {
        display: flex
;
        border: none !important;
        color: #141919;
        width: 100%;
        padding: 6px;
        font-size: 14px;
        gap: 4px;
        justify-content: center;
        align-items: center;
    }
}
@media (max-width: 767px) {
    .share_get {
        border-radius: 0 !important;
    }
}
@media (max-width: 1024px) {
   
}
.play_icn_p_content {
    color: #fff;
    padding-left: 8%;
    align-items: end;
    display: flex
}

.home_play_icn_p {
    display: flex;
    right: 3% !important
}

/*.fancybox-slide--iframe .fancybox-content {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
}*/
/*.home_play_icn_p img {
    width: 25%
}*/
.popup_video_cus.various.fancybox a,
.portfolio_caro .bg_yell {
    display: flex;
    align-items: center
}
.ply_icn_yellow img {
    width: 25%;
    border-radius: 50%;
    animation: 2s infinite pulse-red
}.ply_icn_yellow {
    position: absolute;
    top: 80%;
    right: 5%;
    cursor: pointer;
    z-index: 1;
}@keyframes pulse-red {
    0% {
        transform: scale(.95);
        box-shadow: 0 0 0 0 #edcb66
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(255, 82, 82, 0)
    }

    100% {
        transform: scale(.95);
        box-shadow: 0 0 0 0 rgba(255, 82, 82, 0)
    }
}
.scroll_sec {
      position: absolute;
    bottom: -5px;
    transform: translate(-50%, -50%);
    animation: 3s infinite bounce;
    z-index: 99;
    left: 50%;
}

@keyframes bounce {
    50% {
        transform: translatex(-50%)
    }
}

.scroll_sec p {
    color: #e6e7e8cc;
    font-weight: 300
}
 .pc-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9;
}
 .pc-whatsapp a {
    display: inline-flex;
    width: 100%;
    background: #00a315c7;
    align-items: center;
    padding: 12px 18px 12px 18px;
    border-radius: 50px;
    color: #fff;
    gap: 6px;
    backdrop-filter: blur(1px);
}
.pc-whatsapp a i {
    font-size: 26px;
}
.pc-whatsapp a span {
    font-size: 14px;
    font-weight: 400;
    font-family: 'Helvetica';
    letter-spacing: 0.7px;
}
.pc-whatsapp a::before, 
    .pc-whatsapp a::after {
      content: "";
      position: absolute;
      top: -5px;
      left: -5px;
      right: -5px;
      bottom: -5px;
      border: 2px solid #25d366;
      border-radius: 50px;
      animation: ripple 2s linear infinite;
      opacity: 0;
    }

    .pc-whatsapp a::after {
      animation-delay: 1s;
    }
    .btn4 {
    border: none;
    background: #503207;
    color: #111;
    padding: 10px 16px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    position: relative;
    z-index: 0;
    border-radius: 50px;
}
   .btn4:hover {
    background: #503207;
    transition: 0.5s;
}
.btn4::before, 
    .btn4::after {
      content: "";
      position: absolute;
      top: -5px;
      left: -5px;
      right: -5px;
      bottom: -5px;
      border: 1px solid #503207;
      border-radius: 50px;
      animation: ripple 2s linear infinite;
      opacity: 0;
    }
    @keyframes ripple {
      0% {
        transform: scale(1);
        opacity: 1;
      }
      70% {
        transform: scale(1.3);
        opacity: 0;
      }
      100% {
        transform: scale(1.4);
        opacity: 0;
      }
    }


.btn5 {
    border: none;
    background: #503207;
    color: #111;
    padding: 10px 16px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    position: relative;
    z-index: 0;
    border-radius: 50px;
}
   .btn5:hover {
    background: #503207;
    transition: 0.5s;
}
.btn5::before, 
    .btn5::after {
      content: "";
      position: absolute;
      top: -5px;
      left: -5px;
      right: -5px;
      bottom: -5px;
      border: 1px solid #503207;
      border-radius: 50px;
      animation: ripple 2s linear infinite;
      opacity: 0;
    }
    @keyframes ripple {
      0% {
        transform: scale(1);
        opacity: 1;
      }
      70% {
        transform: scale(1.3);
        opacity: 0;
      }
      100% {
        transform: scale(1.4);
        opacity: 0;
      }
    }

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