:root {
  --baseFont: "Outfit", sans-serif;
  --boldFont: 'Inter', sans-serif;
  --primary: #558FFC;
  --primaryDark: #3478f5;
  --white: #fff;
  --textDark: #161618;
  --textBase: #F0F2F7;
  --textLight: #546D7A;
  --textLight2: #C2C2C2;
  --linkHover: #F6822F;
  --rating: #F47321;
  --headerBg: #222222;
  --lightBg: #222222;
  --borderColor: rgba(255,255,255,0.15);
  --darkBg: #161618;
  --transition: 300ms;
  --textMuted: rgba(255,255,255,0.5);
}
body {
  font-family: var(--baseFont);
  color: var(--textBase);
  background-color: var(--darkBg);
  font-size: 18px;
}
ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
img {
  max-width: 100%;
  height: auto;
}
a {
  text-decoration: none;
  color: inherit;
}
h1, h2, h3, h4, h5, h6 {
  color: var(--white);
}
.textPrimary {
  color: var(--primary);
}
.textDark {
  color: var(--textDark);
}
.textBase {
  color: var(--textBase);
}
.textLight {
  color: var(--textLight);
}
.textLight2 {
  color: var(--textLight2);
}
.textRating {
  color: var(--rating);
}
.bgLight {
  background-color: var(--lightBg);
}

/* ===== Scrollbar CSS ===== */
/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--primary) var(--default);
}
/* Chrome, Edge, and Safari */
*::-webkit-scrollbar {
  width: 8px;
}
*::-webkit-scrollbar-track {
  background: var(--default);
}
*::-webkit-scrollbar-thumb {
  background-color: var(--primary);
  border-radius: 0px;
  border: 1px solid var(--default);
}

