* {
    box-sizing:border-box;
  }
  @font-face {
    font-family: CasualFont; 
    src: url(../css/Casual-Regular.ttf);
    font-display: swap;
  }
  @font-face {
    font-family:BadComic-Regular, cursive;
    src: url(../css/BadComic-Regular.ttf);
    font-display: swap;
  }
  @font-face {
    font-family:BadComic-Italic, cursive;
    src: url(../css/BadComic-Italic.ttf);
    font-display: swap;
  }
  body {
    background-color: #FCFCE4;
    font-family: 'Cabin', sans-serif;
    color:#000000;
    margin:0;
    padding:0;
  }
  h1,h2,h3,h4,h5,h6,p {
    margin:0px;
    padding:0px;
    line-height:normal;
    font-family: CasualFont, sans-serif;
  }
  p {
    margin:0px;
    padding:0px;
    line-height:normal;
    font-family: 'Cabin', sans-serif;
  }
  a {
    text-decoration:none;
  }
  ul {
    margin:0;
    padding:0;
  }
  ul li {
    list-style-type:none;
  }
  .sm-none{
    display: block;
  }
  .lg-none{
    display: none;
  }
  .container {
    width:100%;
    max-width:95%;
    margin:0 auto;
    padding:0 15px;
  }
  /*---navbar---*/
  .navbar-area {
    background-color: #FCFCE4;
  }
 .nav-links {
    width: 50%;
}
.nav-logo {
    width: 50%;
}
.nav-links {
    width: 50%;
    display: flex;
    justify-content: end;
}
  .site-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  a.site-logo {
    font-size: 26px;
    font-weight: 800;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
  }
  .site-navbar ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
  }
  .site-navbar ul li a {
    color: #5F6C37;
    padding: 20px;
    display: block;
    text-decoration: none;
    text-transform: uppercase;
    padding: 40px 50px;
  }
  .site-navbar ul li a:hover {
    background: rgba(255,255,255,.1);
  }
  

.navbar-area {
  background-color: #FCFCE4;
  position: relative;
}

.navbar-area::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 2px;
  background-color: rgba(95, 108, 55, 1);
  animation: drawBorder 2s linear forwards;
}

