@charset "UTF-8";
:root {
  --primary: #FEC04A;
  --primaryRGB: 254,192,74;
  --primary-light: #f5f5f5;
  --primary-light-more: #D7F5DC;
  --bg-footer: #161C28;
  --text-body: #555555;
  --text-title: #000000;
  --text-grey: #8A938E;
  --text-grey-more: #5F5F5F;
  --white: #ffffff;
  --black: #05400B;
  --bg-button: #F4F8F7;
  --bg-body: #ffffff;
  --input-border: #777777;
  --font-body: "Manrope", sans-serif;
  --timeTrans: 0.2s;
  --eio: ease-in-out; }

@media (min-width: 992px) {
  font-size: 64px; }
@media (max-width: 767.98px) {
  font-size: 32px; }
@media (min-width: 768px) and (max-width: 991.98px) {
  font-size: 40px; }
@media (min-width: 768px) and (max-width: 1199.98px) {
  font-size: 44px; }
@font-face {
  font-family: "bodoni";
  src: url("../fonts/Bodoni-72-OS.woff") format("woff2"), url("../fonts/Bodoni-72-OS.woff") format("woff");
  font-style: normal;
  font-display: swap;
  /* tránh flash khi font chưa load */ }
body {
  font-family: var(--font-body);
  color: var(--text-body); }

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  color: var(--text-title); }

header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9;
  width: 100%; }
  @media (max-width: 767.98px) {
    header .navbar-brand img {
      height: 34px; } }
  header .navbar-toggler {
    position: relative;
    width: 32px;
    height: 32px;
    padding: 0;
    border: none !important;
    box-shadow: none !important;
    z-index: 99; }
    header .navbar-toggler[aria-expanded="true"] span {
      background-color: var(--black); }
    header .navbar-toggler span {
      display: block;
      position: absolute;
      width: 16px;
      height: 1.3px;
      background-color: var(--white);
      border-radius: 1px;
      left: 7px;
      transition: all 0.2s ease-in-out; }
      header .navbar-toggler span:nth-child(1) {
        top: 9px; }
      header .navbar-toggler span:nth-child(2) {
        top: 15px; }
      header .navbar-toggler span:nth-child(3) {
        top: 21px; }

@media (min-width: 992px) {
  .navbar-nav {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border-radius: 100px;
    padding: 5px; }
    .navbar-nav .nav-link {
      display: block;
      color: var(--white);
      border-radius: 100px;
      white-space: nowrap; }
      .navbar-nav .nav-link.active {
        font-weight: 700;
        background-color: var(--bg-button); } }
#mainmenu.navbar-scrolled {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%); }

.sticky-menu .lang-toggle, .sticky-menu .navbar-brand {
  opacity: 0 !important; }

@media (min-width: 1200px) {
  .navbar-expand-xl .navbar-nav .nav-link {
    padding-right: 20px;
    padding-left: 20px; } }
.lang-toggle {
  display: inline-flex;
  align-items: center;
  background-color: var(--bg-button);
  border-radius: 999px;
  padding: 5px;
  gap: 3px; }

.lang-btn {
  background: transparent;
  border: none;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  opacity: 0.35;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
  transition: opacity var(--time-trans) var(--eio), box-shadow var(--time-trans) var(--eio); }

.lang-btn img {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  object-fit: cover;
  display: block; }

.lang-btn.active,
.lang-btn.lang-active {
  opacity: 1; }

.lang-divider {
  width: 1px;
  height: 20px;
  background: #05400B;
  border-radius: 2px;
  flex-shrink: 0; }

/* HERO */
#hero {
  position: relative;
  width: 100%;
  height: 50svh;
  min-height: 600px;
  display: flex;
  flex-direction: column; }
  @media (max-width: 767.98px) {
    #hero {
      height: 50svh;
      min-height: 400px; } }

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0; }

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center; }

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.1) 60%, transparent 100%); }

.hero-container {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px; }
  @media (max-width: 767.98px) {
    .hero-container {
      padding-bottom: 16px; } }

.hero-content-wrap {
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between; }

.hero-content {
  max-width: 560px; }

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(var(--primaryRGB), 0.25);
  backdrop-filter: blur(6px);
  border-radius: 999px;
  padding: 6px 16px;
  color: var(--primary);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px; }

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary);
  display: inline-block; }

