/* Banner section  */
.banner__section,
.banner-slider {
  position: relative;
}
.banner-slider::after {
  content: "";
  background: rgba(0, 0, 0, 0.2);
  position: absolute;
  inset: 0;
}
.banner-slider .slick-track {
  display: flex;
}
.banner-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16/9;
  max-height: 87vh;
}
.banner__section .wrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: end;
  justify-content: center;
  text-align: center;
}
.banner__section .banner-title {
  max-width: 710px;
  width: 100%;
  text-align: center;
  margin-bottom: 80px;
}
.banner__section h1 {
  font-size: clamp(30px, 4vw, 48px);
  color: var(--light);
  font-weight: 500;
  line-height: 1;
}
.banner__section form {
  position: relative;
  margin: clamp(20px, 3vw, 35px) auto 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: #b1b2b2 0px 0px 0px 1px;
}
.banner__section form input {
  padding: 18px;
  border: unset;
  background: rgba(0, 0, 0, 0.12);
  color: var(--light);
  border-radius: 12px;
  backdrop-filter: blur(8.400002px);
}
.banner__section form input::placeholder {
  color: var(--light);
}
.banner__section form button {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  border: unset;
  background-color: var(--secondary);
  padding: 15px;
  cursor: pointer;
  transition: var(--transition);
  color: var(--light);
  font-weight: 500;
  text-transform: uppercase;
  font-family: var(--primary-font);
  font-size: 16px;
  letter-spacing: 0.5px;
  height: 60px;
}
.banner__section form button:hover {
  background-color: var(--primary);
}
.counter__section {
  background-color: var(--primary);
  padding: 30px 0;
}
.counter__section .entry-container {
  width: 100%;
  max-width: 1200px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 15px;
  margin: 0 auto;
  padding: 0 20px;
}
.counter__section .entry-content {
  display: flex;
  align-items: start;
  gap: 15px;
}
.counter__section .entry-content img {
  max-width: 32px;
  max-height: 32px;
  height: 32px;
}
.counter__section .entry-content span {
  font-size: clamp(20px, 3vw, 24px);
  font-weight: 500;
  letter-spacing: 0;
  color: var(--light);
  display: block;
  margin: 0 0 2px;
}
.counter__section .entry-content p {
  font-weight: 500;
  color: var(--light);
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: 0;
}
@media (max-width: 1300px) {
  .banner-slider img {
    aspect-ratio: 18/9;
  }
}
@media (max-width: 1024px) {
  .banner__section .banner-title {
    margin-bottom: 40px;
  }
  .banner__section .wrapper {
    align-items: end;
  }
  .banner__section .banner-title {
    margin-bottom: 55px;
  }
}
@media (max-width: 767px) {
  .banner__section form input {
    padding: 10px 12px;
  }
  .banner__section form button {
    padding: 11px;
  }
  .banner__section form button svg {
    width: 20px;
    height: 20px;
  }
  .banner-slider img {
    aspect-ratio: 10/8;
  }
}
@media (max-width: 567px) {
  .banner-slider img {
    aspect-ratio: 7/8;
  }
  .banner__section .entry-content p {
    font-size: 14px;
  }
  .banner__section .banner-title {
    margin-bottom: 30px;
    padding: 20px;
  }
  .counter__section .entry-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 400px) {
  .banner-slider img {
    aspect-ratio: 6/8;
  }
}
@media (max-width: 360px) {
  .banner-slider img {
    aspect-ratio: 5/8;
  }
}
/* Banner section  */

/* Adventure section  */
.adventure-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.adventure-container .featured-image a {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}
.adventure-container img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  transition: var(--transition);
}
.adventure-container:hover img {
  transform: scale(1.1);
}
.adventure-container .entry-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: 10px;
}
.adventure-container .entry-title a {
  color: var(--primary);
  transition: var(--transition);
}
.adventure-container:hover .entry-title a {
  color: var(--text-1);
}
.adventure-container .icon {
  width: 31px;
  min-width: 31px;
  height: 31px;
  border-radius: 50%;
  background-color: #eceff3;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.adventure-container:hover .icon {
  transform: rotate(45deg);
}
/* Adventure section  */

