#page-home {
	overflow-x: hidden;
	overflow-y: hidden;
}

.ajax-loading {
	position: fixed;
	inset: 0;
	background: rgba(255, 255, 255, 0.6);
	display: none;
	align-items: center;
	justify-content: center;
	z-index: 9999;
}

.header-top {
	background: rgba(224, 9, 45, 1);
	color: #FFF;
	font-size: 14px;
	padding: 5px 0;
}

.header-top a {
	color: #FFF;
}

.header-top .right {
	display: flex;
	align-items: center;
	justify-content: right;
}

.banner-category img{
	width: 100%;
}

.spinner {
	width: 48px;
	height: 48px;
	border: 4px solid #ddd;
	border-top: 4px solid #3498db;
	border-radius: 50%;
	animation: spin 0.8s linear infinite;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}


.hero__wrap {}

.hero__wrap:hover .slick-arrow {
	opacity: 1
}

.pagination {
	margin-top: 30px;
	display: flex;
	justify-content: center;
}

.hero__wrap .slick-prev {
	left: 15px;
}

.hero__wrap .slick-next {
	right: 15px;
}

.hero__wrap .slick-arrow {
	background: linear-gradient(90deg, rgba(181, 2, 32, 1) 0%, rgba(224, 9, 45, 1) 50%, rgba(250, 15, 54, 1) 100%);
	width: 35px;
	height: 35px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center
}

.hero__wrap .slick-arrow svg {
	width: 20px;
	height: 20px;
	fill: #fff
}

.hero__media {
	/* aspect-ratio: 1440 / 600; */
}

.hero__media img {
	width: 100%;
	/* height: calc(100vh - 20px); */
	object-fit: cover;
}

header.header.header-container-box {
	position: unset;
	width: 100%;
	top: 20px;
	z-index: 10;
}

section.hero {
	position: relative;
}

/* section.hero:before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, rgb(0 0 0) 0%, rgb(0 0 0 / 33%) 50%, rgb(0 0 0 / 0%) 100%);
	z-index: 9;
} */
.hero__media:before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, rgb(0 0 0) 0%, rgb(0 0 0 / 33%) 50%, rgb(0 0 0 / 0%) 100%);
	z-index: 1;
}

figure.hero__media {
	position: relative;
	z-index: 1;
}

figure.hero__media picture {
	display: block;
}

figcaption.hero__content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 9;
	text-align: center;
}

figcaption.hero__content {
	color: #fff;
}

figcaption.hero__content h2 {
	font-family: 'Trip Sans', sans-serif;
	font-weight: 200;
	font-size: 3.2rem;
	text-shadow: 2px 2px black;
	margin-bottom: 15px;
}

.hero__subtitle {
	width: 80%;
	margin: 0 auto;
	font-size: 17px;
}

.hero-section {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	/* z-index: 9999; */
	background: #fff;
	/* padding: 10px 26px 0px; */
	width: 88px;
	height: 50px;
	border-radius: 50px 50px 0px 0px;
}

.scroll-indicator {
	padding: 0;
	width: 40px;
	height: 40px;
	font-size: 13px;
	border: 1px solid #000;
	border-radius: 25px;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
	animation: bounce2 2s infinite;
	position: absolute;
	top: calc(50% + 10px);
	left: 50%;
	transform: translate(-50%, -50%);
}

.scroll-indicator svg {
	width: 32px;
	height: 32px;
	animation: arrowMove 1.5s infinite;
}

/* Bounce Animation */
@keyframes bounce2 {

	0%,
	20%,
	50%,
	80%,
	100% {
		bottom: 40px;
	}

	40% {
		bottom: 50px;
	}

	60% {
		bottom: 45px;
	}
}

/* Arrow Move Animation */
@keyframes arrowMove {

	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(5px);
	}
}

/* Pulse Effect */
.scroll-indicator::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	border: 2px solid #e22f2a;
	animation: pulseee 2s infinite;
}

@keyframes pulseee {
	0% {
		transform: scale(1);
		opacity: 1;
	}

	100% {
		transform: scale(1.5);
		opacity: 0;
	}
}

span.visually-hidden svg {
	height: 22px;
	width: 18px;
}

#about-us {
	scroll-margin-top: 100px;
	background: #f5f5f5;
	padding: 0 0 20px 0;
}

section.tours-section .inner {
	max-width: 1800px;
	margin: 0 auto;
}

section.tours-section .intro-section h2 {
	font-size: 3.2rem;
	text-align: center;
	font-family: 'Trip Sans', sans-serif;
	color: rgb(177, 0, 29);
	font-weight: 100;
	margin-bottom: 12px;
	text-transform: uppercase;
}

section.tours-section .intro-section {
	padding: 40px 0px;
}

section.tours-section .intro-section .intro-text {
	width: 100%;
	text-align: center;
	margin: 0 auto;
	font-weight: 400;
	font-size: 16px;
}

section.tours-section .tours-grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 0px 20px;
	margin-bottom: 45px;
}

section.tours-section article.tour-card {
	margin-bottom: 20px;
	border: solid 2px #d0d0d0;
	/* display: flex; */
	background: #fff;
	/* gap: 0px 20px; */
}

section.tours-section .tour-image-wrapper {
	border-radius: 0;
	overflow: hidden;
	/* border: 1px dashed #f00; */
	/* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); */
	padding: 0;
}

section.tours-section .box-tourd-grid {
	flex: 1;
	padding: 0 10px 10px 10px;
}

section.tours-section .box-tourd-grid h2 {
	color: rgb(177, 0, 29);
	margin-bottom: 5px;
	margin-top: 10px;
	padding-bottom: 5px;
	font-size: 20px;
	border-bottom: solid 1px #e6e6e6;
}

section.tours-section .box-tourd-grid p {
	font-size: 17px;
	font-weight: 600;
	border-bottom: solid 1px #e6e6e6;
}

section.tours-section .box-tourd-grid p span {
	font-size: 20px;
	font-weight: 600;
	color: #b01030;
}

section.tours-section .box-tourd-grid ul li svg {
	width: 25px;
	margin-right: 5px;
}

section.tours-section .box-tourd-grid ul {
	margin: 10px 0;
}

section.tours-section .box-tourd-grid ul li {
	display: flex;
	align-items: center;
	padding-bottom: 5px;
	font-weight: 400;
	font-size: 16px;
}

section.tours-section .box-tourd-grid ul li span {
	font-weight: 600;
	font-size: 18px;
	margin-left: 5px;
}

