@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
  --primary-color: linear-gradient(135deg, #021429, #8a4e23);
  --secondary-color: linear-gradient(-135deg, #021429, #8a4e23);
  --secondary-dark-color: #453c5c;

  --white-color: #fff;
  --light-bg-color: #f2f3f5;
  --light-text-color: #7c899a;
  --border-color: rgb(232, 232, 232, 0.2);
  --dark-color: #021429;
  --light-logo-color: #f58634;
  --orange-color: #fa9b78;
  --blue-logo-color: #05408f;

  --font-small: 14px;
  --font-smaller: 11px;

  --percent100: 100%;
  --percent50: 50%;

  --fw3: 300;
  --fw5: 500;
  --fw6: 600;
  --fw7: 700;
  --fw8: 800;
}

.animate-on-scroll {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

* {
  margin: 0;
  padding: 0;
}

*,
::before,
::after {
  box-sizing: border-box;
}

html,
body {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  background: var(--primary-color);
  color: var(--white-color);
  height: 100%;
  width: 100%;
  scroll-behavior: smooth;
  overflow: auto;
}

a {
  text-decoration: none;
  color: inherit;
  -webkit-tap-highlight-color: transparent;
}

ul {
  list-style: none;
}
img {
  max-width: var(--percent100);
  vertical-align: middle;
  object-fit: cover;
}

strong {
  font-weight: var(--fw8);
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input::placeholder {
  font: inherit;
}

h1,
h2,
h3,
h4 {
  font-family: "Poppins";
}

h1 {
  font-size: calc(1.2em+1vw);
  font-weight: var(--fw8);
  line-height: 1;
}

h2 {
  font-size: 2.5em;
}

h3 {
  font-size: 1.2em;
  font-weight: var(--fw7);
}

h4 {
  font-size: 1em;
  font-weight: var(--fw6);
}

.icon {
  display: flex;
  align-items: center;
}

svg {
  width: 16px;
  cursor: pointer;
  color: var(--dark-color);
}

.container {
  max-width: 1200px;
  min-width: 290px;
  margin: 0 auto;
}

.container.maxm_width {
  max-width: 1326px;
}

/* navbar section */
.navbar_section {
  width: 100%;
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  left: 0;
  backdrop-filter: blur(8px);
  z-index: 1000;
}

.navbar_section
  :where(.navigation, .nav, .logo, .nav_list, .search_box, a, .search) {
  display: flex;
  align-items: center;
}

.navbar_section .navigation {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  column-gap: 0.2em;
  font-size: var(--font-small);
  margin: 0 0.5em;
  padding: 0.5em 0;
}

.navbar_section .navigation .top_nav_list .nav_item a span {
  display: flex;
  align-items: center;
  padding: 0.1em;
  background: transparent;
  transition: 0.5s ease-out;
  font-size: var(--font-small);
}

.navbar_section .navigation .top_nav_list .nav_item a span:first-child {
  margin-right: 1em;
}

.navbar_section .navigation .nav_list .nav_item a {
  display: flex;
  align-items: center;
  opacity: 1;
}

.navbar_section .navigation .nav_list .nav_item a span {
  padding: 0.35em 1em;
  border-radius: 3px;
  background: transparent;
  transition: 0.5s ease-out;
  font-size: var(--font-small);
}

.navbar_section .navigation .nav_list .nav_item a:hover {
  background: rgba(232, 232, 232, 1);
}

.navbar_section .navigation h1.title {
  text-transform: uppercase;
  font-family: "poppins" sans-serif;
  font-size: 16px;
  line-height: 1.3;
  text-align: center;
}

.navbar_section .navigation .logo {
  opacity: 1;
  transition: 0.3s ease-in-out;
}

.navbar_section .navigation .logo:hover {
  opacity: 0.8;
}

.navbar_section .navigation .logo .icon img {
  height: 50px;
  aspect-ratio: 3/2.2;
  margin: 0 0.5em;
}

.navbar_section .navigation .logo .icon_text .title {
  text-align: start;
}

.navbar_section .navigation .logo .icon_text .title:first-child {
  color: var(--blue-logo-color);
}

.navbar_section .navigation .logo .icon_text .title:last-child {
  color: var(--light-logo-color);
}

.navbar_section .navigation .nav_list {
  margin: 0 1em;
  font-size: var(--font-small);
  font-weight: var(--fw5);
}

.list_navbar_section {
  background: var(--primary-color);
  /* background: linear-gradient(to bottom, #18181b 5%, #27272a 30%); */
}

.list_navbar_section .container .navigation .nav .nav_list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  border-top: 1px solid var(--border-color);
}

.list_navbar_section .container .navigation .nav .nav_list .nav_item {
  position: relative;
  padding: 0 1em;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 3.45em;
  text-align: center;
  flex-grow: 1;
  font-size: var(--font-small);
  font-weight: var(--fw5);
  transform: all 0.3s ease-out;
}

.list_navbar_section
  .container
  .navigation
  .nav
  .nav_list
  .nav_item.multi::after {
  content: "\25B8";
  display: inline-block;
  rotate: 90deg;
  cursor: pointer;
}

.list_navbar_section
  .container
  .navigation
  .nav
  .nav_list
  .nav_item:hover
  span {
  opacity: 0.8;
}

.list_navbar_section .container .navigation .nav .nav_list .sub_nav_list {
  position: absolute;
  z-index: 10;
  top: calc(3.5em - 1px);
  left: 0;
  width: 250px;
  background: var(--primary-color);
  text-align: left;
  border-radius: 0 0 4px 4px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
  opacity: 0;
  pointer-events: none;
}

.list_navbar_section
  .container
  .navigation
  .nav
  .nav_list
  .sub_nav_list.active {
  max-height: 500px;
  opacity: 1;
  pointer-events: auto;
}

.list_navbar_section .container .navigation .nav .nav_list .sub_nav_list li {
  padding: 0.75em 2em;
  transition: all 0.4s ease-out;
}

.list_navbar_section
  .container
  .navigation
  .nav
  .nav_list
  .sub_nav_list
  li:hover {
  color: var(--orange-color);
}

.list_navbar_section
  .container
  .navigation
  .nav
  .nav_list
  .sub_nav_list
  li:not(:last-child) {
  border-bottom: 1px solid var(--border-color);
}

/* navbar menu button */
.navbar_section .navigation .menu {
  margin-right: 0.5em;
  display: none;
  align-items: center;
  justify-content: center;
  width: 65px;
}

.navbar_section .navigation .menu .icon {
  width: 22px;
  height: 22px;
  opacity: 0.7;
  transition: all 0.3s ease-in;
}

.navbar_section .navigation .menu .icon svg {
  height: 100%;
  width: 100%;
  color: rgba(252, 252, 252);
  overflow: visible;
  transition: all 0.3s ease-in-out;
  opacity: 0.7;
}

.navbar_section .navigation .menu .icon svg:hover {
  opacity: 1;
}

/* parallax */

.parallex {
  position: relative;
  height: 60dvh;
  background: url(image/parallax.jpg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 2em;
}

.parallex::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: -1;
}

.parallex .container .wrapper .top_title {
  font-size: 46px;
  text-align: center;
  font-size: clamp(2em, 5vw, 3em);
  font-weight: var(--fw7);
}

.parallex .container .wrapper .top_sub_title {
  font-size: clamp(0.75em, 2vw, 1em);

  text-align: center;
  line-height: 2;
  font-weight: var(--fw3);
}

/* navbar search box */
.parallex .search_box {
  display: flex;
  align-items: center;
  justify-content: center;
}

.parallex .search_box form {
  display: flex;
  align-items: center;
  margin-top: 1.5em;
  justify-content: center;
  min-width: 200px;
  position: relative;
}

.parallex .search_box form {
  width: 60%;
}

.parallex .search_box .search_input {
  all: unset;
  width: 100%;
  border: 1px solid var(--border-color);
  /* background-color: var(--border-color); */
  padding: 1em 2em;
  padding-left: 4em;
  font-size: clamp(13px, 1vw, 16px);
  backdrop-filter: blur(4px);
  border-radius: 50px;
  transition: 0.2s ease-out;
  box-shadow: 3px 2px 15px rgba(223, 222, 222, 0.1) inset;
}

.parallex .search_box .search_input:focus {
  border: 1px solid rgb(25, 151, 290, 0.3);
  box-shadow: 3px 2px 15px rgba(232, 232, 232, 0.3);
  backdrop-filter: blur(8px);
}

.parallex .search_box form .icon {
  all: unset;
  position: absolute;
  top: 0;
  left: 1.75em;
  display: flex;
  height: 100%;
  align-items: center;
}

.parallex .search_box form .search_input:focus + .icon svg {
  transform: rotate(90deg);
}

.parallex .search_box form .icon svg {
  color: var(--white-color);
  background: transparent;
  transition: all 0.3s ease-in-out;
  opacity: 0.7;
}

.parallex .search_box form .icon svg:hover {
  rotate: 90deg;
  opacity: 1;
}

.offer_section {
  padding: 0 2em;
}

.offer_section .container .specialOffer {
  padding-top: 4em;
}

.offer_section .container .specialOffer .offer_title {
  font-size: clamp(1.75em, 3vw, 2.25em);
  font-weight: var(--fw7);
}

.offer_section .container .specialOffer .offer_sub_title {
  font-size: clamp(0.75em, 2vw, 0.9em);
  font-weight: var(--fw3);
  line-height: 1.2;
}

.offer_section .container .wrapper .offer_list {
  display: flex;
  justify-content: space-between;
  gap: 1.5em;
  margin: 1.5em 0;
}

.offer_section .container .wrapper .offer_list.holidays {
  flex-wrap: wrap;
}

.offer_section .container .wrapper .offer_list .offer_item {
  position: relative;
  border-radius: 4px;
  flex-grow: 1;
  height: 300px;
  min-width: 200px;
  overflow: hidden;
  cursor: pointer;
}

:where(
    .offer_section.aceHoneymoonOffers_section,
    .offer_section.nepalTourPackages
  )
  .container
  .wrapper.aceHoneymoonOffers
  .offer_list
  .offer_item {
  aspect-ratio: 1/1;
}

.offer_section .container .wrapper .offer_list .offer_item .offer_image {
  width: 100%;
  height: 100%;
  transition: all 0.3s ease-out;
}

.offer_section .container .wrapper .offer_list .offer_item .offer_image img {
  border: 1px solid var(--border-color);
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

.offer_section .container .wrapper .offer_list .offer_item:hover .offer_image {
  scale: 1.05;
}

.offer_section .container .wrapper .offer_list .offer_text {
  position: absolute;
  bottom: 1.5em;
  left: 1.5em;
  font-size: var(--font-small);
  font-weight: var(--fw7);
  z-index: 2;
  /* color: var(--primary-color); */
  color: var(--dark-color);
}
.offer_section .container .wrapper .offer_list .offer_text .offer_title {
  font-size: 26px;
  color: var(--secondary-color);
}

.offer_section
  .container
  .wrapper.aceHoneymoonOffers
  .offer_list
  .offer_text
  .offer_title {
  font-size: 18px;
  padding: 1.5em 1.5em 0 0;
  line-height: 1.2;
}
.offer_section .offer_list .offer_text .offer_sub_title {
  display: flex;
  align-items: center;
  gap: 0.5em;
}

.offer_section .offer_list .offer_text .offer_sub_title span:first-child {
  display: flex;
  align-items: center;
}

.offer_section .container .wrapper .offer_list .offer_item::before {
  content: "";
  position: absolute;
  bottom: -10%;
  left: -10%;
  width: 70%;
  height: 60%;
  background: var(--white-color);
  z-index: 1;
  filter: blur(50px);
  opacity: 0.8;
  rotate: 10deg;
}

.offer_section
  .container
  .wrapper.aceHoneymoonOffers
  .offer_list
  .offer_item::before {
  width: 100%;
}

:where(
    .offer_section.aceHoneymoonOffers_section,
    .offer_section.nepalTourPackages
  )
  .container
  .wrapper.aceHoneymoonOffers
  .offer_list
  .offer_item
  .time_duration {
  background: var(--secondary-color);
  position: absolute;
  top: 1em;
  right: 1em;
  padding: 0.75em;
  font-size: var(--font-smaller);
  font-weight: var(--fw5);
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 50%;
}

.testimonials_section {
  margin-top: 4em;
  background: var(--secondary-color);
}

.testimonials_section .container .wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.testimonials_section .container .wrapper .testimonials_list {
  min-height: 380px;
  width: 80%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.testimonials_section .container .wrapper .testimonials_list .message {
  padding-top: 2em;
  padding-bottom: 1em;
  text-align: center;
  font-size: clamp(1.5em, 3vw, 2em);
  font-weight: var(--fw7);
  line-height: 1.2;
}

.testimonials_section .container .wrapper .testimonials_list .rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25em;
  margin-bottom: 1.5em;
  color: gold;
}

.testimonials_section .container .wrapper .testimonials_list .description {
  font-size: var(--font-small);
  font-size: clamp(12px, 1vw, 14px);
  width: 85%;
  opacity: 0.8;
  text-align: center;
  font-weight: var(--fw4);
  line-height: 1.2;
}

.testimonials_section .container .wrapper .testimonials_list .guideTraveller {
  font-size: 21px;
  padding: 1em;
  font-weight: var(--fw7);
  line-height: 2;
}

/* footer */
.footer_section {
  background: var(--primary-color);
  padding: 3em 1em;
}

.footer_section .wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2em;
}

.footer_section .wrapper > div {
  flex: 1;
  min-width: 220px;
}

.footer_section h3 {
  font-size: clamp(1.125em, 3vw, 1.5em);
  font-weight: var(--fw7);
  margin-bottom: 1em;
}

.footer_section ul {
  list-style: none;
  padding: 0;
}

.footer_section ul li {
  margin-bottom: 0.75em;
}

.footer_section ul li a {
  text-decoration: none;
  font-size: clamp(14px, 1vw, 16px);
  transition: color 0.3s ease;
}

.footer_section ul li a:hover {
  opacity: 0.8;
}

.footer_section .wrapper .footer_contact ul li {
  /* border: 1px solid var(--border-color); */
  display: flex;
  font-size: clamp(14px, 1vw, 16px);
  align-items: center;
  gap: 0.75em;
  transition: all 0.3s ease-out;
}

.footer_section .wrapper .footer_contact ul li:hover {
  opacity: 0.8;
  cursor: pointer;
}

.footer_section .social_icons {
  display: flex;
  gap: 1em;
}
.footer_section .social_icons a {
  color: #fff;
  margin-right: 0.5em;
  font-size: clamp(14px, 1vw, 16px);
  transition: all 0.3s ease;
}

.footer_section .social_icons a:hover {
  opacity: 0.8;
}

/* Specific hover colors */
.footer_section .social_icons a:nth-of-type(1):hover {
  color: #1877f2; /* Facebook Blue */
}

.footer_section .social_icons a:nth-of-type(2):hover {
  color: #1da1f2; /* Twitter Blue */
}

.footer_section .social_icons a:nth-of-type(3):hover {
  color: #e4405f; /* Instagram Pink-Red */
}

.footer_section .social_icons a:nth-of-type(4):hover {
  color: #0a66c2; /* LinkedIn Blue */
}

.footer_section .social_icons a:nth-of-type(5):hover {
  color: #ff0000; /* YouTube Red */
}

.footer_section .footer_bottom {
  text-align: center;
  margin-top: 2em;
  font-size: 0.9em;
}

/* ================================ */
/*                                  */
/*    page-single body seciton      */
/*                                  */
/* ================================ */

.page_single_section {
  padding: 0 2em;
}

.page_single_section .container .wrapper {
  /* border: 1px solid red; */
  display: flex;
  gap: 20px;
  align-items: start;
  justify-content: space-between;
  position: relative;
  padding: 1em 0;
}

.page_single_section .container .wrapper .main_blog {
  flex: 0.65;
  /* border: 1px solid red; */
  height: 100%;
  width: 100%;
}
.page_single_section .container .wrapper .main_blog .gallery {
  width: 100%;
  aspect-ratio: 5/3;
  height: 100%;
  border-radius: 4px;
  overflow: hidden;
}

.page_single_section .container .wrapper .main_blog .gallery img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  position: relative;
  z-index: 5;
}
.page_single_section .container .wrapper .main_blog .gallery img::after {
  content: "";
  position: absolute;
  z-index: 6;
  background: rgba(223, 222, 222, 0.1);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.page_single_section .container .wrapper .main_blog .explaination {
  margin-top: 1em;
  padding: 1.5em;
  background: var(--primary-color);
  border-radius: 4px;
}

.page_single_section
  .container
  .wrapper
  .main_blog
  .explaination
  .explaination_title {
  font-size: clamp(1.5em, 3vw, 2em);
  font-weight: var(--fw7);
  margin-bottom: 0.5em;
}

.page_single_section
  .container
  .wrapper
  .main_blog
  .explaination
  .explaination_text {
  font-size: var(--font-small);
  font-weight: normal;
  line-height: 1.4;
  padding-bottom: 1em;
}

.page_single_section
  .container
  .wrapper
  .main_blog
  .explaination
  .explaination_Youtube_video {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  position: relative;
  border-radius: 4px;
}

.page_single_section
  .container
  .wrapper
  .main_blog
  .explaination
  .explaination_Youtube_video
  iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.page_single_section
  .container
  .wrapper
  .main_blog
  :where(.itinerary, .offer_includes, .offer_excludes) {
  margin-top: 1.5em;
  padding: 1.5em;
  background: var(--primary-color);
  border-radius: 4px;
}

.page_single_section
  .container
  .wrapper
  .main_blog
  :where(
    .itinerary .itinerary_title,
    .offer_includes .offer_includes_title,
    .offer_excludes .offer_excludes_title
  ) {
  font-size: clamp(1.5em, 3vw, 2em);
  font-weight: var(--fw7);
  padding-bottom: 0.25em;
  border-bottom: 1px solid var(--border-color);
}

.page_single_section
  .container
  .wrapper
  .main_blog
  :where(
    .offer_includes .offer_includes_title,
    .offer_excludes .offer_excludes_title
  ) {
  margin-bottom: 0.5em;
}

.page_single_section
  .container
  .wrapper
  .main_blog
  .itinerary
  :where(
    .itinerary .itinerary_container,
    .offerIncludes .offer_includes_container,
    .offer_excludes .offer_excludes_container
  ) {
  max-width: 800px;
}

.page_single_section
  .container
  .wrapper
  .main_blog
  .itinerary
  .itinerary_container
  .faq-item {
  border-bottom: 1px solid var(--border-color);
  overflow: hidden;
}

.page_single_section
  .container
  .wrapper
  .main_blog
  .itinerary
  .itinerary_container
  .faq-item:last-child {
  border-bottom: none;
}

.page_single_section
  .container
  .wrapper
  .main_blog
  .itinerary
  .itinerary_container
  .question {
  cursor: pointer;
  padding: 0.75em 1em;
  font-size: 1em;
  font-weight: var(--fw5);
  transition: background-color 0.3s ease;
  border-radius: 8px 8px 0 0;
}

.page_single_section
  .container
  .wrapper
  .main_blog
  .itinerary
  .itinerary_container
  .question::before {
  content: "\25B8";
  display: inline-block;
  transform: rotate(0deg);
  transition: transform 0.3s ease;
  margin-right: 1em;
  font-weight: bold;
}

.page_single_section
  .container
  .wrapper
  .main_blog
  .itinerary
  .itinerary_container
  .faq-item.open
  .question::before {
  transform: rotate(90deg);
}

.page_single_section
  .container
  .wrapper
  .main_blog
  .itinerary
  .itinerary_container
  .faq-item
  .answer {
  max-height: 0;
  overflow: hidden;
  margin: 0 1.75em;
  border-radius: 0 0 8px 8px;
  padding: 0 1.75em;
  font-size: var(--font-small);
  transition: max-height 0.4s ease, padding 0.4s ease, margin 0.4s ease;
  box-shadow: inset 0 -1px 4px rgba(0, 0, 0, 0.05);
}

.page_single_section
  .container
  .wrapper
  .main_blog
  .itinerary
  .itinerary_container
  .faq-item.open
  .answer {
  margin: 0 1.75em 1em 1.75em;
  max-height: 100vh;
}

.page_single_section
  .container
  .wrapper
  .main_blog
  .itinerary
  .itinerary_container
  .faq-item.open
  .answer
  p:not(:last-child) {
  padding-bottom: 1em;
}

.page_single_section
  .container
  .wrapper
  .main_blog
  .itinerary
  .itinerary_container
  .faq-item.open
  .answer
  div:not(:last-child) {
  padding-bottom: 1em;
}

.page_single_section
  .container
  .wrapper
  .main_blog
  :where(
    .offer_includes .offer_includes_container .offer_includes_item,
    .offer_excludes .offer_excludes_container .offer_excludes_item
  ) {
  font-size: var(--font-small);
  padding: 0.5em 0;
}

/* this is now form request,  that is right side container */

.page_single_section .container .wrapper .form_request {
  flex: 0.35;
  position: sticky;
  position: -webkit-sticky;
  top: 5em;
  left: 0;
}

.page_single_section .container .wrapper .form_request .box {
  padding: 1.5em;
  background: var(--primary-color);
  margin-bottom: 1.5em;
  border-radius: 4px;
}

.page_single_section .container .wrapper .form_request .box:last-child {
  margin-bottom: 0;
}

.page_single_section .container .wrapper .form_request .box .title {
  font-size: clamp(1.25em, 3vw, 1.5em);
  font-weight: var(--fw7);
  padding-bottom: 0.25em;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 0.75em;
  color: var(--orange-color);
}

.page_single_section .container .wrapper .form_request .box .text {
  font-size: var(--font-small);
  padding: 1em 0;
  opacity: 0.9;
}

.page_single_section .container .wrapper .form_request .box .shift {
  font-size: clamp(1.125em, 3vw, 1.25em);
  display: flex;
  align-items: center;
  text-transform: uppercase;
  font-weight: var(--fw6);
  gap: 0.25em;
}
.page_single_section .container .wrapper .form_request .box .shift span {
  display: flex;
  align-items: center;
  justify-content: center;
}

.page_single_section .container .wrapper .form_request .box .text.root {
  margin-top: 1em;
  display: flex;
  align-items: center;
  gap: 0.5em;
}

.page_single_section
  .container
  .wrapper
  :where(.request_callback, .get_email, .full_details)
  .text {
  display: flex;
  flex-direction: column;
  gap: 1em;
  justify-content: center;
  align-items: start;
}

.page_single_section
  .container
  .wrapper
  :where(.request_callback, .get_email, .full_details)
  .text {
  padding-top: 0 !important;
}

.page_single_section
  .container
  .wrapper
  :where(.request_callback, .get_email, .full_details)
  .text
  :where(.input_request_number, .input_request_email, .input_place) {
  all: unset;
  box-sizing: border-box;
  border-bottom: 2px solid var(--border-color);
  padding: 0.75em 1em;
  width: 100%;
  transition: all 0.2s ease-out;
}

.page_single_section
  .container
  .wrapper
  :where(.request_callback, .get_email, .full_details)
  .text
  :where(.input_request_number, .input_request_email, .input_place):focus {
  border-bottom: 2px solid var(--orange-color);
}

.page_single_section
  .container
  .wrapper
  :where(.request_callback, .get_email, .full_details)
  .text
  .callback_btn {
  all: unset;
  border-radius: 4px;
  background: var(--secondary-color);
  padding: 0.75em 2em;
  padding-left: 1.5em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  margin-top: 1em;
  border: 1px solid var(--border-color);
  text-transform: uppercase;
  font-weight: var(--fw6);
  cursor: pointer;
  /* color: var(--orange-color); */
  transition: all 0.3s ease-out;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.page_single_section
  .container
  .wrapper
  :where(.request_callback, .get_email, .full_details)
  .text
  .callback_btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.page_single_section
  .container
  .wrapper
  :where(.request_callback, .get_email, .full_details)
  .text
  .callback_btn:active {
  transform: translateY(1px); /* Pressed button effect */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  color: var(--orange-color);
}

.page_single_section
  .container
  .wrapper
  :where(.request_callback, .get_email, .full_details)
  .text
  .callback_btn
  span {
  display: flex;
  align-items: center;
}

.page_single_section .container .wrapper .departureDateLabel {
  padding: 1em 1em 0 1em;
  margin-bottom: -1em;
  opacity: 0.4;
}

.page_single_section
  .container
  .wrapper
  .form_request
  .box.booking_contact
  .booking_text {
  display: flex;
  align-items: center;
  gap: 0.5em;
  border-bottom: 1px solid var(--border-color);
}
.page_single_section
  .container
  .wrapper
  .form_request
  .box.booking_contact
  .booking_text:last-child {
  border: none;
}

.page_single_section
  .container
  .wrapper
  .form_request
  .box.booking_contact
  .booking_text
  span {
  display: flex;
  align-items: center;
}
.page_single_section .container .wrapper .form_request .box span b {
  margin-right: 0.25em;
}

/* ================================ */
/*                                  */
/*    about us or all page          */
/*                                  */
/* ================================ */

.context_section {
  padding: 0 2em;
}

.context_section .container .context_all {
  padding: 2em 0;
}

.context_section .container .context_all .context_title {
  font-size: clamp(1.75em, 3vw, 2.25em);
  font-weight: var(--fw7);
  padding-bottom: 0.25em;
}

.context_section .container .context_all .context_title.most_imp_title {
  padding: 3em 0;
  font-weight: var(--fw8);
  font-size: clamp(2em, 6vw, 3em);
}

.context_section .container .context_all .context_text {
  font-size: var(--font-small);
  font-weight: normal;
  line-height: 1.4;
  padding-bottom: 2em;
}

.context_section .container .context_all .context_text:last-child {
  padding-bottom: 0;
}

.context_section .container .context_all .context_text b {
  font-weight: var(--fw7);
  margin-right: 0.25em;
}

.context_section .container .context_all .context_text li {
  padding-bottom: 0.25em;
  line-height: 1.4;
}

.leaveMessage .full_details {
  margin-top: 2em;
}

.leaveMessage .full_details .text {
  display: flex;
  flex-direction: column;
  gap: 1em;
  justify-content: center;
  align-items: start;
}

.leaveMessage .full_details .text {
  padding-top: 0 !important;
}

.leaveMessage
  .full_details
  .text
  :where(.input_request_number, .input_request_email, .input_place) {
  all: unset;
  box-sizing: border-box;
  border-bottom: 2px solid var(--border-color);
  padding: 0.75em 1em;
  width: 100%;
  transition: all 0.2s ease-out;
}

.leaveMessage
  .full_details
  .text
  :where(.input_request_number, .input_request_email, .input_place):focus {
  border-bottom: 2px solid var(--orange-color);
}

.leaveMessage .full_details .text .callback_btn {
  all: unset;
  border-radius: 4px;
  background: var(--secondary-color);
  padding: 0.75em 2em;
  padding-left: 1.5em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  margin-top: 1em;
  border: 1px solid var(--border-color);
  text-transform: uppercase;
  font-weight: var(--fw6);
  cursor: pointer;
  /* color: var(--orange-color); */
  transition: all 0.3s ease-out;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.leaveMessage .full_details .text .callback_btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.leaveMessage .full_details .text .callback_btn:active {
  transform: translateY(1px); /* Pressed button effect */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  color: var(--orange-color);
}

.leaveMessage .full_details .text .callback_btn span {
  display: flex;
  align-items: center;
}

@media screen and (max-width: 967px) {
  .navbar_section .navigation .menu {
    display: flex;
  }

  .navbar_section .navigation h1.title {
    display: none;
  }
  .navbar_section .nav_list {
    display: none;
  }

  .navbar_section .navigation .search_box {
    width: 70%;
  }
  .navbar_section .navigation .search_box form {
    min-width: 100px;
  }

  .wrapper,
  .wrap {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
  }

  .topic,
  .output_result {
    position: relative;
    top: 0;
  }

  .sub_nav_list {
    max-height: 0;
  }

  .nav_item.active .sub_nav_list {
    max-height: 500px;
  }

  .right_email_nav_item {
    display: none;
  }
  .parallex .search_box form {
    width: 80%;
  }

  .parallex .search_box .search_input {
    padding: 0.75em 1.5em;
    padding-left: 3.5em;
  }
  .list_navbar_section .container .navigation .nav .nav_list .sub_nav_list {
    background: transparent;
  }
  .list_navbar_section
    .container
    .navigation
    .nav
    .nav_list
    .nav_item.multi::after {
    display: none;
  }
}

/* same same but different */
@media screen and (max-width: 967px) {
  .list_navbar_section .container .navigation .nav .nav_list .nav_item {
    padding: 1em;
    display: block;
    height: auto;
  }
  .list_navbar_section_for_mobile {
    position: fixed;
    top: 0;
    padding-top: 4em;
    right: 0;
    height: 100%;
    overflow: auto;
    z-index: 1000;
    width: 0;
    transition: width 0.3s ease;
  }

  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 999;
  }
  .list_navbar_section_for_mobile.active {
    width: 100%;
  }

  .overlay.active {
    display: block;
  }

  .list_navbar_section_for_mobile.active {
    width: 300px;
  }
  .list_navbar_section .container .navigation .nav .nav_list {
    flex-direction: column;
    justify-content: start;
    align-items: flex-start;
    border: none;
    padding: 1em;
    margin-top: 1em;
  }

  .list_navbar_section .container .navigation .nav .nav_list .nav_item {
    border-bottom: 1px solid var(--border-color);
    width: 100%;
    text-align: left;
  }

  .list_navbar_section .container .navigation .nav .nav_list .sub_nav_list {
    /* border: 1px solid red; */
    position: relative;
    top: 0;
    border-radius: 0;
    transition: all 0.3s ease-in-out;
  }

  .list_navbar_section .container .navigation .nav .nav_list .sub_nav_list li {
    padding: 0.75em 1em;
    height: 100%;
    opacity: 0.9;
  }

  .list_navbar_section
    .container
    .navigation
    .nav
    .nav_list
    .sub_nav_list
    li:first-child {
    padding-top: 1em;
  }

  .list_navbar_section .container .navigation .nav .nav_list .sub_nav_list li {
    display: flex;
    align-items: center;
  }
  .list_navbar_section
    .container
    .navigation
    .nav
    .nav_list
    .sub_nav_list
    li:hover {
    color: var(--orange-color);
  }
}

@media screen and (max-width: 567px) {
  .navbar_section .navigation .top_nav_list .nav_item a span {
    font-size: var(--font-smaller);
  }
  .navbar_section .navigation .menu {
    width: 40px;
  }
  .parallex .search_box form {
    width: 90%;
  }
  .parallex .search_box .search_input {
    padding: 0.75em 1em;
    padding-left: 3.25em;
  }
  .parallex .search_box form .icon {
    left: 1em;
  }
  .offer_section .container .wrapper .offer_list {
    flex-wrap: wrap;
    padding: 0 1em;
  }
  .testimonials_section .container .wrapper .testimonials_list .description {
    width: 95%;
  }

  .footer_section .logo {
    width: 30%;
    aspect-ratio: 3/2;
    float: right;
  }

  .footer_section ul {
    padding: 0 1em;
  }
}



/* further modification for the upate of list item, in the navbar */
@media screen and (min-width: 967px) {
  .center_email_nav_item {
    display: none;
  }
  .list_navbar_section .container .nav .nav_list li a {
    /* display: block; */
    align-items: center;
    padding: 0;
    padding-top: 0.9em;
    width: 100%;
    height: 100%;
    cursor: pointer;
  }

  .list_navbar_section .container .nav .nav_list li.nav_item {
    padding: 0 !important;
    cursor: pointer;
  }
}

.list_navbar_section .container .nav .nav_list li a {
  width: 100%;
  height: 100%;
}

.list_navbar_section .container .nav .nav_list li {
  cursor: pointer;
}


/* further update of list of navbar */