@import url("https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100..900;1,100..900&display=swap");

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: auto;
}
:root {
  --text-gray: #666666;
  --text-light-green: #226819;
  --meno-font: "Meno Banner";
  --yellow: #faf400;
}
body {
  font-size: 20px;
  font-family: "Akkurat";
  font-weight: 400;
  line-height: 1.5;
  color: var(--text-gray);
}
html::-webkit-scrollbar {
  width: 0px;
  background: transparent;
}
html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-smooth iframe {
  pointer-events: none;
}
html {
  scrollbar-width: none;
  -ms-overflow-style: none;
}
input:focus-visible,
select:focus {
  outline: unset;
  box-shadow: unset;
}
button {
  border: unset;
  background-color: transparent;
}
a,
span {
  display: inline-block;
  text-decoration: none;
}
img {
  max-width: 100%;
}
li {
  list-style: none;
}
.dark h1,
.dark h2,
.dark h3,
.dark h4,
.dark h5,
.dark h6,
.dark p,
.dark a,
.dark {
  color: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--meno-font);
  line-height: 1.2;
  font-weight: 700;
  color: #000;
}
h1 {
  font-size: 100px;
}
.h2-90 {
  font-size: 80px;
}
h2 {
  font-size: 62px;
}
h3 {
  font-size: 52px;
}
h4 {
  font-size: 44px;
}
h5 {
  font-size: 36px;
}
h6 {
  font-size: 22px;
}
.cta {
  font-size: 14px;
  text-transform: uppercase;
  border-radius: 100px;
  background-color: #226819;
  padding: 16px 32px;
  color: #fff;
  border: 1px solid transparent;
  letter-spacing: 1px;
  font-weight: 500;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: color 0.3s ease;
}

/* Sliding gradient layer */
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 100px;
  background: linear-gradient(to right, #129800cc, #16bb00a8, #ffffffc5);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
  z-index: -1;
}

.cta:hover::before {
  transform: translateX(0);
}

.cta:hover {
  color: #ffffff;
  border: 1px solid transparent;
}
.cta-white {
  background-color: #fff;
  color: #000;
  border-color: #000;
}

.cta-trans {
  position: relative;
  padding: 16px 25px;
  background-color: #ffffff0f;
  border-radius: 100px;
  z-index: 0;
  transition: 0.5s ease-in;
}
.cta.cta-trans:hover {
  background-color: #226819;
}
.cta-trans:hover::after {
  opacity: 0;
}
.cta-trans::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 0.8px;
  background: linear-gradient(90deg, #66666696 0%, #00000075 100%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: -1;
}
.cta-white:hover {
  border-color: transparent;
}
.cta.cta-white::before {
  background-color: linear-gradient(to right, #000000d8, #000000cc, #ffffff93);
}
.cta-txt {
  padding: 0;
  background-color: unset;
  color: var(--text-light-green);
}
.cta-txt:hover::before {
  display: none;
}
.cta-txt:hover {
  color: #000;
}
.bg-light {
  background-color: #f5f5f563;
}
.bg-green {
  background-color: #226819;
}
.bg-green-light {
  background-color: #2268190d;
}
.bg-grn2 {
  background-color: #22681908;
}
.pt-50 {
  padding-top: 50px;
}
.pt-100 {
  padding-top: 100px;
}
.pb-100 {
  padding-bottom: 100px;
}
.pt-120 {
  padding-top: 120px;
}
.pt-130 {
  padding-top: 130px;
}
.pb-130 {
  padding-bottom: 130px;
}
.pb-140 {
  padding-bottom: 140px;
}
.pt-140 {
  padding-top: 140px;
}
.pt-90 {
  padding-top: 90px;
}
.pb-90 {
  padding-bottom: 90px;
}
.mt-50 {
  margin-top: 50px;
}
.gradient-border {
  border-bottom: 1px solid transparent;
  border-image-source: linear-gradient(
    90deg,
    rgba(34, 104, 25, 0.068) 0%,
    #22681965 50%,
    rgba(34, 104, 25, 0.082) 100%
  );
  border-image-slice: 1;
}
.gradient-border-radius,
.loc,
.stry-table tr {
  position: relative;
}
.gradient-border-radius::before,
.loc::before,
.stry-table tr::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 30px;
  padding: 1px; /* border thickness */
  background: linear-gradient(
    90deg,
    rgba(34, 104, 25, 0.14) 0%,
    rgba(34, 104, 25, 0.4) 50%,
    rgba(34, 104, 25, 0.14) 100%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}
.stry-table tr::before {
  z-index: 1;
  padding: 0;
  padding-bottom: 1px;
  border-radius: 0;
  bottom: 1px;
}
.form-gradient input::before,
.form-gradient select::before,
.form-gradient textarea::before {
  border-radius: 5px;
}
.main-table td::before,
.main-table th::before {
  z-index: 1;
  border-radius: 0;
}
.main-table th::before {
  background: linear-gradient(
    90deg,
    rgb(255 255 255 / 15%) 0%,
    rgb(34 104 25 / 0%) 50%,
    rgb(255 255 255 / 8%) 100%
  );
}
tbody tr:last-child td:first-child::before {
  border-bottom-left-radius: 20px;
}
tbody tr:last-child td:last-child::before {
  border-bottom-right-radius: 25px;
}
/* loader */

.loader1 {
  text-transform: uppercase;
  font-size: 50px;
  font-weight: 900;
  color: #226819;
  position: fixed;
  height: 100vh;
  display: flex;
  top: 0;
  align-items: center;
  justify-content: center;
  width: 100%;
  background-color: #ffffff;
  z-index: 99;
}
.loader-bg1 {
  background-color: #26c4110e;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
}
.loadr-txt {
  position: relative;
  width: fit-content;
  z-index: 1;
  font-size: 50px;
  font-weight: 900;
  overflow: hidden;
  font-family: var(--meno-font);
}

.bottom-line {
  position: absolute;
  height: 2px;
  width: 100%;
  background-color: #226819;
  left: 0;
  bottom: 0;
  transform: scaleX(0);
  transform-origin: left;
  animation: lineReveal 2s ease forwards;
}

@keyframes lineReveal {
  to {
    transform: scaleX(1);
  }
}
/* loader bars */
.loader-bars {
  height: 100vh;
  position: fixed;
  display: flex;
  align-items: center;
  height: 100%;
  width: 100%;
  z-index: 99;
}
.load-inn {
  display: flex;
  height: 100%;
  width: 100%;
}

.load-bar {
  height: 100%;
  width: 150px;
  flex: 1;
  background-color: #fff;
  transform-origin: top;
  animation: barLift 4s ease-in forwards;
}
.bar-inn {
  background-color: #26c4112b;
}
@keyframes barLift {
  from {
    transform: scaleY(1);
  }
  to {
    transform: scaleY(0);
  }
}
.load-bar:nth-child(1) {
  animation-duration: 0.4s;
}
.load-bar:nth-child(2) {
  animation-duration: 0.6s;
}
.load-bar:nth-child(3) {
  animation-duration: 0.8s;
}
.load-bar:nth-child(4) {
  animation-duration: 1s;
}
.load-bar:nth-child(5) {
  animation-duration: 1.2s;
}
.load-bar:nth-child(6) {
  animation-duration: 1.3s;
}
.load-bar:nth-child(7) {
  animation-duration: 1.5s;
}
.load-bar:nth-child(8) {
  animation-duration: 1.7s;
}
.load-bar:nth-child(9) {
  animation-duration: 1.9s;
}
.load-bar:nth-child(10) {
  animation-duration: 2s;
}
.loader-bars {
  display: none;
}
/* Bouncing balls background */
.bouncing-balls-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}
.ball {
  position: absolute;
  border-radius: 50%;
  opacity: 0.3;
}

/* header */
.header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 9;
  transition: 0.2s ease-in-out;
}
.header.reached-top {
  transition: 0.2s ease-in-out;
}

.header.reached-top .nav-link {
  color: #000;
}
.navbar-brand img {
  transition: 0.5s ease-in;
}
.header.reached-top .navbar-brand img {
  width: 100px;
}
.header.reached-top .hdr-right img {
  filter: invert(1);
}
.header.reached-top .cta-trans {
  color: #000;
}
.header.reached-top {
  background-color: #fff;
}
.header.reached-top .cta-trans:hover {
  color: #fff;
}
.header.reached-top .cta-trans:hover::after {
  background: unset;
}
.header.reached-top .nav-link::after,
.header.reached-top .nav-link.active::after {
  background-color: #000;
}
.header.reached-top .navbar {
  padding: 10px 0;
  align-items: center;
  transition: 0.2s ease-in-out;
}
.header.reached-top .hdr-right .cart .cart-number {
  background-color: var(--text-light-green);
  color: #fff;
}
.header .nav-link {
  color: #fff;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 500;
  position: relative;
  padding: 0 !important;
  letter-spacing: 2px;
}
.header .nav-link::after,
.header .nav-link.active::after {
  content: "";
  position: absolute;
  height: 1px;
  width: 60%;
  background-color: var(--yellow);
  bottom: -1px;
  left: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease-in;
}
.header .nav-link.active {
  font-weight: 700;
}
.header .nav-link.active::after {
  transform: unset;
}
.header .nav-link:hover::after {
  transform: scaleX(1);
}
.navbar {
  gap: 80px;
  align-items: start;
  padding-top: 30px;
}
.hdr-right .cart {
  position: relative;
}
.hdr-right .cart .cart-number {
  position: absolute;
  background-color: #fff;
  height: 14px;
  width: 14px;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  right: -6px;
  border-radius: 100%;
}
.hdr-right {
  align-items: center;
  gap: 30px;
  justify-content: end;
  width: 380px;
}

