@font-face {
    font-family: 'Poppins';
    src: url('../assets/fonts/Poppins-Regular.eot');
    src: url('../assets/fonts/Poppins-Regular.eot?#iefix') format('embedded-opentype'),
        url('../assets/fonts/Poppins-Regular.woff2') format('woff2'),
        url('../assets/fonts/Poppins-Regular.woff') format('woff'),
        url('../assets/fonts/Poppins-Regular.ttf') format('truetype'),
        url('../assets/fonts/Poppins-Regular.svg#Poppins-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'FONTSPRING DEMO - The Seasons';
    src: url('../assets/fonts/FONTSPRINGDEMO-TheSeasonsRegular.eot');
    src: url('../assets/fonts/FONTSPRINGDEMO-TheSeasonsRegular.eot?#iefix') format('embedded-opentype'),
        url('../assets/fonts/FONTSPRINGDEMO-TheSeasonsRegular.woff2') format('woff2'),
        url('../assets/fonts/FONTSPRINGDEMO-TheSeasonsRegular.woff') format('woff'),
        url('../assets/fonts/FONTSPRINGDEMO-TheSeasonsRegular.ttf') format('truetype'),
        url('../assets/fonts/FONTSPRINGDEMO-TheSeasonsRegular.svg#FONTSPRINGDEMO-TheSeasonsRegular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'FONTSPRING DEMO - The Seasons Bold';
    src: url('../assets/fonts/FONTSPRINGDEMO-TheSeasonsBold.eot');
    src: url('../assets/fonts/FONTSPRINGDEMO-TheSeasonsBold.eot?#iefix') format('embedded-opentype'),
        url('../assets/fonts/FONTSPRINGDEMO-TheSeasonsBold.woff2') format('woff2'),
        url('../assets/fonts/FONTSPRINGDEMO-TheSeasonsBold.woff') format('woff'),
        url('../assets/fonts/FONTSPRINGDEMO-TheSeasonsBold.ttf') format('truetype'),
        url('../assets/fonts/FONTSPRINGDEMO-TheSeasonsBold.svg#FONTSPRINGDEMO-TheSeasonsBold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}



.font-Poppins{font-family: 'Poppins';}
.font-TheSeasons{font-family: 'FONTSPRING DEMO - The Seasons';}
.font-TheSeasonsBold{font-family: 'FONTSPRING DEMO - The Seasons Bold';}

html { scroll-behavior: smooth; }

html{
  overflow-x: hidden !important;
}

body {
  font-family: 'Poppins';
  background-color: black;
}

input:focus, select:focus,
input:focus-visible, select:focus-visible{
  box-shadow: none !important;
  border-color:#B18957!important;
  outline: 0;
}

input::placeholder, textarea::placeholder, select::placeholder{
  color: white !important;
  font-family: 'Poppins';
}


/*----------------
   Navigation 
------------------*/

nav {
  z-index: 99;
  }
  
  nav#desktop img#logo {
  margin-left: 3%;
  padding: 16px 0px;
  }
  
  nav#desktop .bg-navbar {
    background: linear-gradient(180deg,rgba(0, 0, 0, 0.7) 0%, rgba(255, 255, 255, 0) 100%);
    transition: background 0.3s ease;
  }

  nav#mobile .bg-navbar {
    background: linear-gradient(180deg,rgba(0, 0, 0, 0.7) 0%, rgba(255, 255, 255, 0) 100%);
    transition: background 0.3s ease;
  }
  
  nav#desktop.scrolled .bg-navbar {
    background: #000000;
  }

  nav#mobile.scrolled .bg-navbar {
    background: #000000;
  }
  
  nav#desktop.scrolled ul li a:hover {
  /* color: #fff; */
  font-weight: 600;
  transition: color 500ms linear;
  }
  
  nav#desktop.scrolled ul li a:hover.btn-register {
  color: white !important;
  }
  
  nav#desktop.scrolled ul li a.btn-register:hover {
  background-color: transparent !important;
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  }
  
  .active-link {
  color: black;
  }
  
  nav#desktop.scrolled ul li a.btn-register {
  color: white;
  }
  
  .sticky nav .hamburger {
  pointer-events: none;
  }
  
  .theme-background .hamburger {
  background: #fff;
  }
  
  .theme-background .hamburger .hamburger-inner,
  .theme-background .hamburger .hamburger-inner:after,
  .theme-background .hamburger .hamburger-inner:before {
  background-color: #707C67;
  }
  
  .hamburger-box {
  position: relative;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: rotate(-45deg);
  }
  
  .hamburger-inner {
  top: 50%;
  display: block;
  margin-top: -2px;
  }
  
  .hamburger--spin .hamburger-inner {
  transition-timing-function: cubic-bezier(.55, .055, .675, .19);
  transition-duration: .22s;
  }
  
  .hamburger--spin.is-active .hamburger-inner {
  width: 30px;
  background-color: white;
  transition-delay: .12s;
  transition-timing-function: cubic-bezier(.215, .61, .355, 1);
  transform: rotate(225deg);
  }
  
  .hamburger-inner:before {
  top: -10px;
  }
  
  .hamburger--spin.is-active .hamburger-inner:before {
  top: 0;
  transition: top .1s ease-out, opacity .1s ease-out .12s;
  opacity: 0;
  }
  
  .hamburger--spin.is-active .hamburger-inner:after {
  bottom: 0;
  transition: bottom .1s ease-out, transform .22s cubic-bezier(.215, .61, .355, 1) .12s;
  transform: rotate(-90deg);
  width: 30px !important;
  }
  
  .hamburger-inner:after {
  bottom: -10px;
  width: 30px !important;
  }
  
  .hamburger-inner:after,
  .hamburger-inner:before {
  display: block;
  content: "";
  }
  
  .hamburger-inner {
    position: absolute;
    width: 30px; /* Shorter width for the middle line */
    height: 2px;
    background-color: white; /* Change color to orange */
    transition-timing-function: ease;
    transition-duration: .15s;
    transition-property: transform;
    border-radius: 4px;
    top: 50%;
    display: block;
    margin-top: -2px;
    
  }
  
  .hamburger-inner:after,
  .hamburger-inner:before {
  position: absolute;
  width: 30px;
  height: 2px;
  transition-timing-function: ease;
  transition-duration: .15s;
  transition-property: transform;
  border-radius: 4px;
  background-color: white;
  }
  
  .hamburger--spin .hamburger-inner:before {
  transition: top .1s ease-in .25s, opacity .1s ease-in;
  }
  
  .hamburger--spin .hamburger-inner:after {
  transition: bottom .1s ease-in .25s, transform .22s cubic-bezier(.55, .055, .675, .19);
  }
  
  .navi-menu-wrapper.is-active {
  opacity: 1;
  visibility: visible;
  }
  
  .navi-menu-wrapper.is-active .menu {
  transform: translateX(0px);
  }
  
  .navi-menu-wrapper.is-active .menu ul li {
  opacity: 1;
  margin-left: 0%;
  }
  
  .navi-menu-wrapper .menu ul li:nth-of-type(1) {
  transition-delay: 0.1s;
  }
  
  .navi-menu-wrapper .menu ul li:nth-of-type(2) {
  transition-delay: 0.2s;
  }
  
  .logo.fixed {
  position: fixed;
  left: 30px;
  top: 0px;
  z-index: 1001;
  }

  .bg-btn{
  background: #B18957;
  background: linear-gradient(90deg, rgba(177, 137, 87, 1) 0%, rgba(207, 182, 151, 1) 50%, rgba(177, 137, 87, 1) 100%);
  }

  .mirror-btn-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background: #000;
}