@keyframes drawBorder {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

.nav-links ul li {
  position: relative;
}

.nav-links ul li::before {
  content: '';
  position: absolute;
  top: -100%;
  left: -50px;
  height: 1px;
  width: 97px;
  background-color: #5F6C37;
  transform: rotate(90deg);
  animation: drawLine 1s forwards;
  animation-delay: 0.6s;
}


@keyframes drawLine {
  0% {
    top: -100%;
  }
  100% {
    top: 50%;
  }
}

  /* nav-toggler css start */
  .nav-toggler {
    border: none;
    padding: 5px;
    background-color: transparent;
    cursor: pointer;
    height: 39px;
    display: none;
  }
  .nav-toggler span, 
  .nav-toggler span:before, 
  .nav-toggler span:after {
    width: 26px;
    height: 2px;
    background-color: #5f6c37;
    display: block;
    transition: .3s;
  }
  .nav-toggler span:before {
    content: '';
    transform: translateY(-9px);
  }
  .nav-toggler span:after {
    content: '';
    transform: translateY(6px);
  }
  .nav-toggler.toggler-open span {
    background-color: transparent;
  }
  .nav-toggler.toggler-open span:before {
    transform: translateY(0px) rotate(45deg);
  }
  .nav-toggler.toggler-open span:after {
    transform: translateY(-3px) rotate(-45deg);
  }
  /* nav-toggler css start */
  
  
  /* intro-area css start */
  .intro-area {
    height: calc(100vh - 61px);
    display: flex;
    align-items: center;
    text-align: center;
    color: #fff;
  }
  .intro-area h2 {
    font-size: 50px;
    font-weight: 300;
    line-height: 50px;
    margin-bottom: 25px;
  }
  .intro-area p {
    font-size: 18px;
  }
  /* intro-area css end */
  
  .contact-tittle h2 {
    font-family: CasualFont, sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 100px;
    line-height: 92px;
    text-align: center;
    text-transform: capitalize;
    color: #5F6C37;
}
.contact-tittle {
    padding: 90px 0px;
}
.form-row {
    width: 100%;
    display: flex;
}
.w-50{
    width: 50%;
}
.form-control input {
    display: inline-block;
    width: 100%;
    background-color: transparent;
    border: none;
    outline: none;
    border-bottom: solid 1px #5F6C37;
    font-family: 'Cabin', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    letter-spacing: 0.065em;
    color: #5F6C37;
    padding-bottom: 10px; 
}
.form-control.w-50:first-child input {
  width: 93%;
}
.form-control textarea {
    display: inline-block;
    width: 100%;
    resize: none;
    margin: O auto;
    background-color: transparent;
    border: none;
    outline: none;
    border-bottom: solid 1px #5F6C37;
    font-family: 'Cabin', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    letter-spacing: 0.065em;
    color: #5F6C37;
}
.form-control{
    padding: 25px 0px;
}
.contact-form{
    padding: 40px 0px;
}
.form-control input::placeholder{
  font-family: 'Cabin', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    letter-spacing: 0.065em;
    color: #5F6C37;
}
.footer-row {
    display: flex;
    flex-wrap: wrap;
}

.ft-link {
    width:25%;
}
.ft-logo{
    width: 50%;
}
.ft-address {
    width:25%;
}
footer {
  border-top: solid 1px #5F6C37;
  padding: 45px 0px 0px 0px;
}
.ft-link ul li a {
  font-family: 'Cabin', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 40px;
    color: #5F6C37;
    text-transform: capitalize;
}
.ft-address ul li a {
  font-family: 'Cabin', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 40px;
    display: flex;
    align-items: center;
    text-transform: lowercase;
    color: #5F6C37;
}
.footer-btm {
    display: flex;
    justify-content: space-between;
}
.footer-cname a {
  font-family: 'Cabin', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 70px;
    text-transform: capitalize;
    color: #5F6C37;
}
.footer-cname {
    display: flex;
    align-items: end;
}
.ft-logo h3 {
    font-style: normal;
    font-weight: 400;
    font-size: 55px;
    line-height: 67px;
    text-transform: uppercase;
    color: #5F6C37;
      font-family: 'Cabin', sans-serif;
}
.ft-logo p{
  font-family: 'Cabin', sans-serif;
font-style: normal;
font-weight: 400;
font-size: 20px;
line-height: 42px;
text-transform: capitalize;
color: #5F6C37;
}
.form-footer input {
    display: inline-block;
    width: 65%;
    background-color: transparent;
    border: none;
    outline: none;
    border-bottom: solid 1px #5F6C37;
}
.form-footer input::placeholder{
  font-family: 'Cabin', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 32px;
    text-transform: capitalize;
    color: #b4b6b1;
}
.form-footer input{
  font-family: 'Cabin', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 32px;
    text-transform: capitalize;
    color: #5F6C37;
}
.form-footer {
    padding: 20px 0px;
    position: relative;
}
.social-icons {
    display:flex;
    list-style: none;
    padding: 20px 0px;
}

.social-icons a {
    display: inline-block;
    background-color: #5F6C37;
    border-radius: 50%;
    padding: 10px;
    margin-right: 5px;
}
.submit-btn a {
    background-color: #5F6C37;
    padding: 15px 30px;
    border-radius: 40px;
    color: #fff;
    font-style: normal;
font-weight: 400;
font-size: 15px;
line-height: 138%;
text-transform: uppercase;
padding: 15px 50px;
}
.submit-btn {
  padding: 15px 0px 30px 0px;
    text-align: right;
}

.submit-btn a {
  display: inline-block;
  position: relative;
}

.submit-btn a img {
  vertical-align: middle;
  padding-left: 20px;
  transition: transform 0.3s ease-in-out;
}

.submit-btn a:hover img {
  transform: translateX(25px);
}
.form-footer a {
  position: absolute;
  left: 416px;
}
.form-footer a {
  position: absolute;
  left: 416px;
  transition: transform 0.3s ease-in-out;
}

.form-footer input:focus + a .submit-img,
.form-footer input:hover + a .submit-img {
  transform: translateX(5px); /* Adjust the desired horizontal translation */
}

.form-footer .submit-img {
  vertical-align: middle;
  transition: transform 0.3s ease-in-out;
}

.form-footer input:focus + a .submit-img,
.form-footer input:hover + a .submit-img {
  transform: translateX(-35px); /* Adjust the desired horizontal translation */
}
/*index page*/

.service-tittle h3 {
  font-family: 'Cabin', sans-serif;
font-style: normal;
font-weight: 400;
font-size: 40px;
line-height: 138%;
text-align: center;
text-transform: capitalize;
color: #5F6C37;
}
.service-tittle h2 {
  font-family: CasualFont, sans-serif;
font-style: normal;
font-weight: 400;
font-size: 100px;
line-height: 92px;
text-align: center;
text-transform: capitalize;
color: #5F6C37;
}
.service-tittle {
  padding: 80px 0px;
}
.service-banner img {
  width: 100%;
}.service-about {
  padding: 85px 0px;
}
.service-para-text p {
  font-family: 'Cabin', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 32px;
  text-align: justify;
  color: #5F6C37;
}
.aqua-retreats {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.aqua-retreats-left {
  width: 50%;
}
.aqua-retreats-right{
  text-align: right;
  width: 50%;
}.aqua-retreats-left h2 {
  font-family: CasualFont, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 100px;
  line-height: 120px;
  text-transform: capitalize;
  color: #5F6C37;
}
.aqua-retreats-left p {
  font-family: 'Cabin', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 32px;
  text-align: justify;
  color: #5F6C37;
  padding-top: 40px;
}
.aqua-retreats-left span {
  display: block;
}
.aqua-retreats-right img {
  width: 80%;
}

.main-btn a {
  font-family: 'Cabin', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 138%;
  text-align: center;
  text-transform: uppercase;
  color: #5F6C37;
  border: solid 2px #5F6C37;
  padding: 15px 20px;
  display: inline-block;
  border-radius: 50px;
  position: relative; /* Add position relative for absolute positioning */

  /* Add default styles for hover effect */
  background-color: transparent;
  overflow: hidden; /* Hide overflowing elements */
}

.main-btn a:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: #5F6C37;
  transition: width 0.3s; 
  z-index: -1;
}

.main-btn a:hover:before {
  width: 100%; 
}
.main-btn a:hover {
  color: #fff; 
}
.main-btn a span {
  position: relative; 
  z-index: 1;
}/* End */
.pd-top{
  padding-top: 50px;
}
.aqua-main {
  padding: 40px 0px;
}
.aqua-Leafy-left{
    width: 50%;
}
.Leafy-hideouts{
  display: flex;
  flex-wrap: wrap;
  padding: 70px 0px;
}
.aqua-Leafy-left img {
  width: 80%;
}

.discover-tittle {
  width: 50%;
  display: flex;
  justify-content: center;
}.discover-text {
  width: 50%;
}
.Discover-with {
  width: 100%;
  display: flex;
}
.discover-tittle h2 {
  font-family: CasualFont, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 60px;
  line-height: 72px;
  text-transform: capitalize;
  color: #5F6C37;
}
.discover-text p {
  font-family: 'Cabin', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 32px;
  color: #5F6C37;
  text-align: justify;
}
.discover-tittle span {
  display: flex;
}
section.Discover-more {
  padding: 50px 0px;
}

.container-img {
  display: flex;
  width: 100%;
  padding-left: 60px;
  box-sizing: border-box;
  transition: padding-left 0.5s;
}

.container-img.hovered {
  padding-left: 0;
}

.box {
  flex: 1;
  overflow: hidden;
  transition: .5s;
  line-height: 0;
  position: relative;
}

.box > img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: .5s;
}
.box-tittle h2 {
  font-family: CasualFont, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 60px;
  line-height: 72px;
  text-transform: capitalize;
  color: #FCFCE4;
}
.box:hover {
  flex-grow: 2;
}
.box-tittle{
  position: absolute;
  bottom: 20px;
  left: 30px;
}
.service-banner{
  background-image: url('../images/service-banner.webp');
  min-height: 750px;
  width: 100%;
  background-repeat: no-repeat;
  background-size:cover;
  background-attachment: fixed;
}
/*----about------*/
.about-banner{
  /* background-image: url('../images/about-banner.webp'); */
  min-height: 750px;
  width: 100%;
  background-repeat: no-repeat;
  background-size:cover;
  background-attachment: fixed;
}