section.tours-section .cta-section .btn-about {
	padding: 10px 40px;
	display: inline-block;
	border-radius: 25px;
	margin-bottom: 20px;
	background: linear-gradient(90deg, rgba(181, 2, 32, 1) 0%, rgba(224, 9, 45, 1) 50%, rgba(250, 15, 54, 1) 100%);
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	text-shadow: rgba(0, 0, 0, 0.76) 1px 1px 0px;
}

section.tours-section .cta-section {
	text-align: center;
	margin-top: 20px;
}

section.tours-section .tour-image-wrapper img {
	width: 100%;
	height: 290px;
}


section.box-tours-upcoming .tours {
	position: relative;
	display: grid;
	grid-template-columns: 1fr minmax(320px, 352px) 1fr;
	gap: 24px;
	align-items: center;
	isolation: isolate;
}

/* Center artwork */
section.box-tours-upcoming .center-art {
	position: relative;
	border-radius: 24px;
	overflow: hidden;
}

section.box-tours-upcoming .center-art img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: contrast(1.05) saturate(1.05);
	transform: scale(1.02);
}

section.box-tours-upcoming .center-art .text {
	font-size: 26px;
	font-family: 'Trip Sans', sans-serif;
	color: rgb(177, 0, 29);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	/* -webkit-text-stroke: 2px rgb(255, 255, 255); */
	font-weight: 500;
	text-shadow:
		-2px -2px 0 #fff,
		2px -2px 0 #fff,
		-2px 2px 0 #fff,
		2px 2px 0 #fff,
		-3px 0px 0 #fff,
		3px 0px 0 #fff,
		0px -3px 0 #fff,
		0px 3px 0 #fff;
}

/* brush mask (hiá»‡u á»©ng giá»‘ng hÃ¬nh) */



/* LISTS (left / right) */
section.box-tours-upcoming .tours-col {
	display: flex;
	flex-direction: column;
	gap: 74px;
}

/* Item */
section.box-tours-upcoming .tour-item {
	list-style: none;
}

ul.tours-col.right li {
	position: relative;
	left: -50px;
}

ul.tours-col.left li {
	position: relative;
	left: 50px;
}

ul.tours-col.left {
	padding-left: 20px;
}

ul.tours-col.right {
	padding-right: 20px;
}

section.box-tours-upcoming .tour-link {
	display: flex;
	align-items: center;
	gap: 18px;
	border-radius: 89px;
	padding: 15px 22px 15px 28px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, .12);
	will-change: transform;
	outline-offset: 4px;
	background: linear-gradient(90deg, rgba(209, 209, 209, 1) 0%, rgba(222, 222, 222, 1) 50%, rgba(247, 247, 247, 1) 100%);
}

section.box-tours-upcoming .tour-link:hover {
	transform: translateY(-3px)
}

section.box-tours-upcoming .tour-link:focus-visible {
	box-shadow: 0 0 0 4px #cde1ff
}

section.box-tours-upcoming .tour-title {
	font-weight: 800;
	color: var(--text);
	letter-spacing: .2px;
	font-size: 17px;
	line-height: 1.0;
}

section.box-tours-upcoming .tour-meta {
	font-size: 13px;
	color: var(--muted)
}

/* Avatar trÃ²n giá»‘ng mock */
.tour-thumb {
	margin-left: auto;
	/* Ä‘áº©y sang mÃ©p giá»‘ng hÃ¬nh */
	width: 120px;
	height: 120px;
	flex: 0 0 110px;
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 4px 18px rgba(0, 0, 0, .16);
	position: absolute;
	right: 0;
	transition: all .3s;
}

.tour-thumb:hover {
	transform: scale(1.09);
}

section.box-tours-upcoming .tour-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 50%;
	border: 6px solid #fff;
	outline: 1px dashed #f00;
	outline-offset: 4px;
}

/* So le trÃ¡i/pháº£i cho giá»‘ng áº£nh */
section.box-tours-upcoming .left .tour-link {
	justify-content: flex-start
}

section.box-tours-upcoming .right .tour-link {
	flex-direction: row-reverse;
	text-align: right
}

section.box-tours-upcoming .right .tour-thumb {
	margin-right: auto;
	margin-left: 0
}

/* RESPONSIVE */
@media (max-width: 1024px) {
	section.box-tours-upcoming .tours {
		grid-template-columns: 1fr;
	}

	section.box-tours-upcoming .center-art {
		/* order: -1; */
	}

	section.box-tours-upcoming .left,
	.right {
		gap: 28px !important;
	}

	section.box-tours-upcoming .tour-thumb {
		width: 86px;
		height: 86px
	}
}

@media (max-width: 640px) {
	section.box-tours-upcoming .tour-link {
		padding: 14px 16px
	}

	section.box-tours-upcoming .tour-title {
		font-size: 16px;
	}

	section.box-tours-upcoming .tour-thumb {
		width: 72px;
		height: 72px
	}

	section.box-tours-upcoming .center-art::after {
		font-size: .95rem
	}
}

/* Motion-safe */
@media (prefers-reduced-motion: reduce) {
	section.box-tours-upcoming .tour-link {
		transition: none
	}

	section.box-tours-upcoming .center-art img {
		transform: none
	}
}

/* Small helper heading style */
section.box-tours-upcoming .section-head {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0 0 18px 0
}

section.box-tours-upcoming .section-head h2 {
	font-size: clamp(24px, 3.2vw, 34px);
	margin: 0
}

section.box-tours-upcoming .eyebrow {
	text-transform: uppercase;
	font-weight: 700;
	font-size: .8rem;
	letter-spacing: .18em;
	color: var(--brand)
}

section.box-tours-upcoming {
	padding: 50px 0px 70px;
}

ul.tours-col.left li:nth-child(2) {
	position: relative;
	left: -20px;
}

ul.tours-col.right .tour-thumb {
	left: 0;
}

ul.tours-col.right li:nth-child(2) {
	position: relative;
	left: 20px;
}

section.box-hero-Community {
	position: relative;
	display: flex;
	align-items: center;
	background: url('../images/img-tour.png');
	background-position: center;
	background-attachment: fixed;
	overflow: hidden;
	background-repeat: no-repeat;
}

section.box-hero-Community:before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	background: url('../images/bg-tour.png');
	background-repeat: no-repeat !important;
	background-size: cover !important;
	background-position: center;
	/* transform: translateY(-130px); */
}