.navbar-nav {
  width: calc(100% - 380px);
  justify-content: center;
  gap: 46px;
}
.nav-item.dropdwn-toggle {
  position: relative;
}
/* dropdown  */
.dropdown-wrap {
  position: absolute;
  left: 0;
}
.dropdown-wrap {
  position: absolute;
  left: -60px;
  background-color: #fff;
  width: 1000px;
  border-radius: 25px;
  top: 40px;
}
.drp-tgle2 .dropdown-wrap {
  width: 480px;
  padding: 40px;
}

.drop-lft {
  width: 25%;
  padding: 40px;
  padding-right: 0;
}

.drp-rgt {
  width: 75%;
  padding: 40px;
  background-color: #226819;
  border-top-right-radius: 25px;
  border-bottom-right-radius: 25px;
}
.drop-lft h6 {
  font-size: 24px;
  margin: 0;
}
.desti-detail-lft {
  width: 40%;
}

.desti-detail-rgt {
  width: 60%;
}
.desti-list a,
.abt-list li a {
  color: #000;
}
.desti-list a,
.drp-rgt a,
.abt-list li a {
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  padding-top: 15px;
}
.desti-list a,
.drp-rgt a {
  width: 90%;
}
.abt-list li a:hover {
  color: var(--text-light-green);
}
.abt-list li img {
  filter: brightness(0);
}
.abt-list li a:hover img {
  filter: unset;
}
.desti-slide {
  height: auto !important;
}
.desti-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  overflow: hidden;
}
.desti-slider .slick-dots {
  bottom: 15px;
}
.drop-inner {
  position: relative;
}
.drop-inner::after {
  content: "";
  position: absolute;
  background-image: url();
  background-repeat: no-repeat;
  background-size: contain;
  height: 10px;
  border-radius: 25px;
  overflow: hidden;
  width: 10px;
}
.drop-poly {
  position: absolute;
  top: -25px;
  left: 80px;
}
.dropdown-wrap {
  display: none;
}
.dropdown-wrap.active {
  display: block;
}