.about-banner{
  width: 100%;
}
.about-image-row {
  display: flex;
}.row-image-left,.row-image-right  {
  width: 50%;
}
.about-image-row img {
  width: 100%;
}
.discover-uncharted{
    padding: 60px 0px;
}
.discover-abt-tittle h2 {
  font-family: CasualFont, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 60px;
  line-height: 72px;
  text-align: center;
  text-transform: capitalize;
  color: #5F6C37;
  padding-bottom: 40px;
}
.discover-abt-tittle p {
  font-family: 'Cabin', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 32px;
  text-align: justify;
  color: #5F6C37;
}
.discover-abt-tittle{
  padding-bottom: 60px;
}

.pumbing-adventure {
  width: 80%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: end;
}
.pumbing-left h3 {
  font-family: CasualFont, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 60px;
  line-height: 72px;
  text-transform: capitalize;
  color: #5F6C37;
  padding-bottom: 30px;
}
.pumbing-left p {
  font-family: 'Cabin', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 32px;
  text-align: justify;
  color: #5F6C37;
}
.pumbing-left {
  width: 50%;
}
.pumbing-right {
  width: 50%;
}.pumbing-right {
  width: 50%;
  text-align: end;
  display: flex;
  justify-content: end;
  align-items: center;
}
.about-row {
  width: 100%;
  display: flex;
}
.alpin-left h2 {
  font-family: CasualFont, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 100px;
  line-height: 120px;
  text-transform: capitalize;
  color: #5F6C37;
  padding-bottom: 30px;
}
.about-row span {
  display: block;
}
.about-row p {
  font-family: 'Cabin', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 32px;
  text-align: justify;
  color: #5F6C37;
}
.alpine-text{
  padding: 50px 0px;
}
.alpin-left {
  width: 50%;
  padding-right: 65px;
}
.alpin-img {
  width: 50%;
  padding-top: 25px;
}
.quaint-retreats-left h2 {
  font-family: CasualFont, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 100px;
  line-height: 120px;
  text-transform: capitalize;
  color: #5F6C37;
  padding-bottom: 30px;
}
.quaint-retreats {
  width: 50%;
}
.quaint-retreats-left {
  width: 50%;
}
.about-row img{
   width: 90%;
   padding-top: 25px;
}
.content-social li a {
  font-family: CasualFont, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 60px;
  line-height: 72px;
  text-align: center;
  text-transform: capitalize;
  color: #5F6C37;
}
ul.content-social {
  width: 97%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  padding: 40px 0px;
}
.btm-banner{
  background-image: url('../images/about-banner-2.webp');
  min-height: 750px;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.btm-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Adjust the opacity as needed */
}
.step-into h3 {
  font-family: CasualFont, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 100px;
  line-height: 120px;
  text-align: center;
  text-transform: capitalize;
  color: #fff;
  padding: 45px;
}
.step-into {
  position: relative;
  z-index: 1;
}
.step-into {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 120px;
}
.step-into img {
  width: 100px;
}
.step-into span {
  display: flex;
}
.about-btn a {
  font-family: 'Cabin', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 138%;
  text-align: center;
  text-transform: uppercase;
  color: #5F6C37;
  border: solid 2px #ffffff;
  padding: 15px 20px;
  display: inline-block;
  border-radius: 50px;
  position: relative;
  background-color: white;
  overflow: hidden;
}
.pumbing-sect{
  padding: 30px 0px;
}
.main-btn {
  padding-top: 50px;
}
.top-about{
  padding-top:40px;
}
.content-social li {
  position: relative;
}
.content-social li:nth-child(1)::before {
  content: "";
  position: absolute;
  top: 46px;
  left: 320px;
  width: 5%;
  height: 13px;
  border-radius: 68px;
  background-color: #5f6c37;
}
.insta-abt::after {
  content: "";
  position: absolute;
  top: 46px;
  left: 313px;
  width: 5%;
  height: 13px;
  border-radius: 68px;
  background-color: #5f6c37;
}
/*--index---*/
/*---slider---*/
.slider-container {
  position: relative;
  overflow: hidden;
}