/* components */
.btn {
  padding: 18px 40px;
  border-radius: 50px;
  font-size: 16px;
  cursor: pointer;
}
.btn.btnSm {
  padding: 14px 25px;
  font-size: 16px;
}
.btnPrimary {
  background-color: var(--primary);
  color: var(--white);
  transition: background-color 300ms;
}
.btnPrimary:hover {
  background-color: var(--primaryDark);
  color: var(--white);
}
.btnLight {
  background-color: var(--white);
  color: var(--textDark);
}
.btnLight:hover {
  background-color: var(--darkBg);
  color: var(--white);
}
.btnOutline {
  border-color: var(--borderColor);
  color: var(--white);
  background-color: transparent;
  transition: background-color var(--transition), color var(--transition);
}
.btnOutline:hover {
  border-color: transparent;
  color: var(--white);
  background-color: var(--primary);
}
.btnOutlineWhite {
  border-color: var(--white);
  color: var(--white);
  background-color: transparent;
  transition: background-color var(--transition), color var(--transition), border-color var(--transition);
}
.btnOutlineWhite:hover {
  border-color: transparent;
  color: var(--white);
  background-color: var(--primaryDark);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.bannerTitle {
  font-size: 112px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: -1.5px;
}
.xxlTitle {
  font-size: 96px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: -1.5px;
}
.xlTitle {
	font-size: 64px;
	line-height: 1.2;
  letter-spacing: -1.5px;
}
.lgTitle {
	font-size: 50px;
	line-height: 1.2;
  letter-spacing: -1.5px;
}
.mdTitle {
	font-size: 28px;
	line-height: 1.2;
}
.mdText {
  font-size: 20px;
}
.fontBase {
  font-size: 16px;
}

/* Header */
header.headerSection {
	padding: 40px 0;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	z-index: 99;
	transition: padding var(--transition);
}
.headerInnerCol {
	background-color: var(--headerBg);
	padding: 10px 10px 10px 30px;
	border-radius: 100px;
	border: 1px solid rgba(255,255,255,0.2);
}
.menuColMain {
  display: flex;
  justify-content: center;
  --radius: 50px;
}
.navItems {
  display: flex;
  column-gap: 50px;
  position: relative;
  z-index: 5;
  color: var(--white);
  font-size: 16px;
}
.navItems > li {
  position: relative;
}
.navItem {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	position: relative;
	padding: 15px 5px;
}
.navArrow {
  width: 12px;
}
.navDDMenu {
	background-color: var(--white);
	padding: 10px 0;
  transition: opacity var(--transition), transform var(--transition);
}
.navItems a {
  transition: color var(--transition);
}
.navItems li:hover > a:not(.btn), .navItems a.active {
  color: var(--linkHover);
}
.navDropdownLink {
	display: block;
	padding: 6px 20px;
	/* font-size: 15px; */
}
.navDropdownLink:hover {
	color: var(--primary);
}
.toggle {
	cursor: pointer;
}
.menuToggle {
  position: relative;
  width: 26px;
  height: 18px;
  margin-left: auto;
}
.menuToggle > a {
  display: block;
  width: 100%;
  height: 100%;
}
.menuToggle > a > span {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  width: 100%;
  background-color: var(--white);
  border-radius: 20px;
  transition: all 300ms ease-in-out 0s;
}
.menuToggle > a > span:nth-child(2) {
  top: 8px;
}
.menuToggle > a > span:last-child {
  bottom: 0;
  top: auto;
}
.actNav .menuToggle > a > span:nth-child(1) {
  transform: rotate(135deg);
  top: 8px;
}
.actNav .menuToggle > a > span:nth-child(2) {
  opacity: 0;
  transform: translateX(-25px);
}
.actNav .menuToggle > a > span:nth-child(3) {
  transform: rotate(-135deg);
  bottom: 8px;
}
.menuBackDrop {
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: all 800ms ease-in-out 0s;
	z-index: 9;
	background-color: rgba(19, 15, 38, 0.5);
	backdrop-filter: blur(2px);
}

/* Hero Section */
.homeBanner {
  background-color: var(--textDark);
  color: var(--white);
  background-image: url('../images/home-banner-bg.webp');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
	padding: 162px 0 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
}
.homeBannerContent {
  max-width: 1100px;
  text-align: center;
}
.bannerBtns {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	row-gap: 10px;
	column-gap: 20px;
}




.sectionSpace {
  padding: 120px 0;
}
.centerTitleCol {
	margin: 0 auto;
	text-align: center;
	max-width: 800px;
	margin-bottom: 60px;
}
.filterBtnsCol {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-x: auto;
  white-space: nowrap;
}
.btn-filter {
	border: 1px solid var(--borderColor);
	padding: 10px 40px;
	font-size: 16px;
	border-radius: 30px;
	background-color: transparent;
	color: white;
}
.btn-filter:hover {
	background-color: var(--lightBg);
}
.btn-filter.active {
	color: var(--textDark);
	background-color: white;
	border-color: transparent;
}
.tourCard {
	background-color: var(--lightBg);
	border-radius: 30px;
	padding: 22px;
	position: relative;
	overflow: hidden;
  border: 1px solid var(--borderColor);
}
.fullCardLink {
	position: absolute;
	inset: 0;
	z-index: 2;
}
.tourMedia {
	position: relative;
  border-radius: 20px;
  overflow: hidden;
}
.tourImg {
  display: block;
  width: 100%;
  aspect-ratio: 1/0.59;
  object-fit: cover;
  transition: transform 800ms;
}
.tourCard:hover .tourImg {
  transform: scale(1.1);
}
.tourCard:hover .btnOutline {
  border-color: transparent;
  color: var(--white);
  background-color: var(--primary);
}
.badgePill {
	position: absolute;
	left: 10px;
	bottom: 18px;
	padding: 10px 20px;
	display: flex;
	align-items: center;
	column-gap: 5px;
	background-color: var(--white);
	border-radius: 30px;
	font-size: 16px;
	color: var(--textDark);
}
.tourCardContent {
	padding-top: 20px;
	display: flex;
	flex-direction: column;
	row-gap: 10px;
}
.tcSmText {
	font-size: 16px;
	font-weight: 500;
}
.tcSmText svg {
	display: block;
}
.tourTitle {
  font-size: 28px;
  font-weight: 600;
}
.isHidden{ 
  display: none !important; 
}

.cardStyle1 {
	display: flex;
	flex-direction: column;
	row-gap: 20px;
}
.cs1ImgCol img {
	width: 100%;
	aspect-ratio: 10/7;
	border-radius: 20px;
  object-fit: cover;
}
.cs1Title {
	font-size: 28px;
	font-weight: 600;
	margin-bottom: 15px;
}

.dcIconCol > span {
	display: inline-flex;
	--size: 66px;
	width: var(--size);
	height: var(--size);
	align-items: center;
	justify-content: center;
	background-color: var(--primary);
	color: white;
	border-radius: 50%;
}
.dcIconCol > span > svg {
	display: block;
  width: 40px;
  height: auto;
}
.dealContentCol {
	max-width: 490px;
	display: flex;
	flex-direction: column;
	row-gap: 16px;
}
.dealContentCol .lgTitle {
  margin-bottom: 0;
}
.dealImgCard img {
	aspect-ratio: 14/10;
	width: 100%;
	object-fit: cover;
	border-radius: 20px;
	max-width: 640px;
}
.dcRow + .dcRow {
  margin-top: 70px;
}
.gallerySlider .swiper-wrapper {
	transition-timing-function: linear !important;
}
.gallerySlider .swiper-slide {
	width: auto;
}
.gSmSlide {
	aspect-ratio: 354/250;
  width: 354px;
}
.gLgSlide {
  aspect-ratio: 800/540;
  width: 800px;
}
.gSmSlide img, .gLgSlide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
  border-radius: 20px;
}
.gallerySmSlides {
	display: flex;
	flex-direction: column;
	row-gap: 40px;
}