section.box-hero-Community .ctnr {
	position: relative;
	/* z-index: 9999999999; */
}

section.box-hero-Community .hero {
	margin: 0 auto;
	padding: 5rem 0px;
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	align-items: center;
}

section.box-hero-Community .hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(circle at 30% 40%, rgba(76, 175, 80, 0.1), transparent 50%);
	pointer-events: none;
}

section.box-hero-Community .container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 2rem;
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

section.box-hero-Community .map-section {
	position: relative;
	animation: fadeInLeft 1s ease-out;
}

section.box-hero-Community .route-map {
	position: relative;
	width: 100%;
	max-width: 370px;
	aspect-ratio: 1;
	margin: 0 0 0 auto;
}

section.box-hero-Community .map-pin {
	position: absolute;
	width: 50px;
	height: 50px;
	border-radius: 50% 50% 50% 0;
	transform: rotate(-45deg);
	animation: bounce 2s infinite ease-in-out;
	cursor: pointer;
	transition: transform 0.3s ease;
}

section.box-hero-Community .map-pin::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 20px;
	height: 20px;
	background: white;
	border-radius: 50%;
	transform: translate(-50%, -50%) rotate(45deg);
}

section.box-hero-Community .map-pin:hover {
	transform: rotate(-45deg) scale(1.2);
	animation: none;
}

section.box-hero-Community .pin-1 {
	background: #e74c3c;
	top: 10%;
	left: 50%;
	animation-delay: 0s;
}

section.box-hero-Community .pin-2 {
	background: #f39c12;
	top: 30%;
	right: 25%;
	animation-delay: 0.3s;
}

section.box-hero-Community .pin-3 {
	background: #e74c3c;
	top: 55%;
	right: 35%;
	animation-delay: 0.6s;
}

section.box-hero-Community .pin-4 {
	background: #27ae60;
	bottom: 10%;
	left: 40%;
	animation-delay: 0.9s;
}

section.box-hero-Community .route-path {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
}

section.box-hero-Community .route-path svg {
	width: 100%;
	height: 100%;
}

section.box-hero-Community .path-line {
	fill: none;
	stroke: white;
	stroke-width: 3;
	stroke-dasharray: 10, 10;
	stroke-linecap: round;
	animation: dashMove 20s linear infinite;
}