.slider {
  display: flex;
  width: 100%;
  transition: transform 0.5s ease-in-out;
}

.slide {
  flex: 0 0 100%;
}

.slide-content {
  text-align: center;
  position: relative;
}

.slide-content img {
  width: 100%;
  height: 745px;
}
.slide-text {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  z-index: 1;
}

.slide-numbers {
  position: absolute;
  bottom: 13px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 14px;
}

.prev-btn,
.next-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgb(0 0 0 / 3%);
  color: #fff;
  border: none;
  font-size: 24px;
  cursor: pointer;
  z-index: 1;
}
button.prev-btn span {
  font-family: 'Cabin', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 19px;
  line-height: 24px;
  text-align: center;
  text-transform: capitalize;
  color: #FCFCE4;
  padding-left: 20px;
}
button.next-btn span {
  font-family: 'Cabin', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 19px;
  line-height: 24px;
  text-align: center;
  text-transform: capitalize;
  color: #FCFCE4;
  padding-right: 20px;
}
.slider-nav {
  position: absolute;
  bottom: 94px;
  width: 100%;
}
.prev-btn {
  left: 10px;
}

.next-btn {
  right: 10px;
}
.slide-text h3 {
  font-family: CasualFont, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 100px;
  line-height: 92px;
  text-align: center;
  text-transform:capitalize;
  color: #FCFCE4;
}
/*---.marquee---

.banner-slider {
  position: relative;
  overflow: hidden;
}

.marquee-container {
  width: 100%;
  position: absolute;
  top: 121px;
  white-space: nowrap;
  animation: marquee-scroll 20s linear infinite;
}

.marquee-content {
  display: inline-block;
  animation: marquee-reset 0s linear infinite;
}

.marquee-text {
  display: inline-block;
  margin: 0 20px;
  font-family: 'Cabin';
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 0.065em;
  color: #FCFCE4;
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

@keyframes marquee-reset {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(0%);
  }
}
*/

