/* Banner section start */
.banner__section {
  position: sticky !important;
  top: 88px;
  width: 100%;
  overflow: hidden;
}
.video-banner-wrapper {
  position: relative;
}
.video-banner-wrapper::before {
  content: "";
  width: 100% !important;
  height: 100%;
  inset: 0;
  position: absolute;
  background-color: #000;
  opacity: 0.2;
}
.video-banner-wrapper video {
  width: 100%;
  height: 100%;
  max-height: 92vh;
  object-fit: cover;
}
.banner-slide {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.banner-slide img {
  width: 100%;
  height: 92vh;
  -o-object-fit: cover;
  object-fit: cover;
  transform-origin: center center;
  -webkit-animation: bannerScale 50s ease infinite;
  animation: bannerScale 50s ease infinite;
}

@keyframes bannerScale {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
.banner-title {
  position: absolute;
  bottom: 28%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 2;
  width: 90%;
}
.banner-title h2,
.video-banner-wrapper h2 {
  color: #fff;
  font-weight: 600;
  font-size: clamp(28px, 3vw, 52px);
  margin: 0 0 clamp(20px, 3vw, 30px);
  opacity: 0;
  letter-spacing: -3%;
  transform: translateY(-80px);
  transition:
    opacity 0.7s ease 0.2s,
    transform 0.7s ease 0.2s;
}
.banner-title .button {
  display: inline-block;
  padding: 14px 30px;
  color: var(--light);
  font-size: 16px;
  border: 1px solid var(--primary);
  background-color: var(--primary);
  text-decoration: none;
  opacity: 0;
  transform: translateY(16px);
  transition: var(--transition);
}
.banner-title .button:hover {
  color: var(--light);
  background-color: var(--secondary);
  border-color: var(--secondary);
}
.video-banner-wrapper .button,
.video-banner-wrapper h2 {
  transform: unset;
  opacity: 1;
}
.slick-current .banner-title h2 {
  opacity: 1;
  transform: translateY(0);
}
.slick-current .banner-title .button {
  opacity: 1;
  transform: translateY(0);
}
form.search-form {
  position: relative;
}
form.search-form input {
  padding: 13px 50px 13px 13px;
}
form.search-form button {
  position: absolute;
  right: 0;
  top: 0;
  background: unset;
  border: unset;
  padding: 13px;
  height: 48px;
  cursor: pointer;
}
.about__section {
  background: var(--bg-color);
  position: relative;
  overflow: hidden;
}
.about__section::after {
  content: url(../img/vector-1.svg);
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  text-align: center;
}
.about__section .wrapper-small {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 30px;
  position: relative;
  z-index: 1;
}
.about__section .wrapper-small > div:nth-child(1) {
  max-width: 620px;
}
.about__section .wrapper-small > div:nth-child(2) {
  max-width: 473px;
}
.about__section .section-title {
  color: var(--secondary);
}
.about__section p {
  font-size: 15px;
  line-height: 1.6;
}
.about__section a.btn {
  color: var(--primary);
  margin-top: 35px;
}
.about__section a.btn:hover {
  color: var(--secondary);
}
/* Banner section end */

/* Choosen Trip section start */
.trip-item .featured-image {
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}
.trip-item .featured-image::before {
  content: "";
  background-image: url(../img/vector-1.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 111px;
  height: 172px;
  position: absolute;
  bottom: -4px;
  left: 0;
  z-index: 1;
  opacity: 0.3;
}
.trip-item img {
  width: 100%;
  height: 370px;
  object-fit: cover;
  transition:
    transform 0.6s ease,
    filter 0.6s ease;
}
.trip-item:hover img {
  transform: scale(1.08);
  filter: brightness(0.9);
}
.trip-item .entry-content div {
  color: var(--secondary);
  font-size: 14px;
  margin-bottom: 8px;
}
.trip-item .entry-content div span {
  color: var(--primary);
}
.trip-item .entry-content div span a {
  text-decoration: underline;
  color: var(--primary);
}
.trip-item .entry-content div span a:hover {
  color: var(--secondary);
}
.trip-item .entry-content h3 {
  margin-bottom: 10px;
  letter-spacing: -2%;
}
.trip-item .entry-content p {
  font-size: 14px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
}
.trip-item .entry-content > span {
  font-size: 14px;
  color: var(--text-1);
  text-decoration: underline;
  letter-spacing: -2%;
  text-underline-offset: 2px;
  display: block;
  margin-top: 12px;
}
/* Choosen Trip section end */

/* Multiple section start */
.activities-tab__section {
  background: linear-gradient(90deg, #3ba2da 0%, #283d8a 100%);
}
.activities__section {
  position: relative;
}
.activities__section::after {
  content: "";
  background-image: url(../img/activities-bg.png);
  background-position: bottom;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -25px;
}
.activities__section .wrapper {
  position: relative;
  z-index: 1;
}
.activities-tab__section h2,
.activities-tab__section p,
.activities-tab__section .btn,
.activities-tab__section a,
.activities-tab__section .trip-item .entry-content div,
.activities-tab__section .trip-item .entry-content span,
.activities-tab__section .trip-item .entry-content span a {
  color: var(--light) !important;
  transition: var(--transition);
}
.activities__section .entry-content {
  max-width: 578px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: clamp(35px, 4vw, 60px);
}
.activities__section .entry-content h2 {
  margin-bottom: 12px;
}
.activities-tab__section .btn {
  margin: 0 auto;
  margin-top: clamp(40px, 4vw, 70px);
}
.activities-wrapper {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: clamp(20px, 3vw, 30px);
  list-style: none;
  padding: 0;
  overflow-x: auto;
  scrollbar-width: none;
  max-width: fit-content;
  margin: 0 auto;
}
.activities-wrapper::-webkit-scrollbar {
  display: none;
}
.activities-wrapper li .icon {
  width: 111px;
  height: 111px;
  border-radius: 50%;
  background-color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  box-shadow: 0px 3.6px 9px 0px #0000001a;
  transition: var(--transition);
}
.activities-wrapper li .icon img {
  filter: brightness(0) invert(1);
  transition: var(--transition);
}
.activities-wrapper li:hover .icon img,
.activities-wrapper li.active .icon img {
  filter: unset;
}
.activities-wrapper li a {
  font-size: 14px;
  color: var(--secondary);
  letter-spacing: -1%;
  text-align: center;
  display: block;
  transition: var(--transition);
}
.activities-wrapper li:hover a,
.activities-wrapper li.active a {
  color: var(--light);
}
.activities-wrapper li:hover .icon,
.activities-wrapper li.active .icon {
  background-color: var(--light);
}
.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
}
.tab-content .trip-wrapper {
  display: flex;
  gap: 35px;
  flex-wrap: wrap;
  justify-content: center;
}
.tab-content .trip-wrapper > div {
  width: calc((100% - 105px) / 4);
}
/* Multiple section end */

/* Why us section start */
.why-us__section {
  background: linear-gradient(90deg, #283d8a 0%, #3ba2da 100%);
}
.why-us__section .section-wrap h2,
.why-us__section .section-wrap p {
  color: var(--light);
}
.why-us {
  background-color: var(--light);
  box-shadow: 0px 0px 15px 0px #0000000d;
  padding: clamp(30px, 3vw, 40px);
  position: relative;
  overflow: hidden;
}
.why-us::before {
  content: url(../img/vector-3.svg);
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  text-align: center;
}
.why-us img {
  height: 75px;
  width: auto;
  position: relative;
}
.why-us div {
  margin-top: clamp(45px, 4vw, 80px);
  position: relative;
}
.why-us h3 {
  color: var(--primary);
  margin-bottom: 10px;
}
.why-us p {
  font-size: 14px;
}
.why-us-wrapper.four-grid,
.video-reviews-wrapper.four-grid {
  row-gap: 40px;
}
/* Why us section end */

/* Reviews section start */
.reviews-wrapper {
  display: flex;
  gap: clamp(20px, 3vw, 40px);
}
.reivews-container {
  background-color: var(--secondary);
  padding: 50px;
  flex: 1;
  position: relative;
  overflow: hidden;
}
.reivews-container::before {
  content: "";
  background-image: url(../img/vector-1.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 146px;
  height: 227px;
  position: absolute;
  left: 0;
  bottom: -4px;
  opacity: 0.1;
}
.reivews-container > div {
  max-width: 240px;
  display: flex;
  flex-direction: column;
  gap: 210px;
  justify-content: space-between;
  height: 100%;
  position: relative;
}
.reivews-container:nth-child(even) {
  background-color: var(--primary);
}
.reivews-container > img {
  position: absolute;
  right: 0;
  bottom: 0;
}
.reivews-container .rating {
  margin-bottom: 16px;
}
.reivews-container .rating i {
  font-size: 18px;
  color: var(--light);
}
.reivews-container h3 {
  font-weight: 600;
  font-size: 22px;
  color: var(--light);
  margin-bottom: 16px;
  letter-spacing: -2%;
}
.reivews-container p,
.reivews-container h4,
.reivews-container span {
  font-size: 14px;
  color: var(--light);
}
.reivews-container h4 {
  font-weight: 600;
  margin-bottom: 3px;
}
/* Reviews section end */

.activities-tab__section + .tripadvisor-review {
  padding-top: clamp(60px, 8vw, 101px);
}

/* Video Reviews section start */
.video-thumb-wrap {
  position: relative;
  display: block;
  overflow: hidden;
  cursor: pointer;
}
.video-thumb-wrap::before {
  content: "";
  background-image: url(../img/vector-1.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 111px;
  height: 172px;
  position: absolute;
  left: 0;
  bottom: -3px;
  opacity: 0.15;
  z-index: 1;
  pointer-events: none;
}
.video-thumb-wrap img {
  width: 100%;
  height: 425px;
  object-fit: cover;
  display: block;
  transition:
    transform 0.6s ease,
    filter 0.6s ease;
}
.video-reviews-container:hover .video-thumb-wrap img {
  transform: scale(1.08);
  filter: brightness(0.9);
}
.video-thumb-wrap .overlay {
  background: linear-gradient(
    90deg,
    rgba(40, 61, 138, 0.75) 0%,
    rgba(59, 162, 218, 0.75) 100%
  );
  position: absolute;
  inset: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: unset;
  border: unset;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.play-btn::after {
  content: url(../img/play-button.svg);
}
.inline-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 10;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.inline-video-wrap[hidden] {
  display: none;
}
.inline-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.close-video {
  position: absolute;
  top: 8px;
  right: 10px;
  background: rgba(0, 0, 0, 0.55);
  border: none;
  color: #fff;
  font-size: 16px;
  line-height: 1;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 11;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}
.close-video:hover {
  background: rgba(255, 255, 255, 0.25);
}
.video-thumb-wrap.is-playing img,
.video-thumb-wrap.is-playing .overlay,
.video-thumb-wrap.is-playing .play-btn,
.video-thumb-wrap.is-playing::before {
  visibility: hidden;
}
.video-reviews-container .entry-content {
  margin-top: clamp(16px, 2vw, 22px);
}
.video-reviews-container span {
  color: var(--secondary);
  font-size: 14px;
  letter-spacing: -0.02em;
}
.video-reviews-container span a {
  color: var(--primary);
}
.video-reviews-container h3 {
  font-weight: 400;
  margin-top: 5px;
}
/* Video Reviews section end */

/* Blogs & updates start */
.blogs-update__section {
  background: var(--bg-color);
  overflow: hidden;
}
.blogs-update__section .padding-tb {
  position: relative;
}
.blogs-update__section .padding-tb::after {
  content: "";
  background-image: url(../img/vector-1.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 163px;
  height: 253px;
  position: absolute;
  right: 0;
  bottom: -4px;
  opacity: 0.5;
}
.blog-update-wrapper {
  display: flex;
  gap: 35px;
  position: relative;
  z-index: 1;
}
.blog-update-wrapper > div {
  width: 50%;
}
.blog-update-wrapper .featured-image {
  position: relative;
  overflow: hidden;
}
.blog-update-wrapper img {
  width: 100%;
  object-fit: cover;
  transition:
    transform 0.6s ease,
    filter 0.6s ease;
}
.blog-update-wrapper a:hover img {
  transform: scale(1.08);
  filter: brightness(0.9);
}
.blog-update-left a {
  position: relative;
  display: block;
  color: var(--light) !important;
}
.blog-update-left img {
  height: 386px;
}
.blog-update-left .entry-content {
  padding: 30px 40px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #00000080;
}
.blog-update-left h3 {
  color: var(--light);
  font-size: 22px;
  margin-top: 6px;
}
.blog-update-right a {
  display: flex;
  align-items: start;
  gap: clamp(20px, 3vw, 30px);
}
.blog-update-right a:not(:last-child) {
  margin-bottom: 32px;
}
.blog-update-right .featured-image {
  width: 35%;
}
.blog-update-right .entry-content {
  width: 65%;
}
.blog-update-right img {
  height: 174px;
}
.blog-update-right span {
  color: var(--secondary);
}
.blog-update-right h3 {
  font-weight: 400;
  margin: 6px 0 clamp(7px, 2vw, 13px);
}
.blog-update-right p,
.blog-update-right .btn {
  font-size: 14px;
  color: var(--text-1);
  font-weight: 400;
}
.blog-update-right .btn {
  margin: clamp(8px, 2vw, 14px) 0 0 0 !important;
  text-decoration-thickness: 1px !important;
  display: block !important;
}
.blog-update-right .btn::after {
  display: none;
}
/* Blogs & updates end */

/* FAQs start */
.faqs__section {
  overflow: hidden;
}
.faqs__section .padding-tb {
  display: flex;
  align-items: start;
  gap: clamp(30px, 4vw, 60px);
  position: relative;
  overflow: hidden;
}
.faqs__section .padding-tb::before {
  content: url(../img/vector-2.svg);
  position: absolute;
  left: 0;
  bottom: -4px;
}
.faqs__section .padding-tb > div {
  position: relative;
  z-index: 1;
}
.faqs__section .section-wrap {
  display: block;
  margin: 0;
  max-width: 370px;
  width: 100%;
}
.faqs__section .section-wrap h2 {
  margin-bottom: 12px;
}
.faqs__section .section-wrap .btn {
  margin-top: 16px;
}
.faqs-wrapper {
  width: 100%;
}
.faqs-wrapper .uk-accordion > li {
  background: linear-gradient(
    90deg,
    rgba(40, 61, 138, 0.1) 0%,
    rgba(59, 162, 218, 0.1) 100%
  );
  padding: 22px;
}
.faqs-wrapper .uk-accordion > li.uk-open {
  background: linear-gradient(90deg, #3ba2da 0%, #283d8a 100%);
}
.faqs-wrapper .uk-accordion-title {
  font-size: clamp(16px, 2vw, 18px);
  font-weight: 500;
  letter-spacing: -1%;
  color: var(--text-1);
  position: relative;
  padding-right: 30px;
}
.faqs-wrapper .uk-open .uk-accordion-title {
  color: var(--light);
}
.faqs-wrapper .uk-accordion-title::before,
.iti-trip .uk-accordion-title::after {
  background-image: unset !important;
  content: "\2b";
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  position: absolute;
  right: 0;
}
.faqs-wrapper .uk-open .uk-accordion-title::before,
.iti-trip .uk-open .uk-accordion-title::after {
  content: "\f068";
}
.faqs-wrapper .uk-accordion-content {
  position: relative;
  background-color: var(--light);
  padding: 20px 24px;
  margin: 30px 0 0;
}
.faqs-wrapper .uk-accordion-content::before {
  content: "";
  width: 26px;
  height: 22px;
  background-color: var(--light);
  position: absolute;
  top: -21px;
  left: 0;
  clip-path: polygon(0 0, 0% 100%, 100% 100%);
}
.faqs-wrapper .uk-accordion-content p {
  font-size: clamp(14px, 2vw, 15px);
  color: var(--text-1);
}
.faqs-wrapper .uk-accordion-content ul {
  list-style: disc;
  margin: 12px 0;
  margin-bottom: 12px;
  padding: 0 0 0 24px;
}
.faqs-wrapper .uk-accordion-content ul li {
  line-height: 1.5;
  font-size: clamp(14px, 2vw, 15px);
  color: var(--text-1);
}
.faqs-wrapper .uk-accordion-content ul li:not(:last-child) {
  margin-bottom: 8px;
}
/* FAQs end */

/* Instagram start */
.instagram__section {
  background: var(--bg-color);
  background-color: var(--light) !important;
}
/* Instagram end */

@media (max-width: 1370px) {
  .tab-content .trip-wrapper > div {
    width: calc((100% - 70px) / 3);
  }
}
@media (max-width: 1200px) {
  .tab-content .trip-wrapper > div {
    width: calc((100% - 35px) / 2);
  }
  .banner-slide img {
    height: 80vh;
  }
}
@media (max-width: 1024px) {
  .banner-slide img {
    height: 70vh;
  }
  .reivews-container > img,
  .about__section::after,
  .blogs-update__section .padding-tb::after {
    display: none;
  }
  .reivews-container > div {
    gap: 120px;
  }
  .reivews-container {
    padding: 40px;
  }
}

@media (max-width: 989px) {
  .faqs__section .padding-tb {
    flex-direction: column;
  }
  .faqs__section .section-wrap {
    margin: 0 auto;
    text-align: center;
  }
  .faqs__section .section-wrap .btn {
    margin-left: auto;
    margin-right: auto;
  }
  .why-us img {
    height: 65px;
  }
  .faqs__section .padding-tb::before {
    display: none;
  }
}

@media (max-width: 767px) {
  .banner__section {
    top: 80px;
  }
  .banner-slide img {
    height: 55vh;
  }
  .banner-title {
    bottom: 25%;
  }
  .banner-title .button {
    display: inline-block;
    padding: 12px 22px;
  }
  .about__section .wrapper-small {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  .about__section .wrapper-small > div {
    max-width: 520px !important;
  }
  .about__section a.btn,
  .about__section .wrapper-small > div {
    margin-left: auto;
    margin-right: auto;
  }
  .about__section ul.breadcrumb {
    justify-content: center;
  }
  .why-us img {
    height: 55px;
  }
  .blog-update-wrapper {
    flex-direction: column;
  }
  .blog-update-wrapper > div {
    width: 100%;
  }
  .reivews-container {
    padding: 40px 30px;
  }
  .reivews-container > div {
    gap: 80px;
  }
  .activities-wrapper li .icon {
    width: 90px;
    height: 90px;
  }
}

@media (max-width: 694px) {
  .tab-content .trip-wrapper > div {
    width: 100%;
  }
}

@media (max-width: 567px) {
  .banner__section {
    top: 74px;
  }
  .video-banner-wrapper video {
    height: 50vh;
  }
  .banner-title {
    transform: unset;
    width: 100%;
    padding: 30px 20px;
    text-align: center;
    background-color: var(--light);
    position: relative;
    bottom: unset;
    left: unset;
  }
  .banner-title h2,
  .video-banner-wrapper h2 {
    color: var(--secondary);
  }
  .blog-update-right img {
    height: 140px;
  }
  .blog-update-left img {
    height: 320px;
  }
  .blog-update-left .entry-content {
    padding: 25px;
  }
  .reviews-wrapper {
    flex-direction: column;
  }
  .reivews-container > div {
    max-width: 380px;
  }
  .reivews-container > div {
    gap: 60px;
  }
  .why-us-wrapper.four-grid {
    row-gap: 20px;
  }
  .video-reviews-wrapper.four-grid {
    row-gap: 30px;
  }
}

@media (max-width: 467px) {
  .trip-item img {
    height: 300px;
  }
}

@media (max-width: 400px) {
}
