/* Banner section  */
.banner__section {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 80vh;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 94%, 0 100%);
}
.banner__section .wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.banner__section .entry-content {
  max-width: 520px;
  margin: 0 auto;
}
.banner__section h1 {
  color: var(--light);
  text-align: center;
  font-size: clamp(36px, 4vw, 70px);
  font-weight: 800;
  margin-bottom: clamp(20px, 3vw, 45px);
}
.banner__section .btn-green {
  margin: 0 auto;
}
/* Banner section  */

/* Where are we section  */
.where-are-we__container {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}
.where-are-we__container .featured-image::after {
  position: absolute;
  top: 30px;
  right: 30px;
  bottom: 30px;
  left: 30px;
  border: 1px solid #fff;
  content: "";
  opacity: 0;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, -webkit-transform 0.35s;
  -o-transition: opacity 0.35s, transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
  -webkit-transform: translate3d(-20px, 0, 0);
  transform: translate3d(-20px, 0, 0);
}
.where-are-we__container:hover .featured-image::after {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.where-are-we__container > a {
  display: block;
}
.where-are-we__container .featured-image {
  position: relative;
  display: block;
  overflow: hidden;
}
.where-are-we__container .featured-image img {
  width: calc(100% + 60px);
  height: 301px;
  transform: translate3d(-50px, 0, 0);
  transition: transform 0.35s, opacity 0.35s;
  object-fit: cover;
}
.where-are-we__container .featured-image .overlay {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.3);
}
.where-are-we__container .entry-content {
  position: absolute;
  top: 53%;
  left: 50%;
  transform: translate(-50%, -47%);
  text-align: center;
  width: 100%;
  padding: 30px 45px;
  text-align: center;
}
.where-are-we__container h3 {
  margin-bottom: 8px;
}
.where-are-we__container h3 a {
  color: var(--light);
  display: block;
}
.where-are-we__container .entry-content p {
  color: var(--light);
  font-style: italic;
  font-weight: 300;
  font-family: var(--primary-font);
  font-size: 15px;
  opacity: 0;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, -webkit-transform 0.35s;
  -o-transition: opacity 0.35s, transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
  -webkit-transform: translate3d(-10px, 0, 0);
  transform: translate3d(-10px, 0, 0);
}
.where-are-we__container img {
  height: 301px;
  max-width: none;
  width: calc(100% + 60px);
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, -webkit-transform 0.35s;
  -o-transition: opacity 0.35s, transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
  -webkit-transform: translate3d(-50px, 0, 0);
  transform: translate3d(-50px, 0, 0);
  object-fit: cover;
}
.where-are-we__container:hover img {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.where-are-we__container:hover .entry-content p {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.where-are-we__container:first-child {
  display: flex;
  align-items: center;
}
.where-are-we__container .section-wrap {
  margin: 0;
}
.where-are-we__container .section-wrap h2 {
  margin-bottom: clamp(10px, 2vw, 18px);
  font-size: clamp(24px, 3vw, 36px);
}
@media (max-width: 1024px) {
  .where-are-we__container .entry-content p,
  .where-are-we__container .featured-image::after {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
/* Where are we section  */

/* Recommendation section  */
.recomendation__container {
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  overflow: hidden;
}
.recomendation__container .featured-image {
  position: relative;
}
.recomendation__container .featured-image img {
  height: 255px;
  width: 100%;
  object-fit: cover;
}
.recomendation__container .featured-image span {
  position: absolute;
  top: 20px;
  left: 20px;
  font-weight: 600;
  font-size: 14px;
  color: var(--light);
  background-color: #8ab51d;
  padding: 4px 12px;
  border-radius: 4px;
}
.recomendation__container .entry-container {
  padding: 20px;
}
.recomendation__container .entry-container h3 {
  font-size: 20px;
  margin-bottom: 16px;
  text-transform: none;
}
.recomendation__container .entry-container h3 a {
  color: var(--primary);
}
.recomendation__container .entry-container div {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 20px;
  margin-top: 25px;
}
.recomendation__container .entry-container p {
  color: rgb(84, 89, 95);
}
.recomendation__container .entry-container span {
  font-size: 16px;
  font-weight: 600;
  color: #000;
}
.recomendation__container .btn {
  text-transform: none;
}
.recomendation__section .wrapper > .btn {
  margin: 40px auto 0;
}
/* Recommendation section  */

/* Expeirence section  */
.experience__section {
  background-color: #eef5df;
  position: relative;
}
.experience__section svg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
.experience__section .elementor-shape-fill {
  fill: #fff;
  transform-origin: center;
  transform: rotateY(0deg);
}
.experience__wrapper {
  padding-top: clamp(40px, 14vw, 200px);
  display: flex;
  gap: clamp(25px, 3vw, 45px);
  justify-content: space-between;
}
.experience__wrapper > div {
  width: 50%;
}
.experience__wrapper .featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.experience-container {
  padding: 20px 0;
}
.experience-container h3,
.about-us__container h3 {
  font-weight: 300;
  position: relative;
  margin-left: 0;
}
.experience-container h3::after,
.experience-container h2::after,
.about-us__container h3::after {
  content: "";
  width: 90px;
  height: 2px;
  background-color: var(--primary);
  display: block;
  margin-top: clamp(18px, 3vw, 34px);
}
.experience-container .entry-content,
.about-us__container .entry-content,
.about-us__container .btn-outline {
  margin-top: clamp(14px, 3vw, 30px);
}
.experience-container p:not(:last-child),
.about-us__container p:not(:last-child) {
  margin-bottom: clamp(8px, 2vw, 18px);
}

@media (max-width: 767px) {
  .experience__wrapper {
    flex-direction: column;
  }
  .experience__wrapper > div {
    width: 100%;
  }
}
/* Expeirence section  */

/* CTA section  */
.cta__section {
  background-color: #b2b2b2;
}
.cta__section .wrapper-large {
  border: 3px solid #8ab51d;
}
.cta__section .entry-content {
  max-width: 950px;
  margin: 0 auto;
}
.cta__section h2 {
  font-size: clamp(34px, 4vw, 54px);
  color: var(--light);
  text-align: center;
  margin-bottom: clamp(25px, 3vw, 45px);
}
.cta__section .btn-green {
  margin: 0 auto;
}
/* CTA section  */

/* About us section  */
.about-us__section {
  background-color: #fffaee;
}
.about-us__wrapper {
  display: flex;
  align-items: center;
  gap: clamp(45px, 8vw, 145px);
  row-gap: 25px;
}
.about-us__wrapper > div {
  width: 50%;
}
.about-us__container h3::after {
  background-color: var(--secondary);
}
.about-us__wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}
@media (max-width: 767px) {
  .about-us__wrapper {
    flex-direction: column;
  }
  .about-us__wrapper > div {
    width: 100%;
  }
}
/* About us section  */

/* What to experience section  */
.what-to-exp__section .section-wrap {
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
/* What to experience section  */

/* Travel stories section  */
.travel-stories__section {
  background-color: #eef5df;
  position: relative;
}
.travel-stories__section .wrapper {
  position: relative;
}
.travel-stories__section svg {
  position: absolute;
  top: 0;
  transform: rotate(180deg);
  left: 0;
  right: 0;
  height: 70px;
  width: 100%;
}
.travel-stories__section .elementor-shape-fill {
  fill: #fff;
  transform-origin: center;
  transform: rotateY(0deg);
}
.travel-stories__section .section-wrap {
  margin-top: clamp(15px, 3vw, 30px);
}
.travel-stories__wrapper {
  gap: 50px;
  row-gap: 30px;
}
.travel-stories__container {
  box-shadow: 0px 4px 44px 0px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  background-color: var(--light);
  overflow: hidden;
}
.travel-stories__container .featured-image a {
  display: block;
  width: 100%;
}
.travel-stories__container img {
  height: 240px;
  width: 100%;
  object-fit: cover;
}
.travel-stories__container .entry-content {
  padding: 25px;
}
.travel-stories__container div {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.travel-stories__container span {
  background-color: var(--primary);
  border-radius: 6px;
  padding: 6px 10px;
  font-weight: 500;
  font-size: 14px;
  color: var(--light);
  text-transform: uppercase;
  white-space: nowrap;
}
.travel-stories__container p {
  font-size: 14px;
  font-weight: 600;
  line-height: 18px;
  color: rgb(167, 163, 151);
  text-transform: uppercase;
}
.travel-stories__container h3 {
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 500;
  margin: 14px 0 0;
  text-transform: none;
}
.travel-stories__section .btn-outline {
  margin: clamp(40px, 4vw, 60px) auto 0;
}
/* Travel stories section  */
