body {
	font-family: 'Open Sans', sans-serif;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	background-color: #F9F9F9;
	color: #333333;
}

a {
	text-decoration: none;
	color: currentColor;
}

header {
	background-color: #007BFF;
	padding: 20px;
	color: white;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: sticky;
	top: 0;
	z-index: 111;
}

header .logo h1 {
	font-family: 'Montserrat', sans-serif;
	margin: 0;
	font-size: 24px;
}

nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
}

nav ul li {
	margin-left: 20px;
}

nav ul li a {
	color: white;
	text-decoration: none;
	font-weight: bold;
}

.container {
	max-width: 100%;
	width: 1280px;
	margin: 0 auto;
	box-sizing: border-box;
}

.hero {
	color: white;
	text-align: center;
	border-radius: 0 0 8px 8px;
	overflow: hidden;
	position: relative;
}

#topSwiper img {
	height: 400px;
	width: 100%;
	object-fit: cover;
	display: block;
}

.hero-text {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 12;
}

.hero-text h1 {
	font-family: 'Montserrat', sans-serif;
	font-size: 25px;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
	margin-bottom: 10px;
}

.hero-text p {
	font-size: 20px;
	margin-bottom: 20px;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

.search-box {
	margin-bottom: 20px;
}

.search-box input {
	padding: 10px;
	width: 60%;
	max-width: 400px;
	border: none;
	border-radius: 4px;
	margin-right: 10px;
}

.search-box .btn {
	padding: 10px 20px;
	background-color: #FFA500;
	border: none;
	border-radius: 4px;
	color: white;
	cursor: pointer;
	font-weight: bold;
}

.cta-buttons .btn {
	padding: 10px 20px;
	background-color: #FFA500;
	border: none;
	border-radius: 4px;
	color: white;
	cursor: pointer;
	font-weight: bold;
	margin: 5px;
}

.destinations,
.travel-tips,
.budget-planning,
.latest-articles,
.article-content,
.destination-content {
	padding: 10px 0 40px;
	background-color: #F9F9F9;
}

.destinations h2,
.travel-tips h2,
.budget-planning h2,
.latest-articles h2,
.article-content h2,
.destination-content h2 {
	text-align: center;
	font-family: 'Montserrat', sans-serif;
	margin-bottom: 10px;
}

.blog-content {
	max-width: 1280px;
	margin: 0 auto;
}

.blog-content a {
	margin-bottom: 15px;
	display: block;
	color: #007BFF;
}

.blog-content ul {
	padding: 0;
	list-style: none;
}

.blog-content p {
	margin-top: 10px;
}

.blog-content h2 {
	margin-bottom: 10px;
	text-align: start;
}

.destinations p {
	text-align: center;
	color: #555555;
}

.destination-container,
.tips-container,
.articles-container {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.destination-card,
.tip-card,
.article-card {
	background-color: white;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	overflow: hidden;
	width: calc(100% / 3 - 14px);
	text-align: center;
	transition: transform 0.3s;
}

.right .destination-card img {
	height: 200px;
}

.destination-card:hover,
.tip-card:hover,
.article-card:hover {
	transform: translateY(-5px);
}

.destination-card img,
.tip-card img,
.article-card img {
	width: 100%;
	height: 200px;
	object-fit: cover;
}

.destination-card .img-content {
	width: 100%;
	height: 200px;
	object-fit: cover;
	position: relative;
}

.destination-card .img-content:before {
	content: 'Image Missing';
	position: absolute;
	width: 100%;
	height: 200px;
	background-color: #e0e0e0;
	color: #fff;
	left: 0;
	top: 0;
	font-size: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.destination-card h3,
.tip-card h3,
.article-card h3 {
	font-family: 'Montserrat', sans-serif;
	margin: 15px 0 10px 0;
	font-size: 20px;
	color: #007BFF;
	padding: 0 10px;
}

.destination-card p,
.tip-card p,
.article-card p {
	padding: 0 10px;
	color: #555555;
}

.budget-planning .budget-calculator {
	max-width: 500px;
	margin: 0 auto;
	text-align: left;
}

.budget-planning form {
	display: flex;
	flex-direction: column;
}

.budget-planning label {
	margin: 10px 0 5px 0;
	font-weight: bold;
}

.budget-planning input {
	padding: 10px;
	border: 1px solid #CCCCCC;
	border-radius: 4px;
}

.budget-planning .btn {
	margin-top: 20px;
	background-color: #FFA500;
	color: white;
	border: none;
	border-radius: 4px;
	padding: 10px;
	cursor: pointer;
	font-weight: bold;
}


.welcome {
	color: #333;
	display: flex;
	flex-wrap: wrap;
	max-width: 100%;
	width: 1000px;
	gap: 20px;
	margin: 20px auto;
	justify-content: space-between;
	align-items: center;
}

.welcome .wel-title {
	width: 100%;
	text-align: center;
}

.welcome .wel-title h1 {
	font-size: 40px;
	margin: 0;
}

.welcome .wel-title a {
	font-size: 20px;
	color: #36b0fc;
	font-weight: bold;
}

.welcome .wel-desc {
	width: 100%;
	box-sizing: border-box;
	padding: 0;
	text-align: center;
}

.welcome .wel-desc p {
	font-size: 16px;
	margin: 0;
	text-align: start;
}

@media screen and (max-width:768px) {
	.welcome .wel-title h1 {
		font-size: 25px;
	}

	.welcome .wel-title,
	.welcome .wel-desc {
		width: 100%;
		text-align: center;
		padding: 0;
	}
}

.budget-result {
	margin-top: 20px;
	padding: 15px;
	background-color: #EFEFEF;
	border-radius: 4px;
}

.article-content {
	padding: 40px 20px;
	background-color: #FFFFFF;
}

.article-content img {
	width: 80%;
	object-fit: cover;
	display: block;
	margin: 0 auto 20px;
}

.article-content h2 {
	font-size: 32px;
	margin-bottom: 20px;
	color: #007BFF;
}

.destination-content h1 {
	font-size: 40px;
	margin-bottom: 20px;
	color: #333;
	text-align: start;
	margin-top: 0;
}

ol {
	display: flex;
	gap: 10px;
	padding: 0;
	box-sizing: border-box;
	color: #333;
	align-items: center;
	list-style: none;
	flex-wrap: wrap;
}

ol span {
	font-size: 16px;
}

ol li {
	font-size: 16px;
}

ol li a {
	margin-bottom: 0 !important;
	color: #333 !important;
}

ol li:last-child {
	border: none;
}

.destination-content .date {
	font-style: italic;
}

.article-content h3,
.destination-content h3 {
	font-size: 24px;
	margin-top: 20px;
}

.destination-img {
	width: 100%;
	height: 200px;
	background-image: url('http://fx001/u/d13/2412/4311143268.webp');
	background-position: center;
	background-size: 100%;
}

footer {
	background-color: #007BFF;
	color: white;
	padding: 40px 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.footer-links ul {
	list-style: none;
	padding: 0;
	display: flex;
	gap: 20px;
}

.footer-links ul li a {
	color: white;
	text-decoration: none;
	font-weight: bold;
}

.social-media {
	margin: 20px 0;
}

.social-media a {
	color: white;
	text-decoration: none;
	margin: 0 10px;
}

.subscription {
	text-align: center;
}

.subscription p {
	margin-bottom: 10px;
}

.subscription form {
	display: flex;
	justify-content: center;
	gap: 10px;
}

.subscription input {
	padding: 10px;
	border: none;
	border-radius: 4px;
	width: 250px;
}

.subscription .btn {
	background-color: #FFA500;
	color: white;
	border: none;
	border-radius: 4px;
	padding: 10px 20px;
	cursor: pointer;
	font-weight: bold;
}

.carousel img {
	max-width: 80%;
	height: 500px;
	border-radius: 8px;
	margin: 10px auto;
	display: block;
	object-fit: cover;
}

.budget-planning {
	padding: 40px 20px;
	background-color: #F9F9F9;
	margin: 20px auto;
	max-width: 600px;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.budget-planning h2 {
	text-align: center;
	font-family: 'Montserrat', sans-serif;
	margin-bottom: 30px;
}

.budget-calculator form {
	display: flex;
	flex-direction: column;
}

.budget-calculator label {
	margin: 10px 0 5px 0;
	font-weight: bold;
}

.budget-calculator select,
.budget-calculator input {
	padding: 10px;
	border: 1px solid #CCCCCC;
	border-radius: 4px;
}

.budget-calculator .btn {
	margin-top: 20px;
	background-color: #FFA500;
	color: white;
	border: none;
	border-radius: 4px;
	padding: 10px;
	cursor: pointer;
	font-weight: bold;
}

.budget-result {
	margin-top: 20px;
	padding: 15px;
	background-color: #EFEFEF;
	border-radius: 4px;
}

.listItem {
	display: flex;
}

.listItem .left {
	width: 20%;
}

.listItem .left h2 {
	text-align: start;
}

.listItem .right {
	width: 80%;
}

.listItem .filterList a {
	color: #007BFF;
}

.listItem .filterList ul {
	list-style: none;
	padding: 0;
	text-align: start;
	font-weight: bold;
}

.listItem .filterList li {
	margin-bottom: 10px;
}

.listItem .filterList li:hover a {
	text-decoration: underline;
}

.filterBtn {
	background-color: #007BFF;
	padding: 5px 10px;
	border: 1px solid #007BFF;
	color: #fff;
	font-size: 20px;
	display: none;
}

.main-mask {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: #00000060;
	z-index: 2;
	display: none;
}

.main-mask.open {
	display: block;
}

.openMenu {
	display: none;
}

.openMenu svg {
	width: 40px;
	height: 40px;
	color: #fff;
	fill: #fff;
}

.page-navigation {
	display: flex;
	gap: 10px;
	justify-content: center;
	margin: 30px;
	list-style: none;
	padding: 0;
}

.page-navigation a {
	font-size: 20px;
	color: #fff;
	padding: 10px 15px;
	border-radius: 5px;
	text-align: center;
	background-color: #007bff;
	border: 1px solid #007bff;
	transition: all 0.3s ease;
}

@media screen and (max-width:768px) {
	.page-navigation a {
		padding: 5px 10px;
	}
}

.page-navigation a:hover {
	background-color: #fff;
	color: #007bff;
}

.page-navigation a.pageActive {
	background-color: #fff;
	color: #007bff;
}

@media screen and (max-width: 1280px) {
	.container {
		box-sizing: border-box;
		padding: 0 10px;
	}
}

@media screen and (max-width: 768px) {
	nav {
		position: fixed;
		height: 100%;
		width: 70%;
		top: 0;
		right: -100%;
		z-index: 3;
		background-color: #f9f9f9;
		transition: right 0.3s ease;
		padding: 20px 0;
		box-sizing: border-box;
	}

	nav ul {
		display: block;
	}

	nav ul li {
		margin-bottom: 10px;
	}

	nav ul li a {
		color: #007BFF;
		font-size: 20px;
	}

	nav.open {
		right: 0;
	}

	.openMenu {
		display: block;
	}

	.destination-container,
	.tips-container,
	.articles-container {
		flex-direction: column;
		align-items: center;
	}

	.destination-card,
	.tip-card,
	.article-card {
		width: 100%;
	}

	.hero-text h2 {
		font-size: 32px;
	}

	.hero-text p {
		font-size: 18px;
	}

	.search-box input {
		width: 100%;
		margin-bottom: 10px;
		box-sizing: border-box;
	}

	.cta-buttons .btn {
		margin: 10px 0;
	}

	.budget-planning .budget-calculator {
		width: 90%;
	}

	footer .footer-links ul {
		flex-direction: column;
		gap: 10px;
	}

	.carousel img,
	.article-content img {
		width: 100%;
		max-width: 100%;
	}

	.carousel img {
		height: auto;
	}

	.listItem .left {
		position: fixed;
		top: 0;
		right: -100%;
		background-color: #f9f9f9;
		height: 100%;
		width: 70%;
		transition: right 0.3s ease;
		z-index: 99999;
	}

	.listItem .left.open {
		right: 0;
	}

	.listItem .left h2 {
		color: #007BFF;
		text-align: start;
		padding-left: 20px;
	}

	.listItem .right {
		width: 100%;
	}

	.listItem .filterList ul {
		text-align: start;
		padding: 0 20px 20px;
		box-sizing: border-box;
	}

	.filterBtn {
		display: block;
	}
}

.model {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.6);
	z-index: 999;
	display: flex;
	align-items: center;
	justify-content: center;
	display: none;
}

#modelSwiper .swiper-slide {
	margin: auto;
	text-align: center;
}

#modelSwiper img {
	max-width: 100%;
	max-height: 60%;
	object-fit: cover;
}

@media screen and (max-width:768px) {
	#modelSwiper {
		width: 90%;
	}
}


.reviews-section {
	margin-top: 40px;
}

.rating-summary {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
	padding: 10px;
	box-sizing: border-box;
}

.rating-score {
	font-size: 2em;
	font-weight: 400;
	margin-right: 20px;
	text-align: center;
}

.score {
	font-size: 56px;
}

.total-reviews {
	font-size: 14px;
	color: #1a73e8;
}

.stars-bar {
	flex: 1;
	margin-right: 24px;
}

.stars-row {
	display: flex;
	align-items: center;
	margin-bottom: 5px;
}

iframe {
	width: 100%;
	height: 300px;
	border: none;
}

.stars-row span {
	width: 20px;
}

.bar {
	flex: 1;
	height: 8px;
	background-color: #e0e0e0;
	margin-left: 10px;
	border-radius: 5px;
	overflow: hidden;
}

.filled {
	height: 100%;
	background-color: #ffc107;
}

.destinationMsg {
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	padding: 20px;
	box-sizing: border-box;
}

.destinationMsg p {
	display: flex;
	justify-content: space-between;
	width: 100%;
	margin-bottom: 10px;
	padding-bottom: 10px;
	border-bottom: 1px solid #ccc;
}

.review-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 20px 0;
}