.testimonialSwiper {
  padding-left: 40px;
}
.testimonialSwiper .swiper-slide {
  width: auto;
}
.testimonialCard {
	width: 595px;
	border: 1px solid var(--borderColor);
	padding: 35px 25px;
	border-radius: 20px;
  background-color: var(--lightBg);
}
.tsNavigation {
	display: flex;
	align-items: center;
	justify-content: center;
	column-gap: 10px;
	padding-top: 50px;
}
.tsNavigation > span {
	cursor: pointer;
	display: block;
}
.tsNavigation > span.swiper-button-disabled {
  cursor: not-allowed;
}
.ratingCol {
  display: flex;
  gap: 4px;
}
.testimonialCard .blockquote {
	font-size: 18px;
	padding: 20px 0 30px;
	margin: 0;
}
.testimonialCard .blockquote-footer::before {
	display: none;
}
.testimonialCard .blockquote-footer {
	display: flex;
	align-items: center;
	column-gap: 14px;
	margin: 0;
}
.testimonialAvatar {
	--size: 54px;
	width: var(--size);
	height: var(--size);
	border-radius: 50%;
	object-fit: cover;
}
.authorName {
	display: block;
	line-height: 1.3;
	font-weight: 500;
}
.authorInfo cite {
	font-style: initial;
}
.authorInfo {
	color: var(--textBase);
}

.startJourneySection {
  aspect-ratio: 10/6;
  background-color: #01406d;
  background-image: url('../images/start-journey-bg.webp');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  color: var(--white);
}
.sJourneyContent {
  display: flex;
  align-items: center;
  height: 100%;
}
.sjContentInner {
	width: 100%;
	text-align: center;
}

.trustedTP_imgCol {
	text-align: center;
}
.trustedTP_imgCol img {
	aspect-ratio: 10/7;
	width: 100%;
	object-fit: cover;
	border-radius: 20px;
	max-width: 640px;
}

.trustedContentCol {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: 100%;
	max-width: 540px;
	margin: 0 auto;
}
.stats {
  display: flex;
  gap: 30px;
}
.statValue {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
}

.ctaSection {
  margin-left: auto;
  margin-right: auto;
  max-width: 1140px;
	padding: 170px 30px;
  background-color: var(--textLight);
  color: var(--white);
  background-image: url('../images/cta-section-bg.webp');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  border-radius: 40px;
  position: relative;
  overflow: hidden;
}
.ctaSection::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0,0,0,0.4);
}
.ctaInnerContent {
	text-align: center;
	max-width: 600px;
	margin: 0 auto;
  position: relative;
  z-index: 2;
}