.marquee {
  width: 100%;
  overflow: hidden;
  position: absolute;
  top: 125px;
}
.marquee .inner {
  width: 100%;
  display: flex;
  color: white;
  }
.marquee .inner > * {
  white-space: nowrap;
}

.marquee .inner a {
  font-family: 'Cabin', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 0.065em;
  color: #fefefe;
  padding: 0 30px;
}
/*----discover-sect--*/
.discover-sect{
padding: 50px 0px;
}
.discover-heading h2 {
  font-family: CasualFont, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 100px;
  line-height: 120px;
  text-transform: capitalize;
  color: #5F6C37;
}.discover-heading {
  width: 70%;
  margin: 0 auto;
}
.discover-texts {
  padding-top: 40px;
  width: 50%;
}
.discover-texts p {
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  color: #5F6C37;
}
/*----discove slider-----*/
.slider-containers {
  width: 100%;
  overflow: hidden;
  padding: 40px 0px;
}

.slider-1 {
  display: flex;
  animation: slide 20s linear infinite;
}

.slider-1 img {
  flex-shrink: 0;
  width: 100%;
  object-fit: cover;
  padding-right:50px;
  transition: transform 0.5s ease, width 0.5s ease;
}

.slider-1 img:hover {
  transform: scale(0.9);
}

.slider-1 img {
  width: 50%;
}

.slider-1 img {
  width: 37%;
  height: 342px;
}

@keyframes slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/*-------*/
.signature-exp {
  padding: 40px 0px;
}

.signature-exp ul {
  width: fit-content;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  position: relative;
}

.signature-exp ul::before,
.signature-exp ul::after {
  content: "";
  position: absolute;
  background-color: rgba(95, 108, 55, 1);
  animation-duration: 1s;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
}

.signature-exp ul::before {
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
  animation-name: drawLineLeft;
}

.signature-exp ul::after {
  top: 0;
  right: 0;
  width: 2px;
  height: 100%;
  animation-name: drawLineRight;
}

.signature-exp ul li {
  padding: 35px 30px;
  position: relative;
  border-left: solid 1px;
  height: 170px;
  width: 185px;
  box-sizing: border-box;
  text-align: center;
}
.signature-tittle h2 {
  text-align: center;
  font-size: 37px;
  line-height: 63px;
  font-weight: 500;
  color: #5F6C37;
  font-family: 'Cabin', sans-serif;
}
.signature-exp ul li::before,
.signature-exp ul li::after {
  content: "";
  position: absolute;
  background-color: rgba(95, 108, 55, 1);
  animation-duration: 1s;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
}

.signature-exp ul li::before {
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  animation-name: drawLineTop;
}

.signature-exp ul li::after {
  bottom: 0;
  right: 0;
  width: 100%;
  height: 2px;
  animation-name: drawLineBottom;
}
.signature-sect.animate .signature-exp ul li {
    animation-name: drawLineTop;
    opacity: 1;
}

@keyframes drawLineTop {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

@keyframes drawLineBottom {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

@keyframes drawLineLeft {
  0% {
    height: 0;
  }
  100% {
    height: 100%;
  }
}

@keyframes drawLineRight {
  0% {
    height: 0;
  }
  100% {
    height: 100%;
  }
}

.signature-exp h2 {
  font-size: 32px;
  color: #5F6C37;
  text-align: center;
}

.signature-sect {
  padding: 40px 0px;
}
.signature-exp ul li p {
  color: #5F6C37;
  text-align: center;
  padding-top: 30px;
}

/*--Prime Services--*/
.prime-texts {
  padding-top: 40px;
  width: 95%;
    display: flex;
    justify-content: space-between;

}


/* Add parallax effect */
#slides-holder,
.slide-paral {
    position: relative;
    width: 100%;
}
.parallax-sect{
    padding:30px 0px;
}

.slide-paral,
.slide-paral.fixed {
    top: 0;
    left: 0;
    width: 100%
}

.slide-paral{
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat
}

.slide-paral.fixed {
    position: fixed 
}

.slide-fake-height {
    position: relative;
    display: none
}

.slide-fake-height.visible {
    display: block
}

.fade-text {
    display: inline-block;
    position: absolute;
    font-family: HelveticaNeue, helvetica, arial;
    font-size: 60px;
    opacity: 1;
    -webkit-transition: all .5s ease-out;
    -moz-transition: all .5s ease-out;
    -o-transition: all .5s ease-out;
    transition: all .5s ease-out
}

.fixed .fade-text {
    opacity: 1;
}

#slide-1 {
    background-image:  url(../images/about-banner-2.webp);
}

#slide-1 .fade-text {
    left: 5%;
    top: 10%;
    width: 90%;
}

