/* colors  */

:root {
  --primary: rgb(105, 70, 38);
  --secondary: rgba(203, 146, 117, 1);
  --ternary: #FBB34A;
  --danger: #DCF3FA;
  --textcolor: #000000;
  --headertext: #9A4949;
  --bodycolor: #F4F1EC;
  --dark-brown: #4B2E2B;
  --accent-yellow: #FFD54A;
  --overlay-dark: rgba(0,0,0,0.88);
  --overlay-mid: rgba(0,0,0,0.54);
  --overlay-top: rgba(0,0,0,0); /* fully transparent top */

}


/* Reset  */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;

}

@font-face {
  font-family: 'FuturaPT-Book';
  src: url('../font/FuturaPT-Book.woff') format('woff');
  /* Add additional formats and sources as needed */
}

@font-face {
  font-family: 'FuturaPT-Demi';
  src: url('../font/FuturaPT-Demi.woff') format('woff');
  /* Add additional formats and sources as needed */
}

@font-face {
  font-family: 'FuturaPT-Heavy';
  src: url('../font/FuturaPT-Heavy.woff') format('woff');
  /* Add additional formats and sources as needed */
}


html {
  scroll-behavior: smooth;
}

body.menu-open {
  overflow: hidden;
}


body {
  -webkit-font-smoothing: antialiased;
  font-family: 'FuturaPT-Book', sans-serif;
  background-color: var(--bodycolor);
  overflow-x: hidden;


  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -moz-font-feature-settings: "liga"on;
}




h1, h2, h3, h4, h5, h6 {

  padding-bottom: 10px;
  line-height: 1em;
  

}

h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
  color: inherit
}

h1 {
  font-size: 30px;
}

h2 {
  font-size: 26px;
}

h3 {
  font-size: 22px;
}

h4 {
  font-size: 18px;
}

h5 {
  font-size: 16px;
}

h6 {
  font-size: 14px;
}

p {
  margin: 0 0 20px;
  word-break: normal;
 



}

a {
 
  text-decoration: none !important;
  background-color: transparent;
  cursor: pointer;


}
a:hover {
  color: var(--ternary) !important;
  text-decoration: none !important;
  transition: 0.5s;
}



*, *:after, *:before{
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;

}







.wrapper {
  background-color: #f4f1ec;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  overflow-x: hidden;

}



.top-banner {

  width: 100%;
  /* background-image: radial-gradient(rgba(68, 31, 31, 0.0), rgba(0, 0, 0, 50%)), url(../images/overview-enkorok-mara-camp.jpg);
  background-position: center;
  background-size: cover;
  position: relative; */
  min-height: 590px;
  margin-bottom: 30px;
}

.banner-slider {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  top: 0;
  left: 0;
  z-index: 1;
}

.slide-banner {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 0;
}

.slide-banner.active {
  opacity: 1;
  z-index: 2;
}

/* Make sure content is on top of the slider */
.header_content, .watch-video {
  z-index: 3;
  position: relative;
}

.hero_btn {
  display: inline-block;
  text-decoration: none;
  color: #fff;
  border-radius: 2px;
  padding: 12px 24px;
  font-size: 13px;
  background: var(--secondary);
  position: relative;
  cursor: pointer;

}

.hero_btn:hover {

  background-color: var(--primary);
  transition: 1s;
}

.header_content {
  box-sizing: border-box;
  margin: 0;
  min-width: 0;
  position: absolute;
  max-width: 80%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

@media (max-width: 1200px) {
  .header_content {
    min-width: 90%;
  }
}


.caption {
  padding-top: 154px;
  padding-bottom: 150px
}

.welcome_txt {
  font-weight: 300;
  text-transform: uppercase;
  font-size: 25px;
  letter-spacing: 2px;
  line-height: 1.5em;
  text-shadow: 0em 0.1em 0.1em rgba(0, 0, 0, 0.1);
  color: white;
}

.camp_txt {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 45px;
  letter-spacing: 2px;
  line-height: 1.5em;
  text-shadow: 0em 0.1em 0.1em rgba(0, 0, 0, 0.1);
  color: white;
}

/* navigation section */



nav {
  display: flex;
  padding: 2px 6px;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

nav img {
  width: 100px;
  margin-top: 10px;
}



.nav-link {
  flex: 1;
  text-align: center;

}

.nav-link ul li {
  list-style: none;
  display: inline-block;
  padding: 25px 12px;
  position: relative;
}

.nav-link ul li a {
  color: var(--headertext);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 900;
}

.nav-link ul li::after {
  content: '';
  width: 0%;
  height: 2px;
  background: var(--secondary);
  display: block;
  margin: auto;
  transition: 0.5s;
}

.nav-link ul li:hover::after {
  width: 100%;

}

nav .fa {
  display: none;
}




/*=========================== NAVIGATION =============================*/


#title {
  z-index: 18;
  /* width: 23%; */
  position: fixed;
  top: 15px;
  left: 60px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  /* -webkit-filter: drop-shadow(0px 0px 2px #fff);
  filter: drop-shadow(0px 0px 2px #fff); */
}

#nav-content img {
  width: 20%;
  margin-bottom: 10px;
  margin: auto;
}

/* Menu icon */

#menu-icon-shape {
  width: 60px;
  height: 60px;
  position: fixed;
  top: 23px;
  right: 45px;
  border-radius: 50%;
  z-index: 25;
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

#menu-icon-shape:hover {
  background: var(--primary);
}

#menu-icon-shape.active:hover {
  background: var(--primary);
}

#menu-icon {
  width: 30px;
  height: 20px;
  position: relative;
  margin: 0 auto;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

#top, #middle, #bottom {
  width: 100%;
  height: 4px;
  background: rgb(52, 12, 12);
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
  border-radius: 2px;
}

#middle {
  margin: 4px 0;
}

/* Transform menu icon into close icon */

#top.active {
  -webkit-transform: translateY(8px) translateX(0) rotate(45deg);
  transform: translateY(8px) translateX(0) rotate(45deg);
}

#middle.active {
  opacity: 0;
}

#bottom.active {
  -webkit-transform: translateY(-8px) translateX(0) rotate(-45deg);
  transform: translateY(-8px) translateX(0) rotate(-45deg);
}

/* Navigation */

.modal-backdrop {
  z-index: 1 !important; /* Higher than the z-index of .scroll-Top */
}

.scroll-Top {
  position: fixed;
  width: 100%;
  background: var(--bodycolor);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  z-index: 20;
  height: 0;
  top: -1;
  opacity: 1;
  /* Initially set to fully transparent */
  transition: height 0.5s ease-in, background 0.5s ease-in, opacity 0.5s ease-in;
  /* Separate transitions */
}

.scroll-Top.black {
  /* background: var(--secondary); */
  height: 97px;
  opacity: 1;
  top: 0;
  z-index: 20;
  transition: height 0.5s ease-out, background 0.5s ease-out, opacity 0.5s ease-out;
}

#logo {
  transition: 0.3s ease-in;

}



/* Add your own styling for different logo variations */
#logo.default {
  width: 200px;
  height: 122px;
  background-image: url(/wp-content/themes/EnkorokMaraCamp/images/Enkorok-Logo.svg);
  background-repeat: no-repeat;
  z-index: 9999;

}

#logo.scroll {
  width: 150px;
  position: relative;
  height: 80px;
  background-image: url(/wp-content/themes/EnkorokMaraCamp/images/Enkorok-Logo-scroll.svg);
  background-repeat: no-repeat;
  margin: 5px;
  z-index: 9999;

}


#overlay-nav {
  width: 100%;
  height: 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.35s, visibility 0.35s, height 0.6s ease;
  transition: opacity 0.35s, visibility 0.35s, height 0.6s ease;
  background: var(--secondary);
}

/* Open navigiation */

#overlay-nav.active {
  width: 100%;
  height: 100%;
  opacity: 100;
  visibility: visible;
}

#nav-content {
  text-align: center;
  height: 95vh;
  display: -webkit-box;
  display: -ms-flexbox;
  /* display: flex;  */
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;

}

#nav-content ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

#nav-content ul li {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  line-height: 10vh;
}

#nav-content ul li a {
  font-family: 'raleway', sans-serif;
  font-weight: 300;
  font-size: 2.5em;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  display: block;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.5);
}

#nav-content ul li a:hover {
  color: rgba(255, 255, 255, 0.9);
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

#nav-content ul li a:hover:before {
  visibility: visible;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

#nav-content ul li a:before {
  content: "";
  position: absolute;
  width: 50%;
  height: 2px;
  bottom: 0;
  left: 25%;
  background: white;
  visibility: hidden;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

.jss545 {
  margin-top: 30px;
  justify-content: flex-start;
}

.jss204 {
  margin: 0;
  box-sizing: border-box;
}

.jss203 {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
}


.jss204 {
  margin: 0;
  box-sizing: border-box;
}

.jss203 {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
}


