/* Banner section start  */
.banner__section {
  height: 100vh;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50%;
  position: relative;
}
.banner__section::after {
  content: "";
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.65) 0%,
    rgba(239, 255, 241, 0) 100%
  );
  width: 100%;
  height: 35%;
  position: absolute;
  bottom: 0;
  left: 0;
}
.banner__section::before,
.mobile-banner__section::before {
  content: "";
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.65) 0%,
    rgba(239, 255, 241, 0) 100%
  );
  width: 100%;
  height: 15%;
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(180deg);
}
.banner__section .wrapper {
  display: flex;
  align-items: end;
  height: 100%;
}
.banner__wrapper {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: clamp(30px, 3vw, 60px);
  width: 100%;
  position: relative;
  z-index: 1;
}
.banner__wrapper .banner-title,
.banner__wrapper .entry-content {
  max-width: 625px;
  width: 100%;
}
.banner__wrapper .entry-content {
  max-width: 460px;
}
.banner__wrapper h1,
.banner__wrapper p {
  color: var(--light);
}
.banner__wrapper p {
  font-weight: 500px;
  font-size: 18px;
}
.banner__wrapper .btn {
  margin-top: clamp(16px, 2vw, 30px);
}
.mobile-banner__section {
  display: none;
  position: relative;
}
@media (max-width: 1200px) {
  .banner__section {
    height: 90vh;
  }
}
@media (max-width: 989px) {
  .banner__section {
    height: 80vh;
  }
  .banner__wrapper {
    flex-direction: column;
    align-items: start;
    gap: 16px;
  }
}
@media (max-width: 767px) {
  .banner__section {
    height: 60vh;
  }
  .banner__section {
    display: none;
  }
  .mobile-banner__section {
    display: block;
  }
  .banner__wrapper {
    margin-top: clamp(20px, 3vw, 30px);
    gap: 8px;
    padding: 0 20px;
  }
  .mobile-banner__section img {
    width: 100%;
    height: 100%;
    aspect-ratio: unset;
    object-fit: cover;
  }
  .banner__wrapper h1,
  .banner__wrapper p {
    color: var(--text-1);
  }
}
/* Banner section end  */

/* Trial Story section start  */
.trial-story__section {
  background-color: #f0f0f0;
}
.trial-story__container .featured-image {
  position: relative;
  margin-bottom: clamp(12px, 2vw, 20px);
}
.trial-story__container .featured-image img {
  height: 282px;
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}
.trial-story__container .featured-image span {
  font-size: 16px;
  font-weight: 500;
  background-color: var(--light);
  border-radius: 8px;
  display: block;
  padding: 8px 10px;
  position: absolute;
  top: 15px;
  right: 15px;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 4px;
}
.trial-story__container .featured-image span.pricing {
  top: auto;
  right: auto;
  bottom: 15px;
  left: 15px;
  color: var(--text-2);
  font-size: 18px;
}
.trial-story__container .btn {
  margin-top: clamp(16px, 2vw, 20px);
}
.trial-story__slider .slick-arrow,
.review__slider .slick-arrow {
  top: -70px;
  right: 0;
  left: auto;
}
.trial-story__slider .slick-prev,
.review__slider .slick-prev {
  right: 55px;
}
.trial-story__container .entry-content p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
}

@media (max-width: 767px) {
  .trial-story__container .featured-image img {
    height: 250px;
  }
}
/* Trial Story section end  */