/* Why us section  */
.why-us__section {
  background-color: #eff7ff;
  position: relative;
  padding-bottom: 380px;
  background-repeat: no-repeat;
  background-position: bottom;
}
/* .why-us__section::after {
  content: "";
  background-image: url(../img/why-us-bg.png);
  background-repeat: no-repeat;
  background-position: bottom;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  right: 0;
  position: absolute;
} */
.why-us__section .wrapper-medium {
  display: flex;
  align-items: start;
  justify-content: space-between;
  position: relative;
  z-index: 1;
  gap: 30px;
}
.why-us__section .wrapper-medium > .btn {
  display: none;
}
.why-us__section .section-wrap {
  max-width: 334px;
}
.why-us-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  max-width: 785px;
}
.why-us-wrapper .entry-container {
  background:
    linear-gradient(0deg, rgba(0, 60, 121, 0.05), rgba(0, 60, 121, 0.05)),
    linear-gradient(
      101.66deg,
      rgba(255, 255, 255, 0.75) 0%,
      rgba(255, 255, 255, 0) 52.97%
    );
  border: 1px solid #0000001a;
  border-radius: 12px;
  padding: 20px;
}
.why-us-wrapper .entry-container div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 8px;
}
.why-us-wrapper .entry-container h3 {
  color: #003c79;
}
.why-us-wrapper .entry-container:nth-child(2),
.why-us-wrapper .entry-container:nth-child(8) {
  background:
    linear-gradient(0deg, rgba(1, 130, 112, 0.05), rgba(1, 130, 112, 0.05)),
    linear-gradient(
      101.66deg,
      rgba(255, 255, 255, 0.75) 0%,
      rgba(255, 255, 255, 0) 52.97%
    );
}
.why-us-wrapper .entry-container:nth-child(2) h3,
.why-us-wrapper .entry-container:nth-child(8) h3 {
  color: #018270;
}
.why-us-wrapper .entry-container:nth-child(3),
.why-us-wrapper .entry-container:nth-child(7) {
  background:
    linear-gradient(0deg, rgba(153, 109, 0, 0.05), rgba(153, 109, 0, 0.05)),
    linear-gradient(
      101.66deg,
      rgba(255, 255, 255, 0.75) 0%,
      rgba(255, 255, 255, 0) 52.97%
    );
}
.why-us-wrapper .entry-container:nth-child(3) h3,
.why-us-wrapper .entry-container:nth-child(7) h3 {
  color: #8e6500;
}
.why-us-wrapper .entry-container:nth-child(4),
.why-us-wrapper .entry-container:nth-child(5) {
  background:
    linear-gradient(0deg, rgba(153, 0, 133, 0.05), rgba(153, 0, 133, 0.05)),
    linear-gradient(
      101.66deg,
      rgba(255, 255, 255, 0.75) 0%,
      rgba(255, 255, 255, 0) 52.97%
    );
}
.why-us-wrapper .entry-container:nth-child(4) h3,
.why-us-wrapper .entry-container:nth-child(5) h3 {
  color: #7b7bcc;
}
@media (max-width: 1600px) {
  .why-us__section {
    padding-bottom: 300px;
  }
}
@media (max-width: 1400px) {
  .why-us__section {
    padding-bottom: clamp(40px, 5vw, 75px);
    background-image: unset !important;
  }
}
@media (max-width: 989px) {
  .why-us__section .section-wrap,
  .why-us__section .section-wrap .btn {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
  .why-us__section .wrapper-medium {
    flex-direction: column;
    gap: 0;
  }
  .why-us-wrapper {
    max-width: 100%;
  }
  .why-us__section .wrapper-medium > .btn {
    display: block;
    margin: 30px auto 0;
  }
  .why-us__section .section-wrap .btn {
    display: none;
  }
}
/* Why us section  */

/* Best Selling section  */
.best-selling__section {
  background-color: #f0f4f8;
  position: relative;
}
.best-selling__section::before {
  content: "";
  background-image: url(../img/best-selling-bg.png);
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}
.best-selling__section .wrapper-small {
  position: relative;
  z-index: 1;
}
.best-selling-container {
  box-shadow: 0px 0px 0px 2px #003c790f;
  border-radius: 12px;
  overflow: hidden;
  background-color: #ffffffcc;
  transition: var(--transition);
}
.best-selling-container:hover {
  box-shadow: inset 0 0 0 1px #00408133;
  background-color: #ecf4fd;
}
.best-selling-container .featured-image {
  position: relative;
  overflow: hidden;
}
.best-selling-container .featured-image img {
  width: 100%;
  height: 254px;
  object-fit: cover;
  transition: var(--transition);
}
.best-selling-container:hover .featured-image img {
  transform: scale(1.1);
}
.best-selling-container .featured-image span {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: block;
  background:
    linear-gradient(0deg, #d7a248, #d7a248),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.2) 0%,
      rgba(255, 255, 255, 0) 100%
    );
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  color: var(--light);
  padding: 6px 8px;
}
.best-selling-container .entry-container {
  padding: 20px 20px 30px;
}
.best-selling-container .days {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 5px;
}
.best-selling-container .days div {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}
.best-selling-container .days div::before {
  content: url(../img/days.svg);
  line-height: 1;
}
.best-selling-container .days div:last-child::before {
  content: url(../img/max-altitude.svg);
}
.best-selling-container .days div:not(:last-child)::after {
  content: "|";
  margin-right: 10px;
  margin-left: 2px;
  opacity: 0.5;
}
.best-selling-container h3 {
  margin-bottom: 12px;
  letter-spacing: -2%;
}
.best-selling-container h3 a {
  color: var(--text-2);
}
/* Best Selling section  */

/* Trip of the Month section  */
.trip-month-slider .slick-list {
  overflow: visible;
}
.trip-month-wrapper {
  padding: 85px;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.3;
  transition: var(--transition);
  height: 500px;
  display: flex !important;
  align-items: center;
  background-position: center;
}
.trip-month-wrapper::before {
  content: "";
  background: linear-gradient(
    270deg,
    rgba(215, 234, 255, 0) 0%,
    #d7eaff 73.16%
  );
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  position: absolute;
  visibility: hidden;
  transition: var(--transition);
}
.trip-month-wrapper.slick-current.slick-active.slick-center {
  opacity: 1;
}
.trip-month-wrapper.slick-current.slick-active.slick-center::before {
  visibility: visible;
}
.trip-month-wrapper .section-wrap {
  max-width: 383px;
  position: relative;
  z-index: 1;
  margin: 0;
  visibility: hidden;
  transition: var(--transition);
}
.trip-month-wrapper.slick-current.slick-active.slick-center .section-wrap {
  visibility: visible;
}
.trip-month-wrapper .section-wrap > span {
  color: #5d96d0;
  display: flex;
  align-items: center;
  gap: 6px;
  background:
    linear-gradient(0deg, #ffffff, #ffffff),
    linear-gradient(0deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.4));
  border: 1px solid #01827033;
  width: fit-content;
  border-radius: 8px;
  padding: 4px 10px;
  margin-bottom: 8px;
}
.trip-month-wrapper .entry-container {
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  row-gap: 12px;
  padding: 28px 0 12px;
}
.trip-month-wrapper .entry-container > div {
  display: flex;
  align-items: center;
  position: relative;
}
.trip-month-wrapper .entry-container > div:not(:last-child)::after {
  content: "|";
  opacity: 0.5;
  margin: 0 15px;
}
.trip-month-wrapper .entry-container .icon {
  max-width: 20px;
  min-width: 20px;
  margin-right: 6px;
}
@media (max-width: 1024px) {
  .trip-month-wrapper::before {
    width: 100%;
  }
  .trip-month-wrapper {
    padding: 60px;
  }
}
@media (max-width: 767px) {
  .trip-month-wrapper {
    padding: 45px;
  }
  .trip-month-wrapper .section-wrap {
    max-width: 100%;
  }
}
@media (max-width: 567px) {
  .trip-month-wrapper {
    padding: 30px;
  }
}
/* Trip of the Month section  */

/* Our story section  */
.our-story__section {
  position: relative;
  background-color: #000;
  overflow: hidden;
}
.our-story__section::before {
  content: url(../img/our-story-bg.png);
  position: absolute;
  left: 7%;
  bottom: -7px;
}
.our-story-wrapper .btn {
  display: none;
  margin: 30px auto 0;
}
.our-story-wrapper {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 80px;
}
.our-story-wrapper .section-wrap {
  max-width: 310px;
}
.our-story-wrapper .section-wrap h2 {
  color: #e5e5e5;
}
.our-story-wrapper .section-wrap p {
  color: #bfbfbf;
}
.our-story-container {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 15px;
  width: 100%;
}
.our-story-container .featured-image {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}
.our-story-container .featured-image::before {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 71.48%,
    rgba(0, 0, 0, 0.5) 100%
  );
  position: absolute;
  inset: 0;
}
.our-story-container .featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.our-story-container .featured-image:nth-child(1) {
  grid-column: span 6 / span 6;
  grid-row: span 3 / span 3;
}
.our-story-container .featured-image:nth-child(2) {
  grid-column: span 3 / span 3;
  grid-row: span 2 / span 2;
  grid-column-start: 1;
  grid-row-start: 4;
}
.our-story-container .featured-image:nth-child(3) {
  grid-column: span 3 / span 3;
  grid-row: span 2 / span 2;
  grid-column-start: 4;
  grid-row-start: 4;
}
.our-story-container .featured-image:nth-child(4) {
  grid-column: span 4 / span 4;
  grid-row: span 5 / span 5;
  grid-column-start: 7;
  grid-row-start: 1;
}
.our-story-container .featured-image:nth-child(2) h3,
.our-story-container .featured-image:nth-child(3) h3 {
  padding: 10px 15px 20px 16px;
}
.our-story-container .featured-image h3 {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 10px 20px 24px;
  max-width: 220px;
  color: var(--light);
  line-height: 1.2;
}
.our-story-container .featured-image .video-button {
  position: absolute;
  top: 15px;
  right: 15px;
}
.our-story-container .featured-image:nth-child(2) .video-button,
.our-story-container .featured-image:nth-child(3) .video-button {
  top: 10px;
  right: 10px;
}
#modal-center iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 10/6;
}
#modal-center [class*="uk-modal-close-"] {
  top: -18px;
  right: -18px;
  padding: 5px;
  color: var(--light);
}
#modal-center .uk-modal-body {
  padding: 0;
}
@media (max-width: 1024px) {
  .our-story-wrapper {
    flex-direction: column;
    gap: 0;
  }
  .our-story-wrapper .section-wrap,
  .our-story-wrapper .section-wrap .btn {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    max-width: 385px;
  }
  .our-story-wrapper .btn {
    display: block;
  }
  .our-story-wrapper .section-wrap .btn {
    display: none;
  }
}
@media (max-width: 767px) {
  .our-story-container {
    display: flex;
    align-items: start;
    flex-wrap: wrap;
  }
  .our-story-container > div {
    width: calc(50% - 7.5px);
  }
  .our-story-container .featured-image img {
    height: 270px;
  }
  .our-story-container .featured-image .video-button {
    top: 15px !important;
    right: 15px !important;
  }
}
@media (max-width: 567px) {
  .our-story-container > div {
    width: 100%;
  }
}
/* Our story section  */

