/* Banner section  */
.banner__section {
  position: relative;
}
.banner__section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16/8;
}
.banner__section::before {
  content: "";
  background-color: var(--dark);
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.25;
  position: absolute;
}
.banner__section .wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}
.banner__section h1 {
  max-width: 710px;
  font-size: clamp(34px, 8vw, 90px);
  color: var(--light);
}
.banner__section .entry-container {
  width: 100%;
  max-width: 1350px;
}
.banner__section .entry-content {
  margin-top: 260px;
  margin-bottom: -150px;
  max-width: 497px;
  margin-left: auto;
  opacity: 0.9;
  border-top: 1px solid #eeedefb6;
  padding-top: 16px;
}
.banner__section .entry-content p {
  color: #eeedef;
}
@media (max-width: 1400px) {
  .banner__section img {
    aspect-ratio: 14/8;
  }
  .banner__section .entry-content {
    margin-bottom: 0;
    margin-top: 150px;
  }
}
@media (max-width: 1200px) {
  .banner__section img {
    aspect-ratio: 12/8;
  }
  .banner__section .entry-content {
    margin-bottom: 0;
    margin-top: 90px;
  }
}
@media (max-width: 1024px) {
  .banner__section img {
    aspect-ratio: 10/8;
  }
  .banner__section .entry-content {
    margin: 0;
    margin-top: clamp(10px, 2vw, 15px);
    border-top: unset;
    padding-top: 0;
  }
}
@media (max-width: 567px) {
  .banner__section .wrapper {
    position: static;
    background-color: #f0efef;
    padding: 20px 15px 30px;
  }
  .banner__section::before {
    display: none;
  }
  .banner__section h1 {
    color: var(--text-1);
  }
  .banner__section .entry-content p {
    color: var(--text-2);
  }
}
/* Banner section  */