#slide-2 {
    background-image: url(../images/about-banner.webp);
}

#slide-2 .fade-text {
    left: 5%;
    top: 10%;
    width: 90%;
}

#slide-3 {
    background-image:  url(../images/place-banner.webp);
}

#slide-3 .fade-text {
     left: 5%;
    top: 10%;
    width: 90%;
}

#slide-4 {
    background-image: url(../images/about-banner-2.webp);
}

#slide-4 .fade-text {
    left: 5%;
    top: 10%;
    width: 90%;
}
.fade-flex {
  display: flex;
  display: flex;
    border-top: solid 1px #fff;
    padding-top: 30px;
    align-items: center;
    flex-wrap: wrap;
}
.fade-row-2 p{
font-size: 20px;
color: #fff;
}
.fade-row-1 h2{
  font-size: 40px;
  color: #fff;
  font-family: 'Cabin', sans-serif;
  font-weight: 500;
  }
  .fade-row-1{
    width: 33.3%;
  }
  .fade-row-2{
    width: 33.3%;
  }
  .fade-row-3{
    width: 33.3%;
  }
  .parallax-btn{
      padding: 0px 0px 30px 0px;
  text-align: right;
  }
  .parallax-btn a {
    background-color: transparent;
    border: solid 1px #f9f9f9;
    padding: 15px 30px;
    border-radius: 40px;
    color: #ffffff !important;
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 138%;
    text-transform: uppercase;
    padding: 15px 50px;
}
.parallax-btn a {
    display: inline-block;
    position: relative;
}
.parallax-btn a:hover img {
    transform: translateX(25px);
}

.parallax-btn a img {
    vertical-align: middle;
    padding-left: 20px;
    transition: transform 0.3s ease-in-out;
}
/*----round text--*/
.text-round-row {
  display: flex;
  padding-top: 60px;
  width: 80%;
  margin: 0 auto;
}
#container { 
  width: 50%;
 }
.text-rounds {
  padding-top: 15px;
  width: 50%;
}
.text-rounds p {
  font-size: 20px;
  color: #5F6C37;
  line-height: 32px;
  text-align: justify;
}
#circle { position: relative; width: 100%; padding-bottom: 50%; overflow: hidden; }

#circle text {
 font-family: 'Cabin', sans-serif;
    font-size: 23px;
    line-height: 25px;
}

#circle svg {
  position: absolute;
  left: -106px;
  top: -109px;
  width: 100%;
  height: 495px;
  z-index: 10;

  -webkit-animation-name: rotate;
     -moz-animation-name: rotate;
      -ms-animation-name: rotate;
       -o-animation-name: rotate;
          animation-name: rotate;
  -webkit-animation-duration: 12s;
     -moz-animation-duration: 12s;
      -ms-animation-duration: 12s;
       -o-animation-duration: 12s;
          animation-duration: 12s;
  -webkit-animation-iteration-count: infinite;
     -moz-animation-iteration-count: infinite;
      -ms-animation-iteration-count: infinite;
       -o-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
     -moz-animation-timing-function: linear;
      -ms-animation-timing-function: linear;
       -o-animation-timing-function: linear;
          animation-timing-function: linear;

}

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

.our-story{
  padding: 50px 0px;
}.berry-img {
  position: absolute;
  left: 135px;
  top: 60px;
}
.berry-img img {
  width: 100%;
}
.submit-more {
  padding: 0px 0px 30px 0px;
  text-align: right;
}
.submit-more a {
  display: inline-block;
  position: relative;
}
.prime-serv p {
  font-size: 20px;
  color: #5F6C37;
  line-height: 30px;
}
.submit-more a {
  background-color: transparent;
  border: solid 1px #5F6C37;
  padding: 15px 30px;
  border-radius: 40px;
  color: #5F6C37;
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 138%;
  text-transform: uppercase;
  padding: 15px 50px;
}
.submit-more a img {
  vertical-align: middle;
  padding-left: 20px;
  transition: transform 0.3s ease-in-out;
}
.prime-serv{
width: 50%;
}
.round-more {
  padding: 50px 0px 30px 0px;
  text-align: center;
}
.round-more a {
  display: inline-block;
  position: relative;
}
.round-more a {
  background-color: transparent;
  border: solid 1px #5F6C37;
  padding: 15px 30px;
  border-radius: 40px;
  color: #5F6C37;
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 138%;
  text-transform: uppercase;
  padding: 10px 50px;
}

