body {
  -webkit-user-select: none; /* For Safari */
  -moz-user-select: none;    /* For Firefox */
  -ms-user-select: none;     /* For Internet Explorer/Edge */
  user-select: none;         /* Standard syntax */
}

#fullpage {
  width: 100vw;
  height: 100vh;
}
.section{
  display: flex !important;
}

.fp-watermark{
display: none !important;
}
.fp-slidesContainer{
  display: flex !important;
}

.slide.prana-bodhi-slide {
transition: opacity 0.8s ease, transform 0.8s ease;
opacity: 0 !important;
transform: translateX(50px);
}


.prana-bodhi-nav {
  position: relative;
  padding: 8px 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin: 0 5px;
  background-color: #f8f8f8;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}
.prana-bodhi-nav i {
  margin-right: 5px;          
  color: #2b8a3e;     
  display: none; 
  font-size: 18px;
  vertical-align: middle;
}
.prana-bodhi-nav.active {
  background-image: url('../../../img/icons/leavessvg.svg'); /* Replace with the actual leaves image */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
   color: #ffffff;     
   padding: 10px;        
 }
.slide.prana-bodhi-slide.active {
  opacity: 1 !important;
  transform: translateX(0);
}