/* Review section  */
.review__section .wrapper-medium > div {
  position: relative;
  padding: 0 60px 40px 60px;
}
.review__section .wrapper-medium > div::before {
  content: "";
  width: 100%;
  height: 100%;
  border: 1px solid #cccccc;
  border-radius: 20px;
  position: absolute;
  inset: 0;
  top: 20px;
}
.review__section .section-wrap.center {
  background-color: var(--light);
  position: relative;
  max-width: 480px;
}
.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.reviewer img {
  width: 6px;
  height: 62px;
  min-width: 60px;
  object-fit: cover;
  border-radius: 8px;
}
.reviewer span {
  font-size: 18px;
  color: #232425;
  margin-bottom: 6px;
  display: block;
}
.rating i {
  color: #d7a248;
}
.review-slider .entry-container {
  border-radius: 12px;
  background-color: #e9f0f8;
  padding: 30px;
  display: flex;
  flex-direction: column;
  height: auto;
}
.review-slider h3 {
  margin-bottom: 12px;
}
.review-arrows {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  margin-top: 45px;
}
.review-arrows .slick-arrow {
  position: unset;
  transform: unset;
}
.review-slider .entry-content {
  overflow: hidden;
}
@media (max-width: 1024px) {
  .review__section .wrapper-medium > div {
    padding: 0 30px 15px 30px;
  }
  .review-arrows {
    margin-top: 35px;
  }
}
/* Review section  */