section.box-hero-Community .cta-button {
	display: inline-block;
	background: linear-gradient(135deg, #e74c3c, #c0392b);
	color: white;
	padding: 1.2rem 3rem;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 400;
	box-shadow: 0 10px 30px rgba(231, 76, 60, 0.4);
	transition: all 0.4s ease;
	border: none;
	cursor: pointer;
	margin-left: 90px;
	animation: pulse 2s infinite;
	font-size: 16px;
}

/* section.box-hero-Community .cta-button:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 40px rgba(231, 76, 60, 0.6);
	animation: none;
} */

section.box-hero-Community .cta-button:active {
	transform: translateY(-1px);
}

section.box-hero-Community .content-section {
	animation: fadeInRight 1s ease-out;
}

section.box-hero-Community .main-heading {
	font-size: 24px;
	font-weight: 100;
	line-height: 1.2;
	margin-bottom: 20px;
	text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
	animation: slideDown 0.8s ease-out;
	font-family: 'Trip Sans', sans-serif;
	color: #fff;
}

section.box-hero-Community .feature-card {
	/* background: rgba(255, 255, 255, 0.1); */
	/* backdrop-filter: blur(10px); */
	border-radius: 10px;
	padding: 1rem;
	margin-bottom: 10px;
	/* border: 1px solid rgba(255, 255, 255, 0.2); */
	transition: all 0.4s ease;
	/* animation: fadeIn 0.6s ease-out backwards; */
	color: #fff;
}

/* section.box-hero-Community .feature-card:nth-child(1) {
	animation-delay: 0.2s;
}

section.box-hero-Community .feature-card:nth-child(2) {
	animation-delay: 0.4s;
}

section.box-hero-Community .feature-card:nth-child(3) {
	animation-delay: 0.6s;
} */

/* section.box-hero-Community .feature-card:hover {
	transform: translateX(10px);
	background: rgba(255, 255, 255, 0.15);
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
} */

section.box-hero-Community .feature-header {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	margin-bottom: 1rem;
}

section.box-hero-Community .feature-icon {
	width: 70px;
	height: 70px;
	background: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
	transition: transform 0.3s ease;
}

section.box-hero-Community .feature-card:hover .feature-icon {
	transform: rotate(360deg);
}

section.box-hero-Community .feature-icon svg {
	width: 35px;
	height: 35px;
}

section.box-hero-Community .feature-title {
	font-size: 21px;
	font-weight: 700;
	margin-bottom: 0.5rem;
	color: #fff;
}

section.box-hero-Community .feature-description {
	font-size: 15px;
	opacity: 0.95;
	line-height: 1.6;
	color: #fff;
}

@keyframes fadeInLeft {
	from {
		opacity: 0;
		transform: translateX(-50px);
	}

	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes fadeInRight {
	from {
		opacity: 0;
		transform: translateX(50px);
	}

	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes slideDown {
	from {
		opacity: 0;
		transform: translateY(-30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes bounce {

	0%,
	100% {
		transform: rotate(-45deg) translateY(0);
	}

	50% {
		transform: rotate(-45deg) translateY(-15px);
	}
}

@keyframes dashMove {
	to {
		stroke-dashoffset: -200;
	}
}

@keyframes pulse {

	0%,
	100% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.05);
	}
}

@media (max-width: 1024px) {
	section.box-hero-Community .container {
		grid-template-columns: 1fr;
		gap: 3rem;
	}

	section.box-hero-Community .map-section {
		order: 2;
	}

	section.box-hero-Community .content-section {
		order: 1;
	}

	section.box-hero-Community .route-map {
		max-width: 400px;
	}
}

@media (max-width: 768px) {
	section.box-hero-Community .container {
		padding: 1.5rem;
	}



	section.box-hero-Community .feature-header {
		flex-direction: column;
		text-align: center;
	}

	section.box-hero-Community .feature-icon {
		width: 60px;
		height: 60px;
	}

	section.box-hero-Community .feature-icon svg {
		width: 30px;
		height: 30px;
	}



	section.box-hero-Community .map-pin {
		width: 40px;
		height: 40px;
	}

	section.box-hero-Community .map-pin::before {
		width: 16px;
		height: 16px;
	}
}

@media (prefers-reduced-motion: reduce) {

	section.box-hero-Community *,
	section.box-hero-Community *::before,
	section.box-hero-Community *::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}



section.Motorcycle-tours {
	padding: 40px 0px 20px;
}

section.Motorcycle-tours .intro-text {
	font-size: 16px;
	line-height: 1.7;
	/* margin-bottom: 40px; */
	max-width: 890px;
	color: #2c2c2c;
}

.header-motor-tours {
	display: grid;
	grid-template-columns: auto max-content;
	align-items: center;
	gap: 20px;
	justify-content: space-between;
}

.header-motor-tours .view-all {
	background: linear-gradient(90deg, rgba(181, 2, 32, 1) 0%, rgba(224, 9, 45, 1) 50%, rgba(250, 15, 54, 1) 100%);
	color: #fff;
	padding: 10px 25px;
	font-size: 16px;
	text-transform: uppercase;
	font-weight: 700;
	border-radius: 4px;
	transition: all 0.3s ease;
	letter-spacing: 0.5px;
	box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
	white-space: nowrap;
	text-shadow: rgba(0, 0, 0, 0.76) 1px 1px 0px;
	display: inline-block;
}

section.Motorcycle-tours .slick-list {
	margin: 0 -10px;
}

section.Motorcycle-tours .js-slider__item {
	margin: 20px 10px;
}

section.Motorcycle-tours .tour-card {
	margin: 25px 18px;
	position: relative;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
	transition: 0.3s ease;
	height: 400px;
}

section.Motorcycle-tours .tour-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: -webkit-gradient(linear, left bottom, left top, from(#000), to(transparent));
}

section.Motorcycle-tours .tour-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

section.Motorcycle-tours .tour-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

section.Motorcycle-tours .tour-overlay {
	position: absolute;
	/* top: 0; */
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(to bottom, rgb(0 0 0 / 0%) 0%, rgb(0 0 0 / 89%) 100%);
	padding: 30px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	color: white;
}

section.Motorcycle-tours .tour-title {
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 15px;
	line-height: 1.3;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
	color: #FFF;
}

section.Motorcycle-tours .tour-description {
	font-size: 16px;
	line-height: 1.6;
	margin-bottom: 25px;
	text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
	overflow: hidden;
}

section.Motorcycle-tours .tour-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 15px;
}

section.Motorcycle-tours .btn-read-more {
	background: linear-gradient(90deg, rgba(181, 2, 32, 1) 0%, rgba(224, 9, 45, 1) 50%, rgba(250, 15, 54, 1) 100%);
	color: white;
	padding: 7px 31px;
	border: none;
	border-radius: 30px;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
	display: inline-block;
}

section.Motorcycle-tours .btn-read-more:hover {
	background-color: #b01030;
	transform: scale(1.05);
}

section.Motorcycle-tours .btn-read-more:focus {
	outline: 2px solid white;
	outline-offset: 2px;
}

section.Motorcycle-tours .tour-duration {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 15px;
	font-weight: 600;
}

section.Motorcycle-tours .duration-icon {
	width: 24px;
	height: 24px;
	margin-bottom: -1px;
}



section.Motorcycle-tours .slick-prev,
section.Motorcycle-tours .slick-next {
	width: 45px;
	height: 45px;
	z-index: 10;
}

section.Motorcycle-tours .slick-prev {
	left: -50px;
}

section.Motorcycle-tours .slick-next {
	right: -50px;
}

section.Motorcycle-tours .slick-prev:before,
section.Motorcycle-tours .slick-next:before {
	font-size: 45px;
	opacity: 0.7;
}

section.Motorcycle-tours .slick-prev:hover:before,
section.Motorcycle-tours .slick-next:hover:before {
	opacity: 1;
}

@media (max-width: 1200px) {
	section.Motorcycle-tours .slick-prev {
		left: -30px;
	}

	section.Motorcycle-tours .slick-next {
		right: -30px;
	}
}

@media (max-width: 768px) {
	section.Motorcycle-tours .container {
		padding: 30px 15px;
	}



	section.Motorcycle-tours .tour-overlay {
		padding: 20px;
	}

	section.Motorcycle-tours .slick-prev {
		left: 10px;
	}

	section.Motorcycle-tours .slick-next {
		right: 10px;
	}

	section.Motorcycle-tours .slick-prev,
	section.Motorcycle-tours .slick-next {
		width: 35px;
		height: 35px;
	}

	section.Motorcycle-tours .slick-prev:before,
	section.Motorcycle-tours .slick-next:before {
		font-size: 35px;
	}
}

@media (max-width: 480px) {
	section.tours-section .intro-section h2 {
		text-align: left;
	}

	section.tours-section .intro-section .intro-text {
		width: 100%;
		text-align: justify;
		font-size: 15px;
	}

	.hero__media {
		aspect-ratio: auto;
	}

	section.Motorcycle-tours .btn-read-more {
		padding: 10px 28px;
	}

	section.tours-section article.tour-card {
		gap: 0 10px;
	}

	section.tours-section .tour-image-wrapper img {
		border-radius: 100%;
		width: 78px;
		height: 78px;
	}

	section.tours-section .tour-image-wrapper {
		width: 90px;
		height: 90px;
	}

	section.tours-section .box-tourd-grid h2 {
		margin-bottom: 5px;
		font-size: 18px;
	}

	section.tours-section .tours-grid {
		gap: 20px 0px;
	}

	section.tours-section .tours-grid {
		margin-bottom: 25px;
	}

}

section.Motorcycle-tours .tours-slider.loading {
	min-height: 400px;
	display: flex;
	align-items: center;
	justify-content: center;
}

section.Motorcycle-tours .skip-to-content {
	position: absolute;
	top: -40px;
	left: 0;
	background: #dc143c;
	color: white;
	padding: 8px;
	text-decoration: none;
	z-index: 100;
}

section.Motorcycle-tours .skip-to-content:focus {
	top: 0;
}


.header-motor-tours h2 {
	font-size: 31px;
	font-weight: 100;
	line-height: 1.2;
	margin-bottom: 1rem;
	animation: slideDown 0.8s ease-out;
	font-family: 'Trip Sans', sans-serif;
	color: #000;
}

section.Motorcycle-tours .slick-dots li button {
	background: #cdcdcd;
	border-radius: 100%;
	width: 15px !important;
	height: 15px;
}

section.Motorcycle-tours .slick-dots li {
	margin-right: 12px;
}

section.Motorcycle-tours .slick-dots li.slick-active button {
	background: #333;
}

section.travel-tips .subtitle {
	font-weight: 400;
	font-size: 16px;
	line-height: 1.7;
	margin-bottom: 40px;
	max-width: 900px;
	color: #2c2c2c;
	margin: 0 auto;
}

section.travel-tips .blog-slider-wrapper {
	padding: 30px 0 15px;
	overflow: hidden;
}

section.travel-tips .blog-card {
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 10px 20px rgba(0, 0, 0, 0.03);
	transition: var(--transition);
	margin: 0 15px 20px;
	outline: none;
}

section.travel-tips .blog-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1), 0 20px 40px rgba(0, 0, 0, 0.08);
}

section.travel-tips .card-image {
	position: relative;
	width: 100%;
	height: 250px;
	overflow: hidden;
	/* background: var(--bg-light); */
}

section.travel-tips .card-image iframe {
	width: 100%;
	height: 280px;
}

section.travel-tips .card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: .3s;
	display: block;
}

section.travel-tips .card-image svg {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 65px;
	z-index: 1;
}

section.travel-tips .card-content {
	padding: 20px 15px;
}

.gallery-item {
	display: block;
}

section.travel-tips .card-meta {
	font-size: 0.875rem;
	color: var(--text-gray);
	margin-bottom: 12px;
	display: flex;
	align-items: center;
	gap: 12px;
}

section.travel-tips .card-title {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 16px;
	line-height: 1.3;
	color: #000;
}

section.travel-tips .card-title:hover {
	color: var(--color-2);
}

section.travel-tips .card-excerpt {
	font-size: 15px;
	margin-bottom: 24px;
	line-height: 1.7;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

section.travel-tips .read-more-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 28px;
	background: linear-gradient(90deg, rgba(181, 2, 32, 1) 0%, rgba(224, 9, 45, 1) 50%, rgba(250, 15, 54, 1) 100%);
	color: #fff;
	text-decoration: none;
	border-radius: 50px;
	font-weight: 600;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	transition: var(--transition);
	border: none;
	cursor: pointer;
	position: relative;
	padding-right: 47px;
}

section.travel-tips .read-more-btn:hover {
	background: #a01829;
	transform: translateX(4px);
	box-shadow: 0 4px 12px rgba(196, 30, 58, 0.3);
}

section.travel-tips .read-more-btn::after {
	font-size: 20px;
	margin-top: -5px;
}

section.travel-tips .read-more-btn:hover::after {
	transform: translateX(4px);
}

section.travel-tips .slick-dots {
	bottom: -50px;
}

section.travel-tips .slick-dots li button:before {
	font-size: 12px;
	color: var(--primary-color);
	opacity: 0.3;
}

section.travel-tips .slick-dots li.slick-active button:before {
	opacity: 1;
	color: var(--primary-color);
}

section.travel-tips .slick-prev,
section.travel-tips .slick-next {
	width: 50px;
	height: 50px;
	z-index: 10;
	background: #fff;
	border-radius: 50%;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	transition: var(--transition);
}

section.travel-tips .slick-prev:hover,
section.travel-tips .slick-next:hover {
	background: var(--primary-color);
}

section.travel-tips .slick-prev:hover:before,
section.travel-tips .slick-next:hover:before {
	color: #fff;
}

section.travel-tips .slick-prev {
	left: -25px;
}

section.travel-tips .slick-next {
	right: -25px;
}

section.travel-tips .slick-prev:before,
section.travel-tips .slick-next:before {
	font-size: 24px;
	color: var(--primary-color);
	opacity: 1;
}

@media (max-width: 768px) {
	section.travel-tips .blog-slider-wrapper {
		padding: 10px 0 0px;
	}

	section.travel-tips .card-content {
		padding: 24px;
	}

	section.travel-tips header {
		padding: 40px 20px 30px;
	}

	section.travel-tips .slick-prev {
		left: 10px;
	}

	section.travel-tips .slick-next {
		right: 10px;
	}

	section.travel-tips .slick-prev,
	section.travel-tips .slick-next {
		width: 40px;
		height: 40px;
	}

	section.travel-tips .slick-prev:before,
	section.travel-tips .slick-next:before {
		font-size: 20px;
	}
}

@media (prefers-reduced-motion: reduce) {

	section.travel-tips *,
	section.travel-tips *::before,
	section.travel-tips *::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}

section.travel-tips .sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border-width: 0;
}

