@charset "UTF-8";

/* dev/scss/main.scss */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: "Poppins", sans-serif;
  line-height: 1.5;
  color: rgb(32, 38, 55);
  font-size: 16px;
}
a {
  text-decoration: none;
}
p {
  margin-bottom: 1rem;
}
ul,
ol {
  padding-left: 1rem;
}
h2,
h3,
h4,
h5 {
  margin-bottom: 1rem;
  margin-top: 1rem;
}
h2 {
  font-size: clamp(1.15rem, 2vw + 0.7rem, 1.6rem);
  line-height: 1.2;
}
h3 {
  font-size: clamp(1.05rem, 1.5vw + 0.6rem, 1.35rem);
  line-height: 1.3;
}
h4 {
  font-size: clamp(1rem, 1vw + 0.6rem, 1.2rem);
  line-height: 1.4;
}
h5 {
  font-size: clamp(0.875rem, 0.5vw + 0.7rem, 1rem);
  line-height: 1.4;
}
.tx-center {
  text-align: center;
}
.mb-4 {
  margin-bottom: 40px;
}
.container {
  width: 85%;
  max-width: 1450px;
  margin: 0 auto;
}
.py-3 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.custom-accordion-wrapper {
  display: flex;
  gap: 20px;
}
.custom-accordion-wrapper .custom-accordion-column {
  flex: 1;
}
.custom-accordion-wrapper .custom-accordion-list {
  list-style: none;
  padding-left: 0;
}
.custom-accordion-wrapper .custom-accordion-header {
  padding: 10px 15px;
  background: none;
  border: 1px solid #2b2c7f;
  border-radius: 15px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.custom-accordion-wrapper .custom-accordion-header.active {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.custom-accordion-wrapper .custom-accordion-header.active svg {
  transform: rotate(90deg);
}
.custom-accordion-wrapper .custom-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}
.custom-accordion-wrapper .inner-content {
  border: 1px solid #2b2c7f;
  border-top: none;
  padding: 15px;
  border-top-radius: 0;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
}
.custom-accordion-wrapper .custom-accordion-item {
  margin-bottom: 10px;
}
.section-breadcrumb {
  margin-bottom: 20px;
  margin-top: 10px;
}
.field-slogan {
  font-size: 18px;
  font-weight: 700;
  font-family: "Dancing Script", sans-serif;
  color: #904b9c;
  display: block;
  text-align: center;
}
.root-info-mobile {
  display: none;
}
.root-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}
.root-information {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.root-sub-menu ul {
  list-style: none;
  display: flex;
  justify-content: end;
}
.root-sub-menu li + li a {
  border-left: 1px solid rgb(32, 38, 55);
}
.root-sub-menu a {
  color: rgb(32, 38, 55);
  font-size: 13px;
  padding: 0 10px;
  display: block;
  font-weight: 600;
}
.root-contacts ul {
  justify-content: end;
  list-style: none;
  display: flex;
  align-items: center;
}
.root-contacts li:first-child a {
  border-right: 1px solid rgb(32, 38, 55);
}
.root-contacts a {
  color: rgb(32, 38, 55);
  font-size: 13px;
  padding: 0 10px;
  display: block;
  font-weight: 600;
}
.root-contacts .btn-whatsapp {
  border: 2px solid #68d075;
  padding: 0 5px;
  border-radius: 15px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.root-contacts .btn-whatsapp path {
  fill: #68d075;
}
@media (max-width: 1024px) {
  .root-info-mobile {
    display: inline-flex;
    gap: 10px;
    align-items: center;
  }
  .root-info-mobile .info-mail path {
    stroke: #2b2c7f;
  }
  .root-info-mobile .info-whatsapp path {
    fill: #2b2c7f;
  }
  .root-information {
    display: none;
  }
  .root-logo {
    width: 50%;
  }
  .root-logo img {
    width: 100%;
    height: auto;
    display: block;
  }
}
.root-main-menu {
  background: #2b2c7f;
}
.main-menu {
  display: flex;
  justify-content: center;
  list-style: none;
}
.main-menu > li > a {
  color: white;
  padding: 15px;
  display: block;
  font-size: 14px;
  line-height: 100%;
  border-bottom: 2px solid transparent;
}
.main-menu > li > a:hover {
  border-bottom-color: #904b9c;
}
.hamburger-icon {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  padding: 10px;
}
@media (min-width: 1024px) {
  .main-menu {
    position: relative;
  }
  .main-menu > .menu-item:hover > .sub-menu {
    display: block;
  }
  .main-menu > .menu-item > .sub-menu {
    box-sizing: border-box;
    left: 0;
    position: absolute;
    top: 100%;
    width: 100%;
    z-index: 10;
    background: white;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    padding: 1rem;
  }
}
@media (max-width: 1024px) {
  .nav-menu {
    position: relative;
    background: #2b2c7f;
    display: flex;
    justify-content: end;
    padding-right: 10px;
  }
  .hamburger-icon {
    display: block;
    cursor: default;
  }
  .hamburger-icon path {
    fill: white;
  }
  .root-main-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 100;
  }
  .root-main-menu.is-open {
    display: block;
  }
  .main-menu {
    flex-direction: column;
    padding-left: 0;
  }
  .main-menu > li > a {
    color: black;
  }
}
.sub-menu {
  display: none;
}
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 99;
  padding: 20px;
}
.modal-overlay.is-active {
  display: flex;
}
.modal-container {
  background: #fff;
  width: 100%;
  max-width: 800px;
  max-height: 90vh;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}