.jss362 {
  list-style-type: none;
}

.jss361 {
  color: #FFF;
  list-style-type: none;
}

.jss361 {
  color: #FFF;
  list-style-type: none;
}


.jss555 {
  width: 2em;
  height: 2em;
  margin-right: 4px;
}




/*================================= END NAVIGATION ==================================*/




/* Media queries */

@media screen and (max-width: 600px) {
  #title {
    top: 13px;
    left: 24px;
    font-size: 1.75em;
  }

  #menu-icon-shape {
    right: 9px;
  }

}



/*table media width banner and  navgation */

@media(max-width: 700px) {

  .welcome_txt {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 20px;
    letter-spacing: 2px;
    line-height: 1.5em;
    text-shadow: 0em 0.1em 0.1em rgba(0, 0, 0, 0.1);

  }

  .camp_txt {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 26px;
    letter-spacing: 2px;
    line-height: 1.5em;
    text-shadow: 0em 0.1em 0.1em rgba(0, 0, 0, 0.1);

  }

  .nav-link ul li {
    display: block;
    padding: 10px 5px;

  }

  .nav-link ul {

    padding: 30px;
  }

}

/*moblie media width banner and  navgation */

.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 32px;
  background-color: transparent;
}

.logo-container {
  flex: 0 1 auto;
  margin-right: 24px;
}

.logo {
  padding: 10px;
}

.navigation {
  display: flex;
  align-items: center;
}

.trip-button {
  cursor: pointer;
  display: inline-block;
  padding: 11px 16px;
  background-color: #cb9275;
  color: white;
  border: 1px solid #cb9275;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.trip-button:hover {
  background-color: var(--primary);
}

.menu-button {
  cursor: pointer;
  display: flex;
  align-items: center;
  margin-left: 16px;
  color: white;
  position: relative;
}

.menu-text {
  font-size: 16px;
  font-family: europa, sans-serif;
  font-weight: 400;
  line-height: 1.333;
}

.menu-button:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  opacity: 0;
  background-color: white;
  transition: opacity 0.5s ease;
  will-change: opacity;
  margin-bottom: -2px;
}

.menu-button:hover:after {
  opacity: 1;
}


  .txt-int {
      text-align: center;
      max-width: 650px;
      margin: 0 auto;
      padding: 20px 10px;
      font-size: 35px;
      line-height: 1.4;
      color: #222; /* dark gray text */
    }

    .txt-int em {
      font-style: italic;
      font-weight: bold;
    }



  /* about section */

  /* Section */
.about-section {

  color: #444;
}

.camp-about-name {
  font-weight: bold;
  color: #dca74f;
  letter-spacing: 1px;
}

.about-section h2 {
  font-size: 32px;
  color: #4b2600;
  line-height: 1.4;
}

.about-section p {
  font-size: 16px;
  line-height: 1.6;
  font-weight: 500;
}

/* Container */
.container-about {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

/* Placeholder Image */

.image-container-about img {
  width: 100%;
  max-width: 600px;
  height: auto;
  display: block;
  border-radius: 4px;
}
/* 
.image-about {
width: 100%;
  max-width: 600px;
  height: 650px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-bottom: 30px;
} */

/* Intro Text */
.intro-text-about {
  max-width: 600px;
  padding-left: 50px;
}

.camp-about-name {
  display: block;
  font-weight: bold;
  color: #dca74f;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.intro-text-about h2 {
  font-size: 32px;
  color: #4b2600;
  margin-bottom: 20px;
  line-height: 1.4;
}

.intro-text-about p {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 30px;
    font-weight: 500;
}

.intro-room p {
font-size: 16px;
  line-height: 1.6;
  color: #140701;

  font-weight: 500;
}

/* Button */
.read-more-btn-outline {
  display: inline-block;
  padding: 12px 20px;
  border: 1px solid #dca74f;
  color: #dca74f;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  background-color: transparent;
}

.read-more-btn-outline:hover {
  background-color: #dca74f;
  color: #fff;
}


/* Button */
.read-more-btn-bg {
  display: inline-block;
  padding: 12px 20px;
  border: 1px solid #dca74f;
  color: #dca74f;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  background-color: #f5e7cf;
}

.read-more-btn-bg:hover {
  background-color: #dca74f;
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .container-about {
    flex-direction: column;
    text-align: center;
  }

  .intro-text-about {
    padding-left: 0;
  }

  .image-about {
    margin-bottom: 20px;
  }
}

  /* end section  */

@media(max-width: 450px) {

  .header {
    width: 55%;
  }

  .nav-link {
    display: none;
  }

  .trip-button {
    display: none;
  }



  nav .fa {
    display: flex;
    color: #fff;
    margin: 10px;
    font-size: 22px;
    cursor: pointer;
    text-align: left;
    padding: 10px;
  }

}

.accommodation {
  width: 100%;

  text-align: center;


}


/* hotel facility section  */

    /* For the title box */
    .title-box {
      font-size: 2rem;
      font-weight: bold;
      color: #222;
      text-align: start;
      line-height: 1.2px;
      /* text-transform: uppercase; */
    }


/* Heading */

.facility-features h4 {
  font-weight: 600 !important;
  color: #4b2e2b !important;
  font-size: 1.5rem !important;
  text-align: left !important;
}

/* Force flex row alignment */
.facility-features .facility-item {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: flex-start !important;
  padding: 12px 25px !important;
  border-bottom: 1px solid #501d03 !important; /* gray line */
  font-size: 1.25rem !important;           /* larger font */
  color: #aa6422 !important;
  text-align: left !important;
}

/* Remove last border */
.facility-features .facility-item:last-child {
  border-bottom: none !important;
}

/* Icon */
.facility-features .facility-icon {
  margin-right: 10px !important;
  font-size: 1.3rem !important;
  color: #a94800 !important; /* brown */
  flex-shrink: 0 !important;
}

/* Text */
.facility-features .facility-text {
  flex: 1 !important;
  line-height: 1.4 !important;
}




/* end of hotel facilty section  */



/* blog post section */

.blog-post-section{
  background-color: #f7d8ac;
}

.card-custom {
      background: #f7d8ac;
      border: none;
      text-align: center;
      transition: transform 0.3s ease;
      padding: 1.5rem;
    }
    .card-custom img {
      border-radius: 6px;
      margin-bottom: 1rem;
    }
    .card-custom-header {
      font-weight: 800;
      font-size: 25px;
      color: #4a3325;
      margin-bottom: 0.8rem;
    }
    .card-custom p {
      font-size: 16px;
    color: ##140701;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    font-weight: 500;
    }
    .card-custom .btn {
      display: inline-block;
      border: 1px solid #c97c3c;
      color: #c97c3c;
      font-weight: 600;
      border-radius: 3px;
      padding: 0.4rem 1rem; /* smaller size */
      font-size: 0.8rem;
      text-transform: uppercase;
      transition: all 0.3s ease;
    }
    .card-custom .btn:hover {
      background: #c97c3c;
      color: #fff;
    }
    .card-featured {
      background: #ae8258;
      /* border-radius: 8px; */
    }
    .card-custom:hover {
      transform: translateY(-5px);
    }


    .safari-section { padding: 48px 0; }

    .safari-row { margin-left: -18px; margin-right: -18px; }
    .safari-col { padding: 0 18px 28px; }

    /* Removed rounded corners: border-radius set to 0 */
    .safari-card {
      position: relative;
      border-radius: 0;          /* <- square corners */
      overflow: hidden;
      height: 450px;
      box-shadow: 0 12px 30px rgba(21,30,50,0.12), inset 0 1px 0 rgba(255,255,255,0.02);
      transition: transform .28s ease, box-shadow .28s ease;
      background: #ddd;
    }
    .safari-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 18px 40px rgba(21,30,50,0.16);
    }

    .safari-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      display: block;
      vertical-align: middle;
      border-radius: 0;          /* <- ensure image has square corners */
    }

    /* Ensure overlay is square too */
    .safari-card .overlay {
      position: absolute;
      inset: 0;
      pointer-events: none;
      background: linear-gradient(to bottom, rgba(0,0,0,0) 40%, rgba(0,0,0,0.85) 100%);
      border-radius: 0;          /* <- square */
    }

    .safari-card-title {
      position: absolute;
      left: 18px;
      right: 18px;
      bottom: 18px;
      margin: 0;
      color: #fff;
      text-align: center;
      font-family: "Playfair Display", Georgia, serif;
      font-size: 20px;
      line-height: 1.25;
      font-weight: 700;
      z-index: 3;
      text-shadow: 0 4px 18px rgba(0,0,0,0.6);
    }

    @media (max-width: 767.98px) {
      .safari-card { height: 260px; }
      .safari-card-title { font-size: 18px; bottom: 14px; left: 14px; right: 14px; }
      .safari-col { padding-bottom: 22px; }
    }
    @media (min-width: 992px) {
      .safari-card-title { font-size: 22px; }
    }