section.travel-tips img {
	max-width: 100%;
	/* height: auto; */
}

section.travel-tips .slick-slide {
	opacity: 0.6;
	transition: 0.3s ease;
}

section.travel-tips .slick-slide.slick-active {
	opacity: 1;
}



section.travel-tips .card-meta time {
	font-size: 16px;
}

section.travel-tips .card-meta span {
	font-size: 17px;
}

section.travel-tips .box-header-travel-tips {
	text-align: center;
	margin-bottom: 20px;
}

section.travel-tips .box-header-travel-tips h2 {
	font-size: 31px;
	font-weight: 100;
	line-height: 1.2;
	margin-bottom: 1rem;
	animation: slideDown 0.8s ease-out;
	font-family: 'Trip Sans', sans-serif;
	color: #000;
}

.blog-slider .slick-list {
	margin: 0 -10px;
}

.blog-slider__item {
	margin: 10px;
}

/* Gallery Grid */
section.gallery-container {
	padding: 30px 0px;
}

section.gallery-container .gallery {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 1rem;
	grid-auto-flow: dense;
	align-items: center;
	justify-content: center;
}

@media (min-width: 768px) {
	section.gallery-container .gallery {
		grid-template-columns: repeat(5, 1fr);
	}
}

section.gallery-container .gallery-item {
	position: relative;
	overflow: hidden;
	border-radius: 1rem;
	cursor: pointer;
	animation: fadeInUp 0.6s ease forwards;
	margin-bottom: 10px;
	height: 230px;
	position: relative;
	z-index: 99;
}

section.gallery-container .gallery-item:nth-child(1) {
	animation-delay: 0.1s;
}

section.gallery-container .gallery-item:nth-child(2) {
	animation-delay: 0.15s;
}

section.gallery-container .gallery-item:nth-child(3) {
	animation-delay: 0.2s;
}

section.gallery-container .gallery-item:nth-child(4) {
	animation-delay: 0.25s;
}