/* Footer Section */
.footerSection {
  background-color: var(--darkBg);
  color: #BFC3C9;
  font-size: 16px;
}
.footerTopCol {
  padding: 100px 0;
}
.footerAboutCol {
  width: 324px;
}
.footerTitle {
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 24px;
}
.footerMenu, .footerContact {
	display: flex;
	flex-direction: column;
	row-gap: 16px;
}
.footerBtmCol {
  padding: 80px 0;
  border-top: 1px solid #363636;
}
.footerBtmLinks {
	display: flex;
	column-gap: 20px;
	row-gap: 10px;
}
.footerSection a {
  transition: color var(--transition) ease-in-out 0s;
}
.footerSection a:hover {
  color: var(--linkHover);
}


/* Travel Detail page start */
.innerPageBanner {
  padding: 222px 0 60px;
}
.bannerContent {
  max-width: 710px;
  text-align: center;
}
.bulletStyle .swiper-pagination-bullet {
	background-color: var(--darkBg);
	border: 2px solid white;
	--size: 18px;
	width: var(--size);
	height: var(--size);
	opacity: 0.8;
}
.bulletStyle .swiper-pagination-bullet.swiper-pagination-bullet-active {
	background-color: var(--primary);
  opacity: 1;
}
.tourSwiper {
	border-radius: 50px;
}
.activitySbCol {
  align-self: flex-start;
  position: sticky;
  top: 10px;
}
.activitySidebar {
	width: 500px;
	padding: 30px;
	background-color: var(--lightBg);
	border-radius: 30px;
  margin-left: 30px;
}
.activityIcon {
  width: 30px;
  height: auto;
}
.actOptions {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
.actSmTitle {
	font-size: inherit;
	margin: 0;
}
.actOptions p:last-child {
  margin-bottom: 0;
}
.accordion.accordionStyle {
  --radius: 50px;
  --bs-accordion-bg: transparent;
  --bs-accordion-border-width: 0;
  --bs-accordion-color: var(--textBase);
  --bs-accordion-btn-color: var(--textBase);
	--bs-accordion-btn-bg: var(--lightBg);
  --bs-accordion-active-color: white;
	--bs-accordion-active-bg: var(--primary);
  --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%2356575C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  --bs-accordion-body-padding-x: 0;
}
.accordion.accordionStyle .accordion-item > .accordion-header .accordion-button {
	border-radius: var(--radius);
	font-size: 18px;
	font-weight: 500;
	border: 1px solid var(--borderColor);
}
.accordionStyle > .accordion-item + .accordion-item {
	margin-top: 20px;
}
.tripTopOptions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 10px;
  column-gap: 25px;
}
.tripTopOptions > li {
	display: flex;
	align-items: center;
	gap: 10px;
}
.optionIcon svg {
	display: block;
	width: 26px;
	height: 27px;
}
.tourStepCard {
	padding: 15px 20px;
	border-radius: 10px;
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
	background-color: var(--lightBg);
	border: 1px solid var(--borderColor);
}
.tourStepCard + .tourStepCard {
  margin-top: 30px;
}
.tourStepCard b {
	font-family: var(--boldFont);
	font-weight: 700;
}
.tourLeftContent .mdTitle {
  font-weight: 600;
}
.tsCardTitleCol {
  margin-bottom: 20px;
}
.tsCardIcon svg {
	display: block;
	width: 40px;
	height: auto;
}
.tourStepCard p {
  margin-bottom: 14px;
  line-height: 1.4;
}
.tourStepCard p:last-child {
  margin-bottom: 0;
}
.timeBadges {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 8px;
  row-gap: 6px;
}
.timeBadge {
	font-size: 14px;
	font-weight: 500;
	line-height: 1.3;
	padding: 5px 10px;
	background-color: var(--lightBg);
	border-radius: 20px;
	display: inline-flex;
	border: 1px solid #BFC3C9;
}
.tourStepCard + .stepsNextRow, .stepsNextRow + .stepsNextRow {
  margin-top: 50px;
}
.includedlist > li, .excludedList > li {
  position: relative;
  padding-left: 34px;
  min-height: 24px;
}
.includedlist > li + li, .excludedList > li + li {
  margin-top: 10px;
}
.includedlist > li::before, .excludedList > li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  --size: 20px;
  width: var(--size);
  height: var(--size);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}