.hero-slider {
  max-width: 320px;
  color: var(--white); }

.featuresSwiper.swiper {
  padding-bottom: 32px; }
  .featuresSwiper.swiper .swiper-pagination-bullet {
    width: 40px;
    background-color: #a3a3a3;
    border-radius: 1px;
    height: 2px;
    opacity: 1; }
    .featuresSwiper.swiper .swiper-pagination-bullet.swiper-pagination-bullet-active {
      background-color: var(--white); }

.feature-card {
  display: flex;
  padding: 20px;
  position: relative;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(50px);
  -webkit-backdrop-filter: blur(50px); }
  .feature-card:before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    padding: 1px;
    background: linear-gradient(200deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none; }

.feature-number {
  font-size: 50px;
  font-weight: 400;
  width: 120px;
  line-height: 72px; }

.feature-title {
  color: var(--white);
  font-size: 20px;
  font-weight: 800; }

.feature-description {
  font-size: 12px;
  margin-bottom: 0; }

/* Title */
.hero-title {
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 18px;
  color: var(--white);
  font-family: "Cormorant Infant", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: italic; }
  .hero-title img {
    width: 740px;
    height: 140px; }
    @media (min-width: 768px) and (max-width: 991.98px) {
      .hero-title img {
        width: 600px;
        height: 116px; } }
    @media (max-width: 767.98px) {
      .hero-title img {
        width: 60%;
        height: auto; } }