/* About us section start  */
.about-us__wrapper,
.about-us__container {
  display: flex;
  align-items: start;
  gap: 30px;
  row-gap: 18px;
}
.about-us__container {
  align-items: center;
}
.about-us__left {
  width: 70%;
}
.about-us__right {
  width: 30%;
}
.about-us__container .featured-image {
  width: 44%;
}
.about-us__container .entry-content {
  width: 56%;
}
.about-us__container .featured-image img,
.about-us__right img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  object-fit: cover;
}
.about-us__container .section-title {
  margin: 6px 0 12px;
}
.about-us__container .primary-btn {
  margin-top: clamp(20px, 2vw, 30px);
}
.about-us__left > div:not(:last-child) {
  margin-bottom: 25px;
}
.why-choose-us .entry-title {
  margin-bottom: 20px;
}
.why-choose__wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}
.why-choose__wrapper > div {
  display: flex;
  align-items: center;
  gap: 10px;
  border-top: 1px solid #e5e5e5;
  padding-top: 16px;
}
.why-choose__wrapper img {
  width: 41px;
}
@media (max-width: 989px) {
  .about-us__left {
    width: 100%;
  }
  .about-us__right {
    display: none;
  }
}
@media (max-width: 567px) {
  .about-us__container {
    flex-direction: column;
  }
  .about-us__container .featured-image {
    display: none;
  }
  .about-us__container .entry-content {
    width: 100%;
  }
}
/* About us section end  */

/* Trekking Region section start  */
.trekking-region__section {
  background-color: #f0f0f0;
}
.trekking-region__section .section-wrap {
  max-width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  row-gap: 0;
  flex-wrap: wrap;
}
.trekking-region__section .section-wrap .section-title {
  max-width: 397px;
}
.trekking-region__section .section-wrap p {
  max-width: 360px;
}
.trekking-region__slider .slick-prev {
  left: -58px;
}
.trekking-region__slider .slick-next {
  right: -58px;
}
.trekking-region__container {
  background-color: var(--light);
  border-radius: 12px;
  padding: 12px;
}
.trekking-region__container img {
  border-radius: 8px;
  width: 100%;
  height: 331px;
  object-fit: cover;
}
.trekking-region__container .entry-content {
  margin: 15px 0 5px;
}
.trekking-region__section .btn {
  margin: clamp(25px, 3vw, 45px) auto 0;
}
@media (max-width: 1400px) {
  .trekking-region__slider .slick-prev {
    left: -25px;
  }
  .trekking-region__slider .slick-next {
    right: -25px;
  }
}
@media (max-width: 767px) {
  .trekking-region__container img {
    height: 290px;
  }
}
/* Trekking Region section end  */

/* Adventure Activities section start  */
.adventure-activities__section {
  background-color: #f0f0f0;
  padding-bottom: clamp(30px, 4vw, 50px);
  /* padding: clamp(25px, 4vw, 50px) 0; */
}
.adventure-activities__wrapper {
  display: flex;
  align-items: end;
  justify-content: space-between;
}
.adventure-activities__left {
  display: flex;
  flex-direction: column;
  gap: 100px;
}
.adventure-activities__content {
  max-width: 852px;
  width: 100%;
  background-color: var(--light);
  border-radius: 12px;
  padding: clamp(25px, 3vw, 45px);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 80px;
}
.adventure-activities__right .icon {
  width: 73px;
  min-width: 73px;
  height: 73px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f0f0f0;
}
.adventure-activities__container {
  display: flex;
  align-items: center;
  gap: 15px;
}
@media (max-width: 1200px) {
  .adventure-activities__wrapper {
    display: block;
  }
  .adventure-activities__section .section-wrap {
    max-width: 540px;
  }
  .adventure-activities__left img {
    display: none;
  }
  .adventure-activities__content {
    max-width: 100%;
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .adventure-activities__content {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
  .adventure-activities__right .icon {
    width: 60px;
    min-width: 60px;
    height: 60px;
  }
  .adventure-activities__right .icon img {
    max-width: 26px;
  }
}
/* Adventure Activities section end  */

/* Stories section start  */
.stories__section .section-wrap,
.tripadvisor-review__section .section-wrap {
  max-width: 398px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.stories__wrapper {
  display: flex;
  align-items: center;
  gap: 25px;
}
.stories__container {
  position: relative;
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
  transition: var(--transition);
}
.stories__container::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #0000004d;
}
.stories__container > img {
  width: 100%;
  height: 375px;
  object-fit: cover;
  transition: var(--transition);
}
.stories__container:hover .video-button {
  width: 85px;
  height: 85px;
}
.stories__container:hover .video-button img {
  width: 47px;
}
.stories-video {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #0000009c;
  z-index: 9999;
  display: none;
}
.stories-video .stories-video__wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 700px;
  width: 100%;
  padding: 0 30px;
}
.stories-video .stories-video__wrapper iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 2;
}
.stories-video .close-button {
  position: absolute;
  top: -18px;
  right: 18px;
  width: 30px;
  height: 30px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

@media (min-width: 1024) {
  .stories__container:hover {
    flex: 3;
  }
  .stories__container:hover > img {
    height: 460px;
  }
}

@media (max-width: 1200px) {
  .stories__wrapper {
    flex-wrap: wrap;
  }
  .stories__container {
    flex: 50%;
  }
}
@media (max-width: 567px) {
  .stories__container > img {
    height: 300px;
  }
}
/* Stories section end  */

/* Review Section start */
.review__section {
  position: relative;
  padding-bottom: 500px;
  background: #f0f0f0;
}

.review__section::before,
.review__section::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background: url("../img/review-img.png") 0 0 no-repeat;
  width: 100%;
  height: 100%;
  background-position: 0 100px;
}