.modal-header {
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #eee;
}
.modal-body {
  padding: 20px;
  overflow-y: auto;
  flex-grow: 1;
}
.close-modal {
  cursor: pointer;
  font-size: 1.5rem;
}
.wrapper-tabs {
  margin-top: 30px;
}
.tab-header {
  list-style: none;
}
.tab-header > li.active {
  background: var(--color-tab-active);
  color: black;
  font-weight: 700;
  border-bottom: 4px solid var(--color-tab-border-active);
}
.section-slider-hero {
  position: relative;
  overflow: hidden;
}
.section-slider-hero .swiper-hero {
  width: 100%;
  height: 600px;
}
.section-slider-hero .swiper-hero .swiper-slide {
  width: 100%;
  height: 100%;
}
.section-slider-hero .swiper-hero .swiper-slide::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.2),
      rgba(0, 0, 0, 0.5));
  z-index: 1;
}
.section-slider-hero .swiper-hero .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
:is(.swiper-button-prev, .swiper-button-next) ::slotted(svg),
:is(.swiper-button-prev, .swiper-button-next) svg {
  color: white;
  fill: white;
}
.slider-hero-content {
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
}
.slider-hero-content h1 {
  font-size: 2.5rem;
}
.slider-hero-content > * {
  width: 50%;
}
.slider-hero-content .btn-link {
  display: inline-block;
  margin-top: 30px;
  background: #904b9c;
  padding: 10px 20px;
  color: white;
  border-radius: 8px;
  text-transform: uppercase;
  font-weight: 700;
}
.about-us-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  align-items: center;
}
.about-us-content .about-description {
  text-align: center;
}
.about-us-content .field-title {
  font-size: 2.5rem;
  color: #2b2c7f;
  margin-bottom: 20px;
}
.about-us-content .about-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.about-us-content .about-gallery .gallery-item {
  height: 400px;
}
.about-us-content .about-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.section-most-popular .field-title {
  text-align: center;
  margin-bottom: 20px;
  color: #2b2c7f;
  font-size: 2.5rem;
}
.section-most-popular .field-description {
  text-align: center;
  margin-bottom: 50px;
  width: 60%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 576px) {
  .section-most-popular .field-description {
    width: 100%;
  }
}
.list-tours-popular {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}
.list-tours-popular .card-tour {
  box-shadow: rgba(0, 0, 0, 0.45) 0 25px 20px -20px;
  display: flex;
  flex-direction: column;
}
.list-tours-popular .card-body {
  padding: 15px 10px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.list-tours-popular .card-title {
  margin-bottom: 10px;
}
.list-tours-popular .card-title a {
  font-size: 23px;
  font-weight: bold;
  color: #2b2c7f;
}
.list-tours-popular .field-image img {
  border-top-right-radius: 50px;
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  aspect-ratio: 3/2;
}
.list-tours-popular .card-information {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}
.list-tours-popular .card-description {
  margin-bottom: 30px;
}
.list-tours-popular .field-char {
  display: flex;
  gap: 5px;
  align-items: center;
}
.list-tours-popular .field-char path {
  fill: #2b2c7f;
}
.list-tours-popular .field-price {
  color: #2b2c7f;
  font-size: 14px;
  margin-bottom: 8px;
}
.list-tours-popular .field-price .price {
  font-weight: bold;
  font-size: 20px;
}
.list-tours-popular .field-places {
  font-size: 14px;
  margin-bottom: 10px;
}
.list-tours-popular .field-places path {
  fill: #2b2c7f;
}
.list-tours-popular .btn-view {
  background: #2b2c7f;
  display: inline-block;
  color: white;
  padding: 3px 15px;
}
.section-separator-1 {
  position: relative;
  height: 250px;
  overflow: hidden;
}
.section-separator-1 .field-image {
  position: absolute;
  width: 100%;
  height: 100%;
}
.section-separator-1 .field-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.section-separator-1 .field-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}
.section-separator-1 .separator1-content {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5rem;
  height: 100%;
  align-items: center;
  color: white;
}
.section-separator-1 .sepa-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 25px;
  font-weight: 700;
}
.section-separator-1 .sepa-label {
  font-size: 16px;
}
.alternative-treks-content .field-title {
  text-align: center;
  color: #2b2c7f;
  margin-bottom: 20px;
  font-size: 2.5rem;
}
.alternative-treks-content .field-description {
  text-align: center;
  margin-bottom: 50px;
  width: 60%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 576px) {
  .alternative-treks-content .field-description {
    width: 100%;
  }
}
.alternative-treks-content .list-tours {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}
.alternative-treks-content .card-tour {
  position: relative;
  display: flex;
  flex-direction: column;
  border-bottom-right-radius: 30px;
  overflow: hidden;
}
.alternative-treks-content .tour-imagen img {
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
  object-fit: cover;
  display: block;
}
.alternative-treks-content .card-body {
  padding: 15px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.alternative-treks-content .tour-title {
  margin-bottom: 10px;
}
.alternative-treks-content .tour-title a {
  font-size: 23px;
  font-weight: 700;
  color: #2b2c7f;
}
.alternative-treks-content .card-foo {
  color: white;
  background-color: #2b2c7f;
  justify-content: space-between;
  margin-top: auto;
  padding: 8px 15px;
  font-size: 13px;
  display: flex;
}
.alternative-treks-content .field-tour {
  display: flex;
  gap: 5px;
  align-items: center;
}
.alternative-treks-content .tour-price {
  position: absolute;
  top: 40px;
  left: 0;
  background-color: #2b2c7f;
  color: white;
  font-weight: 700;
  padding: 3px;
}
.section-separator-2 {
  position: relative;
  height: 500px;
  overflow: hidden;
}
.section-separator-2 .sepa2-image {
  position: absolute;
  width: 100%;
  height: 100%;
}
.section-separator-2 .sepa2-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section-separator-2 .sepa2-image::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
}
.section-separator-2 .sepa2-content {
  position: relative;
  color: white;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.section-separator-2 .sepa2-content > * {
  width: 45%;
}
.section-separator-2 .sepa2-title {
  font-size: 2.5em;
  font-weight: 700;
  margin-bottom: 10px;
}
.section-separator-2 .sepa2-actions {
  margin-top: 30px;
}
.section-separator-2 .btn-link {
  display: inline-block;
  padding: 5px 20px;
  background-color: #2b2c7f;
  color: white;
}
.tour-full-day-content .field-title {
  text-align: center;
  margin-bottom: 10px;
  color: #2b2c7f;
  font-size: 2.5rem;
}
.tour-full-day-content .field-description {
  text-align: center;
  margin-bottom: 50px;
  width: 60%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 576px) {
  .tour-full-day-content .field-description {
    width: 100%;
  }
}
.tour-full-day-content .swiper-full {
  position: relative;
  overflow: hidden;
}
.tour-full-day-content .card-tour {
  width: 100%;
  height: 450px;
  position: relative;
}
.tour-full-day-content .tour-imagen {
  position: absolute;
  width: 100%;
  height: 100%;
}
.tour-full-day-content .tour-imagen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.tour-full-day-content .card-body {
  position: absolute;
  bottom: 0;
  z-index: 3;
  padding: 20px;
  color: white;
  background:
    linear-gradient(
      358deg,
      rgb(0, 0, 0) 0%,
      rgba(0, 0, 0, 0.7) 30%,
      rgba(0, 0, 0, 0.6) 60%,
      rgba(0, 0, 0, 0.03) 80%,
      rgba(0, 0, 0, 0) 100%);
  width: 100%;
}
.tour-full-day-content .card-body a {
  color: white;
}
.tour-full-day-content .tour-title {
  margin-bottom: 10px;
}
.tour-full-day-content .tour-title a {
  font-weight: 700;
  font-size: 18px;
}
.tour-full-day-content .tour-description {
  margin-bottom: 10px;
  font-size: 13px;
}
.tour-full-day-content .tour-information {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 10px;
}
.tour-full-day-content .swiper-pagination {
  position: relative;
  margin-top: 30px;
}
.tour-full-day-content .swiper-pagination-bullet-active {
  background-color: #2b2c7f;
  width: 25px;
  border-radius: 5px;
}
.tour-full-day-content .tour-actions {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.tour-full-day-content .btn-link {
  background-color: #2b2c7f;
  color: white;
  padding: 5px 20px;
  display: inline-block;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 700;
}
.reviews-content .field-title {
  text-align: center;
  color: #2b2c7f;
  margin-bottom: 20px;
  font-size: 2.5rem;
}
.reviews-content .field-description {
  text-align: center;
  margin-bottom: 50px;
  width: 60%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 576px) {
  .reviews-content .field-description {
    width: 100%;
  }
}
.questions-content .field-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #2b2c7f;
}
.questions-content .field-description {
  text-align: center;
  margin-bottom: 50px;
  width: 60%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 576px) {
  .questions-content .field-description {
    width: 100%;
  }
}
.blog-content .field-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #2b2c7f;
}
.blog-content .field-description {
  text-align: center;
  margin-bottom: 50px;
  width: 60%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 576px) {
  .blog-content .field-description {
    width: 100%;
  }
}
.blog-content .list-blogs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}
.card-blog {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  overflow: hidden;
}
.card-blog .post-thumbnail img {
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
  object-fit: cover;
  display: block;
}
.card-blog .card-body {
  padding: 20px;
}
.card-blog .post-category {
  margin-bottom: 10px;
}
.card-blog .post-category a {
  font-size: 14px;
  color: #1f6b9d;
}
.card-blog .post-title a {
  font-size: 1.3em;
  font-weight: 700;
  color: #2b2c7f;
}
@media (width >= 1035px) {
  .tour-full-day-content .card-tour:hover .card_second-description {
    opacity: 1;
    max-height: 130px;
    transition: max-height 0.5s, opacity 0.4s;
  }
  .tour-full-day-content .card_second-description {
    opacity: 0;
    max-height: 0;
    transition: max-height 0.5s, opacity 0.4s;
    overflow: hidden;
  }
}
@media (max-width: 768px) {
  .slider-hero-content > * {
    width: 100%;
  }
  .about-us-content {
    grid-template-columns: 1fr;
  }
  .about-us-content .about-gallery {
    grid-template-columns: 1fr;
  }
  .list-tours-popular {
    grid-template-columns: 1fr;
  }
  .section-separator-1 .separator1-content {
    grid-template-columns: 1fr 1fr;
    padding: 2rem 0;
  }
  .section-separator-1 .sepa-label {
    text-align: center;
  }
  .section-separator-1 {
    height: auto;
  }
  .alternative-treks-content .list-tours {
    grid-template-columns: 1fr;
  }
  .section-separator-2 .sepa2-content > * {
    width: 100%;
  }
  .custom-accordion-wrapper {
    flex-direction: column;
  }
  .custom-accordion-wrapper .custom-accordion-header {
    text-align: start;
  }
  .section-blogs .list-blogs {
    grid-template-columns: 1fr !important;
  }
}
.breadcrumb-tour {
  margin-top: 80px;
}
.breadcrumb-tour a {
  color: white;
}
.tour-slider {
  position: relative;
  height: 600px;
  overflow: hidden;
}
.tour-slider h1 {
  font-size: 2.4em;
}
.tour-slider .tour-slider-image .main-image {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
}
.tour-slider .tour-slider-image .main-image.active {
  opacity: 1;
}
.tour-slider .tour-slider-image .main-image::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.2),
      rgba(0, 0, 0, 0.64));
}
.tour-slider .tour-slider-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.tour-slider .tour-slider-content {
  position: relative;
  height: 100%;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: end;
}
.tour-slider .content-aux {
  width: 45%;
}
.tour-slider .tour-gallery-thumbnails {
  position: absolute;
  top: 0;
  right: 5%;
  display: grid;
  grid-template-columns: 200px;
  grid-auto-rows: 130px;
  align-content: center;
  gap: 10px;
  height: 100%;
}
.tour-slider .tour-gallery-thumbnails img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.section-tour-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 25%;
  gap: 30px;
}
.section-tour-content .tour-places {
  display: flex;
  align-items: center;
  color: #2b2c7f;
  font-size: 14px;
  margin-bottom: 10px;
}
.card-booking {
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #d6d5d5;
}
.card-booking .title-price {
  text-align: center;
  display: block;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 10px;
}
.card-booking .tour-price {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.card-booking .price {
  font-weight: 700;
  font-size: 30px;
  text-align: center;
}
.card-booking .card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}
.card-booking .btn-booking {
  border: 1px solid #2b2c7f;
  padding: 8px;
  width: 100%;
  background-color: #2b2c7f;
  color: white;
  border-radius: 10px;
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 14px;
}
.card-booking .btn-enquire {
  background: transparent;
  padding: 8px;
  width: 100%;
  color: #2b2c7f;
  border: 1px solid #2b2c7f;
  border-radius: 10px;
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 14px;
}
.tour-content .tab-header {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  background: #ecebea;
  padding-left: 0;
  overflow-x: auto;
}
.tour-content .tab-header > li {
  flex: 1;
  text-align: center;
  white-space: nowrap;
  padding: 16px 10px 12px;
  cursor: default;
  border-bottom: 5px solid #e0e0e0;
}
.tour-content .tab-header > li.active {
  font-weight: 700;
  color: #2b2c7f;
  border-bottom-color: #2b2c7f;
}
.tour-content .tab-content {
  background: #f4f4f3;
  padding: 30px;
}
.tour-details {
  margin-top: 20px;
}
.tour-details .title-detail {
  display: block;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 10px;
}
.tour-details .tour-char-item {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 10px;
  margin-bottom: 15px;
}
.tour-details .char-content {
  display: flex;
  flex-direction: column;
}
.tour-details .char-content .title {
  font-weight: 700;
  font-size: 14px;
}
.timeline-container {
  position: relative;
  padding-left: 50px;
  margin: 20px 0;
  counter-reset: step-counter;
}
.timeline-container::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  border-left: 2px dashed #904b9c;
  background: none;
}
.timeline-item {
  position: relative;
  margin-bottom: 40px;
}
.timeline-dot {
  position: absolute;
  left: -50px;
  width: 30px;
  height: 30px;
  background-color: #904b9c;
  border-radius: 50%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 14px;
}
.timeline-dot::before {
  counter-increment: step-counter;
  content: counter(step-counter);
}
.timeline-content {
  padding-top: 4px;
}
.timeline-content h3,
.timeline-content h4 {
  margin-top: 0;
}
.timeline-content h3 {
  margin: 0 0 8px 0;
  font-size: 1.1rem;
}
.timeline-item:last-child {
  margin-bottom: 0;
}
.section-related-tours .related-tour-title {
  text-align: center;
  color: #2b2c7f;
  font-size: 1.6em;
  margin-bottom: 20px;
}
.section-related-tours .related-description {
  width: 60%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 576px) {
  .section-related-tours .related-description {
    width: 100%;
  }
}
.section-related-tours .related-description {
  margin-bottom: 40px;
  text-align: center;
}
.related-tours {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.related-tours .card-tour {
  border-bottom-right-radius: 30px;
  flex-direction: column;
  display: flex;
  position: relative;
  overflow: hidden;
}
.related-tours .tour-imagen img {
  aspect-ratio: 3/2;
  object-fit: cover;
  width: 100%;
  height: auto;
  display: block;
}
.related-tours .card-body {
  flex-direction: column;
  height: 100%;
  padding: 15px;
  display: flex;
}
.related-tours .card-foo {
  color: #fff;
  background-color: #2b2c7f;
  justify-content: space-between;
  margin-top: auto;
  padding: 8px 15px;
  font-size: 13px;
  display: flex;
}
.related-tours .tour-price {
  color: #fff;
  background-color: #2b2c7f;
  padding: 3px;
  font-weight: 700;
  position: absolute;
  top: 40px;
  left: 0;
}
.related-tours .tour-title {
  margin-bottom: 10px;
}
.related-tours .tour-title a {
  color: #2b2c7f;
  font-size: 23px;
  font-weight: 700;
}
.section-includes {
  margin-top: 30px;
  margin-bottom: 30px;
}
.section-includes ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.section-includes ul li {
  position: relative;
  padding-left: 23px;
  margin-bottom: 10px;
}
.section-includes ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 18px;
  height: 18px;
  background-image: url(../assets/images/check.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.section-exclusions {
  margin-bottom: 30px;
}
.section-exclusions ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.section-exclusions ul li {
  position: relative;
  padding-left: 23px;
  margin-bottom: 10px;
}
.section-exclusions ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 16px;
  height: 16px;
  background-image: url(../assets/images/circle-x.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
@media (max-width: 768px) {
  .section-tour-content {
    grid-template-columns: minmax(0, 1fr);
  }
  .related-tours {
    grid-template-columns: minmax(0, 1fr);
  }
  .related-tours .card-foo {
    flex-direction: column;
  }
}
.section-slider-category {
  position: relative;
  overflow: hidden;
  height: 450px;
}
.section-slider-category .slider-image {
  position: absolute;
  width: 100%;
  height: 100%;
}
.section-slider-category .slider-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.section-slider-category .slider-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}
.section-slider-category .slider-content {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: end;
  color: white;
}
.section-slider-category .slider-content h1 {
  font-size: 2.5em;
  margin-bottom: 10px;
}
.section-slider-category .breadcrumb {
  margin-bottom: 20px;
  font-size: 14px;
}
.section-slider-category a {
  color: white;
}
.cat-content {
  margin-bottom: 50px;
}
.cat-beast-tour {
  width: 65%;
  margin: 0 auto;
}
.cat-beast-tour .card-tour {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 300px;
  gap: 30px;
}
.cat-beast-tour .field-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-top-right-radius: 35px;
}
.cat-beast-tour .card-body {
  display: flex;
  flex-direction: column;
}
.cat-beast-tour .card-title {
  font-size: 1.5em;
  font-weight: bold;
  margin-bottom: 5px;
}
.cat-beast-tour .card-title a {
  color: #2b2c7f;
}
.cat-beast-tour .field-places {
  font-size: 14px;
  margin-bottom: 10px;
}
.cat-beast-tour .card-information {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}
.cat-beast-tour .content-characteries {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.cat-beast-tour .field-char {
  display: grid;
  grid-template-columns: 25px 1fr;
  align-items: center;
  gap: 5px;
}
.cat-beast-tour .booking-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cat-beast-tour .btn-view {
  padding: 5px 20px;
  background: #2b2c7f;
  color: white;
}
.cat-beast-tour .field-price .price {
  font-size: 23px;
  font-weight: 700;
}
.cat-tours .title-cat-tours {
  text-align: center;
  font-size: 2em;
  color: #2b2c7f;
  margin-bottom: 20px;
}
.cat-tours .li-description {
  text-align: center;
}
.list-tours-cat {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  margin-top: 50px;
}
.list-tours-cat .card-tour {
  flex-direction: column;
  display: flex;
  box-shadow: 0 25px 20px -20px rgba(0, 0, 0, 0.4509803922);
}
.list-tours-cat .card-body {
  flex-direction: column;
  height: 100%;
  padding: 15px;
  display: flex;
}
.list-tours-cat .field-image img {
  object-fit: cover;
  aspect-ratio: 3/2;
  border-top-right-radius: 50px;
  width: 100%;
  height: auto;
  display: block;
}
.list-tours-cat .card-title {
  margin-bottom: 10px;
  font-size: 23px;
  font-weight: 700;
}
.list-tours-cat .card-title a {
  color: #2b2c7f;
}
.list-tours-cat .field-places {
  margin-bottom: 10px;
  font-size: 14px;
}
.list-tours-cat .card-description {
  margin-bottom: 30px;
}
.list-tours-cat .card-information {
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  display: flex;
}
.list-tours-cat .field-char {
  align-items: center;
  gap: 5px;
  display: flex;
}
.list-tours-cat .field-price {
  color: #2b2c7f;
  margin-bottom: 8px;
  font-size: 14px;
}
.list-tours-cat .field-price .price {
  font-size: 20px;
  font-weight: 700;
}
.list-tours-cat .btn-view {
  color: #fff;
  background: #2b2c7f;
  padding: 3px 15px;
  display: inline-block;
}
.list-tours-cat .field-char path {
  fill: #2b2c7f;
}
.section-slider-post {
  position: relative;
  height: 450px;
  overflow: hidden;
}
.section-slider-post .slider-image {
  position: absolute;
  width: 100%;
  height: 100%;
}
.section-slider-post .slider-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.section-slider-post .slider-image::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}
.section-slider-post .slider-content {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: end;
  color: white;
}
.section-slider-post .breadcrumb {
  margin-bottom: 20px;
  font-size: 14px;
}
.section-slider-post a {
  color: white;
}
.section-slider-post .slider-title {
  font-size: clamp(1.8em, 4vw, 2.5em);
  margin-bottom: 10px;
}
.section-content-post {
  display: grid;
  grid-template-columns: 1fr 28%;
  gap: 50px;
}
.header-toc strong {
  display: block;
  font-size: 18px;
  font-weight: 700;
}
.header-toc .toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: toc-h2-counter;
}
.header-toc .toc-list a {
  text-decoration: none;
  color: #444;
  display: block;
  font-size: 14px;
}
.header-toc .toc-list a:hover {
  color: #904b9c;
  text-decoration: underline;
}
.header-toc .toc-h2 {
  counter-increment: toc-h2-counter;
  font-weight: 600;
  margin-top: 8px;
}
.header-toc .toc-h2 > a::before {
  content: counter(toc-h2-counter) ". ";
  margin-right: 8px;
  color: #333;
}
.header-toc .toc-h3 {
  padding-left: 30px;
  font-size: 0.95rem;
}
.header-toc .toc-h3 > a::before {
  content: "\25cb";
  margin-right: 10px;
  color: #777;
  font-weight: bold;
}
.related-title {
  font-size: 1.2em;
  margin-top: 0;
  margin-bottom: 10px;
  border-bottom: 2px solid #ddd;
  padding-bottom: 10px;
  display: block;
}
.card-rel {
  padding: 20px 0;
  border-bottom: 1px solid #ddd;
  display: grid;
  grid-template-columns: 30% 1fr;
  grid-auto-rows: 100px;
  gap: 10px;
}
.card-rel .card-rel-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.card-rel .card-body {
  display: flex;
  flex-direction: column;
}
.card-rel .link-title {
  color: #2b2c7f;
  font-weight: 700;
  font-size: 14px;
}
.card-rel .date-post {
  font-size: 14px;
  color: #777;
  margin-top: 5px;
}
.post-published {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: #6c757d;
  margin: 10px 0 20px 0;
  font-family: sans-serif;
}
.date-post {
  font-weight: 600;
  text-transform: capitalize;
}
.author-post {
  font-weight: 600;
  text-transform: capitalize;
}
.header-toc {
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 15px 20px;
  margin-bottom: 30px;
  background-color: #f4f4f4;
}
.header-toc summary {
  display: flex;
  justify-content: space-between;
}
.header-toc summary::-webkit-details-marker {
  display: none;
}
.header-toc summary .icon::before {
  content: "+";
  font-weight: bold;
  color: #64748b;
}
.header-toc details[open] summary .icon::before {
  content: "\2212";
}
.header-toc .toc-body {
  margin-top: 15px;
  border-top: 1px solid #f1f5f9;
  animation: fadeIn 0.3s ease-out;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 768px) {
  .section-content-post {
    grid-template-columns: 1fr;
  }
}
.section-about-slider {
  position: relative;
  height: 450px;
  overflow: hidden;
}
.section-about-slider .slider-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section-about-slider .slider-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.section-about-slider .slider-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.section-about-slider .slider-content {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: end;
  color: white;
}
.section-about-slider .breadcrumb {
  margin-bottom: 20px;
  font-size: 14px;
}
.section-about-slider .breadcrumb a {
  color: white;
}
.section-about-slider .slider-title {
  margin-bottom: 10px;
  font-size: 2.5em;
}
.abt-why-choose {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 50px;
}
.abt-why-choose .why-content {
  text-align: center;
}
.abt-why-choose .abt-title {
  font-size: 2.2em;
  color: #2b2c7f;
  margin-bottom: 10px;
}
.gallery-slider {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 300px;
  gap: 10px;
}
.gallery-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.section-why-explore .abt-title {
  text-align: center;
  font-size: 2.2em;
  color: #2b2c7f;
  margin-bottom: 10px;
}
.section-why-explore .abt-description {
  text-align: center;
  margin-bottom: 50px;
}
.list-why-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  text-align: center;
}
.list-why-items .item-title {
  font-size: 1.8em;
  color: #2b2c7f;
  margin-bottom: 10px;
}
.section-abt-separator1 {
  position: relative;
  height: 500px;
}
.section-abt-separator1 .field-image {
  position: absolute;
  width: 100%;
  height: 100%;
}
.section-abt-separator1 .field-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.section-abt-separator1 .field-image::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.3);
}
.section-abt-separator1 .sepa1-content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
  height: 100%;
}
.section-abt-separator1 .conten-ux {
  width: 45%;
}
.section-abt-separator1 .abt-title {
  font-size: 2.2em;
  margin-bottom: 10px;
}
.section-abt-separator1 .abt-description {
  margin-bottom: 30px;
}
.section-abt-separator1 .btn-link {
  color: white;
  padding: 5px 20px;
  background-color: #2b2c7f;
  border-radius: 5px;
}
.section-our-team .our-team-title {
  text-align: center;
  font-size: 2.2em;
  color: #2b2c7f;
  margin-bottom: 10px;
}
.section-our-team .our-team-description {
  text-align: center;
  margin-bottom: 50px;
}
.our-team-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}
.our-team-items .field-image {
  height: 300px;
}
.our-team-items .field-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-top-right-radius: 45px;
}
.our-team-items .card-body {
  padding: 10px;
}
.our-team-items .card-title {
  color: #2b2c7f;
  font-size: 1.2em;
  margin-bottom: 10px;
}
.section-our-history {
  position: relative;
}
.section-our-history .our-history-title {
  text-align: center;
  font-size: 2.2em;
  color: #2b2c7f;
  margin-bottom: 10px;
}
.section-our-history .our-history-description {
  text-align: center;
  margin-bottom: 50px;
}
.swiper-history .card-history {
  width: 100%;
  height: 450px;
  position: relative;
}
.swiper-history .history-imagen {
  width: 100%;
  height: 100%;
  position: absolute;
}
.swiper-history .history-imagen img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}
.swiper-history .card-body {
  z-index: 3;
  color: #fff;
  background:
    linear-gradient(
      358deg,
      #000,
      rgba(0, 0, 0, 0.1215686275));
  width: 100%;
  padding: 20px;
  position: absolute;
  bottom: 0;
}
.swiper-history .history-title {
  text-align: center;
  font-size: 1.3em;
}
.swiper-history .history-actions {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.swiper-history .history-description {
  text-align: center;
}
.swiper-history .btn-link {
  color: white;
  padding: 5px 30px;
  background-color: #2b2c7f;
  border-radius: 5px;
}
.section-abt-reviews .abt-title {
  text-align: center;
  font-size: 2.2em;
  color: #2b2c7f;
  margin-bottom: 10px;
}
.section-abt-reviews .abt-description {
  text-align: center;
  margin-bottom: 50px;
  width: 60%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 576px) {
  .section-abt-reviews .abt-description {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .abt-why-choose {
    grid-template-columns: 1fr;
  }
  .list-why-items {
    grid-template-columns: 1fr;
  }
  .section-abt-separator1 .conten-ux {
    width: 100%;
  }
  .our-team-items {
    grid-template-columns: 1fr;
  }
}
.section-blogs-slider {
  position: relative;
  height: 450px;
  overflow: hidden;
}
.section-blogs-slider .slider-image {
  position: absolute;
  width: 100%;
  height: 100%;
}
.section-blogs-slider .slider-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.section-blogs-slider .slider-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.section-blogs-slider .slider-content {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: end;
  color: white;
}
.section-blogs-slider .breadcrumb {
  margin-bottom: 20px;
  font-size: 14px;
}
.section-blogs-slider .breadcrumb a {
  color: white;
}
.section-blogs-slider .slider-title {
  margin-bottom: 10px;
  font-size: clamp(1.8em, 4vw, 2.5em);
  width: 50%;
}
.section-blogs .list-blogs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.section-blogs .blogs-title {
  text-align: center;
  font-size: 2.2em;
  color: #2b2c7f;
  margin-bottom: 10px;
}
.section-blogs .blogs-description {
  width: 60%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 576px) {
  .section-blogs .blogs-description {
    width: 100%;
  }
}
.section-blogs .blogs-description {
  margin-bottom: 40px;
  text-align: center;
}
.single-post h2,
.single-post h3,
.single-post h4,
.single-post h5,
.single-post h6 {
  color: #2b2c7f;
}
@media (max-width: 768px) {
  .section-blogs-slider .slider-title {
    width: 100%;
  }
}
.section-form {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1024px) {
  .section-form {
    width: 65%;
  }
}
.footer-main {
  background-color: #2b2c7f;
  position: relative;
}
.footer-main .ft-content-information {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  justify-items: center;
  padding-top: 100px;
  padding-bottom: 30px;
  color: white;
}
.envelope-tab {
  background-color: #904b9c;
  width: 450px;
  height: 80px;
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  border-radius: 0 0 25px 25px;
}
.envelope-tab::after {
  content: "";
  clip-path: polygon(13px 25px, -9.88% 56.17%, 61.77% 41px);
  background: #4e0f59;
  width: 68px;
  height: 74px;
  position: absolute;
  top: -25px;
  right: -74px;
  z-index: -2;
}
.envelope-tab::before {
  content: "";
  clip-path: polygon(35px 25px, 10.71% 56.17%, 61.77% 41px);
  background: #4e0f59;
  width: 68px;
  height: 74px;
  position: absolute;
  top: -25px;
  left: -55px;
  z-index: -2;
}
.envelope-tab .eve-second::after {
  content: "";
  width: 100px;
  height: 74px;
  left: -20px;
  clip-path: polygon(0px 7px, 21% 94%, 100% 8px);
  position: absolute;
  background: #904b9c;
  top: -7px;
  z-index: -1;
}
.envelope-tab .eve-second::before {
  content: "";
  width: 100px;
  height: 74px;
  right: -20px;
  clip-path: polygon(100% 7px, 79% 94%, 0px 8px);
  position: absolute;
  background: #904b9c;
  top: -7px;
  z-index: -1;
}
.envelope-tab img {
  width: 230px;
  height: auto;
}
.ft-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
  display: block;
}
.ft-about-us ul {
  list-style: none;
}
.ft-about-us a {
  color: white;
}
.ft-content-copy {
  text-align: center;
  border-top: 3px solid #e8e8e8;
  color: white;
  padding: 10px 0;
}
.ft-content-copy a {
  color: white;
}
.ft-office-hours ul {
  list-style: none;
}
.ft-contact ul {
  list-style: none;
}
@media (max-width: 768px) {
  .footer-main .ft-content-information {
    grid-template-columns: 1fr;
    justify-items: start;
  }
}
@media (max-width: 576px) {
  .envelope-tab {
    width: 200px;
  }
  .envelope-tab img {
    width: 150px;
  }
  .alternative-treks-content .card-foo {
    flex-direction: column;
  }
}
/*# sourceMappingURL=main.css.map */