.includedlist > li::before {
  background-image: url('../images/check-list-icon.svg');
}
.excludedList > li::before {
  background-image: url('../images/cross-list-icon.svg');
}
.stepsNextRow .mdTitle {
  margin-bottom: 20px;
}
.contact-item {
  width: fit-content;
}
.contact-item.whatsapp {
	background: var(--lightBg);
	padding: 10px 30px 10px 10px;
	border-radius: 30px;
	border: 1px solid var(--borderColor);
}
.checkAvailabilityCol {
	margin-top: 40px;
	padding: 30px;
	background-color: var(--lightBg);
	border: 1px solid var(--borderColor);
	border-radius: 20px;
}

a.underline {
	text-decoration: underline;
}
.bk-field{
  position: relative;
}
.bk-trigger {
	width: 100%;
	border: 1px solid var(--borderColor);
	background: var(--lightBg);
	border-radius: 999px;
	padding: 16px 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	cursor: pointer;
	text-align: left;
	color: var(--textBase);
}
.bk-ico{
  display: flex;
}
.bk-val{
  flex: 1;
  font-weight: 500;
}
.bk-chev {
	color: var(--textBase);
	opacity: 0.4;
}
.bk-menu {
	position: absolute;
	left: 10px;
	right: 10px;
	top: calc(100% + 8px);
	background: var(--lightBg);
	border: 1px solid var(--borderColor);
	border-radius: 16px;
	padding: 6px;
	display: none;
	z-index: 50;
}
.bk-menu.is-open{ display:block; }
.bk-item {
  width:100%;
  border:0;
  background-color:transparent;
  padding: 12px 12px;
  border-radius: 12px;
  cursor:pointer;
  font-size: 14px;
  text-align:left;
  color: var(--textBase);
}
.bk-item:hover { 
  background-color: rgba(255,255,255,0.05); 
}
/* Calendar */
.bk-cal{
  position:absolute;
  left: 10px;
  right: 10px;
  top: calc(100% + 8px);
  background:var(--lightBg);
  border:1px solid var(--borderColor);
  border-radius: 16px;
  padding: 10px 10px 12px;
  display:none;
  z-index: 60;
}
.bk-cal.is-open{ display:block; }
.bk-calHead{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:8px;
  padding: 6px 2px 10px;
}
.bk-calTitle{ font-weight: 700; }
.bk-calNav {
	width: 38px;
	height: 38px;
	border-radius: 12px;
	border: 1px solid var(--borderColor);
	background-color: var(--lightBg);
	cursor: pointer;
	display: grid;
	place-items: center;
	color: var(--textBase);
}
.bk-calNav:hover{ 
  background-color: rgba(255,255,255,0.1);  
}
.bk-dowRow{
  display:grid;
  grid-template-columns: repeat(7, 1fr);
  gap:6px;
  padding: 0 2px 6px;
}
.bk-dow{
  font-size: 12px;
  color: var(--textMuted);
  text-align:center;
  padding: 6px 0;
}
.bk-days{
  display:grid;
  grid-template-columns: repeat(7, 1fr);
  gap:6px;
  padding: 0 2px 2px;
}
.bk-day {
	border: 1px solid var(--borderColor);
	background: rgba(255,255,255,0.05);
	border-radius: 12px;
	height: 38px;
	cursor: pointer;
	font-size: 13px;
	color: var(--textBase);
}
.bk-day:hover{ 
  background: rgba(255,255,255,0.1);
}
.bk-day.is-muted{
  opacity:.35;
  cursor: default;
}
.bk-day.is-selected{
  border-color: rgba(79,141,247,.6);
  box-shadow: 0 0 0 3px rgba(79,141,247,.18);
  font-weight: 700;
}

.dlInnerCol {
  padding: 30px;
  border: 1px solid var(--borderColor);
  border-bottom-color: transparent;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  background-color: var(--lightBg);
}
.dlBtmCol {
  background-color: #424242;
  padding: 20px;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}
.dlBtmCol p {
  color: #C2C2C2;
  margin-bottom: 5px;
}
.dlBtns {
	display: flex;
	column-gap: 10px;
}
.dlBtns .btnOutline {
  border-color: var(--white);
}
.dlBtns .btnOutline:hover {
  border-color: var(--primary);
}

