/* Banner section start */
.banner__section {
  position: sticky !important;
  top: 0;
}
.banner__section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16/8;
}
.banner-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0 20px;
  max-width: 690px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
.banner-title h1 {
  color: var(--light);
  font-weight: 600;
  font-size: clamp(32px, 3vw, 48px);
  margin-bottom: 20px;
}
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:first-child {
  max-width: 490px;
}
.about__section .wrapper-small > div:last-child {
  max-width: 373px;
}
.about__section .section-title {
  color: var(--secondary);
}
.about__section p {
  font-size: 15px;
}
.about__section a.btn {
  color: var(--primary);
  margin-top: 25px;
}
.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: 22px;
}
.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: 5px;
}
.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: 13px;
  letter-spacing: -2%;
}
.trip-item .entry-content p {
  font-size: 14px;
}
.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: 18px;
}
/* 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: 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: center;
  gap: 30px;
  list-style: none;
  padding: 0;
} */
.activities-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  list-style: none;
  padding: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.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 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 */

/* Video Reviews section start */
.video-reviews-container > a {
  position: relative;
  display: block;
  overflow: hidden;
}
.video-reviews-container > a::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;
}
.video-reviews-container > a::after {
  content: url(../img/play-button.svg);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.video-reviews-container .overlay {
  background: linear-gradient(
    90deg,
    rgba(40, 61, 138, 0.75) 0%,
    rgba(59, 162, 218, 0.75) 100%
  );
  position: absolute;
  inset: 0;
}
.video-reviews-container img {
  width: 100%;
  height: 265px;
  object-fit: cover;
  transition:
    transform 0.6s ease,
    filter 0.6s ease;
}
.video-reviews-container:hover img {
  transform: scale(1.08);
  filter: brightness(0.9);
}
.video-reviews-container .entry-content {
  margin-top: 22px;
}
.video-reviews-container span {
  color: var(--secondary);
  font-size: 14px;
  letter-spacing: -2%;
}
.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: 380px;
}
.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 16px;
}
.blog-update-right p,
.blog-update-right .btn {
  font-size: 14px;
  color: var(--text-1);
  font-weight: 400;
}
.blog-update-right .btn {
  margin: 16px 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: 18px;
  font-weight: 500;
  letter-spacing: -1%;
  color: var(--text-1);
}
.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;
}
.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: 15px;
  color: var(--text-1);
}
/* FAQs end */

@media (max-width: 1370px) {
  .tab-content .trip-wrapper > div {
    width: calc((100% - 70px) / 3);
  }
}
@media (max-width: 1034px) {
  .tab-content .trip-wrapper > div {
    width: calc((100% - 35px) / 2);
  }
}
@media (max-width: 1024px) {
  .banner__section img {
    aspect-ratio: 14/8;
  }
  .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 img {
    aspect-ratio: 12/8;
  }
  .banner-title {
    transform: unset;
    top: auto;
    left: 0;
    right: 0;
    bottom: 45px;
  }
  .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;
  }
  .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;
  }
}

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

@media (max-width: 567px) {
  .banner__section img {
    aspect-ratio: 10/8;
  }
  .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;
  }
}

@media (max-width: 467px) {
  .banner__section img {
    aspect-ratio: 8/8;
  }
  .trip-item img {
    height: 300px;
  }
}

@media (max-width: 400px) {
  .banner__section img {
    aspect-ratio: 6/8;
  }
}
