@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,100..900;1,9..144,100..900&display=swap");
:root {
  --bs-primary: #324936;
  --bs-primary-rgb: 50, 73, 54;
  --bg-light: #FAF5EB;
  --bg-light-rgb: 250, 245, 235;
  --font-family: "Outfit", sans-serif;
  --color-3: #E7F1E9;
  --global-text-color: #3A5A40;
  --global-text-color-rgb: 58, 90, 64;
}

body {
  font-family: var(--font-family), var(--bs-body-font-family), serif;
}

h1, h2, h3, h4 {
  font-weight: 300;
  font-family: "Fraunces", var(--font-family), var(--bs-body-font-family), serif;
}

p {
  font-size: 18px;
  font-weight: 300;
  line-height: 26px;
  color: var(--global-text-color);
}

/* Base header styles */
#main-header {
  position: relative;
  color: white;
  padding: 20px;
  width: 100%;
  transition: all 0.3s ease; /* Smooth transition when changing padding/color */
  z-index: 1000;
}

/* Sticky class injected by JavaScript */
#main-header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  background-color: var(--bs-white);
  color: var(--bs-black);
}

/* Sentinel styling (needs to be at the very top) */
#scroll-sentinel {
  height: 1px;
  margin-top: -1px;
}

.main-header {
  height: 90px;
}
.main-header .offcanvas-toggle {
  color: var(--bs-white);
  font-size: 2rem;
}
.main-header .nav .nav-link {
  color: var(--bs-white);
  font-size: 13px;
  text-transform: uppercase;
}
.main-header.sticky .nav .nav-link {
  color: var(--bs-black);
}
.main-header.sticky .offcanvas-toggle {
  color: var(--bs-black);
}

.header-logo {
  text-align: center;
}
.header-logo img {
  max-height: 50px;
  margin-left: auto;
  margin-right: auto;
}

.carousel-indicators [data-bs-target] {
  background-color: var(--bs-secondary);
}