/* Trekking Region section  */
.trekking-region__section {
  background: linear-gradient(180deg, #ffffff 0%, #e9f0f8 100%);
  position: relative;
}

.nepal-map .section-wrap {
  max-width: 460px;
  width: 100%;
}
.map-item {
  padding: 25px;
  background-color: var(--light);
  border: 1px solid #efefef;
  border-radius: 12px;
}
.map-item img {
  border-radius: 8px;
  width: 100%;
  height: 250px;
  object-fit: cover;
}
.map-item h3 {
  margin: 12px 0 5px;
}
.map-item .outline-btn {
  padding: 9px 22px;
  margin-top: 20px;
}
.location-s {
  cursor: pointer;
}

@media (min-width: 989px) {
  .nepal-map-wrapper {
    display: flex;
    align-items: start;
    gap: 50px;
    text-align: left;
    margin-bottom: 60px;
  }
  .nepal-map-wrapper > div {
    flex: 1;
    position: relative;
  }
  .map-item {
    transition: all 0.5s ease-in-out;
    opacity: 0;
    user-select: none !important;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
    transform: translate(-250px, 190px) scale(0.3);
    width: 100%;
    max-width: 400px;
  }
  .map-item.active {
    opacity: 1;
    user-select: unset !important;
    transform: translate(0, 0) scale(1);
    z-index: 9;
  }
}
@media (max-width: 989px) {
  .nepal-map svg {
    display: none;
  }
  .map-item {
    text-align: center;
  }
  .map-item .outline-btn {
    margin: 20px auto 0;
  }
  .nepal-map .section-wrap {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
  .map-item img {
    height: 400px;
  }
  .nepal-map-container.slick-dotted.slick-slider {
    margin-bottom: 0;
  }
  .nepal-map-container .slick-dots {
    position: unset;
    margin-top: 18px;
  }
  .nepal-map-container .slick-dots li {
    margin: 0;
    width: unset;
    height: unset;
  }
  .nepal-map-container .slick-dots li button {
    padding: 0;
    width: 30px;
    height: 3px;
    background-color: #d7d7d7;
  }
  .nepal-map-container .slick-dots li.slick-active button {
    background-color: var(--primary);
  }
  .nepal-map-container .slick-dots li button::before {
    display: none;
  }
}
@media (max-width: 567px) {
  .map-item img {
    height: 300px;
  }
}

.trekking-region-slider a {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  background-color: #fcfdfe;
}
.trekking-region-slider .featured-image {
  overflow: hidden;
}
.trekking-region-slider img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: var(--transition);
}
.trekking-region-slider .entry-container:hover img {
  transform: scale(1.1);
}
.trekking-region-slider .entry-content {
  padding: 15px 15px 20px 18px;
}
.trekking-region-slider span {
  color: #4c4c4c;
  display: block;
  margin-top: 4px;
}
.trekking-region-slider .slick-prev {
  left: -50px;
}
.trekking-region-slider .slick-next {
  right: -50px;
}
@media (max-width: 1400px) {
  .trekking-region-slider .slick-prev {
    left: -25px;
  }
  .trekking-region-slider .slick-next {
    right: -25px;
  }
}
@media (max-width: 1200px) {
  .trekking-region-slider .slick-prev {
    left: -18px;
  }
  .trekking-region-slider .slick-next {
    right: -18px;
  }
}
@media (max-width: 1024px) {
}
@media (max-width: 989px) {
}
@media (max-width: 767px) {
}
/* Trekking Region section  */

/* FAQs section  */
.faqs__section .section-wrap {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 10px;
}
.faqs__section .section-wrap h2 {
  max-width: 730px;
}
.faqs__section .section-wrap p {
  margin: 0;
  max-width: 317px;
}
.faq-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 40px;
}
.faq-container {
  width: 100%;
}
.faq-sidebar {
  background:
    linear-gradient(0deg, rgba(153, 109, 0, 0.05), rgba(153, 109, 0, 0.05)),
    linear-gradient(
      101.66deg,
      rgba(255, 255, 255, 0.75) 0%,
      rgba(255, 255, 255, 0) 52.97%
    );
  border: 1px solid #0000001a;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 317px;
  width: 100%;
  padding: 45px 30px;
}
.faq-sidebar h2 {
  font-size: clamp(22px, 2vw, 26px);
  margin: 8px 0 15px;
}
.faq-sidebar h3 {
  color: #8e6500;
  line-height: 1.2;
}
.faq-sidebar .btn {
  margin: 35px auto 0;
}
.uk-accordion {
  margin: 0;
}
.uk-accordion > li:not(:last-child) {
  border-bottom: 1px solid #e5e5e5;
  margin: 15px 0 0 0;
  padding: 0 0 15px 0;
}
.uk-accordion-title {
  font-size: 22px;
  font-weight: 500;
  color: #404040;
}
.uk-accordion-title::before {
  background-image: unset !important;
  content: "\2b";
  font-family: "Font Awesome 6 Free";
  font-weight: 600;
  width: 29px;
  height: 29px;
  background-color: #e5ebf1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: #003c79;
}
.uk-open > .uk-accordion-title::before {
  content: "\f068";
}
@media (max-width: 767px) {
  .faqs__section .section-wrap {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
  }
  .faqs__section .section-wrap h2,
  .faqs__section .section-wrap p {
    max-width: 100%;
  }
  .faq-wrapper {
    flex-direction: column-reverse;
    gap: 25px;
  }
  .faq-sidebar {
    margin: 0 auto;
    max-width: 100%;
  }
}
/* FAQs section  */