/* Tour page */
.tourBannerContent {
  max-width: 1080px;
  text-align: center;
}
/*   /Tour page */


@media (min-width: 992px) {
  .navDDMenu {
    position: absolute;
    background-color: var(--lightBg);
    min-width: 200px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    top: 100%;
    transform: translateY(10px);
    transition: opacity var(--transition), transform var(--transition);
    opacity: 0;
    border-radius: 8px;
    pointer-events: none;
  }
  .navItems > li:hover .navDDMenu {
    opacity: 1;
    pointer-events: initial;
    transform: translateY(0);
  }
}
@media (min-width:1200px) {
  .dcRow:nth-child(2n) {
    flex-direction: row-reverse;
  }
  .dcRow:nth-child(2n - 1) .dealContentCol {
    margin: 0 auto;
  }
}

@media (max-width: 1399px) {
  .bannerTitle {
    font-size: 90px;
  }
  .xxlTitle {
    font-size: 50px;
  }
  .xlTitle {
    font-size: 50px;
  }
  .lgTitle {
    font-size: 44px;
  }
  .mdTitle {
    font-size: 24px;
  }
  .tourCard {
    padding: 16px;
  }
  .tourTitle {
    font-size: 24px;
  }
  .centerTitleCol {
    margin-bottom: 50px;
  }

  .footerTopCol {
    padding: 70px 0 60px;
  }
  .footerBtmCol {
    padding: 40px 0 50px;
  }

  .activitySidebar {
    width: 440px;
    padding: 30px 20px;
    border-radius: 20px;
    margin-left: 10px;
  }
  .checkAvailabilityCol, .dlInnerCol {
    padding: 20px;
  }
  .tsCardIcon svg {
    width: 30px;
    height: 32px;
  }
}
@media (max-width:1199px) {
  .xlTitle {
    font-size: 48px;
  }  
  .lgTitle {
    font-size: 36px;
  }
  header.headerSection {
    padding: 24px 0;
  }
  .btn {
    padding: 14px 30px;
    font-size: 15px;
  }
  .footerAboutCol {
    width: 274px;
  }
  .footerMenu, .footerContact {
    row-gap: 12px;
  }
  .footerTitle {
    margin-bottom: 16px;
  }
  .dcRow + .dcRow {
    margin-top: 30px;
  }
  .sectionSpace {
    padding: 80px 0;
  }
  .centerTitleCol {
    margin-bottom: 40px;
  }
  .bannerTitle {
    font-size: 50px;
    line-height: 1.3;
  }
  .navItems {
    column-gap: 30px;
  }
  .dealImgCard, .dealContentCol {
    text-align: center;
  }
  .dealContentCol {
    max-width: 100%;
  }
  .gallerySmSlides {
    row-gap: 20px;
  }
  .gSmSlide {
    aspect-ratio: 354/250;
    width: 272px;
  }
  .gLgSlide {
    aspect-ratio: 800/540;
    width: 600px;
  }
  .gSmSlide {
    aspect-ratio: 354/250;
    width: 270px;
  }
  .activitySidebar {
    width: 380px;
    padding: 24px 16px;
    border-radius: 10px;
    margin-left: 0px;
  }
  .innerPageBanner {
    padding: 170px 0 40px;
  }
  .trevalDetailImgCol img {
    border-radius: 30px;
  }
}
@media (max-width: 991px) {
  .mdTitle {
    font-size: 22px;
  }
  .headerInnerCol {
    padding: 20px 24px;
    position: relative;
  }
  html.actNav {
    overflow: hidden;
  }
  .menuColMain {
    display: block;
    position: absolute;
    left: 0;
    top: calc(100% + 24px);
    opacity: 0;
    pointer-events: none;
    width: 100%;
    z-index: 99;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2);
    justify-content: initial;
    border-radius: 8px;
    transition: opacity var(--transition), top var(--transition);
  }
  .actNav .menuColMain {
    top: calc(100% + 4px);
    opacity: 1;
    pointer-events: initial;
  }
  .actNav .menuBackDrop {
    opacity: 1;
    visibility: visible;
    pointer-events: initial;
  }
  .navItems > li {
    width: 100%;
  }
  .menuColMain {
    --radius: 0px;
    padding: 16px 24px 20px;
  }
  .menuColMain {
    background-color: var(--darkBg);
    border: 1px solid var(--borderColor);
  }
  .navDDMenu {
    background-color: transparent;
    padding: 0;
  }
  .navDropdownLink {
    padding: 6px 0px;
  }
  .navMain {
    height: 100%;
    overflow-y: auto;
    border: none;
    padding: 20px;
    border-right: 2px solid rgba(0,0,0,0.05);
  }
  .navItem {
    font-size: 16px;
    padding: 5px 0;
  }

  .footerBtmCol {
    font-size: 15px;
  }
  .footerAboutCol {
    width: 100%;
  }

  .tourCard {
    padding: 16px;
  }
  .btn-filter {
    padding: 8px 20px;
  }
  .testimonialCard {
    width: 500px;
  }
  .gLgSlide {
    aspect-ratio: 600/600;
    width: 400px;
  }
  .activitySbCol {
    align-self: initial;
    position: static;
    top: 10px;
  }
  .activitySidebar {
    width: 100%;
  }
  .innerPageBanner {
    padding: 140px 0 40px;
  }
  .tourStepCard {
    padding: 16px;
  }
  .checkAvailabilityCol {
    margin-top: 30px;
  }
  .tsCardTitleCol {
    margin-bottom: 10px;
  }
}
@media (min-width:768px) and (max-width: 991px) {
  .footerBtmCol .container {
    max-width: 740px;
  }
  .footerBtmLinks {
    column-gap: 15px;
  }
}
@media (max-width: 767px) {
  header.headerSection {
    padding: 10px 0;
    position: fixed;
  }
  header.headerSection > .container {
    padding-left: 5px;
    padding-right: 5px;
  }
  .headerInnerCol {
    padding: 20px 20px;
  }
  .bannerTitle {
    font-size: 38px;
  }
  .xxlTitle {
    font-size: 36px;
  }
  .xlTitle {
    font-size: 32px;
  }
  .bannerBtns {
    column-gap: 10px;
  }
  .footerSection {
    text-align: center;
  }
  .footerBtmLinks {
    justify-content: center;
  }
  .dcIconCol > span {
    --size: 52px;
  }
  .dcIconCol > span > svg {
    width: 32px;
  }
  .homeBanner {
    padding: 120px 0 50px;
    min-height: 630px;
  }
  .btn-filter {
    padding: 6px 14px;
    font-size: 14px;
  }
  .gLgSlide {
    aspect-ratio: 400/462;
    width: 340px;
  }
  .gSmSlide {
    aspect-ratio: 354/300;
    width: 220px;
  }
  .innerPageBanner {
    padding: 100px 0 20px;
  }
  .trevalDetailImgCol img {
    border-radius: 20px;
  }
  .checkAvailabilityCol, .dlInnerCol {
    padding: 20px 15px;
  }
  .whatsapp img {
    width: 36px;
    height: auto;
  }
  .contact-item.whatsapp {
    padding: 6px 20px 6px 6px;
  }
  .ctaSection {
    border-radius: 20px;
  }
}
@media (max-width: 575px){
  .bannerTitle {
    font-size: 36px;
  }
  .tourTitle {
    font-size: 22px;
  }
  .lgTitle {
    font-size: 30px;
  }
  .logo {
    width: 200px;
  }
  .footerSection {
    text-align: center;
  }
  .footerTitle {
    margin-bottom: 14px;
  }
  .footerMenu, .footerContact {
    row-gap: 8px;
  }
  .footerMenuCol {
    padding: 10px 0;
  }
  .footerTopCol {
    padding: 50px 0 0px;
  }
  .footerBtmCol {
    padding: 20px 0 30px;
    border: none;
  }
  .footerBtmLinks {
    flex-direction: column;
    justify-content: center;
  }
  .startJourneySection {
    aspect-ratio: 10/14;
  }
  .filterBtnsCol {
    justify-content: initial;
    padding-bottom: 8px;
  }
  .btn-filter {
    width: 100%;
  }
  .testimonialCard {
    width: 100%;
  }
  .testimonialSwiper {
    padding-left: 15px;
  }
  .testimonialCard {
    padding: 25px 15px;
  }
}