/* Why us section  */
.why-us__section {
  background-image: url(../img/why-us.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.why-us__section .wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(30px, 3vw, 40px);
}
.why-us__section .section-wrap {
  max-width: 504px;
  margin-bottom: 0;
}
.why-us__container {
  display: flex;
  gap: 40px;
  row-gap: 30px;
  flex-wrap: wrap;
}
.why-us__container > div {
  width: calc(50% - 20px);
  display: flex;
  align-items: start;
  gap: 15px;
  border-bottom: 1px solid #0000002c;
  padding-bottom: 30px;
}
.why-us__container > div:nth-last-of-type(1),
.why-us__container > div:nth-last-of-type(2) {
  border: unset;
  padding-bottom: 0;
}
.why-us__container .icon {
  min-width: 40px;
  width: 40px;
}
.why-us__container h3 {
  margin-bottom: 10px;
}
@media (max-width: 1200px) {
  .why-us__section .wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 567px) {
  .why-us__container > div {
    width: 100%;
  }
  .why-us__container {
    row-gap: 20px;
  }
  .why-us__container > div:not(:last-child) {
    border-bottom: 1px solid #0000002c;
    padding-bottom: 20px;
  }
}
/* Why us section  */

/* Trekking Region section  */
.trekking-region__section .wrapper {
  position: relative;
}
.trekking-region__slider {
  position: relative;
  max-width: 1120px;
  height: 570px;
  perspective: 1000px;
  overflow: visible;
  margin: 0 auto;
}
.trekking-region-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  transition:
    transform 0.6s ease,
    opacity 0.6s ease;
  z-index: 0;
}
.trekking-region-container::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background: #0000004d;
}
.trekking-region-container.active::before {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 32.63%,
    rgba(0, 0, 0, 0.85) 100%
  );
}
.trekking-region-container.active {
  transform: translateX(18%) scale(1);
  z-index: 5;
  max-width: 806px;
}
.trekking-region-container.prev1 {
  transform: translateX(-10%) scale(0.8);
  z-index: 4;
}
.trekking-region-container.next1 {
  transform: translateX(8%) scale(0.8);
  z-index: 4;
}
.trekking-region-container.prev2 {
  transform: translateX(-30%) scale(0.7);
  z-index: 3;
}
.trekking-region-container.next2 {
  transform: translateX(28%) scale(0.7);
  z-index: 3;
}
.trekking-region__slider .featured-image img {
  width: 100%;
  height: 570px;
  object-fit: cover;
  display: block;
}
.trekking-region__slider .entry-content {
  padding: 15px;
  text-align: center;
  position: absolute;
  bottom: 90px;
  max-width: 550px;
  margin: 0 auto;
  display: none;
  left: 0;
  right: 0;
}
.trekking-region-container.active .entry-content {
  display: block;
}
.trekking-region__slider .entry-title-large {
  margin-bottom: 12px;
}
.trekking-region__slider .entry-title-large a {
  color: var(--light);
}
.trekking-region__slider p {
  color: #dadada;
}
.region-button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
}
.region-button .slider-btn {
  width: 45px;
  height: 45px;
  border: 1px solid #ffffff33;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
}
.region-button .slider-btn svg path {
  transition: var(--transition);
}
.region-button .slider-btn:hover svg path {
  stroke: var(--primary);
}
@media (max-width: 1600px) {
  .trekking-region-container.active {
    max-width: 700px;
    transform: translateX(30%) scale(1);
  }
  .trekking-region-container.prev1 {
    transform: translateX(-8%) scale(0.8);
  }
  .trekking-region-container.next1 {
    transform: translateX(18%) scale(0.8);
  }
  .trekking-region-container.prev2 {
    transform: translateX(-28%) scale(0.7);
  }
  .trekking-region-container.next2 {
    transform: translateX(38%) scale(0.7);
  }
  .trekking-region-container {
    width: 90%;
  }
}
@media (max-width: 1200px) {
  .trekking-region-container {
    width: 80%;
  }
  .trekking-region-container.prev1 {
    transform: translateX(7%) scale(0.8);
  }
  .trekking-region-container.next1 {
    transform: translateX(18%) scale(0.8);
  }
  .trekking-region-container.prev2 {
    transform: translateX(-3%) scale(0.7);
  }
  .trekking-region-container.next2 {
    transform: translateX(28%) scale(0.7);
  }
  .trekking-region__slider {
    height: 470px;
  }
}
@media (max-width: 1024px) {
  .trekking-region-container.active {
    max-width: 620px;
    transform: translateX(0%) scale(1);
    z-index: 5;
  }
  .trekking-region-container.prev2 {
    transform: translateX(-5%) scale(0.9);
    z-index: 4;
  }
  .trekking-region-container.prev1 {
    transform: translateX(8%) scale(0.8);
    z-index: 3;
  }

  .trekking-region-container.next1 {
    transform: translateX(20%) scale(0.7);
    z-index: 2;
  }
  .trekking-region-container.next2 {
    transform: translateX(32%) scale(0.6);
    z-index: 1;
  }
}
@media (max-width: 767px) {
  .trekking-region-container {
    width: 100%;
    transform: unset !important;
    max-width: 100% !important;
  }
}

/* Trekking Region section  */

/* Our Destination section  */
.our-destination__section {
  background-color: var(--secondary);
  position: relative;
}
.our-destination__section::before {
  content: url(../img/desination-bg.png);
  position: absolute;
  bottom: 0;
  left: 0;
}
.our-destination__section .wrapper {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  max-width: calc(50% + (1570px / 2) - 30px);
  margin-right: 0;
  padding-right: 0;
}
.our-destination__section .section-wrap {
  max-width: 545px;
  min-width: 445px;
  margin: 0;
}
.our-destination__slider {
  width: 100%;
  max-width: 1070px;
}
.our-destination-container {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}
.our-destination-container .featured-image > a > img {
  width: 100%;
  height: 517px;
  object-fit: cover;
  transition: all ease-in-out 0.6s;
}
.our-destination-container:hover .featured-image > a > img {
  transform: scale(1.1);
}
.our-destination-container .view {
  position: absolute;
  top: 25px;
  right: 25px;
  visibility: hidden;
  transform: translateY(-100px);
  transition: var(--transition);
}
.our-destination-container:hover .view {
  visibility: visible;
  transform: translateY(0);
}
.our-destination-container .entry-content {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(9.7px);
  -webkit-backdrop-filter: blur(9.7px);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 25px;
}
.our-destination-container a,
.our-destination__section h2,
.our-destination__section .section-wrap > span {
  color: var(--light);
}
.our-destination-container p {
  color: #cfcfcf;
  font-size: 14px;
  margin: 4px 0 0;
}
.destination-button {
  display: flex;
  gap: 8px;
  margin-top: 30px;
}
.destination-button .slick-arrow {
  position: unset;
  transform: unset;
}
@media (max-width: 1024px) {
  .our-destination__section .wrapper {
    flex-direction: column;
    gap: 25px;
  }
  .our-destination-container .featured-image img {
    height: 420px;
  }
  .destination-button {
    display: none;
  }
}
/* Our Destination section  */

