body {
	margin: 0;
	height: auto;
}

a {
	text-decoration: none;
	color: currentColor;
}

ul,
li,
ol {
	list-style: none;
	padding: 0;
	margin: 0;
}

ol {
	display: flex;
	font-size: 18px;
	margin: 20px 0;
	flex-wrap: wrap;
}

ol li {
	margin-right: 15px;
	margin-bottom: 15px;
}

ol span {
	margin-right: 15px;
}

header {
	position: sticky;
	top: 0;
	z-index: 3;
}

.swiper {
	z-index: 0 !important;
}

.nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: #6a0f0e;
	padding: 20px 30px;
	font-size: 16px;
	color: #fff;
	box-sizing: border-box;
}

.nav img {
	height: 80px;
	object-fit: cover;
}

.nav ul {
	display: flex;
}

.nav ul li {
	padding: 0 20px;
	height: 80px;
	transition: background-color 0.3s ease;
}

.nav ul li:hover {
	background-color: #440000;
}

.nav ul li a {
	height: 100%;
	display: block;
	display: flex;
	align-items: center;
	justify-content: center;
}

.nav ul li.active {
	position: relative;
}

.nav ul li.active::before {
	content: '';
	position: absolute;
	top: -20px;
	left: 0;
	height: 3px;
	width: 100%;
	background-color: #c39f76;
}

.hero {
	width: 100%;
	position: relative;
}

.heroSwiper {
	height: calc(90vh - 120px);
}

.heroSwiper img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero .heroMsg {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
	text-align: center;
	width: 1200px;
	max-width: 100%;
}

.hero .heroMsg h1 {
	font-size: 65px;
	color: #fff;
	font-style: italic;
	font-weight: 400;
}

.hero .heroMsg p {
	background-color: #78615f;
	padding: 15px;
	color: #fff;
	line-height: 25px;
}

.intro {
	width: 900px;
	max-width: 100%;
	margin: 0 auto;
	text-align: center;
	padding-bottom: 32px;
}

.intro h2 {
	font-style: italic;
	font-weight: 400;
	font-size: 65px;
	margin: 32px 0;
}

.intro p {
	font-size: 16px;
	color: #565656;
}

.messageTab {
	display: flex;
	text-align: center;
	flex-wrap: wrap;
	height: calc(90vh - 120px);
}

.messageTab img {
	max-height: 100%;
	width: 50%;
	object-fit: cover;
}

.message {
	width: 50%;
	background-color: #f4f4f4;
}

.message h3 {
	font-style: italic;
	font-weight: 400;
	font-size: 65px;
	margin: 32px 0;
	position: relative;
}

.message h3::after {
	content: '';
	position: absolute;
	height: 4px;
	width: 54px;
	background-color: #681915;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
}

.msg-text {
	padding: 32px 15%;
	color: #565656;
	margin-bottom: 32px;
}

.message button {
	background-color: #c39f76;
	height: 55px;
	line-height: 55px;
	padding: 0 40px;
	text-transform: uppercase;
	border: none;
	color: #fff;
	font-size: 16px;
	cursor: pointer;
	transition: transform 0.3s ease, background-color 0.3s ease, opacity 0.3s ease;
}

.message button:hover {
	background-color: #a58969;
	transform: scale(1.05);
}

.moreBtn {
	background-color: #c39f76;
	height: 55px;
	line-height: 55px;
	padding: 0 40px;
	text-transform: uppercase;
	border: none;
	color: #fff;
	font-size: 16px;
	cursor: pointer;
	transition: transform 0.3s ease, background-color 0.3s ease, opacity 0.3s ease;
}

.moreBtn:hover {
	background-color: #c39f76;
	height: 55px;
	line-height: 55px;
	padding: 0 40px;
	text-transform: uppercase;
	border: none;
	color: #fff;
	font-size: 16px;
	cursor: pointer;
	transition: transform 0.3s ease, background-color 0.3s ease, opacity 0.3s ease;
}