.desti-details {
  display: flex;
}
.desti-details.active {
  display: flex;
}
.desti-tab.active {
  color: var(--text-light-green);
}
.desti-tab span {
  opacity: 0;
}
.desti-tab.active span {
  opacity: 1;
}
.close-btn {
  gap: 5px;
  cursor: pointer;
}
.close-btn span {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #fff;
  border-radius: 100%;
  height: 20px;
  width: 20px;
}
/* banner sec */
.ovr-hidden {
  overflow: hidden;
}
.sec-bg {
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
.banner-sec {
  display: flex;
  position: relative;
  align-items: end;
  color: #fff;
  min-height: 100dvh;
  overflow: hidden;
}
.banner-sec::before {
  height: 100%;
  content: "";
  width: 100%;
  background-color: #00000021;
  left: 0;
  right: 0;
  position: absolute;
  pointer-events: none;
}
.banner-sec h1,
.banner-sec h4 {
  color: #fff;
}
.uganda-img {
  padding-top: 50px;
  padding-bottom: 70px;
}
.banner-sec h1 {
  line-height: 1;
}
.bnner-top p {
  max-width: 660px;
}

.banner-btm-contact {
  position: absolute;
  right: 40px;
  bottom: 80px;
}

.circle-button {
  position: relative;
}

.text-circle {
  position: absolute;
  top: 0;
  height: 120px;
  width: 120px;
  color: #fff;
  fill: #fff;
  font-size: 20px;
  animation: rotateText 12s linear infinite;
  transform-origin: 50% 50%;
}

.mail-icon {
  height: 120px;
  width: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.text-circle text {
  font-size: 25px;
}

@keyframes rotateText {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.bnr-btn {
  margin-top: 45px;
}
.bnner-top h4 {
  font-size: 40px;
  font-weight: 400;
  font-family: "Akkurat";
  margin-bottom: 15px;
}
.sli-out {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  pointer-events: none;
  z-index: -1;
  height: 100%;
}
.sli-out div {
  height: 100%;
}
.bnr-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slick-track {
  display: flex;
}
.bnr-slide {
  height: auto;
}
.bnr-slide img {
  transform: scale(1);
  transition: transform 0.1s linear; /* small easing to smooth jumpy frames */
  will-change: transform;
}

/* fixed part */
.fixed-part {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
}
.relative-part {
  position: relative;
  margin-top: 100vh;
  height: fit-content;
  background-color: #fff;
  background-position:
    0 0,
    0 0;
  background-size: auto, auto;
  z-index: 2;
}
.diff-hd {
  justify-content: space-between;
}
.diff-hd .top-ldt {
  width: 80%;
}
.dif-hd-img {
  width: 20%;
  display: flex;
  align-items: start;
  justify-content: end;
}
.top-ldt p {
  font-size: 52px;
  line-height: 1.2;
  font-weight: 500;
  color: #000;
}
/* section 2 */
.green-list {
  padding: 0;
  color: var(--text-gray);
  position: relative;
}
.hdng-with-line {
  position: relative;
}
.green-list::after,
.hdng-with-line::after {
  position: absolute;
  content: "";
  height: 1px;
  width: 68px;
  background-color: var(--text-light-green);
  left: 0;
  top: -40px;
}
.green-list span {
  color: var(--text-light-green);
  font-weight: 700;
}
.list-after li {
  position: relative;
  padding-bottom: 20px;
  padding-left: 40px;
}
.list-after li::after {
  position: absolute;
  content: "";
  background-image: url("../img/tick-svg.svg");
  background-repeat: no-repeat;
  background-size: contain;
  height: 30px;
  width: 30px;
  left: 0;
  top: 0;
}
.diff-row {
  align-items: center;
  margin-top: 40px;
}
.diff-row-rgt img {
  width: 100%;
  padding-left: 100px;
}
.mosaic-reveal {
  position: relative;
  width: 100%;
  max-width: 500px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
}

.mosaic-piece {
  background-size: 300% 300%;
  opacity: 0;
  transform: scale(0.8);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.mosaic-piece.show {
  opacity: 1;
  transform: scale(1);
}
.animated-tiles {
  position: relative;
  width: 100%;
  display: block;
  overflow: hidden;
  padding-top: 0 !important;
  border-radius: 30px;
}

.animated-tiles::before {
  content: "";
  display: block;
  padding-top: 66.66%; /* fallback ratio (will update by JS) */
}

.tile-piece {
  position: absolute;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  opacity: 0;
  transform: translateY(40px) scale(0.9);
  will-change: transform, opacity;
}

.diff-row-rgt {
  display: flex;
  justify-content: end;
}

/* section 3 */
.sf-slide {
  margin: 0 10px;
  height: auto !important;
}
.sf-cnnt span {
  color: var(--text-light-green);
  font-size: 16px;
}
.sf-cllction-in h2 {
  text-align: center;
}
.sf-card p {
  color: var(--text-gray);
  margin-bottom: 20px;
}
.sf-img {
  overflow: hidden;
}
.sf-card {
  overflow: hidden;
  border: 1px solid;
  border-radius: 25px;
  border: 1px solid #0000001c;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: 0.3s ease-in;
}
.sf-card img {
  transition: 0.4s ease-in;
}
.sf-card:hover img {
  transform: scale(1.2);
}
.sf-card:hover {
  box-shadow: 50px 34px 60px 0px #0000000d;
  border-color: transparent;
  transform: translateY(-10px);
}
.sf-row .slick-list.draggable {
  padding: 40px 0;
}
.slick-arrow i::before {
  font-size: 22px;
}
.lodges-tab .slick-prev:before,
.lodges-tab .slick-next:before {
  display: none !important;
}
.slick-prev:before,
.slick-next:before {
  display: none;
}
.lodges-tab .custom-arrow {
  width: fit-content;
  height: fit-content;
}
.sf-slider .slick-prev,
.tabs-slider1 .slick-prev,
.tabs-slider2 .slick-prev {
  left: -62px;
}
.tabs-slider1 .slick-next,
.tabs-slider2 .slick-next {
  right: -62px;
}
.sf-cnnt {
  padding: 30px;
  display: flex;
  flex-direction: column;
}
.sf-cnnt h6 {
  margin-top: 15px;
  margin-bottom: 15px;
}
.sf-btn {
  width: fit-content;
  margin-top: auto;
  margin-left: 30px;
  margin-bottom: 30px;
}
.uganda-img img {
  width: 80%;
  position: relative;
}
.uganda-img {
  display: flex;
  justify-content: center;
}
.sf-row {
  margin-top: 50px;
}
.differ-sec {
  border-bottom: 1px solid transparent;
  border-image-source: linear-gradient(
    90deg,
    rgba(34, 104, 25, 0.068) 0%,
    #22681965 50%,
    rgba(34, 104, 25, 0.082) 100%
  );
  border-image-slice: 1;
}

/* stay sec */

.s-lft,
.s-rgt {
  width: 30%;
}

.s-mid {
  width: 40%;
}
.sr-top {
  display: flex;
  justify-content: space-between;
}
.s-top {
  display: flex;
  justify-content: end;
  padding-right: 70px;
}
.s-lft {
  display: flex;
  flex-direction: column;
  gap: 100px;
}
.s-rgt {
  display: flex;
  flex-direction: column;
  gap: 240px;
}
.sty-rw {
  align-items: center;
  gap: 30px;
}
.s-mid-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.sr-btm {
  display: flex;
  justify-content: center;
}

.animated-text span {
  color: #9a9a9a; /* start grey */
  display: inline-block;
}
.ms1 {
  max-width: 250px;
}
.ms2 {
  max-width: 290px;
}
.ms-3 {
  max-width: 180px;
}
.ms4 {
  max-width: 220px;
}
.ms5 {
  max-width: 260px;
}
.sr-top {
  gap: 30px;
}
.sr-lft {
  width: 40%;
}
.sr-right {
  width: 60%;
}
.ex-lft {
  z-index: 1;
  position: relative;
  background-color: #fff;
  text-align: center;
}

.ex-slide {
  position: relative;
  display: flex !important;
}

.ex-txt p {
  margin: 0;
  font-size: 24px;
  color: #fff;
  font-weight: 700;
  position: absolute;
  bottom: 30px;
  right: 30px;
  left: 30px;
}
.ex-btn {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}
.ex-sli-btns {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.slider-btns {
  display: flex;
  align-items: center;
  gap: 10px;
}
.progress-bar {
  width: 100%;
  height: 4px;
  background: linear-gradient(
    90deg,
    rgba(34, 104, 25, 0.103) 0%,
    #22681946 50%,
    rgba(34, 104, 25, 0.205) 100%
  );
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}

.progress-fill {
  height: 100%;
  width: 0%;
  background: var(--text-light-green);
  transition: width 0.4s ease;
}

.ex-btm {
  margin-top: 50px;
}
.ex-row {
  position: relative;
}
.ex-row::after {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background-color: #fff;
  top: 0;
  left: -100%;
}
.ex-slide {
  margin: 0 15px;
  align-items: center;
  height: auto;
}
.ex-slide > div {
  width: 50%;
}
.slick-arrow i,
.ex-sli-btns i {
  border: 0.6px solid #0a0a0a;
  height: 60px;
  width: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  color: #000;
  cursor: pointer;
}
.slick-arrow i:hover,
.ex-sli-btns i:hover {
  border: 0.6px solid #226819;
  color: #226819;
}
.ex-sli-btns {
  margin-top: 40px;
}
.ex-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 1;
  height: 60px;
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff36;
  border-radius: 100%;
}
.ex-lft p {
  max-width: 800px;
  margin: auto;
}
.ex-cta {
  margin-top: 45px;
}
.ex-slide-nm p {
  margin: 0;
  color: #000;
  font-size: 32px;
  font-weight: 600;
  display: flex;
  align-items: center;
}
.ex-slide-nm p span {
  font-size: 24px;
}
.gor-inner > div {
  flex: 1;
  align-items: center;
}
.gor-right-inn {
  height: 100%;
  max-width: 500px;
  text-align: center;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.gor-btn {
  margin-top: 40px;
}
.big-img {
  height: 100vh;
}
.big-text {
  max-width: 600px;
  height: 100%;
  margin-left: auto;
  display: flex;
  align-items: end;
}
.big-profile {
  width: 15%;
}
.b-mid {
  width: 40%;
}
.b-btns {
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
}
.b-desig {
  font-size: 16px;
}
.b-btns .cta-trans {
  padding: 16px 45px;
}
.big-profile h6 {
  font-size: 24px;
  margin-top: 20px;
}
.b-wrp-flex {
  width: 100%;
}
.big-img h3 {
  color: #fff;
}
.big-img .container-fluid {
  height: 100%;
}
.big-img-innr {
  height: 100%;
  align-items: center;
}
.sf-btn.cta {
  padding: 15px 30px;
}
.sf-btn.cta::before {
  background: #000;
}
/* section drag */
.e-book-slider-wrap .slick-slide {
  color: #fff;
  transform: scale(0.8);
  transition: all 0.4s ease-in-out;
}

.e-book-slide-inner.slick-active.slick-center .drag-me-btn {
  visibility: visible;
}

.e-book-slider-wrap .slick-slide,
.e-book-slider-wrap
  .slick-slide[aria-hidden="true"]:not(.slick-cloned)
  ~ .slick-cloned[aria-hidden="true"] {
  transform: scale(0.8, 0.8);
  transition: all 0.4s ease-in-out;
}

.e-book-slider-wrap .slick-center,
.e-book-slider-wrap
  .slick-slide[aria-hidden="true"]:not([tabindex="-1"])
  + .slick-cloned[aria-hidden="true"] {
  transform: scale(1.1);
}

.e-book-slider-wrap .slick-current.slick-active {
  transform: scale(1.1);
}
.e-book-img img {
  width: 100%;
}
.e-book-slider-wrap .slick-list.draggable {
  overflow: visible;
  padding: 0 15vw !important;
}
.btm-e p {
  margin: 0;
}
.wil-hd {
  text-align: center;
  margin-bottom: 80px;
  max-width: 610px;
  margin: auto;
  margin-bottom: 80px;
}
.e-cntnt {
  position: absolute;
  bottom: 0px;
  left: 0px;
  right: 0px;
}
.e-cntnt span {
  font-size: 14px;
}
.e-cnt-inn {
  position: relative;
  padding: 0 20px;
  padding-bottom: 20px;
  z-index: 1;
  opacity: 0;
}
.slick-current .e-cnt-inn {
  opacity: 1;
}
.e-cnt-inn::after {
  content: "";
  position: absolute;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 54.15%, #000000 82.42%);
  height: 300px;
  width: 100%;
  bottom: 0;
  left: 0px;
  right: 0px;
  z-index: -1;
}
.btm-e {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.drag-btn {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.drag-btn {
  background-color: #ffffff12;
  border: 1px solid;
  height: 120px;
  width: 120px;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  backdrop-filter: blur(3px);
  font-family: var(--meno-font);
  text-transform: uppercase;
  opacity: 0;
  display: flex;
}
.slick-current .drag-btn {
  opacity: 1;
}
.drg-inner {
  animation: dragWiggle 2.5s ease-in-out infinite;
}

/* X-axis motion */
@keyframes dragWiggle {
  0% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(18px);
  }
  50% {
    transform: translateX(0);
  }
  75% {
    transform: translateX(-18px);
  }
  100% {
    transform: translateX(0);
  }
}
.e-book-slide-inner:hover .btm-e .arrw {
  transform: rotate(28deg);
  transition: 0.2s ease-in;
}
.e-book-slide-inner .btm-e .arrw {
  transition: 0.2s ease-in;
}
.drag-btn p {
  margin: 0;
  align-items: center;
  gap: 10px;
  line-height: 1;
  margin-top: 4px;
}
.drag-btn p .dot {
  height: 10px;
  width: 10px;
  display: block;
  background-color: #fff;
  border-radius: 100%;
}
.e-book-slide-inner {
  border-radius: 25px;
  overflow: hidden;
}

/* google sec */
.g-reviw-inn {
  justify-content: center;
  gap: 40px;
  text-align: center;
}
.g-lft,
.g-rgt {
  position: relative;
  border-radius: 30px;
  padding: 60px 110px;
  display: flex;
  flex-direction: column;
  background: white;
  z-index: 1;
  height: 100%;
}
.g-inn p {
  font-size: 62px;
  color: #000;
  font-family: var(--meno-font);
  font-weight: 700;
  margin-top: 15px;
}
.g-strs {
  margin-top: 20px;
}
.g-txt {
  height: 100px;
}
.g-btn .cta-trans {
  color: #000;
}
.g-btn .cta-trans:hover {
  color: #ffffff;
}
/* Gradient Border Layer */
.g-lft::before,
.g-rgt::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 30px;
  padding: 1px; /* border thickness */
  background: linear-gradient(
    90deg,
    rgba(34, 104, 25, 0.14) 0%,
    rgba(34, 104, 25, 0.4) 50%,
    rgba(34, 104, 25, 0.14) 100%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
  pointer-events: none;
}
.g-lft:hover,
.g-rgt:hover {
  box-shadow: 50px 34px 60px 0px #0000000d;
  background: unset;
}
.g-lft:hover::before,
.g-rgt:hover::before {
  display: none;
}
/* client sec */
.client-slide {
  display: flex !important;
  align-items: center;
  gap: 40px;
}
.client-slider > div:first-child {
  width: 40%;
}
.client-slider > div:nth-child(2) {
  width: 60%;
}
.cients-saying h2 {
  text-align: center;
}

.client-img {
  text-align: center;
  display: flex !important;
  align-items: center;
  justify-content: center;
}
.client-slider {
  display: flex;
  align-items: center;
  gap: 130px;
}
/* journey sec */
.jour-card {
  border-radius: 15px;
  padding: 30px;
  background: #ffffff03;
  backdrop-filter: blur(5px);
}
.jour-row {
  gap: 20px 0;
}
.jour-card p {
  font-size: 14px;
  margin: 0;
}
.j-img img {
  margin-bottom: 20px;
}
.jour-card:hover p,
.jour-card:hover h6 {
  color: #000;
}
.jour-card:hover {
  background-color: #fff;
}
.j-img img {
  filter: brightness(0) saturate(100%) invert(32%) sepia(64%) saturate(420%)
    hue-rotate(66deg) brightness(92%) contrast(92%);
}
.jour-btn {
  display: flex;
  justify-content: center;
  margin-top: 70px;
}
.jour-hd {
  max-width: 1040px;
  margin: auto;
  margin-bottom: 50px;
}

/* guest review section */
.gust-slide {
  margin: 0 15px;
  padding: 30px;
  height: auto !important;
}
.gust-top {
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
}
.gus-cntnt {
  position: relative;
  padding-top: 20px;
}
.gus-cntnt .comma {
  position: absolute;
  right: 0;
  top: 20px;
}
.gus-cn-top {
  display: flex;
  align-items: center;
  gap: 30px;
}
.gus-pro {
  align-items: center;
  gap: 20px;
}
.gus-pro h6 {
  margin: 0;
  margin-top: 3px;
}
.gus-cntnt p {
  margin: 0;
  margin-top: 10px;
}
.slick-dots li.slick-active button:before {
  opacity: 1;
  color: #226819;
}
.slick-dots li button:before {
  font-size: 20px;
  color: #226819;
}
.slick-dots {
  bottom: -50px;
}
.guestr-inn h2 {
  text-align: center;
  margin-bottom: 40px;
}
.client-profile p {
  margin: 0;
}
.client-profile p {
  gap: 10px;
}
.slider-btns.client-btn {
  margin-top: 40px;
}
.c-comma {
  margin-bottom: -25px;
}

/* main tiger sec */
.main-tiger {
  background-image: url("http://sagmeticinfotech.com/wp/2024/travel-toro/wp-content/uploads/2026/02/main-tiger.png");
  background-attachment: unset;
  height: 100vh;
  background-position: center;
  position: relative;
}
.mob-claw {
  display: none;
}
.tiger--cntnt {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 1;
}
.tiger-overlay {
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: #00000082;
  top: 0;
  left: 0;
}
.tiger-claw,
.tiger-claw img {
  z-index: 1;
  position: relative;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
/* legacy sec */
.leg-inner,
.leg-inner h2 {
  text-align: center;
  color: #fff;
}
.leg-inner p {
  max-width: 700px;
  margin: auto;
  margin-bottom: 50px;
}

/* footer css */
.footer {
  background-color: #0e2808;
}
.foot-slide {
  display: flex !important;
  align-items: center;
  justify-content: center;
}

.connect {
  text-align: center;
  margin-top: 90px;
  margin-bottom: 60px;
  color: #fff;
}

.social-list {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}

.social-list li a {
  border: 0.8px solid #ffffff1f;
  height: 60px;
  width: 60px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s ease-in-out;
}
.social-list li a:hover {
  background-color: #fff;
  color: #226819;
  transform: translateY(-10px);
}
.social-list li a i {
  transition: 0.2s ease-in-out;
}
.social-list li a:hover i {
  transform: scale(1.2);
}
.social-list li a,
.connect h5 {
  color: #fff;
}
.frm-input,
.frm-input input,
.form {
  width: 100%;
}
.frm-input input {
  padding: 20px 30px;
  border-radius: 100px;
  border: unset;
}
.form form {
  position: relative;
}
.subscribe-btn {
  position: absolute;
  right: 8px;
  top: 8px;
}
footer a {
  color: var(--text-gray);
}
footer a:hover {
  color: #fff;
}
footer h6 {
  color: #fff;
}
.footer-links {
  padding-top: 70px;
  padding-bottom: 100px;
}
.foot-list li {
  font-size: 16px;
  padding-top: 8px;
}
.foot-logos {
  justify-content: space-between;
}
.place-wrap {
  text-align: center;
  padding-bottom: 50px;
  padding-top: 70px;
}
.place-img {
  position: relative;
}
.place-img::after {
  content: "";
  position: absolute;
  height: 1px;
  width: 100%;
  background-color: #ffffff32;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
}
.place-img .place-inn {
  padding: 0 50px;
  background-color: #0e2808;
  z-index: 1;
  position: relative;
}
.place-inn img {
  display: inline-block;
  animation: spin360 4s linear infinite;
}

@keyframes spin360 {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.place-list {
  justify-content: center;
  margin-top: 40px;
  gap: 230px;
}
.place-list a {
  color: #fff;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 15px;
}
.copy-right p,
.copy-right a {
  color: #fff;
  font-size: 18px;
}
.copy-right {
  align-items: center;
  justify-content: space-between;
  padding: 40px 0;
  border-top: 1px solid #ffffff1f;
}
.c-rgt ul {
  gap: 10px;
}
.foot-slide img {
  opacity: 0.7;
}

/* collection page */
.bnner-innertop {
  text-align: center;
  max-width: 1000px;
  margin: auto;
  position: relative;
  z-index: 1;
}
.inner-banner {
  position: relative;
  overflow: hidden;
  padding: 0;
  background-attachment: unset;
  height: 700px;
  display: flex;
  align-items: end;
  padding-bottom: 80px;
}

.bg-img {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1); /* starting scale */
  will-change: transform;
  object-position: center left;
}

.img-txt-row {
  align-items: center;
}
.common-cntnt-wrap p {
  margin: 0;
}
.mr-100 {
  max-width: 90%;
}
.primate-sec .sf-slide {
  margin-bottom: 30px;
  height: 100% !important;
  margin-inline: 0;
}

.primate-sec .sf-card img {
  width: 100%;
}
.primate-sec .sf-row.row {
  gap: 30px 0;
}
.load-more {
  display: flex;
  justify-content: center;
  margin-top: 60px;
}
.pri-list li {
  display: flex;
  font-size: 12px;
  align-items: end;
  gap: 4px;
  color: #226819;
  line-height: 1;
}
.primate-sec .sf-cnnt {
  padding: 25px;
  padding-bottom: 0;
}
.pri-list {
  gap: 9px;
}
.primate-sec .sf-cnnt p {
  color: #000;
  font-size: 16px;
  margin: 0;
}
.saf-journey .ex-cntnt {
  display: flex;
  align-self: start;
}
.saf-journey .ex-cntnt.gradient-border-radius {
  height: 100%;
  display: flex;
  align-items: center;
}
.saf-journey .ex-slide {
  height: auto;
}
.saf-journey .ex-cntnt.gradient-border-radius::before {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.saf-journey .ex-slide > div {
  height: 100%;
}
.saf-journey .ex-slide {
  align-items: stretch;
  border-radius: 20px;
}
.cnt-gra-inn {
  height: 100%;
  max-width: 500px;
  margin: auto;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.cnt-gra-inn h5 {
  margin: 30px 0;
  margin-bottom: 10px;
}
.saf-journey .ex-mid {
  margin-bottom: 35px;
}
.saf-journey .ex-mid h2 {
  display: flex;
  justify-content: center;
}
.acco-wrap span {
  color: #000;
}
.saf-journey .ex-lft p {
  max-width: 870px;
  margin: auto;
}
.lodges-top {
  text-align: center;
  margin-bottom: 50px;
}
.lodges-top h2,
.saf-journey .ex-mid h2,
.luxury-fly .common-cntnt-wrap h5,
.hdng-without-line span {
  color: var(--text-light-green);
}
.main-table thead tr {
  background-color: var(--text-light-green);
  color: #fff;
  font-size: 20px;
  font-family: var(--meno-font);
}
.main-table th,
.main-table td {
  padding: 25px 30px;
}
.main-table td {
  font-size: 16px;
}
.main-table {
  border-radius: 25px;
  overflow: hidden;
}
.luxury-cntnt {
  max-width: 570px;
}
.img-txt-hdn {
  margin-bottom: 30px;
}
.luxury-fly .mr-100 {
  max-width: 100%;
}
.luxury-fly .common-cntnt-wrap {
  margin-left: 100px;
}

.Exclusive-sec .sf-cnnt p {
  color: #fff;
}
.Exclusive-sec .sf-cnnt {
  padding: 30px;
  display: flex;
  flex-direction: column;
  background-color: #ffffff17;
}
.Exclusive-sec .sf-card > div {
  flex: 1;
}

.Exclusive-sec .sf-card:hover .sf-cnnt {
  background-color: #fff;
}
.Exclusive-sec .sf-card:hover .sf-cnnt p,
.Exclusive-sec .sf-card:hover .sf-cnnt h5 {
  color: #000;
}
.slick-whte .slick-arrow i {
  color: #fff;
  border-color: #fff;
}
.slick-whte .slick-arrow i:hover {
  background-color: #fff;
  color: var(--text-light-green);
}

/* book form  */
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 20px;
  margin-bottom: 20px;
  border: 1px solid #2268191a;
  border-radius: 5px;
  font-size: 16px;
  background-color: #fff;
  /* border: unset; */
}
.form-field select::placeholder {
  color: #666666;
}
.agree-txt {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}
.agree-txt a {
  color: var(--text-light-green);
}
.agree-txt p {
  margin: 0;
}
.frm-btn {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
.book-inner {
  max-width: 1200px;
  margin: auto;
  padding: 100px;
  border-radius: 30px;
}
.form-hd {
  max-width: 800px;
  margin: auto;
  margin-bottom: 40px;
}

/*  */
/* HIDE DEFAULT RADIO */
.radio-field {
  display: none;
}

/* FULL CARD CLICKABLE */
.steps-check {
  display: block;
  cursor: pointer;
}

/* IMAGE BOX */
.day-img {
  border-radius: 16px;
  overflow: hidden;
  transition: 0.3s ease;
}
.day-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 16px;
}
.days-option {
  justify-content: center;
  gap: 30px;
}
/* CUSTOM RADIO BUTTON */
.custom-check {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #ccc;
  transition: 0.3s ease;
  z-index: 2;
}

/* TICK MARK */
.custom-check:after {
  content: "";
  position: absolute;
  left: 7px;
  top: 3px;
  width: 6px;
  height: 12px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  opacity: 0;
  transition: 0.2s ease;
}

/* WHEN RADIO SELECTED */
.radio-field:checked + .steps-check .custom-check {
  background: #226819;
  border-color: #226819;
}

.radio-field:checked + .steps-check .custom-check:after {
  opacity: 1;
}

/* OPTIONAL: SELECTED CARD BORDER */
.radio-field:checked + .steps-check .day-img {
  box-shadow: 0 0 0 3px #28a745 inset;
}

/* OPTIONAL: IMAGE ZOOM ON SELECT */
.radio-field:checked + .steps-check img {
  transform: scale(1.05);
  transition: 0.3s ease;
}

/*  days css */

.days-bx {
  display: block;
}

/* HIDE ORIGINAL CHECKBOX */
.checkbox-field {
  display: none;
}

/* IMAGE BOX */
.day-img {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
}

.day-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* CUSTOM CHECK */
.custom-check {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #226819;
  border: 2px solid #226819;
  transition: 0.3s;
}

/* TICK */
.custom-check:after {
  content: "";
  position: absolute;
  left: 18px;
  top: 12px;
  width: 9px;
  height: 19px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  opacity: 0;
}
/* WHEN CHECKED */
.checkbox-field:checked + .steps-check .custom-check {
  background: #28a745;
  border-color: #28a745;
}

.checkbox-field:checked + .steps-check .custom-check:after {
  opacity: 1;
}
.shrt-desp {
  color: #000;
  margin-top: 20px;
  font-size: 22px;
  font-family: "Meno Banner";
  font-weight: bold;
}
.step-btn {
  display: flex;
  justify-content: center;
  margin-top: 50px;
  gap: 30px;
}
.step-btn .cta {
  display: flex;
  align-items: start;
  gap: 16px;
}
.step-btn .cta span {
  height: fit-content;
  margin-top: -2px;
}
.cta.cta-prev {
  background-color: #2268192b;
  color: #666666;
}

.step-btn .cta {
  display: flex;
  align-items: start;
  gap: 16px;
}

.step-btn .cta span {
  height: fit-content;
  margin-top: -2px;
}

.cta.cta-nxt:hover {
  background-color: #226819;
}

.cta.cta-prev:hover {
  background-color: #226819;
  color: #fff;
}

.cta.cta-prev:hover span img {
  filter: brightness(100);
}
.trips-hd p {
  color: var(--text-light-green);
  font-weight: 800;
}
.days-bx {
  border-radius: 25px;
  overflow: hidden;
}
.trip-hdng {
  text-align: center;
  margin-bottom: 50px;
}
/* days ends */

.trip-steps-bar {
  display: flex;
  justify-content: end;
  gap: 70px;
  position: relative;
  max-width: 1000px;
  margin: auto;
  margin-bottom: 80px;
}

.step-progress {
  position: absolute;
  height: 3px;
  background: #226819;
  width: 0%;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.4s ease;
  z-index: 0;
  left: 0;
}

.t-step {
  height: 50px;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border-radius: 100%;
  z-index: 1;
}
.t-step.active {
  background-color: var(--text-light-green);
  color: #fff;
}
.t-step.done {
  background-color: #226819;
  color: #fff;
}

.t-step.active {
  background-color: #226819;
  color: #fff;
}

/* .t-step.done::after {
  content: "✓";
  font-size: 18px;
} */

.depart-list {
  position: relative;
  overflow: hidden;
  display: block;
  text-decoration: none;
  border-radius: 10px;
}

/* ===== FRONT PART ===== */
.front-part {
  position: relative;
  z-index: 2;
  background: #fff;
}

/* ===== BACK PART ===== */
.back-part {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: var(--text-light-green);
  padding: 20px;
  z-index: 3;
  color: #fff;

  /* hidden above */
  transform: translateY(-120%);
  opacity: 0;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;

  /* smooth fall + smooth go back */
  transition:
    transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1),
    opacity 0.3s ease;
}

/* ===== HOVER EFFECT ===== */
.depart-list:hover .back-part {
  transform: translateY(0);
  opacity: 1;
}

.departure-briefing {
  display: flex;
  justify-content: center;
  gap: 30px;
}
.departure-briefing a:hover {
  background-color: #fff;
  box-shadow: 50px 34px 60px 0px #0000000d;
}
.depart-list {
  border: 1px solid #2268191a;
  border-radius: 25px;
  padding: 40px;
  gap: 30px;
  flex: 1;
  text-align: center;
}
.trip-steps-bar::after {
  height: 15px;
  width: 15px;
  position: absolute;
  content: "";
  background-color: #226819;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 100%;
}
.shrt-desp p {
  margin: 0;
}
.trp-step {
  display: none;
}

.trp-step.active {
  display: block;
}

.cta.cta-prev {
  background-color: #2268192b;
  color: #666666;
}
/* thnkew box css */
.thnew-bx {
  text-align: center;
  max-width: 1000px;
  margin: auto;
}

.thnks-cntnt {
  font-size: 52px;
  color: #000;
}

.thnew-bx h2 {
  font-size: 82px;
  margin-top: 50px;
}
.contact-us-bt {
  margin-top: 50px;
}
.ynkew-img img {
  width: 160px;
}
/* destination page */
.desti-sm {
  max-width: 1200px;
}
.desti-sm p {
  max-width: 1050px;
  margin: auto;
}
.fea-card {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
}
.fea-card .fea-img img {
  border-radius: 30px;
  width: 100%;
}
.fea-txt {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  justify-content: space-between;
  opacity: 0;
  transform: translateY(40px);
  transition: transform 0.4s ease;
  z-index: 1;
}
.fea-txt span {
  height: 40px;
  width: 40px;
  border: 1px solid #fff;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fea-txt span img {
  object-fit: contain;
}
.fea-card:hover .fea-txt {
  opacity: 1;
  transform: translateY(0px);
}
.fea-txt h6 {
  margin: 0;
}
.fea-card::after {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 10.21%,
    rgba(0, 0, 0, 0.9) 93.09%
  );
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  transition: transform 0.4s ease;
}
.fea-card:hover::after {
  opacity: 1;
}
.centr-bnr {
  align-items: center;
  padding: 0;
  padding-top: 80px;
}
.inquiry-form .frm-btn {
  justify-content: start;
  margin-bottom: 30px;
}
.form-control {
  color: inherit;
}
.frm-btn.frm-btn-lft {
  justify-content: start;
}

.partnerlist li {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 32px 0;
  /* border-bottom: 1px solid; */
  font-size: 24px;
  font-family: var(--meno-font);
  color: #000;
  font-weight: 700;
}
.abt-mp img {
  filter: grayscale(1);
}
.partner-wrap {
  justify-content: center;
}
.advisor-inn {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
.advisor-inn p {
  margin-top: 10px;
  margin-bottom: 40px;
}
.paymnt-poli-wrp {
  max-width: 580px;
}
.cancl-poli-sec h2 {
  text-align: center;
}
.sfri-cllc .hdng-with-line::after {
  top: -20px;
}
.sfri-cllc .common-cntnt-wrap {
  max-width: 580px;
  padding-left: 40px;
}
.sf-img {
  position: relative;
}
.uganda-bdge {
  background-color: #226819;
  color: #fff;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bdge-cmmn {
  font-size: 10px;
  height: 28px;
  width: 90px;
  text-transform: uppercase;
  position: absolute;
  top: 20px;
  right: 20px;
}
.tab-img {
  position: relative;
}
.tab-img img {
  width: 100%;
}
.tab-slide {
  margin: 0 15px;
}
.tabs-slider .slick-prev:before,
.tabs-slider .slick-next:before {
  display: none;
}
.lodges-tab .nav.gradient-border-radius {
  width: fit-content;
  margin: auto;
  z-index: 1;
  border-radius: 100px;
  padding: 10px 15px;
  margin-bottom: 50px;
}
.lodges-tab .nav-link {
  padding: 0;
  font-size: 14px;
  text-transform: uppercase;
  padding: 19px 42px;
  border-radius: 100px;
  line-height: 1;
  color: var(--text-gray);
}
.lodges-tab .nav-link.active {
  background-color: var(--text-light-green) !important;
}
.lodges-tab .tab-img .gradient-border-radius::before {
  border-radius: 100px;
  background: linear-gradient(
    90deg,
    #666666 0%,
    rgba(255, 255, 255, 0.63) 100%
  );
  z-index: 1;
}
.tab-bdge {
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background-color: #ffffff0f;
  padding: 10px 20px;
  display: inline-flex;
  width: unset;
}
.tab-slide h6 {
  margin-top: 20px;
  margin-bottom: 0;
}
.nationl-prk-hd p {
  max-width: 820px;
  margin: auto;
}
.ntnl-prk .common-cntnt-wrap {
  max-width: 550px;
}
.prks-sec h5,
.cancl-poli-sec h5,
.packing-inner h2,
.over-lft h2 {
  color: var(--text-light-green);
}

.prks-sec .ex-p {
  max-width: 600px;
}
.prks-sec .ex-cntnt {
  padding-left: 50px;
}
.sanc-hd p {
  max-width: 900px;
  margin: auto;
}
.loc {
  display: flex;
  align-items: center;
  line-height: 1;
  gap: 10px;
  margin-bottom: 15px;
  color: var(--text-light-green);
  padding: 12px 30px;
  font-size: 14px;
  align-items: center;
  width: fit-content;
}
.sf-cnnt p {
  margin: 0;
}
.prk-btn .cta-trans {
  color: #000000;
}
.prk-btn .cta-trans:hover {
  color: #fff;
}
.dotted-text {
  margin-top: 50px;
  text-align: center;
  border: 1px dotted #2268194d;
  border-radius: 10px;
  padding: 25px;
  font-family: "Meno Banner";
  color: #226819;
  font-weight: 700;
  background: #2268190d;
  max-width: 1200px;
  margin: auto;
  margin-top: 50px;
}
.ntnl-prk .common-cntnt-wrap span {
  color: #226819;
  margin-top: 30px;
}
.cncl-list li {
  list-style: disc;
  padding-bottom: 10px;
}
.cancl-poli-sec .paymnt-poli-wrp p {
  color: #000;
}
.cancl-poli-sec .img-txt-row {
  align-items: center;
}
.cancl-poli-sec .common-cntnt-wrap {
  max-width: 660px;
  padding-left: 50px;
}
.hdng-with-para .wraped {
  max-width: 910px;
  margin: auto;
}
.visa-cntnt {
  height: 100%;
  max-width: 770px;
  margin-left: auto;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding-bottom: 100px;
}
.vacation-sec .common-cntnt-wrap {
  max-width: 500px;
  padding-left: 50px;
}
.packing-inner {
  padding-inline: 150px;
  border-radius: 30px;
}
/* faq ssection */
.faq-wrap .accordion-item.gradient-border-radius::before {
  border-radius: 5px !important;
  z-index: 4;
  pointer-events: none;
}
.faq-wrap .accordion-item {
  border: unset;
  margin-bottom: 30px;
}
.accordion-button:focus {
  border-color: unset;
  box-shadow: unset;
}
.accordion-button:not(.collapsed) {
  color: inherit;
  background-color: unset;
  box-shadow: unset;
}
.faq-wrap .accordion-button {
  padding: 30px;
  font-size: 24px;
}
.faq-wrap .accordion-body {
  padding: 30px;
  padding-top: 0;
  max-width: 90%;
  font-size: 18px;
}
.faq-wrap .accordion-button:not(.collapsed) {
  padding-bottom: 10px;
}
.accordion-button::after,
.accordion-button:not(.collapsed)::after {
  background-image: url("../img/faq-vector.svg");
}
.glance-list li {
  display: flex;
  align-items: center;
  padding: 30px 40px;
  gap: 40px;
}
.glance-list {
  position: relative;
}
.glance-list::after {
  content: "";
  position: absolute;
  left: 230px;
  background-image: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.35) 0%,
    #226819 50%,
    rgba(34, 104, 25, 0.35) 100%
  );
  background-repeat: no-repeat;
  width: 3px;
  top: 0;
  height: 100%;
  background-position: center;
  opacity: 0.3;
}
.glance-list li h6 {
  margin: 0;
  font-size: 30px;
  width: 200px;
}
.glance-bx h5 {
  text-align: center;
}
.glance-bx {
  background-color: #fff;
  border-radius: 25px;
  max-width: 600px;
  margin: auto;
}
.glance-top {
  padding-top: 40px;
  padding-bottom: 10px;
}
.over-lft {
  max-width: 540px;
  margin-left: auto;
}
.over-row {
  align-items: center;
}

.activi-sec .container-fluid {
  padding: 0 20px;
}
.attraction-sec .row {
  margin-top: 40px;
}
.bwindi-btn .cta {
  color: var(--text-light-green);
  border: unset;
}
.bwindi-btn .cta:hover {
  color: #fff;
}
.make-card {
  background: #ffffff;
  border: 1px solid #2268191a;
  border-radius: 25px;
  padding: 40px 25px;
  height: 100%;
}
.make-img {
  border: 1px solid #2268191a;
  border-radius: 5px;
  padding: 10px;
  margin-bottom: 20px;
  width: fit-content;
}
.make-card:hover {
  box-shadow: 50px 34px 60px 0px #0000000d;
  border-color: #fff;
}
.make-card:hover .make-img img {
  filter: brightness(500);
}

.make-card:hover .make-img {
  background-color: var(--text-light-green);
}
.dmc-slider-sec {
  overflow: hidden;
}
.dmc-slider-sec .ex-slide {
  display: block !important;
}
.dmc-slider-sec .ex-slide img {
  width: 100%;
}
.dmc-slider .ex-img {
  width: 100%;
}
.dmc-slider .slick-list.draggable {
  overflow: visible;
}
.sf-img img {
  width: 100%;
  object-fit: cover;
}
.sf-slide.ft-slide {
  height: 100% !important;
}
.ft-row .sf-slide.btm {
  padding-top: 40px;
}
.ft-row .sf-cnnt h5 {
  margin: 20px 0;
  margin-bottom: 10px;
}
.ft-row .right-prt h6 {
  margin: 5px 0;
}
.ft-row .right-prt .cta,
.arti-row .cta {
  margin-top: 10px;
  display: flex;
  align-items: center;
  line-height: 1;
  gap: 10px;
}
.ft-row .right-prt .cta span,
.arti-row .cta span {
  margin-top: -6px;
}
.arti-tabs .nav {
  justify-content: center;
  margin-bottom: 70px;
  gap: 20px;
}
.arti-row h6 {
  font-size: 18px;
  line-height: 1.2;
}
.arti-row p {
  font-size: 16px;
}
.arti-row .cta {
  margin-top: 20px;
}
.arti-row .bdge-cmmn,
.ft-row .bdge-cmmn,
.stry-dtl-inr .bdge-cmmn {
  width: unset;
  padding: 10px 20px;
}
.arti-row {
  gap: 40px 0;
}
.arti-tabs .nav-pills .nav-link {
  background: 0 0;
  border: 0;
  border-radius: 100px;
  padding: 10px 30px;
  width: 182px;
  color: #000;
  font-family: var(--meno-font);
}
.arti-tabs .nav-pills .nav-link.active,
.arti-tabs .nav-pills .show > .nav-link,
.arti-tabs .nav-pills .nav-link:hover {
  background-color: #226819;
  color: #fff;
}
.numer-nav {
  height: 60px;
  width: 60px;
  border: 1px solid #2268193d;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  color: #666666;
}
.numer-nav.active,
.numer-nav:hover {
  background-color: #0000000f;
}
.numer-nav:hover {
  color: #666666;
}
.navigations-links {
  gap: 15px;
  margin-top: 50px;
}
.numer-nav.next-nav:hover,
.numer-nav.prev-nav:hover {
  background-color: #226819;
}
.numer-nav.next-nav:hover img,
.numer-nav.prev-nav:hover img {
  filter: brightness(100);
}
.stry-table thead tr {
  background-color: #0e2808;
  color: #fff;
  font-family: var(--meno-font);
}
.stry-table th,
.stry-table td {
  padding: 25px 30px;
}
.stry-table {
  border: 1px solid #0e280850;
  border-bottom: 0;
  border-radius: 25px;
  overflow: hidden;
  margin: 50px 0;
}
.stry-table table {
  width: 100%;
}
.stry-table table tbody {
  font-size: 16px;
}

.stry-table td:not(:last-child),
.stry-table th:not(:last-child) {
  border-right: 1px solid #0e280850;
}
.stry-table th:not(:last-child) {
  border-color: #666666;
}
.stry-img {
  position: relative;
}
.stry-img img {
  border-radius: 30px;
}
.stry-bx .author {
  color: var(--text-light-green);
  font-size: 16px;
  margin-top: 30px;
}
.stry-bx b {
  color: #000;
}
.stry-bx {
  margin-bottom: 60px;
}
.stry-bx h5 {
  margin-top: 40px;
}
.prev-nxt {
  padding: 30px 0;
  border-top: 1px solid #0e280850;
  border-bottom: 1px solid #0e280850;
}
.prev-nxt a {
  display: flex;
  gap: 10px;
  color: inherit;
}
.frm-btn.unfor-btn {
  justify-content: start;
}
.agree-txt input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  min-width: 16px;
  border: 2px solid #9ad9a3; /* Light Green Border */
  background: #fff;
  border-radius: 2px;
  cursor: pointer;
  position: relative;
  margin-top: 3px;
  transition: all 0.3s ease;
}

/* Checked State */
.agree-txt input[type="checkbox"]:checked {
  background: #2e7d32; /* Green BG */
  border-color: #2e7d32;
}

/* White Tick */
.agree-txt input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 1px;
  width: 4px;
  height: 8px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.form-hd p span {
  color: #000;
}
.unfor-hd {
  max-width: 1000px;
  margin: auto;
  margin-bottom: 50px;
}
.features-stories .sf-slide,
.articles-sec .sf-slide {
  margin: 0;
}
.privcy-innr ul > li {
  list-style: disc;
}
.privcy-innr ul:has(ol) > li {
  padding-top: 20px;
}
.privcy-innr ul {
  margin: 0;
}
.privcy-innr ul li {
  padding-top: 10px;
}
.privcy-innr ol {
  padding: 0;
}
.privcy-innr ol > li {
  padding-top: 10px;
  list-style: decimal;
}
.privcy-innr h5 {
  font-size: 24px;
  margin-top: 40px;
}
.privcy-innr h6 {
  font-size: 20px;
  font-family: "Akkurat";
  font-weight: 300;
  margin-bottom: 10px;
}
.privcy-innr a {
  color: var(--text-gray);
}
.privcy-innr a:hover {
  color: var(--text-light-green);
}
.privcy-innr span {
  margin-bottom: 10px;
}

/* dmc left focused slider */

.dmc-slider-left {
  display: flex;
  gap: 20px;
  cursor: default;
  will-change: transform;
  margin-top: 50px;
}

.dmc-slide {
  flex-shrink: 0;
  width: 280px;
  transition: width 0.1s linear;
  border-radius: 32px;
  overflow: hidden;
  background: #fff;
  display: flex;
  flex-direction: column;
  transform: translateZ(0);
  position: relative;
}
.dmc-slider-left .ex-cntnt {
  position: absolute;
  bottom: 20px;
  left: 30px;
}
.dmc-slider-left .ex-cntnt p {
  color: #fff;
  margin: 0;
  font-family: var(--meno-font);
  font-size: 24px;
}
.dmc-slider-left .ex-cntnt h6 {
  color: var(--text-light-green);
}
.dmc-slider-left .ex-img {
  width: 100%;
  height: 500px;
  overflow: hidden;
}
#slideCounter {
  font-size: 32px;
  color: #000;
  font-family: var(--meno-font);
}
#slideCounter span {
  font-size: 24px;
}
.dmc-slider-left .ex-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.dmc-slider-left * {
  user-select: none;
}
.foot-col ul {
  margin: 0;
}
.ity-sec .sf-img img {
  height: 100% !important;
}
.ity-sec .loc {
  margin-bottom: 15px;
  color: #fff;
  padding: 12px 20px;
  font-size: 13px;
  border: 1px solid #ffffff2b;
  border-radius: 100px;
}
.Exclusive-sec.ity-sec .sf-cnnt p {
  font-size: 16px;
}
.ity-sec .sf-cnnt h6 {
  margin-top: 0;
}
.ity-sec .sf-card:hover .sf-cnnt h6 {
  color: #000;
}
.ity-sec .sf-card:hover .loc {
  color: #226819;
  border: 1px solid #22681921;
}
.prk-btn {
  display: flex;
  gap: 20px;
}
.diff-row .green-list.list-after li {
  padding-left: 0;
}
.explore-sec .ex-img img {
  width: 100%;
  padding-right: 60px;
}
.ex-lft {
  margin-bottom: 30px;
}
.wpcf7-form-control-wrap {
  width: 100%;
}

.agree-txt span .wpcf7-list-item {
  margin: 0;
  display: flex;
  align-items: end;
  height: fit-content;
}

.agree-txt span {
  width: fit-content;
}

.agree-txt p br {
  display: none;
}

.agree-txt p {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
form.wpcf7-form.init .d-flex > p {
  position: absolute;
  right: 0;
  margin: 0;
}
header ul {
  margin: 0;
}
.sf-hd-wrap {
  text-align: center;
  max-width: 800px;
  margin: auto;
}
.btm-bns {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
.top-bns {
  justify-content: center;
  gap: 30px;
}
.tiger-btn {
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
}
.wild-btn {
  display: flex;
  justify-content: center;
  margin-top: 70px;
}
.explore-sec .ex-img img {
  height: 100%;
  object-fit: cover;
}
.explore-sec.saf-journey .ex-img img {
  width: 100%;
  padding-right: 0;
}
.b-wrp-flex {
  justify-content: center;
}
.no-below-banner-content .fixed-part {
  position: unset;
}
.b-img img {
  border-radius: 100%;
  height: 150px;
  min-width: 150px;
  width: 150px;
  object-fit: cover;
  object-position: right;
}
.ity-sec .loc img {
  filter: brightness(100);
}
.sf-card:hover .loc img {
  filter: unset;
}
.uganda-img img {
  display: block;
  animation: ugandaFloat 6s ease-in-out infinite alternate;
}

@keyframes ugandaFloat {
  0% {
    transform: translateX(-350px);
  }
  100% {
    transform: translateX(350px); /* change distance if needed */
  }
}
.whtsap-btn {
  display: flex;
  align-items: center;
}
.e-cntnt span {
  font-size: 12px;
}
.cllc-tab-list {
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
}
.cllc-tab-list a {
  color: #226819;
  font-size: 24px;
  border: 1px solid #00000021;
  border-radius: 100px;
  padding: 11px 50px;
}
.collc-tabs-sec {
  padding-top: 100px;
}
.cllc-tab-list a:hover,
.cllc-tab-list a.active:hover {
  background-color: #226819;
  color: #fff;
  border-color: transparent;
}
.tab-img img {
  height: 470px;
  object-fit: cover;
  border-radius: 25px;
}
.quote-in {
  display: flex;
  text-align: center;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  flex-direction: column;
  color: #fff;
  padding: 50px;
  background-position: bottom;
  max-width: 500px;
  margin-left: auto;
}
.quote-in h2,
.quote-in p,
.quote-in .cta {
  position: relative;
  z-index: 1;
}
.quote-in::after {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background-color: #22681999;
  top: 0;
  left: 0;
}
.quote-bx > div {
  flex: 1;
}
.quote-in h2 {
  font-size: 35px;
  color: #fff;
}
.btns-quote {
  justify-content: center;
  gap: 30px;
  margin-top: 20px;
  flex-direction: column;
}
.btns-quote .ex-lft {
  text-align: left;
}
.saf-journey .ex-lft p {
  text-align: left;
}
.btns-quote .cta-trans {
  color: #000;
  background-color: #fff;
  border: transparent;
}
.saf-journey .ex-lft p br {
  display: none;
}
.quote-bx .ex-lft h2 {
  text-align: left;
  margin-bottom: 20px;
}
.Exclusive-sec .sf-img img {
  height: 100%;
}
.btns-quote .cta::before {
  display: none;
  transition: 0s;
}
.btns-quote .cta.cta-trans {
  transition: unset;
}
.btns-quote .cta.cta-trans:hover {
  background-color: #226819;
  color: #fff;
}
.explore-sec.prks-sec .ex-img img {
  padding-right: 0;
}
.ex-img img {
  border-radius: 30px;
}
.primate-slider .slick-slide {
  margin: 0 10px;
}
.primate-slider .custom-arrow {
  height: fit-content;
  width: fit-content;
  z-index: 1;
  background-color: #fff;
  border-radius: 100%;
}
.primate-slider .slick-prev {
  left: -65px;
}
.primate-slider .slick-next {
  right: -65px;
}
.dotted-text p {
  margin: 0;
}
.travel-span p {
  margin: 0 !important;
  color: #000;
  font-family: "Meno Banner";
}

.span-list {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0;
  margin: 0;
}

.travel-span {
  margin-top: 40px;
  gap: 20px;
  align-items: center;
}

.span-list li a {
  color: inherit;
  border: 1px solid #0000001f;
  border-radius: 100px;
  padding: 5px 40px;
  font-size: 15px;
}
.span-list li a:hover {
  background-color: #226819;
  color: #fff;
  border-color: transparent;
}
.acco-item {
  display: flex;

  gap: 10px;
}
.acco-item p {
  margin: 0;
}

.acco-wrap .acco-item:not(:last-child) {
  margin-bottom: 20px;
}
.sf-modal-btn.cta {
  width: fit-content;
  margin-top: 20px;
  padding: 11px 23px;
  font-size: 12px;
}
.sf-mdal-inner {
  display: flex;
  align-items: center;
  max-width: 870px;
  background-color: #226819;
  border-radius: 20px;
  padding: 20px;
  width: 100%;
  gap: 30px;
  position: relative;
  z-index: 10;
}

.cross-icon i {
  position: absolute;
  top: 20px;
  cursor: pointer;
  right: 20px;
}
.sf-mdal-rgt,
.sf-mdal-rgt h6 {
  color: #fff;
}
.sf-modal-lft {
  width: 50%;
}
.sf-mdal-rgt p {
  margin: 0;
}
.sf-mdal-rgt h6 {
  font-size: 30px;
}
.sf-mdal-rgt {
  width: 50%;
}
/* Prevent page scroll when modal is open */
body.open-modal {
  overflow: hidden;
}

/* Modal default hidden */
.sf-modal-bx {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 100%;
  height: 100%;
  margin: auto;
}
.open-modal header {
  z-index: 2;
}
/* Modal active state */
.sf-modal-bx.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.sf-modal-bx::after {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background-color: #00000082;
  top: 0;
  left: 0;
  z-index: 9;
}
.primate-slider .slick-slide,
.primate-slider .sf-slide {
  height: auto;
}
.Exclusive-sec [data-post-id="528"] .sf-img img {
  object-position: top !important;
}
.tab-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-tab img {
  width: 23px;
}
.cllc-tab-list a:hover .icon-tab img {
  filter: brightness(100);
}
.quo-top {
  display: flex;
  z-index: 1;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  justify-content: center;
}
.saf-journey .ex-img img {
  border-radius: 0px;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
}
.top-bns .cta,
.top-bns .cta-trans {
  font-size: 13px;
}
.e-btn {
  display: flex;
  margin-top: 10px;
}
.stry-img img {
  object-fit: cover;
}
.dmc-btn a {
  display: flex;
  width: fit-content;
  margin: auto;
  align-items: center;
  gap: 8px;
}
.dmc-btn a span {
  margin-top: -4px;
}
.ine-hd {
  max-width: 770px;
  text-align: center;
  margin: auto;
  margin-bottom: 50px;
}
.ine-card h6 {
  font-size: 25px;
}

.ine-card h6 {
  font-size: 25px;
}
.ine-list {
  padding-left: 20px;
}
.ine-list li {
  list-style: circle;
  padding-bottom: 10px;
  font-size: 16px;
}
.ine-list li span {
  color: #000;
}
.ine-card {
  border: 1px solid #00000012;
  border-radius: 25px;
  padding: 50px;
  background-color: #22681c08;
  height: 100%;
}
.trip-steps-sec  .woocommerce-info {
    border: unset;
}

.trip-steps-sec  .woocommerce-info a, .form-row.place-order a {
    color: #226819;
}

.trip-steps-sec  .woocommerce-billing-fields h3, .woocommerce-additional-fields h3, #order_review_heading {
    font-size: 30px;
}


form.checkout.woocommerce-checkout input, form.checkout.woocommerce-checkout textarea , form.checkout.woocommerce-checkout select {
    width: 100% !important;
    background-color: transparent !important;
    border: 1px solid #0000001a !important;
    font-size: 16px;
    padding: 17px 20px !important;
}


.trip-steps-sec  .woocommerce-input-wrapper {
    width: 100%;
}

.trip-steps-sec  form#woocommerce-checkout-form-coupon label {
    font-size: 10px !important;
}

.trip-steps-sec  form.checkout.woocommerce-checkout label {
    font-size: 13px;
    margin-bottom: 5px;
}

.trip-steps-sec  .form-row {
    margin-bottom: 20px !important;
}


.trip-steps-sec  .woocommerce table.shop_table {
    font-size: 16px;
    margin-bottom: 50px;
}

.trip-steps-sec  .woocommerce #payment #place_order, .woocommerce-page #payment #place_order {
    background-color: #226819;
    border-radius: 100px;
    padding: 16px 30px;
}
.ti-widget.ti-trip.ti-review-text-mode-readmore {
    padding: 0 10px;
}
h3#order_review_heading {
    display: none;
}