.hero-title-brand {
  color: #C6F135; }

/* yellow-green */
.hero-title-white {
  color: #ffffff; }

.hero-italic {
  font-style: italic;
  font-weight: 400;
  color: #ffffff;
  font-size: 0.9em; }

.hero-subtitle-regular {
  color: #ffffff;
  font-weight: 600;
  font-style: normal; }

/* Desc */
.hero-desc {
  color: var(--white);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 32px; }
  @media (max-width: 767.98px) {
    .hero-desc {
      font-size: 8px; } }

/* Buttons */
.hero-btn-primary {
  background: var(--primary);
  color: var(--black);
  font-weight: 600;
  border-radius: 999px;
  padding: 6px 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background var(--time-trans) var(--eio); }

.hero-btn-primary:hover {
  background: var(--white);
  color: var(--black);
  border: 1px solid var(--primary); }

.hero-btn-outline {
  color: var(--white);
  border-radius: 999px;
  padding: 6px 20px;
  font-weight: 600;
  transition: all var(--time-trans) var(--eio);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border-radius: 20px; }
  .hero-btn-outline::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1px;
    /* Border width */
    background: linear-gradient(194deg, rgba(255, 255, 255, 0) 25%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 70%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none; }

.hero-btn-outline:hover {
  background: #fff;
  color: var(--black); }

.section-badge {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 8px 14px;
  background-color: var(--white);
  border: 1px solid var(--primary);
  color: var(--black);
  border-radius: 30px;
  margin-bottom: 30px; }
  .section-badge img {
    width: 16px;
    height: 16px; }

.statistics-section {
  padding: 80px 0; }

.stat-item {
  text-align: center;
  padding: 20px;
  transition: transform 0.3s ease; }
  .stat-item:hover {
    transform: translateY(-5px); }
    .stat-item:hover .stat-number {
      color: #00CCFF; }

.stat-number {
  font-weight: 400;
  line-height: 1;
  font-size: 70px;
  font-style: normal;
  margin-bottom: 8px;
  color: var(--text-title);
  transition: color 0.3s ease;
  font-family: "Cormorant Infant", serif; }
  @media (max-width: 991px) {
    .stat-number {
      font-size: 64px; } }
  @media (max-width: 767px) {
    .stat-number {
      font-size: 56px; } }

.stat-description {
  font-size: 12px;
  color: var(--text-grey);
  line-height: 1.6;
  margin: 0;
  max-width: 280px;
  margin-left: auto;
  margin-right: auto; }
  @media (max-width: 767px) {
    .stat-description {
      font-size: 14px;
      max-width: 100%; } }

.title-section {
  font-size: 48px;
  font-weight: 600; }

.desc-section {
  color: var(--text-grey); }

.photo-about {
  width: 100%; }

.content-about {
  position: relative;
  padding: 120px 0; }
  .content-about h3, .content-about p, .content-about a {
    position: relative; }

.plane-about {
  position: absolute;
  top: 80px;
  left: 80px; }

.stat-item {
  position: relative; }
  .stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60%;
    background: rgba(0, 0, 0, 0.1); }
    @media (max-width: 991px) {
      .stat-item:not(:last-child)::after {
        display: none; } }

.clients {
  padding: 40px 0;
  background-color: #F5F5F5; }
  .clients .client-logos {
    margin-bottom: 40px;
    gap: 40px; }
  .clients .client-logo-item img {
    height: 40px; }
    @media (min-width: 1200px) {
      .clients .client-logo-item img {
        height: 30px; } }
  .clients .tagline-thumb img {
    height: 35px; }
  .clients .client-tagline {
    font-size: 30px;
    text-align: center; }
  .clients .tagline-grey {
    color: #8A938E; }

.about-title {
  font-size: 40px;
  font-weight: 800;
  margin-top: 24px;
  padding-left: 16px; }
  .about-title .about-title-highlight {
    position: relative; }
    .about-title .about-title-highlight span {
      z-index: 1;
      position: relative;
      display: inline-block; }
    .about-title .about-title-highlight:before {
      content: "";
      position: absolute;
      background-color: var(--primary);
      border-radius: 16px;
      height: 75px;
      width: 126px;
      z-index: 0;
      left: -16px;
      top: -10px; }
  .about-title .about-title-normal {
    text-indent: 112px;
    display: block; }

.value-title, .why-title {
  font-size: 40px;
  font-weight: 800; }

.about-desc, .value-desc {
  height: 100%;
  font-size: 20px;
  font-weight: 500;
  display: flex;
  align-items: flex-end; }

.about-list {
  padding-right: 56px; }

.about-item {
  margin-bottom: 30px;
  cursor: pointer; }
  .about-item:last-child {
    margin-bottom: 0; }

.about-card-title {
  font-size: 20px;
  font-weight: 500; }

.about-card-desc {
  margin-bottom: 0;
  font-size: 14px;
  color: var(--text-grey); }

.about-num {
  font-size: 80px;
  color: var(--primary);
  width: 100px;
  line-height: 80px; }

.about-card {
  background: var(--white);
  box-shadow: -5px 15px 100px rgba(5, 64, 11, 0.1);
  border-radius: 20px;
  padding: 15px 30px;
  width: calc(100% - 100px);
  box-sizing: border-box;
  border: 1px solid var(--white); }

.slide-card {
  transition: all 0.3s var(--eio); }

.slide-card--active {
  background-color: var(--primary);
  border: 1px solid var(--black);
  box-shadow: -5px 15px 100px rgba(200, 230, 83, 0.7); }
  .slide-card--active .about-card-desc {
    color: var(--black); }

.slide-img {
  border-radius: 20px;
  transition: opacity 0.3s ease-in-out; }
  @media (min-width: 1200px) {
    .slide-img {
      height: 660px; } }

.slide-img--fade {
  opacity: 0; }

.tour {
  padding: 60px 0; }
  .tour .desc-section {
    max-width: 640px; }

.head-section {
  display: flex;
  justify-content: space-between;
  align-items: center; }

.wrap-title-section {
  display: flex;
  align-items: center;
  gap: 36px; }

.tour-card {
  background-color: var(--white);
  border-radius: 8px;
  transition: all 0.3s var(--eio);
  box-sizing: border-box;
  border: 1px solid var(--white); }
  .tour-card:hover {
    background-color: #FFEDCA;
    border: 1px solid var(--primary); }

.tour-card-img img {
  border-radius: 8px; }

.tour-card-body {
  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center; }
  .tour-card-body .btn-primary {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    padding: 10px 20px;
    background-color: var(--primary);
    border: 1px solid var(--primary);
    color: var(--text-title); }

.tour-card-title {
  font-size: 20px;
  font-weight: 500;
  margin: 12px 0;
  color: var(--text-title); }

.tour-card-price {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-title); }

.why-choose-us {
  padding-top: 20px;
  padding-bottom: 80px; }

.why-card {
  background-color: var(--white);
  border: 1px solid #E3E3E3;
  border-radius: 12px;
  transition: all 0.3s var(--eio); }
  .why-card:hover {
    background-color: #FFEDCA;
    border: 1px solid var(--primary);
    box-shadow: -5px -5px 100px rgba(254, 192, 74, 0.2), 5px 5px 100px rgba(254, 192, 74, 0.1); }
  .why-card .photo-why {
    border-radius: 12px;
    width: 100%; }
  .why-card p {
    padding: 32px;
    margin-bottom: 0; }

.head-section {
  margin-bottom: 20px; }

.head-section-center {
  margin: 0 auto;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center; }
  .head-section-center .desc-section {
    max-width: 620px;
    text-align: center; }

.faqs {
  padding: 80px 0;
  background: url("../images/photo-faqs.jpg") no-repeat center center;
  background-size: cover;
  position: relative; }
  .faqs .plane-about {
    position: absolute;
    top: 80px;
    left: 50%; }

.faq-title {
  font-size: 40px;
  font-weight: 800; }

.faq-subtitle {
  font-family: "bodoni";
  font-size: 36px; }

.faq-desc {
  font-size: 20px; }

.faq-accordion {
  max-width: 800px;
  margin: 0 auto; }

.faq-btn {
  padding: 0;
  gap: 16px;
  font-size: 16px;
  color: var(--text-body);
  box-shadow: none !important;
  background: none !important; }

.faq-body {
  color: var(--text-body);
  padding-left: 0;
  padding-right: 0; }

.faq-num {
  width: 56px;
  height: 56px;
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #EDEEF0;
  font-size: 20px; }

.faq-btn:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23FEC04A' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M2 5L8 11L14 5'/%3e%3c/svg%3e"); }

.faq-btn:not(.collapsed) {
  background: none;
  box-shadow: none; }

.faq-item--active:not(:first-of-type) {
  border-top: inset; }

.faq-item {
  background-color: rgba(var(--primaryRGB), 0);
  border: none;
  padding: 28px 40px;
  border-radius: 20px !important; }
  .faq-item .accordion-header {
    padding-bottom: 20px;
    border-bottom: 1px solid var(--black); }

.faq-item--active {
  background-color: #FFEDCA;
  border: 1px solid var(--primary);
  box-shadow: -5px -5px 100px rgba(254, 192, 74, 0.2), 5px 5px 100px rgba(254, 192, 74, 0.1); }
  .faq-item--active .faq-num {
    background-color: var(--white); }
  .faq-item--active .faq-btn {
    font-weight: 700; }
  .faq-item--active .accordion-header {
    border: none; }
  .faq-item--active:not(:first-of-type) {
    border-top: 1px solid var(--primary); }

.testimonials {
  padding: 80px 0; }

.testimonials-grid {
  column-count: 3;
  column-gap: 24px; }
  @media (max-width: 991px) {
    .testimonials-grid {
      column-count: 2;
      column-gap: 12px; } }
  @media (max-width: 767px) {
    .testimonials-grid {
      column-count: 1; } }

.testimonial-card {
  background: var(--white);
  border-radius: 12px;
  padding: 24px;
  border: 1px solid #E8E8E8;
  transition: all 0.3s ease;
  width: 100%;
  margin-bottom: 24px;
  break-inside: avoid;
  page-break-inside: avoid;
  -webkit-column-break-inside: avoid;
  display: inline-block; }
  @media (max-width: 991px) {
    .testimonial-card {
      width: calc(100% - 12px); } }
  @media (max-width: 767px) {
    .testimonial-card {
      width: 100%; } }

.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #EEF1FF;
  padding: 8px 16px;
  border-radius: 20px;
  width: fit-content; }
  .rating-badge svg {
    width: 16px;
    height: 16px; }
  .rating-badge span {
    font-size: 12px;
    font-weight: 600; }

.testimonial-text {
  font-size: 18px;
  line-height: 1.6;
  margin: 16px 0;
  flex: 1; }

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto; }

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0; }

