/*
===================
Style Content Default
*/

.detail-content {
	font-size: 1.075em;
	line-height: 1.6;
	color: #2a2a2a;
	--font-weight: 600;
}

.detail-content p,
.detail-content ul,
.detail-content ol,
.detail-content blockquote {
	margin-bottom: 16px;
}

.detail-content ul,
.detail-content ol {
	padding-left: 16px;
	line-height: 1.6;
}

.detail-content h1,
.detail-content h2,
.detail-content h3,
.detail-content h4,
.detail-content h5,
.detail-content h6 {
	margin-bottom: 10px;
	font-weight: var(--font-weight);
}

.detail-content h1 b,
.detail-content h1 strong,
.detail-content h2 b,
.detail-content h2 strong,
.detail-content h3 b,
.detail-content h3 strong,
.detail-content h4 b,
.detail-content h4 strong,
.detail-content h5 b,
.detail-content h5 strong,
.detail-content h6 b,
.detail-content h6 strong {
	font-weight: var(--font-weight);
}

.detail-content h2 {
	font-size: 1.375em;
}

.detail-content h3 {
	font-size: 1.15em;
}

.detail-content h4,
.detail-content h5,
.detail-content h6 {
	font-size: 1em;
}

.detail-content p:last-child,
.detail-content ul:last-child,
.detail-content ol:last-child {
	margin-bottom: 0;
}

.detail-content img {
	max-width: 100%;
	height: auto;
}

.detail-content .table {
	--bs-table-border-color: var(--bs-gray-500)
}

.detail-content .table th,
.detail-content .table td {
	padding: 10px;
	min-width: 150px;
}

.detail-content .table td ul {
	padding-left: 24px;
}

.detail-content blockquote {
	padding: 15px 15px 15px 45px;
	border-left: 5px solid var(--accent-color);
	background: rgba(var(--accent-rgb), .05);
	position: relative;
}

.detail-content blockquote:before {
	position: absolute;
	content: "\f10d";
	font-family: "Font Awesome 5 Pro";
	font-size: 1.5em;
	color: var(--accent-color);
	top: 10px;
	left: 10px;
	-webkit-transform: rotateX(180deg);
	transform: rotateX(180deg);
	font-weight: 700;
	line-height: 1;
}

@media screen and (max-width: 991px) {
	.detail-content {
		font-size: 1em;
		line-height: 1.6;
	}
}

.section-gap {
	padding: 50px 0;
}

@media screen and (max-width: 1023px) {
	.section-gap {
		padding: 30px 0;
	}
}

.button-theme {
	outline: none;
	box-shadow: none;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
	padding: 12px 24px;
	font-size: 1em;
	font-weight: 600;
	border-radius: 0.25rem;
	position: relative;
	overflow: hidden;
	transition: var(--transition-default);
	white-space: nowrap;
	text-transform: capitalize;
	border: 1px solid transparent;
}

.button-theme > span {
	position: relative;
	z-index: 2;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	gap: 5px;
}

.button-theme:before {
	content: '';
	display: block;
	width: 0;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	opacity: .6;
	transition: inherit;
	border-radius: inherit;
}

.button-theme:hover:before {
	width: 100% !important;
}