.safari-collection.sanc-sec .sf-slide .sf-img {
    height: 260px;
    overflow: hidden;
}

.safari-collection.sanc-sec .sf-slide .sf-img img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}
.fea-img, .fea-img img {
    height: 100%;
    object-fit: cover;
}

.safari-collection.primate-sec.attraction-sec .sf-img {
    height: 230px;
}

.safari-collection.primate-sec.attraction-sec .sf-img img {
    height: 100%;
    width: 100%;
}
/* aman css start  */
/* contact us page css */
.nature-walk-cntnt h5,
.unfor-hd span,
.privcy-innr span {
  color: #226819;
}
/* form spacing */
.cntact-us-form {
  margin-top: 25px;
  row-gap: 25px;
}
.select-wrap {
  position: relative;
}
.select-wrap::after {
  content: "";
  background-image: url("../img/dropdown-btn.png");
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 7px;
  background-size: cover;
  background-position: center;
}
.form-control.custom-textarea {
  min-height: 130px;
}
.submit-btn {
  margin-top: 10px;
}
.nature-walk-row .natr-data-img {
  border-radius: 30px;
  height: auto;
  object-fit: cover;
  object-position: left;
}
.nature-walk-img {
  padding-right: 50px;
}
.map-sec h2 {
  text-align: center;
  margin-bottom: 30px;
}
/* map card */