.author-info {
  display: flex;
  flex-direction: column;
  gap: 2px; }

.author-name {
  font-size: 16px;
  font-weight: 600;
  color: #000; }

.author-meta {
  font-size: 14px;
  color: #999; }

.cta {
  margin-bottom: 20px; }

.cta-wrap {
  background: var(--primary);
  border-radius: 24px;
  padding: 36px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 40px;
  background: url("../images/bg-cta.jpg") no-repeat center center;
  background-size: cover; }

/* Content */
.cta-content {
  position: relative;
  z-index: 6;
  max-width: 820px;
  margin: 0 auto; }
  .cta-content .hero-btn-primary {
    height: 48px;
    font-size: 20px; }

.cta-title {
  font-size: 48px;
  color: var(--white);
  margin-bottom: 12px; }

.cta-desc {
  color: var(--white);
  font-size: 22px;
  margin-bottom: 28px; }

/* Form */
.cta-form {
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px; }

.cta-input-wrap {
  background: var(--white);
  border-radius: 999px;
  padding: 15px 20px;
  flex: 1;
  max-width: 420px;
  min-width: 260px; }

.cta-input-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0; }

.cta-input {
  border: none;
  outline: none;
  background: transparent;
  width: 100%;
  color: var(--text-body); }

.cta-input::placeholder {
  color: var(--text-grey); }

.cta-btn {
  background: var(--white);
  color: var(--text-title);
  border: 2px solid var(--text-title);
  border-radius: 999px;
  padding: 12px 48px;
  font-weight: 700;
  white-space: nowrap;
  transition: all var(--time-trans) var(--eio); }

.cta-btn:hover {
  background: var(--text-title);
  color: var(--white); }

.footer {
  background: url("../images/bg-footer.png") no-repeat;
  padding: 60px 0 10px;
  background-size: cover; }

.footer-top {
  padding-bottom: 48px; }

.footer-logo img {
  height: 66px;
  width: 247px; }

.footer-contact {
  color: var(--text-body);
  line-height: 1.8; }

.footer-contact strong {
  color: var(--text-title); }

.footer-heading {
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  color: var(--text-title);
  margin-bottom: 20px; }

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px; }