/* We Offer section  */
.we-offer__section {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}
.we-offer__section::after {
  content: "";
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 63.89%,
    #ffffff 100%
  );
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
}
.we-offer__wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 610px;
  position: relative;
  z-index: 1;
}
.we-offer__wrapper > div {
  background: #ffffffd9;
  border-radius: 12px;
  padding: clamp(20px, 3vw, 30px);
}
.we-offer__wrapper .icon {
  margin-bottom: 20px;
}
.we-offer__wrapper .icon img {
  max-width: 37px;
}
.we-offer__wrapper .entry-title {
  margin-bottom: 6px;
}
@media (max-width: 767px) {
  .we-offer__section::after {
    content: unset;
  }
}
/* We Offer section  */

/* Trending Tour section  */
.trending-tours__section,
.trending-tours__section .wrapper-xsmall {
  position: relative;
  z-index: 1;
}
.trending-tours__section::before {
  content: url(../img/tour-bg.png);
  position: absolute;
  bottom: 0;
  left: 0;
}
.tour__container .featured-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
}
.tour__container .featured-image img {
  width: 100%;
  height: 490px;
  object-fit: cover;
  transition: all ease-in-out 0.6s;
}
.tour__container:hover .featured-image img {
  transform: scale(1.1);
}
.pricing {
  position: absolute;
  left: 0;
  top: 30px;
  background-color: #fffffff1;
  border-radius: 0 50px 50px 0;
  padding: 10px 25px;
}
.pricing p {
  font-size: 12px;
  margin: 0 0 2px;
  color: #5b5c5c;
}
.pricing span {
  color: var(--primary);
  font-weight: 700;
  font-size: clamp(20px, 2vw, 22px);
}
.tour__container .entry-container span {
  color: #757575;
  display: block;
  margin-bottom: 5px;
}
.tour__container .entry-title-medium {
  margin-bottom: 10px;
}

.button-wrapper {
  position: relative;
}
.button-wrapper .btn {
  position: absolute;
  right: 0;
  top: -90px;
}
@media (max-width: 1600px) {
  .button-wrapper .btn {
    top: -85px;
  }
}
@media (max-width: 1400px) {
  .button-wrapper .btn {
    top: -75px;
  }
}
@media (max-width: 1200px) {
  .tour__container .featured-image img {
    height: 380px;
  }
}
@media (max-width: 1024px) {
  .button-wrapper .btn {
    top: -65px;
  }
}
@media (max-width: 767px) {
  .button-wrapper .btn {
    position: unset;
    margin: 35px auto 0;
  }
  .trending-tours__section::before {
    content: unset;
  }
}
@media (max-width: 567px) {
  .tour__container:not(:last-child) {
    padding-bottom: 20px;
    border-bottom: 1px solid #d4d4d4;
  }
}
/* Trending Tour section  */

/* Testimonial section  */
.testimonial__section,
.testimonial__section .wrapper-small,
.testimonial__slider {
  position: relative;
}
.testimonial__section::before {
  content: url(../img/testimonial-bg.png);
  position: absolute;
  bottom: 0;
  left: 0;
}
.testimonial__slider::before,
.testimonial__slider::after {
  content: "";
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    #fff 6.22%,
    #00000040 63.07%,
    rgba(255, 255, 255, 0) 90%
  );
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 1px;
}
.testimonial__slider::after {
  top: auto;
  bottom: 0;
}
.testimonial__slider .slick-slide,
.testimonial__slider .slick-list {
  margin: 0;
}