.round-more a img {
  vertical-align: middle;
  padding-left: 20px;
  transition: transform 0.3s ease-in-out;
}
/*----dare----*/
.dare-text{
  width: 75%;
  margin: 0 auto;
}
.dare-section {
  padding: 80px 0px;
}
.dare-text h2 {
  font-family: CasualFont, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 100px;
  line-height: 120px;
  text-transform: capitalize;
  color: #5F6C37;
}
.image-to-container {
  width: 100%;
  height: 750px;
  position: relative;
}

.explore-place  {
    display: flex;
    min-height: 750px;
    margin: 0 auto;
    align-items: end;
    color: #FCFCE4;
    position: relative;
    z-index: 10;
}
.place-bg1,.place-bg2,.place-bg3 {
  width: 33.3%;
}
.image-change {
  background-image: url(../images/place-banner.webp);
  min-height: 750px;
  background-size: cover;
  background-repeat: no-repeat;
}
.explore-place h2 {
  font-family: CasualFont, sans-serif;
  font-size: 30px;
  line-height: 38px;
  font-weight: 400;
}
.explore-place p {
  font-family: 'Cabin', sans-serif;
  font-size: 20px;
  padding: 20px 0px;
}
.content-hill {
  padding: 0px 40px;
  min-height: 750px;
  display: flex;
  flex-direction: column;
  justify-content: end;
    padding-bottom: 120px;
}
.under-line {
  display: inline-block;
}

.under-line a {
  position: relative;
  text-decoration: none;
  color: rgb(255, 255, 255);
  transition: all 0.3s;
}

.under-line a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 50px;
  height: 3px;
  background-color: rgb(255, 255, 255);
  transition: all 0.3s;
}


.place-bg1:hover .under-line a::after {
  width: 100%;
}
.place-bg2:hover .under-line a::after {
  width: 100%;
}
.place-bg3:hover .under-line a::after {
  width: 100%;
}.explore-place span {
  display: block;
}
.overlay-change {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0 0 0 / 8%);
}
.place-bg1 {
  border-right: solid 1px #fff;
}
.place-bg2 {
  border-right: solid 1px #fff;
}

/*----uncover-secrets----*/
.uncover-secrets {
  padding: 60px 0px;
}
.uncover-secrets {
  width: 70%;
  margin: 0 auto;
  display: flex;
}
.uncover-tittle {
  width: 50%;
}
.uncover-text {
  width: 50%;
}
.uncover-tittle h2 {
  font-family: CasualFont, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 60px;
  line-height: 70px;
  text-transform: capitalize;
  color: #5F6C37;
}
.uncover-text p {
  font-size: 20px;
  color: #5F6C37;
  line-height: 28px;
  text-align: justify;
}
.step-banner{
  background-image: url('../images/Step-into.jpg');
  min-height: 750px;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.step-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); 
}

.img-frame {
  padding: 0px 0px 30px 0px;
  text-align: right;
}
.img-frame a {
  display: inline-block;
  position: relative;
}
.img-frame a {
  background-color: #fff;
  padding: 15px 30px;
  border-radius: 40px;
  color: #5F6C37;
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 138%;
  text-transform: uppercase;
  padding: 15px 50px;
}
.img-frame a img {
  vertical-align: middle;
  padding-left: 20px;
  transition: transform 0.3s ease-in-out;
}


/*--snapshots----*/

.snapshots-list ul {
  display: flex;
}
.snapshots-list ul li {
  width: 20%;
  position: relative;
}
.snapshots-list ul li a img {
  width: 100%;
  height: 435px;
}.snapshots-list-2 ul {
  display: flex;
}
.snapshots-list-2 ul li {
  width: 25%;
  position: relative;
}
.snapshots-list-2 ul li a img {
  width: 100%;
  height: 360px;
}
.snapshots-list {
  padding-top: 7px;
}
.snapshots-list ul li:nth-child(2),
.snapshots-list ul li:nth-child(3),
.snapshots-list ul li:nth-child(4),
.snapshots-list ul li:nth-child(5) {
  padding-left:  5px;
  padding-bottom: 4px;
}
.snapshots-list-2 ul li:nth-child(2),
.snapshots-list-2 ul li:nth-child(3),
.snapshots-list-2 ul li:nth-child(4),
.snapshots-list-2 ul li:nth-child(5) {
  padding-left:  5px;
  padding-bottom: 4px;
}