.footer-links a {
  color: var(--text-grey);
  text-decoration: none;
  transition: color var(--time-trans) var(--eio); }

.footer-links a:hover {
  color: var(--primary); }

/* Bottom */
.footer-bottom {
  padding: 20px 0; }

.footer-copy {
  margin: 0; }

.footer-social-link img {
  width: 26px;
  height: 26px;
  transition: opacity var(--time-trans) var(--eio); }

.footer-social-link:hover img {
  opacity: 0.6; }

@media (min-width: 992px) and (max-width: 1199.98px) {
  .navbar .container {
    position: relative; }

  .navbar-collapse {
    width: 200px;
    position: absolute;
    border-radius: 20px;
    right: 0;
    top: 70px; }

  .navbar-nav {
    border-radius: 20px;
    padding: 24px; }
    .navbar-nav .nav-link {
      padding: 8px 24px; }

  #mainmenu.navbar-scrolled {
    position: fixed;
    width: 640px;
    display: flex;
    flex-flow: row; } }
@media (max-width: 991.98px) {
  body {
    font-size: 14px; }

  section {
    overflow: hidden; }

  #main-header {
    background-color: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(80px);
    -webkit-backdrop-filter: blur(80px); }

  .btn-register {
    font-size: 12px;
    padding: 12px 24px;
    background-color: var(--primary);
    white-space: nowrap;
    border-radius: 40px;
    margin-top: 20px; }

  .navbar-collapse {
    background: var(--white); }
    .navbar-collapse .navbar-nav {
      background: none;
      backdrop-filter: none;
      -webkit-backdrop-filter: none;
      margin-top: 120px; }
      .navbar-collapse .navbar-nav .nav-link {
        color: var(--text-body);
        font-size: 20px;
        font-weight: 700;
        padding: 8px 24px;
        border-radius: 100px; }

  .sticky-menu .lang-toggle, .sticky-menu .navbar-brand {
    opacity: 1 !important; }

  #mainmenu.navbar-scrolled {
    top: 0; }

  header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030; }
    header .lang-toggle {
      position: fixed;
      top: 20px;
      left: 28px; }
    header .navbar-nav {
      margin-top: 128px; }
    header .navbar-toggler {
      z-index: 10; }
      header .navbar-toggler span {
        transition: all var(--timeTrans) var(--eio); }
      header .navbar-toggler[aria-expanded="true"] {
        background-color: rgba(0, 0, 0, 0); }
        header .navbar-toggler[aria-expanded="true"] span {
          background-color: var(--black); }
          header .navbar-toggler[aria-expanded="true"] span:nth-child(1) {
            transform: rotate(-45deg);
            top: 15px;
            width: 24px; }
          header .navbar-toggler[aria-expanded="true"] span:nth-child(2) {
            opacity: 0; }
          header .navbar-toggler[aria-expanded="true"] span:nth-child(3) {
            transform: rotate(45deg);
            top: 15px;
            width: 24px; }
    header .navbar-collapse {
      position: fixed;
      top: 100%;
      left: 0;
      right: 0;
      top: 0;
      height: 100svh !important;
      z-index: 9;
      width: 100%;
      background: var(--white);
      padding: 0;
      opacity: 0;
      transition: opacity var(--timeTrans) var(--eio); }
      header .navbar-collapse.show {
        opacity: 1; }
    header .nav-item {
      display: flex;
      justify-content: center; }
      header .nav-item .btn-primary {
        margin-top: 54px;
        width: 112px;
        height: 45px; }
        header .nav-item .btn-primary:before {
          display: none; }
        header .nav-item .btn-primary span {
          font-size: 12px;
          margin-right: 4px; }
        header .nav-item .btn-primary img {
          width: 13px; }

  .hero-badge {
    font-size: 8px;
    margin-bottom: 10px; }

  .hero-title {
    margin-bottom: 10px; }

  .hero-desc {
    margin-bottom: 20px; }

  .hero-btn-primary, .hero-btn-outline {
    font-size: 10px; }

  .hero-bottom {
    padding: 8px 0; }

  .hero-content {
    padding-right: 70px; }

  .title-section {
    font-size: 44px; }

  .why-choose-us .wrap-title-section, .testimonials .wrap-title-section {
    position: relative;
    padding: 20px; }
    .why-choose-us .wrap-title-section img, .testimonials .wrap-title-section img {
      position: absolute; }
      .why-choose-us .wrap-title-section img.plane-1, .testimonials .wrap-title-section img.plane-1 {
        right: 100%; }
      .why-choose-us .wrap-title-section img.plane-2, .testimonials .wrap-title-section img.plane-2 {
        left: 100%; }

  .tour .wrap-title-section {
    position: relative; }
    .tour .wrap-title-section .plane-2 {
      position: absolute;
      top: 0px;
      right: -170px;
      z-index: -1; }

  .tour .desc-section {
    padding-right: 20px; }

  .head-section-r {
    width: 170px;
    flex-shrink: 0;
    margin-top: auto;
    margin-bottom: 38px; }

  .testi-card {
    padding: 10px 5px; }

  .testi-avatar {
    width: 50px;
    height: 50px; }

  .testi-name {
    font-size: 16px; }

  .testi-stars img {
    width: 16px;
    height: 16px; }

  .testi-location {
    font-size: 14px; }

  .testi-review {
    font-size: 10px; }

  .cta-wrap {
    padding: 20px;
    border-radius: 6px; }

  .cta-title {
    font-size: 16px; }

  .cta-desc {
    font-size: 10px;
    margin-bottom: 12px; }

  .cta-btn {
    font-size: 10px;
    padding: 10px 15px;
    border-width: 0.5px; }

  .cta-input-wrap {
    min-width: auto;
    padding: 0 20px; }

  .cta-input {
    font-size: 10px;
    padding: 10px 0 11px 0; }

  .cta-circle {
    width: 174px;
    height: 174px; }

  .cta-circle--1 {
    left: -145px; }

  .cta-circle--2 {
    left: -62px; }

  .cta-circle--3 {
    left: 125px;
    background: linear-gradient(270deg, #C5E452 10.7%, #F9FFE5 103.87%); }

  .cta-circle--4 {
    left: 20px; }

  .testimonials-swiper .swiper-pagination {
    padding: 4px 0 16px 0; }

  .testimonials-pagination .swiper-pagination-bullet {
    height: 3px; }

  .footer {
    padding: 20px 0 10px; }

  .footer-top {
    padding-bottom: 0; }

  .footer-links {
    margin-bottom: 16px; }

  .footer-bottom {
    flex-flow: column;
    align-items: flex-start !important; }

  .footer-copy {
    order: 2; }

  .footer-socials {
    order: 1; } }
@media (max-width: 767.98px) {
  .hero-content {
    padding-right: 0;
    max-width: 200px; }

  .hero-title {
    font-size: 30px; }

  .hero-desc {
    font-size: 8px; }

  .hero-slider {
    position: absolute;
    max-width: 160px;
    right: 12px; }
    .hero-slider .feature-number {
      font-size: 20px;
      width: 60px;
      line-height: 38px; }
    .hero-slider .feature-title {
      font-size: 10px; }
    .hero-slider .feature-description {
      font-size: 6px; }

  .featuresSwiper.swiper .swiper-pagination-bullet {
    width: 32px; }

  .featuresSwiper.swiper {
    padding-bottom: 4px; }

  .stat-item {
    padding: 0; }

  .stat-number {
    font-size: 32px; }

  .stat-description {
    font-size: 10px; }

  .content-about {
    padding: 20px 0; }

  .title-section {
    font-size: 24px; }

  .desc-section {
    font-size: 10px; }

  .hero-btn-primary {
    font-size: 10px; }
    .hero-btn-primary img {
      width: 14px; }

  .head-section {
    display: flex;
    flex-flow: column;
    align-items: flex-start; }

  .plane-about {
    top: 10px;
    left: 130px;
    width: 200px; }

  .tour {
    padding: 20px 0; }

  .tour .wrap-title-section .plane-2 {
    top: 8px;
    right: 10px;
    width: 136px; }

  .tour .desc-section {
    padding-right: 0; }

  .head-section-r {
    margin-bottom: 0; }

  .tour-card-body {
    padding: 10px; }

  .tour-card-title {
    font-size: 12px;
    margin: 4px 0; }

  .tour-card-price {
    font-size: 12px; }

  .tour-card-body .btn-primary {
    font-size: 10px;
    padding: 5px 10px;
    white-space: nowrap; }

  .why-choose-us {
    padding-bottom: 20px; }

  .why-choose-us .wrap-title-section img, .testimonials .wrap-title-section img {
    width: 136px; }

  .why-card {
    margin-bottom: 12px; }
    .why-card p {
      font-size: 12px;
      padding: 20px; }

  .faqs {
    padding: 20px 0; }
    .faqs .plane-about {
      top: 20px; }

  .faq-btn {
    font-size: 12px; }

  .faq-body {
    font-size: 10px; }

  .faq-item {
    border-radius: 8px !important;
    padding: 10px; }
    .faq-item .accordion-header {
      padding-bottom: 8px; }

  .faq-btn:not(.collapsed) {
    font-size: 14px; }

  .testimonials {
    padding: 20px 0; }
    .testimonials .section-content {
      margin-right: -12px; }

  .testimonials-grid {
    display: flex;
    overflow: auto;
    column-gap: 12px; }

  .testimonial-card {
    flex: 0 0 80%;
    min-width: 80%;
    max-width: 80%; }
    .testimonial-card:last-child {
      margin-right: 12px; }

  .testimonial-card {
    display: flex;
    padding: 10px;
    flex-flow: column;
    justify-content: space-between; }

  .testimonial-text, .author-meta {
    font-size: 10px; }

  .author-avatar {
    width: 32px;
    height: 32px; }

  .author-name {
    font-size: 14px;
    font-weight: 400; }

  .cta-title {
    font-size: 14px; }

  .cta-desc {
    font-size: 8px; }

  .cta-content .hero-btn-primary {
    height: 28px;
    font-size: 8px;
    padding: 5px 10px; }

  .cta-input {
    padding: 6px 0 7px 0; }

  .cta-form {
    gap: 8px; }

  .cta-input-wrap {
    padding: 0 12px; }

  .footer-heading {
    font-size: 16px;
    text-transform: capitalize;
    margin-bottom: 8px; }

  .footer-links {
    gap: 8px; }
    .footer-links a {
      font-size: 12px; }

  .feature-card {
    padding: 12px;
    margin-bottom: 12px; } }