.mirror-btn {
  /* width: 300px;
  height: 200px; */
  background: #B18957;
  background: linear-gradient(90deg, rgba(177, 137, 87, 1) 0%, rgba(207, 182, 151, 1) 50%, rgba(177, 137, 87, 1) 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

/* .mirror-btn h2 {
  color: #0ff;
  font-size: 2rem;
  position: relative;
  z-index: 2;
} */

.mirror-btn::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 100%;
  height: 200%;
  background: linear-gradient(
    0deg, 
    transparent, 
    transparent 85%, 
    #ffffff
  );
  transform: rotate(-90deg);
  transition: all 0.4s ease;
  opacity: 0;
}

/* .mirror-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(0,255,255,0.5);
} */

.mirror-btn:hover::before {
  opacity: 1;
  transform: rotate(-90deg) translateY(230%);
}

.title-gradient {
  background: linear-gradient(
    45deg,
    #856833 0%,
    #FFE998 16%,
    #9F8349 28%,
    #CBB26D 41%,
    #B79D5D 53%,
    #AB9053 67%,
    #D9C078 78%,
    #977B42 84%,
    #B79D5D 93%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  background-clip: text;
  color: transparent;
}

  
  @media only screen and (max-width: 767px) {
  .logo.fixed {
      top: 1rem;
      left: 1rem;
      width: 120px;
  }
  }
  
  .logo img {
  transition: all linear .5s;
  }
  
  @media (min-width: 768px) and (max-width: 1024px) {
  .logo img {
      width: 120px;
      padding-top: 15px;
  }
  }

  @media (min-width: 768px) {
    .clip-bottom-curve {
      clip-path: ellipse(100% 80% at 50% 20%);
    }
  }

.btn-font{
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}

#tabs-fp .active{
  background-color: #F7F5E9 ;
}
.owl-carousel {
  margin: 0;
}

.owl-dots {
  text-align: center;
  padding-top: 15px;
}
.owl-dots button.owl-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  background: #ccc;
  margin: 0 3px;
}
.owl-dots button.owl-dot.active {
  background-color: #4c624f;
}
.owl-dots button.owl-dot:focus {
  outline: none;
}
.owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff !important;
    color: #4c624f !important;
    width: 50px;
    height: 50px;
    border-radius: 100%;
}
.owl-dots button span {
    font-size: 70px;    
    position: relative;
    top: -5px;
}
.owl-nav button:focus {
    outline: none;
}
.owl-nav button.owl-next {
    right: 0;
}
.owl-carousel.concept-slider .owl-dots {
  /* width: 90%; */
  margin-top: 10px;
  text-align: right;
}
@media only screen and (max-width: 640px) {
  .owl-carousel.concept-slider .owl-dots {
    text-align: center;
  }
}