/*---slider----*/
.card {
  height: 582px;
  width: 391px; /* Updated width */
  background-color: rgba(0, 0, 0, 0.4);
  color: white;
  font-size: 40px;
  flex: 391px 0 0; /* Updated flex */
}

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

.cards-wrapper {
  display: flex;
  transition: ease 0.5s;
}

.display-area {
  width: 100%;
  overflow: hidden;
  margin: auto;
}

.arrows-wrapper {
  display: flex;
  justify-content: center;
  margin: auto;
  padding: 40px 0px;
}

.arrow {
  border: none;
  background: transparent;
  color: white;
  font-size: 30px;
  width: 30px;
  height: 30px;
  margin: 5px;
  border-radius: 50%;
  outline: none;
  cursor: pointer;
}

.snapshots {
  position: absolute;
  top: 10px;
  left: 10px;
}
.slider-number {
  display: flex;
  justify-content: center;
  color: rgb(1, 1, 1);
  font-size: 20px;
  margin-top: 10px;
  margin-left: 50px;
}
.arrow.prev img {
  padding-right: 28px;
  width: 100px;
}
button.arrow.next img {
  padding-right: 28px;
  width: 100px;
}
.left-slide {
    margin-left: 80px;
}
.snapshots a img {
  width: 21px !important;
  height: 21px !important;
}

.snap-sect{
position: relative;
}
.scenic-snap {
  min-width: 266px;
  padding: 20px;
  background-color: #fff;
  position: absolute;
  top: 360px;
  left: 461px;
}
.scenic-snap ul li {
  display: inline-block;
}
.scenic-snap {
  color: #424530;
  font-size: 30px;
  font-family: CasualFont, sans-serif;
  padding: 40px;
}
.scenic-snap ul li a {
  color: #5F6C37;
  font-size: 18px;
  font-family: 'Cabin', sans-serif;
}
.submit-btn a {
  display: inline-block;
  position: relative;
}

.submit-more a img {
  vertical-align: middle;
  padding-left: 20px;
  transition: transform 0.3s ease-in-out;
}

.submit-more a:hover img {
  transform: translateX(25px);
}
.submit-btn a {
  display: inline-block;
  position: relative;
}

.submit-more a img {
  vertical-align: middle;
  padding-left: 20px;
  transition: transform 0.3s ease-in-out;
}

.round-more a {
  display: inline-block;
  position: relative;
}

.round-more a img {
  vertical-align: middle;
  padding-left: 20px;
  transition: transform 0.3s ease-in-out;
}

.round-more a:hover img {
  transform: translateX(25px);
}
.img-frame  a {
  display: inline-block;
  position: relative;
}

.img-frame  a img {
  vertical-align: middle;
  padding-left: 20px;
  transition: transform 0.3s ease-in-out;
}

.img-frame  a:hover img {
  transform: translateX(25px);
}

.bg-explor-one{
  /* background-image: url(../images/Banner-img-1.webp); */
  height: 224px;
  background-repeat: no-repeat;
  background-size: cover;
}
.bg-explor-two{
  background-image: url(../images/Banner-img-2.webp);
  height: 224px;
  background-repeat: no-repeat;
  background-size: cover;
}
.bg-explor-three{
  background-image: url(../images/Banner-img-03.webp);
  height: 224px;
  background-repeat: no-repeat;
  background-size: cover;
}
.scenic-snap h2 {
  font-family: CasualFont, sans-serif;
  font-size: 56px;
  font-weight: 400;
}
li.social-icons a {
  margin-right: 20px;
}
.ft-link ul {
  width: 50%;
margin: 0 auto;
}
li.social-icons a img {
  width: 19px;
  padding: 0px 3px;
}


  a.site-logo {
    display: inline-block;
}
a.site-logo img {
  width: 100%;
  display: inline-block;
}
.footer-logo img {
  width: 100%;
}
.error{
    color:red;
}
.success-message {
    color: green;
    font-weight: bold;
    margin-top: 10px;
  }
  .ft-logo h3 span.line {
      display: inline-block;
    width: 50px;
    height: 1px;
    background-color: #5f6c37;
    vertical-align: middle;
    margin-left: 10px;
}
.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #FCFCE4;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999; 
}

.page-loader img {
  width: 20%; 
}

  