section.gallery-container .gallery-item:nth-child(5) {
	animation-delay: 0.3s;
}

section.gallery-container .gallery-item:nth-child(6) {
	animation-delay: 0.35s;
}

section.gallery-container .gallery-item:nth-child(7) {
	animation-delay: 0.4s;
}

@media (min-width: 768px) {
	section.gallery-container .gallery-item:nth-child(1) {
		height: 230px;
	}

	section.gallery-container .gallery-item:nth-child(4) {
		grid-column: span 2;
		grid-row: span 2;
	}

	section.gallery-container .gallery-item:nth-child(7) {
		grid-column: span 1;
		grid-row: span 2;
	}
}

section.gallery-container .gallery-item:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-lg);
}

section.gallery-container .gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: .3s;
}

section.gallery-container .gallery-item:hover img {
	transform: scale(1.1);
}

section.gallery-container .overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
	opacity: 0;
	transition: .3s;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 1.5rem;
}

section.gallery-container .gallery-item:hover .overlay {
	opacity: 1;
}

section.gallery-container .gallery-item:hover .overlay-content {
	transform: translateY(0);
	position: relative;
	z-index: 99999;
}

section.gallery-container .overlay h3 {
	color: white;
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 0.5rem;
}

section.gallery-container .overlay-meta {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	color: #fff;
	font-size: 13px;
	position: relative;
	z-index: 9999999999;
}

section.gallery-container .lightbox {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.95);
	backdrop-filter: blur(10px);
	z-index: 1000;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 2rem;
	animation: fadeIn 0.3s ease;
}

section.gallery-container .lightbox.active {
	display: flex;
}

section.gallery-container .lightbox-content {
	max-width: 90vw;
	max-height: 90vh;
	position: relative;
	animation: zoomIn 0.3s ease;
}