.review__section::after {
  background: linear-gradient(180deg, rgba(201, 44, 31, 0) 7.99%, #f0f0f0 100%);
  height: 25%;
  top: auto;
  bottom: 0;
}

.ti-widget.ti-trip .ti-col-1 .ti-reviews-container,
.ti-widget.ti-trip .ti-widget-container {
  margin-bottom: 0 !important;
}
.ti-widget.ti-trip .ti-col-1 .ti-footer {
  margin-top: 0 !important;
}

@media (max-width: 1200px) {
  .review__card {
    flex-wrap: wrap;
  }

  .review__section--wrapper .review__slider {
    padding-top: 24px;
  }

  .review__card img {
    margin-bottom: 12px;
  }

  .review__section {
    padding-bottom: 50px;
    background: #f0f0f0;
  }

  .review__section::before,
  .review__section::after {
    background: unset;
    border-bottom: 1px solid #d8d8d8;
    margin: 0 auto;
    width: 95%;
    left: 0;
    right: 0;
  }

  .review__slider--nav {
    margin-top: 12px;
  }

  .review__section::after {
    display: none;
  }
}
@media (max-width: 767px) {
  .review__slider--nav {
    display: none;
  }
  .review__section {
    padding-bottom: 30px;
  }
}
@media (max-width: 567px) {
  .review__section--wrapper .review__slider {
    padding-top: 14px;
  }
  .review__card img {
    margin-bottom: 5px;
  }
}
/* Review Section end */

/* Faq Section */
.faq__section {
  background: #f0f0f0;
  margin-top: -30px;
}

@media (max-width: 1200px) {
  .faq__section {
    margin-top: 0;
  }
}

/* Faq Section */

/* Blog and Review Section */
.blog-section__wrapper {
  position: relative;
}
.blog-section__wrapper .btn {
  position: absolute;
  top: -90px;
  right: 0;
}
.trial-story__container .featured-image span.category {
  padding: 0;
}
.trial-story__container .featured-image span.category a {
  padding: 8px 10px;
  color: var(--text-1);
  font-size: 16px;
}
@media (max-width: 1024px) {
  .blog-section__wrapper .btn {
    top: -75px;
  }
}
@media (max-width: 567px) {
  .blog-section__wrapper .btn {
    position: unset;
    margin: 20px auto 0;
  }
  .faq__section .uk-grid-medium > .uk-grid-margin {
    margin-top: 20px;
  }
  .faq__section .section-title br {
    display: none;
  }
  .blog__section .uk-grid-medium > .uk-grid-margin {
    margin-top: 20px !important;
  }
  .blog-section__wrapper .uk-grid > div:not(:last-child) {
    border-bottom: 1px solid #e2e2e2;
    padding-bottom: 10px;
  }
}
/* Blog and Review Section */

@media (max-width: 767px) {
  .trekking-region__slider .slick-next,
  .trial-story__slider .slick-next {
    right: -15px;
  }
  .trekking-region__slider .slick-prev,
  .trial-story__slider .slick-prev {
    left: -15px;
  }
  .trial-story__slider .slick-arrow {
    top: 50%;
    transform: translateY(-50%);
  }
  .trial-story__slider .slick-prev {
    right: auto;
  }
}