.tag {
	background-color: #f1f1f1;
	padding: 5px 10px;
	border-radius: 15px;
	font-size: 0.9em;
}

.review {
	margin-top: 20px;
	padding: 15px;
	border-top: 1px solid #ddd;
}

.review-header {
	font-weight: bold;
	color: #333;
	margin-bottom: 5px;
	display: flex;
	align-items: center;
}

.review-userType {
	margin-left: 10px;
}

.userType {
	color: #70757a;
	font-size: 14px;
}

.review-stars {
	color: #ffc107;
	display: flex;
	align-items: center;
	gap: 5px;
}

.review-text {
	color: #555;
}

.review-date {
	color: #70757a;
}

.scenery {
	display: flex;
	flex-wrap: wrap;
}

.scenery .leftPic {
	width: 50%;
}

.scenery .rightIntro {
	width: 50%;
	padding-left: 20px;
	box-sizing: border-box;
}

.scenery .rightIntro h2 {
	margin-top: 10px;
}

.userImg {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: #8bd8f9;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	text-transform: uppercase;
}

@media screen and (max-width:768px) {
	.logo img {
		width: 180px;
	}

	.destinationMsg {
		padding: 10px !important;
	}

	.destination-content h1 {
		font-size: 30px;
	}

	.scenery .leftPic,
	.scenery .rightIntro {
		width: 100%;
		padding: 0;
	}

	#topSwiper img {
		height: 200px;
	}
}