.map-wrap iframe {
  filter: grayscale(100%);
  border-radius: 30px;
  width: 100%;
  height: 620px;
}
/* inquiry css */
.dream-safari-cntnt h2 {
  text-align: center;
}
.dream-safari-cntnt .cntact-us-form {
  margin-top: 35px;
}
.dream-safari-cntnt .contact-tm {
  text-align: center;
}
.dream-safari-cntnt .custom-input {
  border: 1px solid #2268191a;
  background: #ffffff;
}
.dream-safari-cntnt {
  max-width: 1200px;
  background-color: #f5f5f563;
  border-radius: 30px;
  padding: 110px 100px;
  margin: auto;
}
/* meet team css */
.comn-img-wrp {
  border-radius: 30px;
}
.team-meet-bnr-cntnt {
  max-width: 857px;
}
.architect-jrney-cntnt {
  max-width: 567px;
  padding-left: 40px;
}
.architect-jrney-img-txt {
  align-items: center;
}
.leadership-card {
  position: relative;
  border-radius: 30px;
  background: #fff;
  z-index: 0;
  padding: 40px 35px;
  text-align: center;
  max-width: 520px;
  width: 100%;
  height: 100%;
}
.leadership-cards-row {
  display: flex;
  gap: 40px;
  justify-content: center;
}
.leadership-card-colm {
  height: auto;
}

