/* ================================================================
   TRIPFY AFRICA — UI SYSTEM  |  https://tripfy.africa
   Light + Dark Theme  |  Primary: #2696be  |  Neutral: #ffffff / #2c2c2c
   ================================================================ */

/* ── 1. DESIGN TOKENS ─────────────────────────────────────────── */
:root {
  /* Brand — Primary #2696be | Neutral #ffffff / #2c2c2c */
  --tf-primary:          #2696be;
  --tf-primary-dark:     #2696be;
  --tf-primary-darker:   #2696be;
  --tf-primary-light:    rgba(38, 150, 190, 0.12);
  --tf-primary-mid:      rgba(38, 150, 190, 0.28);
  --tf-primary-glow:     rgba(38, 150, 190, 0.18);
  --tf-accent:           #2696be;

  /* Light theme surfaces */
  --tf-bg:               #ffffff;
  --tf-bg-2:             #ffffff;
  --tf-bg-3:             #ffffff;
  --tf-surface:          #ffffff;
  --tf-surface-2:        #ffffff;

  /* Light theme text */
  --tf-text:             #2c2c2c;
  --tf-text-2:           #2c2c2c;
  --tf-text-3:           rgba(44, 44, 44, 0.75);
  --tf-text-muted:       rgba(44, 44, 44, 0.55);
  
  /* Light theme links */
  --tf-link-color:       var(--tf-primary);

  /* Light theme borders */
  --tf-border:           rgba(44, 44, 44, 0.12);
  --tf-border-2:         rgba(44, 44, 44, 0.22);

  /* Semantic — only used for status indicators, not general UI */
  --tf-success:          #2696be;
  --tf-success-bg:       rgba(38, 150, 190, 0.12);
  --tf-success-border:   rgba(38, 150, 190, 0.22);
  --tf-warning:          #2c2c2c;
  --tf-warning-bg:       rgba(44, 44, 44, 0.08);
  --tf-warning-border:   rgba(44, 44, 44, 0.16);
  --tf-danger:           #2c2c2c;
  --tf-danger-bg:        rgba(44, 44, 44, 0.08);
  --tf-danger-border:    rgba(44, 44, 44, 0.16);
  --tf-star:             #2696be;
  --tf-info:             #2696be;
  --tf-info-bg:          rgba(38, 150, 190, 0.12);

  /* Shadows */
  --tf-shadow-xs:   0 1px 2px rgba(0,0,0,.05);
  --tf-shadow-sm:   0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.05);
  --tf-shadow:      0 4px 16px rgba(38,150,190,.12);
  --tf-shadow-md:   0 6px 24px rgba(0,0,0,.09);
  --tf-shadow-lg:   0 12px 40px rgba(0,0,0,.12);
  --tf-shadow-hover:0 8px 32px rgba(38,150,190,.22);

  /* Shape */
  --tf-radius-sm:   6px;
  --tf-radius:      10px;
  --tf-radius-lg:   16px;
  --tf-radius-xl:   24px;
  --tf-radius-pill: 999px;

  /* Motion */
  --tf-ease:        cubic-bezier(0.4, 0, 0.2, 1);
  --tf-ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --tf-t-fast:      0.15s;
  --tf-t:           0.22s;
  --tf-t-slow:      0.38s;

  /* Typography */
  --tf-font:        'Nunito', 'Poppins', system-ui, sans-serif;
  --tf-font-display:'Poppins', 'Nunito', sans-serif;

  /* Legacy theme variables (used by main.css/custom.css) */
  --body: var(--tf-bg);
  --black: var(--tf-text);
  --white: var(--tf-surface);
  --theme-color: var(--tf-primary);
  --theme-color-2: var(--tf-primary-dark);
  --header: var(--tf-text);
  --base: var(--tf-primary);
  --text: var(--tf-text);
  --border: var(--tf-border);
  --ratting: var(--tf-star);
  --bg: var(--tf-bg);
  --box-shadow: 0 4px 25px rgba(0,0,0,.06);
  --bgLight: var(--tf-surface-2);
  --heading-color: var(--tf-text);
  --primary-color: var(--tf-primary);
  --primary-color-opacity-low: rgba(38,150,190,.08);
  --transition: var(--tf-t);
  --grayish-blue: var(--tf-text-2);
  --border-color1: var(--tf-border);
  color-scheme: light;
}

/* ── 2. DARK THEME TOKENS ─────────────────────────────────────── */
/* Activates ONLY when user explicitly switches — default is always light */

html[data-theme="dark"],
html[data-theme="dark"] body,
html[data-hs-appearance="dark"],
html[data-hs-appearance="dark"] body {
  --tf-bg:              #2c2c2c;
  --tf-bg-2:            #2c2c2c;
  --tf-bg-3:            #2c2c2c;
  --tf-surface:         #2c2c2c;
  --tf-surface-2:       #2c2c2c;

  --tf-text:            #ffffff;
  --tf-text-2:          #ffffff;
  --tf-text-3:          rgba(255, 255, 255, 0.78);
  --tf-text-muted:      rgba(255, 255, 255, 0.58);
  
  /* Dark theme links use Accent for contrast against #2c2c2c */
  --tf-link-color:      var(--tf-primary);

  --tf-border:          rgba(255, 255, 255, 0.14);
  --tf-border-2:        rgba(255, 255, 255, 0.24);

  --tf-primary-light:   rgba(38, 150, 190, 0.18);
  --tf-primary-mid:     rgba(38, 150, 190, 0.28);
  --tf-primary-glow:    rgba(38, 150, 190, 0.20);

  --tf-success-bg:      rgba(38, 150, 190, 0.18);
  --tf-success-border:  rgba(38, 150, 190, 0.28);
  --tf-warning-bg:      rgba(255, 255, 255, 0.08);
  --tf-warning-border:  rgba(255, 255, 255, 0.18);
  --tf-danger-bg:       rgba(255, 255, 255, 0.08);
  --tf-danger-border:   rgba(255, 255, 255, 0.18);
  --tf-info-bg:         rgba(38, 150, 190, 0.18);

  --tf-shadow:          0 4px 20px rgba(0,0,0,.5);
  --tf-shadow-md:       0 6px 30px rgba(0,0,0,.6);
  --tf-shadow-hover:    0 8px 32px rgba(2, 208, 227,.15);

  /* Legacy */
  --body: var(--tf-bg);
  --black: var(--tf-text);
  --white: var(--tf-surface);
  --theme-color: var(--tf-primary);
  --theme-color-2: var(--tf-primary-dark);
  --header: var(--tf-text);
  --base: var(--tf-primary);
  --text: var(--tf-text);
  --border: var(--tf-border);
  --ratting: var(--tf-star);
  --bg: var(--tf-bg);
  --box-shadow: 0 6px 30px rgba(0,0,0,.6);
  --bgLight: var(--tf-surface-2);
  --heading-color: var(--tf-text);
  --primary-color: var(--tf-primary);
  --primary-color-opacity-low: rgba(38,150,190,.12);
  --transition: var(--tf-t);
  --grayish-blue: var(--tf-text-2);
  --border-color1: var(--tf-border);
  color-scheme: dark;
}

/* Dark is only activated by explicit user choice (data-theme="dark" or data-hs-appearance="dark") */

/* ── 3. RESET & BASE ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--tf-font);
  color: var(--tf-text);
  background: var(--tf-bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  transition: background var(--tf-t-slow) var(--tf-ease),
              color      var(--tf-t-slow) var(--tf-ease);
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--tf-link-color); transition: color var(--tf-t) var(--tf-ease); }
a:hover { color: var(--tf-primary-dark); }

/* ── 4. ANIMATIONS ────────────────────────────────────────────── */
@keyframes tf-fadein   { from{opacity:0;transform:translateY(14px)} to{opacity:1;transform:translateY(0)} }
@keyframes tf-slidedown{ from{opacity:0;transform:translateY(-18px)} to{opacity:1;transform:translateY(0)} }
@keyframes tf-scalein  { from{opacity:0;transform:scale(0.94)} to{opacity:1;transform:scale(1)} }
@keyframes tf-pulse    { 0%,100%{opacity:1} 50%{opacity:.55} }
@keyframes tf-spin     { to{transform:rotate(360deg)} }
@keyframes tf-shimmer  { 0%{background-position:-400px 0} 100%{background-position:400px 0} }

.tf-fade-in     { animation: tf-fadein    0.5s var(--tf-ease) both; }
.tf-slide-down  { animation: tf-slidedown 0.4s var(--tf-ease) both; }
.tf-scale-in    { animation: tf-scalein   0.35s var(--tf-ease) both; }

.tf-stagger > *:nth-child(1) { animation-delay:.04s }
.tf-stagger > *:nth-child(2) { animation-delay:.09s }
.tf-stagger > *:nth-child(3) { animation-delay:.14s }
.tf-stagger > *:nth-child(4) { animation-delay:.19s }
.tf-stagger > *:nth-child(5) { animation-delay:.24s }
.tf-stagger > *:nth-child(6) { animation-delay:.29s }
.tf-stagger > *:nth-child(n+7) { animation-delay:.34s }

.tf-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .55s var(--tf-ease), transform .55s var(--tf-ease);
}
.tf-reveal.tf-visible { opacity: 1; transform: translateY(0); }

/* ── 5. THEME TOGGLE BUTTON ───────────────────────────────────── */
.tf-theme-toggle {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--tf-border);
  background: var(--tf-surface);
  color: var(--tf-text-3);
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  transition: all var(--tf-t) var(--tf-ease);
  font-size: 16px;
}
.tf-theme-toggle:hover {
  border-color: var(--tf-accent);
  color: var(--tf-primary-dark);
  background: var(--tf-primary-light);
  transform: rotate(20deg);
}
/* Light (default): show moon — click to go dark */
.tf-theme-toggle .icon-sun  { display: none; }
.tf-theme-toggle .icon-moon { display: inline; }
/* Dark: show sun — click to go light */
html[data-theme="dark"] .tf-theme-toggle .icon-sun  { display: inline; }
html[data-theme="dark"] .tf-theme-toggle .icon-moon { display: none; }
html[data-hs-appearance="dark"] .tf-theme-toggle .icon-sun  { display: inline; }
html[data-hs-appearance="dark"] .tf-theme-toggle .icon-moon { display: none; }

/* ── 6. HEADER ────────────────────────────────────────────────── */
.header-section {
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--tf-border);
  position: absolute; top: 0; left: 0; width: 100%; z-index: 1000;
  transition: background var(--tf-t-slow) var(--tf-ease),
              /* border-color var(--tf-t) var(--tf-ease), */
              box-shadow var(--tf-t) var(--tf-ease);
}
.header-section.scrolled,
.header-section.sticky {
  position: fixed;
  background: var(--tf-surface);
  box-shadow: var(--tf-shadow-sm);
  animation: tf-slidedown 0.4s var(--tf-ease) both;
}
/* Ensure inner pages have a solid header by default */
.header-section.header-inner {
  position: sticky; background: var(--tf-surface);
}

/* ── Airbnb-style home hero header ────────────────────────── */
header.tf-home-hero-header {
  background: #ffffff;
  backdrop-filter: none;
  border-bottom: 1px solid rgba(44,44,44,.08);
  box-shadow: 0 4px 20px rgba(44,44,44,.06);
  transition: background var(--tf-t-slow) var(--tf-ease), box-shadow var(--tf-t-slow) var(--tf-ease);
}
[data-theme="dark"] header.tf-home-hero-header,
body.dark header.tf-home-hero-header {
  background: #2c2c2c;
  border-bottom-color: var(--tf-border);
}
header.tf-home-hero-header.scrolled {
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(44,44,44,.06);
}
[data-theme="dark"] header.tf-home-hero-header.scrolled,
body.dark header.tf-home-hero-header.scrolled {
  background: var(--tf-surface);
}

/* ── 3-column layout: logo | NAV CENTERED | actions ───────── */
header.tf-home-hero-header #header-sticky .header-main {
  position: relative;
  padding: 16px 0;
}
/* Pull nav out of right flow and absolutely centre it */
header.tf-home-hero-header #header-sticky .mean__menu-wrapper {
  position: absolute !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  display: block !important;
  z-index: 2;
}

/* ── Tab-style nav items ───────────────────────────────────── */
header.tf-home-hero-header #mobile-menu > ul {
  display: flex !important;
  align-items: center;
  gap: 2px !important;
  margin: 0; padding: 0;
  list-style: none;
}
header.tf-home-hero-header #mobile-menu > ul > li > a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 14px !important;
  font-weight: 600 !important;
  color: #222 !important;
  padding: 10px 15px !important;
  border-radius: 30px !important;
  background: transparent !important;
  position: relative;
  white-space: nowrap;
  transition: background var(--tf-t) var(--tf-ease) !important;
}
[data-theme="dark"] header.tf-home-hero-header #mobile-menu > ul > li > a,
body.dark header.tf-home-hero-header #mobile-menu > ul > li > a {
  color: var(--tf-text) !important;
}
header.tf-home-hero-header #mobile-menu > ul > li > a:hover {
  background: rgba(0,0,0,.06) !important;
}
[data-theme="dark"] header.tf-home-hero-header #mobile-menu > ul > li > a:hover,
body.dark header.tf-home-hero-header #mobile-menu > ul > li > a:hover {
  background: var(--tf-bg-2) !important;
}
/* Active underline indicator */
header.tf-home-hero-header #mobile-menu > ul > li.active > a {
  background: rgba(0,0,0,.05) !important;
}
header.tf-home-hero-header #mobile-menu > ul > li.active > a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 45%;
  height: 2px;
  background: #222;
  border-radius: 2px;
}
[data-theme="dark"] header.tf-home-hero-header #mobile-menu > ul > li.active > a::after,
body.dark header.tf-home-hero-header #mobile-menu > ul > li.active > a::after {
  background: var(--tf-text);
}
/* Chevron size */
header.tf-home-hero-header #mobile-menu > ul > li > a i {
  font-size: 10px !important;
}
/* Submenu */
header.tf-home-hero-header #mobile-menu > ul > li.has-dropdown .submenu {
  top: calc(100% + 8px);
  border-radius: var(--tf-radius-lg);
  box-shadow: 0 8px 30px rgba(0,0,0,.14);
  border: 1px solid rgba(0,0,0,.07);
  min-width: 200px;
  overflow: hidden;
}

/* Top info bar */
.header-top-section {
  background: var(--tf-primary);
  padding: 7px 0;
}
.header-top-section .top-left li,
.header-top-section .top-left li a {
  color: rgba(255,255,255,.88);
  font-size: 13px;
}
.header-top-section .top-left li a:hover { color: #fff; }
.header-top-section .social-icon a {
  color: rgba(255,255,255,.75);
  width: 28px; height: 28px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  transition: all var(--tf-t) var(--tf-ease);
}
.header-top-section .social-icon a:hover {
  color: #fff; background: rgba(255,255,255,.2);
}

/* Main nav */
.header-main { padding: 14px 0; }
.header-logo img,
.header-logo-2 img { height: 40px; width: auto; transition: transform var(--tf-t) var(--tf-ease); }
.header-logo:hover img,
.header-logo-2:hover img { transform: scale(1.04); }

#mobile-menu ul li a {
  font-size: 15px; font-weight: 500;
  color: var(--tf-text-3);
  padding: 8px 14px;
  border-radius: var(--tf-radius);
  transition: all var(--tf-t) var(--tf-ease);
}
#mobile-menu ul li a:hover,
#mobile-menu ul li.current-menu-item > a { color: var(--tf-primary); background: var(--tf-primary-light); }

/* Header CTA */
.header-right .theme-btn {
  background: var(--tf-primary); color: #fff;
  border: none; padding: 9px 22px;
  border-radius: var(--tf-radius-pill);
  font-size: 14px; font-weight: 600;
  transition: all var(--tf-t) var(--tf-ease);
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 6px;
}
.header-right .theme-btn:hover {
  background: var(--tf-primary-dark); color: #fff;
  transform: translateY(-1px); box-shadow: var(--tf-shadow);
}
.header-right .theme-btn:active { transform: scale(0.97); }

.header-login a,
.header-search button {
  width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--tf-text-3);
  background: transparent;
  border: 1.5px solid var(--tf-border);
  transition: all var(--tf-t) var(--tf-ease); cursor: pointer;
}
.header-login a:hover, .header-search button:hover {
  color: var(--tf-primary); border-color: var(--tf-primary); background: var(--tf-primary-light);
}

header.tf-home-hero-header .header-main {
  min-height: 88px;
}

header.tf-home-hero-header .tf-theme-toggle {
  display: none !important;
}
header.tf-home-hero-header .header-search,
header.tf-home-hero-header .bnb-search-large,
header.tf-home-hero-header .bnb-search-small {
  display: flex !important;
}

header.tf-home-hero-header .header-right {
  gap: 12px !important;
}

header.tf-home-hero-header .header-login a,
header.tf-home-hero-header .header-right .theme-btn {
  box-shadow: none;
}

/* Hamburger */
.header-bar span {
  display: block; width: 22px; height: 2px;
  background: var(--tf-text); border-radius: 2px; margin: 5px 0;
  transition: all var(--tf-t) var(--tf-ease);
}
.sidebar__toggle:hover .header-bar span { background: var(--tf-primary); }

.tf-nav-badge {
  position: absolute;
  top: -7px;
  right: -9px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--tf-primary);
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 0 0 2px var(--tf-surface);
}

/* ── 7. HERO ──────────────────────────────────────────────────── */
.hero-section { position: relative; overflow: hidden; min-height: 90vh; height: 90vh; }
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 8s ease;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,96,100,.72) 0%, rgba(0,38,50,.65) 100%);
}
.hero-section:hover .hero-bg { transform: scale(1.04); }

.hero-content {
  position: relative; z-index: 2;
  padding: 100px 0 60px;
  animation: tf-fadein 0.8s var(--tf-ease) both;
}
.hero-content h6 {
  color: var(--tf-accent); font-size: 13px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; margin-bottom: 14px;
  animation: tf-fadein .7s var(--tf-ease) .1s both;
}
.hero-content h1 {
  font-family: var(--tf-font-display); color: #fff;
  font-size: clamp(2.1rem, 5vw, 3.5rem); font-weight: 800;
  line-height: 1.2; margin-bottom: 18px;
  animation: tf-fadein .7s var(--tf-ease) .2s both;
}
.hero-content h1 .shape-text {
  background: rgba(255,255,255,.18); padding: 2px 12px; border-radius: 8px;
}
.hero-content p {
  color: rgba(255,255,255,.85); font-size: 16px; max-width: 560px;
  animation: tf-fadein .7s var(--tf-ease) .3s both;
}

.hero-3,
.hero-4,
.hero-5 {
  min-height: 90vh;
  height: 90vh;
}

.hero-3 .container-fluid,
.hero-4 .hero-items,
.hero-5 .container-fluid {
  min-height: 90vh;
  height: 90vh;
}

.hero-3 .container-fluid,
.hero-5 .container-fluid {
  display: flex;
  align-items: center;
}

.hero-3 .row,
.hero-5 .row {
  width: 100%;
}

.hero-3 .hero-content,
.hero-4 .hero-items .hero-content,
.hero-5 .hero-content {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.hero-3 .hero-content p,
.hero-4 .hero-items .hero-content p,
.hero-5 .hero-content p {
  margin-left: auto;
  margin-right: auto;
}

.hero-3 .hero-content .button-items,
.hero-4 .hero-items .hero-content .button-items,
.hero-5 .hero-content .button-items {
  justify-content: center;
}

/* Hero search bar */
.booking-list-area-1 {
  background: var(--tf-surface);
  border-radius: var(--tf-radius-xl);
  padding: 8px 8px 8px 12px;
  display: flex; align-items: stretch; gap: 0;
  box-shadow: 0 12px 48px rgba(0,0,0,.20);
  position: relative; z-index: 2; margin-top: -28px;
  flex-wrap: wrap;
  animation: tf-fadein .7s var(--tf-ease) .4s both;
  border: 1px solid var(--tf-border);
}
.booking-list {
  display: flex; align-items: center; gap: 10px;
  flex: 1; min-width: 160px; padding: 10px 16px;
  border-right: 1px solid var(--tf-border);
  transition: background var(--tf-t) var(--tf-ease);
}
.booking-list:last-of-type { border-right: none; }
.booking-list:hover { background: var(--tf-bg-2); border-radius: var(--tf-radius); }
.booking-list .content h5 {
  font-size: 11px; font-weight: 700; color: var(--tf-text-muted);
  text-transform: uppercase; letter-spacing: .08em; margin-bottom: 4px;
}
.booking-list select, .booking-list input {
  border: none; outline: none; font-size: 14px; font-weight: 500;
  color: var(--tf-text); background: transparent; width: 100%;
}
.booking-list select option { background: var(--tf-surface); color: var(--tf-text); }

.booking-list-area-1 > button.theme-btn {
  background: var(--tf-primary); color: #fff; border: none;
  border-radius: var(--tf-radius-lg);
  padding: 14px 28px; font-size: 15px; font-weight: 600;
  cursor: pointer; transition: all var(--tf-t) var(--tf-ease);
  white-space: nowrap; display: flex; align-items: center; gap: 8px;
}
.booking-list-area-1 > button.theme-btn:hover {
  background: var(--tf-primary-dark); transform: translateY(-1px); box-shadow: var(--tf-shadow);
}

/* ── 8. SECTION TITLES ────────────────────────────────────────── */
.section-title-area { margin-bottom: 40px; }
.section-title-area .sub-title, .section-sub {
  display: inline-block; color: var(--tf-primary-dark);
  font-size: 13px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  margin-bottom: 10px; padding: 4px 14px;
  background: var(--tf-primary-light); border-radius: var(--tf-radius-pill);
}
.section-title-area h2 {
  font-family: var(--tf-font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 800;
  color: var(--tf-text); line-height: 1.25; margin-bottom: 14px;
}
.section-title-area p { color: var(--tf-text-3); max-width: 540px; }

/* ── 9. PACKAGE CARDS ─────────────────────────────────────────── */
.tour-single-card, .package-card {
  background: var(--tf-surface);
  border: 1px solid var(--tf-border);
  border-radius: var(--tf-radius-lg);
  overflow: hidden;
  transition: border-color var(--tf-t) var(--tf-ease),
              box-shadow   var(--tf-t-slow) var(--tf-ease),
              transform    var(--tf-t-slow) var(--tf-ease-spring);
  box-shadow: var(--tf-shadow-xs);
}
.tour-single-card:hover, .package-card:hover {
  border-color: var(--tf-primary);
  box-shadow: var(--tf-shadow-hover);
  transform: translateY(-5px);
}
.tour-single-card .tour-image {
  position: relative; overflow: hidden; height: 220px;
}
.tour-single-card .tour-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s var(--tf-ease);
}
.tour-single-card:hover .tour-image img { transform: scale(1.07); }

/* Price & category overlay badges */
.price-badge {
  position: absolute; top: 14px; right: 14px;
  background: var(--tf-primary); color: #fff;
  font-size: 13px; font-weight: 700;
  padding: 5px 12px; border-radius: var(--tf-radius-pill);
  box-shadow: 0 2px 8px rgba(37,150,190,.4);
}
.tour-tag, .category-badge {
  position: absolute; top: 14px; left: 14px;
  background: rgba(255,255,255,.92); color: var(--tf-primary);
  font-size: 12px; font-weight: 700; padding: 4px 10px;
  border-radius: var(--tf-radius-pill); backdrop-filter: blur(6px);
}
[data-theme="dark"] .tour-tag,
[data-theme="dark"] .category-badge {
  background: rgba(30,41,59,.88); color: var(--tf-primary);
}

/* Card body */
.tour-content { padding: 18px 20px; }
.tour-title {
  font-family: var(--tf-font-display); font-size: 17px; font-weight: 700;
  color: var(--tf-text); margin-bottom: 6px; line-height: 1.35;
  transition: color var(--tf-t) var(--tf-ease);
}
.tour-single-card:hover .tour-title { color: var(--tf-primary); }
.tour-location {
  color: var(--tf-text-3); font-size: 13px;
  display: flex; align-items: center; gap: 5px; margin-bottom: 10px;
}
.tour-location i { color: var(--tf-primary); }
.star-rating { display: flex; align-items: center; gap: 3px; font-size: 13px; color: var(--tf-star); }
.star-rating .rating-count { color: var(--tf-text-muted); font-size: 12px; margin-left: 4px; }
.tour-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 14px; border-top: 1px solid var(--tf-border); margin-top: 14px;
}
.tour-card-price { font-size: 20px; font-weight: 800; color: var(--tf-primary); }
.tour-card-price span { font-size: 13px; font-weight: 400; color: var(--tf-text-muted); }

/* ── 10. BUTTONS ──────────────────────────────────────────────── */
.theme-btn, .tf-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--tf-primary); color: #fff;
  border: none; padding: 12px 28px;
  border-radius: var(--tf-radius-pill);
  font-size: 15px; font-weight: 600; cursor: pointer;
  transition: all var(--tf-t) var(--tf-ease);
  text-decoration: none; white-space: nowrap;
}
.theme-btn:hover, .tf-btn:hover {
  background: var(--tf-primary-dark); color: #fff;
  transform: translateY(-2px); box-shadow: var(--tf-shadow);
}
.theme-btn:active, .tf-btn:active { transform: scale(0.97) translateY(0); }
.theme-btn.outline, .tf-btn-outline {
  background: transparent; color: var(--tf-primary);
  border: 2px solid var(--tf-primary);
}
.theme-btn.outline:hover, .tf-btn-outline:hover { background: var(--tf-primary); color: #fff; }
.theme-btn.ghost, .tf-btn-ghost {
  background: var(--tf-bg-2); color: var(--tf-text);
  border: 1px solid var(--tf-border);
}
.theme-btn.ghost:hover, .tf-btn-ghost:hover { border-color: var(--tf-primary); color: var(--tf-primary); }

[data-theme="dark"] .theme-btn.outline { color: var(--tf-accent); border-color: var(--tf-accent); }
[data-theme="dark"] .theme-btn.outline:hover { background: var(--tf-accent); color: var(--tf-text); }

/* ── 11. BADGES ───────────────────────────────────────────────── */
.tf-badge {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 4px 12px; border-radius: var(--tf-radius-pill);
  font-size: 12px; font-weight: 600;
}
.tf-badge-primary  { background: var(--tf-primary-light); color: var(--tf-primary-dark); }
.tf-badge-success  { background: var(--tf-success-bg);    color: var(--tf-success); }
.tf-badge-warning  { background: var(--tf-warning-bg);    color: var(--tf-warning); }
.tf-badge-danger   { background: var(--tf-danger-bg);     color: var(--tf-danger); }
.tf-badge-verified { background: var(--tf-primary);       color: #fff; font-size: 11px; padding: 3px 10px; }

[data-theme="dark"] .tf-badge-primary { background: var(--tf-primary-light); color: var(--tf-accent); }

/* Override existing badge classes */
.badge.bg-soft-primary { background: var(--tf-primary-light) !important; color: var(--tf-primary-dark) !important; }
.badge.bg-soft-success { background: var(--tf-success-bg)    !important; color: var(--tf-success)      !important; }
.badge.bg-soft-warning { background: var(--tf-warning-bg)    !important; color: var(--tf-warning)      !important; }
.badge.bg-soft-danger  { background: var(--tf-danger-bg)     !important; color: var(--tf-danger)       !important; }
.badge.bg-soft-info    { background: var(--tf-info-bg)       !important; color: var(--tf-info)         !important; }
.badge.bg-soft-secondary { background: var(--tf-bg-3)        !important; color: var(--tf-text-3)       !important; }

/* ── 12. DESTINATION CARDS ────────────────────────────────────── */
.destination-card {
  position: relative; border-radius: var(--tf-radius-lg);
  overflow: hidden; height: 260px; cursor: pointer;
  transition: transform var(--tf-t-slow) var(--tf-ease-spring),
              box-shadow var(--tf-t-slow) var(--tf-ease);
}
.destination-card:hover { transform: translateY(-5px); box-shadow: var(--tf-shadow-hover); }
.destination-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s var(--tf-ease); }
.destination-card:hover img { transform: scale(1.08); }
.destination-card .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.68) 0%, rgba(0,0,0,0) 55%);
  transition: background var(--tf-t) var(--tf-ease);
}
.destination-card:hover .overlay { background: linear-gradient(to top, rgba(0,0,0,.78) 0%, rgba(38,150,190,.35) 100%); }
.destination-card .dest-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 20px; }
.destination-card .dest-name { color: #fff; font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.destination-card .dest-count { color: rgba(255,255,255,.78); font-size: 13px; }

/* ── 13. GUIDE PROFILE CARD ───────────────────────────────────── */
.guide-card {
  background: var(--tf-surface); border: 1px solid var(--tf-border);
  border-radius: var(--tf-radius-lg); padding: 24px; text-align: center;
  transition: border-color var(--tf-t) var(--tf-ease),
              box-shadow var(--tf-t-slow) var(--tf-ease),
              transform  var(--tf-t-slow) var(--tf-ease-spring);
}
.guide-card:hover {
  border-color: var(--tf-primary); box-shadow: var(--tf-shadow-hover); transform: translateY(-5px);
}
.guide-card .guide-avatar {
  width: 88px; height: 88px; border-radius: 50%;
  object-fit: cover; border: 3px solid var(--tf-primary-light);
  margin: 0 auto 14px; transition: border-color var(--tf-t) var(--tf-ease);
}
.guide-card:hover .guide-avatar { border-color: var(--tf-primary); }
[data-theme="dark"] .guide-card:hover .guide-avatar { border-color: var(--tf-accent); }
.guide-card .guide-name  { font-size: 17px; font-weight: 700; color: var(--tf-text); margin-bottom: 4px; }
.guide-card .guide-role  { font-size: 13px; color: var(--tf-primary); font-weight: 600; margin-bottom: 10px; }

.guide-contact-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 16px; border-radius: var(--tf-radius-pill);
  font-size: 13px; font-weight: 600;
  border: 1.5px solid var(--tf-primary); color: var(--tf-primary);
  text-decoration: none; transition: all var(--tf-t) var(--tf-ease);
}
.guide-contact-btn:hover   { background: var(--tf-primary); color: #fff; }
.guide-contact-btn.solid   { background: var(--tf-primary); color: #fff; }
.guide-contact-btn.solid:hover { background: var(--tf-primary-dark); color: #fff; }

/* ── 14. BOOKING SIDEBAR ──────────────────────────────────────── */
.booking-sidebar {
  background: var(--tf-surface); border: 1.5px solid var(--tf-border);
  border-radius: var(--tf-radius-xl); padding: 24px;
  position: sticky; top: 90px;
  transition: box-shadow var(--tf-t) var(--tf-ease), border-color var(--tf-t) var(--tf-ease);
}
.booking-sidebar:hover { box-shadow: var(--tf-shadow); border-color: var(--tf-primary-mid); }
.booking-sidebar .price-display { font-size: 28px; font-weight: 800; color: var(--tf-primary); }
.booking-sidebar .price-display small { font-size: 14px; font-weight: 400; color: var(--tf-text-muted); }

/* ── 15. CHECKOUT STEPS ───────────────────────────────────────── */
.checkout-steps {
  display: flex; align-items: center; justify-content: center;
  background: var(--tf-bg-2); border: 1px solid var(--tf-border);
  border-radius: var(--tf-radius-xl); padding: 8px; margin-bottom: 36px;
  gap: 4px;
}
.checkout-step {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 10px 16px; border-radius: var(--tf-radius-lg);
  font-size: 14px; font-weight: 500; color: var(--tf-text-3);
  transition: all var(--tf-t) var(--tf-ease);
}
.checkout-step .step-num {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--tf-border); color: var(--tf-text-3);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700;
  transition: all var(--tf-t) var(--tf-ease);
}
.checkout-step.active { background: var(--tf-primary); color: #fff; }
.checkout-step.active .step-num { background: rgba(255,255,255,.25); color: #fff; }
.checkout-step.done { color: var(--tf-success); }
.checkout-step.done .step-num { background: var(--tf-success-bg); color: var(--tf-success); }

/* ── 16. FORMS ────────────────────────────────────────────────── */
.checkout-form-card {
  background: var(--tf-surface); border: 1px solid var(--tf-border);
  border-radius: var(--tf-radius-xl); padding: 28px;
  box-shadow: var(--tf-shadow-xs); animation: tf-fadein .4s var(--tf-ease) both;
}
.tf-form-label {
  font-size: 13px; font-weight: 700; color: var(--tf-text); margin-bottom: 6px; display: block;
}
.tf-form-control, .form-control {
  width: 100%; padding: 11px 14px;
  border: 1.5px solid var(--tf-border);
  border-radius: var(--tf-radius);
  font-size: 14px; color: var(--tf-text);
  background: var(--tf-surface);
  transition: border-color var(--tf-t) var(--tf-ease), box-shadow var(--tf-t) var(--tf-ease);
  outline: none;
}
.tf-form-control:hover, .form-control:hover { border-color: var(--tf-border-2); }
.tf-form-control:focus, .form-control:focus {
  border-color: var(--tf-primary) !important;
  box-shadow: 0 0 0 3px var(--tf-primary-glow) !important;
}
.tf-form-control::placeholder, .form-control::placeholder { color: var(--tf-text-muted); }

/* Select */
select.tf-form-control, select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24'%3E%3Cpath fill='%2394a3b8' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center;
  padding-right: 36px; appearance: none;
}

/* Payment gateway options */
.gateway-option {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px; border: 1.5px solid var(--tf-border);
  border-radius: var(--tf-radius-lg); cursor: pointer;
  background: var(--tf-surface); margin-bottom: 10px;
  transition: all var(--tf-t) var(--tf-ease);
}
.gateway-option:hover   { border-color: var(--tf-primary); background: var(--tf-primary-light); }
.gateway-option.selected{ border-color: var(--tf-primary); background: var(--tf-primary-light); }
.gateway-option img { width: 48px; height: 28px; object-fit: contain; }
.gateway-option .gw-name { font-size: 14px; font-weight: 600; color: var(--tf-text); }

/* ── 17. DASHBOARD ────────────────────────────────────────────── */
.stats-card { transition: all var(--tf-t-slow) var(--tf-ease) !important; }
.stats-card:hover {
  border-color: var(--tf-primary) !important;
  box-shadow: var(--tf-shadow-hover) !important;
  transform: translateY(-4px);
}
.icon-soft-primary { background: var(--tf-primary-light); color: var(--tf-primary); }
.icon-soft-success { background: var(--tf-success-bg);    color: var(--tf-success); }
.icon-soft-warning { background: var(--tf-warning-bg);    color: var(--tf-warning); }
.icon-soft-danger  { background: var(--tf-danger-bg);     color: var(--tf-danger); }
[data-theme="dark"] .icon-soft-primary { color: var(--tf-accent); }

/* Sidebar */
.navbar-vertical .nav-link {
  border-radius: var(--tf-radius); margin-bottom: 2px; color: var(--tf-text-3);
  transition: all var(--tf-t) var(--tf-ease);
}
.navbar-vertical .nav-link:hover    { background: var(--tf-primary-light); color: var(--tf-primary); }
.navbar-vertical .nav-link.active   { background: var(--tf-primary); color: #fff; }
.navbar-vertical-aside .active .nav-indicator-icon { color: var(--tf-primary) !important; }

/* ── 18. KYC BANNER ───────────────────────────────────────────── */
.kyc-status-banner {
  border-radius: var(--tf-radius-lg); padding: 14px 20px;
  display: flex; align-items: center; gap: 14px; margin-bottom: 24px;
}
.kyc-pending  { background: var(--tf-warning-bg); border: 1px solid var(--tf-warning-border); }
.kyc-verified { background: var(--tf-success-bg); border: 1px solid var(--tf-success-border); }
.kyc-rejected { background: var(--tf-danger-bg);  border: 1px solid var(--tf-danger-border); }
.kyc-status-banner .kyc-icon { font-size: 22px; }
.kyc-status-banner h6 { font-size: 14px; font-weight: 700; margin-bottom: 2px; color: var(--tf-text); }
.kyc-status-banner p  { font-size: 13px; margin: 0; color: var(--tf-text-3); }

/* ── 19. REVIEWS ──────────────────────────────────────────────── */
.review-card {
  background: var(--tf-surface); border: 1px solid var(--tf-border);
  border-radius: var(--tf-radius-lg); padding: 20px; margin-bottom: 16px;
  transition: border-color var(--tf-t) var(--tf-ease), box-shadow var(--tf-t) var(--tf-ease);
}
.review-card:hover { border-color: var(--tf-primary-mid); box-shadow: var(--tf-shadow-xs); }
.reviewer-avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }

.review-rating-bar { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; }
.review-rating-bar .label { font-size: 12px; color: var(--tf-text-muted); min-width: 80px; }
.review-rating-bar .bar { flex: 1; height: 6px; background: var(--tf-bg-3); border-radius: 3px; overflow: hidden; }
.review-rating-bar .fill { height: 100%; background: var(--tf-primary); border-radius: 3px; transition: width .8s var(--tf-ease); }
.review-rating-bar .count { font-size: 12px; color: var(--tf-text-muted); min-width: 24px; text-align: right; }

/* ── 20. TABLES ───────────────────────────────────────────────── */
.table thead th {
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .06em; color: var(--tf-text-muted);
  border-bottom: 1.5px solid var(--tf-border); padding: 12px 16px;
  background: var(--tf-bg-2);
}
.table tbody tr { transition: background var(--tf-t-fast) var(--tf-ease); }
.table tbody tr:hover { background: var(--tf-bg-2); }
.table tbody td { padding: 12px 16px; font-size: 14px; border-bottom: 1px solid var(--tf-border); color: var(--tf-text); }

/* ── 21. MODALS ───────────────────────────────────────────────── */
.modal-content {
  background: var(--tf-surface) !important;
  border: 1px solid var(--tf-border) !important;
  border-radius: var(--tf-radius-xl) !important;
  box-shadow: var(--tf-shadow-lg) !important;
  animation: tf-scalein .25s var(--tf-ease) both;
  color: var(--tf-text) !important;
}
.modal-header { border-bottom: 1px solid var(--tf-border) !important; padding: 20px 24px !important; }
.modal-title  { font-family: var(--tf-font-display); font-weight: 700; color: var(--tf-text); }
.modal-body   { padding: 20px 24px !important; }
.modal-footer { border-top: 1px solid var(--tf-border) !important; padding: 16px 24px !important; }
.btn-close { opacity: .5; transition: all var(--tf-t) var(--tf-ease); }
.btn-close:hover { opacity: 1; transform: rotate(90deg); }

/* Dark mode backdrop */
[data-theme="dark"] .modal-backdrop { background: rgba(0,0,0,.7); }

/* ── 22. ALERTS ───────────────────────────────────────────────── */
.alert { border-radius: var(--tf-radius-lg) !important; border: none !important; font-size: 14px; }
.alert-soft-primary { background: var(--tf-primary-light); color: var(--tf-primary-dark); }
.alert-soft-success { background: var(--tf-success-bg); color: var(--tf-success); }
.alert-soft-warning { background: var(--tf-warning-bg); color: var(--tf-warning); }
.alert-soft-danger  { background: var(--tf-danger-bg);  color: var(--tf-danger); }
[data-theme="dark"] .alert-soft-dark { background: var(--tf-bg-3); border: 1px solid var(--tf-border) !important; color: var(--tf-text); }
[data-theme="dark"] .alert-soft-primary { color: var(--tf-accent); }

/* ── 23. CARDS (Bootstrap cards used in dashboard) ────────────── */
.card {
  background: var(--tf-surface) !important;
  border: 1px solid var(--tf-border) !important;
  border-radius: var(--tf-radius-lg) !important;
  color: var(--tf-text) !important;
  transition: border-color var(--tf-t) var(--tf-ease), box-shadow var(--tf-t-slow) var(--tf-ease);
}
.card-header, .card-footer {
  background: var(--tf-bg-2) !important;
  border-color: var(--tf-border) !important;
  color: var(--tf-text) !important;
}
.card-subtitle { color: var(--tf-text-3) !important; }
.card-title    { color: var(--tf-text)   !important; }

/* ── 24. BREADCRUMB ───────────────────────────────────────────── */
.breadcrumb-wrapper { padding: 40px 0; position: relative; }
.breadcrumb-wrapper::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,96,100,.80), rgba(0,38,50,.75));
}
.page-heading { position: relative; z-index: 1; }
.page-heading h1 { color: #fff; font-family: var(--tf-font-display); }
.breadcrumb-items li a { color: rgba(255,255,255,.8); font-size: 14px; }
.breadcrumb-items li a:hover { color: #fff; }
.breadcrumb-items .slash-icon { color: rgba(255,255,255,.45); margin: 0 8px; }

/* ── 25. FOOTER ───────────────────────────────────────────────── */
.footer-section { background: #0b1927; color: rgba(255,255,255,.68); }
.footer-section h5 { color: #fff; font-size: 15px; font-weight: 700; margin-bottom: 16px; }
.footer-section a {
  color: rgba(255,255,255,.62); font-size: 14px;
  transition: all var(--tf-t) var(--tf-ease);
  display: block; padding: 3px 0;
}
.footer-section a:hover { color: var(--tf-primary); padding-left: 5px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 18px 0; text-align: center;
  font-size: 13px; color: rgba(255,255,255,.4);
}

/* ── 26. SEARCH OVERLAY ───────────────────────────────────────── */
.header-search-bar {
  background: rgba(10,25,45,.96);
  backdrop-filter: blur(14px);
}
.header-search-bar .search-bar input {
  background: rgba(255,255,255,.08); border: 1.5px solid rgba(255,255,255,.15);
  color: #fff; border-radius: var(--tf-radius-pill);
  padding: 12px 20px; font-size: 15px; width: 100%; outline: none;
  transition: all var(--tf-t) var(--tf-ease);
}
.header-search-bar .search-bar input:focus {
  border-color: var(--tf-primary); background: rgba(37,150,190,.15);
}
.search-results-box {
  background: var(--tf-surface); border-radius: var(--tf-radius-lg);
  margin-top: 12px; padding: 8px;
  max-height: 380px; overflow-y: auto;
  border: 1px solid var(--tf-border);
}
.search-result-item {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 14px; border-radius: var(--tf-radius);
  transition: background var(--tf-t-fast) var(--tf-ease);
}
.search-result-item:hover { background: var(--tf-primary-light); }
.result-thumb  { width: 44px; height: 44px; border-radius: 8px; object-fit: cover; }
.result-title  { font-size: 14px; font-weight: 600; color: var(--tf-text); }
.result-title:hover { color: var(--tf-primary); }

/* ── 27. SCROLL-TO-TOP & PRELOADER ───────────────────────────── */
#back-top {
  background: var(--tf-primary); color: #fff;
  width: 44px; height: 44px; border-radius: 50%; border: none;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  box-shadow: var(--tf-shadow); transition: all var(--tf-t) var(--tf-ease);
}
#back-top:hover { background: var(--tf-primary-dark); transform: translateY(-3px); box-shadow: var(--tf-shadow-hover); }
#preloader { background: var(--tf-primary); transition: opacity .4s, visibility .4s; }
#preloader.hide { opacity: 0; visibility: hidden; }

/* ── 28. PWA POPUP ────────────────────────────────────────────── */
.pwa-popup {
  display: none;               /* hidden by default — JS shows it only for new users */
  position: fixed;             /* fixed overlay in viewport corner */
  bottom: 24px;
  right: 24px;
  z-index: 99999;
  width: 340px;
  max-height: calc(100vh - 48px);  /* never taller than the viewport */
  overflow-y: auto;
  background: var(--tf-surface) !important;
  border: 1.5px solid var(--tf-border) !important;
  border-radius: var(--tf-radius-xl) !important;
  box-shadow: var(--tf-shadow-lg) !important;
  padding: 20px !important;
  color: var(--tf-text) !important;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.pwa-popup.pwa-visible {
  opacity: 1;
  transform: translateY(0);
}
/* Carousel — horizontal slider, collapsed until "More" is clicked */
.pwa-popup .carousel-container {
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease;
}
.pwa-popup .carousel {
  position: relative;
}
.pwa-popup .carousel-content {
  display: flex;
  flex-direction: row;
  overflow: hidden;
  border-radius: var(--tf-radius-lg);
}
.pwa-popup .carousel-content img {
  min-width: 100%;
  max-width: 100%;
  height: 200px;
  object-fit: cover;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.pwa-popup .carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  border: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.pwa-popup .carousel-btn.left  { left: 6px; }
.pwa-popup .carousel-btn.right { right: 6px; }
.pwa-popup .carousel-btn svg   { width: 18px; height: 18px; fill: #fff; }
.pwa-popup .pwa-logo {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: var(--tf-radius-md);
}
.pwa-popup .actions {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}
.pwa-popup .action-btn {
  flex: 1;
  padding: 8px 14px;
  border: none;
  border-radius: var(--tf-radius-pill) !important;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}
.pwa-popup .close-btn {
  background: none;
  border: none;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  padding: 0 4px;
}
.pwa-popup .header-text h2 { color: var(--tf-text) !important; font-size: 16px !important; font-weight: 700; }
.pwa-popup .header-text p  { color: var(--tf-text-3) !important; font-size: 13px !important; }
.pwa-popup .description, .pwa-popup .sub-description { color: var(--tf-text-3) !important; }
.pwa-popup .close-btn { color: var(--tf-text-muted) !important; }
.pwa-popup .close-btn:hover { color: var(--tf-danger) !important; }
.pwa-popup .action-btn.install {
  background: var(--tf-primary) !important; color: #fff !important;
  border-radius: var(--tf-radius-pill) !important;
  transition: all var(--tf-t) var(--tf-ease) !important;
}
.pwa-popup .action-btn.install:hover {
  background: var(--tf-primary-dark) !important;
  transform: translateY(-2px) !important;
  box-shadow: var(--tf-shadow) !important;
}
.pwa-popup .action-btn.less { color: var(--tf-primary) !important; background: transparent !important; }
.pwa-popup .action-btn.less:hover { background: var(--tf-primary-light) !important; }
.pwa-popup .carousel-btn { background: var(--tf-primary) !important; }

/* ── 29. FILTER BAR ───────────────────────────────────────────── */
.tf-filter-bar {
  background: var(--tf-surface);
  border: 1px solid var(--tf-border);
  border-radius: var(--tf-radius-lg);
  padding: 14px 20px;
  box-shadow: var(--tf-shadow-xs);
}
.tf-filter-bar .input-group-text {
  background: var(--tf-surface); border-color: var(--tf-border); color: var(--tf-primary);
}

/* ── 30. DARK MODE GLOBAL OVERRIDES ──────────────────────────── */
/* Use html[data-theme="dark"] for highest specificity — overrides hardcoded values in main.css/style.css */
html[data-theme="dark"] body {
  background-color: var(--tf-bg) !important;
  color: var(--tf-text) !important;
}

/* ── Utilities overrides (Crucial for Dashboard backgrounds) ── */
html[data-theme="dark"] .bg-white { background-color: var(--tf-surface) !important; color: var(--tf-text) !important; }
html[data-theme="dark"] .bg-light { background-color: var(--tf-bg-2) !important; color: var(--tf-text) !important; }
html[data-theme="dark"] .text-dark { color: var(--tf-text) !important; }
html[data-theme="dark"] .text-muted { color: var(--tf-text-muted) !important; }
html[data-theme="dark"] .border-light { border-color: var(--tf-border) !important; }
html[data-theme="dark"] .shadow-sm,
html[data-theme="dark"] .shadow-lg { box-shadow: none !important; }

/* ── Dropdowns & Lists ── */
html[data-theme="dark"] .dropdown-menu { background-color: var(--tf-surface) !important; border-color: var(--tf-border) !important; }
html[data-theme="dark"] .dropdown-item { color: var(--tf-text-2) !important; }
html[data-theme="dark"] .dropdown-item:hover,
html[data-theme="dark"] .dropdown-item:focus { background-color: var(--tf-bg-2) !important; color: var(--tf-text) !important; }
html[data-theme="dark"] .dropdown-divider { border-top-color: var(--tf-border) !important; }
html[data-theme="dark"] .list-group-item { background-color: var(--tf-surface) !important; border-color: var(--tf-border) !important; color: var(--tf-text) !important; }

/* ── Core page elements ── */
html[data-theme="dark"] section,
html[data-theme="dark"] .section-bg,
html[data-theme="dark"] .bg-white,
html[data-theme="dark"] .bg-light,
html[data-theme="dark"] .wrapper {
  background-color: var(--tf-bg) !important;
  color: var(--tf-text) !important;
}
html[data-theme="dark"] h1,
html[data-theme="dark"] h2,
html[data-theme="dark"] h3,
html[data-theme="dark"] h4,
html[data-theme="dark"] h5,
html[data-theme="dark"] h6 { color: var(--tf-text) !important; }

html[data-theme="dark"] p,
html[data-theme="dark"] span,
html[data-theme="dark"] li { color: var(--tf-text-2); }

/* ── Header ── */
html[data-theme="dark"] .header-section,
html[data-theme="dark"] .header-1 {
  background: rgba(44, 44, 44, 0.3) !important;
  border-bottom-color: var(--tf-border) !important;
}
html[data-theme="dark"] .header-section.sticky,
html[data-theme="dark"] .header-section.scrolled,
html[data-theme="dark"] .header-section.header-inner {
  background: var(--tf-bg-2) !important;
}
html[data-theme="dark"] .header-top-section {
  background: var(--tf-bg-3) !important;
  border-bottom: 1px solid var(--tf-border);
}

/* ── Navigation ── */
html[data-theme="dark"] #mobile-menu ul li a { color: var(--tf-text-2) !important; }
html[data-theme="dark"] .mean-container .mean-nav { background: var(--tf-surface) !important; }
html[data-theme="dark"] .mean-container .mean-nav ul li a { background: var(--tf-bg-2) !important; border-top-color: var(--tf-border) !important; }
html[data-theme="dark"] .mean-container .mean-bar { background: var(--tf-surface) !important; }
html[data-theme="dark"] .offcanvas__info,
html[data-theme="dark"] .offcanvas__inner { background: var(--tf-surface) !important; }
html[data-theme="dark"] .offcanvas__info h3,
html[data-theme="dark"] .offcanvas__info p  { color: var(--tf-text) !important; }
html[data-theme="dark"] .offcanvas__overlay { background: rgba(0,0,0,.7) !important; }

/* ── Hero home header (Airbnb) ── */
html[data-theme="dark"] header.tf-home-hero-header {
  background: rgba(44, 44, 44, 0.3) !important;
  backdrop-filter: blur(8px) !important;
  border-bottom-color: var(--tf-border) !important;
}
html[data-theme="dark"] header.tf-home-hero-header.scrolled {
  background: var(--tf-bg-2) !important;
}
html[data-theme="dark"] header.tf-home-hero-header #mobile-menu > ul > li > a { color: var(--tf-text) !important; }
html[data-theme="dark"] header.tf-home-hero-header #mobile-menu > ul > li > a:hover { background: var(--tf-bg-2) !important; }
html[data-theme="dark"] header.tf-home-hero-header #mobile-menu > ul > li.active > a::after { background: var(--tf-text) !important; }

/* ── Forms & inputs ── */
html[data-theme="dark"] input,
html[data-theme="dark"] textarea,
html[data-theme="dark"] select {
  background: var(--tf-surface) !important;
  color: var(--tf-text) !important;
  border-color: var(--tf-border) !important;
}
html[data-theme="dark"] input::placeholder,
html[data-theme="dark"] textarea::placeholder { color: var(--tf-text-muted) !important; }
html[data-theme="dark"] .nice-select,
html[data-theme="dark"] .nice-select .list {
  background: var(--tf-surface) !important;
  border-color: var(--tf-border) !important;
  color: var(--tf-text) !important;
}
html[data-theme="dark"] .nice-select .option:hover,
html[data-theme="dark"] .nice-select .option.selected { background: var(--tf-bg-2) !important; }

/* ── Cards & surfaces ── */
html[data-theme="dark"] .tour-single-card,
html[data-theme="dark"] .package-card { background: var(--tf-surface) !important; }
html[data-theme="dark"] .checkout-form-card { background: var(--tf-surface) !important; }
html[data-theme="dark"] .booking-sidebar    { background: var(--tf-surface) !important; }
html[data-theme="dark"] .checkout-steps     { background: var(--tf-bg-2) !important; }
html[data-theme="dark"] .guide-card         { background: var(--tf-surface) !important; border-color: var(--tf-border) !important; }
html[data-theme="dark"] .tf-filter-bar      { background: var(--tf-surface) !important; }
html[data-theme="dark"] .review-card        { background: var(--tf-surface) !important; }
html[data-theme="dark"] .gateway-option     { background: var(--tf-surface) !important; }
html[data-theme="dark"] .search-results-box { background: var(--tf-surface) !important; }

/* ── Search bar ── */
html[data-theme="dark"] .booking-list-area-1 { background: var(--tf-surface) !important; }
html[data-theme="dark"] .booking-list        { border-right-color: var(--tf-border) !important; }
html[data-theme="dark"] .booking-list:hover  { background: var(--tf-bg-2) !important; }
html[data-theme="dark"] .booking-list select,
html[data-theme="dark"] .booking-list input  { color: var(--tf-text) !important; }

/* ── Pagination & Tabs ── */
html[data-theme="dark"] .page-link { background-color: var(--tf-surface) !important; border-color: var(--tf-border) !important; color: var(--tf-text) !important; }
html[data-theme="dark"] .page-item.disabled .page-link { background-color: var(--tf-bg-2) !important; }
html[data-theme="dark"] .nav-tabs .nav-link { color: var(--tf-text-3) !important; }
html[data-theme="dark"] .nav-tabs .nav-link.active { background-color: var(--tf-surface) !important; border-color: var(--tf-border) !important; color: var(--tf-primary) !important; border-bottom-color: transparent !important; }

/* ── Tables ── */
html[data-theme="dark"] .table thead th      { background: var(--tf-bg-2) !important; color: var(--tf-text-muted) !important; }
html[data-theme="dark"] .table tbody td      { color: var(--tf-text) !important; border-bottom-color: var(--tf-border) !important; }
html[data-theme="dark"] .table tbody tr:hover{ background: var(--tf-bg-2) !important; }
html[data-theme="dark"] .table-striped tbody tr:nth-of-type(odd) { background-color: rgba(255,255,255,0.03) !important; }
html[data-theme="dark"] .table-hover tbody tr:hover { background-color: var(--tf-bg-2) !important; }

/* ── Input Groups ── */
html[data-theme="dark"] .input-group-text { background-color: var(--tf-bg-2) !important; border-color: var(--tf-border) !important; color: var(--tf-text) !important; }

/* ── Bootstrap card (used in dashboard) ── */
html[data-theme="dark"] .card { background: var(--tf-surface) !important; border-color: var(--tf-border) !important; color: var(--tf-text) !important; }
html[data-theme="dark"] .card-header, html[data-theme="dark"] .card-footer { background: var(--tf-bg-2) !important; border-color: var(--tf-border) !important; }
html[data-theme="dark"] .card-title,
html[data-theme="dark"] .card-subtitle,
html[data-theme="dark"] .page-header-title,
html[data-theme="dark"] .card-body h1,
html[data-theme="dark"] .card-body h2,
html[data-theme="dark"] .card-body h3,
html[data-theme="dark"] .card-body h4,
html[data-theme="dark"] .card-body h5,
html[data-theme="dark"] .card-body h6 { color: var(--tf-text) !important; }

/* ── Dashboard sidebar ── */
html[data-theme="dark"] .main,
html[data-theme="dark"] .navbar-vertical-aside,
html[data-theme="dark"] .navbar { background: var(--tf-bg-2) !important; }

/* ── Misc adventra theme classes ── */
html[data-theme="dark"] .choosing-area,
html[data-theme="dark"] .tour-details-area,
html[data-theme="dark"] .testimonial-section { background: var(--tf-bg) !important; }
html[data-theme="dark"] .tour-detls-info-wraper,
html[data-theme="dark"] .tour-detls-img,
html[data-theme="dark"] .tour-inner-tab { background: var(--tf-surface) !important; border-color: var(--tf-border) !important; }
html[data-theme="dark"] .tour-inner-tab .nav-link { color: var(--tf-text-3) !important; }
html[data-theme="dark"] .tour-inner-tab .nav-link.active { color: var(--tf-primary) !important; border-bottom-color: var(--tf-primary) !important; }
html[data-theme="dark"] .blog-card,
html[data-theme="dark"] .blog-content-area,
html[data-theme="dark"] .blog-single-card { background: var(--tf-surface) !important; border-color: var(--tf-border) !important; }
html[data-theme="dark"] .sidebar-widget { background: var(--tf-surface) !important; border-color: var(--tf-border) !important; }
html[data-theme="dark"] .contact-form-box { background: var(--tf-surface) !important; }

/* ── 31. INPUTS (Bootstrap overrides) ────────────────────────── */
.form-select {
  background-color: var(--tf-surface) !important;
  border-color: var(--tf-border) !important;
  color: var(--tf-text) !important;
  border-radius: var(--tf-radius) !important;
}
.form-select:focus {
  border-color: var(--tf-primary) !important;
  box-shadow: 0 0 0 3px var(--tf-primary-glow) !important;
}

/* ── 32. BUTTON OVERRIDES ─────────────────────────────────────── */
.btn-primary {
  background-color: var(--tf-primary) !important;
  border-color: var(--tf-primary) !important;
  transition: all var(--tf-t) var(--tf-ease) !important;
}
.btn-primary:hover {
  background-color: var(--tf-primary-dark) !important;
  border-color: var(--tf-primary-dark) !important;
  transform: translateY(-1px);
}
.btn-outline-primary {
  color: var(--tf-primary) !important;
  border-color: var(--tf-primary) !important;
}
.btn-outline-primary:hover {
  background-color: var(--tf-primary) !important;
  color: #fff !important;
}

/* ── 33. RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1199px) {
  .booking-list { min-width: 140px; }
}
@media (max-width: 991px) {
  .hero-content { padding: 70px 0 40px; }
  .booking-list-area-1 {
    flex-direction: column; border-radius: var(--tf-radius-lg); padding: 12px; gap: 8px; margin-top: 20px;
  }
  .booking-list { border-right: none; border-bottom: 1px solid var(--tf-border); }
  .booking-list:last-of-type { border-bottom: none; }
  .booking-list-area-1 > button.theme-btn { width: 100%; justify-content: center; }
  .booking-sidebar { position: static; }
  .checkout-steps  { flex-direction: column; gap: 6px; }
}
@media (max-width: 767px) {
  .header-top-section { display: none; }
  .header-main { padding: 10px 0; }
  .header-logo img { height: 32px; }
  .tour-single-card .tour-image { height: 180px; }
  .destination-card { height: 200px; }
  .pwa-popup { width: 95%; }
  .checkout-form-card { padding: 18px; }
}
@media (max-width: 575px) {
  .hero-content h1 { font-size: 1.8rem; }
  .guide-card { padding: 18px; }
  .tf-filter-bar { padding: 12px; }
}

/* ── 34. CUSTOM SCROLLBAR ─────────────────────────────────────── */
::-webkit-scrollbar       { width: 5px; height: 5px; }
::-webkit-scrollbar-track { background: var(--tf-bg-2); }
::-webkit-scrollbar-thumb { background: var(--tf-border-2); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--tf-primary); }

/* ── 35. PRINT ────────────────────────────────────────────────── */
@media print {
  .header-section, .footer-section, #back-top, .pwa-popup { display: none !important; }
  body { background: #fff !important; color: #000 !important; }
}

/* ================================================================
   36. USER DASHBOARD — DARK MODE OVERRIDES
   Targets the HS theme system selector used by the user dashboard
   ================================================================ */

/* Body */
[data-hs-appearance="dark"] body,
html[data-hs-appearance="dark"] body {
  background-color: #2c2c2c !important;
  color: #ffffff !important;
}
[data-hs-appearance="dark"] #content,
html[data-hs-appearance="dark"] #content { background-color: #2c2c2c !important; }

/* ── Sidebar (user dashboard) ─────────────────────────────────── */
[data-hs-appearance="dark"] .navbar-vertical-aside,
html[data-hs-appearance="dark"] .navbar-vertical-aside {
  background: #1a1a1a !important;
  border-right-color: #333333 !important;
}
[data-hs-appearance="dark"] .navbar-vertical-aside .nav-link,
html[data-hs-appearance="dark"] .navbar-vertical-aside .nav-link {
  color: rgba(255,255,255,.70) !important;
}
[data-hs-appearance="dark"] .navbar-vertical-aside .nav-link:hover,
html[data-hs-appearance="dark"] .navbar-vertical-aside .nav-link:hover {
  color: #fff !important;
  background: rgba(38,150,190,.18) !important;
}
[data-hs-appearance="dark"] .navbar-vertical-aside .nav-link.active,
html[data-hs-appearance="dark"] .navbar-vertical-aside .nav-link.active {
  color: #fff !important;
  background: #2696be !important;
}

/* ── Top navbar (user dashboard) ─────────────────────────────── */
[data-hs-appearance="dark"] .navbar-fixed,
[data-hs-appearance="dark"] #header,
html[data-hs-appearance="dark"] .navbar-fixed,
html[data-hs-appearance="dark"] #header {
  background: #383838 !important;
  border-bottom-color: #484848 !important;
}

/* ── Cards ────────────────────────────────────────────────────── */
[data-hs-appearance="dark"] .card,
html[data-hs-appearance="dark"] .card {
  background: #383838 !important;
  border-color: #484848 !important;
  color: #ffffff !important;
}
[data-hs-appearance="dark"] .card-header,
html[data-hs-appearance="dark"] .card-header {
  background: #2c2c2c !important;
  border-bottom-color: #484848 !important;
  color: #ffffff !important;
}
[data-hs-appearance="dark"] .card-body,
html[data-hs-appearance="dark"] .card-body {
  background: #383838 !important;
  color: #ffffff !important;
}
[data-hs-appearance="dark"] .card-footer,
html[data-hs-appearance="dark"] .card-footer {
  background: #2c2c2c !important;
  border-top-color: #484848 !important;
  color: #e0e0e0 !important;
}
[data-hs-appearance="dark"] .card-title,
html[data-hs-appearance="dark"] .card-title { color: #ffffff !important; }
[data-hs-appearance="dark"] .card-subtitle,
html[data-hs-appearance="dark"] .card-subtitle { color: #a0a0a0 !important; }

/* ── Tables ───────────────────────────────────────────────────── */
[data-hs-appearance="dark"] .table,
html[data-hs-appearance="dark"] .table { color: #ffffff !important; }
[data-hs-appearance="dark"] .table thead th,
html[data-hs-appearance="dark"] .table thead th {
  background: #2c2c2c !important;
  border-bottom-color: #484848 !important;
  color: #a0a0a0 !important;
}
[data-hs-appearance="dark"] .table tbody tr,
html[data-hs-appearance="dark"] .table tbody tr {
  background: #383838 !important;
  color: #ffffff !important;
}
[data-hs-appearance="dark"] .table tbody tr:hover,
html[data-hs-appearance="dark"] .table tbody tr:hover { background: #424242 !important; }
[data-hs-appearance="dark"] .table tbody td,
html[data-hs-appearance="dark"] .table tbody td {
  border-color: #484848 !important;
  color: #ffffff !important;
}
[data-hs-appearance="dark"] .table-bordered,
[data-hs-appearance="dark"] .table-bordered td,
[data-hs-appearance="dark"] .table-bordered th,
html[data-hs-appearance="dark"] .table-bordered td,
html[data-hs-appearance="dark"] .table-bordered th { border-color: #484848 !important; }

/* ── Forms ────────────────────────────────────────────────────── */
[data-hs-appearance="dark"] .form-control,
[data-hs-appearance="dark"] .form-select,
html[data-hs-appearance="dark"] .form-control,
html[data-hs-appearance="dark"] .form-select {
  background-color: #424242 !important;
  border-color: #555555 !important;
  color: #ffffff !important;
}
[data-hs-appearance="dark"] .form-control:focus,
[data-hs-appearance="dark"] .form-select:focus,
html[data-hs-appearance="dark"] .form-control:focus,
html[data-hs-appearance="dark"] .form-select:focus {
  border-color: #2696be !important;
  box-shadow: 0 0 0 3px rgba(38,150,190,.20) !important;
}
[data-hs-appearance="dark"] .form-label,
html[data-hs-appearance="dark"] .form-label { color: #e0e0e0 !important; }
[data-hs-appearance="dark"] .input-group-text,
html[data-hs-appearance="dark"] .input-group-text {
  background: #2c2c2c !important;
  border-color: #555555 !important;
  color: #a0a0a0 !important;
}

/* ── Text colors ──────────────────────────────────────────────── */
[data-hs-appearance="dark"] h1, [data-hs-appearance="dark"] h2,
[data-hs-appearance="dark"] h3, [data-hs-appearance="dark"] h4,
[data-hs-appearance="dark"] h5, [data-hs-appearance="dark"] h6,
html[data-hs-appearance="dark"] h1, html[data-hs-appearance="dark"] h2,
html[data-hs-appearance="dark"] h3, html[data-hs-appearance="dark"] h4,
html[data-hs-appearance="dark"] h5, html[data-hs-appearance="dark"] h6 {
  color: #ffffff !important;
}
[data-hs-appearance="dark"] .text-muted,
[data-hs-appearance="dark"] .text-secondary,
html[data-hs-appearance="dark"] .text-muted,
html[data-hs-appearance="dark"] .text-secondary { color: #a0a0a0 !important; }
[data-hs-appearance="dark"] .text-primary,
html[data-hs-appearance="dark"] .text-primary { color: #2696be !important; }
[data-hs-appearance="dark"] p,
html[data-hs-appearance="dark"] p { color: #e0e0e0 !important; }

/* ── List groups ──────────────────────────────────────────────── */
[data-hs-appearance="dark"] .list-group-item,
html[data-hs-appearance="dark"] .list-group-item {
  background: #383838 !important;
  border-color: #484848 !important;
  color: #ffffff !important;
}
[data-hs-appearance="dark"] .list-group-item:hover,
html[data-hs-appearance="dark"] .list-group-item:hover { background: #424242 !important; }

/* ── Modals ───────────────────────────────────────────────────── */
[data-hs-appearance="dark"] .modal-content,
html[data-hs-appearance="dark"] .modal-content {
  background: #383838 !important;
  border-color: #484848 !important;
}
[data-hs-appearance="dark"] .modal-header,
html[data-hs-appearance="dark"] .modal-header { border-bottom-color: #484848 !important; }
[data-hs-appearance="dark"] .modal-footer,
html[data-hs-appearance="dark"] .modal-footer { border-top-color: #484848 !important; }
[data-hs-appearance="dark"] .modal-title,
html[data-hs-appearance="dark"] .modal-title { color: #ffffff !important; }
[data-hs-appearance="dark"] .modal-body,
html[data-hs-appearance="dark"] .modal-body { color: #e0e0e0 !important; }
[data-hs-appearance="dark"] .btn-close,
html[data-hs-appearance="dark"] .btn-close { filter: invert(1) !important; }

/* ── Dropdowns ────────────────────────────────────────────────── */
[data-hs-appearance="dark"] .dropdown-menu,
html[data-hs-appearance="dark"] .dropdown-menu {
  background: #383838 !important;
  border-color: #484848 !important;
}
[data-hs-appearance="dark"] .dropdown-item,
html[data-hs-appearance="dark"] .dropdown-item { color: #ffffff !important; }
[data-hs-appearance="dark"] .dropdown-item:hover,
html[data-hs-appearance="dark"] .dropdown-item:hover {
  background: rgba(38,150,190,.15) !important;
  color: #2696be !important;
}
[data-hs-appearance="dark"] .dropdown-divider,
html[data-hs-appearance="dark"] .dropdown-divider { border-color: #484848 !important; }

/* ── Badges ───────────────────────────────────────────────────── */
[data-hs-appearance="dark"] .badge.bg-soft-primary,
html[data-hs-appearance="dark"] .badge.bg-soft-primary {
  background: rgba(38,150,190,.18) !important; color: #2696be !important;
}
[data-hs-appearance="dark"] .badge.bg-soft-success,
html[data-hs-appearance="dark"] .badge.bg-soft-success {
  background: rgba(22,163,74,.2) !important; color: #4ade80 !important;
}
[data-hs-appearance="dark"] .badge.bg-soft-warning,
html[data-hs-appearance="dark"] .badge.bg-soft-warning {
  background: rgba(217,119,6,.2) !important; color: #fbbf24 !important;
}
[data-hs-appearance="dark"] .badge.bg-soft-danger,
html[data-hs-appearance="dark"] .badge.bg-soft-danger {
  background: rgba(220,38,38,.2) !important; color: #f87171 !important;
}

/* ── Buttons ──────────────────────────────────────────────────── */
[data-hs-appearance="dark"] .btn-primary,
html[data-hs-appearance="dark"] .btn-primary {
  background-color: #2696be !important;
  border-color: #2696be !important;
  color: #fff !important;
}
[data-hs-appearance="dark"] .btn-primary:hover,
html[data-hs-appearance="dark"] .btn-primary:hover {
  background-color: #1a7a9e !important;
  border-color: #1a7a9e !important;
}
[data-hs-appearance="dark"] .btn-outline-primary,
html[data-hs-appearance="dark"] .btn-outline-primary {
  color: #2696be !important;
  border-color: #2696be !important;
}
[data-hs-appearance="dark"] .btn-outline-primary:hover,
html[data-hs-appearance="dark"] .btn-outline-primary:hover {
  background: #2696be !important;
  color: #1a1a1a !important;
}

/* ── Pagination ───────────────────────────────────────────────── */
[data-hs-appearance="dark"] .page-link,
html[data-hs-appearance="dark"] .page-link {
  background: #383838 !important; border-color: #484848 !important; color: #a0a0a0 !important;
}
[data-hs-appearance="dark"] .page-item.active .page-link,
html[data-hs-appearance="dark"] .page-item.active .page-link {
  background: #2696be !important; border-color: #2696be !important; color: #fff !important;
}

/* ── Nav tabs & pills ─────────────────────────────────────────── */
[data-hs-appearance="dark"] .nav-tabs,
html[data-hs-appearance="dark"] .nav-tabs { border-bottom-color: #484848 !important; }
[data-hs-appearance="dark"] .nav-tabs .nav-link,
html[data-hs-appearance="dark"] .nav-tabs .nav-link { color: #a0a0a0 !important; }
[data-hs-appearance="dark"] .nav-tabs .nav-link.active,
html[data-hs-appearance="dark"] .nav-tabs .nav-link.active {
  color: #2696be !important;
  background: #383838 !important;
  border-color: #484848 #484848 #383838 !important;
}
[data-hs-appearance="dark"] .nav-pills .nav-link,
html[data-hs-appearance="dark"] .nav-pills .nav-link { color: #a0a0a0 !important; }
[data-hs-appearance="dark"] .nav-pills .nav-link.active,
html[data-hs-appearance="dark"] .nav-pills .nav-link.active {
  background: #2696be !important; color: #fff !important;
}

/* ── Alerts ───────────────────────────────────────────────────── */
[data-hs-appearance="dark"] .alert,
html[data-hs-appearance="dark"] .alert { color: #e0e0e0 !important; }
[data-hs-appearance="dark"] .alert-soft-primary,
html[data-hs-appearance="dark"] .alert-soft-primary {
  background: rgba(38,150,190,.15) !important; color: #2696be !important;
}

/* ── DataTables ───────────────────────────────────────────────── */
[data-hs-appearance="dark"] .dataTables_wrapper .dataTables_filter input,
[data-hs-appearance="dark"] .dataTables_wrapper .dataTables_length select,
html[data-hs-appearance="dark"] .dataTables_wrapper .dataTables_filter input,
html[data-hs-appearance="dark"] .dataTables_wrapper .dataTables_length select {
  background: #424242 !important; border-color: #555555 !important; color: #fff !important;
}
[data-hs-appearance="dark"] .dataTables_wrapper .dataTables_info,
[data-hs-appearance="dark"] .dataTables_wrapper .dataTables_paginate,
html[data-hs-appearance="dark"] .dataTables_wrapper .dataTables_info,
html[data-hs-appearance="dark"] .dataTables_wrapper .dataTables_paginate { color: #a0a0a0 !important; }
[data-hs-appearance="dark"] .dataTables_wrapper .dataTables_paginate .paginate_button.current,
html[data-hs-appearance="dark"] .dataTables_wrapper .dataTables_paginate .paginate_button.current {
  background: #2696be !important; color: #fff !important; border: none !important;
}

/* ── Charts ───────────────────────────────────────────────────── */
[data-hs-appearance="dark"] .chartjs-legend-label-text,
html[data-hs-appearance="dark"] .chartjs-legend-label-text { color: #ffffff !important; }

/* ── Scrollbar ────────────────────────────────────────────────── */
[data-hs-appearance="dark"] ::-webkit-scrollbar-track,
html[data-hs-appearance="dark"] ::-webkit-scrollbar-track { background: #242424; }
[data-hs-appearance="dark"] ::-webkit-scrollbar-thumb,
html[data-hs-appearance="dark"] ::-webkit-scrollbar-thumb { background: #484848; }

/* ------------------------------------------------------------------------------------------------------------------------ */

.theme-btn {
    display: inline-block;
    vertical-align: middle;
    background-color: var(--theme-color);
    color: var(--white);
    font-size: 17px;
    font-weight: 800;
    padding: 9px 15px 9px 30px;
    transition: all 0.4s ease-in-out;
    text-transform: capitalize;
    position: relative;
    overflow: hidden;
    text-align: center;
    border-radius: 72px;
    font-family: "Nunito", sans-serif;
    line-height: 1;
    z-index: 1;
}

@media (max-width: 575px) {
    .theme-btn {
        padding: 5px 10px 5px 20px;
        font-size: 16px;
    }
}

.theme-btn.theme-btn-2 {
    background-color: var(--theme-color-2);
}

.theme-btn.theme-btn-2::before {
    background-color: var(--header);
}

.theme-btn.theme-btn-2::after {
    background-color: var(--header);
}

.theme-btn span {
    position: relative;
    color: var(--white);
    z-index: 999;
    margin-right: 25px;
}

@media (max-width: 575px) {
    .theme-btn span {
        margin-right: 15px;
    }
}

.theme-btn i {
    position: relative;
    color: var(--header);
    z-index: 999;
    width: 48px;
    height: 48px;
    line-height: 48px;
    background-color: var(--white);
    border-radius: 50%;
}

.theme-btn::before {
    content: "";
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    height: 150%;
    border-top-left-radius: 50%;
    border-top-right-radius: 50%;
    background-color: var(--theme-color-2);
    transition: 700ms cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

.theme-btn::after {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 150%;
    height: 150%;
    border-bottom-left-radius: 50%;
    border-bottom-right-radius: 50%;
    background-color: var(--theme-color-2);
    transition-duration: 700ms;
    transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

button.theme-btn:hover,
a.theme-btn:hover {
    background-color: var(--theme-color-2);
    color: #fff !important;
}

.theme-btn:hover::before {
    top: 100%;
}

.theme-btn:hover::after {
    bottom: -50%;
}

/* --------------------------------------------
    Template Default Fonts & Fonts Styles
 ---------------------------------------------- */
body {
    font-family: "Nunito", sans-serif;
    font-size: 16px;
    font-weight: normal;
    line-height: 30px;
    color: var(--text);
    background-color: var(--white);
    padding: 0;
    margin: 0;
    overflow-x: hidden;
    font-weight: 500;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

button {
    border: none;
    background-color: transparent;
    padding: 0;
}

input:focus {
    color: var(--white);
    outline: none;
}

input {
    color: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Prompt", sans-serif;
    margin: 0px;
    padding: 0;
    color: var(--header);
    text-transform: capitalize;
    transition: all 0.4s ease-in-out;
    font-weight: 400;
}

h1 {
    font-size: 94px;
    font-weight: 700;
}

h2 {
    font-size: 48px;
    font-weight: 700;
}

.page-header .page-header-title,
.custom-header .page-header-title,
.content.container-fluid .page-header-title {
    font-family: var(--tf-font-display);
    font-size: 32px;
    line-height: 1.2;
    font-weight: 700;
    text-transform: none;
    color: var(--tf-text);
}

@media (max-width: 767px) {
    .page-header .page-header-title,
    .custom-header .page-header-title,
    .content.container-fluid .page-header-title {
        font-size: 24px;
    }
}

@media (max-width: 1199px) {
    h2 {
        font-size: 38px;
    }
}

@media (max-width: 767px) {
    h2 {
        font-size: 32px;
    }

    .author-sidebar {
        flex-direction: column;
    }

    .author-image {
        max-width: 100% !important;
    }

}

@media (max-width: 575px) {
    h2 {
        font-size: 28px;
    }
}

h3 {
    font-size: 22px;
    font-weight: 600;
    line-height: 150%;
}

@media (max-width: 575px) {
    h3 {
        font-size: 20px;
    }
}

h4 {
    font-size: 20px;
    font-weight: 600;
}

h5 {
    font-size: 18px;
    font-weight: 600;
}

h6 {
    font-size: 16px;
    font-weight: 500;
}

a {
    text-decoration: none;
    outline: none !important;
    cursor: pointer;
    color: var(--header);
    transition: all 0.4s ease-in-out;
}

p {
    margin: 0px;
    transition: all 0.4s ease-in-out;
}

.preloader {
    align-items: center;
    cursor: default;
    display: flex;
    height: 100%;
    justify-content: center;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 9999999;
}

.preloader .animation-preloader {
    z-index: 1000;
}

.preloader .animation-preloader .spinner {
    animation: spinner 1s infinite linear;
    border-radius: 50%;
    border: 3px solid rgba(0, 0, 0, 0.2);
    border-top-color: var(--theme-color);
    height: 9em;
    margin: 0 auto 3.5em auto;
    width: 9em;
}

@media (max-width: 767px) {
    .preloader .animation-preloader .spinner {
        width: 7.5em;
        height: 7.5em;
        margin: 0 auto 1.5em auto;
    }
}

.preloader .animation-preloader .txt-loading {
    font: bold 5em "Prompt", sans-serif, "Nunito", sans-serif;
    text-align: center;
    user-select: none;
}

@media (max-width: 767px) {
    .preloader .animation-preloader .txt-loading {
        font-size: 2.5em;
    }
}

.preloader .animation-preloader .txt-loading .letters-loading {
    color: var(--theme-color);
    position: relative;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(2):before {
    animation-delay: 0.2s;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(3):before {
    animation-delay: 0.4s;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(4):before {
    animation-delay: 0.6s;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(5):before {
    animation-delay: 0.8s;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(6):before {
    animation-delay: 1s;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(7):before {
    animation-delay: 1.2s;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(8):before {
    animation-delay: 1.4s;
}

.preloader .animation-preloader .txt-loading .letters-loading::before {
    animation: letters-loading 4s infinite;
    color: var(--header);
    content: attr(data-text-preloader);
    left: 0;
    opacity: 0;
    font-family: "Prompt", sans-serif;
    position: absolute;
    top: -3px;
    transform: rotateY(-90deg);
}

.preloader p {
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 8px;
    color: var(--theme-color);
}

.preloader .loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-size: 0;
    z-index: 1;
    pointer-events: none;
}

.preloader .loader .row {
    height: 100%;
}

.preloader .loader .loader-section {
    padding: 0px;
}

.preloader .loader .loader-section .bg {
    background-color: var(--bg);
    height: 100%;
    left: 0;
    width: 100%;
    transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
}

.preloader.loaded .animation-preloader {
    opacity: 0;
    transition: 0.3s ease-out;
}

.preloader.loaded .loader-section .bg {
    width: 0;
    transition: 0.7s 0.3s allcubic-bezier(0.1, 0.1, 0.1, 1);
}

.header-search-bar {
    height: 270px;
    position: fixed;
    top: -200%;
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--white);
    transition: 0.3s;
}

.header-search-bar.search-open {
    top: 0;
}

.contact-search-form-box {
    margin-top: 50px;
}

.contact-search-form-box form {
    position: relative;
}

.contact-search-form-box form button {
    position: absolute;
    right: 30px;
    top: 15px;
    font-size: 18px;
}

.search-close {
    position: absolute;
    right: 50px;
    top: 35px;
    font-size: 50px;
    color: var(--header);
    font-weight: 300;
    width: 45px;
    height: 45px;
}

.search-bar .contact-search-form-box input {
    border: none;
    width: 100%;
    outline: none;
    color: var(--header);
    border-bottom: 1px solid var(--border);
    font-size: 24px;
    padding-bottom: 30px;
    font-weight: 400;
    line-height: 1;
}

@media (max-width: 767px) {
    .search-bar .contact-search-form-box input {
        font-size: 22px;
    }
}

.search-bar .contact-search-form-box input::placeholder {
    color: var(--header);
}

.search-bar .contact-search-form-box i {
    color: var(--theme-color);
}

.search-bar .contact-search-form-box p {
    color: #666C78;
    padding-top: 15px;
}

.search-bar .search-bar-title {
    font-size: 25px;
}

.back-to-top {
    border-radius: 50%;
    background-color: var(--theme-color);
    width: 50px;
    height: 50px;
    line-height: 50px;
    color: var(--white);
    font-size: 18px;
    position: fixed;
    display: inline-block;
    z-index: 9999;
    right: 30px;
    bottom: 30px;
    transition: all 0.4s ease-in-out;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.back-to-top:hover {
    background-color: var(--header);
    color: var(--white);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translate(0);
}

.section-title {
    position: relative;
    z-index: 99;
    margin-bottom: 30px;
    margin-top: -7px;
}

@media (max-width: 767px) {
    .section-title {
        text-align: center;
        margin-bottom: 0;
    }
}

.section-title span {
    font-size: 16px;
    color: var(--theme-color);
    font-weight: 600;
    line-height: 1;
    font-family: "Nunito", sans-serif;
    margin-bottom: 15px;
    display: inline-block;
}

.section-title-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

@media (max-width: 991px) {
    .section-title-area {
        flex-wrap: wrap;
        gap: 30px;
        margin-bottom: 0;
        justify-content: center;
    }

    .author-email {
        display: block;
    }
}

.section-title-area .section-title {
    margin-bottom: 0;
}

.center {
    text-align: center;
    margin: 0 auto;
}

.section-bg {
    background-color: var(--bg) !important;
}

.section-bg-2 {
    background-color: #FFEEE3;
}

.sect-bg {
    background-color: rgb(239, 238, 250);
}

.footer-bg {
    background-color: var(--header);
}

.section-padding {
    padding: 120px 0;
}

@media (max-width: 1199px) {
    .section-padding {
        padding: 100px 0;
    }
}

@media (max-width: 991px) {
    .section-padding {
        padding: 80px 0;
    }
}

@keyframes width {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}

@-webkit-keyframes width {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}

@keyframes arryUpDown {
    0% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(10px);
    }
}

.animation__arryUpDown {
    animation: arryUpDown 2s ease infinite alternate;
}

@keyframes arryLeftRight {
    0% {
        transform: translateX(-10px);
    }
    100% {
        transform: translateX(10px);
    }
}

.animation__arryLeftRight {
    animation: arryLeftRight 2s ease infinite alternate;
}

@keyframes shine {
    from {
        -webkit-mask-position: 150%;
    }
    to {
        -webkit-mask-position: -50%;
    }
}

@keyframes cir36 {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes width {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}

@-webkit-keyframes width {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}

@keyframes bounce-x {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    50% {
        -webkit-transform: translateX(30px);
        transform: translateX(30px);
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

.bounce-x {
    -webkit-animation: bounce-x 7s infinite linear;
    animation: bounce-x 7s infinite linear;
}

.GlidingArrow {
    -webkit-animation: slide 5s linear infinite;
    animation: slide 5s linear infinite;
}

.delay1 {
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
}

.delay2 {
    -webkit-animation-delay: 3s;
    animation-delay: 3s;
}

.delay3 {
    -webkit-animation-delay: 4s;
    animation-delay: 4s;
}

.delay4 {
    -webkit-animation-delay: 5s;
    animation-delay: 5s;
}

.delay5 {
    -webkit-animation-delay: 6s;
    animation-delay: 6s;
}

/* Defining animation Keyframes */
@-webkit-keyframes slide {
    0% {
        opacity: 0;
        transform: translateX(-150);
    }
    20% {
        opacity: 1;
        transform: translateX(-90);
    }
    80% {
        opacity: 1;
        transform: translateX(90);
    }
    100% {
        opacity: 0;
        transform: translateX(150);
    }
}

@keyframes slide {
    0% {
        opacity: 0;
        transform: translateX(-150);
    }
    20% {
        opacity: 1;
        transform: translateX(-90);
    }
    80% {
        opacity: 1;
        transform: translateX(90);
    }
    100% {
        opacity: 0;
        transform: translateX(150);
    }
}

/*img-animation**********************/
.img-custom-anim-left {
    animation: img-anim-left 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
    opacity: 0;
}

@keyframes img-anim-left {
    0% {
        transform: translateX(-5%);
        clip-path: inset(0 100% 0 0);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        clip-path: inset(0 0 0 0);
        opacity: 1;
    }
}

.img-custom-anim-right {
    animation: img-anim-right 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
    opacity: 0;
}

@keyframes img-anim-right {
    0% {
        transform: translateX(5%);
        clip-path: inset(0 0 0 100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        clip-path: inset(0 0 0 0);
        opacity: 1;
    }
}

.img-custom-anim-left {
    animation: img-anim-left 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
    opacity: 0;
}

@keyframes img-anim-left {
    0% {
        transform: translateX(-5%);
        clip-path: inset(0 100% 0 0);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        clip-path: inset(0 0 0 0);
        opacity: 1;
    }
}

.img-custom-anim-top {
    animation: img-anim-top 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1);
    opacity: 0;
}

@keyframes img-anim-top {
    0% {
        transform: translateY(-5%);
        clip-path: inset(0 0 100% 0);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        clip-path: inset(0 0 0 0);
        opacity: 1;
    }
}

.img-custom-anim-bottom {
    animation: img-anim-bottom 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1);
    opacity: 0;
}

@keyframes img-anim-bottom {
    0% {
        transform: translateY(5%);
        clip-path: inset(100% 0 0 0);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        clip-path: inset(0 0 0 0);
        opacity: 1;
    }
}

@-webkit-keyframes rippleOne {
    70% {
        -webkit-box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
        box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
    }
    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
        box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
    }
}

@keyframes rippleOne {
    70% {
        -webkit-box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
        box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
    }
    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
        box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
    }
}

@keyframes cir36 {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes rounded {
    50% {
        transform: rotate(15deg);
    }
}

@keyframes up-down {
    0% {
        transform: translateY(10px);
    }
    100% {
        transform: translateY(-10px);
    }
}

@-webkit-keyframes spinner {
    to {
        -webkit-transform: rotateZ(360deg);
        transform: rotateZ(360deg);
    }
}

@keyframes spinner {
    to {
        -webkit-transform: rotateZ(360deg);
        transform: rotateZ(360deg);
    }
}

@-webkit-keyframes letters-loading {
    0%, 75%, 100% {
        opacity: 0;
        transform: rotateY(-90deg);
    }
    25%, 50% {
        opacity: 1;
        transform: rotateY(0deg);
    }
}

@keyframes letters-loading {
    0%, 75%, 100% {
        opacity: 0;
        transform: rotateY(-90deg);
    }
    25%, 50% {
        opacity: 1;
        transform: rotateY(0deg);
    }
}

@keyframes loaderspin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes tpswing {
    0% {
        -webkit-transform: rotate(20deg);
        -ms-transform: rotate(20deg);
        transform: rotate(20deg);
    }
    100% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

@keyframes width {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}

@-webkit-keyframes width {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}

@-webkit-keyframes loaderspin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes loaderpulse {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.2);
    }
}

@keyframes rounded {
    50% {
        transform: rotate(20deg);
    }
}

@keyframes cir36 {
    100% {
        transform: rotate(360deg);
    }
}

.float-bob-y {
    -webkit-animation-name: float-bob-y;
    animation-name: float-bob-y;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

@-webkit-keyframes float-bob-y {
    0% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }
    50% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }
    100% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }
}

@keyframes float-bob-y {
    0% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }
    50% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }
    100% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }
}

.float-bob-x {
    -webkit-animation-name: float-bob-x;
    animation-name: float-bob-x;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

@-webkit-keyframes float-bob-x {
    0% {
        -webkit-transform: translateX(0px);
        transform: translateX(30px);
    }
    50% {
        -webkit-transform: translateX(10px);
        transform: translateX(10px);
    }
    100% {
        -webkit-transform: translateX(30px);
        transform: translateX(30px);
    }
}

@keyframes float-bob-x {
    0% {
        -webkit-transform: translateX(30px);
        transform: translateX(30px);
    }
    50% {
        -webkit-transform: translateX(10px);
        transform: translateX(10px);
    }
    100% {
        -webkit-transform: translateX(30px);
        transform: translateX(30px);
    }
}

@keyframes bounce-x {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    50% {
        -webkit-transform: translateX(30px);
        transform: translateX(30px);
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

.bounce-x {
    -webkit-animation: bounce-x 7s infinite linear;
    animation: bounce-x 7s infinite linear;
}

@media (max-width: 1199px) {
    .menu-thumb {
        display: none !important;
    }
}

.header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}

.header-main .main-menu ul {
    margin-bottom: 0;
}

.header-main .main-menu ul li {
    position: relative;
    list-style: none;
    display: inline-block;
    margin-inline-end: 40px;
}

@media (max-width: 1899px) {
    .header-main .main-menu ul li {
        margin-inline-end: 35px;
    }
}

@media (max-width: 1600px) {
    .header-main .main-menu ul li {
        margin-inline-end: 30px;
    }
}

@media (max-width: 1399px) {
    .header-main .main-menu ul li {
        margin-inline-end: 25px;
    }
}

.header-main .main-menu ul li:last-child {
    margin-inline-end: 0;
}

.header-main .main-menu ul li a {
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    color: var(--header);
    padding: 20px 0;
    text-align: left;
    position: relative;
    text-transform: capitalize;
    transition: all 0.4s ease-in-out;
    font-family: "Nunito", sans-serif;
}

.header-main .main-menu ul li a .head-icon {
    margin-left: 0;
    margin-right: 5px;
}

.header-main .main-menu ul li a i {
    margin-left: 5px;
}

.header-main .main-menu ul li a:hover {
    color: var(--theme-color) !important;
}

.header-main .main-menu ul li .submenu {
    position: absolute;
    top: 100%;
    inset-inline-start: 0;
    min-width: 250px;
    background: var(--white);
    z-index: 99999;
    visibility: hidden;
    opacity: 0;
    transform-origin: top center;
    color: var(--header);
    box-shadow: 0px 0px 40px 0px rgba(11, 13, 17, 0.08);
    transform: translateY(10px);
    transition: all 0.4s ease-in-out;
    padding: 30px 30px;
    border-radius: 5px;
}

.header-main .main-menu ul li .submenu li {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
}

.header-main .main-menu ul li .submenu li:not(:last-child) {
    padding-bottom: 15px;
}

.header-main .main-menu ul li .submenu li a {
    position: relative;
    z-index: 11;
    font-size: 16px;
    font-weight: 700;
    color: var(--header);
    padding: 0 0;
    padding-bottom: 0;
    padding-top: 0;
    text-transform: capitalize;
    font-family: "Nunito", sans-serif;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-main .main-menu ul li .submenu li a:hover {
    color: var(--white) !important;
}

.header-main .main-menu ul li .submenu li:last-child a {
    border: none;
}

.header-main .main-menu ul li .submenu li .submenu {
    inset-inline-start: 113%;
    top: 0;
    visibility: hidden;
    opacity: 0;
}

.header-main .main-menu ul li .submenu li:hover > a {
    color: var(--theme-color) !important;
}

.header-main .main-menu ul li .submenu li:hover > a::after {
    color: var(--theme-color);
}

.header-main .main-menu ul li .submenu li:hover > .submenu {
    -webkit-transform: translateY(1);
    -moz-transform: translateY(1);
    -ms-transform: translateY(1);
    -o-transform: translateY(1);
    transform: translateY(1);
    visibility: visible;
    opacity: 1;
}

.header-main .main-menu ul li .submenu li.has-dropdown > a::after {
    position: absolute;
    top: 50%;
    inset-inline-end: 25px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    color: var(--theme-color);
}

.header-main .main-menu ul li .has-homemenu {
    width: 800px;
    padding: 30px 30px 10px 30px;
    opacity: 0;
    left: -250px;
    visibility: hidden;
    padding: 30px 30px 10px 30px;
}

@media (max-width: 991px) {
    .header-main .main-menu ul li .has-homemenu .homemenu-items {
        flex-wrap: wrap;
    }
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu {
    position: relative;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb {
    position: relative;
    overflow: hidden;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb img {
    width: 100%;
    transition: all 0.4s ease-in-out;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb img:hover {
    transform: scale(1.1);
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-title {
    text-align: center;
    margin: 15px auto;
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-title a {
    color: var(--header);
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-title a:hover {
    color: var(--theme-color) !important;
}

.header-main .main-menu ul li:hover > a {
    color: var(--theme-color);
}

.header-main .main-menu ul li:hover > a::after {
    color: var(--theme-color);
}

.header-main .main-menu ul li:hover > .submenu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0px);
}

.header-main .header-right {
    gap: 45px;
}

@media (max-width: 1399px) {
    .header-main .header-right {
        gap: 20px;
    }
}

.header-main .header-right .search-icon {
    color: var(--header);
    font-size: 18px;
}

.header-main .sidebar__toggle {
    cursor: pointer;
    font-size: 20px;
    color: var(--header);
}

.header-section {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background-color: transparent;
}

.header-section .container-fluid {
    padding: 0 150px;
}

@media (max-width: 1899px) {
    .header-section .container-fluid {
        padding: 0 50px;
    }
}

@media (max-width: 1399px) {
    .header-section .container-fluid {
        padding: 0 40px;
    }
}

@media (max-width: 1199px) {
    .header-section .container-fluid {
        padding: 0 30px;
    }
}

.header-section.header-inner {
    position: sticky !important;
    top: 0;
    z-index: 1000;
    background: var(--tf-surface, #fff);
}

.header-top-section {
    background: #1D231F;
    padding: 12px 0;
}

@media (max-width: 991px) {
    .header-top-section {
        display: none;
    }
}

.header-top-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-top-wrapper .top-left {
    display: flex;
    align-items: center;
    gap: 30px;
}

.header-top-wrapper .top-left li {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.65);
    text-transform: capitalize;
}

.header-top-wrapper .top-left li a {
    color: rgba(255, 255, 255, 0.65);
}

.header-top-wrapper .top-left li i {
    margin-right: 8px;
}

.header-top-wrapper .social-icon {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-top-wrapper .social-icon a {
    color: rgba(255, 255, 255, 0.65);
}

.header-top-wrapper .social-icon a:hover {
    color: var(--theme-color-2);
}

.header-1 .header-right .contact-items {
    display: flex;
    align-items: center;
    gap: 15px;
}

@media (max-width: 1600px) {
    .header-1 .header-right .contact-items {
        display: none;
    }
}

.header-1 .header-right .contact-items .icon {
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    background-color: var(--theme-color-2);
    text-align: center;
}

.header-1 .header-right .contact-items .content span {
    color: #6F7373;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 2px;
}

.header-1 .header-right .contact-items .content h6 {
    font-size: 16px;
    font-weight: 800;
    font-family: "Nunito", sans-serif;
}

.header-1 .search-toggle {
    color: var(--header);
    font-size: 16px;
}

.header-1 .sidebar__toggle {
    cursor: pointer;
}

.header-1 .sidebar__toggle .header-bar {
    position: relative;
    width: 31px;
    height: 18px;
}

.header-1 .sidebar__toggle .header-bar span {
    position: absolute;
    width: 100%;
    height: 2px;
    display: inline-block;
    transition: all 0.3s;
    left: 0;
    background: var(--header);
    overflow: hidden;
}

.header-1 .sidebar__toggle .header-bar span:first-child {
    top: 0;
    background: var(--header);
    left: 16px;
    width: 15px;
}

.header-1 .sidebar__toggle .header-bar span:nth-child(2) {
    top: 44%;
    background: var(--header);
    width: 30px;
}

.header-1 .sidebar__toggle .header-bar span:last-child {
    bottom: 0;
    background: var(--header);
    width: 15px;
}

.header-1 .sidebar__toggle .header-bar.active span:first-child {
    transform: rotate(45deg) translate(3px, 9px);
}

.header-1 .sidebar__toggle .header-bar.active span:nth-child(2) {
    opacity: 0;
}

.header-1 .sidebar__toggle .header-bar.active span:last-child {
    transform: rotate(-45deg) translate(3px, -9px);
}

.header-1 .sidebar__toggle .header-bar:hover {
    cursor: pointer;
}

.header-1 .theme-btn {
    padding: 7px 10px 7px 25px;
}

@media (max-width: 1199px) {
    .header-1 .theme-btn {
        display: none;
    }
}

.header-1.header-2 .header-main .main-menu ul li a {
    color: var(--white);
}

.header-1.header-2 .header-main .main-menu ul li a:hover {
    color: var(--theme-color) !important;
}

.header-1.header-2 .header-main .main-menu ul li .submenu {
    color: var(--header);
}

.header-1.header-2 .header-main .main-menu ul li .submenu li a {
    color: var(--header);
}

.header-1.header-2 .header-main .main-menu ul li .submenu li a:hover {
    color: var(--theme-color) !important;
}

.header-1.header-2 .header-main .header-right .search-icon {
    color: var(--white);
}

.header-1.header-2 .header-logo {
    display: none;
}

.header-1.header-2 .sidebar__toggle .header-bar span {
    background: var(--white);
}

.header-1.header-2 .sidebar__toggle .header-bar span:first-child {
    background: var(--white);
}

.header-1.header-2 .sidebar__toggle .header-bar span:nth-child(2) {
    background: var(--white);
}

.header-1.header-2 .sidebar__toggle .header-bar span:last-child {
    background: var(--white);
}

.header-1.header-2 .header-right .contact-items .content span {
    color: var(--white);
}

.header-1.header-2 .header-right .contact-items .content h6 {
    color: var(--white);
}

.header-1.header-2 .header-right .contact-items .content h6 a {
    color: var(--white);
}

.header-1.header-2 .header-right .search-toggle {
    color: var(--white);
}

.header-1.header-3 .mean__menu-wrapper {
    border-radius: 58px;
    border: 1px solid rgba(255, 255, 255, 0.17);
    background: rgba(255, 255, 255, 0.06);
    padding-left: 35px;
    padding-right: 35px;
}

.header-1.header-4 .header-main {
    padding: 0;
}

@media (max-width: 1199px) {
    .header-1.header-4 .header-main {
        padding: 10px 0;
    }
}

.header-1.header-4 .theme-btn {
    border-radius: 0;
    padding: 15px 30px;
}

.header-1.header-4 .theme-btn i {
    border-radius: 0;
    width: initial;
    height: initial;
    background-color: transparent;
    color: var(--white);
}

.header-1.header-4 .theme-btn span {
    margin-right: 12px;
}

.sticky {
    position: fixed !important;
    top: 0 !important;
    left: 0;
    width: 100%;
    z-index: 9999;
    transition: all 0.9s;
    background-color: var(--white);
    -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
    animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
    box-shadow: var(---box-shadow);
}

.sticky.header-2 .header-main .main-menu ul li a {
    color: var(--header);
}

.sticky.header-2 .header-main .main-menu ul li a:hover {
    color: var(--theme-color) !important;
}

.sticky.header-2 .header-main .main-menu ul li .submenu {
    color: var(--header);
}

.sticky.header-2 .header-main .main-menu ul li .submenu li a {
    color: var(--header);
}

.sticky.header-2 .header-main .main-menu ul li .submenu li a:hover {
    color: var(--theme-color) !important;
}

.sticky.header-2 .header-main .header-right .search-icon {
    color: var(--header);
}

.sticky.header-2 .header-logo {
    display: block;
}

.sticky.header-2 .header-logo-2 {
    display: none;
}

.sticky.header-2 .header-right .contact-items .content span {
    color: var(--header);
}

.sticky.header-2 .header-right .contact-items .content h6 {
    color: var(--header);
}

.sticky.header-2 .header-right .contact-items .content h6 a {
    color: var(--header);
}

.sticky.header-2 .header-right .search-toggle {
    color: var(--header);
}

.sticky.header-2 .sidebar__toggle .header-bar span {
    background: var(--header);
}

.sticky.header-2 .sidebar__toggle .header-bar span:first-child {
    background: var(--header);
}

.sticky.header-2 .sidebar__toggle .header-bar span:nth-child(2) {
    background: var(--header);
}

.sticky.header-2 .sidebar__toggle .header-bar span:last-child {
    background: var(--header);
}

.sticky.header-3 .mean__menu-wrapper {
    border-radius: 0;
    border: none;
    background: transparent;
    padding-left: 0;
    padding-right: 0;
}

.sticky .dash i {
    color: var(--black);
}

.offcanvas__info {
    background: var(--white) none repeat scroll 0 0;
    border-left: 2px solid var(--theme-color);
    position: fixed;
    right: 0;
    top: 0;
    width: 400px;
    height: 100%;
    -webkit-transform: translateX(calc(100% + 80px));
    -moz-transform: translateX(calc(100% + 80px));
    -ms-transform: translateX(calc(100% + 80px));
    -o-transform: translateX(calc(100% + 80px));
    transform: translateX(calc(100% + 80px));
    -webkit-transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
    -moz-transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
    transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
    z-index: 99999;
    overflow-y: scroll;
    overscroll-behavior-y: contain;
    scrollbar-width: none;
}

.offcanvas__info.info-open {
    opacity: 1;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
}

.offcanvas__logo a img {
    width: 150px;
}

.offcanvas__wrapper {
    position: relative;
    height: 100%;
    padding: 30px 30px;
}

.offcanvas__wrapper .offcanvas-title {
    font-size: 32px;
    margin-bottom: 15px;
}

.offcanvas__wrapper .offcanvas__content p {
    color: var(--header);
    margin-bottom: 30px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__close {
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    border-radius: 50%;
    background-color: var(--theme-color);
    position: relative;
    z-index: 9;
    cursor: pointer;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__close i {
    color: var(--white);
}

.offcanvas__wrapper .offcanvas__content .social-icon {
    margin-top: 30px;
    gap: 10px;
}

.offcanvas__wrapper .offcanvas__content .social-icon a {
    width: 52px;
    height: 52px;
    line-height: 52px;
    text-align: center;
    font-size: 16px;
    display: block;
    background: transparent;
    color: var(--text);
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    text-align: center;
    border: 1px solid rgba(21, 20, 21, 0.14);
    border-radius: 5px;
}

.offcanvas__wrapper .offcanvas__content .social-icon a:hover {
    background-color: var(--theme-color);
    color: var(--white);
    border: 1px solid var(--theme-color);
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact {
    margin-top: 20px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact .form-clt input, .offcanvas__wrapper .offcanvas__content .offcanvas__contact .form-clt textarea {
    border: none;
    outline: none;
    border: 1px solid rgba(21, 20, 21, 0.14);
    border-radius: 5px;
    color: var(--text);
    font-weight: 500;
    padding: 14px 20px;
    line-height: 1;
    width: 100%;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact .form-clt textarea {
    padding-bottom: 100px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact span {
    text-transform: initial;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact .header-button {
    display: flex;
    align-items: center;
}

.offcanvas__wrapper .offcanvas__content .offcanvas-button {
    margin-top: 300px;
    display: flex;
    align-items: center;
    gap: 20px;
}

@media (max-width: 1399px) {
    .offcanvas__wrapper .offcanvas__content .offcanvas-button {
        margin-top: 30px;
    }
}

@media (max-width: 575px) {
    .offcanvas__wrapper .offcanvas__content .offcanvas-button {
        margin-top: 20px;
        margin-bottom: 10px;
    }
}

.offcanvas__overlay {
    position: fixed;
    height: 100%;
    width: 100%;
    background: #151515;
    z-index: 900;
    top: 0;
    opacity: 0;
    visibility: hidden;
    right: 0;
}

.offcanvas__overlay.overlay-open {
    opacity: 0.8;
    visibility: visible;
}

@media (max-width: 450px) {
    .offcanvas__info {
        width: 280px;
    }
}

@media (max-width: 575px) {
    .offcanvas__wrapper {
        padding: 20px;
    }
}

.breadcrumb-wrapper {
    position: relative;
    overflow: hidden;
    z-index: 9;
}

.breadcrumb-wrapper::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: linear-gradient(266deg, rgba(0, 0, 0, 0) 38.52%, rgba(0, 0, 0, 0.82) 81.13%);
}

.breadcrumb-wrapper .container-fluid {
    padding: 0 150px;
}

@media (max-width: 1600px) {
    .breadcrumb-wrapper .container-fluid {
        padding: 0 50px;
    }
}

@media (max-width: 1399px) {
    .breadcrumb-wrapper .container-fluid {
        padding: 0 40px;
    }
}

@media (max-width: 1199px) {
    .breadcrumb-wrapper .container-fluid {
        padding: 0 30px;
    }
}

.breadcrumb-wrapper .page-heading {
    position: relative;
    z-index: 99;
}

@media (max-width: 991px) {
    .breadcrumb-wrapper .page-heading {
        text-align: center;
    }
}

.breadcrumb-wrapper .page-heading .breadcrumb-items {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 9;
    margin-bottom: 20px;
}
.slash-icon {
    font-family: 'Font Awesome 5 Free', sans-serif;
    font-weight: 600;
    display: inline-block;
    margin: 0;
}

@media (max-width: 991px) {
    .breadcrumb-wrapper .page-heading .breadcrumb-items {
        justify-content: center;
    }
}

.breadcrumb-wrapper .page-heading .breadcrumb-items li {
    font-size: 24px;
    color: var(--white);
    font-weight: 700;
    text-transform: capitalize;
    font-family: "Nunito", sans-serif;
}

@media (max-width: 575px) {
    .breadcrumb-wrapper .page-heading .breadcrumb-items li {
        font-size: 16px;
    }
}

.breadcrumb-wrapper .page-heading .breadcrumb-items li a {
    color: var(--theme-color-2);
    transition: all 0.4s ease-in-out;
}

.breadcrumb-wrapper .page-heading .breadcrumb-items li a:hover {
    color: var(--theme-color);
}

.breadcrumb-wrapper .page-heading .breadcrumb-items li i {
    font-size: 20px;
    color: var(--white);
}

@media (max-width: 575px) {
    .breadcrumb-wrapper .page-heading .breadcrumb-items li i {
        font-size: 16px;
    }
}

.breadcrumb-wrapper .page-heading h1 {
    font-size: 48px;
    font-weight: bold;
    color: var(--white);
}

.breadcrumb-wrapper .plane-shape {
    position: absolute;
    bottom: 0;
    right: 70px;
}

@media (max-width: 1199px) {
    .breadcrumb-wrapper .plane-shape {
        display: none;
    }
}

.error-items {
    text-align: center;
}

.error-items .error-image {
    max-width: 672px;
    margin: 0 auto 50px;
    text-align: center;
}

.error-items .error-image img {
    width: 100%;
    height: 100%;
}

.error-items h2 {
    margin-bottom: 15px;
    font-size: 32px;
    font-weight: 600;
}

.error-items p {
    font-weight: 500;
    margin-bottom: 30px;
}

.mean-container a.meanmenu-reveal {
    display: none;
}

.mean-container .mean-nav {
    background: none;
    margin-top: 0;
}

.mean-container .mean-bar {
    padding: 0;
    min-height: auto;
    background: none;
}

.mean-container .mean-nav > ul {
    padding: 0;
    margin: 0;
    width: 100%;
    list-style-type: none;
    display: block !important;
}

.mean-container .mean-nav > ul .homemenu {
    position: relative;
}

.mean-container .mean-nav > ul .homemenu .homemenu-thumb {
    position: relative;
    width: 280px;
}

.mean-container .mean-nav > ul .homemenu .homemenu-thumb .demo-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    gap: 10px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
}

.mean-container .mean-nav > ul .homemenu .homemenu-thumb .demo-button .theme-btn {
    padding: 10px 30px;
    color: var(--white) !important;
    width: initial;
    font-size: 14px;
    text-align: center;
}

.mean-container .mean-nav > ul .homemenu .homemenu-thumb .demo-button .theme-btn:hover {
    color: var(--white) !important;
}

.mean-container .mean-nav > ul .homemenu .homemenu-thumb::before {
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(99, 92, 92, 0)), to(#292930));
    background: linear-gradient(to bottom, rgba(99, 92, 92, 0) 0%, #292930 100%);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    overflow: hidden;
    opacity: 0;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    content: "";
}

.mean-container .mean-nav > ul .homemenu .homemenu-thumb:hover::before {
    visibility: visible;
    opacity: 1;
}

.mean-container .mean-nav > ul .homemenu .homemenu-thumb:hover .demo-button {
    opacity: 1;
    visibility: visible;
    margin-top: 0;
}

.mean-container .mean-nav > ul .homemenu .homemenu-thumb:hover .homemenu-btn {
    opacity: 1;
    visibility: visible;
    bottom: 50%;
    transform: translateY(50%);
}

.mean-container .mean-nav > ul .homemenu .homemenu-thumb img {
    width: 100%;
}

.mean-container .mean-nav > ul .homemenu .homemenu-content .homemenu-title {
    margin-top: 15px;
    display: inline-block;
    font-size: 16px;
}

.mean-container a.meanmenu-reveal {
    display: none !important;
}

.mean-container .mean-nav ul li a {
    width: 100%;
    padding: 10px 0;
    color: var(--header);
    font-size: 16px;
    line-height: 1.5;
    font-weight: 700;
}

.mean-container .mean-nav ul li a.border-none {
    border: none;
}

.mean-container .mean-nav ul li a:hover {
    color: var(--theme-color);
}

.mean-container .mean-nav ul li a .head-icon {
    display: none;
}

.mean-container .mean-nav ul li a:last-child {
    border-bottom: 0;
}

.mean-container .mean-nav ul li a:hover {
    color: var(--theme-color);
}

.mean-container .mean-nav ul li a.mean-expand {
    margin-top: 5px;
    padding: 0 !important;
}

.mean-container .mean-nav ul li > a > i {
    display: none;
}

.mean-container .mean-nav ul li > a.mean-expand i {
    display: inline-block;
}

.mean-container .mean-nav > ul > li:first-child > a {
    border-top: 0;
}

.mean-container .mean-nav ul li a.mean-expand.mean-clicked i {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transition: all 0.4s ease-in-out;
}

.mean-container .mean-nav ul li .mega-menu li a {
    height: 200px;
    width: 100%;
    padding: 0;
    border-top: 0;
    margin-bottom: 20px;
}

@media (max-width: 1199px) {
    .mean-container .mean-nav ul li.menu-thumb {
        display: none;
    }
}

.hero-1 {
    background: rgba(99, 171, 69, 0.12);
    padding: 200px 0 0;
    position: relative;
}

@media (max-width: 767px) {
    .hero-1 {
        padding-top: 150px;
    }

    .author-container .nav-tabs {
        padding: 10px 10px !important;
    }

    .author-container .nav-tabs .nav-link {
        padding: 2px 15px;
    }

    .booking-select {
        flex-direction: column;
        align-items: flex-start;
    }

    .package-container {
        padding: 20px 0 !important;
    }

    .amazing-tour-items .content {
        padding: 13px;
    }

    .amazing-tour-items {
        height: auto !important;
    }

    .author-section {
        padding: 25px 0 100px;
    }

    .author-title {
        padding: 0 16px;
    }
}

@media (max-width: 575px) {
    .hero-1 {
        padding-top: 120px;
    }
}

.hero-1 .plane-shape {
    position: absolute;
    top: 20%;
    left: 40%;
    transform: translateX(-50%);
    z-index: -1;
}

@media (max-width: 1199px) {
    .hero-1 .plane-shape {
        display: none;
    }
}

.hero-1 .offer-shape {
    position: absolute;
    right: 10%;
    top: 20%;
    animation: bounce-x 7s infinite linear;
}

@media (max-width: 1199px) {
    .hero-1 .offer-shape {
        display: none;
    }
}

.hero-1 .container-fluid {
    padding: 0 150px;
}

@media (max-width: 1600px) {
    .hero-1 .container-fluid {
        padding: 0 50px;
    }
}

@media (max-width: 1399px) {
    .hero-1 .container-fluid {
        padding: 0 40px;
    }
}

@media (max-width: 1199px) {
    .hero-1 .container-fluid {
        padding: 0 30px;
    }
}

.hero-1 .hero-content {
    position: relative;
    z-index: 99;
}

@media (max-width: 767px) {
    .hero-1 .hero-content {
        margin: 0 auto;
        text-align: center;
    }
}

.hero-1 .hero-content h6 {
    font-size: 30px;
    font-weight: 600;
    color: var(--theme-color);
    font-family: "Nunito", sans-serif;
    display: inline-block;
    margin-bottom: 10px;
}

@media (max-width: 767px) {
    .hero-1 .hero-content h1 {
        font-size: 70px;
    }
}

@media (max-width: 575px) {
    .hero-1 .hero-content h1 {
        font-size: 50px;
    }
}

.hero-1 .hero-content h1 span {
    font-weight: 500;
}

.hero-1 .hero-content p {
    font-size: 20px;
    max-width: 560px;
    margin-top: 10px;
}

@media (max-width: 767px) {
    .hero-1 .hero-content p {
        font-size: 18px;
    }
}

@media (max-width: 575px) {
    .hero-1 .hero-content p {
        font-size: 16px;
    }
}

.hero-1 .booking-list-area {
    border-radius: 12px;
    background: var(--white);
    box-shadow: 0px 4px 85.6px 17px rgba(0, 0, 0, 0.11);
    position: relative;
    z-index: 9;
    padding: 40px;
    width: 1320px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 50px;
    z-index: 99;
}

@media (max-width: 1399px) {
    .hero-1 .booking-list-area {
        width: 1130px;
    }
}

@media (max-width: 1199px) {
    .hero-1 .booking-list-area {
        width: initial;
        flex-wrap: wrap;
        gap: 50px;
        justify-content: start;
    }
}

.hero-1 .booking-list-area .booking-list {
    display: flex;
    gap: 15px;
    max-width: 155px;
    width: 100%;
}

@media (max-width: 1199px) {
    .hero-1 .booking-list-area .booking-list {
        max-width: initial;
        flex-basis: 20%;
    }
}

.hero-1 .booking-list-area .booking-list .content h5 {
    font-size: 14px;
    font-weight: 600;
    color: #8E8F8F;
    font-family: "Nunito", sans-serif;
}

.hero-1 .booking-list-area .form-clt .nice-select {
    padding: 0;
    font-size: 16px;
    text-transform: capitalize;
    border-radius: 0;
    background-color: transparent;
    border: none;
    box-shadow: none;
    font-size: 16px;
    font-family: "Nunito", sans-serif;
    color: var(--header);
    font-weight: 800;
}

.hero-1 .booking-list-area .form-clt .nice-select::after {
    right: -30px;
    border-bottom: 1px solid var(--header);
    border-right: 1px solid var(--header);
    width: 9px;
    height: 9px;
}

.hero-1 .booking-list-area .form-clt .nice-select .list {
    width: 100%;
    background-color: var(--bg);
    z-index: 9999;
}

.hero-1 .booking-list-area .form-clt .nice-select .focus {
    background-color: transparent;
    font-weight: 400;
    color: var(--text);
}

.hero-1 .booking-list-area .form-clt .nice-select .option {
    border: none;
}

.hero-1 .booking-list-area .form-clt .nice-select .option:hover {
    background-color: transparent;
}

.hero-1 .booking-list-area .theme-btn {
    padding: 18px 30px;
}

@media (max-width: 1199px) {
    .hero-1 .booking-list-area .theme-btn {
        width: 100%;
    }
}

.hero-1 .booking-list-area .theme-btn span {
    margin-right: 0;
}

.hero-1 .booking-list-area .theme-btn span i {
    width: initial;
    height: initial;
    line-height: initial;
    background-color: transparent;
    margin-left: 10px;
    color: var(--white);
}

.hero-1 .hero-image {
    width: 925px;
    height: 925px;
    margin-left: -100px;
    margin-bottom: -120px;
}

@media (max-width: 1600px) {
    .hero-1 .hero-image {
        width: 800px;
        height: 800px;
        margin-bottom: 0;
    }
}

@media (max-width: 1399px) {
    .hero-1 .hero-image {
        width: 700px;
        height: 700px;
    }
}

@media (max-width: 1199px) {
    .hero-1 .hero-image {
        margin-left: 0;
        margin-bottom: 0;
        margin: 0 auto;
        width: 800px;
        height: 800px;
    }
}

@media (max-width: 991px) {
    .hero-1 .hero-image {
        width: 650px;
        height: 650px;
    }
}

@media (max-width: 767px) {
    .hero-1 .hero-image {
        width: 550px;
        height: 550px;
    }
}

@media (max-width: 575px) {
    .hero-1 .hero-image {
        width: 450px;
        height: 450px;
    }
}

@media screen and (max-width: 500px) {
    .hero-1 .hero-image {
        width: 400px;
        height: 400px;
    }
}

@media (max-width: 470px) {
    .hero-1 .hero-image {
        width: 300px;
        height: 300px;
    }
}

.hero-1 .hero-image img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.hero-2 {
    position: relative;
    z-index: 9;
    padding: 250px 0 200px;
}

@media (max-width: 991px) {
    .hero-2 {
        padding: 200px 0 160px;
    }
}

@media (max-width: 767px) {
    .hero-2 {
        padding: 170px 0 140px;
    }
}

@media (max-width: 575px) {
    .hero-2 {
        padding: 150px 0 120px;
    }
}

.hero-2 .container-fluid {
    padding: 0 150px;
}

@media (max-width: 1899px) {
    .hero-2 .container-fluid {
        padding: 0 50px;
    }
}

@media (max-width: 1399px) {
    .hero-2 .container-fluid {
        padding: 0 40px;
    }
}

@media (max-width: 1199px) {
    .hero-2 .container-fluid {
        padding: 0 30px;
    }
}

.hero-2::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: linear-gradient(87deg, rgba(0, 0, 0, 0.6) 35.11%, rgba(0, 0, 0, 0) 97.49%);
    z-index: -1;
}

.hero-2 .hero-content {
    max-width: 870px;
    margin: 0 auto;
}

@media (max-width: 1199px) {
    .hero-2 .hero-content {
        text-align: center;
    }
}

.hero-2 .hero-content h1 {
    font-size: 104px;
    color: var(--white);
    line-height: 100%;
}

.hero-2 .hero-content h1 span {
    text-align: center;
    margin-left: 100px;
}

@media (max-width: 1199px) {
    .hero-2 .hero-content h1 span {
        margin-left: 0;
    }
}

@media (max-width: 1199px) {
    .hero-2 .hero-content h1 {
        font-size: 85px;
    }
}

@media (max-width: 767px) {
    .hero-2 .hero-content h1 {
        font-size: 75px;
        line-height: 110%;
    }
}

@media (max-width: 575px) {
    .hero-2 .hero-content h1 {
        font-size: 45px;
    }
}

.hero-2 .hero-content .client-info-items {
    margin-top: 60px;
    display: flex;
    align-items: center;
    gap: 40px;
}

@media (max-width: 1899px) {
    .hero-2 .hero-content .client-info-items {
        flex-wrap: wrap;
        gap: 30px;
        justify-content: center;
        text-align: center;
    }
}

.hero-2 .hero-content .client-info-items .content {
    max-width: 495px;
    display: flex;
    align-items: center;
    gap: 20px;
    border-right: 3px solid var(--white);
    padding-right: 40px;
}

@media (max-width: 1199px) {
    .hero-2 .hero-content .client-info-items .content {
        border-right: none;
        padding-right: 0;
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
        text-align: center;
    }
}

.hero-2 .hero-content .client-info-items .content p {
    font-size: 18px;
    color: var(--white);
    font-weight: bold;
    text-align: left;
}

@media (max-width: 1199px) {
    .hero-2 .hero-content .client-info-items .content p {
        text-align: center;
    }
}

.hero-2 .hero-content .client-info-items .theme-btn {
    background-color: #FF5722;
}

.hero-3 {
    padding: 180px 0 110px;
}

@media (max-width: 767px) {
    .hero-3 {
        padding-top: 140px;
    }

    .hero-3 .row {
        justify-content: center !important;
    }
}

.hero-3 .container-fluid {
    padding: 0 150px;
}

@media (max-width: 1600px) {
    .hero-3 .container-fluid {
        padding: 0 50px;
    }
}

@media (max-width: 1399px) {
    .hero-3 .container-fluid {
        padding: 0 40px;
    }
}

@media (max-width: 1199px) {
    .hero-3 .container-fluid {
        padding: 0 30px;
    }
}

@media (max-width: 767px) {
    .hero-3 .hero-content {
        margin: 0 auto;
        text-align: center;
    }
}

.hero-3 .hero-content h1 {
    font-size: 90px;
    font-weight: 700;
    letter-spacing: 1.04px;
    text-transform: uppercase;
    line-height: 113%;
    color: var(--white);
}

@media (max-width: 1399px) {
    .hero-3 .hero-content h1 {
        font-size: 80px;
    }
}

@media (max-width: 1199px) {
    .hero-3 .hero-content h1 {
        font-size: 60px;
    }
}

@media (max-width: 767px) {
    .hero-3 .hero-content h1 {
        font-size: 60px;
        line-height: 110%;
    }
}

@media (max-width: 575px) {
    .hero-3 .hero-content h1 {
        font-size: 45px;
    }
}

.hero-3 .hero-content p {
    font-weight: 700;
    color: var(--white);
    max-width: 650px;
    margin-top: 20px;
}

.hero-3 .hero-content .button-items {
    margin-top: 50px;
    display: flex;
    align-items: center;
    gap: 24px;
}

@media (max-width: 1199px) {
    .hero-3 .hero-content .button-items {
        flex-wrap: wrap;
    }
}

@media (max-width: 767px) {
    .hero-3 .hero-content .button-items {
        justify-content: center;
    }
}

.hero-3 .hero-content .button-items .theme-btn.bg-2 {
    background-color: #FF5722;
}

.hero-3 .destination-box-items {
    padding: 50px;
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0px 4px 85.6px 17px rgba(0, 0, 0, 0.11);
}

@media (max-width: 767px) {
    .hero-3 .destination-box-items {
        padding: 30px;
    }
}

.hero-3 .destination-box-items p {
    font-weight: 500;
    color: #455151;
    margin-top: 10px;
    margin-bottom: 30px;
}

.hero-3 .destination-box-items p b {
    color: var(--theme-color);
}

.hero-3 .destination-box-items .booking-list-area .booking-list {
    display: flex;
    gap: 15px;
    border: 1px solid rgba(21, 20, 21, 0.14);
    padding: 20px 25px;
    margin-bottom: 15px;
    border-radius: 10px;
}

.hero-3 .destination-box-items .booking-list-area .booking-list .content {
    width: 100%;
}

.hero-3 .destination-box-items .booking-list-area .booking-list .content h5 {
    font-size: 14px;
    font-weight: 600;
    color: #8E8F8F;
    font-family: "Nunito", sans-serif;
    margin-bottom: 5px;
}

.hero-3 .destination-box-items .booking-list-area .form-clt .nice-select {
    padding: 0;
    font-size: 16px;
    text-transform: capitalize;
    border-radius: 0;
    background-color: transparent;
    border: none;
    box-shadow: none;
    font-size: 16px;
    font-family: "Nunito", sans-serif;
    color: var(--header);
    font-weight: 800;
    padding-right: 20px;
    height: initial;
    line-height: initial;
}

.hero-3 .destination-box-items .booking-list-area .form-clt .nice-select::after {
    right: 0;
    border-bottom: 1px solid var(--header);
    border-right: 1px solid var(--header);
    width: 9px;
    height: 9px;
    top: 28%;
    margin-top: 0;
}

.hero-3 .destination-box-items .booking-list-area .form-clt .nice-select .list {
    width: 100%;
    z-index: 9999;
}

.hero-3 .destination-box-items .booking-list-area .form-clt input {
    padding: 0;
    font-size: 16px;
    text-transform: capitalize;
    border-radius: 0;
    background-color: transparent;
    border: none;
    box-shadow: none;
    font-size: 16px;
    font-family: "Nunito", sans-serif;
    color: var(--header);
    font-weight: 800;
    height: initial;
}

.hero-3 .destination-box-items .booking-list-area .form-clt .input-group-addon {
    margin-left: -55px !important;
    color: var(--header);
}

.hero-3 .destination-box-items .theme-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border: 1px solid var(--theme-color);
    padding: 20px 15px 20px 30px;
    margin-top: 30px;
}

.hero-3 .destination-box-items .theme-btn span {
    text-align: center;
    color: var(--theme-color);
    margin-right: 0;
}

.hero-3 .destination-box-items .theme-btn i {
    background-color: var(--theme-color);
    color: var(--white);
    position: absolute;
    right: 6px;
    top: 5px;
    bottom: 5px;
}

.hero-3 .destination-box-items .theme-btn::before, .hero-3 .destination-box-items .theme-btn::after {
    background-color: var(--theme-color);
}

.hero-3 .destination-box-items .theme-btn:hover {
    background-color: var(--theme-color);
}

.hero-3 .destination-box-items .theme-btn:hover i {
    background-color: var(--white);
    color: var(--theme-color);
}

.hero-3 .destination-box-items .theme-btn:hover span {
    color: var(--white);
}

.hero-4 {
    position: relative;
}

.hero-4 .hero-items {
    padding: 200px 0 260px;
    position: relative;
}

.hero-4 .hero-items .plane-shape {
    position: absolute;
    top: 35%;
    left: 20%;
}

@media (max-width: 1399px) {
    .hero-4 .hero-items .plane-shape {
        display: none;
    }
}

.hero-4 .hero-items .plane-shape-2 {
    position: absolute;
    bottom: 19%;
    right: 15%;
}

@media (max-width: 1399px) {
    .hero-4 .hero-items .plane-shape-2 {
        display: none;
    }
}

.hero-4 .hero-items .hero-bg {
    overflow: hidden;
    position: absolute !important;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    z-index: -2;
    background-size: cover;
    transform: scale(1);
    -webkit-transition: all 8s ease-out 0s;
    -moz-transition: all 8s ease-out 0s;
    -ms-transition: all 8s ease-out 0s;
    -o-transition: all 8s ease-out 0s;
    transition: all 8s ease-out 0s;
}

.hero-4 .hero-items .hero-bg::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: rgba(21, 20, 21, 0.69);
    z-index: -1;
}

.hero-4 .hero-items .hero-content {
    text-align: center;
}

.hero-4 .hero-items .hero-content h6 {
    color: var(--theme-color-2);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1;
}

.hero-4 .hero-items .hero-content h1 {
    font-weight: 700;
    font-size: 94px;
    color: var(--white);
    text-transform: capitalize;
}

@media (max-width: 767px) {
    .hero-4 .hero-items .hero-content h1 {
        font-size: 70px;
    }
}

@media (max-width: 575px) {
    .hero-4 .hero-items .hero-content h1 {
        font-size: 50px;
    }
}

.hero-4 .hero-items .hero-content h1 span {
    font-weight: 500;
    text-transform: capitalize;
}

.hero-4 .hero-items .hero-content h1 .shape-text {
    position: relative;
    display: inline-block;
    margin-right: 30px;
}

.hero-4 .hero-items .hero-content h1 .shape-text::before {
    position: absolute;
    bottom: -15px;
    left: 0;
    z-index: -1;
    right: 0;
    content: "";
    width: 100%;
    height: 32px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

@media (max-width: 1199px) {
    .hero-4 .hero-items .hero-content h1 .shape-text::before {
        display: none;
    }
}

.hero-4 .hero-items .hero-content p {
    font-size: 20px;
    font-weight: 500;
    color: var(--white);
    margin-top: 10px;
}

.hero-4 .booking-list-area-1 {
    background: var(--white);
    border-radius: 57.5px;
    box-shadow: 0px 4px 85.6px 17px rgba(0, 0, 0, 0.11);
    position: relative;
    z-index: 9;
    padding: 35px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: -65px;
    z-index: 999;
}

@media (max-width: 1199px) {
    .hero-4 .booking-list-area-1 {
        flex-wrap: wrap;
        gap: 30px;
        justify-content: start;
    }
}

.hero-4 .booking-list-area-1 .booking-list {
    display: flex;
    gap: 15px;
    line-height: 1;
    width: 100%;
}

@media (max-width: 1199px) {
    .hero-4 .booking-list-area-1 .booking-list {
        display: grid;
        flex-basis: 100%;
    }
}

.hero-4 .booking-list-area-1 .booking-list .content h5 {
    font-size: 14px;
    font-weight: 600;
    color: #8E8F8F;
    font-family: "Nunito", sans-serif;
}

.hero-4 .booking-list-area-1 .form-clt .nice-select {
    padding: 0;
    font-size: 16px;
    text-transform: capitalize;
    border-radius: 0;
    background-color: transparent;
    border: none;
    box-shadow: none;
    font-size: 16px;
    font-family: "Nunito", sans-serif;
    color: var(--header);
    font-weight: 800;
    padding-right: 20px;
    height: initial;
}

.hero-4 .booking-list-area-1 .form-clt .nice-select::after {
    right: 0;
    border-bottom: 1px solid var(--header);
    border-right: 1px solid var(--header);
    width: 9px;
    height: 9px;
    top: 28%;
    margin-top: 0;
}

.hero-4 .booking-list-area-1 .form-clt input {
    padding: 0;
    font-size: 16px;
    text-transform: capitalize;
    border-radius: 0;
    background-color: transparent;
    border: none;
    box-shadow: none;
    font-size: 16px;
    font-family: "Nunito", sans-serif;
    color: var(--header);
    font-weight: 800;
    height: initial;
}

.hero-4 .booking-list-area-1 .form-clt .input-group-addon {
    margin-left: -55px !important;
    color: var(--header);
}

.hero-4 .booking-list-area-1 .theme-btn {
    padding: 18px 30px;
    width: 100%;
    max-width: 170px;
}

@media (max-width: 1199px) {
    .hero-4 .booking-list-area-1 .theme-btn {
        width: 100%;
        max-width: initial;
    }
}

.hero-4 .booking-list-area-1 .theme-btn span {
    margin-right: 0;
}

.hero-4 .booking-list-area-1 .theme-btn span i {
    width: initial;
    height: initial;
    line-height: initial;
    background-color: transparent;
    margin-left: 10px;
    color: var(--white);
}

.hero-4 .booking-list-area-1 .form-control {
    margin-top: 5px;
}

.hero-4 .booking-list-area-1 .form-control::placeholder {
    color: var(--header);
}

.hero-4 .swiper-slide-active .hero-bg {
    -webkit-transform: scale(1.12);
    -moz-transform: scale(1.12);
    transform: scale(1.12);
}

.hero-4 .array-button {
    position: absolute;
    top: 47%;
    left: 50px;
    transform: translateY(-50%);
    right: 50px;
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 1199px) {
    .hero-4 .array-button {
        display: none;
    }
}

.hero-4 .array-button .array-prev, .hero-4 .array-button .array-next {
    width: 60px;
    height: 60px;
    line-height: 60px;
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--white);
}

.hero-4 .array-button .array-prev:hover, .hero-4 .array-button .array-next:hover {
    background-color: var(--theme-color);
    color: var(--white);
}

.hero-5 {
    padding: 100px 0 100px;
    background-color: #FFEEE3;
    position: relative;
}

.hero-5 .light-shape {
    position: absolute;
    top: 45px;
    left: 7%;
}

@media (max-width: 1399px) {
    .hero-5 .light-shape {
        display: none;
    }
}

.hero-5 .frame-shape {
    position: absolute;
    top: 40%;
    left: 55%;
}

@media (max-width: 1399px) {
    .hero-5 .frame-shape {
        display: none;
    }
}

.hero-5 .container-fluid {
    padding: 0 90px;
}

@media (max-width: 1600px) {
    .hero-5 .container-fluid {
        padding: 0 50px;
    }
}

@media (max-width: 1399px) {
    .hero-5 .container-fluid {
        padding: 0 40px;
    }
}

@media (max-width: 1199px) {
    .hero-5 .container-fluid {
        padding: 0 30px;
    }
}

.hero-5 .hero-content {
    text-align: center;
}

.hero-5 .hero-content h6 {
    color: var(--theme-color-2);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1;
}

.hero-5 .hero-content h1 {
    font-size: 94px;
    font-weight: 700;
}

@media (max-width: 767px) {
    .hero-5 .hero-content h1 {
        font-size: 70px;
    }
}

@media (max-width: 575px) {
    .hero-5 .hero-content h1 {
        font-size: 50px;
    }
}

.hero-5 .hero-content h1 span {
    font-weight: 500;
}

.hero-5 .hero-content h1 .shape-text {
    position: relative;
    display: inline-block;
    margin-right: 30px;
}

.hero-5 .hero-content h1 .shape-text::before {
    position: absolute;
    bottom: -15px;
    left: 0;
    right: 0;
    content: "";
    width: 100%;
    height: 32px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

@media (max-width: 1399px) {
    .hero-5 .hero-content h1 .shape-text::before {
        display: none;
    }
}

.hero-5 .hero-content p {
    font-size: 20px;
    font-weight: 500;
    max-width: 560px;
    text-align: center;
    margin: 20px auto 0;
}

.hero-5 .booking-list-area {
    background: var(--white);
    border-radius: 57.5px;
    box-shadow: 0px 4px 85.6px 17px rgba(0, 0, 0, 0.11);
    position: relative;
    z-index: 9;
    padding: 35px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 50px;
    z-index: 99;
}

@media (max-width: 1600px) {
    .hero-5 .booking-list-area {
        flex-wrap: wrap;
        gap: 30px;
        justify-content: start;
    }
}

.hero-5 .booking-list-area .booking-list {
    display: flex;
    gap: 15px;
    line-height: 1;
    width: 100%;
}

@media (max-width: 1199px) {
    .hero-5 .booking-list-area .booking-list {
        display: grid;
        flex-basis: 100%;
    }
}

.hero-5 .booking-list-area .booking-list .content h5 {
    font-size: 14px;
    font-weight: 600;
    color: #8E8F8F;
    font-family: "Nunito", sans-serif;
}

.hero-5 .booking-list-area .form-clt .nice-select {
    padding: 0;
    font-size: 16px;
    text-transform: capitalize;
    border-radius: 0;
    background-color: transparent;
    border: none;
    box-shadow: none;
    font-size: 16px;
    font-family: "Nunito", sans-serif;
    color: var(--header);
    font-weight: 800;
    padding-right: 20px;
    height: initial;
}

.hero-5 .booking-list-area .form-clt .nice-select::after {
    right: 0;
    border-bottom: 1px solid var(--header);
    border-right: 1px solid var(--header);
    width: 9px;
    height: 9px;
    top: 28%;
    margin-top: 0;
}

.hero-5 .booking-list-area .form-clt input {
    padding: 0;
    font-size: 16px;
    text-transform: capitalize;
    border-radius: 0;
    background-color: transparent;
    border: none;
    box-shadow: none;
    font-size: 16px;
    font-family: "Nunito", sans-serif;
    color: var(--header);
    font-weight: 800;
    height: initial;
}

.hero-5 .booking-list-area .form-clt .input-group-addon {
    margin-left: -55px !important;
    color: var(--header);
}

.hero-5 .booking-list-area .theme-btn {
    padding: 18px 30px;
    width: 100%;
    max-width: 170px;
}

@media (max-width: 1600px) {
    .hero-5 .booking-list-area .theme-btn {
        width: 100%;
        max-width: initial;
    }
}

.hero-5 .booking-list-area .theme-btn span {
    margin-right: 0;
}

.hero-5 .booking-list-area .theme-btn span i {
    width: initial;
    height: initial;
    line-height: initial;
    background-color: transparent;
    margin-left: 10px;
    color: var(--white);
}

.hero-5 .booking-list-area .form-control {
    margin-top: 5px;
}

.hero-5 .booking-list-area .form-control::placeholder {
    color: var(--header);
}

.hero-5 .plane-shape {
    position: absolute;
    top: -177%;
    left: 45px;
}

@media (max-width: 1399px) {
    .hero-5 .plane-shape {
        display: none;
    }
}

.hero-5 .hero-image-items {
    margin-left: -15%;
}

@media (max-width: 1199px) {
    .hero-5 .hero-image-items {
        margin-left: 0;
    }
}

.hero-5 .hero-image-items .hero-image img {
    width: 100%;
    height: 100%;
    border-radius: 200px 200px 0 200px;
}

.hero-5 .hero-image-items .hero-image.style-2 {
    margin-top: 24px;
}

.hero-5 .hero-image-items .hero-image.style-2 img {
    border-radius: 200px 0 200px 200px;
}

.hero-5 .hero-image-items .hero-image.style-3 {
    height: 645px;
}

.hero-5 .hero-image-items .hero-image.style-3 img {
    border-radius: 200px 200px 200px 0;
    object-fit: cover;
}

.work-process-items {
    margin-top: 30px;
}

.work-process-items .work-process-img {
    max-width: 290px;
    margin: 0 auto;
}

.work-process-items .work-process-img img {
    width: 100%;
    height: 100%;
}

.work-process-items .work-process-content {
    text-align: center;
    margin-top: 30px;
}

.work-process-items .work-process-content span {
    width: 56px;
    height: 56px;
    line-height: 56px;
    text-align: center;
    background-color: var(--theme-color);
    display: inline-block;
    border-radius: 50%;
    color: var(--white);
    font-size: 22px;
    font-weight: 600;
}

.work-process-items .work-process-content h3 {
    margin-top: 15px;
    margin-bottom: 15px;
}

.work-process-items .work-process-content p {
    margin: 0 auto;
    max-width: 290px;
}

@media (max-width: 767px) {
    .choose-us-wrapper {
        margin: 0 auto;
        text-align: center;
    }
}

.choose-us-wrapper .choose-us-left-content {
    max-width: 450px;
}

@media (max-width: 767px) {
    .choose-us-wrapper .choose-us-left-content {
        margin: 0 auto;
        text-align: center;
    }
}

.choose-us-wrapper .choose-us-left-content .list-items {
    margin-top: 30px;
}

.choose-us-wrapper .choose-us-left-content .list-items li {
    font-size: 18px;
    font-weight: 700;
}

.choose-us-wrapper .choose-us-left-content .list-items li svg {
    margin-right: 5px;
}

.choose-us-wrapper .choose-us-left-content .list-items li:not(:last-child) {
    margin-bottom: 10px;
}

.choose-us-wrapper .choose-us-img {
    margin-left: -50px;
}

@media (max-width: 1199px) {
    .choose-us-wrapper .choose-us-img {
        margin-left: 0;
    }
}

.choose-us-wrapper .choose-us-img img {
    width: 100%;
    height: 100%;
    border-radius: 205px;
}

.choose-us-wrapper .choose-us-right {
    margin-left: 40px;
}

@media (max-width: 1199px) {
    .choose-us-wrapper .choose-us-right {
        margin-left: 0;
    }
}

.choose-us-wrapper .choose-us-right h4 {
    margin-bottom: 20px;
}

.choose-us-wrapper .choose-us-right p {
    font-size: 16px;
    font-weight: 500;
}

.choose-us-wrapper .choose-us-right .client-img {
    margin-top: 40px;
    margin-bottom: 20px;
}

.special-features-box {
    display: flex;
    align-items: center;
    gap: 18px;
    border: 1px solid rgba(35, 28, 37, 0.14);
    padding: 25px;
    border-radius: 10px;
    margin-top: 24px;
}

@media (max-width: 575px) {
    .special-features-box {
        flex-wrap: wrap;
        gap: 30px;
        justify-content: center;
        text-align: center;
    }
}

.special-features-box .icon {
    font-size: 45px;
    color: var(--theme-color);
}

@media (max-width: 575px) {
    .special-features-box .icon {
        flex-basis: 100%;
    }
}

.chosse-us-wrapper-2 .chosse-us-content {
    margin-right: -50px;
}

@media (max-width: 1199px) {
    .chosse-us-wrapper-2 .chosse-us-content {
        margin-right: 0;
    }
}

@media (max-width: 767px) {
    .chosse-us-wrapper-2 .chosse-us-content {
        text-align: center;
    }
}

.chosse-us-wrapper-2 .chosse-us-content .chosse-us-list {
    margin-top: 25px;
}

.chosse-us-wrapper-2 .chosse-us-content .chosse-us-list li {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
}

.chosse-us-wrapper-2 .chosse-us-content .chosse-us-list li:not(:last-child) {
    margin-bottom: 15px;
}

.chosse-us-wrapper-2 .chosse-us-content .chosse-us-list li i {
    color: rgb(247, 146, 30);
    margin-right: 5px;
}

.chosse-us-wrapper-2 .chosse-us-content .button-items-area {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 50px;
}

@media (max-width: 1399px) {
    .chosse-us-wrapper-2 .chosse-us-content .button-items-area {
        flex-wrap: wrap;
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .chosse-us-wrapper-2 .chosse-us-content .button-items-area {
        justify-content: center;
    }
}

.chosse-us-wrapper-2 .chosse-us-content .button-items-area .content {
    display: flex;
    align-items: center;
    gap: 10px;
}

@media (max-width: 767px) {
    .chosse-us-wrapper-2 .chosse-us-content .button-items-area .content {
        flex-wrap: wrap;
        justify-content: center;
    }
}

.chosse-us-wrapper-2 .chosse-us-content .button-items-area .content h4 {
    font-size: 20px;
    color: var(--white);
    font-weight: 600;
    line-height: 155%;
}

.chosse-us-wrapper-2 .chosse-us-image-2 {
    position: relative;
    z-index: 9;
}

@media (max-width: 1399px) {
    .chosse-us-wrapper-2 .chosse-us-image-2 img {
        width: 100%;
        height: 100%;
    }
}

.work-process-section {
    position: relative;
}

.work-process-section .line-shape {
    position: absolute;
    bottom: 28%;
    left: 39%;
    transform: translateX(-50%);
    width: 340px;
}

@media (max-width: 1199px) {
    .work-process-section .line-shape {
        display: none;
    }
}

.work-process-section .line-shape img {
    width: 100%;
    height: 100%;
}

.work-process-section .line-shape-2 {
    position: absolute;
    bottom: 28%;
    left: 61%;
    transform: translateX(-50%);
    width: 340px;
}

@media (max-width: 1199px) {
    .work-process-section .line-shape-2 {
        display: none;
    }
}

.work-process-section .line-shape-2 img {
    width: 100%;
    height: 100%;
}

.chosse-us-section-2 {
    position: relative;
}

.chosse-us-section-2 .choose-us-image {
    position: absolute;
    top: 0;
    right: 0;
}

@media (max-width: 1399px) {
    .chosse-us-section-2 .choose-us-image {
        display: none;
    }
}

.chosse-us-section-2::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: var(--bg);
    top: 80%;
    height: initial;
}

.marque-wrapper {
    background-color: #F7921E;
}

.marque-wrapper .marque-text {
    display: flex;
    align-items: center;
    gap: 35px;
    padding: 15px 0;
}

.marque-wrapper .marque-text h3 {
    color: var(--white);
}

.marque-wrapper.style-2 {
    background-color: var(--theme-color);
}

.marque-wrapper.style-3 {
    background: var(--theme-color-2);
}

.instagram-image {
    position: relative;
}

.instagram-image img {
    width: 100%;
    height: 100%;
}

.instagram-image::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: rgba(251, 91, 50, 0.74);
    top: 10px;
    left: 10px;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    opacity: 0;
    transition: all 0.4s ease-in-out;
    visibility: hidden;
}

.instagram-image .icon {
    font-size: 45px;
    color: var(--white);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9;
    opacity: 0;
    transition: all 0.4s ease-in-out;
    visibility: hidden;
}

.instagram-image:hover::before {
    opacity: 1;
    visibility: visible;
}

.instagram-image:hover .icon {
    opacity: 1;
    visibility: visible;
}

.about-wrapper .about-image {
    position: relative;
}

.about-wrapper .about-image img {
    width: 100%;
    height: 100%;
    border-radius: 28px;
}

.about-wrapper .about-image .about-box {
    position: absolute;
    left: 30px;
    bottom: 30px;
    background-color: var(--theme-color-2);
    padding: 30px;
    border-radius: 28px;
}

.about-wrapper .about-image .about-box h2 {
    font-size: 60px;
    color: var(--white);
}

.about-wrapper .about-image .about-box p {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.26px;
    color: var(--white);
}

.about-wrapper .about-content {
    margin-left: 60px;
}

@media (max-width: 1199px) {
    .about-wrapper .about-content {
        margin-left: 0;
    }
}

@media (max-width: 767px) {
    .about-wrapper .about-content {
        text-align: center;
    }
}

.about-wrapper .about-content .about-sideber {
    padding: 30px 25px;
    background-color: var(--white);
    border-radius: 6px;
    border-left: 6px solid var(--theme-color);
    margin-top: 30px;
}

.about-wrapper .about-content .about-sideber h5 {
    font-weight: 600;
    line-height: 167%;
}

.about-wrapper .about-content .about-icon-items {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-top: 35px;
}

@media (max-width: 1199px) {
    .about-wrapper .about-content .about-icon-items {
        flex-wrap: wrap;
        gap: 30px;
    }
}

@media (max-width: 767px) {
    .about-wrapper .about-content .about-icon-items {
        justify-content: center;
    }
}

.about-wrapper .about-content .about-icon-items ul li {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.18px;
    color: var(--text);
}

@media (max-width: 767px) {
    .about-wrapper .about-content .about-icon-items ul li {
        display: grid;
        gap: 10px;
        justify-content: center;
        text-align: center;
    }
}

.about-wrapper .about-content .about-icon-items ul li:not(:last-child) {
    margin-bottom: 12px;
}

.about-wrapper .about-content .about-icon-items ul li svg {
    margin-right: 8px;
}

@media (max-width: 767px) {
    .about-wrapper .about-content .about-icon-items ul li svg {
        display: block;
        text-align: center;
        margin-right: 0;
        width: 100%;
    }
}

.about-wrapper .about-content .about-btn {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 50px;
}

@media (max-width: 1199px) {
    .about-wrapper .about-content .about-btn {
        flex-wrap: wrap;
        gap: 30px;
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .about-wrapper .about-content .about-btn {
        justify-content: center;
    }
}

.about-wrappper-2 .about-image {
    position: relative;
}

.about-wrappper-2 .about-image img {
    width: 100%;
    height: 100%;
}

.about-wrappper-2 .about-image .cricle-shape {
    position: absolute;
    top: 25%;
    left: 5%;
}

@media (max-width: 1199px) {
    .about-wrappper-2 .about-image .cricle-shape {
        display: none;
    }
}

.about-wrappper-2 .about-image .counter-box {
    padding: 30px;
    right: -4%;
    bottom: 14%;
    position: absolute;
    border-radius: 12px;
    background: var(--white);
    text-align: center;
    line-height: 1;
    box-shadow: 0px 4px 85.6px 17px rgba(0, 0, 0, 0.07);
}

@media (max-width: 1199px) {
    .about-wrappper-2 .about-image .counter-box {
        display: none;
    }
}

.about-wrappper-2 .about-image .counter-box .content h2 {
    color: var(--theme-color-2);
    margin-bottom: 5px;
}

.about-wrappper-2 .about-image .counter-box .content p {
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
}

.about-wrappper-2 .about-img-2 {
    position: relative;
}

.about-wrappper-2 .about-img-2 img {
    width: 100%;
    height: 100%;
    border-radius: 200px 200px 0 200px;
}

.about-wrappper-2 .about-img-2.style-2 img {
    border-radius: 200px 0 200px 200px;
    margin-top: 20px;
}

.about-wrappper-2 .about-image-2 {
    position: relative;
}

.about-wrappper-2 .about-image-2 .percent-shape {
    position: absolute;
    left: 3%;
    top: 40%;
    z-index: 9;
}

@media (max-width: 767px) {
    .about-wrappper-2 .about-img-3 {
        height: 500px;
    }
}

.about-wrappper-2 .about-img-3 img {
    width: 100%;
    height: 100%;
    border-radius: 200px 200px 200px 0;
    object-fit: cover;
}

.about-wrappper-2 .about-content {
    margin-left: 50px;
}

@media (max-width: 1199px) {
    .about-wrappper-2 .about-content {
        margin-left: 0;
    }
}

@media (max-width: 767px) {
    .about-wrappper-2 .about-content {
        text-align: center;
    }
}

.about-wrappper-2 .about-content .about-area {
    margin-top: 50px;
}

@media (max-width: 767px) {
    .about-wrappper-2 .about-content .about-area {
        margin-top: 40px;
    }
}

@media (max-width: 575px) {
    .about-wrappper-2 .about-content .about-area {
        margin-top: 30px;
    }
}

.about-wrappper-2 .about-content .about-area .about-items {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
}

@media (max-width: 767px) {
    .about-wrappper-2 .about-content .about-area .about-items {
        justify-content: center;
        flex-wrap: wrap;
        gap: 30px;
        text-align: center;
    }
}

.about-wrappper-2 .about-content .about-area .about-items .icon i {
    color: var(--theme-color);
    font-size: 53px;
}

.about-wrappper-2 .about-content .about-area .about-items .content h4 {
    margin-bottom: 20px;
}

.about-wrappper-2 .about-content .about-area .about-items .content p {
    font-size: 18px;
    font-weight: 500;
    color: var(--text);
}

.about-wrappper-2 .author-items {
    display: flex;
    align-items: center;
    gap: 22px;
}

@media (max-width: 1199px) {
    .about-wrappper-2 .author-items {
        flex-wrap: wrap;
    }
}

.about-wrappper-2 .author-items .author-contact {
    display: flex;
    align-items: center;
    gap: 15px;
}

.about-wrappper-2 .author-items .author-contact .icon {
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    background-color: var(--theme-color-2);
    text-align: center;
}

.about-wrappper-2 .author-items .author-contact .content span {
    color: #6F7373;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 2px;
}

.about-wrappper-2 .author-items .author-contact .content h6 {
    font-size: 16px;
    font-weight: 800;
    font-family: "Nunito", sans-serif;
}

.about-section {
    position: relative;
}

.about-section .shape-1 {
    position: absolute;
    top: 20%;
    left: 14%;
}

@media (max-width: 1199px) {
    .about-section .shape-1 {
        display: none;
    }
}

.about-wrapper-3 .about-image img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.about-wrapper-3 .about-content {
    margin-left: 50px;
}

@media (max-width: 1199px) {
    .about-wrapper-3 .about-content {
        margin-left: 0;
    }
}

@media (max-width: 767px) {
    .about-wrapper-3 .about-content {
        text-align: center;
    }
}

.about-wrapper-3 .about-content .about-icon-items {
    margin-left: -50%;
    margin-top: 40px;
    margin-bottom: 40px;
}

@media (max-width: 991px) {
    .about-wrapper-3 .about-content .about-icon-items {
        margin-left: 0;
    }
}

.about-wrapper-3 .about-content .about-icon-items .icon-items {
    background-color: var(--white);
    border-radius: 10px;
    border: 1px solid rgba(35, 28, 37, 0.14);
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 18px;
}

@media (max-width: 767px) {
    .about-wrapper-3 .about-content .about-icon-items .icon-items {
        justify-content: center;
        text-align: center;
        flex-wrap: wrap;
    }
}

.about-wrapper-3 .about-content .about-icon-items .icon-items i {
    font-size: 45px;
    color: var(--theme-color);
}

@media (max-width: 767px) {
    .about-wrapper-3 .about-content .about-icon-items .icon-items i {
        flex-basis: 100%;
    }
}

.about-wrapper-3 .about-content .about-icon-items .icon-items h4 {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -0.4px;
}

.trending-destinations-card-items {
    margin-top: 24px;
}

.trending-destinations-card-items .destinations-img {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
}

.trending-destinations-card-items .destinations-img::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    border-radius: 28px;
    background: rgba(77, 64, 202, 0.71);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
}

.trending-destinations-card-items .destinations-img img {
    border-radius: 28px;
    width: 100%;
    height: 100%;
    transition: all 0.4s ease-in-out;
}

.trending-destinations-card-items .destinations-img .icon {
    position: absolute;
    right: 20px;
    top: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
}

.trending-destinations-card-items .destinations-img .icon a {
    width: 59px;
    height: 59px;
    line-height: 59px;
    border-radius: 50%;
    background-color: var(--theme-color-2);
    color: var(--white);
    text-align: center;
    display: inline-block;
}

.trending-destinations-card-items .destinations-img .icon a i {
    transform: rotate(-40deg);
}

.trending-destinations-card-items .destinations-img .icon a:hover {
    background-color: var(--white);
    color: var(--header);
}

.trending-destinations-card-items .destinations-img .destinations-content {
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 15px;
}

.trending-destinations-card-items .destinations-img .destinations-content .title a {
    font-size: 18px;
    font-size: 18px;
    font-weight: 500;
    padding: 12px 30px;
    background-color: var(--white);
    display: inline-block;
    border-radius: 72px;
    line-height: 1;
    font-weight: 500;
    color: var(--header);
}

.trending-destinations-card-items .destinations-img .destinations-content .title a:hover {
    background-color: var(--theme-color);
    color: var(--white);
}

.trending-destinations-card-items:hover .destinations-img::before {
    opacity: 1;
    visibility: visible;
}

.trending-destinations-card-items:hover .destinations-img .icon {
    opacity: 1;
    visibility: visible;
}

.trending-destinations {
    position: relative;
}

.trending-destinations .shape-1 {
    position: absolute;
    bottom: 0;
    left: 0;
}

.trending-destinations .shape-2 {
    position: absolute;
    bottom: 0;
    right: 0;
}

.trending-destinations-box-items {
    margin-top: 30px;
    text-align: center;
}

.trending-destinations-box-items .destinations-img img {
    border-radius: 50%;
}

.trending-destinations-box-items .destinations-content {
    margin-top: 20px;
}

.trending-destinations-box-items .destinations-content h3 {
    font-size: 24px;
    font-weight: 500;
}

.trending-destinations-box-items .destinations-content h3 a:hover {
    color: var(--theme-color);
}

.trending-destinations-box-items .destinations-content p {
    font-size: 16px;
    font-weight: 700;
}

.trending-destinations-2 {
    position: relative;
    z-index: 9;
}

.trending-destinations-2::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: var(--white);
    z-index: -1;
    top: 75%;
}

.destination-details-wrapper .details-post .details-image {
    margin-bottom: 30px;
}

.destination-details-wrapper .details-post .details-image img {
    width: 100%;
    height: 100%;
    border-radius: 28px;
}

.destination-details-wrapper .details-post .details-content h2 {
    font-weight: 600;
    margin-bottom: 15px;
}

.destination-details-wrapper .details-post .details-content .destination-list-item {
    margin-top: 40px;
}

.destination-details-wrapper .details-post .details-content .destination-list-item .destination-list {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 70px;
}

@media (max-width: 1399px) {
    .destination-details-wrapper .details-post .details-content .destination-list-item .destination-list {
        gap: 30px;
    }
}

@media (max-width: 1199px) {
    .destination-details-wrapper .details-post .details-content .destination-list-item .destination-list {
        flex-wrap: wrap;
    }
}

.destination-details-wrapper .details-post .details-content .destination-list-item .destination-list li {
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
}

.destination-details-wrapper .details-post .details-content .destination-list-item .destination-list li:not(:last-child) {
    margin-bottom: 15px;
}

.destination-details-wrapper .details-post .details-content .destination-list-item .destination-list li i {
    margin-right: 6px;
    color: var(--theme-color);
}

.destination-details-wrapper .details-post .details-content .faq-items {
    margin-top: 70px;
}

@media (max-width: 767px) {
    .destination-details-wrapper .details-post .details-content .faq-items {
        margin-top: 40px;
    }
}

.destination-details-wrapper .details-post .details-content .faq-items h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
}

.destination-details-wrapper .details-post .details-content .faq-items .accordion-item {
    border: 0;
    background-color: var(--white);
    border-radius: 10px;
    border: 1px solid rgba(35, 28, 37, 0.18);
}

.destination-details-wrapper .details-post .details-content .faq-items .accordion-item .accordion-header {
    border: none;
}

.destination-details-wrapper .details-post .details-content .faq-items .accordion-item .accordion-header .accordion-button {
    font-size: 20px;
    font-weight: 500;
    color: var(--header);
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background-color: var(--bg);
    border-radius: 0;
    padding: 22px 22px 0;
    text-transform: capitalize;
}

.destination-details-wrapper .details-post .details-content .faq-items .accordion-item .accordion-header .accordion-button::after {
    content: "\f078";
    background: transparent;
    font-family: "Font Awesome 5 Pro";
    font-weight: 300;
    transition: all 0.3s ease-in-out !important;
    color: var(--header);
}

.destination-details-wrapper .details-post .details-content .faq-items .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
    content: "\f077";
    background: transparent;
    font-family: "Font Awesome 5 Pro";
    font-weight: 300;
    transform: rotate(0);
    color: var(--theme-color);
}

.destination-details-wrapper .details-post .details-content .faq-items .accordion-item .accordion-header .accordion-button.collapsed {
    background-color: transparent;
    padding: 25px 30px;
    color: var(--header);
}

.destination-details-wrapper .details-post .details-content .faq-items .accordion-item .accordion-collapse .accordion-body {
    padding-left: 30px;
    padding-top: 15px;
    color: #504E4E;
    background: var(--bg);
}

.destination-details-wrapper .details-post .details-content .map-area {
    margin-top: 70px;
}

@media (max-width: 767px) {
    .destination-details-wrapper .details-post .details-content .map-area {
        margin-top: 40px;
    }
}

.destination-details-wrapper .details-post .details-content .map-area h2 {
    font-size: 32px;
    font-weight: 600;
}

.destination-details-wrapper .details-post .details-content .map-area .google-map iframe {
    border-radius: 28px;
    width: 100%;
    height: 346px;
}

.destination-details-wrapper .main-side-bar .destination-single-sideber-widget {
    border-radius: 28px;
    background-color: var(--bg);
    padding: 45px;
    margin-bottom: 35px;
}

.destination-details-wrapper .main-side-bar .destination-single-sideber-widget .widget-title {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 30px;
}

.destination-details-wrapper .main-side-bar .destination-single-sideber-widget .destination-card {
    margin-bottom: 30px;
}

.destination-details-wrapper .main-side-bar .destination-single-sideber-widget .destination-card li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.16px;
    transition: all 0.4s ease-in-out;
}

.destination-details-wrapper .main-side-bar .destination-single-sideber-widget .destination-card li span {
    font-weight: 500;
    color: var(--text);
}

.destination-details-wrapper .main-side-bar .destination-single-sideber-widget .destination-card li:not(:last-child) {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(21, 20, 21, 0.09);
}

.destination-details-wrapper .main-side-bar .destination-single-sideber-widget .destination-card li:hover {
    color: var(--theme-color);
}

.destination-details-wrapper .main-side-bar .destination-single-sideber-widget .destination-card li:hover span {
    color: var(--theme-color);
}

.destination-details-wrapper .main-side-bar .destination-single-sideber-widget .theme-btn {
    padding: 20px 15px 20px 30px;
}

.destination-details-wrapper .main-side-bar .destination-single-sideber-widget .theme-btn span {
    margin-right: 0;
}

.destination-details-wrapper .main-side-bar .destination-single-sideber-widget .theme-btn i {
    position: absolute;
    right: 5px;
    top: 5px;
    bottom: 5px;
}

.destination-details-wrapper .main-side-bar .offer-card {
    padding: 45px;
    border-radius: 28px;
    height: 420px;
}

.destination-details-wrapper .main-side-bar .offer-card h3 {
    font-size: 24px;
    color: var(--white);
    font-weight: 500;
    margin-bottom: 30px;
}

.tour-sidebar-area .booking-list-area {
    border-radius: 28px;
    border: 1px solid rgba(21, 20, 21, 0.14);
    padding: 25px;
}

.tour-sidebar-area .booking-list-area .booking-list {
    display: flex;
    gap: 15px;
    border-bottom: 1px solid rgba(21, 20, 21, 0.14);
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.tour-sidebar-area .booking-list-area .booking-list.style-2 {
    margin-bottom: 40px;
    padding-bottom: 0;
    border-bottom: none;
}

.tour-sidebar-area .booking-list-area .booking-list .content h5 {
    font-size: 14px;
    font-weight: 600;
    color: #8E8F8F;
    font-family: "Nunito", sans-serif;
}

.tour-sidebar-area .booking-list-area .content {
    width: 100%;
}

.tour-sidebar-area .booking-list-area .form-clt .nice-select {
    padding: 0;
    font-size: 16px;
    text-transform: capitalize;
    border-radius: 0;
    background-color: transparent;
    border: none;
    box-shadow: none;
    font-size: 16px;
    font-family: "Nunito", sans-serif;
    color: var(--header);
    font-weight: 800;
    width: initial;
}

.tour-sidebar-area .booking-list-area .form-clt .nice-select::after {
    right: 0;
    border-bottom: 1px solid var(--header);
    border-right: 1px solid var(--header);
    width: 9px;
    height: 9px;
    margin-top: -15px;
}

.tour-sidebar-area .booking-list-area .form-clt .nice-select .list {
    width: 100%;
    background-color: var(--bg);
    top: 60%;
}

.tour-sidebar-area .booking-list-area .form-clt .nice-select .focus {
    background-color: transparent;
    font-weight: 400;
    color: var(--text);
}

.tour-sidebar-area .booking-list-area .form-clt .nice-select .option {
    border: none;
}

.tour-sidebar-area .booking-list-area .form-clt .nice-select .option:hover {
    background-color: transparent;
}

.tour-sidebar-area .booking-list-area .form-clt input {
    padding: 0;
    font-size: 16px;
    text-transform: capitalize;
    border-radius: 0;
    background-color: transparent;
    border: none;
    box-shadow: none;
    font-size: 16px;
    font-family: "Nunito", sans-serif;
    color: var(--header);
    font-weight: 800;
    height: initial;
}

.tour-sidebar-area .booking-list-area .form-clt input::placeholder {
    color: var(--header);
}

.tour-sidebar-area .booking-list-area .tour-sidebar-widget {
    margin-bottom: 40px;
}

.tour-sidebar-area .booking-list-area .tour-sidebar-widget .wid-title {
    margin-bottom: 20px;
}

.tour-sidebar-area .booking-list-area .tour-sidebar-widget .wid-title h3 {
    font-size: 18px;
    font-weight: 600;
}

.tour-sidebar-area .booking-list-area .tour-sidebar-widget .languages-list li {
    display: flex;
    align-items: center;
    gap: 18px;
}

.tour-sidebar-area .booking-list-area .tour-sidebar-widget .languages-list li:not(:last-child) {
    margin-bottom: 15px;
}

.tour-sidebar-area .booking-list-area .tour-sidebar-widget .languages-list li .checkbox-single {
    position: relative;
    padding-left: 15px;
    cursor: pointer;
    display: block;
}

.tour-sidebar-area .booking-list-area .tour-sidebar-widget .languages-list li .checkbox-single input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.tour-sidebar-area .booking-list-area .tour-sidebar-widget .languages-list li .checkbox-single .checkbox-area .checkmark {
    position: absolute;
    left: 0;
    height: 20px;
    width: 20px;
    border-radius: 5px;
    border: 1px solid rgba(21, 20, 21, 0.14);
    background-color: var(--white);
    top: 5px;
}

.tour-sidebar-area .booking-list-area .tour-sidebar-widget .languages-list li .checkbox-single .checkbox-area .checkmark::after {
    content: "";
}

.tour-sidebar-area .booking-list-area .tour-sidebar-widget .languages-list li .checkbox-single .checkbox-area input:checked ~ .checkmark {
    background-color: var(--theme-color);
}

.tour-sidebar-area .booking-list-area .tour-sidebar-widget .languages-list li .checkbox-single .checkbox-area input:checked ~ .checkmark::after {
    content: "\f00c";
    position: absolute;
    font-family: "Font Awesome 5 Pro";
    top: -5px;
    left: 5px;
    color: var(--theme-color);
    font-size: 11px;
}

.tour-sidebar-area .booking-list-area .tour-sidebar-widget .languages-list li .checkbox-single .checkbox-area input:checked ~ .checkmark:after {
    display: block;
    color: var(--white);
}

.tour-sidebar-area .booking-list-area .tour-sidebar-widget .languages-list li .checkbox-single .text-color {
    font-weight: 600;
    color: #8E8F8F;
    font-size: 14px;
}

.tour-sidebar-area .booking-list-area .tour-sidebar-widget .languages-list li .checkbox-single .text-color .star {
    color: #FD8F21;
    margin-right: 5px;
}

.tour-sidebar-area .booking-list-area .tour-sidebar-widget .languages-list li .checkbox-single .text-color .star i.color-2 {
    color: var(--text);
}

.tour-sidebar-area .booking-list-area .tour-sidebar-widget .languages-list li .checkbox-single .text-color .ratting-text {
    font-size: 16px;
}

.tour-sidebar-area .booking-list-area .tour-sidebar-widget .checkbox-items .checkbox-single {
    position: relative;
    padding-left: 15px;
    cursor: pointer;
    display: block;
    margin-bottom: 10px;
}

.tour-sidebar-area .booking-list-area .tour-sidebar-widget .checkbox-items .checkbox-single input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.tour-sidebar-area .booking-list-area .tour-sidebar-widget .checkbox-items .checkbox-single .checkbox-area .checkmark {
    position: absolute;
    left: 0;
    height: 20px;
    width: 20px;
    border-radius: 5px;
    border: 1px solid rgba(21, 20, 21, 0.14);
    background-color: var(--white);
    top: 5px;
}

.tour-sidebar-area .booking-list-area .tour-sidebar-widget .checkbox-items .checkbox-single .checkbox-area .checkmark::after {
    content: "";
}

.tour-sidebar-area .booking-list-area .tour-sidebar-widget .checkbox-items .checkbox-single .checkbox-area input:checked ~ .checkmark {
    background-color: var(--theme-color);
}

.tour-sidebar-area .booking-list-area .tour-sidebar-widget .checkbox-items .checkbox-single .checkbox-area input:checked ~ .checkmark::after {
    content: "\f00c";
    position: absolute;
    font-family: "Font Awesome 5 Pro";
    top: -5px;
    left: 5px;
    color: var(--theme-color);
    font-size: 11px;
}

.tour-sidebar-area .booking-list-area .tour-sidebar-widget .checkbox-items .checkbox-single .checkbox-area input:checked ~ .checkmark:after {
    display: block;
    color: var(--white);
}

.tour-sidebar-area .booking-list-area .tour-sidebar-widget .checkbox-items .checkbox-single .text-color {
    font-weight: 600;
    color: #8E8F8F;
    font-size: 14px;
}

.tour-sidebar-area .booking-list-area .tour-sidebar-widget .checkbox-items .checkbox-single .text-color .star {
    color: #FD8F21;
    margin-right: 5px;
}

.tour-sidebar-area .booking-list-area .tour-sidebar-widget .checkbox-items .checkbox-single .text-color .star i.color-2 {
    color: var(--text);
}

.tour-sidebar-area .booking-list-area .tour-sidebar-widget .checkbox-items .checkbox-single .text-color .ratting-text {
    font-size: 16px;
}

.tour-sidebar-area .booking-list-area .search-widget .theme-btn {
    width: 100%;
    padding: 5px 15px 5px 30px;
}

.tour-sidebar-area .booking-list-area .search-widget .theme-btn span {
    margin-right: 15px;
}

.tour-sidebar-area .booking-list-area .search-widget .theme-btn i {
    width: initial;
    height: initial;
    background-color: initial;
    color: var(--white);
}

.tour-sidebar-area .booking-list-area .price-range-wrapper {
    /* Custom thumb styling */
    /* Remove the default appearance for sliders in Firefox */
}

.tour-sidebar-area .booking-list-area .price-range-wrapper .slider-container {
    position: relative;
    width: 100%;
}

.tour-sidebar-area .booking-list-area .price-range-wrapper .price-text label {
    color: var(--text);
    font-size: 18px;
    font-weight: 500;
}

.tour-sidebar-area .booking-list-area .price-range-wrapper .price-text input {
    color: var(--text);
    font-size: 18px;
    font-weight: 500;
}

.tour-sidebar-area .booking-list-area .price-range-wrapper .slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    background: #ddd; /* Default background */
    outline: none;
    position: absolute;
    top: 0;
    pointer-events: none;
}

.tour-sidebar-area .booking-list-area .price-range-wrapper .slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    background: var(--theme-color);
    cursor: pointer;
    border: 2px solid #fff;
    position: relative;
    z-index: 2;
    pointer-events: all;
}

.tour-sidebar-area .booking-list-area .price-range-wrapper .slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: var(--theme-color);
    cursor: pointer;
    border-radius: 4px;
    border: 2px solid #000;
    z-index: 2;
    position: relative;
}

.tour-sidebar-area .booking-list-area .price-range-wrapper .slider::-ms-thumb {
    width: 20px;
    height: 20px;
    background: var(--theme-color);
    cursor: pointer;
    border-radius: 4px;
    border: 2px solid #000;
    z-index: 2;
    position: relative;
}

.tour-sidebar-area .booking-list-area .price-range-wrapper input[type=range]::-moz-range-track {
    background: transparent;
}

.tour-sidebar-area .popular-posts {
    border-radius: 28px;
    border: 1px solid rgba(21, 20, 21, 0.14);
    padding: 30px 25px;
    margin-top: 30px;
}

.tour-sidebar-area .single-post-item {
    overflow: hidden;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #f2f2f2;
}

.tour-sidebar-area .single-post-item:last-child {
    margin-bottom: 0;
    border: none;
    padding-bottom: 0;
}

.tour-sidebar-area .single-post-item .thumb {
    width: 95px;
    height: 95px;
    background-color: #f2f2f2;
    float: left;
    overflow: hidden;
    margin-right: 20px;
    border-radius: 8px;
}

.tour-sidebar-area .single-post-item .post-content {
    overflow: hidden;
}

.tour-sidebar-area .single-post-item .post-content .star {
    color: #F7921E;
    font-size: 14px;
}

.tour-sidebar-area .single-post-item .post-content h5 {
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 0;
    text-transform: capitalize;
    font-family: "Nunito", sans-serif;
    margin-top: 5px;
}

.tour-sidebar-area .single-post-item .post-content h5 a:hover {
    color: var(--theme-color);
}

.tour-sidebar-area .single-post-item .post-content p {
    font-size: 14px;
    font-weight: 600;
    color: #8E8F8F;
    margin-top: 8px;
}

.tour-sidebar-area .single-post-item .post-content p b {
    font-weight: 700;
    color: var(--theme-color);
}

.tour-sidebar-area .single-post-item .post-content .post-date {
    margin-top: 10px;
    color: theme-color;
    font-weight: 600;
    font-size: 15px;
    text-transform: capitalize;
}

.tour-sidebar-area .single-post-item .post-content .post-date i {
    margin-right: 7px;
}

.destination-wrapper-22 .destination-items {
    text-align: center;
}

.destination-wrapper-22 .destination-items .destination-thumb {
    width: 183px;
    height: 183px;
    margin: 0 auto;
}

.destination-wrapper-22 .destination-items .destination-thumb img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.destination-wrapper-22 .destination-items .destination-thumb.style-2 img {
    border-radius: 50%;
}

.destination-wrapper-22 .destination-items .destination-content {
    margin-top: 25px;
}

.destination-wrapper-22 .destination-items .destination-content h3 {
    font-size: 24px;
}

.destination-wrapper-22 .destination-items .destination-content h3 a:hover {
    color: var(--theme-color);
}

.destination-wrapper-22 .destination-items .destination-content p {
    color: #455151;
    font-weight: 700;
}

.destination-wrapper-22.style-2 {
    margin-top: 70px;
}

.top-destination-section-4 {
    margin-left: 54px;
    margin-right: 54px;
    position: relative;
    z-index: 9;
}

@media (max-width: 1399px) {
    .top-destination-section-4 {
        margin-left: 0;
        margin-right: 0;
    }
}

.top-destination-section-4::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: var(--bg);
    z-index: -1;
    border-radius: 28px;
    height: 75%;
}

.destination-feature-box {
    margin-top: 24px;
    border-radius: 12px;
    background: #FFF;
    box-shadow: 10px 9px 106.6px 55px rgba(5, 6, 60, 0.04);
    padding: 25px;
    display: flex;
    gap: 15px;
    align-items: center;
}

@media (max-width: 767px) {
    .destination-feature-box {
        display: grid;
        justify-content: center;
        text-align: center;
    }
}

.destination-feature-box .icon {
    background-color: #F89A60;
    display: inline-block;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    line-height: 56px;
    text-align: center;
}

@media (max-width: 575px) {
    .destination-feature-box .icon {
        margin: 0 auto;
    }
}

.destination-feature-box .icon.bg-2 {
    background-color: #FC80FF;
}

.destination-feature-box .icon.bg-3 {
    background-color: #21C9F3;
}

.destination-feature-box .icon.bg-4 {
    background-color: #6AF3A8;
}

.destination-feature-box .icon.bg-5 {
    background-color: #FFCF32;
}

.destination-feature-box .icon.bg-6 {
    background-color: #9F98E2;
}

.destination-feature-box .icon.bg-7 {
    background-color: #91E25E;
}

.destination-feature-box .icon.bg-8 {
    background-color: #E25E60;
}

.destination-feature-box .content span {
    font-size: 14px;
    font-weight: 500;
    color: #818181;
}

.destination-feature-box .content span b {
    color: #F7921E;
    font-size: 14px;
    font-weight: 700;
}

.destination-wrapper-4 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

@media (max-width: 991px) {
    .destination-wrapper-4 {
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 30px;
    }
}

.destination-wrapper-4 .destination-image-items-4 {
    margin-top: 30px;
    width: 200px;
    height: 480px;
    position: relative;
    transition: all 0.4s ease-in-out;
}

@media (max-width: 991px) {
    .destination-wrapper-4 .destination-image-items-4 {
        margin-top: 0;
    }
}

.destination-wrapper-4 .destination-image-items-4.style-margin {
    margin-top: 50px;
    height: 430px;
}

@media (max-width: 1199px) {
    .destination-wrapper-4 .destination-image-items-4.style-margin {
        margin-top: initial;
        height: 480px;
    }
}

.destination-wrapper-4 .destination-image-items-4::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(21, 20, 21, 0) 0%, rgba(21, 20, 21, 0.62) 100%);
}

.destination-wrapper-4 .destination-image-items-4 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 28px;
}

.destination-wrapper-4 .destination-image-items-4 .content {
    position: absolute;
    left: 5px;
    bottom: 110px;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    z-index: 9;
}

.destination-wrapper-4 .destination-image-items-4 .content h4 {
    font-size: 22px;
}

.destination-wrapper-4 .destination-image-items-4 .content h4 a {
    color: var(--white);
}

.destination-wrapper-4 .destination-image-items-4 .content h4 a:hover {
    color: var(--theme-color);
}

.destination-wrapper-4 .destination-image-items-4 .content span {
    color: var(--white);
    font-weight: 500;
    font-size: 16px;
}

.destination-wrapper-4 .destination-image-items-4 .content span b {
    color: var(--theme-color-2);
    font-weight: 800;
}

.destination-wrapper-4 .destination-image-items-4 .icon {
    width: 74px;
    height: 74px;
    line-height: 74px;
    display: inline-block;
    border-radius: 50%;
    text-align: center;
    background-color: var(--theme-color-2);
    color: var(--white);
    position: absolute;
    top: 25px;
    right: 25px;
    opacity: 0;
    visibility: hidden;
}

.destination-wrapper-4 .destination-image-items-4 .icon i {
    transform: rotate(-45deg);
}

.destination-wrapper-4 .destination-image-items-4 .icon:hover {
    background-color: var(--header);
}

@media (max-width: 991px) {
    .destination-wrapper-4 .destination-image-items-4 {
        width: 424px !important;
    }

    .destination-wrapper-4 .destination-image-items-4 .content {
        left: 40px;
        bottom: 40px;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
        -webkit-transition: all 0.8s ease-in-out;
        transition: all 0.8s ease-in-out;
    }

    .destination-wrapper-4 .destination-image-items-4 .icon {
        opacity: 1;
        visibility: visible;
    }
}

.destination-wrapper-4 .destination-image-items-4.active {
    width: 424px !important;
}

.destination-wrapper-4 .destination-image-items-4.active .content {
    left: 40px;
    bottom: 40px;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    -webkit-transition: all 0.8s ease-in-out;
    transition: all 0.8s ease-in-out;
}

.destination-wrapper-4 .destination-image-items-4.active .icon {
    opacity: 1;
    visibility: visible;
}

.tour-box-items {
    margin-top: 30px;
    border-bottom-left-radius: 28px;
    border-bottom-right-radius: 28px;
    background: var(--white);
    box-shadow: 10px 9px 106.6px 55px rgba(5, 6, 60, 0.04);
    border-top-left-radius: 28px;
    border-top-right-radius: 28px;
}

.tour-box-items-inner {
    height: 100%;
}

.tour-single {
    height: 95%;
}

.tour-box-items .thumb img {
    width: 100%;
    height: 100%;
    border-top-left-radius: 28px;
    border-top-right-radius: 28px;
}

.tour-box-items .content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 57%;
}

.tour-box-items .content span {
    font-size: 13px;
    font-weight: 700;
    color: var(--theme-color);
}

.tour-box-items .content h4 {
    font-weight: 500;
    margin-bottom: 20px;
}

.tour-box-items .content h4 a:hover {
    color: var(--theme-color);
}

.tour-box-items .content h6 {
    color: #818181;
    font-family: "Nunito", sans-serif;
}

.tour-box-items .content h6 span {
    font-size: 18px;
    font-weight: 900;
}

.tour-box-items .content h6 del {
    color: rgba(129, 129, 129, 0.72);
    font-weight: 500;
    font-family: "Nunito", sans-serif;
}

.tour-box-items .content .list {
    display: flex;
    align-items: center;
    gap: 10px;
    border-top: 1px dashed rgba(21, 20, 21, 0.21);
    padding-top: 22px;
    margin-top: 22px;
}

@media (max-width: 1399px) {
    .tour-box-items .content .list {
        flex-wrap: wrap;
    }
}

.tour-box-items .content .list li {
    color: #818181;
    font-weight: 500;
    font-size: 14px;
}

.tour-box-items .content .list li i {
    color: var(--theme-color-2);
    margin: 5px;
}

.tour-box-items-2 {
    border-radius: 28px;
    border: 1px solid rgba(21, 20, 21, 0.14);
    background: var(--white);
    padding: 15px;
    margin-top: 30px;
}

.tour-box-items-2 .tour-image {
    position: relative;
}

.tour-box-items-2 .tour-image::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(21, 20, 21, 0) 0%, rgba(21, 20, 21, 0.78) 86.91%);
}

.tour-box-items-2 .tour-image img {
    width: 100%;
    height: 100%;
    border-radius: 28px;
}

.tour-box-items-2 .tour-image .post-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
}

.tour-box-items-2 .tour-image .post-bar.style-2 .post-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.tour-box-items-2 .tour-image .post-bar.style-2 .post-item .post.bg-color {
    background-color: var(--theme-color);
}

.tour-box-items-2 .tour-image .post-bar .post {
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
    background: var(--theme-color-2);
    padding: 11px 19px;
    border-radius: 72px;
    line-height: 1;
}

.tour-box-items-2 .tour-image .post-bar .icon {
    width: 39px;
    height: 39px;
    line-height: 45px;
    border-radius: 100px;
    text-align: center;
    background: rgba(255, 255, 255, 0.19);
    color: var(--white);
    transition: all 0.4s ease-in-out;
    cursor: pointer;
}

.tour-box-items-2 .tour-image .post-bar .icon:hover {
    background-color: var(--theme-color);
}

.tour-box-items-2 .tour-content {
    padding: 25px 15px;
}

.tour-box-items-2 .tour-content h3 a {
    background-position: 0 95%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    display: inline;
}

.tour-box-items-2 .tour-content h3 a:hover {
    color: var(--theme-color);
    background-size: 100% 2px;
    background-image: linear-gradient(var(--theme-color), var(--theme-color));
}

.tour-box-items-2 .tour-content .meta {
    margin-top: 10px;
}

.tour-box-items-2 .tour-content .meta li {
    font-weight: 700;
    font-size: 14px;
}

.tour-box-items-2 .tour-content .rating-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 15px;
}

.tour-box-items-2 .tour-content .rating-bar .rating li {
    font-size: 14px;
    font-weight: 700;
}

.tour-box-items-2 .tour-content .rating-bar .rating li i {
    color: var(--theme-color);
    margin-right: 5px;
}

.tour-box-items-2 .tour-content .rating-bar .icon {
    display: flex;
    align-items: center;
    gap: 16px;
}

.tour-box-items-2 .tour-content .rating-bar .icon li i {
    color: var(--text);
}

.tour-box-items-2 .tour-content .tour-btn {
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 1399px) {
    .tour-box-items-2 .tour-content .tour-btn {
        flex-wrap: wrap;
        gap: 15px;
    }
}

.tour-box-items-2 .tour-content .tour-btn .theme-btn {
    padding: 5px 6px 5px 26px;
}

.tour-box-items-2 .tour-content .tour-btn .theme-btn span {
    margin-right: 8px;
}

.tour-box-items-2 .tour-content .tour-btn .theme-btn i {
    width: 34px;
    height: 34px;
    line-height: 34px;
}

.tour-box-items-2 .tour-content .tour-btn h2 {
    font-size: 32px;
    font-weight: 500;
}

.tour-box-items-2 .tour-content .tour-btn h2 span {
    font-size: 14px;
    font-weight: 700;
    color: #818181;
    font-family: "Nunito", sans-serif;
}

.top-hotel-box-item {
    margin-top: 30px;
    border-radius: 28px;
    padding: 10px;
    padding-right: 0;
    display: flex;
    align-items: center;
    gap: 30px;
    transition: all 0.4s ease-in-out;
    border: 1px solid rgba(21, 20, 21, 0.14);
}

@media (max-width: 1600px) {
    .top-hotel-box-item {
        flex-wrap: wrap;
    }
}

.top-hotel-box-item .hotel-img {
    max-width: 335px;
    position: relative;
}

.top-hotel-box-item .hotel-img .icon {
    width: 39px;
    height: 39px;
    line-height: 45px;
    border-radius: 100px;
    text-align: center;
    background: var(--white);
    color: var(--header);
    transition: all 0.4s ease-in-out;
    cursor: pointer;
    position: absolute;
    bottom: 25px;
    right: 25px;
}

.top-hotel-box-item .hotel-img .icon:hover {
    background-color: var(--theme-color);
    color: var(--white);
}

@media (max-width: 1600px) {
    .top-hotel-box-item .hotel-img {
        flex-basis: 100%;
        max-width: initial;
    }
}

.top-hotel-box-item .hotel-img img {
    width: 100%;
    height: 100%;
    border-radius: 28px;
}

.top-hotel-box-item .hotel-content {
    padding: 0 35px 0;
    max-width: 380px;
    padding-left: 0;
}

@media (max-width: 1600px) {
    .top-hotel-box-item .hotel-content {
        max-width: initial;
        padding: 30px;
        padding-top: 0;
    }
}

.top-hotel-box-item .hotel-content .location-icon {
    font-size: 14px;
    font-weight: 700;
    color: #818181;
    margin-bottom: 10px;
    display: inline-block;
}

.top-hotel-box-item .hotel-content .location-icon i {
    color: var(--theme-color);
    margin-right: 10px;
}

.top-hotel-box-item .hotel-content h3 a:hover {
    color: var(--theme-color);
}

.top-hotel-box-item .hotel-content .list-items {
    margin-top: 25px;
    display: flex;
    align-items: center;
    gap: 40px;
    border-bottom: 1px solid rgba(21, 20, 21, 0.14);
    padding-bottom: 25px;
}

@media (max-width: 1199px) {
    .top-hotel-box-item .hotel-content .list-items {
        flex-wrap: wrap;
        gap: 20px;
    }
}

.top-hotel-box-item .hotel-content .list-items ul li {
    color: #818181;
    font-size: 14px;
    font-weight: 700;
}

.top-hotel-box-item .hotel-content .list-items ul li:not(:last-child) {
    margin-bottom: 15px;
}

.top-hotel-box-item .hotel-content .list-items ul li svg {
    margin-right: 8px;
}

.top-hotel-box-item .hotel-content .btn-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 25px;
    gap: 15px;
}

@media (max-width: 1199px) {
    .top-hotel-box-item .hotel-content .btn-area {
        flex-wrap: wrap;
        gap: 20px;
    }
}

.top-hotel-box-item .hotel-content .btn-area .theme-btn {
    font-size: 16px;
    border: 1px solid var(--theme-color);
    background-color: transparent;
    padding: 9px 10px 9px 25px;
}

.top-hotel-box-item .hotel-content .btn-area .theme-btn span {
    color: var(--header);
    margin-right: 15px;
}

.top-hotel-box-item .hotel-content .btn-area .theme-btn i {
    width: 34px;
    height: 34px;
    line-height: 34px;
    background-color: var(--theme-color);
    color: var(--white);
    transition: all 0.4s ease-in-out;
}

.top-hotel-box-item .hotel-content .btn-area .theme-btn::before {
    background-color: var(--theme-color);
}

.top-hotel-box-item .hotel-content .btn-area .theme-btn::after {
    background-color: var(--theme-color);
}

.top-hotel-box-item .hotel-content .btn-area .theme-btn:hover span {
    color: var(--white);
}

.top-hotel-box-item .hotel-content .btn-area .theme-btn:hover i {
    width: 34px;
    height: 34px;
    line-height: 34px;
    background-color: var(--white);
    color: var(--header);
}

.top-hotel-box-item .hotel-content .btn-area .price-titile {
    font-size: 30px;
    font-weight: 500;
}

.top-hotel-box-item .hotel-content .btn-area .price-titile sub {
    font-size: 14px;
    font-weight: 700;
    color: #818181;
    font-family: "Nunito", sans-serif;
}

.top-hotel-box-item.style-2 .hotel-content {
    padding-right: 0;
    padding-left: 35px;
}

@media (max-width: 1600px) {
    .top-hotel-box-item.style-2 .hotel-content {
        max-width: initial;
        padding: 30px;
    }
}

.top-hotel-box-item:hover {
    background: var(--bg);
}

@media (max-width: 1199px) {
    .amazing-tour-wrapper {
        margin-left: 0;
        margin-right: 0;
    }
}

.amazing-tour-items {
    margin-top: 30px;
    /*height: 100%;*/
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    transition: box-shadow 0.3s ease;
}

.amazing-tour-items:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.13);
}

.amazing-tour-items .thumb {
    position: relative;
}

.amazing-tour-items .thumb .post-box {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 92px;
    height: 92px;
    border-radius: 50%;
    background-color: var(--theme-color);
    text-align: center;
}

.amazing-tour-items .thumb .post-box h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
    line-height: 1;
    padding-top: 20px;
}

.amazing-tour-items .thumb .post-box span {
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
}

.amazing-tour-items .thumb::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    border-radius: 10px 10px 0 0;
    background: linear-gradient(180deg, rgba(21, 20, 21, 0) 0%, rgba(21, 20, 21, 0.78) 86.91%);
}

.amazing-tour-items .thumb img {
    width: 100%;
    height: 100%;
    border-radius: 10px 10px 0 0;
}

.amazing-tour-items .thumb .list-items {
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.amazing-tour-items .thumb .list-items h6 {
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    border-radius: 72px;
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    padding: 11px 20px;
    line-height: 1;
}

.amazing-tour-items .thumb .list-items .popup-icon {
    display: flex;
    align-items: center;
    gap: 17px;
}

.amazing-tour-items .thumb .list-items .popup-icon li a {
    color: var(--white);
}

.amazing-tour-items .thumb .list-items .popup-icon li a:hover {
    color: var(--theme-color);
}

.amazing-tour-items .content {
    position: relative;
    padding: 25px;
    border-radius: 0px 0px 10px 10px;
    background: var(--bg);
    /*height: 57%;*/
    /*display: flex;*/
    /*flex-direction: column;*/
    /*justify-content: space-between;*/
}

.amazing-tour-items .content h4 {
    font-size: 18px;
    font-weight: 600;
    line-height: 145%;
}

.amazing-tour-items .content h4 a:hover {
    color: var(--theme-color);
}

.amazing-tour-items .content .location-icon {
    font-size: 14px;
    font-weight: 700;
    color: #818181;
    display: block;
    margin-top: 15px;
}

.amazing-tour-items .content .location-icon i {
    color: var(--header);
    margin-right: 5px;
}

.amazing-tour-items .content .theme-btn {
    font-size: 16px;
    background-color: var(--white);
    padding: 7px 10px 7px 30px;
    margin-top: 15px;
    border: 1.5px solid var(--theme-color);
    border-radius: 30px;
}

.amazing-tour-items .content .theme-btn span {
    color: var(--theme-color);
    margin-right: 15px;
}

.amazing-tour-items .content .theme-btn i {
    width: 34px;
    height: 34px;
    line-height: 34px;
    background-color: var(--theme-color);
    color: var(--white);
    transition: all 0.4s ease-in-out;
}

.amazing-tour-items .content .theme-btn::before {
    background-color: var(--theme-color);
}

.amazing-tour-items .content .theme-btn::after {
    background-color: var(--theme-color);
}

.amazing-tour-items .content .theme-btn:hover span {
    color: var(--white);
}

.amazing-tour-items .content .theme-btn:hover i {
    width: 34px;
    height: 34px;
    line-height: 34px;
    background-color: var(--white);
    color: var(--header);
}

.tour-details-wrapper .tour-details-items .details-thumb {
    position: relative;
}

.tour-details-wrapper .tour-details-items .details-thumb::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: linear-gradient(185deg, rgba(0, 0, 0, 0) 63.28%, rgba(0, 0, 0, 0.82) 96.13%);
    border-radius: 28px;
}

.tour-details-wrapper .tour-details-items .details-thumb img {
    width: 100%;
    height: 100%;
    border-radius: 28px;
}

.tour-details-wrapper .tour-details-items .details-content {
    margin-top: 35px;
}

.tour-details-wrapper .tour-details-items .details-content .location-icon {
    font-weight: 700;
    color: #818181;
    display: inline-block;
    margin-bottom: 20px;
}

.tour-details-wrapper .tour-details-items .details-content .location-icon i {
    color: var(--theme-color-2);
    margin-right: 5px;
}

.tour-details-wrapper .tour-details-items .details-content h2 {
    margin-bottom: 25px;
    font-size: 48px;
    font-weight: 600;
}

@media (max-width: 991px) {
    .tour-details-wrapper .tour-details-items .details-content h2 {
        font-size: 44px;
    }
}

@media (max-width: 575px) {
    .tour-details-wrapper .tour-details-items .details-content h2 {
        font-size: 36px;
    }
}

.tour-details-wrapper .tour-details-items .details-content .destination-list-item {
    margin-top: 40px;
}

.tour-details-wrapper .tour-details-items .details-content .destination-list-item .destination-list {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 70px;
}

@media (max-width: 1399px) {
    .tour-details-wrapper .tour-details-items .details-content .destination-list-item .destination-list {
        gap: 30px;
    }
}

@media (max-width: 1199px) {
    .tour-details-wrapper .tour-details-items .details-content .destination-list-item .destination-list {
        flex-wrap: wrap;
    }
}

.tour-details-wrapper .tour-details-items .details-content .destination-list-item .destination-list li {
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
}

.tour-details-wrapper .tour-details-items .details-content .destination-list-item .destination-list li:not(:last-child) {
    margin-bottom: 15px;
}

.tour-details-wrapper .tour-details-items .details-content .destination-list-item .destination-list li i {
    margin-right: 6px;
    color: var(--theme-color);
}

.tour-details-wrapper .tour-details-items .details-content .tour-details-icon {
    border-radius: 28px;
    border: 1px solid rgba(99, 171, 69, 0.16);
    background: rgba(239, 238, 250, 0.72);
    padding: 50px 35px;
    margin-top: 50px;
    margin-bottom: 50px;
}

.tour-details-wrapper .tour-details-items .details-content .tour-details-icon .icon {
    display: flex;
    align-items: center;
    gap: 15px;
}

.tour-details-wrapper .tour-details-items .details-content .tour-details-icon .icon i {
    font-size: 20px;
    color: var(--theme-color);
}

.tour-details-wrapper .tour-details-items .details-content .tour-details-icon .icon h5 {
    font-size: 18px;
    font-weight: 500;
}

.tour-details-wrapper .tour-details-items .details-content .faq-items {
    border-radius: 28px;
    border: 1px solid rgba(99, 171, 69, 0.16);
    background: rgba(239, 238, 250, 0.72);
    padding: 50px 35px;
}

.tour-details-wrapper .tour-details-items .details-content .faq-items h4 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 30px;
}

.tour-details-wrapper .tour-details-items .details-content .faq-items .accordion-item {
    background-color: transparent;
}

.tour-details-wrapper .tour-details-items .details-content .faq-items .accordion-item .accordion-header .accordion-button {
    font-size: 18px;
    font-weight: 600;
}

.tour-details-wrapper .tour-details-items .details-content .faq-items .accordion-item .accordion-header .accordion-button span {
    color: #F7921E;
}

.tour-details-wrapper .tour-details-items .details-content .map-area {
    margin-top: 50px;
}

.tour-details-wrapper .tour-details-items .details-content .map-area h3 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 30px;
}

.tour-details-wrapper .tour-details-items .details-content .map-area iframe {
    height: 346px;
    border-radius: 28px;
    width: 100%;
}

.tour-details-wrapper .tour-details-items .details-content .review-area {
    margin-top: 50px;
}

.tour-details-wrapper .tour-details-items .details-content .review-area h3 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 30px;
}

.tour-details-wrapper .tour-details-items .details-content .review-area .courses-reviews-box-items {
    border-radius: 28px;
    background: #151415;
    padding: 45px;
}

.tour-details-wrapper .tour-details-items .details-content .review-area .courses-reviews-box-items .courses-reviews-box {
    display: flex;
    align-items: center;
    gap: 35px;
}

@media (max-width: 767px) {
    .tour-details-wrapper .tour-details-items .details-content .review-area .courses-reviews-box-items .courses-reviews-box {
        flex-wrap: wrap;
        gap: 20px;
    }
}

.tour-details-wrapper .tour-details-items .details-content .review-area .courses-reviews-box-items .courses-reviews-box .reviews-box {
    padding: 50px 34px;
    text-align: center;
    min-width: 257px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.1);
}

.tour-details-wrapper .tour-details-items .details-content .review-area .courses-reviews-box-items .courses-reviews-box .reviews-box h2 {
    font-size: 70px;
    font-weight: 700;
    line-height: 1;
    color: var(--white);
}

.tour-details-wrapper .tour-details-items .details-content .review-area .courses-reviews-box-items .courses-reviews-box .reviews-box .star {
    color: #F7921E;
    margin-bottom: 10px;
}

.tour-details-wrapper .tour-details-items .details-content .review-area .courses-reviews-box-items .courses-reviews-box .reviews-box p {
    color: var(--white);
}

.tour-details-wrapper .tour-details-items .details-content .review-area .courses-reviews-box-items .reviews-ratting-right {
    max-width: 460px;
    width: 100%;
}

.tour-details-wrapper .tour-details-items .details-content .review-area .courses-reviews-box-items .reviews-ratting-right .reviews-ratting-item {
    display: flex;
    align-items: center;
    gap: 30px;
}

@media (max-width: 767px) {
    .tour-details-wrapper .tour-details-items .details-content .review-area .courses-reviews-box-items .reviews-ratting-right .reviews-ratting-item {
        flex-wrap: wrap;
        gap: 20px;
    }
}

.tour-details-wrapper .tour-details-items .details-content .review-area .courses-reviews-box-items .reviews-ratting-right .reviews-ratting-item:not(:last-child) {
    margin-bottom: 15px;
}

.tour-details-wrapper .tour-details-items .details-content .review-area .courses-reviews-box-items .reviews-ratting-right .reviews-ratting-item .star {
    color: #F7921E;
    display: flex;
    align-items: center;
    gap: 7px;
}

.tour-details-wrapper .tour-details-items .details-content .review-area .courses-reviews-box-items .reviews-ratting-right .reviews-ratting-item .star i.color-2 {
    color: var(--text);
}

.tour-details-wrapper .tour-details-items .details-content .review-area .courses-reviews-box-items .reviews-ratting-right .reviews-ratting-item span {
    font-weight: 500;
    color: var(--white);
    font-size: 16px;
}

.tour-details-wrapper .tour-details-items .details-content .review-area .courses-reviews-box-items .reviews-ratting-right .reviews-ratting-item .progress {
    background: rgba(247, 146, 30, 0.15);
    justify-content: flex-start;
    border-radius: 0;
    align-items: center;
    position: relative;
    display: flex;
    height: 5px;
    width: 100%;
    max-width: 244px;
}

.tour-details-wrapper .tour-details-items .details-content .review-area .courses-reviews-box-items .reviews-ratting-right .reviews-ratting-item .progress-value {
    animation: load 3s normal forwards;
    border-radius: 0;
    background: #F7921E;
    height: 5px;
    width: 0;
}

.tour-details-wrapper .tour-details-items .details-content .review-area .courses-reviews-box-items .reviews-ratting-right .reviews-ratting-item .style-two {
    animation: load2 3s normal forwards;
}

.tour-details-wrapper .tour-details-items .details-content .review-area .courses-reviews-box-items .reviews-ratting-right .reviews-ratting-item .style-three {
    animation: load3 3s normal forwards;
}

.tour-details-wrapper .tour-details-items .details-content .review-area .courses-reviews-box-items .reviews-ratting-right .reviews-ratting-item .style-four {
    animation: load4 3s normal forwards;
}

.tour-details-wrapper .tour-details-items .details-content .review-area .courses-reviews-box-items .reviews-ratting-right .reviews-ratting-item .style-five {
    animation: load5 3s normal forwards;
}

@keyframes load {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}

@keyframes load2 {
    0% {
        width: 0;
    }
    100% {
        width: 90%;
    }
}

@keyframes load3 {
    0% {
        width: 0;
    }
    100% {
        width: 80%;
    }
}

@keyframes load4 {
    0% {
        width: 0;
    }
    100% {
        width: 70%;
    }
}

@keyframes load5 {
    0% {
        width: 0;
    }
    100% {
        width: 60%;
    }
}

.tour-details-wrapper .tour-details-items .details-content .client-review-items {
    margin-top: 50px;
    margin-bottom: 50px;
}

.tour-details-wrapper .tour-details-items .details-content .client-review-items h3 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 30px;
}

.tour-details-wrapper .tour-details-items .details-content .client-review-items .clinet-box-items {
    border-radius: 28px;
    border: 1px solid rgba(21, 20, 21, 0.14);
    background: var(--white);
    padding: 45px;
}

.tour-details-wrapper .tour-details-items .details-content .client-review-items .clinet-box-items .clinet-box .star {
    color: #F7921E;
    margin-bottom: 20px;
}

.tour-details-wrapper .tour-details-items .details-content .client-review-items .clinet-box-items .clinet-box h5 {
    font-size: 18px;
    letter-spacing: -0.36px;
    font-weight: 500;
    line-height: 178%;
}

.tour-details-wrapper .tour-details-items .details-content .client-review-items .clinet-box-items .clinet-box .review-wrap-area {
    border-bottom: 1px solid rgba(21, 20, 21, 0.14);
    padding-bottom: 40px;
    margin-top: 40px;
}

@media (max-width: 991px) {
    .tour-details-wrapper .tour-details-items .details-content .client-review-items .clinet-box-items .clinet-box .review-wrap-area {
        flex-wrap: wrap;
        gap: 20px !important;
    }
}

.tour-details-wrapper .tour-details-items .details-content .client-review-items .clinet-box-items .clinet-box .review-wrap-area .review-thumb {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.tour-details-wrapper .tour-details-items .details-content .client-review-items .clinet-box-items .clinet-box .review-wrap-area .review-thumb img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.tour-details-wrapper .tour-details-items .details-content .client-review-items .clinet-box-items .clinet-box .review-wrap-area .review-content {
    width: 100%;
    flex-basis: 90%;
}

@media (max-width: 991px) {
    .tour-details-wrapper .tour-details-items .details-content .client-review-items .clinet-box-items .clinet-box .review-wrap-area .review-content {
        flex-basis: initial;
    }
}

.tour-details-wrapper .tour-details-items .details-content .client-review-items .clinet-box-items .clinet-box .review-wrap-area .review-content .head-area .cont {
    margin-bottom: 10px;
}

.tour-details-wrapper .tour-details-items .details-content .client-review-items .clinet-box-items .clinet-box .review-wrap-area .review-content .head-area .cont h5 {
    font-size: 20px;
    font-weight: 600;
}

.tour-details-wrapper .tour-details-items .details-content .client-review-items .clinet-box-items .clinet-box .review-wrap-area .review-content .head-area .cont span {
    color: #455151;
    font-size: 16px;
    font-weight: 600;
}

.tour-details-wrapper .tour-details-items .details-content .client-review-items .clinet-box-items .clinet-box .review-wrap-area .review-content .head-area h6 {
    font-weight: 600;
    font-size: 20px;
    text-decoration: underline;
    color: var(--theme-color);
}

.tour-details-wrapper .tour-details-items .details-content .client-review-items .clinet-box-items .clinet-box .review-wrap-area .review-content .head-area h6 a {
    color: var(--theme-color);
}

.tour-details-wrapper .tour-details-items .details-content .client-review-items .clinet-box-items .clinet-box.style-2 {
    padding-left: 100px;
    margin-top: 40px;
}

@media (max-width: 1199px) {
    .tour-details-wrapper .tour-details-items .details-content .client-review-items .clinet-box-items .clinet-box.style-2 {
        padding-left: 0;
    }
}

.tour-details-wrapper .tour-details-items .details-content .client-review-items .clinet-box-items .clinet-box.style-2 .review-wrap-area {
    border-bottom: none;
    margin-top: 40px;
    padding-bottom: 0;
}

.tour-details-wrapper .tour-details-items .details-content .client-review-items .clinet-box-3 {
    border-radius: 28px;
    border: 1px solid rgba(21, 20, 21, 0.14);
    background: var(--white);
    padding: 45px;
    margin-top: 25px;
}

.tour-details-wrapper .tour-details-items .details-content .client-review-items .clinet-box-3 .star {
    color: #F7921E;
    margin-bottom: 20px;
}

.tour-details-wrapper .tour-details-items .details-content .client-review-items .clinet-box-3 h5 {
    font-size: 18px;
    letter-spacing: -0.36px;
    font-weight: 500;
    line-height: 178%;
}

.tour-details-wrapper .tour-details-items .details-content .client-review-items .clinet-box-3 .review-wrap-area {
    margin-top: 40px;
}

@media (max-width: 991px) {
    .tour-details-wrapper .tour-details-items .details-content .client-review-items .clinet-box-3 .review-wrap-area {
        flex-wrap: wrap;
        gap: 20px !important;
    }
}

.tour-details-wrapper .tour-details-items .details-content .client-review-items .clinet-box-3 .review-wrap-area .review-thumb {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.tour-details-wrapper .tour-details-items .details-content .client-review-items .clinet-box-3 .review-wrap-area .review-thumb img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.tour-details-wrapper .tour-details-items .details-content .client-review-items .clinet-box-3 .review-wrap-area .review-content {
    width: 100%;
    flex-basis: 90%;
}

@media (max-width: 991px) {
    .tour-details-wrapper .tour-details-items .details-content .client-review-items .clinet-box-3 .review-wrap-area .review-content {
        flex-basis: initial;
    }
}

.tour-details-wrapper .tour-details-items .details-content .client-review-items .clinet-box-3 .review-wrap-area .review-content .head-area .cont {
    margin-bottom: 10px;
}

.tour-details-wrapper .tour-details-items .details-content .client-review-items .clinet-box-3 .review-wrap-area .review-content .head-area .cont h5 {
    font-size: 20px;
    font-weight: 600;
}

.tour-details-wrapper .tour-details-items .details-content .client-review-items .clinet-box-3 .review-wrap-area .review-content .head-area .cont span {
    color: #455151;
    font-size: 16px;
    font-weight: 600;
}

.tour-details-wrapper .tour-details-items .details-content .client-review-items .clinet-box-3 .review-wrap-area .review-content .head-area h6 {
    font-weight: 600;
    font-size: 20px;
    text-decoration: underline;
    color: var(--theme-color);
}

.tour-details-wrapper .tour-details-items .details-content .client-review-items .clinet-box-3 .review-wrap-area .review-content .head-area h6 a {
    color: var(--theme-color);
}

.tour-details-wrapper .tour-details-items .details-content .review-comment-items {
    border-radius: 28px;
    border: 1px solid rgba(99, 171, 69, 0.16);
    background: rgba(239, 238, 250, 0.72);
    padding: 45px;
}

@media (max-width: 575px) {
    .tour-details-wrapper .tour-details-items .details-content .review-comment-items {
        padding: 30px;
    }
}

.tour-details-wrapper .tour-details-items .details-content .review-comment-items h3 {
    font-size: 32px;
    margin-bottom: 40px;
}

.tour-details-wrapper .tour-details-items .details-content .review-comment-items ul {
    display: flex;
    align-items: center;
    gap: 70px;
    margin-bottom: 10px;
}

@media (max-width: 1399px) {
    .tour-details-wrapper .tour-details-items .details-content .review-comment-items ul {
        flex-wrap: wrap;
        gap: 30px;
    }
}

.tour-details-wrapper .tour-details-items .details-content .review-comment-items ul li {
    font-size: 16px;
    font-weight: 600;
    color: var(--header);
    display: flex;
    align-items: center;
    gap: 12px;
    flex-basis: 25%;
}

@media (max-width: 1399px) {
    .tour-details-wrapper .tour-details-items .details-content .review-comment-items ul li {
        flex-basis: initial;
    }
}

.tour-details-wrapper .tour-details-items .details-content .review-comment-items ul li .star {
    color: #F7921E;
}

.tour-details-wrapper .tour-details-items .details-content .review-comment-items h4 {
    font-size: 20px;
    font-weight: 600;
    margin-top: 50px;
    margin-bottom: 25px;
}

.tour-details-wrapper .tour-details-items .details-content .review-comment-items .form-clt input, .tour-details-wrapper .tour-details-items .details-content .review-comment-items .form-clt textarea {
    border: none;
    outline: none;
    width: 100%;
    background-color: var(--white);
    padding: 20px 30px;
    line-height: 1;
    border-radius: 4px;
    color: #455151;
}

.tour-details-wrapper .tour-details-items .details-content .review-comment-items .form-clt input::placeholder, .tour-details-wrapper .tour-details-items .details-content .review-comment-items .form-clt textarea::placeholder {
    color: #455151;
}

.tour-details-wrapper .tour-details-items .details-content .review-comment-items .form-clt textarea {
    padding-bottom: 152px;
}

.tour-details-wrapper .tour-details-sidebar .tour-sidebar-items {
    border-radius: 28px;
    background: var(--bg);
    padding: 45px;
}

.tour-details-wrapper .tour-details-sidebar .tour-sidebar-items h3 {
    font-size: 24px;
}

.tour-details-wrapper .tour-details-sidebar .tour-sidebar-items .form-list {
    position: relative;
    margin-top: 10px;
}

.tour-details-wrapper .tour-details-sidebar .tour-sidebar-items .form-list li {
    color: #455151;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(21, 20, 21, 0.09);
    padding-bottom: 20px;
    padding-top: 15px;
}

.tour-details-wrapper .tour-details-sidebar .tour-sidebar-items .form-list li .form-clt {
    flex-basis: 55%;
}

.tour-details-wrapper .tour-details-sidebar .tour-sidebar-items .form-list li .form-clt input {
    width: 100%;
    outline: none;
    border: none;
    padding: 11px 16px;
    color: #455151;
    background-color: var(--white);
    font-size: 16px;
    text-transform: capitalize;
    font-weight: 700;
    border-radius: 8px !important;
    border: 1px solid rgba(21, 20, 21, 0.15);
    color-scheme: dark;
    line-height: 1;
    font-size: 14px;
}

@media (max-width: 575px) {
    .tour-details-wrapper .tour-details-sidebar .tour-sidebar-items .form-list li .form-clt input {
        padding: 12px 20px;
        font-size: 14px;
    }
}

.tour-details-wrapper .tour-details-sidebar .tour-sidebar-items .form-list li .form-clt input::placeholder {
    color: #455151;
}

.tour-details-wrapper .tour-details-sidebar .tour-sidebar-items .form-list li .form-clt .checkbox-single {
    position: relative;
    padding-left: 18px;
    cursor: pointer;
    display: block;
}

.tour-details-wrapper .tour-details-sidebar .tour-sidebar-items .form-list li .form-clt .checkbox-single input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.tour-details-wrapper .tour-details-sidebar .tour-sidebar-items .form-list li .form-clt .checkbox-single .checkbox-area .checkmark {
    position: absolute;
    left: 0;
    height: 20px;
    width: 20px;
    border-radius: 20px;
    border: 1px solid rgba(21, 20, 21, 0.15);
    background-color: var(--white);
    top: 5px;
}

.tour-details-wrapper .tour-details-sidebar .tour-sidebar-items .form-list li .form-clt .checkbox-single .checkbox-area .checkmark::after {
    content: "";
}

.tour-details-wrapper .tour-details-sidebar .tour-sidebar-items .form-list li .form-clt .checkbox-single .checkbox-area input:checked ~ .checkmark {
    background-color: var(--theme-color);
}

.tour-details-wrapper .tour-details-sidebar .tour-sidebar-items .form-list li .form-clt .checkbox-single .checkbox-area input:checked ~ .checkmark::after {
    content: "\f00c";
    position: absolute;
    font-family: "Font Awesome 5 Pro";
    top: -5px;
    left: 5px;
    color: var(--theme-color);
    font-size: 11px;
}

.tour-details-wrapper .tour-details-sidebar .tour-sidebar-items .form-list li .form-clt .checkbox-single .checkbox-area input:checked ~ .checkmark:after {
    display: block;
    color: var(--white);
}

.tour-details-wrapper .tour-details-sidebar .tour-sidebar-items .form-list li .form-clt .checkbox-single .text-color {
    color: #455151;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    white-space: nowrap;
}

.tour-details-wrapper .tour-details-sidebar .tour-sidebar-items .form-list .form-clt {
    position: relative;
}

.tour-details-wrapper .tour-details-sidebar .tour-sidebar-items .form-list .input-group-addon {
    position: absolute;
    right: 12px;
    top: 8px;
}

.tour-details-wrapper .tour-details-sidebar .tour-sidebar-items .tickets-list {
    margin-top: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(21, 20, 21, 0.09);
    padding-bottom: 24px;
}

.tour-details-wrapper .tour-details-sidebar .tour-sidebar-items .tickets-list p {
    font-size: 16px;
    color: #455151;
    font-weight: 800;
    margin-bottom: 10px;
}

.tour-details-wrapper .tour-details-sidebar .tour-sidebar-items .tickets-list ul li {
    color: #455151;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tour-details-wrapper .tour-details-sidebar .tour-sidebar-items .tickets-list ul li:not(:last-child) {
    margin-bottom: 20px;
}

.tour-details-wrapper .tour-details-sidebar .tour-sidebar-items .tickets-list ul li b {
    font-weight: 700;
    color: var(--theme-color);
    padding-left: 10px;
}

.tour-details-wrapper .tour-details-sidebar .tour-sidebar-items .tickets-list ul li .form-clt {
    flex-basis: 50%;
}

.tour-details-wrapper .tour-details-sidebar .tour-sidebar-items .tickets-list ul li .form-clt .single-select {
    width: 100%;
    border-radius: 8px;
    border: 1px solid rgba(21, 20, 21, 0.15);
    background: var(--white);
    padding: 11px 16px;
    line-height: 1;
    font-size: 14px;
    color: #455151;
    font-weight: 700;
    height: initial;
    line-height: initial;
}

.tour-details-wrapper .tour-details-sidebar .tour-sidebar-items .tickets-list ul li .form-clt .single-select::after {
    border-bottom: 1px solid #231C25;
    border-right: 1px solid #231C25;
    width: 8px;
    height: 8px;
}

.tour-details-wrapper .tour-details-sidebar .tour-sidebar-items .tickets-list ul li .form-clt .single-select .list {
    width: 100%;
    background-color: var(--white);
}

.tour-details-wrapper .tour-details-sidebar .tour-sidebar-items .tickets-list ul li .form-clt .single-select .focus {
    background-color: var(--white);
}

.tour-details-wrapper .tour-details-sidebar .tour-sidebar-items .tickets-list ul li .form-clt .single-select .option {
    border: none;
}

.tour-details-wrapper .tour-details-sidebar .tour-sidebar-items .extra-items {
    border-bottom: 1px solid rgba(21, 20, 21, 0.09);
    padding-bottom: 24px;
}

.tour-details-wrapper .tour-details-sidebar .tour-sidebar-items .extra-items p {
    color: #455151;
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 20px;
}

.tour-details-wrapper .tour-details-sidebar .tour-sidebar-items .extra-items .checkbox-single {
    position: relative;
    padding-left: 18px;
    cursor: pointer;
}

.tour-details-wrapper .tour-details-sidebar .tour-sidebar-items .extra-items .checkbox-single input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.tour-details-wrapper .tour-details-sidebar .tour-sidebar-items .extra-items .checkbox-single:not(:last-child) {
    margin-bottom: 10px;
}

.tour-details-wrapper .tour-details-sidebar .tour-sidebar-items .extra-items .checkbox-single .checkbox-area .checkmark {
    position: absolute;
    left: 0;
    height: 20px;
    width: 20px;
    border-radius: 20px;
    border: 1px solid rgba(21, 20, 21, 0.15);
    top: 5px;
    background-color: var(--white);
}

.tour-details-wrapper .tour-details-sidebar .tour-sidebar-items .extra-items .checkbox-single .checkbox-area .checkmark::after {
    content: "";
}

.tour-details-wrapper .tour-details-sidebar .tour-sidebar-items .extra-items .checkbox-single .checkbox-area input:checked ~ .checkmark {
    background-color: var(--theme-color);
}

.tour-details-wrapper .tour-details-sidebar .tour-sidebar-items .extra-items .checkbox-single .checkbox-area input:checked ~ .checkmark::after {
    content: "\f00c";
    position: absolute;
    font-family: "Font Awesome 5 Pro";
    top: -5px;
    left: 5px;
    color: var(--theme-color);
    font-size: 11px;
}

.tour-details-wrapper .tour-details-sidebar .tour-sidebar-items .extra-items .checkbox-single .checkbox-area input:checked ~ .checkmark:after {
    display: block;
    color: var(--white);
}

.tour-details-wrapper .tour-details-sidebar .tour-sidebar-items .extra-items .checkbox-single .text-color {
    font-weight: 500;
    color: #455151;
    font-size: 16px;
}

.tour-details-wrapper .tour-details-sidebar .tour-sidebar-items .extra-items .checkbox-single .text-color .star {
    color: #FFA41B;
    margin-right: 5px;
}

.tour-details-wrapper .tour-details-sidebar .tour-sidebar-items .total-list {
    display: flex;
    align-items: center;
    padding-top: 24px;
    justify-content: space-between;
    margin-bottom: 30px;
}

.tour-details-wrapper .tour-details-sidebar .tour-sidebar-items .total-list li {
    font-size: 20px;
    font-weight: 800;
    color: #151415;
}

.tour-details-wrapper .tour-details-sidebar .tour-sidebar-items .theme-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 15px 6px 30px;
}

.tour-details-wrapper .tour-details-sidebar .tour-sidebar-items .theme-btn span {
    margin-right: 0;
}

.tour-details-wrapper .tour-details-sidebar .tour-sidebar-items .text {
    text-align: center;
    text-transform: capitalize;
    margin-top: 30px;
}

.tour-details-wrapper .tour-details-sidebar .offer-card {
    padding: 45px;
    border-radius: 28px;
    height: 420px;
    margin-top: 30px;
}

.tour-details-wrapper .tour-details-sidebar .offer-card h3 {
    font-size: 24px;
    color: var(--white);
    font-weight: 500;
    margin-bottom: 30px;
}

.tour-main-item {
    position: relative;
}

.tour-main-item .tour-box-items-3 {
    position: relative;
    border-radius: 10px;
    padding: 30px;
    display: flex;
    justify-content: space-between;
}

.tour-main-item .tour-box-items-3::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: rgba(255, 87, 34, 0.88);
    border-radius: 10px;
}

.tour-main-item .tour-box-items-3.style-2::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: rgba(77, 64, 202, 0.88);
}

.tour-main-item .tour-box-items-3.style-3::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: rgba(142, 64, 202, 0.91);
}

.tour-main-item .tour-box-items-3 .tour-content {
    position: relative;
}

@media (max-width: 1199px) {
    .tour-main-item .tour-box-items-3 .tour-content br {
        display: none !important;
    }
}

.tour-main-item .tour-box-items-3 .tour-content h3 {
    font-size: 30px;
    color: var(--white);
    margin-bottom: 35px;
}

@media (max-width: 1399px) {
    .tour-main-item .tour-box-items-3 .tour-content h3 {
        font-size: 24px;
    }
}

.tour-main-item .tour-box-items-3 .tour-content .theme-btn {
    padding: 5px 6px 5px 26px;
    background-color: var(--white);
}

.tour-main-item .tour-box-items-3 .tour-content .theme-btn span {
    margin-right: 8px;
    color: var(--theme-color);
}

.tour-main-item .tour-box-items-3 .tour-content .theme-btn i {
    width: 34px;
    height: 34px;
    line-height: 34px;
    background-color: var(--theme-color);
    color: var(--white);
}

.tour-main-item .tour-box-items-3 .tour-content .theme-btn::before {
    background-color: var(--theme-color);
}

.tour-main-item .tour-box-items-3 .tour-content .theme-btn::after {
    background-color: var(--theme-color);
}

.tour-main-item .tour-box-items-3 .tour-content .theme-btn:hover {
    background-color: var(--theme-color);
    color: var(--white);
}

.tour-main-item .tour-box-items-3 .tour-content .theme-btn:hover span {
    color: var(--white);
}

.tour-main-item .tour-box-items-3 .tour-content .theme-btn:hover i {
    background-color: var(--white);
    color: var(--black);
}

.tour-main-item .tour-box-items-3 .tour-content .theme-btn:hover::before {
    top: 100%;
}

.tour-main-item .tour-box-items-3 .tour-content .theme-btn:hover::after {
    bottom: -50%;
}

.tour-main-item .tour-box-items-3 .percent-image {
    position: relative;
}

.tour-main-item .shape {
    position: absolute;
    bottom: 20px;
    right: 0;
}

.tour-section2 {
    position: relative;
    padding-top: 100px;
}

.tour-section2::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: var(--white);
    top: 50%;
}

.tour-discover-wrapper .tour-card-item .tour-image img {
    width: 100%;
    height: 100%;
    border-top-left-radius: 28px;
    border-top-right-radius: 28px;
}

.tour-discover-wrapper .tour-card-item .tour-content {
    background-color: var(--white);
    border-radius: 28px;
    padding: 25px;
    margin-top: -50px;
    position: relative;
}

.tour-discover-wrapper .tour-card-item .tour-content h6 {
    color: #818181;
    border-bottom: 1px dashed rgba(21, 20, 21, 0.21);
    padding-bottom: 22px;
    margin-bottom: 22px;
}

.tour-discover-wrapper .tour-card-item .tour-content h6 span {
    font-size: 18px;
    font-weight: 900;
    color: var(--theme-color);
}

.tour-discover-wrapper .tour-card-item .tour-content h4 {
    margin-bottom: 15px;
    font-weight: 500;
}

.tour-discover-wrapper .tour-card-item .tour-content h4 a:hover {
    color: var(--theme-color);
}

.tour-discover-wrapper .tour-card-item .tour-content ul {
    margin-bottom: 10px;
}

.tour-discover-wrapper .tour-card-item .tour-content ul li {
    font-weight: 500;
    color: #818181;
}

.tour-discover-wrapper .tour-card-item .tour-content ul li i {
    color: rgb(251, 91, 50);
    margin-right: 5px;
}

.tour-discover-wrapper .tour-card-item .tour-content .list {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tour-discover-wrapper .tour-card-item .tour-content .list ul li {
    color: #818181;
    font-weight: 500;
    font-size: 14px;
}

.tour-discover-wrapper .tour-card-item .tour-content .list ul li i {
    color: var(--theme-color-2);
    margin: 5px;
    font-size: 18px;
}

.tour-discover-wrapper .tour-card-item .tour-content .star {
    display: inline-block;
}

.tour-discover-wrapper .tour-card-item .tour-content .star i {
    color: rgb(251, 91, 50);
}

.tour-discover-wrapper .tour-card-item .tour-content .star span {
    font-weight: 700;
    color: #818181;
    margin-left: 8px;
}

.tour-discover-wrapper .tour-slider {
    margin-right: -80%;
}

@media (max-width: 1199px) {
    .tour-discover-wrapper .tour-slider {
        margin-right: 0;
    }
}

.tour-places-wrapper-4 {
    margin-top: 30px;
    background-color: var(--white);
    border-radius: 28px;
    box-shadow: 10px 9px 106.6px 55px rgba(5, 6, 60, 0.04);
    padding: 10px 40px;
    padding-right: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 1199px) {
    .tour-places-wrapper-4 {
        flex-wrap: wrap;
        gap: 30px;
        padding: 30px;
    }
}

.tour-places-wrapper-4 .content {
    max-width: 370px;
}

.tour-places-wrapper-4 .content span {
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    color: var(--theme-color);
    display: inline-block;
}

.tour-places-wrapper-4 .content h3 {
    margin-bottom: 10px;
}

.tour-places-wrapper-4 .content h3 a {
    background-position: 0 95%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    display: inline;
}

.tour-places-wrapper-4 .content h3 a:hover {
    color: var(--theme-color);
    background-size: 100% 2px;
    background-image: -webkit-gradient(linear, left top, left bottom, from(var(--theme-color)), to(var(--theme-color)));
    background-image: linear-gradient(var(--theme-color), var(--theme-color));
}

.tour-places-wrapper-4 .list {
    max-width: 300px;
}

.tour-places-wrapper-4 .list li {
    font-size: 14px;
    font-weight: 500;
}

.tour-places-wrapper-4 .list li i {
    color: var(--theme-color-2);
    margin-right: 10px;
}

.tour-places-wrapper-4 .list li:not(:last-child) {
    margin-bottom: 15px;
}

.tour-places-wrapper-4 .list li .star i {
    color: var(--theme-color-2);
    margin-right: 0;
}

.tour-places-wrapper-4 .list li .star span {
    font-weight: 500;
    font-size: 14px;
    display: inline-block;
    margin-left: 10px;
}

.tour-places-wrapper-4 .thumb {
    max-width: 415px;
    position: relative;
}

@media (max-width: 1199px) {
    .tour-places-wrapper-4 .thumb {
        flex-basis: 100%;
        max-width: initial;
    }
}

.tour-places-wrapper-4 .thumb img {
    width: 100%;
    height: 100%;
    border-radius: 28px;
}

.tour-places-wrapper-4 .thumb .price-list {
    display: grid;
    align-items: center;
    width: 86px;
    border-radius: 50%;
    height: 86px;
    justify-content: center;
    background-color: var(--theme-color);
    text-align: center;
    position: absolute;
    bottom: 15px;
    left: 18px;
}

.tour-places-wrapper-4 .thumb .price-list.bg-2 {
    background-color: #FF5722;
}

.tour-places-wrapper-4 .thumb .price-list.bg-3 {
    background-color: #1EBDF7;
}

.tour-places-wrapper-4 .thumb .price-list .price {
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
    font-family: "Prompt", sans-serif;
    margin-top: 5px;
}

.tour-places-wrapper-4 .thumb .price-list .person {
    color: var(--white);
    margin-top: -30px;
}

.tour-box-items-5 {
    margin-top: 30px;
    padding: 50px 35px;
    border-radius: 28px;
    position: relative;
}

.tour-box-items-5::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: rgba(247, 146, 30, 0.88);
    border-radius: 28px;
}

.tour-box-items-5.bg-2::before {
    background: rgba(30, 189, 247, 0.88);
}

.tour-box-items-5 .tour-content {
    position: relative;
    z-index: 999;
}

.tour-box-items-5 .tour-content span {
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
}

.tour-box-items-5 .tour-content h3 {
    color: var(--white);
    font-size: 30px;
    font-weight: 600;
}

.tour-box-items-5 .tour-content p {
    max-width: 300px;
    font-weight: 500;
    font-size: 16px;
    color: var(--white);
}

.tour-box-items-5 .tour-content .theme-btn {
    padding: 5px 6px 5px 26px;
    background-color: var(--white);
    margin-top: 40px;
}

.tour-box-items-5 .tour-content .theme-btn span {
    margin-right: 8px;
    color: var(--theme-color);
}

.tour-box-items-5 .tour-content .theme-btn i {
    width: 34px;
    height: 34px;
    line-height: 34px;
    background-color: var(--theme-color);
    color: var(--white);
}

.tour-box-items-5 .tour-content .theme-btn::before {
    background-color: var(--theme-color);
}

.tour-box-items-5 .tour-content .theme-btn::after {
    background-color: var(--theme-color);
}

.tour-box-items-5 .tour-content .theme-btn:hover {
    background-color: var(--theme-color);
    color: var(--white);
}

.tour-box-items-5 .tour-content .theme-btn:hover span {
    color: var(--white);
}

.tour-box-items-5 .tour-content .theme-btn:hover i {
    background-color: var(--white);
    color: var(--black);
}

.tour-box-items-5 .tour-content .theme-btn:hover::before {
    top: 100%;
}

.tour-box-items-5 .tour-content .theme-btn:hover::after {
    bottom: -50%;
}

.tour-box-items-5 .percent-image {
    position: absolute;
    bottom: 60px;
    left: 60%;
    transform: translateX(-50%);
    z-index: 11;
}

@media (max-width: 1199px) {
    .tour-box-items-5 .percent-image {
        display: none;
    }
}

.tour-box-items-5 .shape-image {
    position: absolute;
    bottom: 0;
    top: 0;
    right: 0;
    z-index: 9;
    max-width: 280px;
}

@media (max-width: 1199px) {
    .tour-box-items-5 .shape-image {
        display: none;
    }
}

.tour-box-items-5 .shape-image img {
    width: 100%;
    height: 100%;
    border-radius: 0 28px 28px 0;
}

.tour-wrapper-5 {
    position: relative;
    border-radius: 28px;
    margin: 0 42px;
    overflow: hidden;
}

@media (max-width: 1399px) {
    .tour-wrapper-5 {
        margin: 0;
    }
}

.tour-wrapper-5::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    border-radius: 28px;
    background: rgba(21, 20, 21, 0.81);
}

.tour-wrapper-5 .tour-box-items-6 {
    background-color: var(--white);
    padding: 10px;
    border-radius: 28px;
    position: relative;
    margin-top: 30px;
}

.tour-wrapper-5 .tour-box-items-6 .tour-image {
    position: relative;
}

.tour-wrapper-5 .tour-box-items-6 .tour-image::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(21, 20, 21, 0) 0%, rgba(21, 20, 21, 0.73) 80.53%);
}

.tour-wrapper-5 .tour-box-items-6 .tour-image .star {
    display: inline-block;
    position: absolute;
    left: 20px;
    bottom: 20px;
}

.tour-wrapper-5 .tour-box-items-6 .tour-image .star i {
    color: rgb(251, 91, 50);
}

.tour-wrapper-5 .tour-box-items-6 .tour-image .star span {
    font-weight: 700;
    font-size: 14px;
    color: var(--white);
    margin-left: 8px;
}

.tour-wrapper-5 .tour-box-items-6 .tour-image img {
    width: 100%;
    height: 100%;
    border-radius: 28px;
}

.tour-wrapper-5 .tour-box-items-6 .tour-content {
    padding: 30px 20px 20px;
}

.tour-wrapper-5 .tour-box-items-6 .tour-content h6 {
    color: #818181;
    margin-bottom: 22px;
}

.tour-wrapper-5 .tour-box-items-6 .tour-content h6 span {
    font-size: 18px;
    font-weight: 900;
    color: var(--theme-color);
}

.tour-wrapper-5 .tour-box-items-6 .tour-content h5 {
    margin-bottom: 25px;
}

.tour-wrapper-5 .tour-box-items-6 .tour-content h5 a:hover {
    color: var(--theme-color);
}

.tour-wrapper-5 .tour-box-items-6 .tour-content ul {
    margin-bottom: 10px;
}

.tour-wrapper-5 .tour-box-items-6 .tour-content ul li {
    font-weight: 500;
    color: #818181;
}

.tour-wrapper-5 .tour-box-items-6 .tour-content ul li:not(:last-child) {
    margin-bottom: 10px;
}

.tour-wrapper-5 .tour-box-items-6 .tour-content ul li i {
    color: rgb(251, 91, 50);
    margin-right: 5px;
}

.tour-wrapper-5 .tour-slider-5 {
    margin-left: -10%;
    margin-right: -10%;
}

@media (max-width: 1399px) {
    .tour-wrapper-5 .tour-slider-5 {
        margin: 0;
    }
}

.tour-wrapper-5 .swiper-dot4 {
    position: relative;
    z-index: 9;
}

.tour-wrapper-5 .swiper-dot4 .swiper-pagination-bullet {
    width: 7px;
    height: 7px;
    transition: 0.6s;
    background-color: rgb(255, 255, 255);
    opacity: 1;
    border-radius: 100%;
    position: relative;
}

.tour-wrapper-5 .swiper-dot4 .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: var(--theme-color);
    transition: 0.6s;
    position: relative;
    width: 30px;
    border-radius: 30px;
}

::-webkit-scrollbar {
    width: 6px;
    height: 4px;
}

/* Track */
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px var(--theme-color);
    border-radius: 5px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--theme-color);
    border-radius: 10px;
}

.fix {
    overflow: hidden;
}

.ralt {
    position: relative;
}

.ripple {
    position: relative;
}

.ripple::before, .ripple::after {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 80px;
    height: 80px;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.9);
    animation: rippleOne 3s infinite;
}

.ripple::before {
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
}

.ripple::after {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
}

.swiper-dot .swiper-pagination-bullet {
    width: 7px;
    height: 7px;
    transition: 0.6s;
    background: var(--theme-color);
    opacity: 1;
    border-radius: 7px;
}

.swiper-dot .swiper-pagination-bullet:not(:last-child) {
    margin-right: 15px;
}

.swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active {
    transition: 0.6s;
    position: relative;
}

.swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
    position: absolute;
    width: 22px;
    height: 22px;
    line-height: 22px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background-color: transparent;
    border: 1px solid var(--theme-color);
    content: "";
}

.array-button {
    display: flex;
    align-items: center;
    gap: 18px;
}

.array-button .array-prev, .array-button .array-next {
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    border-radius: 50%;
    background-color: var(--white);
    transition: all 0.4s ease-in-out;
}

.array-button .array-prev:hover, .array-button .array-next:hover {
    background-color: var(--theme-color);
    color: var(--white);
}

.array-button.style-2 .array-prev {
    border: 1px solid var(--border);
}

.array-button.style-2 .array-next {
    border: 1px solid var(--theme-color);
    background-color: var(--theme-color);
    color: var(--white);
}

.array-button.style-2 .array-next:hover {
    background-color: var(--header);
}

@media (max-width: 575px) {
    br {
        display: none;
    }
}

/* background */
.bg-cover {
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    background-position: center;
}

.sticky-style {
    position: sticky !important;
    top: 100px;
}

.box-shadow {
    box-shadow: var(---box-shadow);
}

.custom-container {
    max-width: 1560px;
    margin: 0 auto;
}

.custom-container-2 {
    max-width: 1568px;
    margin: 0 auto;
}

.box-shadow-none::before {
    box-shadow: none !important;
}

.slide-transtion {
    -webkit-transition-timing-function: linear;
    transition-timing-function: linear;
}

.brand-slide-element {
    width: auto;
    display: inline-block;
}

@media (max-width: 991px) {
    .lg-center {
        justify-content: center;
        text-align: center;
    }
}

.swiper-dot4 .swiper-pagination-bullet {
    width: 7px;
    height: 7px;
    transition: 0.6s;
    background-color: rgb(129, 129, 129);
    opacity: 1;
    border-radius: 100%;
    position: relative;
}

.swiper-dot4 .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: var(--theme-color);
    transition: 0.6s;
    position: relative;
    width: 30px;
    border-radius: 30px;
}

.mt-30 {
    margin-top: 30px;
}

.team-box-items {
    margin-top: 30px;
}

.team-box-items .thumb {
    max-width: 282px;
    margin: 0 auto;
    text-align: center;
}

.team-box-items .thumb img {
    border-radius: 50%;
}

@media (max-width: 767px) {
    .team-box-items .thumb img {
        width: 100%;
        height: 100%;
    }
}

.team-box-items .content {
    border-radius: 10px;
    border: 1px solid rgba(35, 28, 37, 0.14);
    background: var(--white);
    padding: 25px 20px;
    text-align: center;
    margin-top: -30px;
    position: relative;
    z-index: 9;
}

.team-box-items .content p {
    font-weight: 600;
    color: #F7921E;
}

.team-box-items .content h3 a:hover {
    color: var(--theme-color);
}

.team-box-items .content .social-icon {
    gap: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
}

.team-box-items .content .social-icon a {
    display: inline-block;
    width: 43px;
    height: 43px;
    line-height: 43px;
    text-align: center;
    border-radius: 50%;
    background-color: var(--white);
    color: var(--text);
    border: 1px solid rgba(35, 28, 37, 0.14);
}

.team-box-items .content .social-icon a:hover {
    background-color: var(--theme-color);
    color: var(--white);
    border: 1px solid var(--theme-color);
}

.team-section {
    position: relative;
}

.team-section .plane-shape {
    position: absolute;
    left: 0;
    top: 10%;
}

@media (max-width: 1399px) {
    .team-section .plane-shape {
        display: none;
    }
}

.team-section .plane-shape-2 {
    position: absolute;
    bottom: 30px;
    right: 200px;
}

@media (max-width: 1399px) {
    .team-section .plane-shape-2 {
        display: none;
    }
}

.team-section .frame-shape {
    position: absolute;
    top: 15%;
    right: 5%;
}

@media (max-width: 1399px) {
    .team-section .frame-shape {
        display: none;
    }
}

.team-details-wrapper .team-details-image img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

.team-details-wrapper .team-details-content {
    margin-left: 40px;
}

@media (max-width: 991px) {
    .team-details-wrapper .team-details-content {
        margin-left: 0;
    }
}

.team-details-wrapper .team-details-content .details-info {
    border-bottom: 1px solid var(--border);
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.team-details-wrapper .team-details-content .details-info h3 {
    margin-bottom: 5px;
}

.team-details-wrapper .team-details-content .details-info span {
    color: var(--text);
}

.team-details-wrapper .team-details-content .progress-wrap .pro-items {
    width: 100%;
}

.team-details-wrapper .team-details-content .progress-wrap .pro-items:not(:last-child) {
    margin-bottom: 30px;
}

.team-details-wrapper .team-details-content .progress-wrap .pro-items .pro-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.team-details-wrapper .team-details-content .progress-wrap .pro-items .pro-head .title {
    font-size: 16px;
    font-weight: 500;
    color: var(--black);
}

.team-details-wrapper .team-details-content .progress-wrap .pro-items .pro-head .point {
    font-size: 16px;
    color: var(--black);
    font-weight: 600;
}

.team-details-wrapper .team-details-content .progress-wrap .pro-items .progress {
    height: 12px;
}

.team-details-wrapper .team-details-content .progress-wrap .pro-items .progress .progress-bar {
    background-color: var(--theme-color);
}

.team-details-wrapper .team-details-content .social-icon {
    margin-top: 40px;
}

.team-details-wrapper .team-details-content .social-icon span {
    font-size: 16px;
    font-weight: 700;
    color: var(--header);
    margin-right: 15px;
}

.team-details-wrapper .team-details-content .social-icon a {
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    border: 1px solid var(--border);
    display: inline-block;
    color: var(--text);
    transition: all 0.4s ease-in-out;
    border-radius: 5px;
}

.team-details-wrapper .team-details-content .social-icon a:not(:last-child) {
    margin-right: 5px;
}

.team-details-wrapper .team-details-content .social-icon a:hover {
    background-color: var(--theme-color);
    color: var(--white);
    border: 1px solid transparent;
}

.team-details-wrapper .team-single-history .title {
    border-bottom: 1px solid var(--border);
    padding-bottom: 30px;
}

.team-details-wrapper .team-single-history h5 {
    font-weight: 500;
}

.team-details-wrapper .team-single-history h5 span {
    border: 1px solid var(--theme-color);
    color: var(--theme-color);
    font-size: 14px;
    font-weight: 400;
    padding: 6px 16px;
    border-radius: 16px;
    margin-left: 20px;
}

.team-card-items-4 {
    margin-top: 30px;
    position: relative;
    z-index: 9;
    padding-bottom: 25px;
}

.team-card-items-4::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    border-radius: 28px;
    background: var(--white);
    box-shadow: 10px 9px 106.6px 55px rgba(5, 6, 60, 0.04);
    z-index: -1;
    top: 25%;
    height: initial;
}

.team-card-items-4 .thumb {
    margin: 0 auto;
    width: 258px;
    height: 258px;
}

.team-card-items-4 .thumb img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.team-card-items-4 .content {
    text-align: center;
    padding: 20px 15px;
    border-radius: 28px;
    border: 1px dashed rgba(21, 20, 21, 0.21);
    margin-top: 30px;
    margin-left: 20px;
    margin-right: 20px;
}

.team-card-items-4 .content span {
    font-size: 16px;
    font-weight: 600;
    color: var(--theme-color-2);
}

.team-card-items-4 .content h3 a:hover {
    color: var(--theme-color);
}

.team-card-items-4 .content .social-icon {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
    margin-top: 20px;
}

.team-card-items-4 .content .social-icon a {
    width: 39px;
    line-height: 39px;
    display: inline-block;
    height: 39px;
    border: 1px solid rgba(35, 28, 37, 0.14);
    text-align: center;
    border-radius: 50%;
    color: var(--text);
}

.team-card-items-4 .content .social-icon a:hover {
    background-color: var(--theme-color);
    color: var(--white);
    border: 1px solid var(--theme-color);
}

.faq-items .accordion-item {
    border: 0;
    background-color: var(--white);
    border-radius: 10px;
    border: 1px solid rgba(35, 28, 37, 0.18);
}

.faq-items .accordion-item .accordion-header {
    border: none;
}

.faq-items .accordion-item .accordion-header .accordion-button {
    font-size: 20px;
    font-weight: 500;
    color: var(--header);
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background-color: var(--white);
    padding: 22px 22px 0;
    text-transform: capitalize;
}

.faq-items .accordion-item .accordion-header .accordion-button::after {
    content: "\f078";
    background: transparent;
    font-family: "Font Awesome 5 Pro";
    font-weight: 300;
    transition: all 0.3s ease-in-out !important;
    color: var(--header);
}

.faq-items .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
    content: "\f077";
    background: transparent;
    font-family: "Font Awesome 5 Pro";
    font-weight: 300;
    transform: rotate(0);
    color: var(--theme-color);
}

.faq-items .accordion-item .accordion-header .accordion-button.collapsed {
    background-color: transparent;
    padding: 25px 22px;
    color: var(--header);
}

.faq-items .accordion-item .accordion-collapse .accordion-body {
    padding-left: 30px;
    padding-top: 15px;
    color: #504E4E;
    background: var(--white);
}

.faq-items.style-2 .accordion-item {
    border: 1px dashed rgba(21, 20, 21, 0.21);
    border-radius: 4px;
    margin-top: 30px;
}

.faq-items.style-2 .accordion-item .accordion-header .accordion-button {
    font-size: 22px;
    font-weight: 500;
    background-color: var(--white);
    padding: 19px 30px;
}

.faq-items.style-2 .accordion-item .accordion-body {
    background-color: var(--white) !important;
    padding-top: 15px;
    border-top: 1px dashed rgba(21, 20, 21, 0.21);
    font-size: 16px;
    font-weight: 500;
    color: #455151;
}

.faq-wrapper {
    position: relative;
}

.faq-wrapper .faq-content .faq-image {
    max-width: 400px;
    position: absolute;
    bottom: 0;
    left: 50px;
}

@media (max-width: 991px) {
    .faq-wrapper .faq-content .faq-image {
        display: none;
    }
}

.faq-wrapper .faq-content .faq-image img {
    width: 100%;
    height: 100%;
}

.faq-section {
    position: relative;
}

.faq-section .plane-shape {
    position: absolute;
    top: 15%;
    left: 5%;
}

@media (max-width: 1399px) {
    .faq-section .plane-shape {
        display: none;
    }
}

.faq-section .frame-shape {
    position: absolute;
    top: 15%;
    right: 15%;
}

@media (max-width: 1399px) {
    .faq-section .frame-shape {
        display: none;
    }
}

.faq-section .light-shape {
    position: absolute;
    right: 5%;
    bottom: 20%;
}

@media (max-width: 1399px) {
    .faq-section .light-shape {
        display: none;
    }
}

.cta-video-section {
    position: relative;
    z-index: 9;
    background-attachment: fixed;
}

.cta-video-section::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: rgba(0, 0, 0, 0.8);
    z-index: -1;
}

.cta-video-section .plane-shape {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

@media (max-width: 991px) {
    .cta-video-section .plane-shape {
        display: none;
    }
}

.cta-img {
    position: relative;
}

@media (max-width: 991px) {
    .cta-img {
        text-align: center;
    }
}

.cta-img .offer-shape {
    position: absolute;
    bottom: -10px;
    left: -70px;
}

@media (max-width: 991px) {
    .cta-img .offer-shape {
        display: none;
    }
}

.cta-video-section-2 {
    height: 620px;
    background-attachment: fixed;
    position: relative;
}

@media (max-width: 767px) {
    .cta-video-section-2 {
        height: 500px;
    }
}

@media (max-width: 575px) {
    .cta-video-section-2 {
        height: 380px;
    }
}

.cta-video-section-2 .video-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 162px;
    height: 162px;
    background-color: var(--white);
    text-align: center;
    line-height: 162px;
    border-radius: 50%;
    font-size: 20px;
    color: #F7921E;
}

@media (max-width: 767px) {
    .cta-video-section-2 .video-btn {
        width: 120px;
        height: 120px;
        line-height: 120px;
    }
}

@media (max-width: 575px) {
    .cta-video-section-2 .video-btn {
        width: 80px;
        height: 80px;
        line-height: 80px;
        font-size: 18px;
    }
}

.cta-video-section-2 .video-btn.ripple::before, .cta-video-section-2 .video-btn.ripple::after {
    width: 162px;
    height: 162px;
}

@media (max-width: 767px) {
    .cta-video-section-2 .video-btn.ripple::before, .cta-video-section-2 .video-btn.ripple::after {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 575px) {
    .cta-video-section-2 .video-btn.ripple::before, .cta-video-section-2 .video-btn.ripple::after {
        width: 80px;
        height: 80px;
    }
}

.cta-bg-section {
    position: relative;
}

.cta-bg-section::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: var(--bg);
    top: 40%;
}

.cta-wrapper {
    border-radius: 10px;
    position: relative;
    padding: 80px 120px;
}

@media (max-width: 1199px) {
    .cta-wrapper {
        padding: 60px 60px;
        background-color: var(--theme-color-2) !important;
        background-image: none !important;
        margin: 0 auto;
        max-width: 700px;
        text-align: center;
    }
}

@media (max-width: 991px) {
    .cta-wrapper {
        padding: 50px 50px;
    }
}

@media (max-width: 767px) {
    .cta-wrapper {
        padding: 50px 40px;
    }
}

@media (max-width: 575px) {
    .cta-wrapper {
        padding: 40px 30px;
    }
}

.cta-wrapper .cta-content {
    margin-left: 50px;
    position: relative;
    z-index: 9;
}

@media (max-width: 1199px) {
    .cta-wrapper .cta-content {
        margin-left: 0;
    }
}

.cta-wrapper .cta-content p {
    font-size: 18px;
    color: var(--white);
    margin-top: 20px;
}

.cta-wrapper .cta-content .theme-btn {
    background-color: var(--header);
    margin-top: 30px;
}

.cta-wrapper .cta-content .theme-btn::before, .cta-wrapper .cta-content .theme-btn::after {
    background-color: var(--white);
}

.cta-wrapper .cta-content .theme-btn:hover span {
    color: var(--header);
}

.cta-wrapper .cta-content .theme-btn:hover i {
    background-color: var(--theme-color-2);
    color: var(--white);
}

.cta-wrapper .cta-shape {
    position: absolute;
    bottom: 30px;
    right: 60px;
}

.cta-book-list-wrapper .booking-list-area {
    border-radius: 90px;
    background: var(--theme-color);
    position: relative;
    z-index: 9;
    padding: 45px 74px;
    max-width: 1388px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin: -75px auto 0;
}

@media (max-width: 1399px) {
    .cta-book-list-wrapper .booking-list-area {
        margin-left: 40px;
        width: 93%;
    }
}

@media (max-width: 1199px) {
    .cta-book-list-wrapper .booking-list-area {
        flex-wrap: wrap;
        gap: 40px;
        border-radius: 20px;
        margin-left: 20px;
        width: 95%;
        justify-content: start;
        padding: 40px 40px;
    }
}

@media (max-width: 575px) {
    .cta-book-list-wrapper .booking-list-area {
        width: 90%;
    }
}

.cta-book-list-wrapper .booking-list-area .booking-list {
    display: flex;
    gap: 15px;
    max-width: 155px;
    width: 100%;
}

@media (max-width: 1199px) {
    .cta-book-list-wrapper .booking-list-area .booking-list {
        max-width: initial;
        flex-basis: 20%;
    }
}

.cta-book-list-wrapper .booking-list-area .booking-list .icon {
    filter: grayscale(100%) brightness(300%);
}

.cta-book-list-wrapper .booking-list-area .booking-list .content h5 {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    font-family: "Nunito", sans-serif;
}

.cta-book-list-wrapper .booking-list-area .form-clt .nice-select {
    padding: 0;
    font-size: 16px;
    text-transform: capitalize;
    border-radius: 0;
    background-color: transparent;
    border: none;
    box-shadow: none;
    font-size: 16px;
    font-family: "Nunito", sans-serif;
    color: var(--white);
    font-weight: 800;
}

.cta-book-list-wrapper .booking-list-area .form-clt .nice-select::after {
    right: -30px;
    border-bottom: 1px solid var(--white);
    border-right: 1px solid var(--white);
    width: 9px;
    height: 9px;
}

.cta-book-list-wrapper .booking-list-area .form-clt .nice-select .list {
    width: 100%;
    background-color: var(--white);
    color: var(--text);
}

.cta-book-list-wrapper .booking-list-area .form-clt .nice-select .focus {
    background-color: transparent;
    font-weight: 400;
    color: var(--text);
}

.cta-book-list-wrapper .booking-list-area .form-clt .nice-select .option {
    border: none;
}

.cta-book-list-wrapper .booking-list-area .form-clt .nice-select .option:hover {
    background-color: transparent;
}

.cta-book-list-wrapper .booking-list-area .theme-btn {
    padding: 18px 30px;
    background-color: var(--white);
}

@media (max-width: 1199px) {
    .cta-book-list-wrapper .booking-list-area .theme-btn {
        width: 100%;
    }
}

.cta-book-list-wrapper .booking-list-area .theme-btn span {
    margin-right: 0;
    color: var(--header);
}

.cta-book-list-wrapper .booking-list-area .theme-btn span i {
    width: initial;
    height: initial;
    line-height: initial;
    background-color: transparent;
    margin-left: 10px;
    color: var(--header);
}

.cta-book-list-wrapper .booking-list-area .theme-btn:hover span {
    color: var(--white);
}

.cta-book-list-wrapper .booking-list-area .theme-btn:hover span i {
    color: var(--white);
}

.cta-wrapper-3 {
    padding: 100px 0 192px;
    border-radius: 20px;
    position: relative;
}

.cta-wrapper-3 .shape1 {
    position: absolute;
    left: 0;
    top: 30%;
    transform: translateY(-50%);
}

@media (max-width: 1199px) {
    .cta-wrapper-3 .shape1 {
        display: none;
    }
}

.cta-wrapper-3 .shape2 {
    position: absolute;
    right: 0;
    top: 30%;
    transform: translateY(-50%);
}

@media (max-width: 1199px) {
    .cta-wrapper-3 .shape2 {
        display: none;
    }
}

.cta-wrapper-3 .text-image {
    position: relative;
    z-index: 9;
    text-align: center;
}

@media (max-width: 991px) {
    .cta-wrapper-3 .text-image img {
        width: 100%;
        height: 100%;
    }
}

.counter-section {
    position: relative;
    padding-top: 140px;
}

@media (max-width: 1199px) {
    .counter-section {
        padding-top: 100px;
    }
}

@media (max-width: 991px) {
    .counter-section {
        padding-top: 80px;
    }
}

.counter-section::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: var(--bg);
    height: 60%;
}

.counter-section.bg-2 {
    z-index: 9;
}

.counter-section.bg-2::before {
    display: none;
}

.cta-travel-wrapper {
    padding: 90px 100px;
    position: relative;
    z-index: 9;
    border-radius: 10px;
    margin-top: -8px;
    background-attachment: fixed;
    overflow: hidden;
}

@media (max-width: 991px) {
    .cta-travel-wrapper {
        padding: 60px 50px;
    }
}

@media (max-width: 767px) {
    .cta-travel-wrapper {
        padding: 50px 40px;
    }
}

.cta-travel-wrapper .plane-shape {
    position: absolute;
    top: 0;
    right: 50px;
}

.cta-travel-wrapper .cta-img {
    position: absolute;
    bottom: -45%;
    right: 100px;
    transform: rotate(15deg);
}

@media (max-width: 1399px) {
    .cta-travel-wrapper .cta-img {
        display: none;
    }
}

.cta-travel-wrapper::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    border-radius: 10px;
    background: rgba(29, 35, 31, 0.96);
    z-index: -1;
}

.cta-travel-wrapper .travel-text {
    margin-bottom: 40px;
}

@media (max-width: 1399px) {
    .cta-travel-wrapper .travel-text img {
        width: 100%;
        height: 100%;
    }
}

.cta-travel-wrapper p {
    max-width: 700px;
    color: rgba(255, 255, 255, 0.71);
    font-size: 20px;
    line-height: 150%;
}

.cta-travel-wrapper .list-items-area {
    margin-top: 50px;
    display: flex;
    align-items: center;
    gap: 70px;
}

@media (max-width: 1199px) {
    .cta-travel-wrapper .list-items-area {
        margin-top: 30px;
        flex-wrap: wrap;
        gap: 30px;
    }
}

.cta-travel-wrapper .list-items-area ul li {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
}

.cta-travel-wrapper .list-items-area ul li:not(:last-child) {
    margin-bottom: 20px;
}

.cta-travel-wrapper .list-items-area ul li svg {
    margin-right: 10px;
}

.cta-app-wrapper {
    padding: 100px;
    border-radius: 28px;
    position: relative;
    overflow: hidden;
}

@media (max-width: 991px) {
    .cta-app-wrapper {
        padding: 60px;
    }
}

@media (max-width: 767px) {
    .cta-app-wrapper {
        padding: 60px 40px;
        text-align: center;
    }
}

@media (max-width: 575px) {
    .cta-app-wrapper {
        padding: 50px 30px;
    }
}

.cta-app-wrapper .app-image {
    position: absolute;
    bottom: 0;
    right: 0;
}

@media (max-width: 991px) {
    .cta-app-wrapper .app-image {
        display: none;
    }
}

.cta-app-wrapper .cta-app-content {
    position: relative;
    z-index: 9;
}

.cta-app-wrapper .cta-app-content .app-text {
    font-size: 15px;
    font-weight: 500;
    margin-top: 27px;
    color: var(--white);
}

.cta-app-wrapper .cta-app-content .apps-items {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 20px;
}

@media (max-width: 767px) {
    .cta-app-wrapper .cta-app-content .apps-items {
        flex-wrap: wrap;
        justify-content: center;
    }
}

.cta-app-wrapper .cta-app-content .apps-items img {
    border-radius: 5px;
}

.cta-app-section {
    position: relative;
}

.cta-app-section::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: var(--white);
    top: 45%;
}

.vedio-area {
    background-attachment: fixed;
    position: relative;
}

.vedio-area .shape {
    position: absolute;
    bottom: 0;
    right: 5%;
}

.play-btn {
    text-align: center;
    padding: 250px 0;
}

@media (max-width: 1199px) {
    .play-btn {
        padding: 100px 0;
    }
}

@media (max-width: 991px) {
    .play-btn {
        padding: 80px 0;
    }
}

.play-btn .video-btn {
    width: 124px;
    height: 124px;
    line-height: 124px;
    border-radius: 100px;
    text-align: center;
    background-color: var(--white);
    color: var(--theme-color);
    position: relative;
    font-size: 30px;
    display: inline-block;
}

@media (max-width: 767px) {
    .play-btn .video-btn {
        width: 120px;
        height: 120px;
        line-height: 120px;
        font-size: 40px;
    }
}

@media (max-width: 575px) {
    .play-btn .video-btn {
        width: 80px;
        height: 80px;
        line-height: 80px;
        font-size: 20px;
    }
}

.cta-box-items {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 50px;
    background-color: var(--theme-color);
    border-radius: 108px;
}

@media (max-width: 575px) {
    .cta-box-items {
        flex-wrap: wrap;
        gap: 30px;
        padding: 25px 30px;
        border-radius: 20px;
        justify-content: center;
        text-align: center;
    }
}

.cta-box-items.style-2 {
    background-color: var(--theme-color-2);
}

.cta-box-items .cta-item {
    display: flex;
    align-items: center;
    gap: 25px;
}

@media (max-width: 575px) {
    .cta-box-items .cta-item {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }
}

.cta-box-items .cta-item .icon {
    font-size: 78px;
    color: var(--white);
}

.cta-box-items .cta-item .content h3 {
    color: var(--white);
}

.cta-box-items .box-icon {
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    border-radius: 50px;
    background-color: var(--white);
    color: var(--header);
    display: inline-block;
}

.cta-box-items .box-icon i {
    transform: rotate(-45deg);
    font-size: 20px;
}

.cta-box-items .box-icon:hover {
    background-color: var(--white);
    color: var(--header);
}

.cta-footer-section {
    position: relative;
    z-index: 9;
}

.cta-footer-section::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: #151415;
    z-index: -1;
    top: 65px;
}

.cta-footer-section.style-2 {
    margin-top: -65px;
}

@media (max-width: 991px) {
    .cta-video-content {
        text-align: center;
    }
}

.cta-video-content .cta-button {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 50px;
}

@media (max-width: 991px) {
    .cta-video-content .cta-button {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .cta-video-content .cta-button {
        margin-top: 40px;
    }
}

@media (max-width: 575px) {
    .cta-video-content .cta-button {
        margin-top: 25px;
        justify-content: center;
        flex-wrap: wrap;
    }
}

.cta-video-content .cta-button .video-btn {
    background-color: var(--theme-color);
    color: var(--white);
    display: inline-block;
    font-size: 16px;
    height: 50px;
    width: 50px;
    line-height: 50px;
    border-radius: 50%;
    text-align: center;
    position: relative;
}

.cta-video-content .cta-button .video-btn::before {
    position: absolute;
    top: 50%;
    left: 50%;
    right: 0;
    bottom: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid var(--theme-color);
    content: "";
    transform: translate(-50%, -50%);
}

@media (max-width: 767px) {
    .cta-video-content .cta-button .button-text {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }
}

.cta-video-content .cta-button .button-text span {
    font-size: 16px;
    color: var(--white);
    font-weight: bold;
}

@media (max-width: 767px) {
    .cta-video-content .cta-button .button-text span {
        flex-basis: 100%;
        margin-left: initial !important;
    }
}

.cta-wrapper-4 {
    border-radius: 28px;
    position: relative;
    margin-top: 120px;
    text-align: center;
    background-attachment: fixed;
}

@media (max-width: 1199px) {
    .cta-wrapper-4 {
        margin-top: 100px;
    }
}

@media (max-width: 991px) {
    .cta-wrapper-4 {
        margin-top: 80px;
    }
}

.cta-wrapper-4::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    border-radius: 28px;
    background: rgba(21, 20, 21, 0.84);
}

.cta-wrapper-4 .discount-shape {
    position: absolute;
    left: 100px;
    top: 90px;
    z-index: 9;
}

@media (max-width: 1199px) {
    .cta-wrapper-4 .discount-shape {
        display: none;
    }
}

.cta-wrapper-4 .bag-shape {
    position: absolute;
    bottom: 0;
    right: 55px;
}

@media (max-width: 1199px) {
    .cta-wrapper-4 .bag-shape {
        display: none;
    }
}

.cta-wrapper-4 .plane-shape {
    position: absolute;
    bottom: 0;
    left: 30%;
    transform: translateX(-50%);
}

@media (max-width: 1600px) {
    .cta-wrapper-4 .plane-shape {
        display: none;
    }
}

.cta-wrapper-4 .section-title {
    margin-bottom: 40px !important;
}

.cta-wrapper-4 .section-title span {
    color: var(--theme-color-2);
}

.testimonial-box-items {
    position: relative;
    border-radius: 10px;
    background: var(--bg);
    padding: 35px;
    margin-top: 30px;
}

@media (max-width: 575px) {
    .testimonial-box-items {
        padding: 30px;
    }
}

.testimonial-box-items .icon {
    position: absolute;
    bottom: 48px;
    right: 35px;
}

.testimonial-box-items .star {
    color: #F7921E;
    margin-bottom: 20px;
}

.testimonial-box-items p {
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    font-family: "Prompt", sans-serif;
}

@media (max-width: 575px) {
    .testimonial-box-items p {
        font-size: 18px;
    }
}

.testimonial-box-items .client-info {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.testimonial-box-items .client-info .client-content span {
    font-size: 14px;
    font-weight: 600;
}

.testimonial-wrapper .testimonial-image {
    position: relative;
}

@media (max-width: 767px) {
    .testimonial-wrapper .testimonial-image {
        text-align: center;
    }
}

.testimonial-wrapper .testimonial-image img {
    width: 100%;
    height: 100%;
}

.testimonial-wrapper .testimonial-image .rating {
    position: absolute;
    bottom: -7%;
    right: -26%;
}

@media (max-width: 1199px) {
    .testimonial-wrapper .testimonial-image .rating {
        display: none;
    }
}

.testimonial-wrapper .testimonial-content {
    margin-left: 60px;
    position: relative;
}

.testimonial-wrapper .testimonial-content .array-button {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 99;
}

@media (max-width: 767px) {
    .testimonial-wrapper .testimonial-content .array-button {
        display: none;
    }
}

@media (max-width: 1199px) {
    .testimonial-wrapper .testimonial-content {
        margin-left: 0;
    }
}

@media (max-width: 767px) {
    .testimonial-wrapper .testimonial-content {
        text-align: center;
    }
}

.testimonial-wrapper .testimonial-content .star {
    margin-bottom: 30px;
    border-top: 1px solid rgba(21, 20, 21, 0.12);
    padding-top: 30px;
}

.testimonial-wrapper .testimonial-content .star i {
    color: var(--theme-color-2);
}

.testimonial-wrapper .testimonial-content h3 {
    font-size: 32px;
    letter-spacing: -0.64px;
}

@media (max-width: 1199px) {
    .testimonial-wrapper .testimonial-content h3 {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .testimonial-wrapper .testimonial-content h3 {
        font-size: 23px;
    }
}

@media (max-width: 575px) {
    .testimonial-wrapper .testimonial-content h3 {
        font-size: 20px;
    }
}

.testimonial-wrapper .testimonial-content .client-info-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 70px;
}

@media (max-width: 767px) {
    .testimonial-wrapper .testimonial-content .client-info-wrapper {
        margin-top: 35px;
        flex-wrap: wrap;
        gap: 30px;
        justify-content: center;
    }
}

.testimonial-wrapper .testimonial-content .client-info-wrapper .client-info-item {
    display: flex;
    align-items: center;
    gap: 35px;
}

.testimonial-wrapper .testimonial-content .client-info-wrapper .client-info-item .client-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.testimonial-wrapper .testimonial-content .client-info-wrapper .client-info-item .client-info .content span {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.14px;
}

.testimonial-wrapper .testimonial-content .client-info-wrapper .client-info-item .icon i {
    font-size: 43px;
    color: var(--theme-color);
}

.testimonial-wrapper-1 {
    position: relative;
}

.testimonial-wrapper-1 .testimonial-image {
    position: absolute;
    top: 0;
    left: 0;
}

@media (max-width: 1199px) {
    .testimonial-wrapper-1 .testimonial-image {
        display: none;
    }
}

.testimonial-box-items2 {
    padding: 30px;
    border: 1px solid rgba(21, 20, 21, 0.14);
    border-radius: 28px;
    margin-top: 30px;
}

.testimonial-box-items2 .star {
    color: #F7921E;
    margin-bottom: 20px;
}

.testimonial-box-items2 .client-info-items {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.testimonial-box-items2 .client-info-items .client-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.testimonial-section-3 {
    position: relative;
}

.testimonial-section-3 .array-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    justify-content: space-between;
    left: 10%;
    right: 10%;
}

@media (max-width: 1399px) {
    .testimonial-section-3 .array-button {
        display: none;
    }
}

.testimonial-box-items-4 {
    position: relative;
    padding: 35px;
    margin-top: 30px;
    padding-top: 0;
    z-index: 9;
}

.testimonial-box-items-4::before {
    position: absolute;
    top: 45px;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    border-radius: 28px;
    background: var(--white);
    box-shadow: 10px 9px 106.6px 55px rgba(5, 6, 60, 0.04);
    z-index: -1;
    width: 100%;
    height: initial;
}

.testimonial-box-items-4 .star {
    color: var(--theme-color-2);
    margin-bottom: 15px;
    margin-top: 15px;
}

.testimonial-box-items-4 .icon {
    position: absolute;
    right: 40px;
    top: 80px;
}

.testimonial-box-items-4 h3 {
    font-size: 22px;
    font-weight: 500;
    margin-top: 15px;
}

.testimonial-box-items-4 .client-info {
    border-top: 1px dashed rgba(21, 20, 21, 0.21);
    padding-top: 20px;
    display: flex;
    gap: 15px;
    align-items: center;
    margin-top: 20px;
}

.testimonial-box-items-4 .client-info span {
    font-size: 14px;
    font-weight: 600;
}

@media (max-width: 991px) {
    .testimonial-section-5 .section-title-area {
        text-align: center;
    }
}

.testimonial-section-5 .section-title-area .test-left-top {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-section-5 .section-title-area .test-left-top .content h4 {
    font-size: 20px;
    font-weight: 600;
}

@media (max-width: 991px) {
    .testimonial-section-5 .section-title-area .test-left-top .content h4 {
        text-align: left;
    }
}

.testimonial-section-5 .section-title-area .test-left-top .content p {
    font-size: 14px;
}

.testimonail-image-5 {
    margin-top: 30px;
    margin-bottom: -120px;
}

@media (max-width: 991px) {
    .testimonail-image-5 {
        display: none;
    }
}

.brand-text {
    max-width: 660px;
    text-align: center;
    margin: -5px auto;
    font-size: 18px;
    margin-bottom: 50px;
}

.news-left-items {
    position: relative;
    margin-top: 30px;
}

.news-left-items .news-img {
    position: relative;
}

.news-left-items .news-img img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
}

.news-left-items .news-img::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: linear-gradient(180deg, rgba(21, 20, 21, 0) 0%, rgba(21, 20, 21, 0.85) 59.83%);
    border-radius: 10px;
}

.news-left-items .news-content {
    position: absolute;
    bottom: 50px;
    left: 50px;
}

@media (max-width: 1199px) {
    .news-left-items .news-content {
        left: 30px;
        right: 30px;
        bottom: 30px;
    }
}

.news-left-items .news-content h3 {
    font-size: 32px;
    font-weight: 600;
}

@media (max-width: 1199px) {
    .news-left-items .news-content h3 {
        font-size: 25px;
    }
}

@media (max-width: 991px) {
    .news-left-items .news-content h3 {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .news-left-items .news-content h3 {
        font-size: 25px;
    }
}

@media (max-width: 575px) {
    .news-left-items .news-content h3 {
        font-size: 22px;
    }
}

.news-left-items .news-content h3 a {
    color: var(--white);
}

.news-left-items .news-content h3 a:hover {
    color: var(--theme-color);
}

.news-left-items .news-content .post-date {
    display: flex;
    align-items: center;
    gap: 20px;
}

.news-left-items .news-content .post-date li {
    color: #F7921E;
    font-size: 16px;
    font-weight: 600;
}

.news-left-items .news-content .post-date li i {
    margin-right: 5px;
}

.news-left-items .news-content .post-date li a {
    color: #F7921E;
}

.news-right-items {
    margin-top: 30px;
}

.news-right-items .news-right-box {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
    align-items: center;
}

@media (max-width: 1199px) {
    .news-right-items .news-right-box {
        flex-wrap: wrap;
        gap: 30px;
    }
}

.news-right-items .news-right-box .news-img {
    max-width: 166px;
}

@media (max-width: 470px) {
    .news-right-items .news-right-box .news-img {
        flex-basis: 100%;
        max-width: initial;
    }
}

.news-right-items .news-right-box .news-img img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.news-right-items .news-right-box .news-content {
    flex-basis: 60%;
}

@media (max-width: 1199px) {
    .news-right-items .news-right-box .news-content {
        flex-basis: initial;
    }
}

@media (max-width: 991px) {
    .news-right-items .news-right-box .news-content {
        flex-basis: 50%;
    }
}

@media (max-width: 470px) {
    .news-right-items .news-right-box .news-content {
        flex-basis: 145%;
    }
}

.news-right-items .news-right-box .news-content .post-date {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 10px;
}

.news-right-items .news-right-box .news-content .post-date li {
    font-size: 16px;
    font-weight: 600;
}

.news-right-items .news-right-box .news-content .post-date li i {
    margin-right: 5px;
    color: #F7921E;
}

.news-right-items .news-right-box .news-content .post-date li a {
    color: var(--theme-color);
}

.news-right-items .news-right-box .news-content h3 {
    font-size: 20px;
}

.news-right-items .news-right-box .news-content h3 a:hover {
    color: var(--theme-color);
}

.news-right-items .news-right-box .news-content .link-btn {
    color: var(--theme-color);
    font-size: 16px;
    font-weight: 800;
    margin-top: 5px;
    display: inline-block;
}

.news-right-items .news-right-box .news-content .link-btn i {
    margin-left: 10px;
}

.news-right-items .news-right-box .news-content .link-btn:hover {
    color: var(--theme-color-2);
}

.news-box-items {
    margin-top: 30px;
}

.news-box-items .news-img img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.news-box-items .news-content {
    margin-top: 20px;
}

.news-box-items .news-content .post-date {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.news-box-items .news-content .post-date li {
    font-size: 16px;
    font-weight: 600;
}

.news-box-items .news-content .post-date li i {
    margin-right: 5px;
    color: #F7921E;
}

.news-box-items .news-content .post-date li a {
    color: var(--theme-color);
}

.news-box-items .news-content h3 {
    margin-bottom: 15px;
}

.news-box-items .news-content h3 a:hover {
    color: var(--theme-color);
}

.news-card-items {
    border-radius: 10px;
    border: 1px solid rgba(21, 20, 21, 0.12);
    background: var(--white);
    margin-top: 30px;
}

.news-card-items .news-image {
    position: relative;
    padding: 15px;
    padding-bottom: 0;
}

.news-card-items .news-image img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.news-card-items .news-image .post {
    border-radius: 22.5px;
    background: var(--white);
    padding: 10px 22px;
    line-height: 1;
    box-shadow: -3px 2px 12.7px 7px rgba(6, 27, 48, 0.04);
    display: flex;
    align-items: center;
    gap: 10px;
    position: absolute;
    left: 30px;
    bottom: -15px;
}

.news-card-items .news-image .post li:not(:last-child) {
    border-right: 1px solid rgba(21, 20, 21, 0.19);
    padding-right: 10px;
}

.news-card-items .news-image .post li i {
    margin-right: 5px;
    color: var(--theme-color);
}

.news-card-items .news-image .post li.style-2 {
    color: var(--theme-color);
}

.news-card-items .news-content {
    padding: 25px;
    padding-top: 35px;
}

.news-card-items .news-content h3 {
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 20px;
}

.news-card-items .news-content h3 a:hover {
    color: var(--theme-color);
}

.news-card-items .news-content .theme-btn {
    font-size: 16px;
    border: 1px solid var(--theme-color);
    background-color: transparent;
    padding: 9px 10px 9px 25px;
    margin-top: 30px;
}

.news-card-items .news-content .theme-btn span {
    color: var(--header);
    margin-right: 15px;
}

.news-card-items .news-content .theme-btn i {
    width: 34px;
    height: 34px;
    line-height: 34px;
    background-color: var(--theme-color);
    color: var(--white);
    transition: all 0.4s ease-in-out;
}

.news-card-items .news-content .theme-btn::before {
    background-color: var(--theme-color);
}

.news-card-items .news-content .theme-btn::after {
    background-color: var(--theme-color);
}

.news-card-items .news-content .theme-btn:hover span {
    color: var(--white);
}

.news-card-items .news-content .theme-btn:hover i {
    width: 34px;
    height: 34px;
    line-height: 34px;
    background-color: var(--white);
    color: var(--header);
}

.news-section.style-padding {
    padding-bottom: 185px;
}

@media (max-width: 1199px) {
    .news-section.style-padding {
        padding-bottom: 165px;
    }
}

@media (max-width: 991px) {
    .news-section.style-padding {
        padding-bottom: 145px;
    }
}

.news-box-items-4 {
    margin-top: 55px;
}

.news-box-items-4 .news-img {
    position: relative;
}

.news-box-items-4 .news-img img {
    width: 100%;
    height: 100%;
    border-radius: 28px;
}

.news-box-items-4 .news-img .post-date {
    position: absolute;
    top: -25px;
    left: 25px;
}

.news-box-items-4 .news-img .post-date li {
    text-align: center;
}

.news-box-items-4 .news-img .post-date li:first-child {
    width: 85px;
    height: 58px;
    border-radius: 10px 10px 0px 0px;
    background: var(--theme-color-2);
    font-size: 32px;
    font-weight: 600;
    text-align: center;
    line-height: 58px;
    font-family: "Prompt", sans-serif;
    color: var(--white);
}

.news-box-items-4 .news-img .post-date li:last-child {
    width: 85px;
    height: 29px;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--white);
    border-radius: 0 0 10px 10px;
    background: var(--theme-color);
}

.news-box-items-4 .news-content {
    margin-top: 20px;
}

.news-box-items-4 .news-content ul {
    display: flex;
    gap: 30px;
    align-items: center;
    margin-bottom: 15px;
}

.news-box-items-4 .news-content h3 {
    border-bottom: 1px dashed rgba(21, 20, 21, 0.21);
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.news-box-items-4 .news-content h3 a:hover {
    color: var(--theme-color);
}

.news-box-items-4 .news-content p {
    margin-bottom: 20px;
}

.news-box-items-4 .news-content .link-btn {
    font-size: 16px;
    font-weight: 800;
    color: var(--theme-color);
    display: flex;
    align-items: center;
    gap: 15px;
}

.news-box-items-4 .news-content .link-btn i {
    font-size: 21px;
}

.blog-wrapper h1, .blog-wrapper h2, .blog-wrapper h3, .blog-wrapper h4, .blog-wrapper h5, .blog-wrapper h6 {
    font-weight: 600;
}

.blog-wrapper .theme-btn {
    padding: 7px 15px 7px 30px;
    text-transform: capitalize !important;
}

.blog-wrapper .single-blog-post {
    margin-bottom: 40px;
    position: relative;
}

.blog-wrapper .single-blog-post .video__button {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.blog-wrapper .single-blog-post .video__button .video__btn__wrp {
    margin-bottom: 0;
}

.blog-wrapper .single-blog-post.post-details.format-quote .post-content {
    position: relative;
    background: transparent;
    border: none;
}

.blog-wrapper .single-blog-post.post-details .post-content {
    border: none;
}

.blog-wrapper .single-blog-post.post-details .post-content img {
    margin-top: 20px;
    margin-bottom: 20px;
}

.blog-wrapper .single-blog-post.post-details .post-content .single-post-image {
    width: 100%;
    height: 100%;
    border-radius: 4px;
}

.blog-wrapper .single-blog-post.post-details .post-content h1 {
    font-size: 36px;
    line-height: 1.4;
}

.blog-wrapper .single-blog-post.post-details .post-content h1, .blog-wrapper .single-blog-post.post-details .post-content h2, .blog-wrapper .single-blog-post.post-details .post-content h3, .blog-wrapper .single-blog-post.post-details .post-content h4, .blog-wrapper .single-blog-post.post-details .post-content h5, .blog-wrapper .single-blog-post.post-details .post-content h6 {
    margin-top: 10px;
}

.blog-wrapper .single-blog-post.post-details .post-content table {
    margin-top: 20px;
}

@media (max-width: 767px) {
    .blog-wrapper .single-blog-post.post-details .post-content h1 {
        font-size: 28px;
    }

    .blog-wrapper .single-blog-post.post-details .post-content h3 {
        font-size: 20px;
    }
}

.blog-wrapper .single-blog-post.post-details blockquote, .blog-wrapper .single-blog-post.post-details .wp-block-quote {
    background-color: var(--theme-color);
    color: var(--white);
    font-size: 26px;
    line-height: 1.4;
    font-family: "Prompt", sans-serif;
    font-weight: 400;
    padding: 60px;
    text-align: center;
    margin: 40px 0px;
    position: relative;
    z-index: 1;
    border-radius: 4px;
}

.blog-wrapper .single-blog-post.post-details blockquote a, .blog-wrapper .single-blog-post.post-details .wp-block-quote a {
    color: var(--white);
}

.blog-wrapper .single-blog-post.post-details blockquote a:hover, .blog-wrapper .single-blog-post.post-details .wp-block-quote a:hover {
    color: var(--text);
}

@media (max-width: 767px) {
    .blog-wrapper .single-blog-post.post-details blockquote, .blog-wrapper .single-blog-post.post-details .wp-block-quote {
        padding: 30px 15px;
        font-size: 18px;
        line-height: 1.5;
    }
}

.blog-wrapper .single-blog-post.post-details blockquote::before, .blog-wrapper .single-blog-post.post-details .wp-block-quote::before {
    right: 30px;
    font-size: 110px;
    line-height: 1;
    font-family: "Font Awesome 5 Pro";
    position: absolute;
    content: "\f10d";
    bottom: -20px;
    color: var(--white);
    z-index: -1;
    opacity: 0.1;
    font-weight: 900;
}

.blog-wrapper .single-blog-post.format-video .post-featured-thumb, .blog-wrapper .single-blog-post.category-video-post .post-featured-thumb {
    z-index: 1;
    position: relative;
}

.blog-wrapper .single-blog-post.format-video .post-featured-thumb::before, .blog-wrapper .single-blog-post.category-video-post .post-featured-thumb::before {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    content: "";
    background-color: #282835;
    opacity: 0.3;
    z-index: -1;
}

.blog-wrapper .single-blog-post.quote-post .post-content, .blog-wrapper .single-blog-post.format-quote .post-content {
    position: relative;
    background-color: var(--theme-color);
    border: none;
}

.blog-wrapper .single-blog-post.quote-post .post-content::before, .blog-wrapper .single-blog-post.format-quote .post-content::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-repeat: no-repeat;
    background-size: cover;
}

.blog-wrapper .single-blog-post.quote-post .quote-content, .blog-wrapper .single-blog-post.format-quote .quote-content {
    overflow: hidden;
    padding: 50px;
}

@media (max-width: 585px) {
    .blog-wrapper .single-blog-post.quote-post .quote-content, .blog-wrapper .single-blog-post.format-quote .quote-content {
        text-align: center;
        font-size: 24px;
        padding: 30px;
    }
}

.blog-wrapper .single-blog-post.quote-post .quote-content .icon, .blog-wrapper .single-blog-post.format-quote .quote-content .icon {
    font-size: 70px;
    line-height: 80px;
    float: left;
    overflow: hidden;
    margin-right: 30px;
}

@media (max-width: 585px) {
    .blog-wrapper .single-blog-post.quote-post .quote-content .icon, .blog-wrapper .single-blog-post.format-quote .quote-content .icon {
        float: none;
        margin-bottom: 10px;
        margin-right: 0;
        font-size: 50px;
        line-height: 60px;
    }
}

.blog-wrapper .single-blog-post.quote-post .quote-content .quote-text, .blog-wrapper .single-blog-post.format-quote .quote-content .quote-text {
    overflow: hidden;
}

.blog-wrapper .single-blog-post.quote-post .quote-content h2, .blog-wrapper .single-blog-post.format-quote .quote-content h2 {
    margin-top: -2px;
    font-size: 36px;
    color: var(--white);
}

.blog-wrapper .single-blog-post.quote-post .quote-content .post-meta, .blog-wrapper .single-blog-post.format-quote .quote-content .post-meta {
    margin-top: 10px;
}

.blog-wrapper .single-blog-post.quote-post .quote-content .post-meta span, .blog-wrapper .single-blog-post.quote-post .quote-content .post-meta i, .blog-wrapper .single-blog-post.format-quote .quote-content .post-meta span, .blog-wrapper .single-blog-post.format-quote .quote-content .post-meta i {
    color: var(--white);
}

.blog-wrapper .single-blog-post:last-child {
    margin-bottom: 0;
}

.blog-wrapper .single-blog-post .post-featured-thumb {
    height: 462px;
    width: 100%;
    position: relative;
    margin-bottom: -2px;
    border-radius: 6px;
}

.blog-wrapper .single-blog-post .post-featured-thumb .post-date {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 15px 30px;
    background-color: var(--theme-color);
    text-align: center;
}

.blog-wrapper .single-blog-post .post-featured-thumb .post-date h4 {
    color: var(--white);
}

.blog-wrapper .single-blog-post .post-featured-thumb .post-date h4 span {
    color: var(--white);
    text-transform: uppercase;
    font-size: 15px;
}

@media (max-width: 991px) {
    .blog-wrapper .single-blog-post .post-featured-thumb {
        height: 280px;
    }
}

@media (max-width: 767px) {
    .blog-wrapper .single-blog-post .post-featured-thumb {
        height: 230px;
    }
}

.blog-wrapper .single-blog-post .post-featured-thumb .video-play-btn {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.blog-wrapper .single-blog-post .post-featured-thumb .video-play-btn .play-video {
    border-radius: 50%;
    width: 80px;
    height: 80px;
    line-height: 80px;
    font-size: 18px;
}

.blog-wrapper .single-blog-post .post-content {
    padding-top: 30px;
    overflow: hidden;
    box-sizing: border-box;
}

@media (max-width: 575px) {
    .blog-wrapper .single-blog-post .post-content {
        padding-top: 20px;
    }
}

.blog-wrapper .single-blog-post .post-content h2 {
    line-height: 1.4;
    font-size: 32px;
}

@media (max-width: 575px) {
    .blog-wrapper .single-blog-post .post-content h2 {
        font-size: 28px;
    }
}

.blog-wrapper .single-blog-post .post-content h2 a:hover {
    color: var(--theme-color);
}

.blog-wrapper .single-blog-post .post-content p {
    font-size: 16px;
}

@media (max-width: 767px) {
    .blog-wrapper .single-blog-post .post-content {
        padding: 30px 10px;
    }
}

@media (max-width: 414px) {
    .blog-wrapper .single-blog-post .post-content h2 {
        font-size: 22px;
    }
}

.blog-wrapper .single-blog-post .post-content .post-cat a {
    color: var(--white);
    display: inline-block;
    background-color: var(--theme-color);
    padding: 14px 18px 12px;
    line-height: 1;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.3s ease-in-out;
    margin-bottom: 20px;
    text-transform: capitalize;
    font-family: "League Spartan", sans-serif;
}

@media (max-width: 767px) {
    .blog-wrapper .single-blog-post .post-content .post-cat a {
        font-size: 12px;
    }
}

.blog-wrapper .single-blog-post .post-content .post-cat a:hover {
    background-color: var(--header);
}

.blog-wrapper .single-blog-post .post-content ul {
    margin-bottom: 0;
    list-style-type: disc;
    margin-top: 30px;
}

.blog-wrapper .single-blog-post .post-content ul ol {
    margin-bottom: 0;
}

.blog-wrapper .single-blog-post .post-content ul ul {
    margin-bottom: 0;
}

.blog-wrapper .single-blog-post .post-content ul li {
    line-height: 1.5;
    margin-top: 10px;
    list-style-type: disc;
    color: var(--text);
    position: relative;
    font-size: 18px;
    padding-left: 30px;
}

.blog-wrapper .single-blog-post .post-content ul li::before {
    position: absolute;
    left: 0;
    top: 0;
    font-family: "Font Awesome 5 Pro";
    content: "\f00c";
    color: var(--theme-color);
}

.blog-wrapper .single-blog-post .post-content ol {
    margin-bottom: 0;
    list-style-type: decimal;
}

.blog-wrapper .single-blog-post .post-content ol ul {
    margin-bottom: 0;
}

.blog-wrapper .single-blog-post .post-content ol ol {
    margin-bottom: 0;
}

.blog-wrapper .single-blog-post .post-content ol li {
    line-height: 1.5;
    margin-top: 10px;
    list-style-type: decimal;
}

.blog-wrapper .single-blog-post .post-content p {
    margin-top: 15px;
}

.blog-wrapper .single-blog-post .post-content .post-meta {
    margin-bottom: 10px;
}

.blog-wrapper .single-blog-post .post-content .post-meta span {
    color: var(--text);
    font-weight: 500;
    font-size: 18px;
    line-height: 1;
    display: inline-block;
    margin-right: 25px;
}

@media (max-width: 767px) {
    .blog-wrapper .single-blog-post .post-content .post-meta span {
        font-size: 15px;
    }
}

.blog-wrapper .single-blog-post .post-content .post-meta span i {
    margin-right: 5px;
    color: var(--theme-color);
    font-weight: 700;
}

.blog-wrapper .single-blog-post .post-content .author-info {
    overflow: hidden;
}

.blog-wrapper .single-blog-post .post-content .author-info .author-img {
    height: 40px;
    width: 40px;
    line-height: 40px;
    border-radius: 50%;
    background-color: #f2f2f2;
    margin-right: 15px;
    float: left;
    overflow: hidden;
    background-position: center;
    background-size: cover;
}

@media (max-width: 767px) {
    .blog-wrapper .single-blog-post .post-content .author-info .author-img {
        margin-right: 5px;
    }
}

.blog-wrapper .single-blog-post .post-content .author-info h5 {
    display: inline-block;
    line-height: 1;
    font-size: 16px;
    margin-top: 9px;
}

.blog-wrapper .single-blog-post .post-content .author-info h5 a:hover {
    color: var(--theme-color);
}

@media (max-width: 767px) {
    .blog-wrapper .single-blog-post .post-content .author-info h5 {
        font-size: 14px;
    }
}

.blog-wrapper .single-blog-post .post-content .post-link a {
    font-weight: 700;
}

.blog-wrapper .single-blog-post .post-content .post-link a:hover {
    color: var(--theme-color);
}

@media (max-width: 767px) {
    .blog-wrapper .single-blog-post .post-content .post-link a {
        font-size: 14px;
    }
}

.blog-wrapper .single-blog-post .post-content .post-link a i {
    margin-right: 5px;
}

@media (max-width: 767px) {
    .blog-wrapper .single-blog-post .post-content .post-link a i {
        margin-right: 3px;
    }
}

@media (min-width: 991px) {
    .news-area .main-sidebar {
        margin-left: 20px;
    }
}

@media (max-width: 991px) {
    .news-area .main-sidebar {
        margin-top: 40px;
    }
}

.news-area .main-sidebar .single-sidebar-widget {
    box-sizing: border-box;
    padding: 30px;
    margin-bottom: 40px;
    border-radius: 10px;
    background: var(--bg);
}

.news-area .main-sidebar .single-sidebar-widget ul {
    padding-left: 0;
}

.news-area .main-sidebar .single-sidebar-widget ul > li {
    margin-bottom: 10px;
}

.news-area .main-sidebar .single-sidebar-widget ul > li a {
    font-size: 18px;
    font-weight: 600;
    text-transform: capitalize;
}

.news-area .main-sidebar .single-sidebar-widget ul > li a:hover {
    color: var(--theme-color);
}

.news-area .main-sidebar .single-sidebar-widget ul ul {
    padding-left: 20px;
}

.news-area .main-sidebar .single-sidebar-widget ul ul li {
    margin-top: 5px;
}

.news-area .main-sidebar .single-sidebar-widget:last-child {
    margin-bottom: 0;
}

.news-area .main-sidebar .single-sidebar-widget .wid-title {
    margin-bottom: 25px;
    padding-left: 45px;
    position: relative;
}

.news-area .main-sidebar .single-sidebar-widget .wid-title::before {
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    content: "";
    height: 4px;
    width: 18px;
    border-radius: 5px;
    position: absolute;
    background-color: var(--theme-color);
}

.news-area .main-sidebar .single-sidebar-widget .wid-title::after {
    left: 22px;
    top: 50%;
    transform: translateY(-50%);
    content: "";
    height: 4px;
    width: 4px;
    border-radius: 50%;
    position: absolute;
    background-color: var(--theme-color);
}

.news-area .main-sidebar .single-sidebar-widget .wid-title h4 {
    font-size: 24px;
    font-weight: 600;
}

.news-area .main-sidebar .single-sidebar-widget .social-link a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    background-color: var(--white);
    font-size: 14px;
    margin-right: 5px;
    margin-bottom: 5px;
    color: var(--header);
}

.news-area .main-sidebar .single-sidebar-widget .social-link a:hover {
    background-color: var(--theme-color);
    color: var(--white);
}

.search_widget form {
    width: 100%;
    position: relative;
}

.search_widget form input {
    background-color: var(--white);
    font-size: 15px;
    padding: 20px;
    width: 100%;
    border: none;
    text-transform: capitalize;
    color: var(--header);
    border-radius: 4px;
}

.search_widget form button {
    position: absolute;
    right: 0;
    top: 0;
    width: 70px;
    font-size: 18px;
    height: 100%;
    background-color: var(--theme-color);
    color: var(--white);
    text-align: center;
    transition: all 0.3s ease-in-out;
    border-radius: 4px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.search_widget form button:hover {
    background-color: var(--header);
}

.popular-posts .single-post-item, .popular_posts .single-post-item {
    overflow: hidden;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #f2f2f2;
}

.popular-posts .single-post-item:last-child, .popular_posts .single-post-item:last-child {
    margin-bottom: 0;
    border: none;
    padding-bottom: 0;
}

.popular-posts .single-post-item .thumb, .popular_posts .single-post-item .thumb {
    height: 95px;
    width: 95px;
    background-color: #f2f2f2;
    float: left;
    overflow: hidden;
    margin-right: 20px;
    border-radius: 4px;
}

.popular-posts .single-post-item .post-content, .popular_posts .single-post-item .post-content {
    overflow: hidden;
}

.popular-posts .single-post-item .post-content h5, .popular_posts .single-post-item .post-content h5 {
    font-size: 15px;
    line-height: 22px;
    font-weight: 600;
    margin-bottom: 0;
    text-transform: capitalize;
}

.popular-posts .single-post-item .post-content h5 a:hover, .popular_posts .single-post-item .post-content h5 a:hover {
    color: var(--theme-color);
}

.popular-posts .single-post-item .post-content .post-date, .popular_posts .single-post-item .post-content .post-date {
    margin-top: 10px;
    color: var(--theme-color);
    font-weight: 600;
    font-size: 15px;
    text-transform: capitalize;
}

.popular-posts .single-post-item .post-content .post-date i, .popular_posts .single-post-item .post-content .post-date i {
    margin-right: 7px;
}

.widget_categories ul li {
    display: block;
}

.widget_categories ul li:last-child a {
    margin-bottom: 0;
}

.widget_categories ul li a {
    position: relative;
    background: var(--white);
    padding: 17px 20px;
    line-height: 1;
    font-size: 14px;
    display: block;
    margin-bottom: 12px;
    font-weight: 500;
    transition: all 0.4s ease-in-out;
    border-radius: 4px;
}

.widget_categories ul li a:hover {
    color: var(--theme-color);
}

.widget_categories ul li a i {
    margin-right: 10px;
}

.widget_categories ul li a span {
    position: absolute;
    width: 60px;
    line-height: 55px;
    height: 100%;
    content: "";
    background-color: var(--theme-color);
    right: 0;
    top: 0;
    text-align: center;
    color: var(--white);
    border-radius: 4px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.tagcloud a {
    display: inline-block;
    padding: 12px 20px;
    line-height: 1;
    font-weight: 600;
    border: 1px solid #F6F3EE;
    background-color: var(--white);
    margin-right: 10px;
    text-transform: capitalize;
    margin-bottom: 10px;
    border-radius: 4px;
}

.tagcloud a:last-child {
    margin-right: 0;
}

.tagcloud a:hover {
    background-color: var(--theme-color);
    color: var(--white);
}

.widget_categories ul li {
    display: block;
    margin-bottom: 10px;
}

p.sticky-label {
    position: absolute;
    right: 0;
    background: var(--theme-color);
    color: var(--white);
    padding: 10px 40px;
    z-index: -1;
    top: 0;
    font-weight: 700;
}

.page-nav-wrap ul li {
    display: inline-block;
}

.page-nav-wrap ul li .page-numbers {
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    background: #f6f6f6;
    font-weight: 700;
    transition: all 0.3s ease-in-out;
    margin: 0 2px;
}

.page-nav-wrap ul li .page-numbers.current {
    background-color: var(--theme-color);
    color: var(--white);
}

@media (max-width: 767px) {
    .page-nav-wrap ul li .page-numbers {
        margin-top: 10px;
        width: 50px;
        height: 50px;
        line-height: 50px;
        font-size: 14px;
    }
}

.page-nav-wrap ul li .page-numbers i {
    margin-top: 2px;
}

.page-nav-wrap ul li .page-numbers:hover {
    background-color: var(--theme-color);
    color: var(--white);
}

.social-share a {
    margin-left: 10px;
    transition: all 0.4s ease-in-out;
}

.social-share a:hover {
    color: var(--theme-color);
}

.tag-share-wrap {
    padding-bottom: 50px;
}

.tag-share-wrap h4 {
    margin-bottom: 25px;
}

@media (max-width: 767px) {
    .tag-share-wrap h4 {
        margin-bottom: 10px;
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .tag-share-wrap .tagcloud {
        margin-bottom: 20px;
    }
}

.comments-section-wrap {
    overflow: hidden;
}

.comments-heading h3, .related-post-wrap h3, .comment-form-wrap h3 {
    font-size: 26px;
}

@media (max-width: 767px) {
    .comments-heading h3, .related-post-wrap h3, .comment-form-wrap h3 {
        font-size: 20px;
    }
}

.comments-item-list .single-comment-item {
    margin-top: 30px;
}

.comments-item-list .single-comment-item ul {
    margin-bottom: 15px;
}

.comments-item-list .single-comment-item p, .comments-item-list .single-comment-item span {
    font-size: 16px;
}

.comments-item-list .single-comment-item .author-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    float: left;
    overflow: hidden;
    margin-right: 30px;
}

@media (max-width: 991px) {
    .comments-item-list .single-comment-item .author-img {
        width: 80px;
        height: 80px;
        margin-right: 20px;
    }
}

@media (max-width: 767px) {
    .comments-item-list .single-comment-item .author-img {
        width: 70px;
        height: 70px;
        margin-right: 15px;
    }
}

@media (max-width: 585px) {
    .comments-item-list .single-comment-item .author-img {
        float: none;
        margin-bottom: 20px;
    }
}

.comments-item-list .single-comment-item .author-info-comment {
    overflow: auto;
    padding-bottom: 25px;
    border-bottom: 1px solid #e2e2e2;
}

.comments-item-list .single-comment-item .author-info-comment .info {
    position: relative;
}

.comments-item-list .single-comment-item .author-info-comment .info .theme-btn {
    padding: 10px 18px;
    font-size: 14px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    color: var(--text);
    border: 1px solid #ebebeb;
    background: transparent;
    border-radius: 0;
    transition: all 0.4s ease-in-out;
    box-shadow: inherit;
    border-radius: 4px;
}

@media (max-width: 767px) {
    .comments-item-list .single-comment-item .author-info-comment .info .theme-btn {
        font-size: 12px;
    }
}

.comments-item-list .single-comment-item .author-info-comment .info .theme-btn i {
    margin-right: 10px;
    margin-left: 0px !important;
    transition: all 0.4s ease-in-out;
    width: initial;
    height: initial;
    line-height: initial;
    background-color: transparent;
}

.comments-item-list .single-comment-item .author-info-comment .info .theme-btn.minimal-btn::before, .comments-item-list .single-comment-item .author-info-comment .info .theme-btn.minimal-btn::after {
    background-color: initial;
}

.comments-item-list .single-comment-item .author-info-comment .info .theme-btn:hover {
    background-color: var(--theme-color);
    color: var(--white);
}

.comments-item-list .single-comment-item .author-info-comment .info .theme-btn:hover a {
    color: var(--white) !important;
}

.comments-item-list .single-comment-item .author-info-comment .info .theme-btn:hover i {
    transform: translate(0);
    color: var(--white);
}

.comments-item-list .single-comment-item .author-info-comment .info h5 {
    margin-bottom: 5px;
}

@media (max-width: 767px) {
    .comments-item-list .single-comment-item .author-info-comment .info h5 {
        font-size: 16px;
    }
}

.comments-item-list .single-comment-item .author-info-comment span {
    color: var(--theme-color);
    font-weight: 500;
}

.comments-item-list .single-comment-item .author-info-comment .theme-btn {
    padding: 7px 18px;
    font-size: 14px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

@media (max-width: 767px) {
    .comments-item-list .single-comment-item .author-info-comment .theme-btn {
        font-size: 12px;
    }
}

.comments-item-list .single-comment-item .author-info-comment .theme-btn i {
    margin-right: 5px;
}

.comments-item-list .single-comment-item .author-info-comment .theme-btn:hover a {
    color: var(--white);
}

.comments-item-list .single-comment-item .author-info-comment .comment-text {
    margin-top: 15px;
}

.comment-form {
    background-color: var(--white);
    width: 100%;
    margin-top: 30px;
}

@media (max-width: 767px) {
    .comment-form {
        padding: 30px;
    }
}

@media (max-width: 585px) {
    .comment-form {
        padding: 30px 15px;
    }
}

.comment-form label {
    margin-bottom: 4px;
}

.comment-form input, .comment-form textarea {
    margin-bottom: 20px;
    outline: none;
    padding: 20px 30px;
    line-height: 1;
    font-size: 16px;
    width: 100%;
    border: none;
    font-weight: 500;
    text-transform: capitalize;
    color: var(--header);
    background-color: var(--bg);
    box-shadow: 0px 15px 10px 0px rgba(242, 242, 242, 0.18);
    border-radius: 4px;
}

@media (max-width: 585px) {
    .comment-form input, .comment-form textarea {
        padding: 15px;
    }
}

.comment-form textarea {
    height: 200px;
    line-height: 1.3;
    border: none;
}

@media (max-width: 767px) {
    .comment-form textarea {
        height: 120px;
    }
}

.comment-form .theme-btn {
    display: inline-block;
    transition: all 0.3s ease-in-out;
    margin-bottom: 0;
    margin-top: 20px;
}

@media (max-width: 767px) {
    .comment-form .theme-btn {
        padding: 20px 40px;
    }
}

@media (max-width: 585px) {
    .comment-form .theme-btn {
        padding: 15px 40px;
        font-size: 14px;
    }
}

.comment-form .theme-btn:hover i {
    transform: translate(0);
}

.comment ul {
    list-style-type: disc;
}

.comment ul ol {
    margin-bottom: 0;
}

.comment ul li {
    line-height: 1.5;
    margin-top: 10px;
    list-style-type: disc;
}

.comment ol ul {
    margin-bottom: 0;
}

.comment ol ol {
    margin-bottom: 0;
}

.comment ol li {
    line-height: 1.5;
    margin-top: 10px;
}

.site_info_widget .single-contact-info {
    overflow: auto;
    margin-bottom: 20px;
}

.site_info_widget .single-contact-info span {
    display: block;
    color: var(--theme-color);
}

.site_info_widget .single-contact-info .icon {
    width: 40px;
    height: 40px;
    line-height: 40px;
    color: var(--white);
    background-color: var(--theme-color);
    float: left;
    text-align: center;
    overflow: hidden;
    font-size: 16px;
    margin-right: 20px;
}

.site_info_widget .single-contact-info:nth-child(2n) .icon {
    background-color: var(--theme-color);
}

.site_info_widget .single-contact-info:nth-child(3n) .icon {
    background-color: var(--theme-color);
}

.site_info_widget .social-link {
    margin-top: 35px;
}

.site_info_widget .social-link a {
    margin-right: 8px !important;
}

.alignleft {
    float: left;
    margin-right: 1.5em;
    margin-bottom: 1.5em;
    border-radius: 4px;
}

@media (max-width: 767px) {
    .alignleft {
        float: initial;
    }
}

.contact-wrapper {
    position: relative;
    z-index: 9;
}

.contact-wrapper .contact-content {
    background-color: var(--bg);
    border-radius: 10px;
    padding: 60px;
}

@media (max-width: 991px) {
    .contact-wrapper .contact-content {
        padding: 40px;
    }
}

@media (max-width: 767px) {
    .contact-wrapper .contact-content {
        padding: 40px;
        text-align: center;
    }
}

@media (max-width: 575px) {
    .contact-wrapper .contact-content {
        padding: 30px;
    }
}

.contact-wrapper .contact-content h3 {
    font-size: 32px;
    margin-bottom: 10px;
}

.contact-wrapper .contact-content .contact-form-items {
    margin-top: 30px;
}

.contact-wrapper .contact-content .contact-form-items .form-clt {
    position: relative;
}

.contact-wrapper .contact-content .contact-form-items .form-clt input, .contact-wrapper .contact-content .contact-form-items .form-clt textarea {
    width: 100%;
    outline: none;
    border-radius: 4px;
    border: 1px solid rgba(35, 28, 37, 0.1);
    background: var(--white);
    color: var(--text);
    padding: 16px 20px;
    font-weight: 500;
    text-transform: capitalize;
}

@media (max-width: 767px) {
    .contact-wrapper .contact-content .contact-form-items .form-clt input, .contact-wrapper .contact-content .contact-form-items .form-clt textarea {
        padding: 14px 20px;
    }
}

@media (max-width: 575px) {
    .contact-wrapper .contact-content .contact-form-items .form-clt input, .contact-wrapper .contact-content .contact-form-items .form-clt textarea {
        padding: 12px 18px;
    }
}

.contact-wrapper .contact-content .contact-form-items .form-clt input::placeholder, .contact-wrapper .contact-content .contact-form-items .form-clt textarea::placeholder {
    color: var(--text);
}

.contact-wrapper .contact-content .contact-form-items .form-clt textarea {
    padding-bottom: 140px;
    resize: none;
}

.contact-wrapper .contact-info-content {
    margin-left: 50px;
}

@media (max-width: 1199px) {
    .contact-wrapper .contact-info-content {
        margin-left: 0;
    }
}

@media (max-width: 767px) {
    .contact-wrapper .contact-info-content {
        text-align: center;
    }
}

.contact-wrapper .contact-info-content .contact-info {
    margin-top: 50px;
    margin-top: 30px;
}

.contact-wrapper .contact-info-content .contact-info .contact-items {
    display: flex;
    align-items: center;
    gap: 20px;
}

@media (max-width: 767px) {
    .contact-wrapper .contact-info-content .contact-info .contact-items {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }
}

.contact-wrapper .contact-info-content .contact-info .contact-items:not(:last-child) {
    margin-bottom: 30px;
}

@media (max-width: 575px) {
    .contact-wrapper .contact-info-content .contact-info .contact-items {
        flex-wrap: wrap;
    }
}

.contact-wrapper .contact-info-content .contact-info .contact-items .icon {
    width: 68px;
    height: 68px;
    line-height: 68px;
    text-align: center;
    border-radius: 4px;
    background-color: var(--bg);
}

.contact-wrapper .contact-info-content .contact-info .contact-items .icon i {
    font-size: 16px;
}

@media (max-width: 767px) {
    .contact-wrapper .contact-info-content .contact-info .contact-items .content {
        flex-basis: 100%;
    }
}

.contact-wrapper .contact-info-content .contact-info .contact-items .content span {
    font-size: 15px;
    color: var(--theme-color-2);
    font-weight: 500;
}

.contact-section {
    position: relative;
}

.contact-section .shape-1 {
    position: absolute;
    left: 5%;
    top: 15%;
}

.contact-section .shape-2 {
    position: absolute;
    right: 6%;
    bottom: 20%;
}

.map-section .google-map iframe {
    width: 100%;
    height: 810px;
}

@media (max-width: 991px) {
    .map-section .google-map iframe {
        height: 600;
    }
}

@media (max-width: 767px) {
    .map-section .google-map iframe {
        height: 500px;
    }
}

@media (max-width: 575px) {
    .map-section .google-map iframe {
        height: 400px;
    }
}

.footer-wrapper {
    padding: 75px 0 110px;
}

@media (max-width: 991px) {
    .footer-wrapper {
        padding: 50px 0 80px;
    }
}

.footer-wrapper .footer-content .contact-info-items {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 30px;
}

@media (max-width: 767px) {
    .footer-wrapper .footer-content .contact-info-items {
        flex-wrap: wrap;
    }
}

.footer-wrapper .footer-content .contact-info-items .contact-items {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-wrapper .footer-content .contact-info-items .contact-items .icon {
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    background-color: var(--theme-color-2);
    text-align: center;
}

.footer-wrapper .footer-content .contact-info-items .contact-items .content span {
    color: #6F7373;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 2px;
}

.footer-wrapper .footer-content .contact-info-items .contact-items .content h6 {
    font-size: 16px;
    font-weight: 800;
    font-family: "Nunito", sans-serif;
}

.footer-wrapper .footer-content .app-text {
    font-size: 15px;
    font-weight: 500;
    margin-top: 40px;
}

.footer-wrapper .footer-content .apps-items {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 20px;
}

@media (max-width: 767px) {
    .footer-wrapper .footer-content .apps-items {
        flex-wrap: wrap;
    }
}

.footer-wrapper .footer-content .apps-items img {
    border-radius: 5px;
}

.footer-wrapper .footer-content .social-icon {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.footer-wrapper .footer-content .social-icon a {
    font-size: 20px;
}

.footer-wrapper .footer-content .social-icon a:hover {
    color: var(--theme-color-2);
}

.footer-wrapper .footer-widget-items {
    margin-top: 30px;
}

.footer-wrapper .footer-widget-items .widget-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-wrapper .footer-widget-items .widget-title h3 {
    font-size: 20px;
    font-weight: 600;
}

.footer-wrapper .footer-widget-items .list-items li {
    font-size: 16px;
    font-weight: 600;
}

.footer-wrapper .footer-widget-items .list-items li:not(:last-child) {
    margin-bottom: 20px;
}

.footer-wrapper .footer-widget-items .list-items li a {
    color: #5E5960;
}

.footer-wrapper .footer-widget-items .list-items li a:hover {
    color: var(--theme-color);
}

.footer-wrapper .footer-widget-items .footer-gallery .gallery-wrap .gallery-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-wrapper .footer-widget-items .footer-gallery .gallery-wrap .gallery-item:not(:last-child) {
    margin-bottom: 10px;
}

.footer-wrapper .footer-widget-items .footer-gallery .gallery-wrap .gallery-item .thumb {
    position: relative;
    width: 75px;
}

.footer-wrapper .footer-widget-items .footer-gallery .gallery-wrap .gallery-item .thumb img {
    width: 100%;
    height: 100%;
    border-radius: 5px;
}

.footer-wrapper .footer-widget-items .footer-gallery .gallery-wrap .gallery-item .thumb .icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    text-align: center;
    transition: 0.3s;
    opacity: 0;
    width: 100%;
    height: 100%;
}

.footer-wrapper .footer-widget-items .footer-gallery .gallery-wrap .gallery-item .thumb .icon::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(77, 64, 202, 0.8);
    transition: 0.4s;
    opacity: 0;
    width: 100%;
    height: 100%;
    border-radius: 5px;
}

.footer-wrapper .footer-widget-items .footer-gallery .gallery-wrap .gallery-item .thumb .icon i {
    color: var(--white);
    font-size: 16px;
    z-index: 99;
    position: relative;
    margin-top: 35px;
}

.footer-wrapper .footer-widget-items .footer-gallery .gallery-wrap .gallery-item .thumb:hover .icon {
    opacity: 1;
}

.footer-wrapper .footer-widget-items .footer-gallery .gallery-wrap .gallery-item .thumb:hover .icon::after {
    opacity: 1;
}

.footer-newsletter-items {
    padding-top: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 1199px) {
    .footer-newsletter-items {
        flex-wrap: wrap;
        gap: 30px;
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 991px) {
    .footer-newsletter-items {
        padding-top: 73px;
    }
}

.footer-newsletter-items h2 {
    max-width: 510px;
}

.footer-newsletter-items .footer-input {
    position: relative;
    width: 100%;
    max-width: 640px;
}

.footer-newsletter-items .footer-input input {
    border-radius: 57px;
    border: 1px solid rgba(35, 28, 37, 0.1);
    background: var(--white);
    outline: none;
    width: 100%;
    padding: 26px 30px;
    line-height: 1;
    color: var(--text);
}

@media (max-width: 575px) {
    .footer-newsletter-items .footer-input input {
        padding: 18px 30px;
    }
}

.footer-newsletter-items .footer-input .newsletter-btn {
    padding: 20px 30px;
    display: inline-block;
    color: var(--white);
    background-color: var(--theme-color);
    line-height: 1;
    border-radius: 40px;
    position: absolute;
    top: 9px;
    right: 9px;
    transition: all 0.4s ease-in-out;
}

@media (max-width: 575px) {
    .footer-newsletter-items .footer-input .newsletter-btn {
        padding: 15px 30px;
        top: 7px;
        right: 9px;
    }
}

@media (max-width: 470px) {
    .footer-newsletter-items .footer-input .newsletter-btn {
        padding: 15px 20px;
    }
}

.footer-newsletter-items .footer-input .newsletter-btn i {
    margin-left: 10px;
}

@media (max-width: 470px) {
    .footer-newsletter-items .footer-input .newsletter-btn i {
        margin-left: 5px;
    }
}

.footer-newsletter-items .footer-input .newsletter-btn:hover {
    background-color: var(--header);
}

.footer-bottom-1 {
    border-top: 1px solid rgba(21, 20, 21, 0.15);
    padding: 25px 0;
}

.footer-bottom-1 .footer-bottom-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 575px) {
    .footer-bottom-1 .footer-bottom-wrapper {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
}

.footer-bottom-1 .footer-bottom-wrapper .footer-menu {
    display: flex;
    align-items: center;
    gap: 20px;
}

@media (max-width: 575px) {
    .footer-bottom-1 .footer-bottom-wrapper .footer-menu {
        flex-wrap: wrap;
        justify-content: center;
    }
}

.footer-bottom-1 .footer-bottom-wrapper .footer-menu li {
    font-size: 16px;
}

.footer-bottom-1 .footer-bottom-wrapper .footer-menu li a {
    color: var(--text);
    background-image: linear-gradient(var(--theme-color), var(--theme-color));
    background-position: 0 95%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    display: inline-block;
    transition: all 0.4s ease-in-out;
    font-weight: 400;
}

.footer-bottom-1 .footer-bottom-wrapper .footer-menu li a:hover {
    background-size: 100% 2px;
    color: var(--theme-color);
}

.footer-widget-wrapper {
    padding: 70px 0 100px;
}

@media (max-width: 991px) {
    .footer-widget-wrapper {
        padding: 50px 0 50px;
    }
}

.footer-widget-wrapper .single-footer-widget {
    margin-top: 30px;
    position: relative;
}

.footer-widget-wrapper .single-footer-widget .widget-head {
    margin-bottom: 20px;
}

.footer-widget-wrapper .single-footer-widget .widget-head h4 {
    color: var(--white);
}

.footer-widget-wrapper .single-footer-widget .footer-content p {
    color: rgba(255, 255, 255, 0.75);
}

.footer-widget-wrapper .single-footer-widget .footer-content .contact-info {
    margin-top: 30px;
}

.footer-widget-wrapper .single-footer-widget .footer-content .contact-info .contact-item {
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-widget-wrapper .single-footer-widget .footer-content .contact-info .contact-item .icon {
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 50px;
    background-color: var(--theme-color-2);
}

.footer-widget-wrapper .single-footer-widget .footer-content .contact-info .contact-item .icon svg {
    font-size: 25px;
}

.footer-widget-wrapper .single-footer-widget .footer-content .contact-info .contact-item .content span {
    font-size: 14px;
    font-weight: 500;
    color: #6F7373;
}

.footer-widget-wrapper .single-footer-widget .footer-content .contact-info .contact-item .content h6 {
    font-weight: 800;
    font-family: "Nunito", sans-serif;
}

.footer-widget-wrapper .single-footer-widget .footer-content .contact-info .contact-item .content h6 a {
    color: var(--white);
}

.footer-widget-wrapper .single-footer-widget .list-items li {
    transition: all 0.4s ease-in-out;
    font-weight: 600;
    font-size: 16px;
}

.footer-widget-wrapper .single-footer-widget .list-items li a {
    color: rgba(255, 255, 255, 0.75);
}

.footer-widget-wrapper .single-footer-widget .list-items li:not(:last-child) {
    margin-bottom: 15px;
}

.footer-widget-wrapper .single-footer-widget .list-items li:hover {
    margin-left: 5px;
}

.footer-widget-wrapper .single-footer-widget .list-items li:hover a {
    color: var(--theme-color);
}

.footer-widget-wrapper .single-footer-widget .newspaper-content p {
    color: rgba(255, 255, 255, 0.75);
}

.footer-widget-wrapper .single-footer-widget .newspaper-content .search-widget {
    margin-top: 30px;
}

.footer-widget-wrapper .single-footer-widget .newspaper-content .search-widget input {
    width: 100%;
    border: none;
    border-radius: 57px;
    border: 1px solid rgba(35, 28, 37, 0.1);
    background-color: var(--white);
    position: relative;
    font-size: 15px;
    font-weight: 500;
    padding: 12px 30px;
    color: var(--text);
}

.footer-widget-wrapper .single-footer-widget .newspaper-content .search-widget input::placeholder {
    color: var(--text);
}

.footer-widget-wrapper .single-footer-widget .newspaper-content button {
    margin-top: 20px;
    width: 100%;
}

.footer-widget-wrapper .single-footer-widget .newspaper-content button.theme-btn {
    width: 100%;
    padding: 19px 130px;
}

.footer-widget-wrapper .single-footer-widget .newspaper-content button.theme-btn span {
    margin-right: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    position: relative;
    z-index: 9;
}

.footer-bottom .footer-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 0;
}

@media (max-width: 991px) {
    .footer-bottom .footer-wrapper {
        flex-wrap: wrap;
        gap: 30px;
        justify-content: center;
    }
}

.footer-bottom .footer-wrapper .footer-item {
    display: flex;
    align-items: center;
    gap: 90px;
}

@media (max-width: 767px) {
    .footer-bottom .footer-wrapper .footer-item {
        flex-wrap: wrap;
        gap: 30px;
        justify-content: center;
    }
}

.footer-bottom .footer-wrapper .footer-item p {
    color: rgba(255, 255, 255, 0.56);
}

.footer-bottom .footer-wrapper .footer-item .bottom-list {
    display: flex;
    align-items: center;
    gap: 30px;
}

.footer-bottom .footer-wrapper .footer-item .bottom-list li {
    font-size: 15px;
}

.footer-bottom .footer-wrapper .footer-item .bottom-list li a {
    color: rgba(255, 255, 255, 0.56);
}

.footer-bottom .footer-wrapper .footer-item .bottom-list li a:hover {
    color: var(--theme-color);
}

.footer-bottom .footer-wrapper .social-icon {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-bottom .footer-wrapper .social-icon a {
    display: inline-block;
    color: var(--white);
}

.footer-bottom .footer-wrapper .social-icon a:hover {
    color: var(--theme-color);
}

.footer-name {
    max-width: 1637px;
    margin: -70px auto -80px;
    text-align: center;
}

@media (max-width: 1600px) {
    .footer-name {
        margin: -15px auto -45px;
    }
}

@media (max-width: 991px) {
    .footer-name {
        margin: -20px auto -25px;
    }
}

@media (max-width: 767px) {
    .footer-name {
        margin: -20px auto -30px;
    }
}

@media (max-width: 575px) {
    .footer-name {
        margin: -20px auto -20px;
    }
}

.footer-name h2 {
    font-size: 450px;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--white);
    line-height: 1;
}

@media (max-width: 1600px) {
    .footer-name h2 {
        font-size: 400px;
    }
}

@media (max-width: 1399px) {
    .footer-name h2 {
        font-size: 350px;
    }
}

@media (max-width: 1199px) {
    .footer-name h2 {
        font-size: 250px;
    }
}

@media (max-width: 991px) {
    .footer-name h2 {
        font-size: 210px;
    }
}

@media (max-width: 767px) {
    .footer-name h2 {
        font-size: 155px;
    }
}

@media (max-width: 575px) {
    .footer-name h2 {
        font-size: 120px;
    }
}

@media (max-width: 470px) {
    .footer-name h2 {
        font-size: 90px;
    }
}

.swiper.testimonial-slider-4 {
    overflow: inherit;
}

/* new */
/* ------------ login -------------- */
.login {
    position: relative;
    padding: 60px 0 80px;
}

.login.dif {
    height: 100vh;
}

.bg-layer {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    z-index: -1;
}

.contact-container {
    width: 100%;
    border-radius: 24px;
    padding: 32px 32px;
    background: rgba(255, 255, 255, 1);
    box-shadow: 3px 4px 20px 0px rgba(213, 227, 217, 0.50);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px)
}

.contact-container h3 {
    font-size: 28px;
    font-weight: 500;
    line-height: 35px;
    margin-bottom: 20px;
}

.form-control {
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid #E8E8E8;
}

.contact-form label {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

.input-content {
    position: relative;
    margin-bottom: 20px;
}

.iti {
    width: 100%;
}

.fpwd {
    position: absolute;
    right: 0;
    top: 0;
    color: var(--secondary-color);
}

.contact-form-footer {
    padding-top: 14px;
    margin-top: 30px;
    border-top: 1px solid var(--border-2);
    margin-bottom: 20px;
}

.contact-form-footer p {
    text-align: center;
    margin-bottom: 0;
}

.contact-form-footer p a {
    color: var(--primary-color);
}

.contact-form button {
    margin-top: 34px;
    padding: 20px 0;
    border-radius: 8px;
}

.theme-btn:hover::after {
    z-index: -1;
}

.input-group.capcha {
    height: 48px;
    margin-top: 8px;
    border-radius: 8px;
    overflow: hidden;
}

.input-group.capcha .input-group-text {
    padding: .375rem 20px;
    font-size: 20px;
}

.social-btn {
    background: #fff;
    padding: 10px 20px;
    border-radius: 4px;
    transition: 0.5s;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-transform: capitalize;
    border: 1px solid #ddd;
}

.social-btn img {
    margin-right: 5px;
    width: 16px;
}

.contact-container .logo {
    display: flex;
    justify-content: center;
}

.capcha-container {
    position: relative;
}

.capcha {
    position: absolute;
    right: 0;
    top: 28px;
    width: auto;
}

.input-group.capcha {
    height: 48px;
}


/* User Info For checkout */

.checkout-page {
    padding: 60px 0;
    background-color: #f7f9fc;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.checkout-page .checkout-form {
    background-color: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.checkout-page .contactArea {
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 25px;
    background-color: #ffffff;
}

.checkout-page .contactArea .card-header h4 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    width: 100%;
    color: #2d3748;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 10px;
}

.checkout-page .label {
    font-weight: 600;
    color: #4a5568;
}

.checkout-page .form-control {
    border-radius: 8px;
    padding: 10px 15px;
    border: 1px solid #cbd5e0;
    transition: border-color 0.2s;
}

.checkout-page .form-control:focus {
    border-color: #3182ce;
    box-shadow: 0 0 0 0.2rem rgba(66, 153, 225, 0.2);
}

.checkout-page textarea.form-control {
    resize: none;
}

.checkout-page .userInfoSidebar {
    padding: 20px;
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.checkout-page .sidebar-widget-area {
    margin-bottom: 30px;
}

.checkout-page .image-area img {
    width: 100%;
    border-radius: 10px;
}

.checkout-page .content-area .title {
    font-size: 18px;
    font-weight: 600;
    color: #2d3748;
    margin-top: 10px;
}

.checkout-page .location {
    display: block;
    color: #718096;
    margin-top: 5px;
    font-size: 14px;
}

.checkout-page .cmn-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.checkout-page .cmn-list .item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #edf2f7;
}

.checkout-page .cmn-list .item h6 {
    margin: 0;
    font-size: 15px;
    color: #4a5568;
}

.checkout-page .checkout-summary {
    background-color: #f1f5f9;
    padding: 20px;
    border-radius: 10px;
}

.checkout-page .cart-total li {
    font-weight: 600;
    font-size: 16px;
    color: #2d3748;
}

.checkout-page .cmn-btn {
    background-color: #2b6cb0;
    color: #fff;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.checkout-page .cmn-btn:hover {
    background-color: #2c5282;
}

.checkout-page .numberStyleOne,
.checkout-page .numberStyleTwo {
    display: inline-block;
    background-color: #2b6cb0;
    color: #fff;
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 50%;
    text-align: center;
    font-weight: 600;
    margin-right: 10px;
}

.checkout-page .invalid-feedback {
    color: #e53e3e;
    font-size: 13px;
}

.checkout-page .schedule-form input {
    border-radius: 8px;
}

.checkout-page .step-links {
    margin-top: 30px;
}

.checkout-page .step-item {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 15px 20px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.checkout-page .step-item:hover {
    background-color: #f7fafc;
    border-color: #cbd5e0;
    transform: translateY(-2px);
}

.checkout-page .step-item p {
    font-size: 16px;
    font-weight: 600;
    color: #2d3748;
    display: flex;
    align-items: center;
    margin: 0;
}

.checkout-page .step-item i {
    color: #4a5568;
    font-size: 16px;
    transition: transform 0.2s;
}

.checkout-page .step-item:hover i {
    transform: translateX(4px);
}

@media (max-width: 767px) {
    .checkout-page .checkout-form,
    .checkout-page .userInfoSidebar {
        padding: 15px;
    }

    .checkout-page .cmn-btn {
        width: 100%;
        text-align: center;
    }
}

/*
    Traveller Info Update
 */

.contactDetails {
    background-color: #f9fafb;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 25px 20px;
    margin-bottom: 30px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.04);
}

.contactDetails .travelerDetails {
    margin-bottom: 20px;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 15px;
}

.contactDetails h4 {
    font-size: 18px;
    font-weight: 700;
    color: #2d3748;
    margin: 0;
    display: flex;
    align-items: center;
}

.contactDetails .numberStyleTwo {
    background-color: #4a90e2;
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    font-size: 14px;
    margin-right: 10px;
}

.cmn-btn2 {
    background-color: #4a90e2;
    color: #fff !important;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 18px;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.cmn-btn2:hover {
    background-color: #357ab8;
    color: #fff !important;
}

.contactDetails .contact-part {
    padding-left: 38px;
}

.contactDetails .userName {
    font-size: 16px;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 8px;
}

.contactDetails .userInformation {
    font-size: 14px;
    color: #4a5568;
    margin-bottom: 4px;
}

.contactDetails .userInformation span {
    font-weight: 500;
    color: #2d3748;
}

.travelersInformationArea {
    background-color: #f9fafb;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.04);
}

.travelersInformationArea .card-header {
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 20px;
    align-items: center;
    justify-content: space-between;
}

.travelersInformationArea .title {
    font-size: 18px;
    font-weight: 700;
    color: #2d3748;
    margin: 0;
    display: flex;
    align-items: center;
}

.travelersInformationArea .numberStyleOne {
    background-color: #4a90e2;
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    font-size: 14px;
    margin-right: 10px;
}

.travelersInformationArea .card-body {
    padding: 10px 0;
}

.travelersInformationArea .cmn-btn {
    background-color: #4a90e2;
    color: #fff !important;
    font-size: 15px;
    font-weight: 500;
    padding: 10px 24px;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
}

.travelersInformationArea .cmn-btn:hover {
    background-color: #357ab8;
    color: #fff !important;
}

.paymentDetails {
    background-color: #f1f5f9;
    padding: 14px 20px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    margin-top: 30px;
    cursor: not-allowed;
    opacity: 0.6;
}

.paymentDetails p {
    margin: 0;
    font-size: 15px;
    font-weight: 500;
    color: #2d3748;
    display: flex;
    align-items: center;
}

.paymentDetails .numberStyleTwo {
    background-color: #94a3b8;
    color: #fff;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.travelersInformationArea .nextPlayIcon {
    font-size: 16px;
    color: #a0aec0;
    align-self: center;
}

.booking-submission-section {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.03);
}

.checkout-form-card {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    background-color: #ffffff;
    margin-bottom: 30px;
}

.checkout-form-card .card-header {
    background-color: #f9fafb;
    border-bottom: 1px solid #e2e8f0;
    padding: 20px 24px;
    border-radius: 10px;
}

.checkout-form-card .title {
    font-size: 18px;
    font-weight: 600;
    color: #2d3748;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkout-form-card .numberStyleTwo {
    background-color: #3182ce;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    width: 28px;
    height: 28px;
    line-height: 28px;
    text-align: center;
    border-radius: 50%;
    display: inline-block;
}

.checkout-form-card .btn-link {
    color: #2d3748;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.checkout-form-card .btn-link:hover {
    color: #2b6cb0;
}

.checkout-form-card .fa-chevron-down {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.checkout-form-card .collapsed .fa-chevron-down {
    transform: rotate(0deg);
}

.checkout-form-card .card-body {
    padding: 24px;
    background-color: #ffffff;
}

.payment-section .card {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    background-color: #ffffff;
    overflow: hidden;
}

.payment-section .card-header {
    background-color: #f9fafb;
    border-bottom: 1px solid #e2e8f0;
    padding: 20px 24px;
    border-radius: 12px 12px 0 0;
}

.payment-section .title {
    font-size: 18px;
    font-weight: 600;
    color: #2d3748;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.numberStyleOne {
    background-color: #38b2ac;
    color: white;
    font-size: 14px;
    font-weight: bold;
    width: 28px;
    height: 28px;
    line-height: 28px;
    text-align: center;
    border-radius: 50%;
    display: inline-block;
}

.payment-container-list {
    list-style: none;
    padding: 0;
    margin: 0;
    overflow: auto;
    max-height: 400px;
}

.payment-container-list .item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 20px;
    border-bottom: 1px solid #edf2f7;
    cursor: pointer;
    transition: background-color 0.2s;
    border-radius: 8px;
}

.payment-container-list .item:hover {
    background-color: #f7fafc;
}

.payment-container-list .form-check-input {
    margin-top: 8px;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    accent-color: #38b2ac;
}

.payment-container-list .form-check-label {
    display: flex;
    gap: 15px;
    cursor: pointer;
    width: 100%;
}

.payment-container-list .image-area img {
    width: 50px;
    height: auto;
    object-fit: contain;
    border-radius: 4px;
}

.payment-container-list .content-area h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #2d3748;
}

.payment-container-list .method-description {
    font-size: 14px;
    color: #718096;
}

.payment-section .modal-content {
    border-radius: 12px;
    overflow: hidden;
    background-color: #fff;
}

.payment-section .modal-header {
    background-color: #38b2ac;
    color: white;
    padding: 15px 20px;
    border-bottom: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.payment-section .cmn-btn-close {
    background: none;
    border: none;
    font-size: 20px;
}

#paymentModalBody {
    padding: 20px;
}

.show-deposit-summery h5.title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 8px;
}

.show-deposit-summery .item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 15px;
    border-bottom: 1px dashed #e1e1e1;
}

.show-deposit-summery .item:last-child {
    border-bottom: none;
}

.show-deposit-summery .item-name {
    color: #444;
    font-weight: 500;
}

.show-deposit-summery .item-value {
    color: #111;
    font-weight: 600;
}

.show-deposit-summery .text-danger {
    color: #e74c3c !important;
}

.nice-select {
    width: 100%;
    height: 45px;
    line-height: 45px;
    border-radius: 6px;
    border: 1px solid #ccc;
    padding: 0 15px;
    background-color: #fff;
    color: #333;
    font-size: 14px;
}

.nice-select:after {
    right: 15px;
    top: 18px;
}

.checkBox {
    margin-top: 20px;
    display: flex;
    align-items: flex-start;
}

.checkBox input {
    margin-top: 5px;
    margin-right: 10px;
}

.checkBox label {
    font-size: 14px;
    color: #555;
}

.checkBox label a.link {
    color: #007bff;
    text-decoration: underline;
}

.checkBox label a.link:hover {
    color: #0056b3;
}

.confirmBtn {
    width: 100%;
}

/*
    Plans
 */


/* --------------------------------- pricing plan----------------------------*/
.business-pricing-plan {
    padding: 100px 50px;
}

.business-pricing-plan .common-title {
    max-width: 471px;
    width: 100%;
    margin: 0 auto;
    margin-bottom: 40px;
    text-align: center;
}

.business-pricing-plan .common-title h6 {
    justify-content: center;
}

.business-pricing-card {
    position: relative;
    background-color: var(--white);
    border: 1px solid var(--border);
    display: flex;
    padding: 0 30px 180px;
    margin-bottom: 30px;
    transition: 0.5s;
    height: 100%;
}

.business-pricing-card-inner {
    width: 100%;
}

.pricing-bottom {
    position: absolute;
    bottom: 10px;
}

.business-pricing-card:hover {
    background-color: var(--bg);
}

.business-pricing-card-badge {
    width: 142px;
    height: 149px;
    border-radius: 0px 0px 100px 100px;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    border-left: 1px solid var(--border);
    background: var(--bg);
    text-align: center;
    margin: 0 auto;
    margin-bottom: 32px;
    padding-top: 24px;
    transition: 0.5s;
}

.business-pricing-card-badge .icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: var(--black);
    background-color: var(--secondary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    transition: 0.5s;
}

.business-pricing-card:hover .business-pricing-card-badge .icon {
    background-color: transparent;
}

.business-pricing-card:hover .business-pricing-card-badge {
    background: var(--secondary-color);
}

.business-pricing-card-badge h6 {
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    margin: 4px 0 2px;
}

.business-pricing-card-badge p {
    font-size: 16px;
    margin-bottom: 0;
}

.business-pricing-card-list li {
    padding: 8px 0 16px;
    border-bottom: 1px dashed var(--border);
    font-size: 18px;
}

.business-pricing-card-list li i {
    margin-right: 8px;
}

.business-pricing-card-list li i.fa-circle-check {
    color: var(--secondary-color);
}

.business-pricing-card-list li i.fa-xmark {
    color: var(--primary-color);
}

.business-pricing-amount {
    margin: 24px 0 28px;
    font-size: 40px;
    font-weight: 500;
    line-height: 60px;
}

.business-pricing-amount sup {
    font-size: 16px;
    top: -20px;
}

.business-pricing-amount sub {
    font-size: 16px;
    bottom: 0;
}

.business-pricing-card-btn {
    margin-bottom: 24px;
}

.business-pricing-card-btn .btn-3 {
    width: 100%;
    height: 60px;
    padding: 0 0 0 40px !important;
    background: transparent;
    color: var(--theme-color) !important;
    border: 1px solid var(--border);
}

.business-pricing-card-btn .btn-3 i {
    position: absolute;
    right: 0;
    top: 0;
}

.business-pricing-card:hover .business-pricing-card-btn .btn-3 {
    background: var(--theme-color);
    color: var(--white) !important;
}

.business-pricing-help-btn {
    margin-top: 150px;
}

.plan_icon {
    height: 50px;
}

/* --------------------------------- pricing plan----------------------------*/

/* --------------------------------- Payment----------------------------*/
.payment {
    padding: 100px 0 100px;
}

.payment-title {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 30px;
}

.payment-box {
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    padding: 30px 10px 30px;
}

.payment-list {
    margin-top: 20px;
    height: 480px;
    overflow: auto;
    padding: 5px;
}

.payment-list:first-child {
    margin-top: 0;
}

.payment-list .item {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.payment-list .form-check-label {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 14px;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.5s;
    gap: 15px;
    background-color: var(--white);
}

.payment-list-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.payment-list-info .payment-list-title {
    display: block;
    font-size: 20px;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 10px;
}

.payment-list-info .payment-list-text {
    display: inline-block;
    color: var(--text);
    max-width: 462px;
}

.payment-list .form-check-label .payment-list-image img {
    width: 50px;
    height: 50px;
    min-width: 50px;
    min-height: 50px;
    border-radius: 50%;
}

.form-check-input:checked {
    background-color: var(--theme-color-2);
    border-color: var(--border);
}

.payment-list .form-check-label .content-area {
    max-width: 400px;
    padding-right: 30px;
}

.payment-list .form-check-input {
    position: absolute;
    right: 15px;
}

.payment-list .form-check-input[type=radio]:checked + .form-check-label {
    background-color: var(--bg);
}

/* right side */
.payment-side-box {
    border: 1px solid var(--border);
    padding: 30px 30px;
    border-radius: 6px;
    margin-bottom: 30px;
}

.payment-side-bar label {
    font-size: 18px;
    margin-bottom: 10px;
}

.payment-side-bar .nice-select {
    width: 100%;
    float: none;
    z-index: 1;
    border-radius: 7px;
    border: none;
    font-size: 16px;
    height: 48px;
    line-height: 48px;
    border: 1px solid var(--border);
}

.payment-side-bar .nice-select:after {
    border-bottom: 1px solid var(--border);
    border-right: 1px solid var(--border);
    height: 9px;
    width: 9px;
    margin-top: -7px;
    right: 18px;
}

.payment-side-bar .nice-select .list {
    width: 100%;
}

.payment-summary-list ul {
    padding: 10px 0 20px;
}

.payment-summary-list ul li {
    padding: 12px 0 12px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.payment-side-bar .btn-1 {
    width: 100%;
    display: flex;
    justify-content: center;
}

/* --------------------------------- Payment End----------------------------*/

.tour-sidebar-widget .checkbox-items {
    max-height: 400px;
    height: 100%;
    overflow: auto;
}


.booking-list-area .nice-select {
    width: 100% !important;
    height: 45px;
    line-height: 45px;
    border-radius: 6px;
    border: 1px solid #ccc;
    padding: 0 30px 0 20px;
    background-color: #fff;
    color: #333;
    font-size: 14px;
}

.booking-list-area .nice-select:after {
    border-bottom: 1px solid #6E6E6E;
    border-right: 1px solid #6E6E6E;
    height: 5px;
    margin-top: 0;
    right: 12px;
    top: 46%;
    width: 5px;
}

.booking-list-area .theme-btn {
    padding: 13px 25px;
    border-radius: 6px !important;
}

.booking-list-area .theme-btn i {
    position: relative;
    z-index: 999;
    width: auto;
    height: auto;
    line-height: 1;
    background-color: transparent;
    border-radius: 0;
    color: var(--white);
}

.tour-sidebar-area .booking-list-area .search-widget .search-btn {
    width: 100%;
    padding: 15px 15px 15px 30px;
}

button.modal-close {
    border: 1px solid var(--border);
    padding: 2px 15px;
    border-radius: 6px;
    position: absolute;
    right: 10px;
    top: 10px;
}

.booking-search .form-clt {
    position: relative;
    padding: 15px 30px 15px 40px;
    border: 1px solid var(--border);
    border-radius: 8px;
    margin-bottom: 20px;
}

.booking-search .form-clt i {
    position: absolute;
    left: 20px;
    top: 19px;
}

.booking-search .form-clt .form-control::placeholder {
    font-size: 16px;
    font-weight: 400;
    color: #b1c1d8;
}

.outside-bar {
    flex-wrap: wrap;
}

@media (max-width: 575px) {
    .outside-bar {
        justify-content: center !important;
    }
}

#searchResults {
    position: absolute;
    width: 66%;
    background: var(--bg);
    padding: 40px 40px;
    height: 500px;
    overflow-y: auto;
}

.search-result-item {
    display: flex;
    align-items: center;
    padding: 8px;
    border-bottom: 1px solid #fff;
    transition: background 0.2s;
}

.search-result-item:hover {
    background-color: #f9f9f9;
}

.result-thumb {
    width: 50px;
    height: 50px;
    object-fit: cover;
    margin-right: 12px;
    border-radius: 4px;
}

.result-text {
    flex-grow: 1;
}

.result-title {
    font-weight: 600;
    color: #333;
    text-decoration: none;
    display: block;
}

.result-type {
    font-size: 12px;
    margin-top: 4px;
    color: #686666;
}


.guide-content a {
    display: block;
}

.tour-details-sidebar .form-list li h6 {
    max-width: 50px;
    width: 100%;
}

.tour-guide .swiper-dot4 .dot {
    display: flex;
    justify-content: center;
}

.guide-image {
    width: 100%;
    height: 250px;
}

.guide-image img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.topCatImg {
    height: 40px;
    border-radius: 45%;
}

.homeThreeSearch {
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    text-align: center !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.manual-payment.feature-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.manual-payment .feature-box {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    width: 100%;
}

.manual-payment h3.title {
    font-size: 26px;
    font-weight: 600;
    color: #333;
}

.manual-payment .text--base {
    color: #007bff;
}

.manual-payment .form-group label {
    font-weight: 500;
    color: #444;
    display: block;
    margin-bottom: 6px;
}

.manual-payment .form-control {
    background: #f3f6f9;
    border: 1px solid #dbe2ea;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 15px;
    color: #333;
    transition: border-color 0.3s ease;
}

.manual-payment .form-control:focus {
    border-color: #007bff;
    outline: none;
    background-color: #fff;
}

.manual-payment .text--danger {
    color: #dc3545;
}

.manual-payment .custom-image-upload {
    position: relative;
    width: 100%;
    max-width: 100%;
    background-color: #f8fafc;
    border: 1px solid #ced4da;
    border-radius: 10px;
    padding: 15px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.manual-payment .upload-icon {
    position: absolute;
    top: 12px;
    right: 12px;
    background-color: #ffffffdd;
    padding: 10px;
    border-radius: 8px;
    border: 2px dashed #007bff;
    color: #007bff;
    cursor: pointer;
    z-index: 2;
    transition: all 0.3s ease;
    font-size: 18px;
}

.manual-payment .upload-icon:hover {
    background-color: #e6f0ff;
    color: #0056b3;
}

.manual-payment input[type="file"] {
    display: none;
}

.manual-payment .preview-image {
    width: 100%;
    max-height: 250px;
    object-fit: contain;
    border-radius: 10px;
    background-color: #e9ecef;
    padding: 20px;
    display: block;
}

@media (max-width: 768px) {
    .manual-payment.feature-box {
        padding: 25px 20px;
    }
}

.detailsImage {
    border-right: 10px;
}

.noDataImage {
    max-height: 220px;
    margin: 0 auto;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translatey(0px);
    }
    50% {
        transform: translatey(-10px);
    }
    100% {
        transform: translatey(0px);
    }
}

.no-data-section {
    padding: 80px 0;
}

.no-data-title {
    font-size: 28px;
    font-weight: 700;
    color: #333;
}

.no-data-text {
    font-size: 16px;
    color: #777;
}

.noDataBtn {
    background-color: #007bff;
    border: none;
    padding: 10px 25px;
    border-radius: 50px;
    transition: 0.3s;
}

.noDataBtn:hover {
    background-color: #0056b3;
}

.package-chat-box {
    height: 300px;
    overflow-y: auto;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #f9f9f9;
}

.package-chat-box .message-bubble {
    padding: 10px;
    border-radius: 15px;
    font-size: 14px;
    max-width: 75%;
    word-wrap: break-word;
}

.package-chat-box .user-bubble {
    background-color: #e0f7fa;
    align-self: flex-end;
    margin-left: auto;
}

.package-chat-box .vendor-bubble {
    background-color: #f1f8e9;
    align-self: flex-start;
}

.chat-box {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.package-chat-box .message {
    display: flex;
    justify-content: flex-start;
    flex-direction: row;
}

.message-container .modal-footer {
    display: block;
    height: auto;
    padding: 28px 20px;
    border: none;
}

.chat-box-bottom {
    display: flex;
    align-items: center;
    padding: 10px;
    background-color: var(--white);
    border: 1px solid #ddd;
    border-radius: 20px;
    position: absolute;
    width: 96.5%;
    bottom: 8px;
    left: 50% !important;
    transform: translateX(-50%) !important;
    margin-bottom: 8px;
}

.chat-box-bottom-inner {
    width: 100%;
    overflow: hidden;
}

.chat-message-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.single-btn2 {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    margin-right: 10px;
    font-size: 16px;
    background: transparent;
    border: none;
}

.single-btn2:hover {
    background-color: #d4e8f1;
    color: #000;
}

.chat-box-bottom textarea {
    height: 50px;
    border-radius: 10px;
}

.message-send-btn {
    min-width: 40px;
    height: 40px;
    border-radius: 10px;
    background-color: red;
    margin-left: 10px;
    color: var(--white);
    font-size: 16px;
}

.chatBox {
    cursor: pointer;
}

.img-wrapper {
    position: relative;
    display: inline-block;
    margin: 5px;
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 5px;
}

.remove-preview {
    padding: 0 4px 1px !important;
    display: inline-block !important;
    line-height: 1 !important;
    position: absolute;
    top: 0;
    right: 0;
    border: 1px solid #ddd;
    border-radius: 50%;
    color: #fff;
    background: red;
    cursor: pointer;
}

#imagePreview {
    height: 140px;
    overflow: auto;
}

#recordingIndicator .record-animation {
    width: 100vw;
    position: relative;
    display: flex;
    align-items: center;
    margin-right: 10px;
    width: 150px;
    background-color: #F1F3F4;
    border-radius: 8px;
    padding: 16px 5px;
    overflow: hidden;
}

.record-animation ul {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 5px;
    animation: line 3s linear infinite;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
}

.record-animation ul li {
    display: flex;
    align-items: center;
    border-radius: 50%;
}

.record-animation ul li span {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #ffffff;
}

@keyframes line {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(100%);
    }
}

.author-sidebar {
    width: 100%;
    display: flex;
    gap: 20px;
    border-radius: 28px;
    background: var(--bg);
    padding: 25px;
    margin-bottom: 30px;
}

.author-image {
    max-width: 100px;
    width: 100%;
    height: 110px;
    border-radius: 12px;
}

.author-image img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

.athour-name {
    font-size: 22px;
    font-weight: 700;
}

.author-email {
    font-size: 16px;
    font-weight: 500;
}

.author-email span {
    font-size: 18px;
    font-weight: 500;
}


/*---------------------------------------------- 00. Author section start ----------------------------------------------*/
.author-section .map-section iframe {
    height: 300px;
}

.author-section {
    padding: 100px 0 100px;
}

.author-box3 {
    background-color: rgba(var(--theme-rgb), 0.5);
    padding: 40px;
    border: 1px solid rgba(var(--theme-rgb), 0.5);
    border-radius: 20px;
    box-shadow: var(---box-shadow);
    display: flex;
    align-items: center;
    gap: 30px;
}

.author-box3 .img-box img {
    width: 200px;
    height: 200px;
    border-radius: 20px;
}

.author-box3 .text-box {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

.author-box3 .left-side h4 {
    font-size: 28px;
}

.author-meta-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 16px 0;
}

.author-meta-pill {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--white);
    color: var(--black);
    font-size: 14px;
    line-height: 1.3;
}

.author-box3 .text-box .item {
    display: flex;
    align-items: center;
    gap: 7px;
}

.author-box3 .cmn-btn4 {
    padding: 10px 15px;
}

.author-box3 .text-box-bottom {
    margin-top: 30px;
}

.author-box3 .cmn-btn4.share #shareBlock {
    right: 0;
    left: auto;
    display: flex;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
}

.social-area ul li a {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 14px;
    border-radius: 2px;
    background: #ffffff;
    color: var(--base);
    box-shadow: var(--box-shadow);
}

.social-area ul li a:hover {
    background-color: var(--theme-color-2);
    color: var(--white);
}

.cmn-btn4.share {
    position: relative;
}

.cmn-btn4.share:hover #shareBlock {
    opacity: 1;
    visibility: visible;
}

.cmn-btn4.share #shareBlock {
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
    position: absolute;
    flex-wrap: wrap;
    justify-content: space-around;
    width: 212px;
    background-color: var(--white);
    padding: 10px;
    border: 1px solid var(--border);
    box-shadow: var(--box-shadow);
    border-radius: 5px;
    bottom: calc(100% + 2px);
    left: 0;
}

.cmn-btn4.share #shareBlock .btn-light {
    font-size: 18px;
    width: 40px;
    height: 40px;
}

@media (max-width: 767px) {
    .author-box3 {
        flex-direction: column;
    }

    .author-box3 .text-box {
        text-align: center;
    }

    .author-box3 .text-box .item {
        justify-content: center;
    }

    .author-meta-grid {
        justify-content: center;
    }
}

.followers {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.followers .follower {
    position: relative;
}

.followers .follower .profile-img-link {
    display: flex;
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.followers .follower:hover .creator {
    opacity: 1;
    visibility: visible;
    bottom: calc(100% + 10px);
}

.followers .follower img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.followers .follower .creator {
    position: absolute;
    text-align: center;
    width: 200px;
    background-color: var(--white);
    padding: 10px;
    border: 1px solid var(--border-color1);
    box-shadow: var(--shadow1);
    border-radius: 10px;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.followers .follower .creator .cover {
    width: 100%;
    height: 80px;
    border-radius: 8px;
}

.followers .follower .creator .profile-img {
    width: 65px;
    height: 65px;
    margin-top: -35px;
}

.cmn-btn4 {
    background-color: var(--theme-color);
    color: var(--white);
    padding: 2px 10px;
    border: 1px solid var(--theme-color);
    transition: 0.5s;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-transform: capitalize;
    gap: 5px;
    font-weight: 500;
    border-radius: 5px;
}

.cmn-btn4:hover {
    color: var(--white);
    box-shadow: var(--box-shadow);
    background-color: var(--theme-color-2);
    border: 1px solid transparent;
}

.cmn-btn6 {
    background-color: var(--theme-color);
    padding: 10px 15px;
    border-radius: 4px;
    border: 1px solid var(--theme-color);
    transition: 0.5s;
    font-size: 16px;
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    text-transform: capitalize;
    gap: 5px;
}

cmn-list2 {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cmn-list2 .item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 10px;
}

.cmn-list2 .item:not(:last-child) {
    border-bottom: 1px dashed var(--border);
}

.rtl .cmn-list2 .item:not(:last-child)::after {
    left: 0;
    right: 12px;
}

.cmn-btn3 {
    background: var(--white);
    padding: 10px 20px;
    border-radius: 4px;
    transition: 0.5s;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    text-transform: capitalize;
    border: 1px solid var(--border);
}

.author-container {
    padding: 100px 0 100px;
}

.author-container .nav-tabs {
    border: none;
    margin-bottom: 30px;
    display: inline-flex;
    background: rgba(var(--theme-rgb), 0.1);
    padding: 10px 20px;
    border-radius: 5px;
}

.author-container .nav-tabs .nav-link {
    color: #000;
    border-radius: 5px;
}

.author-container .nav-tabs .nav-item.show .nav-link, .author-container .nav-tabs .nav-link.active {
    color: #fff;
    background: rgba(var(--theme-rgb), 0.5);
    box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.26);
}

.author-container .nav-tabs .nav-link:focus, .author-container .nav-tabs .nav-link:hover {
    isolation: isolate;
    border-color: transparent;
}

.package-container {
    padding: 20px 20px;
    border-radius: 16px;
    border: 1px solid var(--border);
}

.author-profile-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.author-profile-card {
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: var(--white);
    height: 100%;
}

.author-profile-card h5 {
    margin-bottom: 16px;
    font-size: 20px;
}

.author-profile-card ul {
    display: grid;
    gap: 12px;
}

.author-profile-card ul li {
    color: var(--black);
    word-break: break-word;
}

.author-profile-card ul li span {
    font-weight: 700;
    color: var(--black);
}

.author-profile-card ul li a {
    color: var(--base);
}

.author-profile-card ul li a:hover {
    color: var(--theme-color-2);
}

@media (max-width: 767px) {
    .author-profile-grid {
        grid-template-columns: 1fr;
    }
}

/*.theme-btn:hover::after {*/
/*    z-index: 1;*/
/*}*/
.package-container .amazing-tour-items .content {
    height: 58%;
}

.author-container .review-comment-items {
    margin-top: 30px;
}

.author-container .tour-details-wrapper .tour-details-items .details-content .review-comment-items {
    padding: 20px;
}

.author-container .tour-details-wrapper .tour-details-items .details-content .review-comment-items ul {
    gap: 30px;
    flex-wrap: wrap;
}

.author-container .tour-details-wrapper .tour-details-items .details-content .review-comment-items ul li .star {
    display: flex;
    gap: 5px;
}

.clinet-box-wrapper {
    overflow-y: auto;
    height: 1200px;
}

.author-container .tour-details-wrapper .tour-details-items .details-content .client-review-items {
    margin-top: 0;
    margin-bottom: 0;
}

.author-container .tour-details-wrapper .tour-details-items .details-content .review-area {
    margin-top: 0;
}

.author-container .tour-details-wrapper .tour-details-items .details-content {
    margin-top: 0;
}

.messageText {
    padding: 50px;
    background: #ededed;
    align-items: center;
    display: flex;
    border-radius: 10px;
    justify-content: center;
    margin-bottom: 7px;
}

/*---------------------------------------------- Author section end ----------------------------------------------*/
.footer-bottom-wrapper .nice-select {
    height: 40px;
    line-height: 40px;
    border-radius: 6px;
    border: 1px solid #ccc;
    padding: 0 35px 0 40px;
    background-color: #fff;
    color: #333;
    font-size: 14px;
    width: auto !important;
}

.footer-bottom-wrapper .nice-select:after {
    border-bottom: 1px solid #6E6E6E;
    border-right: 1px solid #6E6E6E;
    height: 7px;
    margin-top: -3px;
    width: 7px;
}

.footer-lan {
    position: relative;
}

.footer-lan img {
    position: absolute;
    top: 12px;
    left: 15px;
    max-width: 17px;
    width: 100%;
    height: 17px;
}

.footer-bottom-wrapper .nice-select.open ul.list {
    top: -87px !important;
    left: 26px !important;
}

.header-section .header-3 .dash, .header-section .header-3 .login {
    color: #fff !important;
}

.header-4 .header-logo-2 {
    display: none;
}

li.dash.mean-last, li.login.mean-last {
    width: 100%;
    padding: 10px 0;
    color: var(--header);
    font-size: 16px;
    line-height: 1.5;
    font-weight: 700;
}

.nice-select .list {
    height: 400px;
    overflow: auto;
}

.footer-lan .nice-select .list {
    height: 80px;
    overflow: auto;
}

.footer-section.tf-platform-footer {
    background: #2c2c2c;
    color: rgba(255, 255, 255, 0.72);
    padding: 72px 0 0;
}

.footer-section.tf-platform-footer a {
    color: #ffffff;
}

.footer-section.tf-platform-footer a:hover {
    color: #ffffff;
    padding-left: 0;
    opacity: 0.78;
}

.tf-platform-footer .tf-footer-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    padding-bottom: 40px;
}

.tf-platform-footer .tf-footer-socials {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

.tf-platform-footer .tf-footer-socials a {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: background-color .22s ease, border-color .22s ease, transform .22s ease, opacity .22s ease;
}

.tf-platform-footer .tf-footer-socials a:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.28);
}

.tf-platform-footer .tf-footer-newsletter {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
}

.tf-platform-footer .tf-footer-newsletter p {
    margin: 0;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.62);
}

.tf-platform-footer .tf-footer-newsletter-btn,
.tf-platform-footer .tf-footer-submit-btn {
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: #ffffff;
    color: #000000;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 0 24px;
    font-weight: 700;
    transition: transform .22s ease, opacity .22s ease;
}

.tf-platform-footer .tf-footer-newsletter-btn:hover,
.tf-platform-footer .tf-footer-submit-btn:hover {
    transform: translateY(-1px);
    opacity: 0.88;
}

.tf-platform-footer .tf-footer-grid {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding: 44px 0;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) repeat(3, minmax(0, 1fr));
    gap: 32px 40px;
}

.tf-platform-footer .tf-footer-column h3 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 18px;
}

.tf-platform-footer .tf-footer-brand p,
.tf-platform-footer .tf-footer-apps p {
    color: rgba(255, 255, 255, 0.62);
    margin-bottom: 18px;
    max-width: 360px;
}

.tf-platform-footer .footer-logo {
    display: inline-flex;
    margin-bottom: 18px;
}

.tf-platform-footer .footer-logo img {
    max-height: 54px;
    width: auto;
}

.tf-platform-footer .tf-footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tf-platform-footer .tf-footer-contact a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
}

.tf-platform-footer .tf-footer-contact a i {
    width: 18px;
    text-align: center;
}

.tf-platform-footer .list-items {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.tf-platform-footer .list-items li {
    margin: 0;
    font-size: 15px;
    font-weight: 500;
}

.tf-platform-footer .list-items li a {
    color: rgba(255, 255, 255, 0.84);
}

.tf-platform-footer .apps-items {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 0;
}

.tf-platform-footer .apps-items a {
    display: inline-flex;
}

.tf-platform-footer .apps-items img {
    max-height: 54px;
    width: auto;
    border-radius: 10px;
}

.tf-platform-footer .tf-footer-bottom {
    border-top: 0;
    padding: 24px 0 34px;
}

.tf-platform-footer .tf-footer-bottom .footer-bottom-wrapper {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 20px;
    align-items: center;
}

.tf-platform-footer .tf-footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.62);
}

.tf-platform-footer .footer-menu {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.tf-platform-footer .footer-menu li {
    font-size: 15px;
}

.tf-platform-footer .footer-menu li a {
    color: rgba(255, 255, 255, 0.84);
    background-image: none;
}

.tf-platform-footer .footer-lan {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

.tf-platform-footer .footer-lan img {
    position: static;
    width: 40px;
    height: 15px;
    border-radius: 4px;
    object-fit: cover;
}

.tf-platform-footer .footer-lan .nice-select {
    min-width: 88px;
    height: 44px;
    line-height: 42px;
    padding: 0 38px 0 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #ffffff;
    float: none;
}

.tf-platform-footer .footer-lan .nice-select:after {
    border-bottom: 1px solid rgba(255, 255, 255, 0.72);
    border-right: 1px solid rgba(255, 255, 255, 0.72);
}

.tf-platform-footer .footer-lan .nice-select .list {
    background: #2c2c2c;
    color: #ffffff;
    height: auto;
    max-height: 180px;
}

.tf-platform-footer .tf-footer-modal .modal-content {
    background: #ffffff;
    color: #2c2c2c;
    border: 1px solid rgba(44, 44, 44, 0.12);
    border-radius: 20px;
}

.tf-platform-footer .tf-footer-modal .modal-header,
.tf-platform-footer .tf-footer-modal .modal-body {
    padding: 22px 24px;
}

.tf-platform-footer .tf-footer-modal .modal-header {
    border-bottom: 1px solid rgba(44, 44, 44, 0.1);
}

.tf-platform-footer .tf-footer-modal .btn-close {
    opacity: 0.75;
}

.tf-platform-footer .tf-footer-modal .modal-title {
    color: #2c2c2c;
}

.tf-platform-footer .tf-footer-modal .form-label {
    color: rgba(44, 44, 44, 0.82);
    font-weight: 600;
    margin-bottom: 10px;
}

.tf-platform-footer .tf-footer-modal .form-control {
    min-height: 52px;
    background: #ffffff;
    border: 1px solid rgba(44, 44, 44, 0.16);
    color: #2c2c2c;
    border-radius: 14px;
    margin-bottom: 16px;
}

.tf-platform-footer .tf-footer-modal .form-control::placeholder {
    color: rgba(44, 44, 44, 0.45);
}

.tf-platform-footer .tf-footer-submit-btn {
    width: 100%;
}

@media (max-width: 991px) {
    .tf-platform-footer .tf-footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tf-platform-footer .tf-footer-bottom .footer-bottom-wrapper {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }
}

@media (max-width: 767px) {
    .footer-section.tf-platform-footer {
        padding-top: 56px;
    }

    .tf-platform-footer .tf-footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 34px 0;
    }

    .tf-platform-footer .tf-footer-socials {
        gap: 12px;
    }

    .tf-platform-footer .tf-footer-socials a {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }

    .tf-platform-footer .footer-menu {
        justify-content: center;
    }
}

.tf-business-presence {
    padding-top: 120px;
    background: #ffffff;
}

@media (max-width: 1199px) {
    .tf-business-presence {
        padding-top: 100px;
    }
}

@media (max-width: 991px) {
    .tf-business-presence {
        padding-top: 80px;
    }
}

.tf-business-presence__card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
    gap: 28px;
    align-items: center;
    background: linear-gradient(135deg, rgba(38, 150, 190, 0.08), rgba(38, 150, 190, 0.02));
    border: 1px solid rgba(44, 44, 44, 0.08);
    border-radius: 28px;
    padding: 28px;
    box-shadow: 0 20px 60px rgba(44, 44, 44, 0.08);
}

.tf-business-presence__eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(38, 150, 190, 0.12);
    color: #2696be;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.tf-business-presence__content h2 {
    margin-bottom: 14px;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.1;
}

.tf-business-presence__content p {
    max-width: 560px;
    margin-bottom: 24px;
    color: rgba(44, 44, 44, 0.72);
    font-size: 17px;
}

.tf-business-presence__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.tf-business-presence__actions .theme-btn.outline {
    color: #2c2c2c;
}

.tf-business-presence__actions .theme-btn.outline:hover {
    color: #ffffff;
}

.tf-business-presence__map-wrap {
    position: relative;
    min-height: 360px;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(44, 44, 44, 0.12);
}

.tf-business-presence__map-wrap iframe {
    width: 100%;
    height: 100%;
    min-height: 360px;
    border: 0;
}

@media (max-width: 991px) {
    .tf-business-presence__card {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575px) {
    .tf-business-presence__card {
        padding: 22px;
        border-radius: 22px;
    }

    .tf-business-presence__map-wrap,
    .tf-business-presence__map-wrap iframe {
        min-height: 280px;
    }
}

.pagination .page-item.active .page-numbers {
    color: #756565;
}

.pagination .page-item.active .page-numbers:hover {
    color: #fff;
}

/*  RTL  */


.rtl .row,
.rtl .d-flex {
    flex-direction: row-reverse;
}

.rtl .main-header .main-menu .navigation > li {
    float: right;
}

.rtl .main-header .main-menu .navigation > li.dropdown > a {
    padding-right: 0px;
}

.rtl .main-header .main-menu .navigation > li:last-child {
    margin-right: var(--margin-right-55);
}

.rtl .main-header .main-menu .navigation > li.dropdown > a:after {
    right: auto;
    left: 0;
}

.rtl .main-header .main-menu .navigation > li > ul {
    position: absolute;
    right: 0;
}

.rtl .main-header .main-menu .navigation > li > ul > li {
    text-align: right;
}

.rtl .main-header .main-menu .navigation > li > ul > li.dropdown > a:after {
    right: auto;
    left: 0px;
    transform: rotate(180deg);
    top: 2px;
}

.rtl .main-header .main-menu .navigation > li > ul > li > a:before {
    left: auto;
    transform: rotate(145deg);
    right: -7px;
    top: 11px;
}

.rtl .main-header .main-menu .navigation > li > ul > li:hover > a {
    padding-left: 0;
    padding-right: var(--padding-right-20);
}

.rtl .main-header .main-menu .navigation > li > ul > li > ul {
    left: auto;
    right: 100%;
}

.rtl .main-header .main-menu .navigation > li > ul > li > ul > li {
    text-align: right;
}

.rtl .main-header .main-menu .navigation > li > ul > li > ul > li > a:before {
    left: auto;
    transform: rotate(145deg);
    right: -7px;
    top: 11px;
}

.rtl .main-header .main-menu .navigation > li > ul > li > ul > li:hover > a {
    padding-left: 0;
    padding-right: var(--padding-right-20);
}

/* mobile-menu */
.rtl .mobile-menu .navigation {
    text-align: right;
}

.rtl .mobile-menu .navigation li > ul,
.rtl .mobile-menu .navigation li > ul > li > ul {
    padding-left: 0;
    padding-right: 10px;
}

.rtl .mobile-menu .navigation li.dropdown .dropdown-btn:before {
    left: 0;
    right: auto;
}

.rtl .mobile-menu .navigation li.dropdown .dropdown-btn {
    text-align: left;
}

.rtl .mobile-menu .nav-logo {
    text-align: right;
}

.rtl .mobile-menu .search-box .form-group input[type="text"],
.rtl .mobile-menu .search-box .form-group input[type="search"] {
    padding: 10px 20px 10px 50px;
    text-align: right;
}

.rtl .mobile-menu .search-box .form-group button {
    left: 0;
    right: auto;
}

.rtl .mobile-menu .close-btn {
    left: 25px;
    right: auto;
}


/* header upper */
.rtl .header-upper__search {
    flex-direction: row-reverse;
}

.rtl .header-upper__search-text {
    margin-right: 0px;
    margin-left: 20px;
}

.rtl .header-upper__contact-info:before {
    left: -100000px;
    right: 100%;
}

.rtl .header-upper__contact-info {
    padding-left: 0px;
    padding-right: 0px;
    border-radius: 40px;
}

.rtl .header-upper__contact-info li {
    flex-direction: row-reverse;
    text-align: right;
}

.rtl .header-upper__contact-info li .content {
    margin-left: 0;
    margin-right: 15px;
}

.rtl .main-header__cart:before {
    content: "";
    position: absolute;
    top: -18px;
    bottom: -18px;
    left: auto;
    width: 1px;
    background-color: rgba(var(--white-color-rgb), .40);
    right: 0;
}


.rtl .slider-one-nav {
    left: 0;
    right: auto;
}

.rtl .slider-one__content {
    float: right;
    text-align: right;
}

.rtl .bootstrap-select .dropdown-toggle .filter-option {
    text-align: right;
}


.rtl .search-popup .form-group input[type="text"],
.rtl .search-popup .form-group input[type="search"] {
    padding: 10px 75px 10px 30px;
    text-align: right;
}

.rtl .search-popup .form-group input[type="submit"],
.rtl .search-popup .form-group button {
    left: auto;
    right: 0;
}


.rtl .comment-one__content {
    margin-left: 0px;
    margin-right: 30px;
}


.rtl .bootstrap-select .dropdown-menu {
    text-align: right;
}


@media only screen and (min-width: 1200px) and (max-width: 1700px) {


}


/* Medium screen  */
@media only screen and (min-width: 992px) and (max-width: 1199px) {

    .main-header.fixed-header .header-lower {
        position: static !important;
    }


}


/* Tablet Layout: 768px. */
@media only screen and (min-width: 768px) and (max-width: 991px) {

    .main-header.fixed-header .header-lower {
        position: static !important;
    }


}


/* Mobile Layout: 320px. */
@media only screen and (max-width: 767px) {

    .main-header.fixed-header .header-lower {
        position: static !important;
    }

}


/* Sticy Header */
.want-sticky-header .main-header.fixed-header {
    position: relative !important;
    display: none;
}

.rtlSet .cta-app-wrapper .app-image {
    right: 56%;
}

.rtlSet .faq-wrapper .faq-content .faq-image {
    left: auto;
}

.rtlSet .testimonial-box-items-4 .icon {
    right: 83%;
}

.rtlSet .hero-5 .frame-shape {
    left: 88%;
}

.rtlSet .tour-box-items-5 .shape-image {
    right: 56%;
}

.rtlSet .about-wrappper-2 .about-image-2 .percent-shape {
    left: 44%;
}

.header-logo img, .logo img {
    height: 40px !important;
}

.tour-image {
    height: 350px;
}

.tour-wrapper-5 .tour-image {
    height: 229px;
}

.news-box-items-4 .news-img img {
    height: 400px;
}

.tour-box-items .thumb img {
    height: 206px;
}

.news-card-items .news-image img {
    height: 300px !important;
}

.amazing-tour-section .amazing-tour-items .thumb {
    position: relative;
    height: 320px;
}


@media (max-width: 991px) {
    .tour-image {
        height: 275px;
    }

    .news-box-items-4 .news-img img {
        height: 350px;
    }

    .tour-box-items .thumb img {
        height: 190px;
    }

    .news-card-items .news-image img {
        height: 275px;
    }
}

@media (max-width: 768px) {
    .tour-image {
        height: 250px;
    }

    .news-box-items-4 .news-img img {
        height: 300px;
    }

    .tour-box-items .thumb img {
        height: 185px;
    }

    .news-card-items .news-image img {
        height: 250px;
    }
}

.header-section.header-1.header-2.header-3.sticky .header-login .login i {
    color: #000;
}

.footer-logo img {
    height: 40px;
}

.header-main .dropdown-toggle::after {
    display: none !important;
}

.error-section {
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
}

.error-thum img {
    max-width: 100%;
    height: auto;
}

.error-section .error-content {
    color: #26282c;
}

.error-section .error-content .error-info {
    font-size: 40px;
    line-height: 1.3;
}

.tour-details-wrapper .author-sidebar .author-image img {
    height: 124px;
    width: 114px;
}

.transform-none {
    text-transform: none !important;
}

/* Homepage hero + navbar overrides */
header.tf-home-hero-header,
header.tf-home-hero-header.scrolled {
    background: #ffffff !important;
    backdrop-filter: none !important;
    border-bottom: 1px solid rgba(44, 44, 44, 0.08) !important;
    box-shadow: 0 4px 20px rgba(44, 44, 44, 0.06) !important;
}

html[data-theme="dark"] header.tf-home-hero-header,
html[data-theme="dark"] header.tf-home-hero-header.scrolled,
html[data-hs-appearance="dark"] header.tf-home-hero-header,
html[data-hs-appearance="dark"] header.tf-home-hero-header.scrolled,
body.dark header.tf-home-hero-header,
body.dark header.tf-home-hero-header.scrolled {
    background: #2c2c2c !important;
    border-bottom-color: rgba(255, 255, 255, 0.12) !important;
    box-shadow: none !important;
}

header.tf-home-hero-header .tf-theme-toggle {
    display: none !important;
}
header.tf-home-hero-header .header-search,
header.tf-home-hero-header .bnb-search-large,
header.tf-home-hero-header .bnb-search-small {
    display: flex !important;
}

.hero-3,
.hero-4,
.hero-5,
.hero-4 .hero-items,
.hero-3 .container-fluid,
.hero-5 .container-fluid {
    min-height: 100vh !important;
}

.hero-3 .container-fluid,
.hero-4 .hero-items,
.hero-5 .container-fluid {
    display: flex !important;
    align-items: center !important;
}

.hero-4 .hero-items {
    padding-top: 140px !important;
    padding-bottom: 80px !important;
}

.hero-5 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.hero-3 .row,
.hero-5 .row {
    width: 100%;
}

.hero-3 .hero-content,
.hero-4 .hero-items .hero-content,
.hero-5 .hero-content {
    width: 100%;
    max-width: 880px;
    margin: 0 auto !important;
    text-align: center !important;
}

.hero-3 .hero-content p,
.hero-4 .hero-items .hero-content p,
.hero-5 .hero-content p {
    margin-left: auto !important;
    margin-right: auto !important;
}

.hero-3 .hero-content .button-items,
.hero-4 .hero-items .hero-content .button-items,
.hero-5 .hero-content .button-items {
    justify-content: center !important;
}

@media (max-width: 767px) {
    .hero-4 .hero-items {
        padding-top: 120px !important;
        padding-bottom: 48px !important;
    }
}

.tf-transport-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(38, 150, 190, 0.1);
    color: #2696be;
    font-weight: 700;
    font-size: 14px;
}

.tf-home-transport {
    padding: 0 0 80px;
}

.tf-home-transport__card,
.tf-transport-search,
.tf-transport-card,
.tf-transport-panel,
.tf-transport-empty {
    background: #ffffff;
    border: 1px solid #e5edf5;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.06);
}

.tf-home-transport__card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
    padding: 32px;
}

.tf-home-transport__content h3,
.tf-transport-hero h1 {
    font-size: 2rem;
    margin: 12px 0;
}

.tf-home-transport__content p,
.tf-transport-hero p {
    color: #64748b;
    max-width: 720px;
}

.tf-home-transport__actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.tf-transport-page,
.tf-transport-detail {
    background: #ffffff;
}

.tf-transport-hero {
    padding: 24px 0 20px;
}

.tf-transport-search {
    padding: 24px;
    margin-bottom: 30px;
}

.tf-transport-search label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    color: #2c2c2c;
}

.tf-transport-card {
    overflow: hidden;
    height: 100%;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.tf-transport-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 32px 72px rgba(15, 23, 42, 0.13);
}

/* ── Image + Overlay ── */
.tf-transport-card__image {
    display: block;
    height: 230px;
    position: relative;
    overflow: hidden;
}

.tf-transport-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.tf-transport-card:hover .tf-transport-card__image img {
    transform: scale(1.05);
}

.tf-transport-card__image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,22,40,0.72) 0%, transparent 55%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 14px 16px;
}

.tf-transport-card__image-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.tf-transport-img-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.28);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
}

.tf-transport-card__image-title {
    color: #fff;
}

.tf-transport-card__image-title h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 2px;
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
    color: #fff;
}

.tf-transport-card__image-title p {
    font-size: 12px;
    margin: 0;
    opacity: 0.85;
    color: #fff;
}

/* ── Body ── */
.tf-transport-card__body {
    padding: 18px 20px 20px;
}

/* ── Route row ── */
.tf-transport-card__route {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 14px;
    color: #334155;
    font-size: 13.5px;
    font-weight: 500;
}

.tf-transport-card__route i {
    color: #2696be;
    font-size: 13px;
}

.tf-transport-card__route .route-sep {
    color: #94a3b8;
    font-size: 12px;
}

.tf-transport-route-more {
    padding: 2px 8px;
    border-radius: 999px;
    background: #f1f5f9;
    color: #64748b;
    font-size: 11px;
    font-weight: 600;
}

/* ── Amenities ── */
.tf-transport-card__amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 16px;
}

.tf-transport-card__amenities span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    border-radius: 999px;
    background: #f0f9ff;
    border: 1px solid #bae6fd;
    color: #0369a1;
    font-size: 12px;
    font-weight: 500;
}

/* ── Bottom ── */
.tf-transport-card__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding-top: 14px;
    border-top: 1px solid #f1f5f9;
}

.tf-transport-card__price small {
    display: block;
    font-size: 11px;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 1px;
}

.tf-transport-card__price strong {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0f172a;
}

/* ── Legacy compat ── */
.tf-transport-card__top,
.tf-transport-seat,
.tf-transport-meta,
.tf-transport-routes,
.tf-transport-amenities {
    display: none;
}

.tf-transport-empty {
    padding: 60px 20px;
    text-align: center;
}

.tf-transport-detail__head {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: flex-start;
    margin-bottom: 32px;
}

.tf-transport-detail__provider {
    padding: 18px 20px;
    border-radius: 20px;
    background: #f8fafc;
    min-width: 260px;
}

.tf-transport-detail__provider span {
    display: block;
    color: #64748b;
    margin-bottom: 6px;
}

.tf-transport-gallery {
    display: grid;
    gap: 14px;
}

.tf-transport-gallery__main {
    width: 100%;
    height: 420px;
    border-radius: 24px;
    object-fit: cover;
}

.tf-transport-gallery__thumbs {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.tf-transport-gallery__thumbs img {
    width: 100%;
    height: 92px;
    border-radius: 16px;
    object-fit: cover;
}

.tf-transport-panel {
    padding: 24px;
}

.tf-transport-summary {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 14px;
}

.tf-transport-summary li {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    border-bottom: 1px solid #eef2f7;
    padding-bottom: 12px;
}

.tf-transport-summary span {
    color: #64748b;
}

@media (max-width: 991px) {
    .tf-home-transport__card,
    .tf-transport-detail__head {
        flex-direction: column;
    }

    .tf-transport-card__image {
        height: 220px;
    }

    .tf-transport-gallery__main {
        height: 320px;
    }
}

@media (max-width: 767px) {
    .tf-home-transport__card,
    .tf-transport-search,
    .tf-transport-panel,
    .tf-transport-card__body {
        padding: 18px;
    }

    .tf-transport-card__top,
    .tf-transport-card__bottom,
    .tf-transport-summary li {
        flex-direction: column;
    }

    .tf-transport-gallery__thumbs {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