footer {
	background-color: #242424;
	color: #fff;
	padding: 32px 100px;
}

footer h4 {
	font-size: 12px;
	color: #7c7c7c;
	text-transform: uppercase;
	font-weight: 400;
}

footer ul {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 40px;
}

footer li {
	width: 25%;
	padding: 0 10px;
	box-sizing: border-box;
}

footer p {
	font-size: 13px;
}

.destinationTab {
	text-align: center;
	width: 1280px;
	max-width: 100%;
	margin: 0 auto;
	padding: 40px 0 100px;
}

.destinationTab h2 {
	font-size: 65px;
	margin: 32px 0;
	font-weight: 400;
	font-style: italic;
}

.destinationTab p {
	font-size: 24px;
}

.cardList {
	display: flex;
	flex-wrap: wrap;
}

.cardList .card {
	width: calc(100% / 3);
	padding: 0 10px;
	box-sizing: border-box;
}

.cardList .card img {
	width: 100%;
	height: 400px;
	display: block;
	object-fit: cover;
}

.cardList .card .no-img {
	width: 100%;
	height: 400px;
	display: block;
	position: relative;
}

.cardList .card .no-img::after {
	content: 'Image Missing';
	position: absolute;
	top: 0;
	left: 0;
	font-weight: bold;
	text-transform: uppercase;
	height: 100%;
	width: 100%;
	background-color: #ccc;
	font-size: 20px;
	display: flex;
	color: #fff;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.cardList .card h3 {
	font-size: 22px;
	color: #28262B;
	font-weight: 400;
	margin: 10px 0 20px;
}

.cardList .card:hover h3 {
	text-decoration: underline;
}

.listTop {
	height: 60vh;
	position: relative;
}

.listTop img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.blogCard {
	width: 25%;
	box-sizing: border-box;
	padding: 10px;
}

.card-body {
	overflow: hidden;
	border: 3px solid #e8e8e8;
	border-radius: 10px;
}

.card-body:hover {
	border-color: #6a0f0e;
}

.blogCard img {
	width: 100%;
	height: 260px;
	display: block;
	object-fit: cover;
}

.blogCard .no-img {
	width: 100%;
	height: 260px;
	display: block;
	position: relative;
}

.blogCard .no-img::after {
	content: 'Image Missing';
	position: absolute;
	top: 0;
	left: 0;
	font-weight: bold;
	text-transform: uppercase;
	height: 100%;
	width: 100%;
	background-color: #ccc;
	font-size: 16px;
	display: flex;
	color: #fff;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.page-navigation {
	display: flex;
	justify-content: center;
	font-size: 20px;
	margin: 50px 0;
}

.page-navigation li {
	margin-right: 15px;
}

.page-navigation li a {
	padding: 10px;
	border-radius: 5px;
}

.page-navigation li a.pageActive {
	background-color: #6a0f0e;
	color: #fff;
}

.page-navigation li:hover a {
	background-color: #6a0f0e;
	color: #fff;
}

.blog-main {
	display: flex;
	flex-wrap: wrap;
	padding: 20px 100px;
	box-sizing: border-box;
	height: 100%;
	align-items: flex-start;
}

.blog-image img{
	max-width: 80%;
	height: auto;
	border-radius: 10px;
	margin: 0 auto 30px;
	display: block;
}

.blogArticle {
	width: calc(80% - 50px);
	margin-right: 50px;
}

.blogArticle h1 {
	font-size: 65px;
	font-style: italic;
	margin: 32px 0 15px;
	font-weight: 400;
}

.blogArticle .date {
	font-size: 16px;
	color: #ccc;
}

.blogBody {
	font-size: 16px;
	color: #565656;
	margin-top: 20px;
}

.blogBody p {
	margin: 0 0 15px;
}

.blogBody a {
	color: #620c0b;
	font-weight: bold;
}

.blogBody a:hover {
	text-decoration: underline;
}

.blogBody h2,
.blogBody h3,
.blogBody h4 {
	font-size: 20px;
}

