/*!*******************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./resources/scss/main.scss ***!
  \*******************************************************************************************************************/
.mySwiper {
  width: 100%;
  height: 500px;
  position: relative; /* Ensure relative positioning for absolute children */
  display: flex;
  flex-direction: column;
  align-items: center;
}
.mySwiper__content {
  position: absolute;
  bottom: 30px; /* Keeps content visible at the bottom */
  left: 0;
  right: 0;
  z-index: 9999;
  max-width: 1320px; /* Keeps a max width for larger screens */
  width: 100%;
  padding: 16px; /* Padding for better spacing */
  margin: 0 auto; /* Centers content horizontally */
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: white;
  /* Responsive typography for better scaling */
  /* Medium screens (tablets and larger phones) */
  /* Larger screens (laptops and desktops) */
}
.mySwiper__content h1 {
  font-size: 24px; /* Default for mobile */
  line-height: 1.4;
}
.mySwiper__content button {
  background-color: orangered;
  border: none;
  border-radius: 4px;
}
.mySwiper__content button:hover {
  transition: all 500ms ease-in-out;
}
.mySwiper__content button a {
  font-size: 16px;
  line-height: 28px;
  text-decoration: none;
  font-weight: 600;
  color: #f3f3f3;
  font-weight: 400;
}
.mySwiper__content button a:hover {
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .mySwiper__content {
    padding-inline: 50px; /* Adds horizontal padding */
  }
  .mySwiper__content h1 {
    font-size: 32px; /* Larger heading on tablets */
  }
  .mySwiper__content p,
  .mySwiper__content button a {
    font-size: 14px; /* Slightly larger text */
  }
}
@media screen and (min-width: 1024px) {
  .mySwiper__content {
    bottom: 50px; /* Adjust position for desktops */
    margin-bottom: 40px;
    gap: 10px;
  }
  .mySwiper__content .items {
    width: 60%;
  }
  .mySwiper__content h1 {
    font-size: 40px;
  }
  .mySwiper__content p,
  .mySwiper__content button a {
    font-size: 16px;
  }
}
.mySwiper__content .swiper-buttons {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}
.mySwiper__content .swiper-buttons .custom-next,
.mySwiper__content .swiper-buttons .custom-prev {
  background-color: orangered;
  padding-inline: 15px;
  padding-block: 6px;
  line-height: 40px;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  border-radius: 4px;
}
@media screen and (min-width: 768px) {
  .mySwiper__content .swiper-buttons .custom-next,
  .mySwiper__content .swiper-buttons .custom-prev {
    font-size: 14px; /* Larger button text on tablets */
  }
}
@media screen and (min-width: 768px) {
  .mySwiper {
    height: 600px;
  }
}
@media screen and (min-width: 1024px) {
  .mySwiper {
    height: 90vh;
  }
}

/* Slide image responsiveness */
.leadspace-slide {
  background-position: center;
  background-size: cover;
  width: 100%;
}

.leadspace-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.logo {
  display: flex;
  justify-content: center;
  align-items: center;
}
.logo img {
  height: 100px;
  width: auto;
  object-fit: contain;
  object-position: center;
  aspect-ratio: 4/3;
}

.navbar ul li a {
  color: black;
  font-size: 18px;
}
.navbar ul li a:hover {
  color: orangered;
  transition: all 500ms ease-in-out;
}
@media screen and (min-width: 768px) {
  .navbar ul li a {
    font-size: 20px;
    font-weight: 500;
  }
}

.contact {
  display: none;
}
.contact p {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 0 !important;
}
@media screen and (min-width: 992px) {
  .contact {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: 50px;
  }
}

.custom-container {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  padding: 16px important;
  margin-block: 30px;
  height: 100%;
}
.custom-container .history-content h2 {
  font-size: 24px;
}
.custom-container .history-content p {
  font-size: 16px;
  line-height: 28px;
}
.custom-container .history-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
@media screen and (min-width: 768px) {
  .custom-container {
    grid-template-columns: repeat(2, 1fr);
    margin-block: 40px;
    padding: 0 !important;
    gap: 20px;
  }
  .custom-container .history-content h2 {
    font-size: 32px;
  }
  .custom-container .history-content p {
    font-size: 14px;
    line-height: 24px;
  }
}
@media screen and (min-width: 1024px) {
  .custom-container .history-content p {
    width: 70%;
  }
}