.main-carousel {
  position: relative;
  margin-top: -92px;
  max-width: 100%;
  height: 100vh;
  background-color: black;
  overflow: hidden;
  z-index: 1;
}
.main-carousel iframe {
  width: 110vw;
  height: 110vh;
  min-width: 110vw;
  min-height: 110vh;
  inset-block-start: 50%;
  inset-inline-start: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.main-carousel .main-carousel-wrapper {
  position: absolute;
  display: flex;
  height: 100%;
  width: 100%;
  align-items: center;
  justify-content: center;
  z-index: 2;
  text-align: center;
  color: var(--bs-white);
}
.main-carousel .carousel-title {
  font-size: 3rem;
  font-weight: 300;
}
.main-carousel .carousel-btns {
  margin-top: 2rem;
}

.bg-slider {
  min-height: 50vh;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (min-width: 1440px) {
  .bg-slider {
    min-height: 80vh;
  }
}
.bg-slider .slideshow-container {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 100%;
  margin: 0 auto;
  overflow: hidden;
}
.bg-slider {
  /* Force images to fill container space while preserving aspect ratio */
}
.bg-slider .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Keeps image proportions, cropping overflow */
  object-position: center; /* Centers the crop focus */
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}
.bg-slider .slide.active {
  opacity: 1;
}

img {
  max-width: 100%;
}

.bg-light {
  background-color: var(--bg-light) !important;
}

.bg-3 {
  background-color: var(--color-3);
}

.section-heading {
  padding-bottom: 1rem;
}

.section-title {
  margin-bottom: 1rem;
  font-weight: 300;
}

.section-description {
  margin-bottom: 1rem;
}

.card {
  border: 0;
  border-radius: 0;
}
.card p {
  font-size: 18px;
  font-weight: 300;
  line-height: 26px;
  color: var(--global-text-color);
}
.card .card-img-overlay {
  text-decoration: none;
  color: var(--bs-white);
  background-color: rgba(0, 0, 0, 0.25);
}
.card .card-img-overlay p {
  color: var(--bs-white);
}

.about-card {
  border: 0;
  border-radius: 0;
}
.about-card h3 {
  text-transform: uppercase;
}
.about-card .card-img-top {
  border: 0;
  border-radius: 0;
}

.bg-video-cards h4 {
  text-transform: uppercase;
}
.bg-video-cards h4 a {
  color: inherit;
  text-decoration: none;
}

.btn {
  padding-left: 1rem;
  padding-right: 1rem;
  border-radius: var(--bs-border-radius-pill);
  text-transform: uppercase;
  font-size: 0.9rem;
}

.btn-primary {
  --bs-btn-color: #fff;
  --bs-btn-bg: #324936;
  --bs-btn-border-color: #324936;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #006400;
  --bs-btn-hover-border-color: #006400;
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #006400;
  --bs-btn-active-border-color: #006400;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #324936;
  --bs-btn-disabled-border-color: #324936;
}

.breadcrumb-section {
  position: relative;
  margin-top: -92px;
  padding-top: 300px;
  padding-bottom: 200px;
  background-image: url(/uploads/images/page-header.webp);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 90vh;
}
.breadcrumb-section::before {
  content: "";
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  position: absolute;
  background: rgba(0, 0, 0, 0.1);
  z-index: 2;
}
.breadcrumb-section.articles-breadcrumb-section::before {
  content: "";
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  position: absolute;
  background: transparent;
}
.breadcrumb-section .video-bg-container {
  overflow: hidden;
}
.breadcrumb-section .video-bg-container > * {
  min-width: 100vh;
  transform: scale(1.5);
  pointer-events: none;
}
@media (max-width: 768px) {
  .breadcrumb-section .video-bg-container > * {
    transform: scale(1.6);
  }
}

.breadcrumb-section .title {
  position: relative;
  color: #FFFFFF;
  z-index: 2;
  font-weight: 300;
  font-size: 4rem;
}
.breadcrumb-section .title-group a {
  color: #FFFFFF;
  font-size: 18px;
  line-height: 28px;
  position: relative;
  text-decoration: none;
}

.breadcrumb-section .title-group a:hover {
  color: #D2A98E;
}

.breadcrumb-section .title-group a:not(:last-child) {
  margin-right: 44px;
}

.breadcrumb-section .title-group a:not(:last-child)::before {
  content: "\e904";
  font-family: "icomoon", serif;
  position: absolute;
  right: -33px;
  font-size: 15px;
}

.ff-cursive {
  font-family: cursive;
}

.docs p {
  margin-bottom: 1rem;
  color: var(--bs-black);
}

.nice-list {
  padding-left: 2rem;
  list-style: disc;
}
.nice-list li {
  list-style: disc;
}

.heading-title h2 {
  line-height: 1.2;
}

.collection-item {
  text-align: center;
  color: var(--bs-white);
  background-color: rgba(0, 0, 0, 0.75);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.collection-item > a {
  height: 100%;
  color: inherit;
  background-color: rgba(0, 0, 0, 0.3);
}
.collection-item > a:focus, .collection-item > a:hover {
  color: var(--bs-white);
  transform: scale(1.05);
}
.collection-item .collection-title {
  color: inherit;
  font-weight: 700;
  font-size: 18px;
}

.has-video-bg {
  pointer-events: none;
  overflow: hidden;
}
.has-video-bg.rounded-circle .video-bg {
  transform: scale(2);
}
.has-video-bg > * {
  scale: 1.35;
}

.search-wrap {
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;
  background-color: rgba(4, 4, 4, 0.9);
}

.search-wrap.open {
  display: block !important;
}

.search-wrap .search-inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.search-wrap .search-inner .search-close {
  position: absolute;
  top: 50px;
  right: 50px;
  font-size: 30px;
  color: #086AD8;
  cursor: pointer;
  transition: all 0.3s;
}

.search-wrap .search-inner .search-close:hover {
  transform: rotate(90deg);
}

.search-wrap .search-inner .search-cell {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
}

.search-wrap .search-inner .search-cell .search-field-holder {
  width: 50%;
  margin: auto;
  position: relative;
  animation: slideInUp 0.3s;
}

.search-wrap .search-inner .search-cell .search-field-holder .main-search-input {
  width: 100%;
  height: 70px;
  border: 0;
  padding: 0 50px;
  text-transform: capitalize;
  background: transparent;
  font-size: 25px;
  color: var(--bs-white);
  border-bottom: 2px solid #086AD8;
  text-align: center;
  letter-spacing: 2px;
  border-radius: 0;
}

.form .form-label {
  font-weight: 500;
}
.form .form-control,
.form .form-select {
  border-radius: 0;
}

.main-footer {
  color: var(--bs-primary);
}
.footer-contacts h4 {
  font-weight: 300;
}

.footer-social-icons {
  display: flex;
  gap: 0.5rem;
}
.footer-social-icons a {
  display: inline-block;
  width: 2.5rem;
  height: 2.5rem;
  line-height: 2.5rem;
  text-align: center;
  color: var(--bs-white);
  border-radius: 50%;
  background-color: var(--bs-primary);
}

.footer-list-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-list-menu li {
  list-style: none;
  margin: 0 0 0.2rem 0;
}
.footer-list-menu li a {
  display: inline-block;
  color: var(--bs-primary);
  text-decoration: none;
}
.footer-list-menu li a:hover {
  color: var(--bs-green);
  text-decoration: underline;
}

.footer-bottom {
  padding-bottom: 1rem;
  text-align: center;
}

.bdt-ep-accordion-item:last-child {
  border-bottom: 0;
}
.bdt-ep-accordion-item .bdt-ep-accordion-title {
  background-color: rgba(2, 1, 1, 0);
  color: var(--global-text-color);
  border-style: solid;
  border-width: 0px 0px 1px 0px;
  border-color: rgba(2, 1, 1, 0.0901960784);
  border-radius: 0px 0px 0px 0px;
  overflow: hidden;
  padding: 10px 0px 15px 0px;
  font-size: 20px;
  font-weight: 500;
}

.tour-country.intro-section h5 {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 34px;
  color: var(--global-text-color);
}
.tour-country.intro-section p {
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 28px;
  color: var(--global-text-color);
}

.carousel .carousel-indicators {
  bottom: -2rem;
  margin-bottom: -1rem;
}
.carousel .carousel-indicators button {
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
}
.carousel .carousel-indicators button.active {
  background-color: var(--bs-primary);
}

.tour-title a {
  color: inherit;
  text-decoration: none;
}

.single-tour-header {
  display: flex;
  align-items: center;
  color: white;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 50vh;
}
@media (min-width: 1024px) {
  .single-tour-header {
    height: 100vh;
  }
}

.tour-section {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--bs-border-color);
}
.tour-section h3 {
  margin-bottom: 1rem;
}
.tour-section .form-label {
  font-weight: 400;
}

.tour-itinerary-accordion .accordion-item {
  border-width: 0 0 1px 0;
}
.tour-itinerary-accordion .accordion-item:last-child {
  border-bottom: 0;
}
.tour-itinerary-accordion .accordion-header {
  font-family: var(--font-family), var(--bs-body-font-family), inherit, serif;
  color: var(--bs-primary);
}
.tour-itinerary-accordion .accordion-button {
  padding-left: 0;
  padding-right: 0;
  color: var(--bs-primary);
}
.tour-itinerary-accordion .accordion-button:not(.collapsed) {
  box-shadow: none;
  outline: 0;
  border-radius: 0;
  background-color: transparent;
}
.tour-itinerary-accordion .accordion-body {
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
  font-weight: 300;
}

.tour-list-included,
.tour-list-excluded {
  list-style: none;
  padding-left: 0;
  margin-left: 1rem;
  margin-bottom: 1rem;
}
.tour-list-included li,
.tour-list-excluded li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
}
.tour-list-included li:before,
.tour-list-excluded li:before {
  position: absolute;
  top: 0.25rem;
  left: 0;
  font-family: var(--fa-style-family, "Font Awesome 6 Pro"), serif;
  font-weight: var(--fa-style, 900);
}

.tour-list-included li:before {
  content: "\f058";
  color: var(--bs-success);
}

.tour-list-excluded li:before {
  content: "\f057";
  color: var(--bs-warning);
}

@media (max-width: 767px) {
  .immersive-tours .py-100 {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

@media (max-width: 767px) {
  .immersive-tours-img {
    aspect-ratio: 5/4;
    height: unset !important;
  }
}

.tour-accordion {
  border-left: 0;
  border-right: 0;
}
.tour-accordion * {
  padding-left: 0;
  border-left: 0;
  border-right: 0;
  border-radius: 0;
}
.tour-accordion .accordion-item:first-of-type {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.tour-accordion .accordion-item:last-of-type {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.tour-accordion .accordion-button:focus {
  box-shadow: none;
}

.bg-liquid-glass .tour-accordion {
  color: var(--bs-white);
}
.bg-liquid-glass .tour-accordion * {
  color: var(--bs-white);
}
.bg-liquid-glass .accordion-button::after {
  filter: brightness(0) invert(1);
}

/*# sourceMappingURL=style.css.map */