.blogBody section {
	padding: 20px 0;
}

.blogBody ul {
	padding-left: 25px;
}

.blogBody ul li {
	list-style: disc;
}

.blogBody ol {
	display: block;
	list-style: auto;
	padding-left: 25px;
}

.blogBody ol li {
	list-style: auto;
}

.blogBody img {
	max-width: 80%;
	display: block;
	margin: 15px 0;
}

.blog-more {
	width: 20%;
	position: sticky;
	top: 130px;
}

.blog-more .blogCard {
	width: 100%;
	text-align: center;
}

.blog-more .blogCard img {
	height: 150px;
}

.blog-more .blogCard .no-img {
	height: 150px;
}

.blog-more .blogCard h3 {
	font-size: 14px;
}

.parkTitle {
	margin: 20px 0;
	font-size: 40px;
	font-weight: 400;
	font-style: italic;
}

.parkMsg {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.left-msg {
	width: 30%;
	border-radius: 10px;
	overflow: hidden;
	border: 1px solid #fff;
	padding: 0 20px 20px;
	box-sizing: border-box;
	background-color: #6a0f0e;
	position: relative;
	color: #fff;
}

.reviewsList {
	height: 534px;
	overflow-y: auto;
	padding-bottom: 50px;
}

.left-msg h2 {
	color: #fff;
	margin-top: 0;
	padding: 20px 0;
	height: 30px;
	border-bottom: 1px solid;
	position: sticky;
	top: 0;
	background-color: #6a0f0e;
}

.right-msg {
	width: calc(70% - 20px);
	border-radius: 10px;
	overflow: hidden;
	background-color: #6a0f0e;
	border: 1px solid #6a0f0e;
	padding: 10px;
	box-sizing: border-box;
}

.right-msg .no-pic {
	width: 99%;
	height: 99%;
	background-color: #6a0f0e;
	border: 1px solid #fff;
	color: #fff;
	font-size: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	text-transform: uppercase;
	border-radius: 10px;
}

.reviewCard {
	border-bottom: 1px solid;
	padding: 15px 0;
}

.reviewCard p {
	margin: 5px 0;
}

.reviewCard .date {
	font-style: italic;
	font-size: 14px;
	margin-top: 10px;
}

.reviewMan {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	line-height: 32px;
	text-align: center;
	background-color: #1376b5;
	display: inline-block;
}

.reviewPeople {
	margin-bottom: 10px;
}

.reviewsList::-webkit-scrollbar {
	display: none;
}

.btnItem {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 15px;
	box-sizing: border-box;
	background-color: #6a0f0e;
}

.feedBtn {
	height: 50px;
	margin: 0 auto;
	font-style: normal;
	width: 100%;
	border-radius: 5px;
	background-color: #6a0f0e;
	font-size: 20px;
	font-weight: bold;
	color: #fff;
	border: 1px solid #fff;
	cursor: pointer;
}

.message-detail {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.message-detail li {
	display: flex;
	align-items: center;
	margin-right: 15px;
	margin-bottom: 10px;
}

.message-detail li a {
	text-decoration: underline;
}

.message-detail li svg {
	fill: #565656;
}

.message-detail li path {
	fill: #565656;
}

.sectionItem {
	display: flex;
	flex-wrap: wrap;
	padding: 80px 0;
	justify-content: space-between;
}

.sectionItem iframe {
	width: 70%;
	height: 400px;
	border: 1px solid #6a0f0e;
	border-radius: 10px;
}

.sectionItem:not(:has(.hoursItem)) iframe {
	width: 100%;
}

.sectionItem .hoursItem {
	width: calc(30% - 20px);
	height: 400px;
	border-radius: 10px;
	border: 1px solid #6a0f0e;
	padding: 20px;
	box-sizing: border-box;
	line-height: 2;
	color: #6a0f0e;
}

.sectionItem .hoursItem h3 {
	margin-top: 0;
	font-size: 20px;
}


.swiper-thumbs {
	margin-top: 10px;
}

.swiper-slide {
	display: flex !important;
	justify-content: center;
	align-items: center;
}

.swiper-thumbs .swiper-slide {
	border: 1px solid transparent;
	cursor: pointer;
	opacity: 0.4;
	transition: opacity 0.3s ease;
}

.swiper-thumbs .swiper-slide:hover {
	opacity: 1;
}

.swiper-thumbs .swiper-slide-thumb-active {
	opacity: 1;
	border: 1px solid #fff;
}

.detailSwiper {
	height: 500px;
}

.detailSwiper img {
	max-width: 100%;
	display: block;
	object-fit: cover;
	max-height: 500px;
}

.swiper-thumbs img {
	width: 100%;
	display: block;
	object-fit: cover;
	height: 140px;
}

.message-detail li .share-list a {
	text-decoration: none;
}

.container {
	width: 1300px;
	max-width: 100%;
	margin: 0 auto;
}

.menuBtn {
	display: none;
	cursor: pointer;
}

.main-mask {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #00000060;
	display: none;
}

.main-mask.open {
	display: block;
}

@media screen and (max-width:1300px) {
	.container {
		padding: 0 10px;
		box-sizing: border-box;
	}

	.left-msg {
		width: 100%;
		order: 1;
	}

	.right-msg {
		width: 100%;
		order: 0;
		margin-bottom: 30px;
	}
}

@media screen and (max-width:1080px) {
	.blogArticle {
		width: 100%;
		margin: 0;
	}

	.blog-more {
		width: 100%;
	}

	.blog-more .blogCard {
		width: 50%;
	}

	.blog-main {
		padding: 20px 40px;
	}
}

@media screen and (max-width:768px) {
	.nav ul li {
		padding: 0 10px;
	}

	.hero .heroMsg h1 {
		font-size: 40px;
	}

	.menuBtn {
		display: block;
	}

	.nav ul {
		display: block;
		position: fixed;
		top: 0;
		right: -100%;
		height: 100%;
		width: 40%;
		background-color: #6a0f0e;
		transition: right 0.3s ease;
	}

	.nav ul.open {
		right: 0;
	}

	.intro h2 {
		font-size: 40px;
	}

	.destinationTab h2 {
		font-size: 45px;
	}

	.cardList .card {
		width: 50%;
	}

	.messageTab {
		height: auto;
	}

	.message button {
		margin-bottom: 20px;
	}

	.messageTab img {
		width: 100%;
		order: 0;
	}

	.message {
		width: 100%;
		order: 1;
	}

	.message h3 {
		font-size: 40px;
	}

	footer {
		padding: 32px;
	}

	footer li {
		width: 50%;
	}

	.intro {
		padding: 0 10px 32px;
		box-sizing: border-box;
	}

	.blogCard {
		width: 50%;
	}

	.blogArticle h1 {
		font-size: 40px;
	}

	.sectionItem iframe {
		width: 100%;
		margin-bottom: 20px;
	}

	.sectionItem .hoursItem {
		width: 100%;
	}
	
	.swiper-thumbs img{
		height: 80px;
	}
}

@media screen and (max-width:530px) {
	.cardList .card {
		width: 100%;
	}

	.blogCard {
		width: 100%;
	}

	footer li {
		width: 100%;
	}

	.blog-more .blogCard {
		width: 100%;
	}

	.blog-main {
		padding: 20px 10px;
	}
}

.callUs h3 {
	color: #000 !important;
}

#sendBtn {
	background-color: #c39f76 !important;
	color: #fff;
}

@media screen and (max-width:768px) {
	.footBack .callUsItem{
		padding: 15px 10px;
	}
}

.dentalIntro{
	margin: 30px 0;
}

.dentalIntro p {
	display: inline-block;
	margin: 0 0 20px;
}

.dentalIntro ul {
	/* list-style: disc; */
	padding-left: 40px;
	margin-top: 0;
}

.dentalIntro li {
	margin: 5px 0;
}