.listing {
  display: flex;
  flex-direction: column;
  gap: 15px;
  height: 100%;
  margin-bottom: 50px;
  margin-top: 40px;
}
.listing__wrapper {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 15px;
  position: relative;
}
.listing__wrapper li {
  display: flex;
  flex-direction: column;
  height: fit-content;
  border: 1px solid #aaaaaa;
  border-radius: 4px;
  overflow: hidden;
}
.listing__wrapper li .image__wrapper {
  height: 300px;
  width: 100%;
  overflow: hidden;
}
.listing__wrapper li .image__wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
.listing__wrapper li .image__wrapper img:hover {
  scale: 1.1;
  transition: all 500ms ease-in-out;
}
@media screen and (min-width: 768px) {
  .listing__wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1024px) {
  .listing__wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
}
.listing__content {
  background-color: #125c4b;
  color: white;
  padding-block: 30px;
  padding-inline: 15px;
}
.listing__content h2 {
  font-size: 18px;
  font-weight: 600;
}
.listing__content .data,
.listing__content .price {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.listing__content .data p.cost,
.listing__content .price p.cost {
  margin-bottom: 0 !important;
  padding-top: 15px;
}
.listing__content .data span.tour-cost,
.listing__content .price span.tour-cost {
  color: #f3f3f3;
  font-size: 20px;
  font-weight: 900;
  color: #e9721a;
}
.listing__content .data a,
.listing__content .price a {
  text-decoration: none;
  color: #f3f3f3;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 6px;
}
.listing__content .data a:hover,
.listing__content .price a:hover {
  transition: all 500ms ease-in-out;
  text-decoration: underline;
}

.footer {
  background-color: #125c4b;
  color: #f5e3c3;
  padding-inline: 12px;
  padding-block: 30px;
  margin-bottom: -46px;
}
@media screen and (min-width: 768px) {
  .footer {
    padding: 30px;
  }
}

.container .need,
.container .hotel,
.container .setting {
  font-size: 18px;
}
.container .call,
.container .follow {
  font-size: 14px;
}
.container .email-and-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.container .email-and-contact a {
  color: #f5e3c3 !important;
  text-decoration: none;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.container .email-and-contact a:hover {
  text-decoration: underline;
}
.container .number,
.container .email {
  font-size: 14px;
}
.container .newsletter {
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
}
.container .newsletter .footer__contact {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-block: 8px;
}
.container .newsletter .footer__contact p {
  margin-bottom: 0 !important;
}
.container .newsletter button.footer-btn {
  font-size: 16px;
  background-color: orangered;
  color: #f5e3c3;
  border: none;
  padding-block: 10px;
  padding-inline: 15px;
  border-radius: 4px;
  width: fit-content;
  font-weight: 500;
}
.container .newsletter button.footer-btn:hover {
  cursor: pointer;
  transition: all 500ms ease-in-out;
}
.container .footer-ul {
  margin-left: 0 !important;
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.container .footer-ul li {
  font-size: 14px;
}
.container .footer-ul li a {
  color: #f5e3c3 !important;
  text-decoration: none;
}
.container .footer-ul li a:hover {
  text-decoration: underline;
}
.container .social-media {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  width: fit-content;
}
.container .content {
  min-height: 100vh;
  flex: 1;
}
.container .copyright {
  color: #f5e3c3 !important;
}

.details {
  padding-inline: 16px !important;
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding-bottom: 50px;
}
.details__images {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.details__images .first-image__wrapper {
  height: 250px;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.details__images .first-image__wrapper .first-image {
  height: 100%;
  width: 100%;
}
.details__images .first-image__wrapper .first-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
.details__images .first-image__wrapper .first-image img:hover {
  scale: 1.1;
  transition: all 500ms ease-in-out;
  cursor: pointer;
}
.details__images .details__imageWrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.details__images .details__imageWrapper div {
  overflow: hidden;
  height: 130px;
  width: 100%;
}
.details__images .details__imageWrapper div img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
.details__images .details__imageWrapper div img:hover {
  scale: 1.1;
  transition: all 500ms ease-in-out;
  cursor: pointer;
}
.details__container {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  padding-top: 30px;
}
.details__container p.package_cost {
  background-color: #125c4b;
  color: #f3f3f3;
  padding: 20px;
  border-radius: 8px;
}
.details__container .form {
  margin-top: 30px;
  border: 1px solid orangered;
  border-radius: 4px;
  padding: 15px;
  height: fit-content;
}
.details__container .form input {
  border-radius: 8px;
  padding-block: 10px;
  padding-inline: 10px;
}
.details__container .form .btn {
  background-color: orangered;
  color: #f3f3f3;
  padding-block: 10px;
  font-weight: 600;
}
.details__container .form .btn:hover {
  background-color: #125c4b;
  cursor: pointer;
  transition: all 500ms ease-in-out;
}
.details__first-section .h2 {
  font-size: 28px;
  font-weight: 600;
}
.details__first-section p {
  font-size: 16px;
  line-height: 28px;
}
.details__itinerary .h2 {
  font-size: 28px;
  font-weight: 600;
}
.details__itinerary p {
  font-size: 16px;
  line-height: 28px;
}
.details__itinerary .list {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 10px;
}
.details__itinerary .list p {
  display: flex;
  align-items: center;
  height: 100%;
  margin-bottom: 0 !important;
  line-height: 28px;
}
.details__services h2 {
  font-size: 28px;
  font-weight: 600;
}
.details__services p {
  font-size: 16px;
  line-height: 28px;
}
.details__services p.service_cost {
  font-weight: 600;
  color: #f3f3f3;
  padding: 20px;
  background-color: #125c4b;
  border-radius: 8px;
}
@media screen and (min-width: 500px) {
  .details__images .first-image__wrapper {
    height: 300px;
  }
  .details__images .details__imageWrapper div {
    height: 150px;
  }
}
@media screen and (min-width: 768px) {
  .details {
    padding-inline: 0 !important;
  }
  .details__images .first-image__wrapper {
    height: 400px;
  }
  .details__images .details__imageWrapper div {
    height: 200px;
  }
}
@media screen and (min-width: 800px) {
  .details__images .first-image__wrapper {
    height: 400px;
  }
  .details__images .details__imageWrapper {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 1028px) {
  .details__images .first-image__wrapper {
    height: 400px;
  }
  .details__images .details__imageWrapper {
    grid-template-columns: repeat(4, 1fr);
  }
  .details__container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }
  .details__container .content {
    grid-column: 1/4;
    padding-right: 50px;
  }
  .details__container .form {
    grid-column: 4;
    margin-top: 0;
  }
}

.our-team-container {
  margin-bottom: 48px;
}
.our-team-container .row-container {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
  margin-top: 50px;
}
.our-team-container .row-container .card-body {
  gap: 15px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.our-team-container .row-container .card-body .image-wrapper {
  height: 250px;
  width: 100%;
  overflow: hidden;
}
.our-team-container .row-container .card-body .image-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
  aspect-ratio: 3/4;
}
.our-team-container .row-container .card-body .image-wrapper img:hover {
  scale: 1.1;
  transition: all 500ms ease-in-out;
  cursor: pointer;
}
.our-team-container .row-container .card-body .profile-content {
  width: 100%;
}
.our-team-container .row-container .card-body .profile-content h5 {
  color: #125c4b;
}
.our-team-container .row-container .card-body .profile-content p.text-position {
  color: #f97316;
}
.our-team-container .row-container .card-body .profile-content ul {
  list-style: none;
  margin-left: 0 !important;
}
@media screen and (min-width: 800px) {
  .our-team-container .row-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
  }
  .our-team-container .row-container .card-body .image-wrapper {
    height: 200px;
    width: 200px;
    border-radius: 100%;
    border: 1px solid orangered;
  }
}

.gears {
  overflow: hidden;
  padding: 50px;
}
.gears h2 {
  color: #005c4b;
  font-weight: 700;
}
.gears a {
  text-decoration: none;
}
.gears a h5 {
  text-decoration: underline;
}
.gears .col-12 {
  overflow: hidden;
}
.gears .card-image {
  height: 300px;
  overflow: hidden;
}
.gears .card-image img {
  height: 100%;
  width: 100%;
  object-fit: fill;
  object-position: center;
}
.gears .card-image img:hover {
  scale: 1.1;
  transition: all 500ms ease-in-out;
  cursor: pointer;
}
.gears .card-body {
  background-color: #005c4b;
  color: #f3f3f3;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
.gears .card-body p.size {
  margin-bottom: 0 !important;
}
.gears .card-body p.brand {
  margin-bottom: 0 !important;
}

.about {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding-block: 30px;
  padding-inline: 0 !important;
  font-size: 16px;
  line-height: 24px;
  padding-inline: 0 !important;
}
.about .image {
  height: 350px;
  width: 100%;
}
.about .image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
  aspect-ratio: 16/9;
}
@media screen and (min-width: 768px) {
  .about .image {
    height: 500px;
  }
}

.testimonials-container {
  padding-inline: 0 !important;
  padding-block: 50px;
  color: #000;
}
.testimonials-container__section {
  text-align: center;
  padding-bottom: 20px;
}
.testimonials-container__section h2 {
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 0;
  color: orangered;
}
.testimonials-container__section p {
  font-size: 32px;
  font-weight: 600;
  padding: 0;
}
.testimonials-container .testimonials-slide {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
}
.testimonials-container .testimonials-slide .testimonials-profile {
  display: flex;
  align-items: center;
  gap: 15px;
}
.testimonials-container .testimonials-slide .testimonials-profile .image-container {
  height: 80px;
  width: 80px;
}
.testimonials-container .testimonials-slide .testimonials-profile .image-container img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 100%;
}
.testimonials-container .testimonials-slide .bottom-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.testimonials-container .testimonials-slide .bottom-content p {
  margin-bottom: 0 !important;
}
.testimonials-container .testimonials-slide .bottom-content h3 {
  margin-top: 10px;
}
.testimonials-container .testimonials-slide .bottom-content .date {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
}

.main-container {
  background-color: #f3f3f3;
}
.main-container .buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding-top: 30px;
}
.main-container .buttons .custom-next,
.main-container .buttons .custom-prev {
  padding-block: 10px;
  padding-inline: 15px;
  color: #f3f3f3;
  font-weight: 600;
  border-radius: 4px;
  background-color: orangered;
}
.main-container .buttons .custom-next:hover,
.main-container .buttons .custom-prev:hover {
  background-color: #125c4b;
  cursor: pointer;
  transition: all 500ms ease-in-out;
}

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