.button-theme.button-theme_primary {
	background: linear-gradient(40deg, rgba(var(--primary-rgb), 0.75), var(--primary-color) 100%);
	color: var(--bs-white, #ffffff);
}

.button-theme.button-theme_primary::before {
	background: rgba(var(--primary-rgb), 0.75);
}

.button-theme.button-theme_secondary {
	background: linear-gradient(40deg, rgba(var(--secondary-rgb), 0.6), var(--secondary-color) 100%);
	color: var(--bs-white, #ffffff);
}

.button-theme.button-theme_secondary::before {
	background: rgba(var(--secondary-rgb), 0.6);
}

.button-theme.button-theme_accent {
	background: linear-gradient(40deg, rgba(var(--accent-rgb), 0.6), var(--accent-color) 100%);
	color: var(--bs-white, #ffffff);
}

.button-theme.button-theme_accent::before {
	background: rgba(var(--accent-rgb), 0.6);
}

.link-theme {
	outline: none;
	box-shadow: none;
	border: none;
	color: var(--bs-black, #000000);
	font-weight: 600;
	transition: var(--transition-default, 0.3s all ease-in-out);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	position: relative;
	padding-bottom: 2px;
}

.link-theme:after {
	position: absolute;
	content: "";
	left: auto;
	bottom: 0;
	background: var(--accent-color);
	width: 0;
	height: 2px;
	transition: var(--transition-default, 0.3s all ease-in-out);
	right: 0;
}

.link-theme > i {
	font-size: .925em;
}

.link-theme:hover {
	color: var(--accent-color);
}

.link-theme:hover:after {
	width: 100%;
	left: 0;
	right: auto;
}

.section-heading {
	max-width: 991px;
	margin: 0 auto 30px;
}

.section-heading .heading-title {
	font-size: 2.5em;
	font-weight: 600;
	color: var(--bs-gray-900);
}

.section-heading .heading-title span {
	display: block;
	font-size: 2em;
}

.section-heading .heading-sub {
	font-size: 1.6em;
	font-weight: 600;
	color: var(--bs-gray-900);
}

.section-heading .heading-desc {
	margin-top: 8px;
	font-size: 1.075em;
	color: var(--text-color);
}

.section-heading .heading-desc p {
	margin-bottom: 10px;
}

.section-heading .heading-desc p:last-child {
	margin-bottom: 0;
}

.section-heading .heading-meta {
	margin-top: 24px;
	position: relative;
	padding-left: 90px;
	font-size: 1.15em;
	line-height: 1.7;
}

.section-heading .heading-meta:before {
	position: absolute;
	content: "";
	width: 75px;
	height: 75px;
	background-image: var(--icon, url('../images/icon-time.svg'));
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	opacity: 50%;
}

@media screen and (max-width: 1199px) {
	.section-heading .heading-title {
		font-size: 2em;
	}
}

@media screen and (max-width: 991px) {
	.section-heading .heading-title {
		font-size: 1.6em;
	}

	.section-heading .heading-title span {
		font-size: 1.6em;
	}

	.section-heading .heading-sub {
		font-size: 1.45em;
		font-weight: 600;
		color: var(--bs-gray-900);
	}

	.section-heading .heading-desc {
		font-size: 1em;
	}

	.section-heading .heading-meta {
		padding-left: 75px;
		font-size: 1.075em;
	}

	.section-heading .heading-meta:before {
		width: 65px;
		height: 65px;
	}
}

.header {
	position: sticky;
	transition: var(--transition-default);
	z-index: 22;
	width: 100%;
	top: 0;
}

.header .header-top {
	background: #dedede;
	padding: 8px 0;
}

.header .header-main {
	display: flex;
	align-items: center;
	gap: 15px;
	justify-content: space-between;
}

.header .header-main .header-logo {
	flex-shrink: 0;
}

.header .header-main .header-logo img {
	height: 45px;
	transition: var(--transition-default);
}

.header .header-main .header-bar .header-contact {
	border-radius: 50px;
	padding: 5px 18px;
	color: var(--bs-white);
	font-weight: 700;
	gap: 10px;
	font-size: 1.075em;
	white-space: nowrap;
	position: relative;
	overflow: hidden;
	border: 0;
	outline: none;
	box-shadow: none;
}

.header .header-main .header-bar .header-contact .header-contact_text,
.header .header-main .header-bar .header-contact .header-contact_icon {
	position: relative;
	z-index: 2;
	transition: var(--transition-default);
}

.header .header-main .header-bar .header-contact.header-contact_phone {
	background: #ee2f30;
}

.header .header-main .header-bar .header-contact.header-contact_phone .header-contact_icon {
	font-size: 1.15em;
}

.header .header-main .header-bar .header-contact.header-contact_phone:hover {
	background: var(--secondary-color);
	color: var(--bs-white);
}

.header .header-main .header-bar .header-contact.header-contact_order {
	background: var(--secondary-color);
}

.header .header-main .header-bar .header-contact.header-contact_order .header-contact_icon img {
	height: 36px;
}

.header .header-main .header-bar .header-contact.header-contact_order:after {
	position: absolute;
	content: '';
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background: linear-gradient(135deg, #d8c79d 0%, var(--secondary-color) 25%, #f0ede2 50%, var(--secondary-color) 75%, #d8c79d 100%);
	background-size: 200% 100%;
	opacity: 0;
	visibility: hidden;
	transition: var(--transition-default);
	animation: animationAfterHeader 3s alternate infinite;
}

.header .header-main .header-bar .header-contact.header-contact_order:hover:after {
	opacity: 1;
	visibility: visible;
}

.header .header-main .header-bar .header-contact.header-contact_order:hover .header-contact_text {
	color: #634809;
}

.header .header-main .header-bar .header-contact.header-contact_order:hover .header-contact_icon {
	filter: invert(50%) sepia(50%) saturate(5000%) hue-rotate(20deg) brightness(50%) contrast(100%);
}

@keyframes animationAfterHeader {
	0% {
		background-position: 0 100%
	}

	50% {
		background-position: 100% 100%
	}

	100% {
		background-position: 0 100%
	}
}

.header .header-main .header-bar .header-hamburger {
	margin-right: 5px;
	display: none;
}

.header .header-main .header-bar .header-hamburger .hamburger-button {
	position: relative;
	width: 24px;
	height: 18px;
	display: block;
	border: 0;
	padding: 0;
	background-color: transparent;
	outline: none;
	box-shadow: none;
}

.header .header-main .header-bar .header-hamburger .hamburger-button > i {
	background-color: var(--bs-gray-900);
	width: 100%;
	height: 2px;
	position: absolute;
	display: block;
	transition: var(--transition-default);
	left: 0;
}

.header .header-main .header-bar .header-hamburger .hamburger-button > i:nth-child(1) {
	top: 0;
}

.header .header-main .header-bar .header-hamburger .hamburger-button > i:nth-child(2) {
	width: 18px;
	top: 8px;
	left: unset;
	right: 0;
}

.header .header-main .header-bar .header-hamburger .hamburger-button > i:nth-child(3) {
	bottom: 0;
}

.is-navigation .header .header-main .header-bar .header-hamburger .hamburger-button > i:nth-child(1) {
	transform: rotate(45deg);
	top: 8px;
}

.is-navigation .header .header-main .header-bar .header-hamburger .hamburger-button > i:nth-child(2) {
	left: 50%;
	width: 0;
}

.is-navigation .header .header-main .header-bar .header-hamburger .hamburger-button > i:nth-child(3) {
	transform: rotate(-45deg);
	bottom: 8px;
	width: 100%;
}

.header .header-main .header-bar .header-language {
	position: relative;
}

.header .header-main .header-bar .header-language .header-language_btn {
	border: 0;
	background-color: transparent;
	outline: none;
	box-shadow: none;
	color: #010203;
	font-weight: 600;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	white-space: nowrap;
	position: relative;
	font-size: 1.075em;
	padding: 15px 0;
}

.header .header-main .header-bar .header-language > ul {
	position: absolute;
	top: calc(100% + 9px);
	-webkit-transform: translateY(-10px);
	-ms-transform: translateY(-10px);
	transform: translateY(-10px);
	visibility: hidden;
	opacity: 0;
	pointer-events: none;
	left: 0;
	padding: 10px 15px;
	background-color: var(--bs-white, #ffffff);
	-webkit-box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
	box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
	-webkit-transition: var(--transition-default, 0.3s all ease-in-out);
	-o-transition: var(--transition-default, 0.3s all ease-in-out);
	transition: var(--transition-default, 0.3s all ease-in-out);
	min-width: 150px;
	z-index: 5;
	list-style: none;
	margin-bottom: 0;
	border-radius: 0 0 4px 4px;
}

.header .header-main .header-bar .header-language ul:before {
	position: absolute;
	top: -9px;
	height: 9px;
	width: 100%;
	display: block;
	content: "";
	left: 0;
}

.header .header-main .header-bar .header-language:hover > ul {
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
	visibility: visible;
	opacity: 1;
	pointer-events: auto;
}

.header .header-main .header-bar .header-language > ul > li > a {
	white-space: nowrap;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 10px 0;
	color: #010203;
	font-weight: 400;
	gap: 5px;
}

.header .header-main .header-bar .header-language > ul > li > a.active,
.header .header-main .header-bar .header-language > ul > li:hover > a {
	color: var(--primary-color);
}

.header .header-main .header-navigation ul {
	list-style: none;
	padding-left: 0;
	margin-bottom: 0;
}

.header .header-main .header-navigation > ul {
	gap: 45px;
	align-items: center;
}

.header .header-main .header-navigation > ul > li {
	position: relative;
	width: 100%;
}

.header .header-main .header-navigation > ul > li > a,
.header .header-main .header-navigation > ul > li > button {
	position: relative;
	width: 100%;
	white-space: nowrap;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.15em;
	color: #010203;
	font-weight: 600;
	padding: 15px 0;
	gap: 6px;
	outline: none;
	background-color: transparent;
	box-shadow: none;
	border: 0;
}

.header .header-main .header-navigation > ul > li > ul {
	padding: 10px 15px;
	background-color: var(--bs-white);
	-webkit-transition: var(--transition-default);
	-o-transition: var(--transition-default);
	transition: var(--transition-default);
	z-index: 5;
	flex-direction: column;
}

.header .header-main .header-navigation > ul > li > ul > li > a {
	white-space: nowrap;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 10px 0;
	color: #010203;
	font-weight: 500;
	font-size: 1.075em;
}

.header.is-scroll {
	position: fixed;
	box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

@media screen and (min-width: 1200px) {
	.header .header-main .header-navigation ul {
		display: flex;
	}

	.header .header-main .header-navigation > ul > li:hover > a > i,
	.header .header-main .header-navigation > ul > li:hover > button > i {
		transform: rotate(180deg);
		transition: var(--transition-default);
	}

	.header .header-main .header-navigation > ul > li > a:before,
	.header .header-main .header-navigation > ul > li > button:before {
		position: absolute;
		height: 0;
		width: 100%;
		background-color: var(--accent-color);
		content: "";
		display: block;
		left: 0;
		right: 0;
		bottom: 0;
		transition: var(--transition-default);
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
	}

	.header .header-main .header-navigation > ul > li:hover > a,
	.header .header-main .header-navigation > ul > li:hover > button {
		color: var(--accent-color);
	}

	.header .header-main .header-navigation > ul > li:hover > a:before,
	.header .header-main .header-navigation > ul > li:hover > button:before {
		opacity: 1;
		visibility: visible;
		height: 3px;
	}

	.header .header-main .header-navigation > ul > li > ul {
		position: absolute;
		top: calc(100% + 8px);
		-webkit-transform: translateY(-10px);
		-ms-transform: translateY(-10px);
		transform: translateY(-10px);
		visibility: hidden;
		opacity: 0;
		pointer-events: none;
		left: 0;
		-webkit-box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
		box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
		min-width: 180px;
		border-radius: 0 0 4px 4px;
	}

	.header .header-main .header-navigation > ul > li > ul:before {
		position: absolute;
		top: -8px;
		height: 8px;
		width: 100%;
		display: block;
		content: "";
		left: 0;
	}

	.header .header-main .header-navigation > ul > li > ul > li:hover > a {
		color: var(--accent-color);
		padding-left: 3px;
	}

	.header .header-main .header-navigation > ul > li:hover > ul {
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0);
		visibility: visible;
		opacity: 1;
		pointer-events: auto;
	}
}

@media screen and (min-width: 1200px) and (max-width: 1499px) {
	.header .header-main .header-logo img {
		height: 40px;
	}

	.header .header-main .header-bar .header-contact {
		font-size: 1em;
		padding: 3px 12px;
		height: 38px;
		gap: 5px;
		align-self: center;
	}

	.header .header-main .header-bar .header-contact.header-contact_order .header-contact_icon img {
		width: 28px;
		height: 28px;
	}

	.header .header-main .header-bar .header-language .header-language_btn {
		padding: 0;
		width: 24px;
		height: 24px;
		flex-shrink: 0;
	}

	.header .header-main .header-bar .header-language .header-language_btn .header-language_btn__icon {
		display: none;
	}

	.header .header-main .header-bar .header-language .header-language_btn img {
		width: 100%;
		height: 100%;
	}
}

@media screen and (max-width: 1199px) {
	.header .header-top {
		padding: 12px 0;
		position: relative;
		z-index: 23;
	}

	.header .header-main .header-logo img {
		height: 30px;
	}

	.header .header-main .header-navigation {
		position: fixed;
		top: 62px;
		width: 100%;
		max-width: 320px;
		background-color: var(--bs-white, #ffffff);
		height: calc(100vh - 62px);
		overflow-y: auto;
		z-index: 13;
		-webkit-transition: var(--transition-default, 0.3s all ease-in-out);
		-o-transition: var(--transition-default, 0.3s all ease-in-out);
		transition: var(--transition-default, 0.3s all ease-in-out);
		justify-content: flex-start;
		align-items: flex-start;
		left: -150%;
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
	}

	.header .header-main .header-navigation:before {
		box-shadow: 0 12px 16px -4px rgba(16, 24, 40, .1), 0 4px 6px -2px rgba(16, 24, 40, .15);
		display: block;
		content: "";
		position: absolute;
		top: -8px;
		left: 0;
		width: 100%;
		height: 7px;
	}

	.header .header-main .header-navigation > ul {
		flex-direction: column;
		justify-content: flex-start;
		align-items: flex-start;
		width: 100%;
		gap: 0;
		padding: 10px calc(var(--bs-gutter-x) / 2);
	}

	.header .header-main .header-navigation > ul > li {
		position: relative;
		width: 100%;
	}

	.header .header-main .header-navigation > ul > li + li {
		border-top: 1px solid var(--bs-gray-200, #E7E9EC);
	}

	.header .header-main .header-navigation > ul > li > a,
	.header .header-main .header-navigation > ul > li > button {
		width: 100%;
		padding: 12px 0;
		justify-content: space-between;
		height: auto !important;
		font-size: 1.075em;
		color: var(--bs-black);
	}

	.header .header-main .header-navigation > ul > li > a > i,
	.header .header-main .header-navigation > ul > li > button > i {
		transition: var(--transition-default);
	}

	.header .header-main .header-navigation > ul > li > a[aria-expanded=true] i,
	.header .header-main .header-navigation > ul > li > button[aria-expanded=true] i {
		transform: rotate(180deg);
	}

	.header .header-main .header-navigation > ul > li > ul {
		padding: 0;
		padding-left: var(--bs-gutter-x);
		border-top: 1px solid var(--bs-gray-200, #E7E9EC);
	}

	.header .header-main .header-navigation > ul > li > ul > li + li {
		border-top: 1px solid var(--bs-gray-200, #E7E9EC);
	}

	.is-navigation .header .header-main .header-navigation {
		left: 0;
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
	}

	.header .header-main .header-bar {
		align-items: center;
		gap: 8px;
	}

	.header .header-main .header-bar .header-hamburger {
		display: block;
	}

	.header .header-main .header-bar .header-contact {
		font-size: 1em;
		padding: 3px 12px;
		height: 38px;
		gap: 5px;
		align-self: center;
	}

	.header .header-main .header-bar .header-contact.header-contact_order .header-contact_icon img {
		width: 28px;
		height: 28px;
	}

	.header .header-main .header-bar .header-language .header-language_btn {
		padding: 0;
		width: 24px;
		height: 24px;
		flex-shrink: 0;
	}

	.header .header-main .header-bar .header-language .header-language_btn .header-language_btn__icon {
		display: none;
	}

	.header .header-main .header-bar .header-language .header-language_btn img {
		width: 100%;
		height: 100%;
	}

	.header .header-overlay {
		background: rgba(0, 0, 0, 0.65);
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 22;
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		-webkit-transition: var(--transition-default, 0.3s all ease-in-out);
		-o-transition: var(--transition-default, 0.3s all ease-in-out);
		transition: var(--transition-default, 0.3s all ease-in-out);
		height: 100vh;
	}

	.is-navigation .header .header-overlay {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
	}
}

@media screen and (max-width: 575px) {
	.header .header-main .header-navigation {
		top: 56px;
		height: calc(100vh - 56px);
	}

	.header .header-main .header-bar .header-contact.header-contact_phone {
		display: none;
	}

	.header .header-main .header-bar .header-contact {
		height: 32px;
		font-size: 0.925em;
	}

	.header .header-main .header-bar .header-contact.header-contact_order .header-contact_icon img {
		display: none;
	}
}

.slider-hero .hero-item {
	position: relative;
}

.slider-hero .hero-item .hero-content {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	animation-fill-mode: forwards;
	-webkit-backface-visibility: hidden;
	opacity: 0 !important;
	transform: translate3d(0, 70px, 0);
	transition: transform .8s cubic-bezier(0, .195, 0, 1.465), opacity .5s ease-in;
}

.slider-hero .swiper-slide-active .hero-item .hero-content {
	animation-delay: .1s;
	opacity: 1 !important;
	transform: translateZ(0) scale(1);
	will-change: filter, transform, opacity;
}

.slider-hero .hero-item .hero-content .hero-content_title {
	font-size: 4.3em;
	color: var(--bs-white);
	font-weight: 700;
	line-height: 1.2;
	text-shadow: 2px 4px 3px rgba(0, 0, 0, 0.15);
}

.slider-hero .hero-item .hero-content .hero-content_desc {
	font-size: 1.25em;
	color: var(--bs-white);
	line-height: 1.4;
	margin-top: 15px;
}

.slider-hero .hero-item .hero-content .hero-content_button {
	margin-top: 30px;
}

@media screen and (max-width: 1199px) {
	.slider-hero .hero-item .hero-content .hero-content_title,
	.slider-hero .hero-item .hero-content .hero-content_desc {
		padding-left: 60px;
	}

	.slider-hero .hero-item .hero-content .hero-content_title {
		font-size: 3em;
	}

}

@media screen and (max-width: 991px) {
	.slider-hero .hero-item .hero-content .hero-content_title {
		font-size: 1.85em;
		text-align: center;
		padding-left: 0;
	}

	.slider-hero .hero-item .hero-content .hero-content_desc {
		display: none;
		padding-left: 0;
	}
}

.slider-theme {
	position: relative;
}

.slider-theme .slider-pagination {
	margin-top: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

.slider-theme .slider-pagination .slider-pagination_item {
	height: 7px;
	width: 7px;
	background: #d9d9d9;
	opacity: 1;
	transition: var(--transition-default);
}

.slider-theme .slider-pagination .slider-pagination_item.swiper-pagination-bullet-active {
	background: var(--accent-color);
	width: 24px;
}

.slider-theme .slider-navigation .button-theme {
	height: 42px;
	width: 42px;
	padding: 0;
	font-size: 1.3em;
	position: absolute;
	top: 50%;
	z-index: 2;
	transform: translateY(-50%);
}

.slider-theme .slider-navigation .button-theme.swiper-button-disabled {
	background: #e3e2e2;
	opacity: .6;
	color: #000;
}

.slider-theme .slider-navigation .button-theme.swiper-button-disabled:before {
	display: none;
}

.slider-theme .slider-navigation .button-theme.slider-navigation_prev {
	left: -42px;
}

.slider-theme .slider-navigation .button-theme.slider-navigation_next {
	right: -42px;
}

.slider-theme.slider-hero .slider-navigation .button-theme.slider-navigation_prev {
	left: 15px;
}

.slider-theme.slider-hero .slider-navigation .button-theme.slider-navigation_next {
	right: 15px;
}

@media screen and (max-width: 991px) {
	.slider-theme .slider-navigation .button-theme {
		height: 32px;
		width: 32px;
		font-size: 1.15em;
	}

	.slider-theme.slider-hero .slider-navigation .button-theme.slider-navigation_prev {
		left: 0;
	}

	.slider-theme.slider-hero .slider-navigation .button-theme.slider-navigation_next {
		right: 0;
	}
}

.section-about .abouts-image:before {
	z-index: 2;
	background-color: var(--secondary-color);
	width: 50px;
	height: 50px;
	right: -5px;
	bottom: -15px;
}

.section-about .about-content {
	padding-top: 50px;
}

.section-about .about-content .about-content_title {
	font-size: 1.75em;
	font-weight: 600;
	color: var(--bs-gray-900);
	line-height: 1.3;
}

.section-about .about-content .about-content_desc {
	margin-top: 18px;
	font-size: 1.075em;
	line-height: 1.6;
	color: var(--text-color);
}

.section-about .about-content .about-content_meta {
	margin-top: 48px;
}

@media screen and (max-width: 1199px) {
	.section-about .about-content .about-content_title {
		font-size: 1.6em;
	}
}

@media screen and (max-width: 991px) {
	.section-about .about-content {
		padding-top: 0;
	}

	.section-about .about-content .about-content_title {
		font-size: 1.45em;
	}

	.section-about .about-content .about-content_desc {
		font-size: 1em;
	}
}

.section-price {
	min-height: 600px;
	margin-bottom: 450px;
	position: relative;
}

.section-price .button-play {
	position: absolute;
	top: calc(50% - 100px);
	left: 50%;
	transform: translate(-50%, -50%);
}

.section-price .button-play span {
	padding: 0;
	padding-left: 10px;
	height: 100px;
	width: 100px;
	font-size: 3.5em;
	background: var(--primary-color);
	color: var(--bs-white);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 0;
	box-shadow: none;
	outline: none;
	position: relative;
	z-index: 2;
	transition: var(--transition-default);
}

.section-price .button-play span i {
	transition: var(--transition-default);
}

.section-price .button-play:after {
	content: "";
	position: absolute;
	pointer-events: none;
	width: 120px;
	height: 120px;
	background-color: var(--primary-hover);
	border-radius: 50%;
	top: -10px;
	right: -10px;
	z-index: -1;
	-webkit-transform: scale(0);
	-ms-transform: scale(0);
	transform: scale(0);
	-webkit-animation: buttonPlay 2s infinite;
	animation: buttonPlay 2s infinite;
}

.section-price .button-play:hover span {
	background: var(--primary-hover);
}

.section-price .button-play:hover span i {
	animation: buttonPlayIcon 2s infinite;
}

@keyframes buttonPlay {
	0% {
		-webkit-transform: scale(0);
		transform: scale(0);
		opacity: 1
	}

	50% {
		opacity: .75
	}

	100% {
		-webkit-transform: scale(1.1);
		transform: scale(1.1);
		opacity: 0
	}
}

@keyframes buttonPlayIcon {
	0% {
		-webkit-transform: scaleX(1);
		transform: scaleX(1)
	}

	10%,
	20% {
		-webkit-transform: scale3d(.9, .9, .9) rotate(-3deg);
		transform: scale3d(.9, .9, .9) rotate(-3deg)
	}

	30%,
	50%,
	70%,
	90% {
		-webkit-transform: scale3d(1.15, 1.15, 1.15) rotate(3deg);
		transform: scale3d(1.15, 1.15, 1.15) rotate(3deg)
	}

	40%,
	60%,
	80% {
		-webkit-transform: scale3d(1.15, 1.15, 1.15) rotate(-3deg);
		transform: scale3d(1.15, 1.15, 1.15) rotate(-3deg)
	}

	to {
		-webkit-transform: scaleX(1);
		transform: scaleX(1)
	}
}

.section-price .price-table {
	border-radius: 12px;
	padding: 18px;
	transform: translateY(400px);
	box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.section-price .price-table .table thead tr th {
	font-size: 1.225em;
}

.section-price .price-table .table-price .table th {
	padding: 12px;
}

.section-price .price-table .table-price .table td {
	padding: 10px 12px;
	font-size: 1.15em;
}

.section-price .price-table .table-price .table td .table-price_desc {
	margin-top: 0;
}

@media screen and (max-width: 1199px) {
	.section-price {
		min-height: auto;
		margin-bottom: 240px;
	}

	.section-price .button-play {
		top: 100px;
		-webkit-transform: translateX(-50%);
		-moz-transform: translateX(-50%);
		-ms-transform: translateX(-50%);
		-o-transform: translateX(-50%);
		transform: translateX(-50%);
	}

	.section-price .button-play span {
		width: 75px;
		height: 75px;
		font-size: 2.5em;
	}

	.section-price .button-play:after {
		width: 95px;
		height: 95px;
	}

	.section-price .price-table {
		-webkit-transform: translateY(200px);
		-moz-transform: translateY(200px);
		-ms-transform: translateY(200px);
		-o-transform: translateY(200px);
		transform: translateY(200px);
		padding: 15px;
	}

	.section-price .price-table .table thead tr th {
		font-size: 1.15em;
	}

	.section-price .price-table .table-price .table td {
		font-size: 1.075em;
	}
}

.section-island .swiper {
	padding: 80px 0;
}

.section-island .island-item {
	-webkit-transform: scale(0.777);
	transform: scale(0.777);
	transition: var(--transition-default);
}

.section-island .swiper-slide-active {
	z-index: 2;
}

.section-island .swiper-slide-active .island-item {
	-webkit-transform: scale(1.452, 1.316);
	transform: scale(1.452, 1.316);
}

@media screen and (max-width: 991px) {
	.section-island .swiper {
		padding: 40px 0;
	}
}

.service-grid {
	display: grid;
	gap: 5px;
	padding: 0 5px;
	grid-template-areas:
			"a a a b b c c c c"
			"a a a d d d d e e";
	width: 100%;
}

.service-grid .service-item:first-child {
	grid-area: a;
}

.service-grid .service-item:nth-child(2) {
	grid-area: b;
}

.service-grid .service-item:nth-child(3) {
	grid-area: c;
}

.service-grid .service-item:nth-child(4) {
	grid-area: d;
}

.service-grid .service-item:nth-child(5) {
	grid-area: e;
}

.service-grid .service-item {
	position: relative;
	flex-shrink: 0;
	overflow: hidden;
}

.service-grid .service-item:first-child .ratio:before {
	--bs-aspect-ratio: 700px;
}

.service-grid .service-item .ratio:before {
	--bs-aspect-ratio: calc(700px / 8 * 4 - 2.5px);
}

.service-grid .service-item .ratio img {
	transition: var(--transition-default);
}

.service-grid .service-item .service-item_title {
	position: absolute;
	width: 100%;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 24px;
	font-weight: 700;
	font-size: 1.3em;
	color: var(--bs-white);
	text-shadow: 2px 4px 3px rgba(0, 0, 0, 0.15);
	z-index: 1;
}

.service-grid .service-item:hover .ratio img {
	transform: scale(1.1);
}

@media screen and (max-width: 991px) {
	.service-grid .service-item:first-child .ratio:before {
		--bs-aspect-ratio: 350px;
	}

	.service-grid .service-item .ratio:before {
		--bs-aspect-ratio: calc(350px / 8 * 4 - 2.5px);
	}

	.service-grid .service-item .service-item_title {
		font-size: 1.15em;
		padding: 18px;
	}
}

@media screen and (max-width: 575px) {
	.service-grid {
		grid-template-areas:
				"a a a"
				"b c c"
				"d d e";
	}

	.service-grid .service-item:first-child .ratio:before {
		--bs-aspect-ratio: 250px;
	}

	.service-grid .service-item .ratio:before {
		--bs-aspect-ratio: calc(250px / 8 * 4 - 2.5px);
	}

	.service-grid .service-item .service-item_title {
		padding: 12px;
		font-size: 1.075em;
	}
}

.section-promotion {
	padding-bottom: 75px;
}

.promotion-inner {
	border: 1px solid var(--secondary-color);
	padding: 60px 45px;
	position: relative;
}

.promotion-inner .section-heading {
	display: inline-flex;
	position: absolute;
	top: -30px;
	background: var(--bs-white);
	padding: 0 30px;
	left: 50%;
	transform: translateX(-50%);
}

.promotion-inner .section-heading .heading-title {
	color: var(--secondary-color);
}

.promotion-inner .promotion-form {
	margin-top: 45px;
	display: flex;
	align-items: center;
	gap: 30px;
	justify-content: space-between;
}

.promotion-inner .promotion-form .promotion-form_content .promotion-form_title {
	font-size: 1.6em;
	font-weight: 500;
	color: var(--secondary-color);
}

.promotion-inner .promotion-form .promotion-form_content .promotion-form_desc {
	font-size: 1.15em;
	line-height: 1.6;
	color: var(--text-color);
}

.promotion-inner .promotion-form .promotion-form_group {
	width: 49%;
	flex-shrink: 0;
	position: relative;
}

.promotion-inner .promotion-form .promotion-form_group .form-control {
	outline: none !important;
	box-shadow: none;
	border-radius: 0;
	padding-left: 0;
	padding-right: 40px;
	border: 0;
	border-bottom: 1px solid #d9d9d9;
	font-size: 1.15em;
	color: var(--bs-gray-900);
}

.promotion-inner .promotion-form .promotion-form_group .form-control::placeholder {
	color: var(--text-color);
	font-style: italic;
}

.promotion-inner .promotion-form .promotion-form_group .link-default {
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	color: var(--secondary-color);
	font-size: 1.15em;
}

.promotion-inner .promotion-button {
	display: inline-flex;
	position: absolute;
	bottom: -23.5px;
	background: var(--bs-white);
	padding: 0 30px;
	left: 50%;
	transform: translateX(-50%);
}

@media screen and (max-width: 991px) {
	.promotion-inner {
		padding: 45px 30px;
	}

	.promotion-inner .section-heading {
		white-space: nowrap;
		top: -18px;
	}

	.promotion-inner .promotion-form {
		gap: 30px;
	}

}

@media screen and (max-width: 768px) {
	.promotion-inner .promotion-form {
		flex-direction: column;
	}

	.promotion-inner .promotion-form .promotion-form_group {
		width: 100%;
	}
}

.section-articles {
	background-color: #f0ede2;
}

.article-card {
	border-radius: 18px;
	padding: 12px;
	background-color: rgba(var(--secondary-rgb), 0.2);
}

.article-card .card-header {
	border-radius: 14px;
	overflow: hidden;
}

.article-card .card-header img {
	transition: var(--transition-default);
}

.article-card .card-body .card-title {
	font-size: 1.45em;
	font-weight: 700;
	line-height: 1.4;
	color: var(--bs-gray-800);
	margin-bottom: 8px;
	transition: var(--transition-default);
}

.article-card .card-body .card-desc {
	--line: 4;
	font-size: 1.075em;
	line-height: 1.6;
	color: var(--text-color);
}

.article-card:hover .card-header img {
	transform: scale(1.1);
}

.article-card:hover .card-body .card-title {
	color: var(--accent-color);
}

.article-card .card-link {
	position: relative;
	margin-top: auto;
	padding-top: 1rem;
	z-index: 3;
}

.article-card.article-card_horizontal {
	flex-direction: row;
}

.article-card.article-card_horizontal .card-header {
	width: 43.5%;
	flex-shrink: 0;
}

.article-card.article-card_horizontal .card-body {
	display: flex;
	flex-direction: column;
}

.article-card.article-card_horizontal .card-title {
	font-size: 1.225em;
}

.article-card.article-card_horizontal .card-desc {
	--line: 2;
}

.article-card.article-card_2 {
	border-radius: 0;
	padding: 0;
	background-color: transparent;
	height: 100%;
}

.article-card.article-card_2 .card-header {
	border-radius: 0;
}

.article-card.article-card_2 .card-body {
	padding-left: 0;
	padding-right: 0;
	display: flex;
	flex-direction: column;
}

.article-card.article-card_2 .card-body .card-title {
	font-size: 1.225em;
	height: 48px;
}

.article-card.article-card_horizontal__2 {
	flex-direction: row-reverse;
	border-radius: 0;
	background: transparent;
	padding: 0;
}

.article-card.article-card_horizontal__2 .card-header {
	width: 27%;
	border-radius: 8px;
}

.article-card.article-card_horizontal__2 .card-header .ratio:before {
	display: none;
}

.article-card.article-card_horizontal__2 .card-header .ratio img {
	position: static;
	height: 100% !important;
	width: auto !important;
}

.article-card.article-card_horizontal__2 .card-body {
	padding: 0 1rem 0 0
}

.article-card.article-card_horizontal__2 .card-title {
	font-size: 1.075em;
}

.article-card.article-card_horizontal__2 .card-time {
	font-size: .925em;
	color: #707070;
}

.article-card.article-card_horizontal__2 + .article-card.article-card_horizontal__2 {
	margin-top: 15px;
	padding-top: 15px;
	border-top: 1px solid #f5f5f5 !important;
}

@media screen and (max-width: 1199px) {
	.article-card .card-body .card-title,
	.article-card.article-card_2 .card-body .card-title {
		font-size: 1.15em;
	}

	.article-card .card-body .card-desc {
		font-size: 1em;
		--line: 3;
	}

	.article-card .card-link {
		padding-top: 10px;
	}

	.article-card.article-card_horizontal .card-body {
		padding: 1rem;
	}

	.article-card.article-card_horizontal .card-body .card-desc {
		display: none;
	}

	.article-card.article-card_horizontal .card-header {
		width: 43.5%;
	}
}

@media screen and (max-width: 991px) {
	.article-card.article-card_horizontal .card-header {
		width: 51.5%;
	}

	.article-card.article-card_horizontal .card-body .card-desc {
		display: -webkit-box;
	}
}

@media screen and (max-width: 575px) {
	.article-card.article-card_horizontal {
		flex-direction: column;
	}

	.article-card.article-card_horizontal .card-header {
		width: 100%;
	}
}

@media screen and (min-width: 575px) and (max-width: 991px) {
	.article-card.article-card_2 .card-body .card-title {
		height: 45px;
	}
}

@media screen and (max-width: 574px) {
	.article-card.article-card_2 .card-body .card-title {
		height: auto;
	}
}

.footer {
	position: relative;
	overflow: hidden;
	padding: 50px 0 20px;
	border-top: 1px solid #e9e9e9;
}

.footer .footer-item .footer-logo {
	margin-bottom: 25px;
}

.footer .footer-item .footer-logo img {
	height: 45px;
}

.footer .footer-item .footer-desc {
	font-size: 1.075em;
	font-weight: 400;
	color: var(--bs-gray-700);
}

.footer .footer-item .footer-social {
	margin-top: 16px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.footer .footer-item .footer-social .footer-social_item {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 34px;
	width: 34px;
	color: var(--bs-white);
	background-color: var(--accent-color);
	border-radius: 50%;
	font-size: 1.15em;
}

.footer .footer-item .footer-social .footer-social_item:hover {
	background-color: var(--accent-hover);
	color: var(--bs-white);
}

.footer .footer-item .footer-title {
	color: var(--bs-black);
	font-weight: 600;
	font-size: 1.3em;
	margin-bottom: 17px;
	padding-top: 25px;
}

.footer .footer-item .footer-list {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.footer .footer-item .footer-list .footer-list_item {
	font-size: 1.075em;
	font-weight: 400;
	color: var(--bs-gray-700);
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.footer .footer-item .footer-list .footer-list_item:before {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	vertical-align: middle;
	content: "";
	width: 6px;
	height: 6px;
	background-color: var(--bs-gray-700);
	transition: var(--transition-default);
}

.footer .footer-item .footer-list .footer-list_item:hover {
	color: var(--accent-color);
}

.footer .footer-item .footer-list .footer-list_item:hover:before {
	background-color: var(--accent-color);
	border-radius: 50%;
}

.footer .footer-item .footer-contact {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.footer .footer-item .footer-contact .footer-contact_item {
	display: flex;
	flex-direction: column;
}

.footer .footer-item .footer-contact .footer-contact_item .footer-contact_text {
	font-size: 1.075em;
	font-weight: 400;
	color: var(--bs-gray-700);
}

.footer .footer-item .footer-contact .footer-contact_item .footer-contact_value {
	font-size: 1.075em;
	font-weight: 600;
	color: var(--bs-gray-700);
}

.footer .footer-item .footer-contact .footer-contact_item .footer-contact_value:hover {
	color: var(--secondary-color);
}

.footer .footer-item .footer-map iframe {
	width: 100%;
	height: 250px;
}

.footer .footer-copyright {
	padding-top: 30px;
	margin-top: 30px;
	border-top: 1px solid #e5e5e5;
	color: #8f8b8b;
}

@media screen  and (max-width: 991px) {
	.footer .footer-item .footer-desc,
	.footer .footer-item .footer-list .footer-list_item,
	.footer .footer-item .footer-contact .footer-contact_item .footer-contact_text,
	.footer .footer-item .footer-contact .footer-contact_item .footer-contact_value {
		font-size: 1em;
	}

	.footer .footer-item .footer-title {
		font-size: 1.15em;
		padding-top: 0;
		margin-bottom: 10px;
	}
}

.floating-contact .floating-contact_button {
	position: fixed;
	height: 60px;
	width: 60px;
	background-color: #ee2f30;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 0;
	outline: none;
	box-shadow: none;
	right: 20px;
	bottom: 20px;
	z-index: 20;
}

.floating-contact .floating-contact_button:after {
	content: "";
	position: absolute;
	pointer-events: none;
	width: 75px;
	height: 75px;
	background-color: var(--accent-color);
	border-radius: 50%;
	top: -7.5px;
	right: -7.5px;
	z-index: -1;
	-webkit-transform: scale(0);
	-ms-transform: scale(0);
	transform: scale(0);
	-webkit-animation: contactPluse 2s infinite;
	animation: contactPluse 2s infinite;
}

@keyframes contactPluse {
	0% {
		-webkit-transform: scale(0);
		transform: scale(0);
		opacity: 1
	}

	50% {
		opacity: .75
	}

	100% {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 0
	}
}

.floating-contact .floating-contact_button .button-static {
	font-size: 9px;
	color: var(--bs-white);
	font-weight: 500;
	white-space: nowrap;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	transition: var(--transition-default);
}

.floating-contact .floating-contact_button .button-static svg {
	height: 24px;
	width: 24px;
	color: var(--bs-white);
}

.floating-contact .floating-contact_button .button-icon {
	position: absolute;
	border-radius: 50%;
	top: 50%;
	left: 50%;
	width: 40px;
	height: 40px;
	margin-top: -20px;
	margin-left: -20px;
	background-color: var(--bs-white);
	color: var(--accent-color);
	transition: var(--transition-default);
	overflow: hidden;
}

.floating-contact .floating-contact_button .hide {
	transition: var(--transition-default);
	opacity: 0;
	transform: scale(0);
}

.floating-contact .floating-contact_button .button-icon .button-icon_list {
	top: 10px;
	left: 12px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 40px;
	position: absolute;
	-webkit-transition: all .2s cubic-bezier(.13, 1.49, .14, -.4);
	-o-transition: all .2s cubic-bezier(.13, 1.49, .14, -.4);
	transition: all .2s cubic-bezier(.13, 1.49, .14, -.4);
	-webkit-animation-delay: 0s;
	animation-delay: 0s;
	-webkit-transform: translateX(30px);
	-ms-transform: translateX(30px);
	transform: translateX(30px);
	height: 24px;
}

.floating-contact .floating-contact_button .button-icon .button-icon_list svg {
	height: 24px;
	width: 24px;
}

.floating-contact .floating-contact_button .button-close {
	color: var(--bs-white);
	-webkit-transform: rotate(180deg) scale(0);
	-ms-transform: rotate(180deg) scale(0);
	transform: rotate(180deg) scale(0);
	transition: var(--transition-default);
	position: absolute;
}

.floating-contact .floating-contact_button .button-close svg {
	transform: translateY(-1px);
}

.floating-contact .floating-contact_list {
	position: fixed;
	bottom: 90px;
	right: 20px;
	z-index: 21;
	width: 300px;
	box-shadow: 0 0 30px rgba(0, 0, 0, .2);
	background-color: var(--bs-white);
	border-radius: 7px;
	transition: ease-out .12s all;
	padding: 10px 0;
	display: flex;
	flex-direction: column;
	-webkit-transform: scale(0);
	-ms-transform: scale(0);
	transform: scale(0);
	-webkit-transform-origin: 90% 105%;
	-ms-transform-origin: 90% 105%;
	transform-origin: 90% 105%;
}

.floating-contact .floating-contact_list:before {
	position: absolute;
	right: 22px;
	border: 8px solid transparent;
	border-bottom: 0;
	border-top: 8px solid var(--bs-white);
	content: "";
	bottom: -7px;
	display: block;
}

.floating-contact .floating-contact_list .floating-contact_list__item {
	display: flex;
	align-items: center;
	height: 54px;
	width: 100%;
	color: #3b3b3b;
	font-size: 1.075em;
	padding: 8px 15px;
	gap: 10px;
	transition: var(--transition-default);
}

.floating-contact .floating-contact_list .floating-contact_list__item:hover {
	background-color: #f0f0f0;
}

.floating-contact .floating-contact_list .floating-contact_list__item .floating-contact_list__icon {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.floating-contact .floating-contact_list .floating-contact_list__item .floating-contact_list__icon svg {
	width: 22px;
	height: 22px;
	color: var(--bs-white);
}

.floating-contact .floating-contact_list .floating-contact_list__item.floating-contact_list__messenger .floating-contact_list__icon {
	background-color: red
}

.floating-contact .floating-contact_list .floating-contact_list__item.floating-contact_list__zalo .floating-contact_list__icon {
	background-color: red
}

.floating-contact.open .floating-contact_button .button-static,
.floating-contact.open .floating-contact_button .button-icon {
	opacity: 0;
	transform: scale(0);
}

.floating-contact.open .floating-contact_list {
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
}

.floating-contact.open .floating-contact_button .button-close {
	-webkit-transform: rotate(0) scale(1);
	-ms-transform: rotate(0) scale(1);
	transform: rotate(0) scale(1);
}

.floating-tools {
	position: fixed;
	display: flex;
	top: 50%;
	transform: translateY(-50%);
	right: 20px;
	flex-direction: column;
	gap: 15px;
	z-index: 20;
}

.floating-tools .floating-tools_item:hover img {
	animation: icon-zoom 1.2s infinite;
}

@keyframes icon-zoom {
	0% {
		-webkit-transform: scaleX(1);
		transform: scaleX(1)
	}

	10%,
	20% {
		-webkit-transform: scale3d(.9, .9, .9) rotate(-3deg);
		transform: scale3d(.9, .9, .9) rotate(-3deg)
	}

	30%,
	50%,
	70%,
	90% {
		-webkit-transform: scale3d(1.3, 1.3, 1.3) rotate(3deg);
		transform: scale3d(1.3, 1.3, 1.3) rotate(3deg)
	}

	40%,
	60%,
	80% {
		-webkit-transform: scale3d(1.3, 1.3, 1.3) rotate(-3deg);
		transform: scale3d(1.3, 1.3, 1.3) rotate(-3deg)
	}

	to {
		-webkit-transform: scaleX(1);
		transform: scaleX(1)
	}
}

@media screen and (max-width: 991px) {
	.floating-contact .floating-contact_button {
		right: 10px;
		bottom: 10px;
		width: 50px;
		height: 50px;
	}

	.floating-contact .floating-contact_button:after {
		width: 65px;
		height: 65px;
	}

	.floating-contact .floating-contact_list {
		right: 10px;
		width: 220px;
		bottom: 70px;
	}

	.floating-contact .floating-contact_list:before {
		right: 17px;
	}

	.floating-tools {
		right: 10px;
		gap: 10px;
	}

	.floating-tools .floating-tools_item img {
		width: 36px;
		height: 36px;
	}
}

.popup-banner {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: rgba(0, 0, 0, 0.75);
	z-index: 1050;
	opacity: 0;
	pointer-events: none;
	visibility: hidden;
	transition: var(--transition-default);
	display: flex;
	justify-content: center;
	align-items: center;
}

.is-popup {
	height: 100vh;
	overflow: hidden;
}

.is-popup .popup-banner {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.popup-banner .popup-banner_content {
	position: relative;
	max-width: 1024px;
	height: auto;
}

.popup-banner .popup-banner_close {
	position: absolute;
	top: -19px;
	right: -19px;
	border-radius: 50%;
	height: 38px;
	width: 38px;
	background: #f3f3f3;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.15em;
	color: #545454;
	z-index: 2;
	border: 0;
}

.popup-banner .popup-banner_close:hover {
	background: #ffffff;
	color: var(--bs-black);
}

@media screen and (max-width: 991px) {
	.popup-banner .popup-banner_content {
		max-width: 85%;
	}

	.popup-banner .popup-banner_close {
		top: -16px;
		right: -16px;
		height: 32px;
		width: 32px;
		font-size: 1.075em;
	}
}

.modal-order .modal-content {
	background: var(--accent-color);
	border: 0;
	border-radius: 0;
}

.modal-order .modal-content .modal-close {
	position: absolute;
	top: -20px;
	right: -20px;
	border-radius: 50%;
	height: 40px;
	width: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #f3f3f3;
	font-size: 1.15em;
	color: var(--bs-black);
	z-index: 2;
}

.modal-order .modal-content .modal-close:hover {
	background: #ffffff;
}

.modal-order .modal-content .modal-body {
	padding: 24px;
}

.modal-order .modal-body .modal-inner {
	border: 1px solid var(--secondary-color);
	padding: 24px;
	border-radius: 0;
}

.modal-order .modal-inner .modal-title {
	font-size: 1.6em;
	color: var(--secondary-color);
	text-align: center;
	font-weight: 600;
	margin-bottom: 30px;
}

.modal-order .modal-inner .modal-form .form-item .form-item_label {
	font-size: 1.075em;
	color: #f5f3f3;
	margin-bottom: 4px;
	font-weight: 500;
}

.modal-order .modal-inner .modal-form .form-item .form-item_input .form-control,
.modal-order .modal-inner .modal-form .form-item .form-item_input .form-select {
	font-size: 1.075em;
	border-radius: 6px;
	border: 0;
}

.modal-order .modal-inner .modal-form .form-item .form-item_input input.form-control,
.modal-order .modal-inner .modal-form .form-item .form-item_input .form-select {
	height: 42px;
}

@media screen and (max-width: 991px) {
	.modal-order .modal-content .modal-body,
	.modal-order .modal-body .modal-inner {
		padding: 16px;
	}

	.modal-order .modal-content .modal-close {
		top: -5px;
		right: -5px;
		height: 32px;
		width: 32px;
		font-size: 1.075em;
	}
}

.section-breadcrumb {
	padding: 70px 0
}

.section-breadcrumb:before {
	position: absolute;
	content: "";
	background: #000;
	opacity: .4;
	z-index: 1;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

.section-breadcrumb .breadcrumb-content {
	text-align: center;
}

.section-breadcrumb .breadcrumb-content .breadcrumb-content_title {
	font-size: 2.5em;
	color: var(--bs-white);
	font-weight: 500;
	line-height: 1.2;
	margin-bottom: 12px;
}

.section-breadcrumb .breadcrumb {
	margin-bottom: 0;
	justify-content: center;
}

.section-breadcrumb .breadcrumb .breadcrumb-item {
	font-size: 1.15em;
	color: var(--bs-white);
	font-weight: 600;
}

.section-breadcrumb .breadcrumb .breadcrumb-item + .breadcrumb-item {
	padding-left: 10px;
}

.section-breadcrumb .breadcrumb .breadcrumb-item + .breadcrumb-item:before {
	float: left;
	padding-right: 10px;
	color: var(--bs-white);
	font-family: "Font Awesome 5 Pro";
	content: "\f105";
	font-weight: 300;
}

.section-breadcrumb .breadcrumb .breadcrumb-item > a {
	color: inherit;
	font-weight: 400;
}

@media screen and (max-width: 991px) {
	.section-breadcrumb {
		padding: 40px 0;
	}

	.section-breadcrumb .breadcrumb-content .breadcrumb-content_title {
		font-size: 1.6em;
		margin-bottom: 5px;
	}

	.section-breadcrumb .breadcrumb-content .breadcrumb .breadcrumb-item {
		font-size: 1em;
	}
}

.page-contact .contact-content .contact-content_title {
	font-size: 2.5em;
	font-weight: 600;
	color: var(--accent-color);
}

.page-contact .contact-content .contact-content_sub {
	font-size: 1.85em;
	font-weight: 600;
	color: var(--accent-color);
	margin-bottom: 15px;
}

.page-contact .contact-content .contact-content_desc {
	margin-top: 8px;
	font-size: 1.15em;
	color: var(--bs-gray-700);
}

.page-contact .contact-content .contact-content_desc p {
	margin-bottom: 5px;
}

.page-contact .contact-content .contact-content_desc p:last-child {
	margin-bottom: 0;
}

.page-contact .contact-content .contact-content_list {
	margin-top: 24px;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.page-contact .contact-content .contact-content_list .contact-content_list__item {
	font-weight: 500;
	font-size: 1.15em;
	color: var(--bs-gray-700);
}

.page-contact .contact-content .contact-content_list .contact-content_list__item > i {
	font-size: 1.15em;
	width: 18px;
	margin-right: 3px;
}

.page-contact .contact-content .contact-content_list .contact-content_list__item > a {
	color: inherit;
}

.page-contact .contact-content .contact-content_list .contact-content_list__item > a:hover {
	color: var(--accent-color);
}

.page-contact .contact-form {
	border-radius: 8px;
	padding: 30px;
	box-shadow: rgba(100, 100, 111, 0.1) 0px 7px 29px 0px;
}

.contact-form .form-item .form-item_label {
	font-size: 1.075em;
	color: var(--bs-gray-800);
	margin-bottom: 4px;
	font-weight: 500;
}

.contact-form .form-item .form-item_input .form-control,
.contact-form .form-item .form-item_input .form-select {
	font-size: 1.075em;
	border-radius: 6px;
}

.contact-form .form-item .form-item_input input.form-control,
.contact-form .form-item .form-item_input .form-select {
	height: 48px;
}

.contact-form .form-item .form-item_group {
	position: relative;
}

.contact-form .form-item .form-item_group .form-group_icon {
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	pointer-events: none;
}

.contact-form .form-item .form-item_group .form-group_icon.form-group_icon__append {
	right: 15px;
}

.contact-form .form-item .form-item_group .form-group_icon.form-group_icon__append + .form-control {
	padding-right: 35px;
}

.contact-form .form-item .form-item_group .form-group_icon.form-group_icon__prepend {
	left: 8px;
}

.contact-form .form-item .form-item_group .form-group_icon.form-group_icon__prepend + .form-control {
	padding-left: 35px;
}

.page-contact .section-map iframe {
	width: 100%;
	height: 500px;
}

@media screen and (max-width: 1199px) {
	.page-contact .contact-content .contact-content_title {
		font-size: 2em;
	}

	.page-contact .contact-content .contact-content_sub {
		font-size: 1.6em;
	}
}

@media screen and (max-width: 991px) {
	.page-contact .contact-content .contact-content_title {
		font-size: 1.6em;
	}

	.page-contact .contact-content .contact-content_sub {
		font-size: 1.45em;
	}

	.page-contact .contact-content .contact-content_desc,
	.page-contact .contact-content .contact-content_list .contact-content_list__item {
		font-size: 1.075em;
	}

	.page-contact .contact-form {
		padding: 20px;
	}
}

.section-pagination {
	margin-top: 30px;
}

.section-pagination .pagination {
	margin-bottom: 0;
	justify-content: center;
}

.section-pagination .pagination .page-item {
	margin: 0 4px;
}

.section-pagination .pagination .page-item .page-link {
	border: 1px solid var(--bs-gray-300);
	background-color: #f1f1f1;
	color: var(--bs-gray-700);
	margin-left: 0;
	padding: 6px 12px 6px;
	font-size: 1em;
	border-radius: 6px;
}

.section-pagination .pagination .page-item .page-link:focus {
	box-shadow: none;
}

.section-pagination .pagination .page-item.active .page-link,
.section-pagination .pagination .page-item:hover .page-link {
	border-color: var(--accent-color);
	color: var(--bs-white);
	background-color: var(--accent-color);
}

.section-sidebar {
	position: sticky;
	top: 0;
	left: 0;
	z-index: 10;
}

.section-sidebar .sidebar-heading {
	font-size: 1.3em;
	font-weight: 700;
	margin-bottom: 22px;
	padding-bottom: 8px;
	position: relative;
}

.section-sidebar .sidebar-heading:before {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 80px;
	height: 2px;
	background: var(--secondary-color);
	content: "";
}

.section-sidebar .sidebar-item + .sidebar-item {
	margin-top: 20px;
}

.section-sidebar .sidebar-item .sidebar-image {
	border-radius: 4px;
	display: block;
	overflow: hidden;
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, .26);
	width: 100%;
}

.article-detail .article-title {
	font-size: 1.6em;
	font-weight: 700;
	margin-bottom: 8px;
}

.article-detail .article-desc {
	margin-bottom: 24px;
	padding-bottom: 24px;
	border-bottom: 1px solid #e9e9e9;
	color: #707070;
}

.article-detail .section-breadcrumb {
	padding: 0;
	margin-bottom: 0;
}

.article-detail .section-breadcrumb:before {
	display: none;
}

.article-detail .section-breadcrumb .breadcrumb {
	justify-content: flex-start;
}

.article-detail .section-breadcrumb .breadcrumb .breadcrumb-item {
	color: #343434;
	font-size: 1em;
	display: flex;
	align-items: center;
	justify-content: center;
}

.article-detail .section-breadcrumb .breadcrumb .breadcrumb-item + .breadcrumb-item:before {
	color: #343434;
	font-size: 1.15em;
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: center;
}

.article-detail .section-breadcrumb .breadcrumb .breadcrumb-item > a:hover {
	color: var(--accent-color);
}

@media screen and (max-width: 991px) {
	.article-detail .article-title {
		font-size: 1.375em;
	}

	.article-detail .section-breadcrumb .breadcrumb .breadcrumb-item {
		font-size: .925em;
	}

	.article-detail .article-desc .article-meta {
		font-size: .925em;
	}
}

.table-price .table {
	font-size: 1em;
	--bs-table-border-color: var(--accent-color)
}

.table-price .table thead tr th {
	background-color: var(--accent-color);
	color: var(--bs-white);
	font-size: 1.375em;
	letter-spacing: 0.5px;
	font-weight: 600;
}

.table-price .table thead tr th span {
	display: block;
	font-style: italic;
	font-size: .85em;
	font-weight: 300;
}

.table-price .table th,
.table-price .table td {
	padding: 18px 15px;
	white-space: nowrap;
}

.table-price .table td {
	font-weight: 600;
	font-size: 1.225em;
	color: var(--accent-color);
	width: 33.333%;
}

.table-price .table td .table-price_title {
	font-weight: 700;
}

.table-price .table td .table-price_desc {
	font-size: .925em;
	margin-top: 3px;
}

.table-price .table td .table-price_text {
	font-size: .925em;
	display: flex;
	flex-direction: column;
}

.table-price .table td .table-price_text span {
	font-size: .875em;
	font-weight: 400;
}

.table-price .table-bordered > :not(caption) > * {
	border-width: 2px 0;
}

.table-price .table-bordered > :not(caption) > * > * {
	border-width: 0 2px;
}

.table-text {
	font-size: 1.075em;
}

@media screen and (max-width: 991px) {
	.table-price .table th,
	.table-price .table td {
		padding: 10px 12px;
		white-space: nowrap;
	}

	.table-price .table thead tr th {
		font-size: 1.225em;
	}

	.table-price .table td {
		font-size: 1.15em;
		width: auto;
	}
}

.hotel-card {
	height: 100%;
}

.hotel-card .card-header {
	position: relative;
	z-index: 2;
}

.hotel-card:hover {
	-webkit-box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
	box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
}

.hotel-card:hover .card-header img {
	transform: scale(1.05);
}

.hotel-card:hover .card-body .card-title {
	color: var(--accent-color);
}

.hotel-card .card-body {
	border-top-left-radius: 0 !important;
	border-top-right-radius: 0 !important;
	position: relative;
	z-index: 1;
	margin-top: -5px;
	padding-top: calc(var(--bs-card-spacer-y) + 5px);
	padding-bottom: 0;
	display: flex;
	flex-direction: column;
}

.hotel-card .card-body .card-title {
	font-size: 1.45em;
	font-weight: 600;
	color: #000000;
	margin-bottom: 10px;
}

.hotel-card .card-body .card-desc {
	--line: 3;
	color: #3b3a3a;
	font-size: 1.075em;
	line-height: 1.6;
	margin-bottom: 10px;
}

.hotel-card .card-body .card-desc p:last-child {
	margin-bottom: 0;
}

.hotel-card .card-body .card-meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: #3b3a3a;
	font-size: 1.075em;
	flex-wrap: wrap;
	white-space: nowrap;
	gap: 8px;
	margin-bottom: 10px;
}

.hotel-card .card-body .card-meta .card-meta_item {
	display: flex;
	align-items: center;
	gap: 6px;
}

.hotel-card .card-footer {
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 15px;
	margin: auto calc(-1 * var(--bs-card-spacer-x)) 0;
	width: calc(100% + var(--bs-card-spacer-x) * 2);
	background: transparent;
}

.hotel-card .card-footer .card-price {
	padding-left: var(--bs-card-spacer-x);
	color: #646363;
}

.hotel-card .card-footer .card-price span {
	font-weight: 600;
	color: var(--bs-black);
	font-size: 1.15em;
}

.hotel-card .card-footer .button-theme {
	border-radius: 0;
	margin: -1px -1px -1px 0;
	font-size: 1.075em;
}

@media screen and (max-width: 991px) {
	.hotel-card .card-body .card-title {
		font-size: 1.3em;
	}

	.hotel-card .card-body .card-meta {
		font-size: 1em;
	}

	.hotel-card .card-footer .card-price span {
		font-size: 1.075em;
	}

	.hotel-card .card-footer {
		gap: 5px;
		white-space: nowrap;
	}

	.hotel-card .card-footer .button-theme {
		font-size: 1em;
		padding: 12px;
	}
}

.page-about .about-heading .about-heading_title {
	font-size: 1.85em;
	font-weight: 700;
	color: var(--accent-color);
	margin-bottom: 15px;
}

.page-about .about-heading .about-heading_desc {
	color: #232323;
	font-size: 1.15em;
	line-height: 1.7;
}

.page-about .about-heading .about-heading_desc p:last-child {
	margin-bottom: 0
}

.page-about .about-gallery.slider-theme .slider-navigation .button-theme.slider-navigation_prev {
	left: -60px;
}

.page-about .about-gallery.slider-theme .slider-navigation .button-theme.slider-navigation_next {
	right: -60px;
}

.page-about .section-utilities {
	background-color: #091723;
}

.page-about .section-utilities .about-heading .about-heading_title {
	color: var(--bs-white);
}

.page-about .section-utilities .about-heading .about-heading_desc {
	color: var(--bs-white);
}

.page-about .section-utilities .utilities-content .utilities-content_title {
	font-size: 1.45em;
	font-weight: 700;
	color: var(--bs-white);
	margin-bottom: 15px;
}

.page-about .section-utilities .utilities-content .utilities-content_desc {
	color: #e1e1e1;
	font-size: 1.15em;
	line-height: 1.7;
}

.page-about .about-utilities.slider-theme .slider-navigation .button-theme.slider-navigation_prev {
	left: -60px;
}

.page-about .about-utilities.slider-theme .slider-navigation .button-theme.slider-navigation_next {
	right: -60px;
}

@media screen and (max-width: 991px) {
	.page-about .about-heading .about-heading_title {
		font-size: 1.6em;
	}

	.page-about .about-heading .about-heading_desc {
		font-size: 1.075em;
	}

	.page-about .about-gallery.slider-theme .slider-navigation,
	.page-about .about-utilities.slider-theme .slider-navigation {
		display: none;
	}

	.page-about .section-utilities .utilities-content .utilities-content_title {
		font-size: 1.3em;
	}

	.page-about .section-utilities .utilities-content .utilities-content_desc {
		font-size: 1.075em;
	}
}

.section-golf .golf-course {
	height: 75vh;
}

.section-golf .golf-item:nth-child(odd) {
	background: #f0ede2;
}

.section-golf .golf-item.golf-item_reverse .section-gap .row {
	flex-direction: row-reverse;
}

.section-golf .golf-card {
	position: relative;
	overflow: hidden;
}

.section-golf .golf-card .golf-image {
	overflow: hidden;
}

.section-golf .golf-card .golf-image img {
	transition: var(--transition-default);
}

.section-golf .golf-card .golf-title {
	transition: var(--transition-default);
	font-size: 1.15em;
	font-weight: 600;
	color: var(--bs-black);
	margin-top: 8px;
	text-align: center;
}

.section-golf .golf-card:hover .golf-image img {
	transform: scale(1.1);
}

.section-golf .golf-card:hover .golf-title {
	color: var(--accent-color);
}

.section-golf .section-heading {
	margin-bottom: 15px;
}

.section-golf .section-heading .heading-title {
	font-size: 2.25em;
	color: var(--bs-black);
}


.section-golf .section-heading .heading-desc {
	font-size: 1.15em;
}

.section-golf .section-heading .heading-sub {
	font-size: 1.8em;
}

.detail-golf {
	display: flex;
	background-color: #e7fdea;
}

.detail-golf .detail-image {
	width: 50%;
	flex-shrink: 0;
}

.detail-golf .detail-content {
	align-self: flex-start;
	padding: 30px;
}

.detail-golf .detail-content {
	align-self: flex-start;
	padding: 45px 30px 30px;
	position: relative;
}

.detail-golf .detail-content .detail-close {
	font-size: 1.6em;
	color: var(--bs-black);
	top: 15px;
	right: 15px;
	position: absolute;
	z-index: 2;
}

.detail-golf .detail-content .detail-heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.detail-golf .detail-content .detail-heading .detail-name {
	font-size: 1.45em;
	color: var(--bs-black);
	font-weight: 600;
}

.detail-golf .detail-content .detail-heading .detail-size {
	font-size: 1.6em;
	color: var(--bs-black);
	font-weight: 600;
}

.detail-golf .detail-content .detail-desc {
	margin-top: 30px;
	font-size: 1.075em;
	color: var(--bs-black);
}

.detail-golf .detail-content .detail-teemarker {
	margin-top: 30px;
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.detail-golf .detail-content .detail-teemarker .detail-teemarker_item {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 1.6em;
	font-weight: 500;
	line-height: 1;
}

.detail-golf .detail-content .detail-teemarker .detail-teemarker_item .detail-teemarker_image {
	flex-shrink: 0;
}

.section-tongquat .swiper {
	padding: 40px 0;
}

.section-tongquat .island-item {
	-webkit-transform: scale(0.777);
	transform: scale(0.777);
	transition: var(--transition-default);
}

.section-tongquat .swiper-slide-active {
	z-index: 2;
}

.section-tongquat .swiper-slide-active .island-item {
	-webkit-transform: scale(1.452, 1.316);
	transform: scale(1.452, 1.316);
}

@media screen and (max-width: 991px) {
	.section-golf .golf-course {
		height: 50vh;
	}

	.section-golf .section-heading .heading-title {
		font-size: 1.45em;
	}

	.section-golf .section-heading .heading-desc {
		font-size: 1em;
	}

	.section-golf .golf-card .golf-title {
		font-size: 1.075em;
	}

	.section-tongquat .swiper {
		padding: 0;
	}

	.detail-golf {
		flex-direction: column;
	}

	.detail-golf .detail-image {
		width: 100%;
		height: 250px;
	}

	.detail-golf .detail-content {
		padding: 30px 15px;
		position: static;
	}

	.detail-golf .detail-content .detail-close {
		top: 5px;
		right: 5px;
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
		background: #f3f3f3;
		color: var(--bs-black);
		z-index: 2;
		height: 32px;
		width: 32px;
		font-size: 1.075em;
	}

	.detail-golf .detail-content .detail-heading {
		margin-top: 0;
		font-size: 0.925em;
	}

	.detail-golf .detail-content .detail-desc {
		margin-top: 15px;
		font-size: 1em;
	}

	.detail-golf .detail-content .detail-teemarker .detail-teemarker_item {
		font-size: 1.15em;
	}

	.detail-golf .detail-content .detail-teemarker .detail-teemarker_item .detail-teemarker_image img {
		width: 40px;
	}
}

.section-tabs .nav-tabs {
	margin-bottom: 0;
	gap: 6px;
}

.section-tabs .nav-tabs .nav-link {
	border: 0;
	background: var(--accent-color);
	color: var(--bs-white);
	border-radius: 6px;
	font-weight: 600;
	font-size: 1em;
}

.section-tabs .nav-tabs .nav-link:hover {
	background: var(--secondary-color);
}

.section-tabs .nav-tabs .nav-link.active {
	background: var(--secondary-color);
	color: var(--bs-white);
	box-shadow: .25rem .5rem .5rem 0 rgba(0, 0, 0, 0.2) !important;
}

.page-hotel .hotel-content .hotel-title {
	font-size: 1.85em;
	color: var(--accent-color);
	font-weight: 700;
}

.page-hotel .hotel-content .hotel-price {
	padding: 12px 0;
	border-top: 1px solid #e9e9e9;
	border-bottom: 1px solid #e9e9e9;
	font-size: 1.3em;
	font-weight: 600;
	margin-top: 12px;
}

.page-hotel .hotel-content .hotel-price span {
	color: var(--bs-danger);
}

.page-hotel .hotel-content .hotel-desc {
	margin-top: 12px;
	color: #3b3a3a;
	font-size: 1.075em;
	line-height: 1.6;
}

.page-hotel .hotel-content .hotel-form {
	margin-top: 12px;
	border-radius: 12px;
	padding: 18px 24px;
	background-color: #fffefa;
	border: 1px solid rgba(var(--secondary-rgb), 0.3);
}

.page-hotel .hotel-images {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.page-hotel .hotel-images .hotel-image_item {
	overflow: hidden;
	border-radius: 6px;
	cursor: pointer;
	transition: var(--transition-default);
}

.page-hotel .hotel-images .hotel-slider_thumb .hotel-image_item {
	opacity: .6;
}

.page-hotel .hotel-images .hotel-slider_thumb .swiper-slide-thumb-active .hotel-image_item {
	opacity: 1;
}

.page-hotel .hotel-images .slider-theme .slider-navigation .button-theme.slider-navigation_prev {
	left: 10px;
}

.page-hotel .hotel-images .slider-theme .slider-navigation .button-theme.slider-navigation_next {
	right: 10px;
}

.page-hotel .page-hotel_content {
	background: #fffefa;
	border-top: 1px solid rgba(var(--secondary-rgb), 0.3);
	border-bottom: 1px solid rgba(var(--secondary-rgb), 0.3);
}

.page-hotel .hotel-related.slider-theme .slider-navigation .button-theme.slider-navigation_prev {
	left: -60px;
}

.page-hotel .hotel-related.slider-theme .slider-navigation .button-theme.slider-navigation_next {
	right: -60px;
}

.daterangepicker td.active, .daterangepicker td.active:hover {
	background: var(--accent-color);
}

@media screen and (max-width: 991px) {
	.page-hotel .hotel-content .hotel-title {
		font-size: 1.45em;
	}

	.page-hotel .hotel-content .hotel-price {
		font-size: 1.15em;
	}

	.page-hotel .hotel-content .hotel-form {
		padding: 12px 18px;
	}
}

.section-proshop,
.section-room {
	position: relative;
	overflow: hidden;
}

.section-proshop:before {
	position: absolute;
	bottom: 0;
	right: 0;
	height: 250px;
	width: 500px;
	background: var(--accent-color);
	content: "";
	display: block;
}

.section-proshop .section-heading .heading-title,
.section-golfcourse .section-heading .heading-title,
.section-room .section-heading .heading-title,
.section-locker .section-heading .heading-title {
	font-size: 3.5em;
	font-weight: 600;
}

.section-proshop .section-heading .heading-desc,
.section-golfcourse .section-heading .heading-desc,
.section-room .section-heading .heading-desc,
.section-locker .section-heading .heading-desc {
	font-size: 1.15em;
	line-height: 1.8;
	color: inherit;
}

.section-proshop .proshop-item,
.section-golfcourse .golfcourse-item {
	border-radius: 35px;
	overflow: hidden;
}

.section-proshop .slider-theme .slider-navigation .button-theme.slider-navigation_prev,
.section-golfcourse .slider-theme .slider-navigation .button-theme.slider-navigation_prev {
	left: -60px;
}

.section-proshop .slider-theme .slider-navigation .button-theme.slider-navigation_next,
.section-golfcourse .slider-theme .slider-navigation .button-theme.slider-navigation_next {
	right: -60px;
}

.section-golfcourse,
.section-locker {
	background: #f0ede2;
}

.section-room:before {
	position: absolute;
	bottom: -250px;
	left: -250px;
	height: 500px;
	width: 500px;
	border-radius: 50%;
	background: var(--secondary-color);
	opacity: .1;
	content: "";
	display: block;
}

.section-locker .locker-gallery {
	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	align-items: center;
	gap: 16px;
	margin-top: 40px;
}

.section-locker .locker-gallery .gallery-item {
	grid-column: span 4/span 4
}

.section-locker .locker-gallery .gallery-item .gallery-item_grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
	align-items: center;
}

.section-locker .locker-gallery .gallery-item .gallery-item_grid .gallery-item_grid__item {
	display: grid;
	grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
	gap: 16px;
}

.section-locker .locker-gallery .gallery-item img {
	width: 100%;
	overflow: hidden;
	border-radius: 16px;
	box-shadow: 0 0 3px rgb(60 72 88 / 0.15);
}

@media screen and (max-width: 991px) {
	.section-proshop:before {
		height: 200px;
		width: 400px;
	}

	.section-proshop .section-heading .heading-title,
	.section-golfcourse .section-heading .heading-title,
	.section-room .section-heading .heading-title,
	.section-locker .section-heading .heading-title {
		font-size: 2em;
	}

	.section-proshop .section-heading .heading-desc,
	.section-golfcourse .section-heading .heading-desc,
	.section-room .section-heading .heading-desc,
	.section-locker .section-heading .heading-desc {
		font-size: 1.075em;
	}

	.section-proshop .slider-theme .slider-navigation .button-theme,
	.section-golfcourse .slider-theme .slider-navigation .button-theme {
		display: none;
	}

	.section-locker .locker-gallery {
		grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
	}
}

.section-restaurant .section-heading .heading-title {
	font-weight: 600;
	line-height: 1.3;
}

.section-restaurant .section-heading .heading-title span {
	font-weight: 700;
}

.section-restaurant .section-heading .heading-desc {
	font-size: 1.15em;
	line-height: 1.8;
	color: inherit;
	margin-top: 25px;
}

.section-restaurant .section-heading .heading-meta {
	font-weight: 600;
	margin-top: 25px;
}

.section-restaurant .swiper {
	padding: 50px 0;
}

.section-restaurant .restaurant-item {
	-webkit-transform: scale(0.85);
	transform: scale(0.85);
	transition: var(--transition-default);
	border-radius: 35px;
	overflow: hidden;
	opacity: 0.5;
}

.section-restaurant .swiper-slide-active {
	z-index: 2;
}

.section-restaurant .swiper-slide-active .restaurant-item {
	-webkit-transform: scale(1.25, 1.15);
	transform: scale(1.25, 1.15);
	opacity: 1;
}

.section-menu {
	background: #f0ede2;
}

.section-menu .menu-item {
	display: flex;
	flex-direction: column;
	gap: 12px;
	text-align: center;
}

.section-menu .menu-item .menu-image {
	border-radius: 16px;
	overflow: hidden;
}

.section-menu .menu-item .menu-title {
	font-size: 1.075em;
	color: var(--accent-color);
	font-weight: 700;
}

.section-menu .slider-theme .slider-navigation .button-theme.slider-navigation_prev {
	left: -60px;
}

.section-menu .slider-theme .slider-navigation .button-theme.slider-navigation_next {
	right: -60px;
}

.section-restaurant_2 {
	padding: 100px 0;
}

.section-restaurant_2:before {
	background: rgba(0, 0, 0, .4);
	height: 100%;
	top: 0;
	left: 0;
	width: 100%;
}

.section-restaurant_2 .section-heading {
	text-align: center;
}

.section-restaurant_2 .section-heading .heading-title {
	font-weight: 600;
	line-height: 1.3;
	color: var(--bs-white);
}

.section-restaurant_2 .section-heading .heading-title span {
	font-weight: 700;
}

.section-restaurant_2 .section-heading .heading-desc {
	font-size: 1.15em;
	line-height: 1.8;
	margin-top: 25px;
	color: var(--bs-white);
}

.section-restaurant_2 .section-heading .heading-meta {
	font-weight: 600;
	margin-top: 25px;
	color: var(--bs-white);
	padding-left: 0;
	padding-top: 80px;
}

.section-restaurant_2 .section-heading .heading-meta:before {
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	opacity: .6;
}

.section-station {
	position: relative;
	overflow: hidden;
	background: #f0ede2;
}

.section-station:before {
	position: absolute;
	bottom: 0;
	right: 0;
	height: 250px;
	width: 500px;
	background: var(--accent-color);
	content: "";
	display: block;
}

.section-station .slider-theme .slider-navigation .button-theme.slider-navigation_prev {
	left: -60px;
}

.section-station .slider-theme .slider-navigation .button-theme.slider-navigation_next {
	right: -60px;
}

.section-station .section-heading .heading-desc {
	font-size: 1.15em;
	line-height: 1.8;
	color: inherit;
}

.section-station .station-item {
	border-radius: 35px;
	overflow: hidden;
}

@media screen and (max-width: 991px) {
	.section-station:before {
		height: 200px;
		width: 400px;
	}

	.section-restaurant .swiper {
		padding: 20px 0;
	}

	.section-menu .slider-theme .slider-navigation .button-theme,
	.section-station .slider-theme .slider-navigation .button-theme {
		display: none;
	}

	.section-restaurant .section-heading .heading-desc,
	.section-restaurant_2 .section-heading .heading-desc {
		font-size: 1.075em;
	}
}