.testimonial__container.slick-slide.slick-current.slick-active
  + .testimonial__container.slick-slide.slick-active {
  border-left: 1px solid #cccccc;
  border-right: 1px solid #cccccc;
}
.testimonial__slider .slick-track {
  display: flex;
}
.testimonial__container {
  padding: 50px 40px;
  text-align: center;
  height: auto;
  display: flex;
  flex-direction: column;
}
.testimonial__container h3 {
  font-size: 18px;
  margin-top: 18px;
}
.testimonial__container .rating {
  margin-bottom: 20px;
}
.rating i {
  color: var(--primary);
  font-size: 16px;
}
@media (max-width: 1200px) {
  .testimonial__container {
    padding: 40px 30px;
  }
}
@media (max-width: 767px) {
  .testimonial__section {
    background-color: var(--bg-color);
  }
  .testimonial__section::before {
    content: unset;
  }
}
/* Testimonial section  */

/* About us section  */
.about-us__section {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  /* background-attachment: fixed; */
  position: relative;
  padding: 130px 0 300px;
}
.about-us__section::before {
  content: "";
  background: #f1f1f033;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.about-us__section::after {
  content: url(../img/about-us-bg-1.png);
  position: absolute;
  bottom: -5px;
  left: 0;
}
.about-us__section .wrapper {
  position: relative;
}
.about-us__wrapper {
  display: flex;
}
.about-us__wrapper .featured-image {
  position: relative;
  margin-top: 300px;
}
.about-us__wrapper .featured-image img:first-child {
  width: 336px;
  height: 494px;
  object-fit: cover;
  border-radius: 12px;
}
.about-us__wrapper .featured-image img:last-child {
  width: 408px;
  height: 292px;
  object-fit: cover;
  border-radius: 12px;
  position: absolute;
  bottom: -40px;
  left: 65%;
}
.about-us__wrapper .section-wrap {
  max-width: 535px;
  margin: 0 0 0 clamp(60px, 10vw, 140px);
}
.about-us__wrapper .section-wrap span {
  color: var(--text-2);
  margin-bottom: 10px;
}
.about-us__wrapper .section-wrap .primary-btn {
  margin-top: 30px;
}
@media (max-width: 989px) {
  .about-us__section {
    padding: 90px 0 150px;
  }
  .about-us__wrapper .featured-image {
    margin-top: 0;
  }
  .about-us__wrapper .featured-image img:first-child {
    height: 400px;
  }
  .about-us__wrapper .featured-image img:last-child {
    display: none;
  }
  .about-us__wrapper {
    align-items: center;
  }
  .about-us__wrapper .section-wrap {
    margin: 0 0 0 40px;
    width: 100%;
  }
}
@media (max-width: 567px) {
  .about-us__wrapper .featured-image {
    display: none;
  }
  .about-us__wrapper .section-wrap {
    margin: 0;
  }
}
/* About us section  */

/* Counter section  */
.counter__section {
  background-color: #f1f1f0;
  padding-top: 15px;
}
.counter__wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 40px;
}

.counter__wrapper h2 {
  color: var(--secondary);
  letter-spacing: -4%;
  margin-bottom: 4px;
}
.counter__wrapper h3 {
  color: #27655b;
  font-size: clamp(20px, 3vw, 24px);
  margin-bottom: 15px;
}
/* Counter section  */

/* Latest story section  */
.latest-story__container .featured-image {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 18px;
}
.latest-story__container .featured-image img {
  width: 100%;
  height: 227px;
  object-fit: cover;
  transition: all ease-in-out 0.6s;
}
.latest-story__container:hover .featured-image img {
  transform: scale(1.1);
}
.latest-story__container h3 {
  margin: 6px 0 18px;
}
.author-content {
  display: flex;
  align-items: center;
  gap: 20px;
}
.author-content span {
  color: #757575;
  display: flex;
  align-items: center;
  gap: 5px;
}
.author-content span svg path {
  stroke: #757575;
}
.author {
  display: flex;
  align-items: center;
  gap: 8px;
}
.author img {
  width: 30px;
  height: 30px;
  object-fit: cover;
  border-radius: 50%;
}
.author p {
  font-weight: 500;
  color: #4d4d4d;
}
@media (max-width: 567px) {
  .latest-story__container:not(:last-child) {
    padding-bottom: 20px;
    border-bottom: 1px solid #d4d4d4;
  }
}
/* Latest story section  */