section.gallery-container .lightbox-content img {
	max-width: 100%;
	max-height: 85vh;
	object-fit: contain;
	border-radius: 0.5rem;
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

section.gallery-container .lightbox-caption {
	color: white;
	text-align: center;
	margin-top: 1rem;
	font-size: 1.125rem;
}

section.gallery-container .lightbox-close,
section.gallery-container .lightbox-nav {
	position: fixed;
	background: rgba(255, 255, 255, 0.1);
	border: none;
	color: white;
	cursor: pointer;
	padding: 1rem;
	border-radius: 50%;
	transition: all var(--transition-fast);
	backdrop-filter: blur(5px);
}

section.gallery-container .lightbox-close:hover,
section.gallery-container .lightbox-nav:hover {
	background: rgba(255, 255, 255, 0.2);
	transform: scale(1.1);
}

section.gallery-container .lightbox-close {
	top: 1rem;
	right: 1rem;
	font-size: 1.5rem;
	width: 50px;
	height: 50px;
}

section.gallery-container .lightbox-nav {
	top: 50%;
	transform: translateY(-50%);
	font-size: 2rem;
	width: 60px;
	height: 60px;
}

section.gallery-container .lightbox-prev {
	left: 1rem;
}

section.gallery-container .lightbox-next {
	right: 1rem;
}

section.gallery-container .loading {
	display: inline-block;
	width: 20px;
	height: 20px;
	border: 3px solid rgba(255, 255, 255, 0.3);
	border-radius: 50%;
	border-top-color: white;
	animation: spin 1s linear infinite;
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeInDown {
	from {
		opacity: 0;
		transform: translateY(-20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes zoomIn {
	from {
		opacity: 0;
		transform: scale(0.9);
	}

	to {
		opacity: 1;
		transform: scale(1);
	}
}

@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}

section.gallery-container .gallery-item:focus,
section.gallery-container .lightbox-close:focus,
section.gallery-container .lightbox-nav:focus {
	outline: 3px solid var(--accent-color);
	outline-offset: 3px;
}

section.box-hero-Community .route-path img {
	height: 100%;
	width: 100%;
	object-fit: contain;
}

section.box-hero-Community .feature-icon img {
	width: 45px;
	height: 45px;
	object-fit: contain;
}

@media (max-width: 767px) {
	section.gallery-container .lightbox-nav {
		width: 50px;
		height: 50px;
		font-size: 1.5rem;
	}

	section.gallery-container .lightbox-prev {
		left: 0.5rem;
	}

	section.gallery-container .lightbox-next {
		right: 0.5rem;
	}
}

section.gallery-container section.travel-tips {
	padding: 40px 0px;
}

section.gallery-container .gallery-item-3 .gallery-item {
	height: 530px;
}

section.travel-tips {
	padding: 25px 0;
	background: #eee;
}

/* section.hero {
	overflow: hidden;
} */

.icon-news-blog svg {
	height: 20px;
	width: 20px;
	margin-left: 5px;
}

.sec-breadcrumb {
	position: relative;
}

.icon-news-blog {
	width: 42px;
	height: 44px;
	background: #fff;
	border-radius: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.icon-news-blog {
	position: absolute;
	right: -6px;
}

span.member-tour-links {
	display: block;
	width: calc(100% - 115px);
	text-align: right;
}

section.box-tours-upcoming .right span.member-tour-links {
	text-align: left;
}

.tour-card .price-wrap {
	margin-top: 10px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 3px 8px;
}

.nhan-baogia {
	display: grid;
	grid-template-columns: 45% auto;
	border-top: 2px solid #d0d0d0;
	width: 100%;
}

.nhan-baogia .call,
.nhan-baogia .co-san {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 3px;
	justify-content: center;
	padding: 10px 5px;
	font-size: 17px;
	font-weight: 600;
	text-transform: uppercase;
}

.nhan-baogia svg {
	width: 16px;
	height: 16px;
}

.nhan-baogia .call {
	background-color: var(--color-3);
	color: #FFF;
}

.tour-top-choice .wrap-img {
	padding-bottom: 65%;
}

.tour-top-choice {
	display: grid;
	grid-template-columns: 62% auto;
	/* border-radius: 20px; */
	overflow: hidden;
}

.tour-top-choice .list-image {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-bottom: 15px;
}

.tour-top-choice .list-image img {
	height: 106px;
	border: solid 3px #fff;
	width: 100%;
	object-fit: cover;
	cursor: pointer;
}

.tour-top-choice .content {
	padding: 25px 25px 55px 25px;
	background: #000;
	color: #FFF;
	position: relative;
	text-align: center;
}

.tour-top-choice .content .name {
	line-height: 1.3;
	font-size: 25px;
	text-align: center;
	color: #FFF;
	font-weight: 700;
	display: inline-block;
	margin: 10px 0 10px;
}

.tour-top-choice .content .des {
	display: -webkit-box;
    -webkit-line-clamp: 8;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
}

.tour-top-choice .detail {
	position: absolute;
	bottom: 0;
	right: 0;
	background: linear-gradient(90deg, rgba(181, 2, 32, 1) 0%, rgba(224, 9, 45, 1) 50%, rgba(250, 15, 54, 1) 100%);
	color: #FFF;
	border-radius: 15px 0px 0px 0px;
	padding: 10px 30px;
	font-size: 18px;
	text-transform: uppercase;
	font-weight: 700;
}

.slick-has-nav .slick-arrow {
	opacity: 1;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: #FFF;
	z-index: 2;
	top: 50%;
	transform: translateY(-50%);
	margin-top: 0;
	border: 1px solid #eee;
}

.slick-has-nav .slick-next {
	right: -25px;
}

.slick-has-nav .slick-prev {
	left: -25px;
}

.tours-slider-top .slick-dots {
	position: unset;
	margin-top: 15px;
}

.tours-slider-top .slick-dots li {
	height: 5px;
	width: 90px;
	border: none;
	background-color: #FFF;
	border-radius: 0;
}

.tours-slider-top .slick-dots li.slick-active {
	background-color: rgb(177, 0, 29);
}

.upcoming-tour {
	height: 300px;
	margin-top: 215px;
	position: relative;
	background-size: cover;
	background-repeat: no-repeat;
}

.upcoming-tour .overlay-upcoming {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: linear-gradient(270deg, rgba(0, 0, 0, .8) 35.92%, rgba(0, 0, 0, .43) 89%);
}

.upcoming-tour .img-absolute {
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 1;
	width: 50%;
	max-width: 759px;
	width: 45%;	
}

.upcoming-tour .box-content {
	max-width: calc(55% - 15px);
	margin: 0 0 0 auto;
	position: relative;
	font-weight: 500;
	color: #FFF;
	padding-right: 30px;
	height: 100%;
	display: grid;
	grid-template-columns: auto 300px;
	gap: 15px;
	align-items: center;
	/* text-shadow: -2px -2px 0 #fff, 2px -2px 0 #fff, -2px 2px 0 #fff, 2px 2px 0 #fff, -3px 0px 0 #fff, 3px 0px 0 #fff, 0px -3px 0 #fff, 0px 3px 0 #fff; */
}

.upcoming-tour .box-content .content-title {
	font-size: 46px;
	font-family: 'Trip Sans', sans-serif;
	text-transform: uppercase;
}

.upcoming-tour .box-content .arrow {
	transform: translateX(-30%);
}

.upcoming-tour .box-content .des {
	font-size: 16px;
	margin-top: 15px;
}

.upcoming-tour .box-content .custom-tour {
	width: 260px;
	height: 260px;
	border-radius: 50%;
	background-color: #FFF;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 20px;
	text-transform: uppercase;
	font-size: 26px;
	font-weight: 700;
	text-align: center;
	line-height: 1.2;
}

.upcoming-tour .box-content .custom-tour:hover {
	background-color: rgba(224, 9, 45, 1);
	color: #FFF;
}

.table-v2-responsive {
	margin: 30px 0;
}

.table-v2 {
	width: 100%;
	border-collapse: collapse;
	background: white;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	
}

.table-v2 th {
	background: #333;
	color: white;
	padding: 10px 18px;
	text-align: left;
	font-weight: 600;
	font-size: 19px;
	text-transform: uppercase;
}

.table-v2 td {
	padding: 15px 18px;
	border-bottom: 1px solid #f0f0f0;
	font-size: 17px;
	font-weight: 500;
}

.table-v2 tr:nth-child(even) {
	background: #f9f9ff;
}

.table-v2 tr:hover {
	background: #e8e8ff;
	transition: 0.3s;
}

.item-product {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	height: 550px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.item-product:hover {
	transform: translateY(-5px);
	box-shadow: 0 5px 19px rgba(0, 0, 0, 0.3);
}

.item-product .image-wrapper {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.item-product .image-wrapper img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.item-product .overlay-product {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.6) 100%);
	z-index: 2;
}

.item-product .content {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 20px 20px 55px 20px;
	z-index: 3;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	color: white;
}

.item-product .header-product .badge {
	display: inline-flex;
	align-items: center;
	background: rgba(255, 255, 255, 0.25);
	backdrop-filter: blur(10px);
	border: 2px solid rgba(255, 255, 255, 0.3);
	border-radius: 30px;
	padding: 10px 20px;
	font-size: 16px;
	font-weight: 600;
	width: fit-content;
	margin-bottom: 15px;
}

.item-product .header-product .dates {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.item-product .header-product .dates .date-line {
	font-size: 15px;
	font-weight: 500;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.item-product .footer-product .title {
	font-size: 26px;
	font-weight: 500;
	line-height: 1.2;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
	color: #FFF;
}

.item-product .footer-product .title:hover {
	text-decoration: underline !important;
}

.item-product .footer-product .duration {
	font-size: 18px;
	font-weight: 500;
	opacity: 0.95;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
	margin-top: 15px;
}

.item-product .btn-discover {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: rgba(224, 9, 45, 1);
	border-radius: 20px 0 0 0;
	padding: 10px 25px;
	color: white;
	font-size: 16px;
	font-weight: 600;
	transition: all 0.3s ease;
	width: fit-content;
	position: absolute;
	bottom: 0;
	right: 0;
}

.item-product .btn-discover:hover {
	background: rgba(224, 9, 45, .7);
}

.item-product .btn-discover::after {
	content: '→';
	font-size: 20px;
	transition: transform 0.3s ease;
}

@media(max-width:1450px) {
	.upcoming-tour .box-content .content-title {
		font-size: 36px;
		line-height: 1.2;
	}

	.upcoming-tour .box-content {
		grid-template-columns: auto 230px;
	}

	.upcoming-tour .box-content .custom-tour {
		width: 230px;
		height: 230px;
	}

	.upcoming-tour {
		margin-top: 150px;
	}
}

@media(max-width:1300px) { 
	.tour-top-choice .content .des {
		-webkit-line-clamp: 7;
	}

	.slick-has-nav .slick-next {
		right: -10px;
	}

	.slick-has-nav .slick-prev {
		left: -10px;
	}

	.slick-has-nav .slick-arrow {
		width: 35px;
		height: 35px;
	}

	.slick-has-nav .slick-arrow svg {
		width: 20px;
		height: 20px;
	}

	.upcoming-tour {
        margin-top: 85px;
    }
}

@media(max-width:1200px) {
	.upcoming-tour {
		margin-top: 30px;
	}

	.tour-top-choice .content {
		padding: 15px 15px 55px 15px;
	}

	.tour-top-choice .list-image img {
		height: 70px;
	}

	.tour-top-choice .list-image {
		margin-bottom: 8px;
	}

	.tour-top-choice .content .name {
		font-size: 22px;
	}

	.tour-top-choice .content .des {
        -webkit-line-clamp: 6;
    }
}

@media(min-width:992px) {
	.hero__wrap {
		max-height: 800px
	}

}

@media(max-width:990px) {
	.tour-top-choice .wrap-img {
		padding-bottom: 85%;
	}

	section.tours-section .tours-grid {
		grid-template-columns: 1fr;
		gap: 35px 0px;
	}

	section.tours-section .cta-section {
		margin-top: 10px;
	}

	section.box-tours-upcoming {
		padding: 15px 0px 40px;
	}

	ul.tours-col.left li:nth-child(2) {
		left: 0px;
	}

	section.box-hero-Community .hero {
		grid-template-columns: 1fr;
	}

	section.travel-tips {
		padding: 15px 0px 15px;
	}

	section.travel-tips .slick-dots {
		display: none;
	}

	ul.tours-col.right li:nth-child(2) {
		left: 0px;
	}

	section.hero {
		height: unset;
	}



	figcaption.hero__content {
		width: 100%;
	}

	header.header.header-container-box {
		top: 40px;
	}

	section.box-hero-Community .main-heading {
		text-align: center;
		font-size: 22px;
	}

	section.box-hero-Community:before {
		height: 100%;
		top: 0;
		left: 0;
		bottom: 0;
		transform: unset;
	}

	section.box-hero-Community .cta-button {
		/* width: 100%; */
		margin: 0 auto;
		text-align: center;
		padding: 1rem 2rem;
		display: flex;
	}

	.section.box-hero-Community .map-section {
		text-align: center;
	}

	/* section.box-hero-Community .cta-button {
		margin-left: 0;
		margin-top: 15px;
	} */

	section.travel-tips .box-header-travel-tips {
		margin-bottom: 10px;
	}

	figcaption.hero__content h2,
	.header-motor-tours h2 {
		font-size: 2.6rem;
	}

	section.box-hero-Community .hero {
		display: flex;
		flex-direction: column-reverse;
	}

	.feature-card__check-slider .slick-dots {
		bottom: -5px;
	}

	.feature-card__check-slider .slick-dots li button {
		opacity: 0;
	}

	section.box-hero-Community .content-section,
	section.box-hero-Community .map-section {
		order: inherit;
		width: 100%;
	}

	section.box-hero-Community .main-heading {
		margin-bottom: 10px;
	}

	section.box-hero-Community .hero {
		padding: 3rem 0;
	}

	section.box-hero-Community .feature-card {
		padding: 1.5rem 5px 10px;
		margin-bottom: 0;
	}

	ul.tours-col.left {
		padding-left: 0;
	}

	ul.tours-col.right {
		padding-right: 0;
	}

	ul.tours-col.left li {
		left: 0;
	}

	ul.tours-col.right li {
		left: 0;
	}

	.upcoming-tour .img-absolute {
		position: relative;
		width: 80%;
		display: block;
		margin: 0 auto;
		padding: 15px 0;
	}

	.upcoming-tour {
		height: auto;
		padding-bottom: 25px;
	}

	.upcoming-tour .box-content {
		max-width: 100%;
		justify-content: center;
		font-size: 40px;
		padding: 0 20px;
	}
}

@media (max-width: 768px) {
	header.header.header-container-box {
		top: 0px;
	}

	section.tours-section .intro-section {
		padding: 12px 0px 30px;
	}

	section.Motorcycle-tours {
		padding: 30px 0 35px;
	}

	figcaption.hero__content {
		top: 58%;
	}

	.hero__content {
		padding: 0 20px;
	}

	.hero__media img {
		/* height: 440px; */
	}

	.hero__subtitle {
		width: 100%;
	}

	section.travel-tips .box-header-travel-tips h2 {
		font-size: 24px;
	}

	section.box-hero-Community {
		background-attachment: unset;
	}

	.upcoming-tour .box-content {
		font-size: unset;
	}

}

@media (max-width: 767px) {
	.tour-top-choice .wrap-img {
		padding-bottom: 65%;
	}

	.tour-top-choice .detail {

	}
	
	section.gallery-container .gallery {
		grid-template-columns: 1fr;
		gap: 10px;
	}

	section.gallery-container .gallery-item {
		margin-bottom: 0;
	}

	section.gallery-container .gallery>*:nth-child(2n) {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
	}

	section.gallery-container .gallery-item-3 .gallery-item {
		height: auto;
	}

	.tour-top-choice {
		grid-template-columns: repeat(1, 1fr);
	}

	.tour-top-choice .list-image img {
		height: 80px;
	}

	.tour-top-choice .content {
		padding: 15px 15px 45px;
	}

	.hero__media img {
		height: calc(100vh - 20px);
	}

	.header-top { 
		display: none;
	}

	.tour-top-choice .detail {
		padding: 5px 30px;
    	font-size: 16px;
	}

	.table-v2 th {
		font-size: 16px;
	}

	.table-v2 {
		min-width: 800px;
	}

	.table-v2-responsive {
		overflow-x: auto;
	}

}

@media (max-width: 576px) { 
	section.tours-section .intro-section h2 {
		font-size: 19px;
	}

	.tours-slider-top .slick-dots li {
		height: 3px;
    	width: 25px;
	}

	.tour-top-choice .content .name {
		font-size: 17px;
	}

	.tour-top-choice .content .des {
		font-size: 14px;
	}

	.upcoming-tour .box-content {
		grid-template-columns: 1fr;
	}

	.upcoming-tour .box-content .custom-tour {
		width: 140px;
        height: 140px;
		font-size: 18px;
		margin: 0 auto;
	}

	.upcoming-tour .box-content .content-title {
		font-size: 26px;
	}

	.header-motor-tours {
		grid-template-columns: auto;
	}

}