/* Travel Stories section  */
.best-selling-container .category {
  display: flex;
  align-items: center;
  margin: 0 0 6px;
}
.best-selling-container .category div {
  text-transform: uppercase;
  position: relative;
}
.best-selling-container .category div:not(:last-child)::after {
  content: "|";
  opacity: 0.5;
  margin: 0 10px 0 12px;
}
.best-selling-container .category a {
  color: var(--text-2);
  text-transform: none;
}
.travel-stories__section .outline-btn {
  margin: 40px auto 0;
}
/* Travel Stories section  */

/* CTA section  */
.cta-wrapper {
  background:
    linear-gradient(0deg, rgba(153, 204, 255, 0.5), rgba(153, 204, 255, 0.5)),
    linear-gradient(
      285.92deg,
      rgba(0, 126, 255, 0.2) 73.51%,
      rgba(255, 255, 255, 0.2) 99.73%
    );
  border-radius: 12px;
  padding: 85px;
  display: flex;
  align-items: start;
  gap: 30px;
  justify-content: space-between;
  position: relative;
}
.cta-wrapper::after {
  content: "";
  background-image: url(../img/cta-bg.png);
  background-repeat: no-repeat;
  background-position: bottom;
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.cta-wrapper .entry-container {
  max-width: 412px;
  position: relative;
  z-index: 1;
}
.cta-wrapper h2 {
  font-size: clamp(26px, 3vw, 32px);
  margin-bottom: 14px;
}
.cta-button {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 25px;
}
.cta-form {
  max-width: 274px;
  position: relative;
  z-index: 1;
}
.cta-form h3 {
  color: #313f4d;
  font-weight: 400;
  margin-bottom: 24px;
}
.cta-form form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cta-form form p {
  margin: 0;
  padding: 0;
}
.cta-form form p br {
  display: none;
}
.wpcf7 form .wpcf7-response-output {
  margin: 0.5em 0.5em 1em;
}
.cta-form form input {
  background: #ffffff66;
  border: unset;
}
@media (max-width: 989px) {
  .cta-wrapper {
    padding: 60px;
  }
}
@media (max-width: 767px) {
  .cta-wrapper {
    padding: 45px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .cta-button {
    justify-content: center;
  }
}
/* CTA section  */