.leadership-cards h2 {
  text-align: center;
  margin-bottom: 30px;
}

.leadership-card h5 {
  margin-top: 25px;
  color: #226819;
}
.leadership-card img {
  border-radius: 50%;
  object-fit: cover;
}
.leadership-line {
  border-bottom: 1px solid transparent;
  border-image-source: linear-gradient(
    90deg,
    rgba(34, 104, 25, 0.35) 0%,
    #226819 50%,
    rgba(34, 104, 25, 0.35) 100%
  );
  border-image-slice: 1;
}
.drctor-para {
  margin-top: 18px;
  margin-bottom: 25px;
}
.ldrship-para {
  position: relative;
  background: #2268190a;
  border-radius: 10px;
  padding: 12px 51px;
  z-index: 0;
}
.ldrship-para p {
  color: #226819;
  font-size: 18px;
  margin-bottom: 0px;
}
.ldrship-para::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: 10px;
  background: linear-gradient(
    90deg,
    rgba(34, 104, 25, 0.14) 0%,
    rgba(34, 104, 25, 0.4) 50%,
    rgba(34, 104, 25, 0.14) 100%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.team-meet-bnr-cntnt p {
  max-width: 861px;
  margin: auto;
}
.team-meet-bnr-cntnt h2 {
  max-width: 700px;
  margin: auto;
}
.leadership-card:hover {
  box-shadow: 50px 34px 60px 0px #0000000d;
}
.management-sec h2 {
  color: #226819;
}
.management-sec {
  background-color: #f5f5f563;
}

.expert-guides-sec h2 {
  max-width: 620px;
  margin: auto;
  margin-bottom: 15px;
}
.leadership-card img {
  border-radius: 50%;
  max-width: 200px;
  height: 200px;
  min-width: 200px;
  margin: auto;
}
.expert-guides-sec .leadership-card {
  height: auto;
}
.expert-guides-sec .ldrship-para {
  padding: 12px 20px;
}
.expert-guides-sec .leadership-cards-row {
  padding-bottom: 25px;
  padding-top: 25px;
  width: 100%;
  height: 100%;
}
.expert-guides-sec .ex-slide {
  height: auto;
}

.stry-details-sec .stry-dtl-inr>.stry-img img {
    width: 100%;
    height:600px
}