/*-----------------
    Gallery
-------------------*/

/* Ensure pagination is placed below the Swiper */
.swiper-scrollbar {
  position: relative !important; /* Override default absolute positioning */
  bottom: -30px; /* Moves it further below the slider */
  text-align: center;
  margin-top: 30px !important;
}

.swiper-scrollbar.swiper-scrollbar-horizontal{
  background-color: #8f8f8f;
  width: 50% !important;
  height: 5px !important;
  margin: auto;
}

.swiper-scrollbar.swiper-scrollbar-horizontal .swiper-scrollbar-drag{
  background-color: white;
}

/* Style adjustments for pagination bullets */
.swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.5);
  opacity: 0.5;
  width: 10px;
  height: 10px;
  margin: 0 5px;
  transition: opacity 0.3s ease;
}

.swiper-pagination-bullet-active {
  background: white !important;
  opacity: 1 !important;
}

@media only screen and (min-width: 640px) {
  .owl-carousel.gallery-slider .owl-item > div {
    margin: 6% 8%;
  }
  .owl-carousel.gallery-slider .owl-dots {
    margin-top: 0px;
  }
}

.swiper-custom-prev, .swiper-custom-next {
  width: 40px;
  height: 40px;
  /* background: white; */
  border-radius: 50%;
  color: #42B58B;
  font-size: 30px;
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  z-index: 10;
  cursor: pointer;
  width: 50px; /* Adjust size as needed */
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper-custom-prev{
 left: 23%
}

.swiper-custom-next{
  right: 23%
}

@media(max-width: 480px){
  .mirror-btn:hover::before {
    opacity: 1;
    transform: rotate(-90deg) translateY(250%);
  }

  .swiper-custom-prev, .swiper-custom-next {
    width: 40px;
    height: 40px;
    /* background: white; */
    border-radius: 50%;
    color: #42B58B;
    font-size: 30px;
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    z-index: 10;
    cursor: pointer;
    width: 50px; /* Adjust size as needed */
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .swiper-custom-prev{
    left: 2%;
    top: 45%;
  }

  .swiper-custom-next{
    right: 2%;
  }

  /* .swiper-scrollbar.swiper-scrollbar-horizontal{
    width: 30% !important;
  }

  .swiper-scrollbar.swiper-scrollbar-horizontal .swiper-scrollbar-drag{
    width: 85px !important;
  } */
}

/* Loader  */

@-webkit-keyframes loader {
  0% {
      width: 0;
  }
  20% {
      width: 10%;
  }
  25% {
      width: 24%;
  }
  43% {
      width: 41%;
  }
  56% {
      width: 50%;
  }
  66% {
      width: 52%;
  }
  71% {
      width: 60%;
  }
  75% {
      width: 76%;
  }
  94% {
      width: 86%;
  }
  100% {
      width: 100%;
  }
}

@keyframes loader {
  0% {
      width: 0;
  }
  20% {
      width: 10%;
  }
  25% {
      width: 24%;
  }
  43% {
      width: 41%;
  }
  56% {
      width: 50%;
  }
  66% {
      width: 52%;
  }
  71% {
      width: 60%;
  }
  75% {
      width: 76%;
  }
  94% {
      width: 86%;
  }
  100% {
      width: 100%;
  }
}

.progress-bar {
  width: 95%;
  max-width: 95%;
  left: 50%;
  width: 100%;
  max-width: 100%;
  border-radius: 0;
  margin-top: 30px;
}
.progress {
  margin-top: 10px !important;
  margin-bottom: 10px !important;
}
.bar {
  margin-top: 25px !important;
  margin-bottom: 0 !important;
}
.progress-bar {
  border-radius: 0;
  overflow: hidden;
  width: 100%;
  padding: 0;
  display: none;
}
.progress-bar span {
  display: block;
}
.bar {
  background: 0 0;
}
.progress {
  -webkit-animation: loader 8s ease infinite;
  animation: loader 8s ease infinite;
  background: #B18957;
  background: linear-gradient(90deg, rgba(177, 137, 87, 1) 0%, rgba(207, 182, 151, 1) 50%, rgba(177, 137, 87, 1) 100%);
  color: #fff;
  padding: 5px;
  width: 0;
  margin-top: 25px;
  margin-bottom: 25px;
}
.progress-bar {
  position: relative;
  -webkit-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
  background-color: transparent;
}

.scroll-top {
    position: fixed;
	background-color: #275d06 !important;
	border-radius: 100px;
}

.whatsapp_link {   
  text-align: center;
  color: #2BD56B;
  padding: 10px 10px;
  width: 100%;
  display: block;
  font-size: 16px;
  margin-bottom: 15px;
  border: 1px solid #2BD56B;
  border-radius: 5px;
  margin-left: auto;
  margin-right: auto;
}

.whatsapp_link:hover,
.whatsapp_link:hover {  
  text-align: center;
  color: #fff;
  padding: 10px 10px;
  width: 100%;
  display: block;
  font-size: 16px;
  margin-bottom: 15px;
  border: 1px solid #40A397;
  border-radius: 5px;
  margin-left: auto;
  margin-right: auto; 
  background-color: #40A397;
}

.btn_sticky_register {
    font-size: 22px;
    color: #fff;
    position: relative;
    z-index: 0;
    padding: 15px 10px !important;
    margin: 0 auto;
    font-family: 'APOLLO-Regular';
    background: #3a473d;
    border: 1px solid #3a473d;
    border-radius: 50px;
    display: block;
    text-align: center;
    line-height: 1.5;
    margin-top: 0;
    width: 235px;
    transition: .3s;
    letter-spacing: 2px;
}

.btn_sticky_register:hover, 
.btn_sticky_register:focus{
  background: #ffffff;
  border: 1px solid #3a473d;
  color: #3a473d;
}

.sticky-icons {
  position: fixed;
  bottom: 5%;
  z-index: 10000;
  display: flex;
  flex-direction: row;
  right: 1%;
  background-color: transparent;
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  /* box-shadow: 2px 2px 6px rgb(182, 182, 182); */
  -webkit-animation: pulse 1.5s infinite;
  -moz-animation: pulse 1.5s infinite;
  -o-animation: pulse 1.5s infinite;
  animation: pulse 1.5s infinite;
}

.sticky-icons:hover {
  -webkit-animation: none;
  -moz-animation: none;
  -o-animation: none;
  animation: none;
}

.sticky-icons :hover{cursor: pointer;}
.sticky-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
  background: #0D9F16;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 5px;
  position: relative;
  transform: rotate(30deg);
}

.sticky-icon img{width: 70%;object-fit: contain;}
.sticky-icons p{
  color: #0a6b10;
  font-size: 15px;
  margin-bottom: 0px;
  padding: 0;
  line-height: 1.2;
}

.sticky-icon::after{
  content: "";
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid #0d9f16;
  position: absolute;
  bottom: -3px;
  left: -17px;
  right: 0;
  margin: 0 auto;
  transform: rotateZ(31deg);
}