/* end post section  */



/* .testimonials card  */

    .testimonial-section{padding:60px 15px;text-align:center}
    .testimonial-section h2{font-weight:700;color:#232323;margin-bottom:.25rem;font-size: 35px;}
    .subtext{max-width:680px;margin:0 auto 40px;color:#666; font-size: 20px; font-weight: 500;}

    /* --- CARD --- */
    .testimonial-card{
      background:#fff;
      border-radius:12px;
      
      /* box-shadow:0 6px 18px rgba(0,0,0,.08); */
      padding:24px;margin-right:24px; /* space between cards */
      flex:0 0 40%;max-width:40%; /* 2 full cards + peek */
      text-align:left
    }
 
.stars {
  color: #f5b50a;
}
.star {
  opacity: 0.3;
}
.star.filled {
  opacity: 1;
}


    
    .testimonial-user{display:flex;align-items:center;margin-bottom:12px}
    .testimonial-user img{width:52px;height:52px;border-radius:50%;object-fit:cover;margin-right:12px}
    .testimonial-user h6{margin:0;font-weight:600}
    .testimonial-user small{color:#8a8a8a}
    .testimonial-text{color:#424242;font-size:17px; font-weight: 500; margin-bottom:12px}

    /* TripAdvisor dots */
    .ta-dots{line-height:1}
    .ta-dots i{
      display:inline-block;width:8px;height:8px;border-radius:50%;background:#2fac66;margin-right:4px
    }
    .ta-dots i.dim{opacity:.3}

    /* --- CAROUSEL LAYOUT --- */
    .carousel-inner{overflow:hidden}           /* viewport */
    .carousel-item{padding-bottom:10px}        /* keep Bootstrap's display rules */
    .slide-track{display:flex;align-items:stretch} /* the row inside each slide */
    /* Make the 3rd card peek by letting the track overflow the viewport a bit */
    .carousel-item .slide-track{padding-right:0}

    /* Dots below (no arrows) */
    .carousel-indicators{bottom:-28px}
    .carousel-indicators li{width:10px;height:10px;border-radius:50%;background:#bbb}
    .carousel-indicators .active{background:#2fac66}

    /* Mobile: 1 card per view */
    @media (max-width: 768px){
      .testimonial-card{flex:0 0 90%;max-width:90%;margin-right:16px}
    }

/* end testimonials cards  */


 /* watch video section  */


 .watch-video-section {
    /* background-color: #f7d8ac; */
}

.video-section {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  border-radius: 8px;
}



.video-section video {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: none; /* Hide until play */
    }



    .video-cover {
      position: relative;
      background: url('../images/slider/overview-enkorok-mara-camp.jpg') center/cover no-repeat;
      height: 550px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

.video-cover .overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.55);
  z-index: 1;
}

.play-btn {
  position: relative;
  z-index: 2;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease;
}

.play-btn::before {
  content: "";
  display: block;
  width: 0; height: 0;
  border-left: 18px solid #d33;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
}

.play-btn:hover {
  transform: scale(1.1);
}
  /* end of video section */


  /* gallery section and social  */


 .gallery-section { 
  text-align: center; 
  background-color: #72441e; 
}
.gallery-section h6 { 
  color: #d38f4b; 
  font-weight: 600; 
  text-transform: uppercase; 
  letter-spacing: 1px; 
}
.gallery-section p { 
  font-size: 22px; 
  font-weight: 400; 
  color: #ffffff; 
}
.btn-custom {
  border: 1px solid #2c3e50; 
  background: transparent; 
  color: #2c3e50;
  padding: 6px 16px; 
  font-weight: 500; 
  border-radius: 4px; 
  transition: .3s;
}
.btn-custom:hover { 
  background: #2c3e50; 
  color: #fff; 
}
.gallery-slider img {
      border-radius: 6px;
      transition: transform 0.3s ease;
    }
    .gallery-slider img:hover {
      transform: scale(1.05);
    }
    .owl-nav button {
      position: absolute;
      top: 40%;
      background: rgba(0,0,0,0.4) !important;
      border-radius: 50%;
      padding: 8px 14px !important;
      color: #fff !important;
    }
    .owl-nav .owl-prev { left: -20px; }
    .owl-nav .owl-next { right: -20px; }
  /* end of  socila and galley  */


  /* location of where the camp is located  */

.map-section {
  background-color: #f9f6f2; /* light background */
}

.map-wrapper {
  width: 100%;
  height: 100%;
}

/* CSS */
.steps-card {
  background: #f7d8ac;
  padding: 18px 22px;
  border-radius: 8px;
  max-width: 700px;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

/* The horizontal row: number + text */
.step {
  display: flex;
  align-items: baseline; /* KEY: aligns the number baseline to the h5 baseline */
  gap: 16px;              /* space between circle and text */
}

/* Circle number */
.step-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #72441e;      /* dark circle like your image */
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  line-height: 44px;     /* vertically centers the digits and defines the baseline */
  text-align: center;
  flex-shrink: 0;
}

/* Text block */
.step-text {
  /* no special display needed — it's the flex item whose baseline is the first text line (h5) */
}

.steps-card h3
 {
    font-weight: 700;
    color: #46270e;
    font-size: xx-large;
}

/* Heading (same line as the number) */
.step-text h5 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: #111;
  display: inline-block; /* ensures the first line baseline is used */
}

/* Paragraph below, aligned with heading's left edge */
.step-text p {
  margin: 8px 0 0 0;
  color: #555;
  font-size: 17px;
  line-height: 1.5;
  max-width: 520px; /* optional */
}

/* small-screen adjustments */
  @media (max-width: 575.98px) {
      .step-number { width: 40px; height: 40px; line-height: 40px; font-size: 13px; }
      .step { gap: 12px; }
      .step-text p { font-size: 14px; }
    }










  /* end of the location section */

.blue {
  position: relative;
  /* width: 10%; */

  cursor: pointer;
  border-radius: 10px;
}

.red {
  position: relative;
  /* width: 10%; */

  cursor: pointer;
  border-radius: 10px;
}



/* room features  section  */

.rooms-section {
   background-color: #f7d8ac;
}


 
 .highlight-text {
      color: #d49a4a;
      font-weight: bold;
    }

    

    .btn-spacing {
      margin-right: 10px;
    }

    .custom-btn {
      background-color: #d49a4a;
      color: white;
      border: none;
      padding: 10px 20px;
      text-transform: uppercase;
      font-weight: bold;
    }

    .custom-btn:hover {
      background-color: #b07c35;
    }

    .carousel-inner img {
      width:52px;height:52px;border-radius:50%;
      object-fit: cover;
    }

    .custom-slide {
      display: flex;
      flex-direction: row;
      gap: 10px;
    }

    .left-image {
      flex: 2;
    }

    .left-image img {
      width: 100%;
      height: 100%;
      aspect-ratio: 3 / 4;
      object-fit: cover;
      border-radius: 8px;
    }

    .right-images {
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      gap: 10px;
    }

    .right-images img {
      width: 100%;
      height: 100%;
      aspect-ratio: 1 / 1;
      object-fit: cover;
      border-radius: 8px;
    }

    .carousel-control-next-icon,
    .carousel-control-prev-icon {
      color: #d49a4a;
      border-radius: 50%;
    }

    @media (max-width: 768px) {
      .custom-slide {
        flex-direction: column;
      }
  .right-images {
    display: none !important;
  }

  .left-image img {
    aspect-ratio: 16 / 9;
  }
}



      .right-images {
        flex-direction: column;
      }

      .right-images img {
        aspect-ratio: 16 / 9;
      }

      .d-flex {
        flex-direction: column;
      }

      .btn-spacing {
        margin-bottom: 10px;
      }
    

/* end room features section  */



 /* .experience section home page  */

  .section-title {
      text-align: center;
      margin-bottom: 40px;     
  justify-content: center;
    }
    .section-title h6 {
      color: #d38f4b;
      font-weight: 600;
      letter-spacing: 1px;
      text-transform: uppercase;
    }
    .section-title p {
      font-size: 22px;
      font-weight: 400;
      line-height: 1.5;
      max-width: 800px;
      margin: 0 auto;
    }
    .experience-card {
      text-align: center;
      padding: 20px;
    }
    .experience-card img {
      width: 100%;
      border-radius: 8px;
      margin-bottom: 20px;
    }
    .experience-card h5 {
      color: #d38f4b;
      font-weight: 700;
    font-size: 25px;
      /* margin-bottom: 15px; */
    }
    .experience-card p {
      font-size: 17px;
      color: #140701;
      margin-bottom: 20px;
      font-weight: 500;
      line-height: 1.6;
    }
    .btn-custom {
      border: 1px solid #34495e;
      background: transparent;
      color: #34495e;
      font-weight: 500;
      border-radius: 4px;
      padding: 6px 16px;
      transition: all 0.3s ease;
    }
    .btn-custom:hover {
      background-color: #34495e;
      color: #fff;
    }


 /* end of experience section */


    /* Buttons */
    .btns {
      display: flex;
      gap: 15px;
    }
    .btn {
      padding: 12px 25px;
      font-size: 14px;
      text-transform: uppercase;
      border-radius: 30px;
      cursor: pointer;
      transition: all 0.3s ease;
      border: none;
      font-weight: bold;
    }
    .btn.book {
      background: #f7b731;
      color: #fff;
    }
    .btn.book:hover {
      background: #e5a620;
    }
    .btn.detail {
      background: #eee;
      color: #333;
    }
    .btn.detail:hover {
      background: #ddd;
    }

    /* Responsive */
    @media (max-width: 900px) {
      .tab-content {
        grid-template-columns: 1fr;
      }
    }
/* end of room frontpage styling */



@media only screen and (max-width: 450px) {
  .accommodation {
    height: 450px;

  }

  .para {
    line-height: 1.5em !important;
  }
}

.text-acc {
  box-sizing: border-box;
  margin: 0;
  min-width: 0;
  position: absolute;

  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}


.acc_txt {
  font-weight: 500;
  font-size: 40px;
  letter-spacing: 1px;
  line-height: 0.8em;
  font-family: "FuturaPT-Heavy";
  color: whitesmoke;
  font-style: normal;

}

.para {
  color: whitesmoke;
  font-size: 20px;
  /* margin: 20px auto; */
  line-height: 4.5em;

}


/* EXPERIENCE ENKOROK */
.experience {
  display: flex;
  flex-direction: row;
  /* margin: 60px 0px 0px 0px; */
  padding: 60px;
  /* You can adjust the padding according to your needs */
}

.row1, .row2, .row3 {
  display: flex;
  /* justify-content: space-between; */
  /* padding: 10px;  Adjust padding as needed */
}

.row1 {
  display: block;
  width: 35%;
}

.row2 {
  padding: 2%;
  width: 35%;
  /* text-align: justify; */
}

.row3 {
  padding: 2%;
  width: 35%;
  /* text-align: justify; */
}

.exp {
  font-weight: 500;
  font-size: 30px;
  letter-spacing: 1px;
  line-height: 0.8em;
  font-family: "FuturaPT-Heavy";
  color: var(--headertext);
  font-style: normal;
  padding: 0px 10px 20px 0px;
}

.exp_text {
  font-size: 18px;
  letter-spacing: 1.5px;
  line-height: 0.8em;
  color: var(--primary);
  padding: 22px 0px 0px 0px;
  font-weight: 700;
  text-transform: uppercase
}



.liner {
  width: 1px;
  background-color: #000;
  /* Set line color as needed */
  margin: 0 10px;
  /* Adjust margin to create space between divs */
}



Slider container
.owl-carousel {
  /* width: 910px; */
  position: relative;
  /* margin: 60px 0px 80px 0px; */

}

.item_slider img {
  width: 100%;
  height: auto;

}

/* Experience section  */

.exp-section {
  width: 100%;
  background-image: radial-gradient(rgba(68, 31, 31, 0.0), rgba(0, 0, 0, 70%)), url(../images/enkorok-experience.jpg);
  background-position: center;
  background-size: cover;
  position: relative;
  height: 550px;
  text-align: left;

}

.exp-text {
  box-sizing: border-box;
  margin: 40px 50px 10px 40px;
  min-width: 0;
  position: absolute;
  max-width: 50%;
  top: 50px;

}

.exper_txt {
  font-weight: 500;
  font-size: 40px;
  letter-spacing: 1px;
  line-height: 0.8em;
  font-family: "FuturaPT-Heavy";
  color: whitesmoke;
  font-style: normal;
}

.para-exp {
  color: whitesmoke;
  font-size: 20px;
  margin: 20px 0px 47px 0px;
  line-height: 1.5em;

}


.header_text {
  font-size: 25px;
  margin: 30px 0px 2px 0px;
  color: var(--primary);
  text-align: center;
  letter-spacing: 0.1em;
  font-weight: 700;
  text-transform: uppercase;
  font-style: normal;
  font-family: "FuturaPT-Heavy";
}

/* Experience section  */

.Explore-section {
  width: 100%;
  background-image: url(../images/enkorok_mara_camp_family.jpg);
  background-position: center;
  background-size: cover;
  position: relative;
  height: 550px;
  text-align: center;

}

.Explore-text {
  box-sizing: border-box;
  margin: 10% auto;
  /* Center the content vertically and horizontally */
  max-width: 600px;
  /* Adjust the max-width according to your design */
  text-align: center;
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
}


.Enkorokmara-facility {
  box-sizing: border-box;
  margin: 5% auto;
  /* Center the content vertically and horizontally */
  /* max-width: 600px;  Adjust the max-width according to your design */
  text-align: center;
  position: absolute;
  top: 47%;
  left: 50%;
  transform: translate(-50%, -50%);
}


.Explore_txt {
  font-weight: 500;
  font-size: 40px;
  letter-spacing: 1px;
  line-height: 0.8em;
  font-family: "FuturaPT-Heavy";
  color: whitesmoke;
  font-style: normal;
}

.para-Explore {
  color: whitesmoke;
  font-size: 20px;
  margin: 20px 0px 47px 0px;
  line-height: 1.5em;

}

/*  The guides Page container */

.guides {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  /* margin: 60px 0px 0px 0px; 
  padding: 35px;  */
  width: 100%;

}

.guides-section {
  width: 100%;
  position: relative;
  margin: 30px;
  overflow: hidden;
  /* Add this to hide overflowing content */
  transition: transform 0.3s;
}

.guides-section-img {
  height: 550px;
  object-fit: cover;
  background: radial-gradient(rgba(68, 31, 31, 0.0), rgba(0, 0, 0, 70%));
  object-position: bottom center;
  width: 100%;
}

.guides-section2 {
  width: 100%;
  position: relative;
  margin: 30px;
  overflow: hidden;
  /* Add this to hide overflowing content */
  transition: transform 0.3s;
}

.guides-section:hover,
.guides-section2:hover {
  transform: scale(1.02);

}

.guides_txt {
  font-weight: 500;
  font-size: 35px;
  letter-spacing: 1px;
  line-height: 0.8em;
  font-family: "FuturaPT-Heavy";
  color: whitesmoke;
  font-style: normal;
  margin: 20px;
}


/* TamuTamu Restaurant & Cocktail Bar container section  */

 .section-title {
        margin: 60px 0 30px;
      }
      .section-sub {
        display: inline-block;
        font-size: 12px;
        letter-spacing: 4px;
        color: #c98f4a;
        margin-bottom: 6px;
        font-weight: 600;
      }
      .section-h1 {
        font-size: 56px;
        font-weight: 700;
        margin: 0 0 36px;
        color: #555;
      }

      /* Splide-specific overrides */
      .splide__track {
        padding: 10px 40px; /* space for arrows */
      }
      .splide__slide {
        padding: 0 4px;
        box-sizing: border-box;
      }
      .slide-card {
        height: 495px;
        border-radius: 4px;
        overflow: hidden;
        position: relative;
        background-size: cover;
        background-position: center center;
        box-shadow: 0 2px 0 rgba(0,0,0,0.05);
      }
      .slide-card::before {
        content: "";
        position: absolute;
        left: 0; right: 0; bottom: 0; top: 0;
        background: linear-gradient(to bottom, rgba(0,0,0,0.0) 40%, rgba(0,0,0,0.55) 70%, rgba(0,0,0,0.75) 100%);
        pointer-events: none;
      }
      .slide-body {
        position: absolute;
        left: 28px;
        bottom: 24px;
        right: 28px;
        color: #fff;
        z-index: 2;
      }
      .slide-title {
        font-size: 20px;
        font-weight: 800;
        margin-bottom: 8px;
        color: #fff;
        text-shadow: 0 1px 1px rgba(0,0,0,0.6);
      }
      .slide-desc {
        font-size: 13px;
        line-height: 1.5;
        opacity: 0.95;
        max-width: 88%;
      }
      
      /* You don't need your custom nav-arrow or pagination styles as Splide provides its own */
      .download-btn {
        border-radius: 40px;
        border: 1px solid rgba(201,143,74,0.25);
        background: transparent;
        color: #9b6b3a;
        font-weight: 700;
        padding: 10px 22px;
        letter-spacing: 0.5px;
      }
      .download-wrap {
        display:flex;
        justify-content:flex-end;
        margin-top: 16px;
      }

      @media (max-width: 991.98px) {
        .section-h1 { font-size: 40px; }
        .slide-card { height: 360px; }
      }
      @media (max-width: 767.98px) {
        .splide__track { padding: 0 10px; }
        .slide-card { height: 320px; }
      }



.Restaurant-section {
  width: 100%;
  background-image: radial-gradient(rgba(68, 31, 31, 0.0), rgba(0, 0, 0, 70%)), url(../images/slider/Enkorok-mara-camp-overview-resturant.jpg);
  background-position: center;
  background-size: cover;
  position: relative;
  height: 500px;
}




.exp-full-section {
  position: relative;
  height: 550px;
  overflow: hidden;
}

.exp-full-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}



.Restaurant-text {
  box-sizing: border-box;
  margin: 40px 50px 10px 40px;
  min-width: 0;
  position: absolute;
  /* max-width: 60%; */
  top: 100px;
  /* right: 50px; */
  text-align: center;
}


.Restaurant_txt {
  font-weight: 500;
  font-size: 40px;
  letter-spacing: 1px;
  line-height: 0.8em;
  font-family: "FuturaPT-Heavy";
  color: whitesmoke;
  font-style: normal;
}

.para-Restaurant {
  color: whitesmoke;
  font-size: 20px;
  margin: 20px 0px 47px 0px;
  line-height: 1.5em;
}

/* footer section  */

 footer.site-footer {
      background: url("https://enkorokmaracamp.com/wp-content/themes/EnkorokMaraCamp/images/footer_bg.jpg") no-repeat center center;
      background-size: cover;
      color: #fff;
      text-align: center;
    }

    .footer-overlay {
      background: rgba(0, 0, 0, 0.7);
      padding: 40px 20px;
    }

    .footer-logo {
      max-width: 180px;
      margin-bottom: 20px;
    }

    .footer-content p {
      margin: 8px 0;
      font-size: 16px;
      line-height: 1.6;
      font-weight: 500;
    }

   .footer-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  justify-items: center;
  align-items: center;
  margin: 20px 0;
}

/* grid cell anchor */
.footer-logos a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
}

/* default image sizing */
.footer-logos img {
  max-height: 180px;
  width: auto;
  display: block;
}

/* mobile: force exactly two per row and smaller images */
@media (max-width: 575.98px) {
  .footer-logos {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-logos img {
    max-height: 80px;
    max-width: 100%;
    object-fit: contain;
  }
}

    
    .newsletter-btn {
      display: inline-block;
      margin-top: 20px;
      /* padding: 12px 24px; */
      /* border: 1px solid #fff;
      color: #fff;
      text-decoration: none; */
      transition: all 0.3s ease;
     
    }

    .newsletter-btn img {
      max-height: 80px;
      width: auto;
    }

   

    /* Medium screens (tablets) */
    @media (max-width: 768px) {
      .footer-logos {
        flex-direction: column;
        gap: 15px;
      }

      .footer-content p {
        font-size: 14px;
      }
    }

    /* Small screens (phones) */
    @media (max-width: 480px) {
      .footer-logo {
        max-width: 140px;
      }

      .newsletter-btn {
        width: 100%;
        padding: 14px;
      }
    }



.social_media {
  width: 100%;
  color: var(--bodycolor);
  margin: 5px;
  /* text-align: right;
  transform: translate(-50%, -50%); */

}

.social_media .fab {
  color: var(--bodycolor);
  margin: 0 13px;
  cursor: pointer;
  padding: 15px 0;
  font-size: 33px;
  transition: 1s;
}

.social_media .fab:hover {

  color: var(--headertext);

}


/* latest News and updates */


.new_update {
  margin-bottom: 50px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

.cards__item {
  display: flex;
  padding: 1rem;
}

@media (min-width: 40rem) {
  .cards__item {
    width: 50%;
  }
}

@media (min-width: 56rem) {
  .cards__item {
    width: 33.3333%;
  }
}




.card:hover .card__image {
  filter: contrast(100%);
}

.card__content {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 1rem;
}

.card__image {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
  filter: contrast(70%);
  overflow: hidden;
  position: relative;
  transition: filter 0.5s cubic-bezier(0.43, 0.41, 0.22, 0.91);
}

.card__image::before {
  content: "";
  display: block;
  /* padding-top: 56.25%; */
}

@media (min-width: 40rem) {
  .card__image::before {
    /* padding-top: 66.6%; */

  }
}

.card__title {
  color: var(--primary);
  font-size: 1.25rem;
  font-weight: 300;
  letter-spacing: 2px;
  text-transform:capitalize;
  padding-bottom: 10px;
  font-weight: 700;
}

.card__text {
  flex: 1 1 auto;
  font-size: 1.1rem;
  line-height: 1.5;
  margin-bottom: 1.25rem;
}


.testimonials-wrapper {
  background-color: rgba(55, 30, 6, 0.7);
  width: 40%;
  height: 550px;
  margin-left: 5%;
  transition: all 0.5s ease;
  color: #fff;

}



.testimonials {

  padding: 80px 0 50px;

}

.testimonials:before {
  content: "";
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  top: 0;
  position: absolute;
  left: 0;
}

.testimonials .heading h2 {
  font-size: 25px;
  font-weight: 700;
  color: #ffffff;
}

.testimonials .heading h2 span {
  color: #ff0000;
}

.testimonials p {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  color: #d1e5e7;
  margin: 20px 0;
  padding: 0;
}

/* Image */
.testimonials .carousel-inner .carousel-item .team {
  width: 150px;
  height: 150px;
  border: 2px solid #ff0000;
  border-radius: 100%;
  padding: 5px;
  margin: 10px 0 15px;
}

.testimonials .carousel-inner .carousel-item h3 {
  font-size: 20px;
  color: #ffffff;
  font-weight: 600;
}

.testimonials .carousel-inner .carousel-item h4 {
  font-size: 14px;
  font-weight: 300;
  color: #e2e1e1;
  margin-bottom: 20px;
}

.testimonial-section .carousel-indicators {
  bottom: -30px;
}

.testimonial-section .carousel-indicators li {
  background-color: #b8b7b7;
  border-radius: 30px;
  height: 4px;
  width: 40px;
}

.testimonial-section .carousel-indicators .active {
  background-color: #ff0000;
}

.testimonial-section .control span {
  cursor: pointer;
}

.testimonials .icon {
  height: 40px;
  width: 40px;
  background-size: 100%, 100%;
  border-radius: 50%;
  font-size: 30px;
  background-image: none;
  color: #ffffff;
}

.checked {
  color: orange;
}

@media only screen and (max-width: 769px) {

  .experience {

    flex-direction: column;
    /* margin: 60px 0px 0px 0px; */
    padding-left: 5%;
    padding-right: 5%;
  }

  .row1 {
    display: block;
    width: 100%;
  }

  .row2 {
    padding-top: 5%;
    width: 100%;
    text-align: justify;
  }

  .row3 {
    display: none;
  }

  .exp {
    font-weight: 800;
    font-size: 25px;
  }

  .exp_text {
    font-size: 15px;

  }

  .exp-section {
    height: 450px;
    text-align: center;

  }

  .exp-text {

    max-width: 100% !important;

  }

  .guides {

    display: block !important;
    padding: 5%;



  }

  .guides-section {
    margin: 0px 0px 26px 0px;
    max-height: 400px;

  }

  .guides-section2 {

    margin: 0px;
    max-height: 400px;

  }


  .Restaurant-text {
    max-width: 100%;

  }

  .testimonials-wrapper {
    width: 60%;
    margin-left: 20%;
    transition: all 0.5s ease;

  }

}


@media only screen and (max-width: 469px) {

  .Explore-text {

    width: 100%;
  }


  .Enkorokmara-facility {
    width: 100%;

  }


  .Explore_txt {
    font-size: 35px;

  }

  .para-Explore {
    margin: 20px 40px 20px 40px;
    font-size: 18px;

  }

  .para-exp {
    margin: 20px 0px 26px 0px;
    font-size: 18px;

  }


  .exp-text {
    margin: 0px 50px 10px 40px;
    font-size: 35px;

  }

  .Restaurant-text {
    top: 0px;
    right: -13%;
    margin: 0px 50px 10px 40px;
    text-align: center;
    width: 100%;
    padding: 5%;
  }


  .para-Restaurant {
    margin: 20px 0px 26px 0px;
    font-size: 18px;
  }

  .Restaurant_txt {
    font-size: 35px;
    margin: 30px 0px 0px 0px;
  }

  .footer {
    /* background-position: center top 50%; */
    background-image: url(../images/footer_bg.jpg) !important;
    color: white;
    padding: 20px;
    text-align: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 50%;

  }

  .testimonials-wrapper {
    width: 100%;
    margin-left: 0%;
    transition: all 0.5s ease;

  }

}

/*  The guides Page container */


/* ABOUT US PAGE SECTION  */

.banner-section {
  /* z-index: 0; */

  position: relative;
  margin-bottom: 30px;
}

.bg-cover {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.img-cover {

  width: 100%;
  /* height: calc(80vh); */
  object-fit: cover;
  height: 550px;
}


.about-governor-section {
  position: relative;
  padding: 0px 0 0px 0;
  z-index: 3;
}

.about-governor-section:before {
  content: "";
  position: absolute;
  background-image: url(../images/background-1.png);
  top: -88px;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  z-index: -2;
  left: 0;
  /*background-size: contain;*/
  background-size: contain;
}

.about-governor-title {
  padding: 18px 0 0 50px;
}

.about-governor-title h2 {
  color: #D0A656;
  font-size: 107px;
  line-height: 115px;
  margin: 0 0 7px 0;
 
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.about-governor-title h1 {
  color: #D0A656;
  font-size: 107px;
  line-height: 115px;
  margin: 0 0 7px 0;
 
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.about-governor-title>span {
  color: var(--primary);
  font-size: 59px;
  line-height: 50px;
  font-family: mrs-eaves-xl-serif-narrow, serif;
  font-style: italic;
  font-weight: 400;
}

.about-governor-three-grid {
  margin-top: 5px;
  padding: 0 10px 0 6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -ms-grid-row-align: center;
  align-items: center;
  -moz-box-align: center;
  -webkit-align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -moz-box-pack: center;
  -webkit-justify-content: center;
}

.about-governor-three-list {
  width: 100%;
  /* text-align: center; */
  position: relative;
}

.about-img {
  width: 100px;
  height: 100px;
}

.about-governor-three-list:after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 1px;
  height: 80px;
  background-color: #D0CACA;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  margin: 5px 0 0 0;
}

.about-governor-three-list:last-child:after {
  display: none;
}

.about-governor-three-list span {
  color: #D0CACA;
  font-size: 45px;
 
  font-style: normal;
  font-weight: 400;
  line-height: 48px;
  letter-spacing: 0.1em;
}

.about-governor-three-list p {
  color: #D0CACA;
  font-size: 16px;
  text-transform: uppercase;
 
  font-style: normal;
  font-weight: 700;
  margin: 16px 0 0 0;
  line-height: 19px;
  letter-spacing: 0.2em;
  padding: 10px 0 0 50px;
}

.about-governor-content {
  padding: 17px 40px 0 18px;
}

.about-governor-content, .about-governor-content p {
  
  font-style: normal;
  font-weight: 300;
}

.about-governor-content .btn {
  max-width: 236px;
  width: 100%;
  float: left;
  margin: 20px -5px 0 0px;
 
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.35em;
}

.about-governor-content .btn-secondary:after {
  /*right: 12px;*/
}

.discover-middle-banner {
  /*margin: -82px 0 0 0;*/
}



.banner-title {
  position: absolute;
  right: 155px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1;
  margin-top: 74px;
}

.banner-title h2 {
  color: #fff;
  font-size: 137px;

  font-style: normal;
  font-weight: 400;
  margin: 0;
  line-height: 136px;
}

.banner-title img {
  display: block;
  margin: 0 0 0 43px;
  max-width: 420px;
}

.banner-title .btn {
  float: right;
  margin: 18px 6px 0 0;
  font-family: pt-sans-narrow, sans-serif;
  font-style: normal;
  font-weight: 700;
  padding: 10px 29px 13px 33px;
}

.banner-title .btn-default:after {
  display: none;
}



/* our people section page */

.discover-content-section {
  position: relative;
  padding: 50px 0;
  align-items: center;
}

.discover-content-section .container {
  position: relative;
}

.discover-content-section .row {
  display: flex;
  align-items: center;
}

.discover-content-section .discover-content {
  width: 100%;
  padding-right: 15px;
  /* Adjust as needed */
}

.discover-content-section .discover-content h2 {
  font-size: 32px;
  color: #50483F;
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 30px;
  font-style: normal;
  font-weight: 700;
}

.discover-content-section .discover-content p {
  font-style: normal;
  font-weight: 300;
  margin-bottom: 30px;
}

.discover-content-section .btn-secondary {
  max-width: 235px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.35em;
}

.discover-content-section .discover-image {
  width: 100%;
  height: auto;
}

.discover-content-section .discover-image img {
  width: 100%;
  height: auto;
  border-radius: 5px;
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.3);
}



/* Awards  images scrolling 
*/

.awards-section {
  position: relative;
  padding: 50px 0;
  background: var(--headertext);
  margin: 40px 0;
}

.Awards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  flex-direction: row;
  /* Change to row to display logos in a row on larger screens */
  align-items: center;
  /* Center items vertically */


}

.Awards ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.Awards ul li {
  margin: 10px;
}


.Awards ul li img {
  max-width: 200px;
  height: auto;
}


/* contacts form  */


.contact-map {
  border-radius: 5px 5px 5px 5px;
  -moz-border-radius: 5px 5px 5px 5px;
  -webkit-border-radius: 5px 5px 5px 5px;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  width: 450px;
  height: 310px;
  overflow: hidden;

}


.contact-page {
  padding: 180px 0 80px;
}

.contact-fields input[type="text"], .contact-fields input[type="email"] {
  width: 305px;
  padding: 0 20px;
}

.contact-fields input, .contact-fields textarea {
  border: 1px solid #ccc;
  -webkit-border-radius: 23px;
  -moz-border-radius: 23px;
  border-radius: 23px;
}

.contact-fields .wpcf7-form-control-wrap {
  margin: 0 0 35px;
  color: #50483F;
}

.contact-fields .go-top .label-text, .contact-fields .input-has-value .label-text {
  top: -28px;
  opacity: 1;
  color: #D0CACA;
  font-family: pt-sans-narrow, sans-serif;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 15px;
  letter-spacing: 0.25em;
  left: 31px;
}

.contact-fields textarea {
  width: 100%;
  height: 200px;
  resize: none;
  padding: 10px 20px;
}

.search-dropdown-box {
  width: 318px;
  display: inline-block;
  height: 50px;
}

.search-dropdown-box.country-dropdown {
  width: 100%;
}

.search-dropdown-box.country-dropdown .bootstrap-select.btn-group:not(.input-group-btn), .bootstrap-select.btn-group[class*=col-] {
  width: 100%;
}

.enquiry-form-wrapper .search-dropdown-box {
  float: left;
}

.radio_buttons {
  width: 190px;
  display: inline-block;
}

.contact-page .submit-btn {
  width: auto;
  padding: 0;
  text-align: center;
  height: 45px;
  line-height: 45px;
  vertical-align: middle;
  border: 0;
  overflow: visible;
  margin-top: -7px;
}

.contact-page .submit-btn input {
  border: 1px solid #D0A656;
  width: 130px;
  background: transparent;
  font-family: pt-sans-narrow, sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #50483F;
  height: 46px;
  margin-left: 5px;
}

.contact-page .submit-btn:after {
  display: none;
}

.radio_buttons input {
  float: left;
}



/* Room Amenites  */


.amenities-container {
  width: 100%;
  margin: 0 auto;
  /* padding: 20px; */
}

.row_amenites {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.amenity {
  /* width: calc(33.33% - 10px); */
  text-align: center;
}

.amenity img {
  max-width: 100%;
  height: auto;
  margin-bottom: 5px;
}

.caption_amenities {
  font-size: 15px;
  color: #aa6422;
  font-weight: bold;
}


.gallery img {
  
  object-fit: cover;
}


 /* front page .amenities-container */

 
/* ---------- Responsive styling (matching the other block) ---------- */

/* Ensure the row allows wrapping and columns behave as expected */
.feature-icons {
  display: flex;            /* fallback if Bootstrap .row is missing/overridden */
  flex-wrap: wrap;          /* allow columns to wrap to next line */
  margin-left: -0.5rem;
  margin-right: -0.5rem;
  align-items: stretch;
  box-sizing: border-box;
}

/* Column gutters */
.feature-icons > [class*="col-"] {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  box-sizing: border-box;
}

/* Amenity card inside the column */
.fpamenity {
  text-align: center;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0.5rem 0;
  box-sizing: border-box;
}

/* Icon and caption */
.fpamenity img {
  max-width: 60px;
  width: 100%;
  height: auto;
  margin-bottom: 6px;
  display: block;
  object-fit: contain;
}
.fpcaption_amenities {
  font-size: 0.95rem;
  color: #aa6422;
  font-weight: 700;
  margin: 0;
}

/* If you have any grouped rows class variant */
.fprow_amenites {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Small screens: force two-per-row */
@media (max-width: 575.98px) {
  .feature-icons > .col-6,
  .feature-icons > [class*="col-sm-6"] {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .fpcaption_amenities {
    font-size: 0.90rem;
  }
}

/* Medium and up: three-per-row */
@media (min-width: 576px) {
  .feature-icons > .col-md-4,
  .feature-icons > [class*="col-md-4"] {
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
  }
}

/* safety: ensure outer container doesn't force full-width */
.amenities-container {
  width: 100%;
  box-sizing: border-box;
}






#baguetteBox-overlay .full-image img {
  max-width: 80%;
  /* Adjust the maximum width as needed */
  max-height: 80vh;
  /* Adjust the maximum height as needed */
}



.room-rates {
  text-align: center;

  color: white;
  padding: 20px;
}

.contact-forms {
  /* text-align: center; */

  color: rgba(68, 3, 3, 0.942);
  padding: 20px;
}


.rate-section {
  margin-bottom: 20px;
}

.price-section {}

.price-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 10px;
}

.price-text h3,
.price-text p {
  margin: 5px 0;
}



.heading-title.price-text {}

.pp-primary-title {
  display: inline;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: 2px;
  margin: 12px;
}

.pp-secondary-title {
  display: inline;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: 2px;
}



.additional-info {
  margin-top: 20px;
  font-weight: 500;
  font-size: 14px;
  line-height: 0.9;
  letter-spacing: 1px;
  text-align: center;
  text-transform: uppercase;
}

.additional-p {
  margin: 0;


}

.action-buttons {
  margin-top: 20px;
}

.button {
  display: inline-block;
  padding: 10px 20px;
  background-color: var(--bodycolor);
  color: var(--headertext);
  text-decoration: none;
  border-radius: 5px;
  margin-right: 10px;
}

.button:hover {
  background-color: var(--headertext);
  text-decoration: none;
  color: var(--bodycolor);
}

.no-margin-md-6 {
  margin-right: 0 !important;
  margin-left: 0 !important;
}


.rooms-crd {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

.rooms-crd__item {
  display: flex;
  padding: 1rem;
}

@media (min-width: 40rem) {
  .rooms-crd__item {
    width: 50%;
  }
}

@media (min-width: 56rem) {
  .rooms-crd__item {
    width: 50%;
  }
}

.rooms {
  /* background-color: white;
  border-radius: 0.25rem;
  box-shadow: 0 20px 40px -14px rgba(0, 0, 0, 0.25); */
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.rooms img {
  height: auto;
  max-width: 100%;
  vertical-align: middle;
  max-height: 257px;
  object-fit: cover;
}

.rooms:hover .rooms__image {
  filter: contrast(100%);
}

.rooms__content {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 1rem;
}

.rooms__image {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
  filter: contrast(70%);
  overflow: hidden;
  position: relative;
  transition: filter 0.5s cubic-bezier(0.43, 0.41, 0.22, 0.91);
}

.rooms__image::before {
  content: "";
  display: block;
  /* padding-top: 56.25%; */
}

@media (min-width: 40rem) {
  .rooms__image::before {
    /* padding-top: 66.6%; */

  }
}

.rooms__title {
  color: var(--primary);
  font-size: 1.25rem;
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding-bottom: 10px;
  font-weight: 700;

}

.rooms__text {
  flex: 1 1 auto;
  font-size: 1.1rem;
  line-height: 1.5;
  margin-bottom: 1.25rem;
}



/* Template Name: Safaris & activities  section  */

.sj-details {
  background-color: #332524;
  color: #fff;
  font-family: "Goudy Oldstyle W01", serif;
  padding-top: 30px;
  padding-bottom: 35px;
}

.sj-container {
  max-width: 1320px;
}

.sj-section {
  line-height: 1.55em;
  /* font-family: "Goudy Oldstyle W01", serif; */
  font-size: 21px;
}

.sj-post-intro {
  padding: 0px 0 32px;
  line-height: 30px;
}

.sj-post-intro__wrap {
  position: relative;
}

.sj-post-intro .intro-top {
  padding-bottom: 0;
}

.sj-post-intro .intro-top {
  padding: 34px 15px 24px;
}

.sj-post-intro .intro-bottom__title, .sj-post-intro .intro-top__title {
  color: var(--primary);
  font-size: 40px;
  font-family: mrs-eaves-xl-serif-narrow, serif;
  font-style: italic;
  letter-spacing: -.01em;
}

.sj-post-intro .intro-top__title {
  margin: 0 0 21px;
}

.sj-section h2 {
  font-size: 58px !important;
  line-height: 68px !important;
  margin-bottom: 24px !important;
}

.sj-post-intro .intro-quote {
  padding-left: 50px;
  padding-right: 50px;
}

.sj-post-intro .intro-highlights-text ul {
  column-count: 2;
}

.sj-section ul:not([class]) li {
  padding-left: 25px;
  margin-left: 12px;
  margin-bottom: 0.55em;
}

.sj-section ul:not([class]) li:before {
  width: 6px;
  height: 6px;
}

.sj-headings-row {
  margin-bottom: 36px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.sj-headings-row h2 {
  margin-bottom: 0 !important;
}

.tick-list {
  list-style: none;           /* remove default bullets */
  padding-left: 0;            /* remove default padding */
  margin: 0;
}

.tick-list li {
  position: relative;
  padding-left: 28px;         /* space for the tick */
  margin-bottom: 8px;
  line-height: 1.5;
}

.tick-list li::before {
  content: "✔";               /* tick character */
  position: absolute;
  left: 0;
  top: 0;
  color: #8B4513;             /* brown tick (saddle brown) */
  font-weight: bold;
  font-size: 1.1em;
}


.sj-post-itineraries .itinerary-day {
  color: #993d0f;
  width: 150px;
  display: inline-block;
  font-weight: 700;
  font-size: 19px;
  font-family: "ITC Berkeley Oldstyle W01 Book", sans-serif;
  margin-top: 7px;
  line-height: 24px;
  flex: 0 0 150px;
}

.sj-post-itineraries .itinerary-title {
  font-family: "Goudy Oldstyle W01", serif;
  font-size: 30px;
  display: inline-block;
}



.c-btn-primary-orange {
  color: #fff;
  border: 2px solid #993d0f;
  background-color: #993d0f;
}

.single-safari .block-camps-lodges-slider, .single-safari .block-post-links {
  background-color: transparent !important;
  padding-bottom: 0;
}

.block-slider-img-text .inner-wrapper {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
}

.block-slider-img-text .container {
  padding: 0;
}

.single-safari .block-camps-lodges-slider .row, .single-safari .block-post-links .row {
  margin-top: 60px;
  margin-bottom: 20px;
  padding-top: 0;
  padding-bottom: 0;
}

.block-slider-img-text .row {
  padding: 70px 0;
  margin: 0;
}

.block-slider-img-text .row .b-content-images__col {
  display: block;
}

.c-btn {
  font-size: 13px;
  font-weight: 900;
  line-height: 20px;
  font-family: Verlag, sans-serif;
  display: inline-block;
  min-width: 200px;
  padding: 13px 15px 11px;
  -webkit-transition: .2s linear;
  transition: all .2s linear;
  text-align: center;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #bb832a;
  border: 2px solid #bb832a;
  background-color: transparent;
  outline: 0;
  cursor: pointer;
}

.c-btn-primary-transparent {
  color: #993d0f !important;
  border: 2px solid transparent;
  background-color: transparent;
}



.sj-section.block-content {
  margin-bottom: 63px;
}


.two-columns ul {
  column-count: 2;
}


.text-center {
  text-align: center !important;
}

.minw-0 {
  min-width: 0;
}


/* accordion  itinerary  */

.page-accordion--primary {
  padding-bottom: 60px;
}

.itinerary-expand-all {
  color: #993d0f;
  text-transform: uppercase;
  font-family: Verlag, sans-serif;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .8px;
  transition: 0.4s;
}

.single-accordion {
  margin: 0;
}

.single-accordion__title {
  position: relative;
  border-bottom: 1px solid #dfdbd8;
  padding: 23px 60px 24px 20px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  cursor: pointer;
}

.single-accordion__title:after {
  position: absolute;
  top: 50%;
  right: 22px;
  display: block;
  width: 13px;
  height: 23px;
  content: '';
  transition: transform 0.3s ease-in-out;
  /* Smooth transition for rotation */
  transform: translateY(-50%) rotate(90deg);
  background-image: url(https://micato.com/wp-content/themes/micato-safaris/images/icons/link-arrow-colored-big.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.single-accordion.active .single-accordion__title:after {
  transform: translateY(-50%) rotate(-90deg);
  /* Adjust rotation for active items */
}

.single-accordion__content {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  font-family: "Goudy Oldstyle W01", serif;
  font-size: 20px;
  line-height: 32px;
  transition: max-height 0.4s ease-out, opacity 0.4s ease-out;
  /* Smooth transitions for content */
}

.single-accordion.active .single-accordion__content {
  max-height: 1000px;
  /* Adjust max-height as needed */
  opacity: 1;
  /* Show content */
  transition: max-height 0.4s ease-in, opacity 0.4s ease-in;
  /* Smooth transitions for content */
}

.single-accordion__content p:last-child {
  margin: 0;
}

.single-accordion__content p {
  margin-bottom: 14px;
}


.itineraries_image {

  width: 100%;
  position: relative;
  margin-bottom: 30px
}

.itineraries_image img {
  width: 100%;
  max-height: 304px;
  object-fit: cover;
  margin: 19px 0;
}


@media only screen and (min-width: 1441px) .sj-sidebar-navigation-link-wrapper {
  transform: translateX(50px);
}

.sj-sidebar-navigation-link-wrapper {
  position: sticky;
  top: 100px;
  padding-top: 33px;
}

.sj-sidebar-navigation-link {
  display: block;
  color: #30241c;
  /* font-family: Verlag, sans-serif; */
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
  padding: 8px 0;
}

.sj-sidebar-navigation-link.active {
  color: #993d0f !important;
}


.btn:not(:disabled):not(.disabled) {
  cursor: pointer;
}

.sj-sidebar-navigation-links-button {
  order: -2;
  position: relative;
  padding-top: 18px;
  padding-bottom: 17px;
  text-align: left;
  text-decoration: none !important;
  color: #993d0f !important;
  border: none !important;
  z-index: 4;
  pointer-events: auto;
}



.sj-sidebar-navigation-content .brochure-link {
  display: none !important;
}

.sj-sidebar-navigation-link-wrapper .c-btn {
  margin-bottom: 16px;
}

.sj-sidebar-navigation-links {
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
}

.sj-widget-area {
  margin-top: 30px;
  padding-top: 40px;
  border-top: 1px solid #d9d4d0;
  margin-bottom: 30px;
}

.sj-widget-area .widget_text {
  margin-bottom: 24px;
}

.sj-widget-area .widget_text {
  text-align: center;
  font-size: 19px;
  line-height: 26px;
  font-weight: 300;
  box-shadow: 0 10px 30px 0 rgba(66, 50, 50, .1);
  color: #807c79;
  padding: 20px;
}



/* tours ands safaris template */



.col-group {
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 20px;
  /* Adjust gap as needed */
  padding: 0 0px 40px 0;
}

.fl-col, .fr-col {
  width: 100%;
  position: relative;
}

.col-group-2 {
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 20px;
  /* Adjust gap as needed */
  padding: 0 0px 40px 0;
}

.fl-col-2, .fr-col-2 {
  width: 100%;
  position: relative;
}

.gala-image {
  position: relative;
  overflow: hidden;
  height: 100%;
}

.gala-image img {
  width: 100%;
  height: 450px;
  display: block;
  object-fit: cover;
  /* Maintain aspect ratio while filling the container */
  transition: filter 0.5s, transform 0.5s;
  /* Add transition for blur and zoom effect */
}

.gala-image:hover img {
  filter: blur(3px);
  /* Apply blur effect on hover */
  transform: scale(1.1);
  /* Apply zoom effect on hover */
  background-color: #000000;
}

.Safari_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 25px;
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 100%);
  box-sizing: border-box;
  color: #fff;
  /* Text color on overlay */
}

.tags {
  font-weight: 700;
  font-size: 30px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.safari-int-description {

  font-size: 1.2rem;
  line-height: 1.5em;

}

.tags, .safari-int-description, .btn {
  margin-bottom: 10px;
}

/* Responsive styles */
@media screen and (max-width: 768px) {
  .col-group {
    grid-template-columns: 100%;
  }
}


/* booking and reservation form 
 */

 .wpcf7 .screen-reader-response {
	position: absolute;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	width: 1px;
	margin: -1px;
	padding: 0;
	border: 0;
	word-wrap: normal !important;
}

.wpcf7 form .wpcf7-response-output {
	margin: 2em 0.5em 1em;
	padding: 0.2em 1em;
	border: 2px solid #00a0d2; /* Blue */
}

.wpcf7 form.init .wpcf7-response-output,
.wpcf7 form.resetting .wpcf7-response-output,
.wpcf7 form.submitting .wpcf7-response-output {
	display: none;
}

.wpcf7 form.sent .wpcf7-response-output {
	border-color: #46b450; /* Green */
}

.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output {
	border-color: #dc3232; /* Red */
}

.wpcf7 form.spam .wpcf7-response-output {
	border-color: #f56e28; /* Orange */
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
	border-color: #ffb900; /* Yellow */
}

.wpcf7-form-control-wrap {
	position: relative;
}

.wpcf7-not-valid-tip {
	color: #dc3232; /* Red */
	font-size: 1em;
	font-weight: normal;
	display: block;
}

.use-floating-validation-tip .wpcf7-not-valid-tip {
	position: relative;
	top: -2ex;
	left: 1em;
	z-index: 100;
	border: 1px solid #dc3232;
	background: #fff;
	padding: .2em .8em;
	width: 24em;
}

.wpcf7-list-item {
	display: inline-block;
	margin: 0 0 0 1em;
}

.wpcf7-list-item-label::before,
.wpcf7-list-item-label::after {
	content: " ";
}

.wpcf7-spinner {
	visibility: hidden;
	display: inline-block;
	background-color: #23282d; /* Dark Gray 800 */
	opacity: 0.75;
	width: 24px;
	height: 24px;
	border: none;
	border-radius: 100%;
	padding: 0;
	margin: 0 24px;
	position: relative;
}

form.submitting .wpcf7-spinner {
	visibility: visible;
}

.wpcf7-spinner::before {
	content: '';
	position: absolute;
	background-color: #fbfbfc; /* Light Gray 100 */
	top: 4px;
	left: 4px;
	width: 6px;
	height: 6px;
	border: none;
	border-radius: 100%;
	transform-origin: 8px 8px;
	animation-name: spin;
	animation-duration: 1000ms;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
}

@media (prefers-reduced-motion: reduce) {
	.wpcf7-spinner::before {
		animation-name: blink;
		animation-duration: 2000ms;
	}
}

@keyframes spin {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}

@keyframes blink {
	from {
		opacity: 0;
	}

	50% {
		opacity: 1;
	}

	to {
		opacity: 0;
	}
}

.wpcf7 [inert] {
	opacity: 0.5;
}

.wpcf7 input[type="file"] {
	cursor: pointer;
}

.wpcf7 input[type="file"]:disabled {
	cursor: default;
}

.wpcf7 .wpcf7-submit:disabled {
	cursor: not-allowed;
}

.wpcf7 input[type="url"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"] {
	direction: ltr;
}

.wpcf7-reflection > output {
	display: list-item;
	list-style: none;
}

.wpcf7-reflection > output[hidden] {
	display: none;
}


.wpcf7-list-item-label::before, .wpcf7-list-item-label::after {
  content: " ";
}

wpcf7-list-item-label::before, .wpcf7-list-item-label::after {
  content: " ";
}



.wpcf7-form {



  width: 100%;



  margin-bottom: 30px;



}



.wpcf7-form label {



  width: 100%;



  margin-bottom: 0;



}



.wpcf7-form-control-wrap {



  display: inline-block;



  width: 100%;



  vertical-align: bottom;



  margin-bottom: 15px;



}



.wpcf7-form-control {



  /* border: 1px solid #707070; */



  padding: 10px 9px;



  line-height: 24px;



 



  color: #707070;



  width: 100%;



}



textarea.wpcf7-form-control {



  height: 150px;



  resize: none;



}



.wpcf7-form br {



  display: none;



}



.page-content .content .wpcf7-form p {



  margin-bottom: 0;



}



.wpcf7-not-valid-tip {



  font-size: 12px;



}



.wpcf7-form-control.wpcf7-submit {



  display: inline-block;



  width: 100%;



  max-width: 380px;



  background-color: #FECB02;



  border: none;



  color: #fff;



  line-height: 40px;



  padding: 10px 15px;



  font-weight: bold;



  font-size: 32px;



  margin: 15px 0 0;



  transition: all 0.4s;



  cursor: pointer;



  text-transform: uppercase;



}

















div#bookNowModal .modal-header h5 {



  font-size: 24px;



}



div#bookNowModal .modal-header h5 {



  font-size: 24px;



  color: #476D78;



  font-weight: 600;



}



.modal-body form input, .modal-body form select, .modal-body form textarea {



  padding: 5px 15px;



  border-radius: 0;



  border-color: #cacaca;



}



.wpcf7-not-valid-tip {



  font-size: 12px !important;



}



label span.req {



  color: red;



}



/* .wpcf7-form label {



  font-size: 14px;



} */







.modal-header {



  border-bottom: 0;



  padding-bottom: 0;



}



.modal-body .col-md-12 p {



  font-size: 17px; 



}



span.wpcf7-form-control.wpcf7-radio {



  border: none;



  padding: 0;



  margin: 0;



}


.wpcf7-list-item {
  display: inline-block;
  margin: 0 0 0 1em;
}


span.wpcf7-form-control-wrap.subscribe span.wpcf7-list-item {



  display: grid;



  margin: 0;



  border: none;



}



span.wpcf7-form-control-wrap.subscribe {



  margin-bottom: 0;



}



input#submit-enq {



  width: unset;



  font-size: 24px;



  padding: 5px 20px;



}



input#travel-no {



  width: 100%;



  padding: 5px 15px;



  border: 1px solid #c5c5c5;



}

.book-accept {
  display: inline-flex;
  width: 100%;
}

