:root{
	--primary-color: #b49056;
	--second-color: #da3c3c;
	--normal-color: #111B27;
	--primamry-font: 'DM Sans', sans-serif;
	--second-font: "Poppins", sans-serif;
	--three-font: 'Playfair Display';
}
*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;

}
body{
	font-family: 'DM Sans', sans-serif;
	font-size: 16px;
	font-weight: 400;
	color: #6e777f;
}
img{
	max-width:100%;
}
a{
	text-decoration: none;
	transition: all .3s ease;
}
a:hover{
	color: var(--second-color);
	text-decoration: none;
	transition: all .3s ease;
}
.row-collapse{
	margin-left:0;
	margin-right:0;
}
.row-collapse> div{
	padding-left:0;
	padding-right:0;
}
ul,ol{
	list-style: none;
}

/*menu mobile*/
.overlay{
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background-color: #00000066;
	z-index: 10;
	display: none;
}
.menu__mobile{
	position: fixed;
	width: 320px;
	height: 100%;
	background-color: #fff;
	top: 0;
	left: 0;
	transform: translateX(-100%);
	transition: all ease-in-out 0.3s;
	z-index: 20;
	/* display: none; */
	opacity: 0;
	visibility: hidden;
}
.menu__mobile.active{
	transform: translateX(0);
	opacity: 1;
	visibility: visible;
}
.menu__mobile .language{
	padding:0 20px;
}
.menu__mobile .choose__language p{
	color:var(--normal-color);
	display:flex;
	align-items: center;
	justify-content: space-between;
}
.menu__mobile .list__language{
	position:relative;
	top:0;
	left:0;
	transform: translate(0);
	box-shadow:none;
	display:none;
}
.menu__mobile .list__language.active{
	transform: scale(1);
	display:block;
}
.logo__mobile{
	text-align: center;
	padding: 20px 0;
	background-color: #0a1d35;
}
.logo__mobile img{
	object-fit: cover;
	width:120px;
}
.back__menu{
	padding: 15px 20px;
	background-color: #f5f5f5;
}
.back__menu i{
	color: gray;
}
.main__menu__mobile{
	padding: 0 20px;
}

.menu__title__mobile{
	font-size: 16px;
	color: #111B27 !important;
	display: block;
	height: 50px;
	line-height: 50px;
	border-bottom: 1px solid #eee;
}
.menu__title__mobile i{
	color: #111B27;
	transform: rotate(0deg);
	transition: all .3s ease;
}
.rotate__icons .menu__title__mobile i{
	transform: rotate(180deg);
	transition: all .3s ease;
}
.dropdown__menu__mobile{
	/* display: none; */
	padding: 0 20px;
}
.dropdown__menu__mobile li{
	display: block;
	/* height: 50px; */
	line-height: 50px;
	border-bottom: 1px solid #eee;
}
.dropdown__menu__mobile li:last-child{
	padding-bottom: 0;
}
.dropdown__menu__mobile li a{
	font-size: 16px;
	color: #111B27;
}

.sub__menu__mobile.show__dropdown .dropdown__menu__mobile{
	display: block;
}
.sub__menu__mobile__child.show__dropdown .dropdown__menu__mobile__child{
	display: block;
}
.sub__menu__mobile.rotate__icons p i,
.sub__menu__mobile__child.show__dropdown i{
	transform: rotate(180deg);
	transition: all linear 0.2s;
}
.dropdown__menu__child{
	position: absolute;
	top: 10px;
	right: 100%;
	border-radius: 10px;
	background-color: #fff;
	width: 240px;
	opacity: 0;
}
.sub__menu__title__child{
	position: relative;
}
.sub__menu__title__child:hover .dropdown__menu__child{
	display: block;
	top: 0;
	opacity: 1;
	transition: all .3s;
}
.sub__menu__mobile{
	position: relative;
}
.sub__menu__mobile .menu__title__mobile{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.sub__menu__mobile p{
	position: absolute;
	right: 10px;
	top: 15px;
	line-height: normal;
}
/*end menu mobile*/

/*fixed search*/

.main__fixed__search.active{
	opacity: 1;
	transform: scale(1);
	visibility: visible;
	transition: all ease-in-out 0.3s;
}
.main__fixed__search{
	position: fixed;
	left: 0;
	top: 0;
	background-color: rgba(0, 0, 0, 0.95);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	width: 100%;
	height: 100%;
	opacity: 0;
	transform: scale(0);
	transform-origin: center center;
	visibility: hidden;
	transition: all ease-in-out 0.3s;
	z-index: 200;
}
.form-fixed-search input{
	font-family: "Poppins", sans-serif;
	width: 100%;
	font-size: 18px;
	color: #000;
	font-weight: 500;
	border: 2px solid var(--second-color);
	border-radius: 50px;
	outline: none;
	background-color: transparent;
	padding: 10px 30px;
}
.form-fixed-search input::placeholder{
	color: #fff;
}
.form-fixed-search{
	position: fixed;
	width: max-content;
	left: 50%;
	top: 60%;
	transform: translate(-50%, -50%);
	width: 50%;
	opacity: 0;
	visibility: hidden;
	z-index: 400;
	overflow: hidden;
	transition: all ease-in-out 0.5s;
}
.form-fixed-search.active{
	opacity: 1;
	top: 50%;
	visibility: visible;
	transition: all ease-in-out 0.5s;
}
.form-fixed-search button{
	position: absolute;
	top: 50% ;
	right: 0px;
	padding: 10px 30px;
	border-radius: 0 50px 50px 0;
	border: none;
	outline: none !important;
	background-color: transparent;
	font-size: 33px;
	color: var(--second-color);
	transform: translateY(-50%);
	cursor: pointer;
}
.form-fixed-search button i{
	font-size: 22px;
	color: #fff;
}
/*end fixed search*/

/*header*/
.w_95{
	width: 95%;
	margin: auto;
}
@media(max-width:767.98px){
	.w_95{
		width:100%;
		padding: 0 15px;
	}
}
.header__location{
	background-color: #111B27;
}
.header__contact{
	display: flex;
	margin-bottom: 0;
}
.main__header__location{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	padding: 20px 0;
}
.header__contact li a{
	color: #e0e0e0;
	text-decoration: none;
}
.header__contact li:not(:first-child) a{
	padding-left: 30px;
}
.header__contact li:not(:last-child) a{
	padding-right: 30px;
	border-right: 1px solid #6e777f;
}
.language{
	position: relative;
}
.choose__language p{
	color: #e0e0e0;
	margin-bottom: 0;
	cursor: pointer;
}
.choose__language i{
	transition: all ease-in-out 0.3s;
}
.choose__language.active i{
	transform: rotate(180deg);
	transition: all ease-in-out 0.3s;
}
.list__language{
	position: absolute;
	top: calc(100% + 15px);
	left: -30px;
	transform: scale(0);
	transform-origin: top center;
	box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
	background-color: #fff;
	padding: 10px 0;
	transition: all .3s;
	z-index: 10;
}
.list__language.active{
	transform: scale(1);
	transition: all .3s;
}
.list__language li a{
	display: flex;
	align-items: center;
	gap: 3px;
	padding: 7px 15px;
	font-size: 14px;
	color: #444444;
}

header{
	position: relative;
	width: 100%;
	background-color: #fff;
	z-index: 3;
	transition: all linear .5s;
}
header::before{
	content: "";
	position: absolute;
	width: 20%;
	height: 100%;
	left: -25px;
	top: 0;
	background-color: #0a1d35;
	transform: skewX(-25deg);
	z-index: -1;
}
header.active{
	position: sticky;
	top: 0;
	left: 0;
	width: 100%;
	opacity: 1;
	background: #fff;
	visibility: visible;
	animation: fadeInDown linear .6s;
	z-index: 10;
	box-shadow: 0px 7px 35px 4px rgba(0,0,0,0.1);
}
@keyframes fadeInDown{
	0%{
		opacity: 0;
		transform: translateY(-20px);
	}
	100%{
		opacity: 1;
		transform: translateY(0);
	}
}
.header{
	height: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 0 auto;
}

.menu__bar{
	display: none;
	padding: 10px 15px;
	background-color: var(--second-color);
}
.menu__bar i{
	color: #fff;
	font-size: 25px;
}
.logo{
	position: relative;
	width: 28%;
	height: 100%;
	max-width:200px;
	text-align: center;
}
/*.logo::before{
content: "";
position: absolute;
width: 2px;
height: 100%;
background-color: #fff;
right: 60px;
top: 0;
transform: rotate(34deg);
}
.logo::after{
content: "";
position: absolute;
width: 2px;
height: 100%;
background-color: #fff;
right: 70px;
top: 0;
transform: rotate(34deg);
}*/
.logo img{
	width: auto;
	height: 100%;
	object-fit: cover;
	max-width:100%;
	max-height:80px;
}
.menu{
	width: auto;
	height: 100%;
}
.nav__bar{
	height: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 0;
}
.sub__menu{
	padding: 0 10px;
	position: relative;
}
.sub__menu > a{
	font-size: 15px;
	color: #0a1d35;
	font-weight: 600;
	letter-spacing: 1px;
	padding: 35px 0;
	display: flex;
	align-items: center;
	text-transform: uppercase;
	text-decoration: none !important;
}
.sub__menu__title{
	color: #0a1d35 !important;
}
.sub__menu__title i{
	color: #727272;
	font-size: 13px;
}
.sub__menu__title:hover,
.sub__menu__title:hover i{
	color: var(--second-color) !important;
}
.btn__header a,.btn-primary{
	position: relative;
	display: inline-block;
	padding: 15px 30px;
	background-color: var(--second-color);
	border: 0;
	color: #fff !important;
	text-transform: uppercase;
	font-weight: 500;
	border-radius: 3px;
	text-decoration: none !important;
	overflow: hidden;
	z-index: 1;
	white-space: nowrap;
}
.btn-small{
	padding:10px 20px;
}
.btn__header a::before,.btn-primary:before{
	content: "";
	position: absolute;
	width: 100%;
	height: 200%;
	left: -100%;
	top: -100%;
	background-color: #0a1d35;
	transform: skewX(-40deg);
	z-index: -1;
	transition: all .6s;
}
.btn__header a:hover::before,.btn-primary:hover::before{
	width: 240%;
	top: 50%;
	transform: translateY(-50%) skewX(-40deg);
	transition: all .6s;
}
.form-control{
	padding: 10px;
	height: auto;
	color: var(--normal-color);
	border-color: #d5d6d7;
	border-radius: 3px;
}
.form-control[readonly]{
	background: transparent;
}
.form-control:focus{
	box-shadow: none;
	background-color: #f1f3f6;
}

.dropdown__menu{
	background-color: #fff;
	position: absolute;
	top: 100%;
	left: 0;
	width: 200px;
	transform: scaleY(0);
	border: 1px solid #dedede;
	opacity: 0;
	transform-origin: top center;
	z-index: 3;
	transition: all linear 0.2s;
}
.sub__menu:hover .dropdown__menu{
	opacity: 1;
	transform: scaleY(1);
	transition: all linear 0.2s;
}
.dropdown__menu li{
	padding: 15px 10px;
}
.dropdown__menu li a{
	font-size: 16px;
	color: #0a1d35;
	font-weight: 500;
	padding-left: 10px;
	display: block;
	transition: all .3s;
}


.dropdown__menu li:hover a{
	color: var(--second-color);
	text-decoration: none;
	transition: all .3s;
}

.search{
	border-radius: 50%;
	border: 1px solid #e0e0e0;
}
.search i{
	display: inline-block;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	font-size: 14px;
	color: #0a1d35;
	text-align: center;
	line-height: 48px;
	cursor: pointer;
}
/*end header*/

/*banner*/
.heading-title{
	display: block;
	margin-bottom: 40px;
}
.heading-title .sub-title{
	color: var(--second-color);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 6.4px;
}
.heading-title .sec-title{
	font-family: 'Playfair Display';
	font-size: 48px;
	font-weight: 700;
	color: #111B27;
}
.banner__home__img img{
	height: auto;
	object-fit: cover;
	min-height:300px;
	filter: brightness(0.5);
}
.slide__banner .owl-nav button.owl-prev{
	position: absolute;
	top: 50%;
	left: 2.5%;
	transform: translateY(-50%);
	width: 55px;
	height: 55px;
	border: 1px solid #fff !important;
	color: #fff !important;
	background-color: transparent !important;
	outline: none !important;
	border-radius: 50%;
	z-index: 3;
}
.slide__banner .owl-nav button.owl-next{
	position: absolute;
	top: 50%;
	right: 2.5%;
	transform: translateY(-50%);
	width: 55px;
	height: 55px;
	border: 1px solid #fff !important;
	color: #fff !important;
	background-color: transparent !important;
	outline: none !important;
	border-radius: 50%;
	z-index: 3;
}
.list__banner{
	position: relative;
}
.slide__text{
	position: absolute;
	top: 30%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	opacity: 0;
	transition: all .7s;
	z-index: 3;
}
.slide__text span{
	font-size: 20px;
	font-weight: 500;
	color: #fff;
	text-transform: uppercase;
	display: block;
	margin-bottom: 10px;
	transform: translateY(-50px);
	opacity: 0;
	transition: all .4s;
}
.slide__text h1{
	font-family: 'Playfair Display';
	font-size: 74px;
	font-weight: 800;
	color: #fff;
	text-transform: uppercase;
	margin-bottom: 10px;
	transform: translateY(-50px);
	opacity: 0;
	transition: all .4s;
}
.slide__text p{
	position: relative;
	font-size: 24px;
	font-weight: 700;
	color: #fff;
	text-transform: uppercase;
	width: max-content;
	margin: auto;
	transform: translateY(-50px);
	opacity: 0;
	transition: all .4s;
}
.slide__text p::before{
	content: "";
	position: absolute;
	width: 100px;
	height: 2px;
	background-color: #fff;
	left: -120px;
	top: 50%;
	transform: translateY(-50%);
}
.slide__text p::after{
	content: "";
	position: absolute;
	width: 100px;
	height: 2px;
	background-color: #fff;
	right: -120px;
	top: 50%;
	transform: translateY(-50%);
}
.slide__banner.owl-drag .owl-item.active .slide__text{
	top: 50%;
	opacity: 1;
	transition: all .7s;
}
.slide__banner.owl-drag .owl-item.active .slide__text span{
	transform: translateY(0);
	opacity: 1;
	transition-delay: .5s;
}
.slide__banner.owl-drag .owl-item.active .slide__text h1{
	transform: translateY(0);
	opacity: 1;
	transition-delay: .4s;
}
.slide__banner.owl-drag .owl-item.active .slide__text p{
	transform: translateY(0);
	opacity: 1;
	transition-delay: .3s;
}
/*end banner*/

/*check*/
.main__check{
	transform: translateY(-50%);
	position: relative;
	background: #fff;
	z-index: 2;
	/*box-shadow: 0px 10px 30px #1619210f;*/
	box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
	border-radius: 10px;
	padding: 40px;
}
.icon__box{
	background-color: #F7F4F2;
	padding: 15px 30px;
	border-radius: 3px;
	text-align: center;
	position: relative;
}
.icon__box i{
	font-size: 20px;
	color: var(--second-color);
}
.icon__box h3{
	font-size: 18px;
	color: #0a1d35;
	font-weight: 500;
	margin-top: 10px;
}
.icon__box::before{
	content: "";
	position: absolute;
	left: 50%;
	bottom: -7px;
	transform: translateX(-50%) rotate(45deg);
	border-bottom: 14px solid #F7F4F2;
	border-left: 14px solid transparent;
}
.list__area__item{
	margin-bottom: 30px;
}
@media(max-width:991.98px){
	.list__area__item{
		display:none;
	}
}
.btn-check button,
.btn-check a{
	position: relative;
	display: inline-block;
	padding: 15px 30px;
	font-size: 14px;
	background-color: var(--second-color);
	color: #fff !important;
	text-transform: uppercase;
	font-weight: 500;
	border-radius: 3px;
	box-shadow: 0px 4px 20px #da3c3c80;
	text-decoration: none !important;
	overflow: hidden;
	outline: none;
	border: none;
	z-index: 1;
}
.btn-check button::before{
	content: "";
	position: absolute;
	width: 100%;
	height: 200%;
	left: -100%;
	top: -100%;
	background-color: #0a1d35;
	transform: skewX(-40deg);
	z-index: -1;
	transition: all .6s;
}
.btn-check button:hover::before{
	width: 240%;
	top: 50%;
	transform: translateY(-50%) skewX(-40deg);
	transition: all .6s;
}
.form-check-rooms .form-group{
	position:relative;
}
.form-check-rooms input,
.form-check-rooms select{
	padding: 15px 15px;
	background-color: #f1f3f6;
	border: none;
}
.form-check-rooms input::placeholder,
.form-check-rooms select::placeholder{
	color: var(--normal-color);
}
.form-check-rooms .form-control[readonly] {
	background: #f1f3f6;
}
.form-check-rooms select{
	height: auto !important;
}
/*end check*/

/*st about*/
.st__about__image img{
	width: 100%;
	height: auto;
	object-fit: cover;
	display: block;
	border-radius: 10px;
}
.st__about__content .desc{
	color: #6e777f;
	line-height: 28px;
	margin-bottom:20px;
}
.about__wrap{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: 30px;
}
.list__about__content{
	width: 48%;
	display: flex;
	gap: 20px;
}
.about__icon{
	background-color: #F7F4F2;
	border-radius: 5px;
	min-width: 80px;
	height: 80px;
	text-align: center;
	line-height: 80px;
}
.about__icon img{
	width:100%;
	height:100%;
}
.about__txt h3{
	font-family: 'Playfair display';
	font-size: 20px;
	color: #111B27;
	font-weight: 700;
	margin-bottom: 10px;
}
.about__txt p{
	margin-bottom: 0;
}
.st__about__content .btn__header a{
	box-shadow: 0px 4px 20px #da3c3c80;
}
/*end st about*/

/*st rooms*/
.st__rooms{
	background-image: url('../image/bg-rooms.jpg');
	background-repeat: no-repeat;
	margin-top: 40px;
	padding: 40px 0;
	background-color: #F1F3F6;
}
.list__st__rooms{
	position: relative;
}
.st__rooms__image{
	overflow: hidden;
	border-radius: 5px;
}
.st__rooms__image img{
	object-fit: cover;
	border-radius: 5px;
	transition: all .4s;
	height: 400px;
}
.list__st__rooms:hover img{
	transform: scale(1.1);
	transition: all .4s;
}
.title__rooms{
	position: absolute;
	left: 50%;
	bottom: 30px;
	width: 90%;
	transform: translateX(-50%);
	border-radius: 30px;
	background-color: #fff;
	padding: 20px 25px;
	transition: all ease-in-out .4s;
}
.price__rooms{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.price__rooms span{
	font-size: 14px;
	color: #6e777f;
	font-weight: 500;
	text-transform: uppercase;
}
.price__rooms ul{
	display: flex;
	gap: 5px;
	margin-bottom: 0;
}
.price__rooms ul i{
	font-size: 12px;
	color: #FFB606;
}
.title__rooms a,
.name__rooms{
	font-family: 'Playfair Display';
	font-size: 24px;
	color: #111B27;
	font-weight: 700;
	display: inline-block;
	text-decoration: none !important;
}
.title__rooms a:hover{
	color: var(--second-color);
	transition: all .2s;
}
.card__des{
	position: absolute;
	left: 50%;
	top: 50%;
	background-color: #fff;
	width: 90%;
	border-radius: 5px;
	padding: 30px;
	transform: rotateY(-90deg) translate(-50%,-50%);
	opacity: 0;
	transition: all ease-in-out .4s;
}
@media(max-width:380px){
	.card__des{
		padding:20px;
	}
}
.name__rooms{
	margin: 5px 0 15px;
}
.card__des .desc{
	color: #6e777f;
	line-height: 26px;
	overflow: hidden;
	text-overflow:ellipsis;
	display:-webkit-box;
	-webkit-line-clamp:3;
	line-clamp: 3;
	-webkit-box-orient:vertical;
	margin-bottom: 10px;
}
.btn__card{
	display: flex;
	flex-wrap:wrap;
	align-items: center;
	justify-content: space-between;
	gap:10px;
}
@media(max-width:380px){
	.btn__card{
		justify-content: center;
	}
}
.btn__card a{
	display: inline-block;
	padding: 15px 35px;
	background-color: var(--second-color);
	border-radius: 3px;
	font-size: 14px;
	font-weight: 500;
	color: #fff !important;
	text-transform: uppercase;
	text-decoration: none !important;
}
.btn__card .btn-book{
	background-color: #111B27;
}
.list__st__rooms:hover .card__des{
	transform: rotateY(0) translate(-50%,-50%);
	opacity: 1;
	transition: all ease-in-out .4s;
}
.list__st__rooms:hover .title__rooms{
	transform: rotateY(-90deg) translateX(-50%);
	opacity: 0;
	transition: all ease-in-out .4s;
}
.view__rooms{
	text-align: center;
	margin-top: 30px;
}
.view__rooms a{
	color: var(--second-color) !important;
	font-weight: 500;
	text-transform: uppercase;
	text-decoration: none;
}


.st__services__des{
	margin-top: 50px;
}
h2.title{
	font-family: 'Playfair Display';
	font-size: 48px;
	font-weight: 700;
	color: #111B27;
}
.st__services__image img{
	width: 100%;
	height: auto;
	max-height: 400px;
	object-fit: cover;
	display: block;
}


.amenities__icon{
	width: 80px;
	height: 80px;
	text-align: center;
	line-height: 80px;
	border: 1px solid var(--second-color);
	border-radius: 50%;
}
.amenities__icon img{
	width: 70%;
}
.list__amenities h3{
	font-family: 'Playfair Display';
	font-size: 24px;
	color: #0a1d35;
	font-weight: 700;
	margin: 10px 0;
}
.main__amenities{
	background-color: #f1f3f6;
	padding: 30px;
	border-radius: 10px;
}
.list__amenities{
	margin-bottom: 30px;
}
/*end st rooms*/

/*experience*/
.experience{
	background-image: url('../../../files/images/anh-trang-chu.jpg');
	background-repeat: no-repeat;
	background-position: center;
	padding: 100px 0;
	position: relative;
	z-index: 1;
	margin-top: 40px;
}
.experience::before{
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: #00000087;
	z-index: -1;
}

.main__experience{
	text-align: center;
}
.play{
	position: relative;
	display: inline-block;
	width: 70px;
	height: 70px;
	border-radius: 50%;
	border: 3px solid #fff;
	text-align: center;
	line-height: 70px;
	background-color: var(--second-color);
	margin: auto;
	cursor: pointer;
}
.play i{
	font-size: 22px;
	color: #fff;
}
.play::before{
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border-radius: 50%;
	opacity: .5;
	border: 8px solid #ffffff9c;
	animation: borderAnimation 2s linear infinite;
}

@keyframes borderAnimation {
	0% {
		transform: scale(1.3);
		transition: all ease-in-out .4s;
	}

	75% {
		transform: scale(1.6);
		opacity: 1;
		border-width: 12px;
		transition: all ease-in-out .4s;
	}

	100% {
		transform: scale(1.8);
		opacity: 0;
		border-width: 14px;
		transition: all ease-in-out .4s;
	}
}
.main__experience h2{
	font-family: 'Playfair Display';
	font-size: 48px;
	color: #fff;
	font-weight: 700;
	margin: 20px 0;
}
@media(max-width:767.98px){
	.main__experience h2{
		font-size:30px;
	}
}
.btn-experience{
	display: flex;
	justify-content: center;
	gap: 20px;
}
.btn-experience a{
	display: inline-block;
	padding: 15px 35px;
	background-color: var(--second-color);
	border-radius: 3px;
	font-size: 14px;
	font-weight: 500;
	color: #fff !important;
	text-transform: uppercase;
	text-decoration: none !important;
}
.btn-experience a.trans{
	background-color: transparent;
	border: 1px solid #fff;
}

.st__facilities{
	margin-top: 40px;
}
.list__st__facilities{
	position: relative;
	padding: 20px;
	background-color: #f1f3f6;
	border-radius: 10px;
}
.st__facilities__image img{
	height: auto;
	object-fit: cover;
	display: block;
	border-radius: 10px;
}
.st__facilities__des{
	position: absolute;
	left: 25px;
	bottom: -100%;
	width: calc(100% - 50px);
	background-color: #fff;
	border-radius: 10px;
	padding: 30px;
	text-align: center;
	opacity: 0;
	visibility: hidden;
	z-index: 4;
	box-shadow: 0px 10px 35px #0a1d350f;
	transition: all ease-in-out .6s;
}

.slide__st__facilities.owl-drag .owl-item.center .st__facilities__des{
	bottom: -50px;
	visibility: visible;
	opacity: 1;
	transition: all ease-in-out .6s;
}
.st__facilities__des span{
	position: relative;
	color: var(--second-color);
	font-weight: 700;
	letter-spacing: 6.4px;
	text-transform: uppercase;
	display: inline-block;
}
.st__facilities__des span::before{
	content: "";
	position: absolute;
	width: 50px;
	height: 2px;
	left: -60px;
	top: 50%;
	transform: translateY(-50%);
	background-color: var(--second-color);
}
.st__facilities__des span::after{
	content: "";
	position: absolute;
	width: 50px;
	height: 2px;
	right: -60px;
	top: 50%;
	transform: translateY(-50%);
	background-color: var(--second-color);
}
.st__facilities__des .item-title{
	display: block;
	text-align: center;
	font-family: 'Playfair Display';
	font-size: 30px;
	color: #111B27;
	font-weight: 700;
	text-decoration: none !important;
	margin: 10px 0;
}
@media(max-width:767.98px){
	.st__facilities__des{
		padding:20px;
	}
	.st__facilities__des .item-title{
		font-size:24px;
	}
}
.st__facilities__des .item-title a{
	color: inherit;
}
.st__facilities__des .item-title:hover{
	color: var(--second-color);
	transition: all .2s;
}
.st__facilities__des ul{
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 0;
}
.st__facilities__des ul li{
	width: 50%;
}
.st__facilities__des ul li i{
	color: var(--second-color);
}
/*end experience*/

/*offers*/
.our__offers{
	background-color: #f1f3f6;
	border-radius: 15px;
}


.slide__offers{
	/*margin-top: -100px;
	padding-left: 50px;
	padding-bottom: 30px;*/
	padding:30px;
}
.slider-nav{
	margin-top: 25px;
}
.list__image__offers{
	border-radius: 10px;
}
.list__image__offers img{
	width: 100%;
	height: auto;
	object-fit: cover;
	display: block;
	border-radius: 10px;
}

.list__nav__image img{
	width: 55px;
	height: 55px;
	border-radius: 50%;
	object-fit: cover;
	opacity: .4;
	margin: auto;
	cursor: pointer;
}
@media(max-width:576px){
	.list__nav__image img{
		width:auto;
		height: auto;
		aspect-ratio: 1/1;
	}
}
.list__nav__image.slick-current img{
	opacity: 1;
}
.slider-nav .slick-track{

	display: flex;
	gap: 10px;
	transform: none !important
}
.offers__des{
	margin-top: 50px;
}
@media(max-width:991.98px){
	.offers__des{
		padding:30px;
		margin-top:0;
	}
}
.offers__des a{
	box-shadow: 0px 4px 20px #da3c3c80;
}
.offers__des h3{
	font-family: 'Playfair Display';
	font-size: 36px;
	color: #111B27;
	font-weight: 700;
	margin-bottom: 15px;
}
.offers__des .desc ul{
	list-style: disc;
	margin-left: 20px;
}
/*end offers*/

/*client*/
.client{
	background-image: url('../image/bg-rooms.jpg');
	background-color: #f1f3f6;
	padding: 40px 0;
}
.list__client{
	background-color: #fff;
	padding: 40px 50px;
	border-radius: 10px;
	box-shadow: 0px 10px 15px #0a1d350f;
}
.client__review{
	display: flex;
	gap: 20px;
	margin-bottom: 25px;
	padding-bottom: 25px;
	border-bottom: 1px solid #e0e0e0;
}
.client__review img{
	width: 120px !important;
	height: 120px;
	object-fit: cover;
	border-radius: 5px;
	display: block;
}
.author__review{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.author h3{
	font-family: 'Playfair Display';
	font-size: 24px;
	font-weight: 600;
	color: #111B27;
}
.author span{
	color: var(--second-color);
}
.rating{
	display: flex;
	gap: 5px;
}
.rating ul{
	display: flex;
	gap: 5px;
	margin-bottom: 0;
}
.rating ul i{
	font-size: 12px;
	color: #FFB606;
}
/*end client*/

/*article*/
.heading__article{
	text-align: center;
	margin-bottom: 30px;
}
.list__article{
	background-color: #fff;
	padding: 30px;
	border-radius: 10px;
	border-bottom: 1px solid #e0e0e0;
	box-shadow: 0px 4px 15px #0a1d3514;
}
.article__image img{
	width: 100%;
	height: auto;
	object-fit: cover;
	display: block;
	aspect-ratio: 6/4;
}
.article__des{
	padding: 10px 0;
	margin-bottom:10px;
	border-bottom: 1px solid #e0e0e0;
}
.article__des a{
	font-family: 'Playfair Display';
	font-size: 24px;
	color: #0a1d35;
	font-weight: 600;
	display: inline-block;
	text-decoration: none !important;
	margin-bottom: 10px;
}
.article__des a:hover{
	color: var(--second-color);
	transition: all .2s;
}
.article__des ul{
	display: flex;
	gap: 20px;
	margin-bottom: 0;
}
.btn-article a{
	position: relative;
	display: inline-block;
	font-size: 14px;
	font-weight: 700;
	color: #0a1d35;
	text-transform: uppercase;
	text-decoration: none !important;
}
.btn-article a::before{
	content: "";
	position: absolute;
	width: 100%;
	height: 1px;
	left: 0;
	bottom: 0;
	background-color: #0a1d35;
	transition: all .4s;
}
.btn-article a:hover{
	color: var(--second-color);
}
.btn-article a:hover::before{
	width: 60%;
	background-color: var(--second-color);
	transition: all .4s;
}
/*end article*/

/*ins*/
.ins{
	transform: translateY(50%);
}
.list__image__ins{
	position: relative;
}
.list__image__ins::before{
	content: "";
	position: absolute;
	left: 50%;
	top: 0;
	transform: translateX(-50%);
	width: 0;
	height: 100%;
	background-color: #001d5294;
	border-radius: 10px;
	transition: all .4s;
}
.list__image__ins:hover::before{
	width: 100%;
	transition: all .4s;
}
.image__ins img{
	max-height:190px;
	object-fit: cover;
	border-radius: 10px;
	display: block;
	aspect-ratio: 1/1;
}
.icon__ins{
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	width: 55px;
	height: 55px;
	background-color: #fff;
	border-radius: 50%;
	text-align: center;
	opacity: 0;
	line-height: 55px;
	transition: all .4s;
}
.list__image__ins:hover .icon__ins{
	bottom: 50%;
	opacity: 1;
	transform: translate(-50%, 50%);
	transition: all .4s;
}
.icon__ins i{
	color: var(--second-color);
}
/*end ins*/

/*about*/
.banner__img img{
	width: 100%;
	height: auto;
	max-height: 500px;
	min-height:300px;
	object-fit: cover;
	display: block;
}
.main__banner{
	position: relative;
}
.main__banner::before{
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background-color: #00000099;
}
.banner__text{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	width:95%;
}
.banner__text h1{
	font-family: 'Playfair Display';
	font-size: 48px;
	font-weight: 700;
	color: #fff;
}
.banner__text ul{
	display: flex;
	justify-content: center;
	gap: 30px;
	margin-bottom: 0;
}
.banner__text ul li{
	position: relative;
	font-weight: 700;
	color: #fff;
	text-transform: uppercase;
}
.banner__text ul li a{
	color: var(--second-color);
	font-weight: normal;
}
.banner__text ul li:not(:last-child)::before{
	content: '\f054';
	position: absolute;
	right: -20px;
	bottom: 0;
	font-family: 'fontawesome';
	font-size: 17px;
	color: #fff;
}
/*end about*/

/*report*/
.report{
	background-image: url('../image/footer_bg.png');
	background-color: #111B27;
	padding: 50px 0;
}
.counter__card{
	text-align: center;
}
@media(max-width:576px){
	.counter__card{
		margin-bottom: 30px;
	}
}
.counter__card h3{
	position: relative;
	font-family: 'Playfair Display';
	font-size: 48px;
	color: #fff;
	font-weight: 700;
	display: inline-block;
}
.counter__card p{
	font-size: 18px;
	margin-bottom: 0;
}
.counter__card h3::before{
	content: "\2b";
	font-family: 'fontawesome';
	position: absolute;
	top: 0;
	right: -23px;
	font-size: 23px;
	color: var(--second-color);
}
.box__about{
	padding: 16px 24px;
	background-color: #fff;
	border-radius: 10px;
	margin-bottom: 30px;
}
.more__about{
	background-color: #f1f3f6;
}
.box__about span{
	font-size: 18px;
	color: #111B27;
	font-weight: 700;
}
.box__about i{
	color: var(--second-color);
}
.more__about__image img{
	width: auto;
	height: auto;
	object-fit: cover;
	display: block;
	margin-left: auto;
}
/*end report*/

/*overview*/
.overview{
	background-image: url('../image/footer_bg.png');
	background-color: #111B27;
	padding-top: 120px;
	height: 650px;
}
.overview__content{
	text-align: center;
}
.overview__icon img{
	width: 60px;
	object-fit: cover;
	transition: all .4s;
}
.overview__des h3{
	font-family: 'Playfair Display';
	font-size: 24px;
	color: #fff;
	font-weight: 700;
	margin-top: 30px;
}
.overview__des p{
	color: #fff;
	line-height: 26px;
}
.overview__content:hover .overview__icon img{
	transform: rotateY(180deg);
	transition: all .4s;
}
/*end overview*/

/*our video*/
.main__our__video{
	background-image: url(../../../files/images/anh-trang-chu.jpg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	border-radius: 15px;
	height: 500px;
	position: relative;
}
.main__our__video::before{
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	border-radius: 15px;
	background-color: #00000066;
}
.text__video{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	width: 95%;
}
.text__video span{
	color: #fff;
	font-weight: 700;
	letter-spacing: 6.4px;
	text-transform: uppercase;
}
.text__video h2{
	font-family: 'Playfair Display';
	font-size: 48px;
	color: #fff;
	font-weight: 700;
	margin: 20px 0;
}
/*end our video*/

/*facilities*/
.facilities{
	margin-top: 300px;
}
.intro__facilities{
	margin-bottom: 40px;
}
.box__facilities{
	display: flex;
	align-items: center;
	gap: 20px;
}
.box__facilities:hover .facilities__icon img{
	transform: rotateY(180deg);
	transition: all .4s;
}
.facilities__icon{
	width: 80px;
	height: 80px;
	box-shadow: 0px 0px 30px #0a1d351a;
	border-radius: 10px;
	padding: 15px;
}
.facilities__icon img{
	width: 100%;
	transition: all .4s;
}
.facilities__des{
	flex:1;
}
.facilities__des h3{
	font-family: 'Playfair Display';
	font-size: 24px;
	color: #0a1d35;
	font-weight: 700;
}
.list__facilities{
	display: flex;
	flex-wrap: wrap;
}
.list__facilities+.list__facilities{
	margin-top:30px;
}
.list__facilities:nth-of-type(2n){
	flex-direction: row-reverse;
}
.facilities__img, .facilities__content{
	width: 50%;
}
.facilities__img img{
	width: 100%;
	height: auto;
	object-fit: cover;
	display: block;
}
.facilities__content{
	background-color: #f1f3f6;
	padding: 30px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.facilities__name{
	display: block;
	font-family: 'Playfair Display';
	font-size: 38px;
	color: #000;
	font-weight: 700;
	margin-bottom: 20px;
}
.facilities__name:hover{
	color: var(--second-color);
	text-decoration: none;
}
.list__rooms{
	margin-bottom: 30px;
}
.list__rooms img{
	width: 100%;
}
/*end facilities*/

/*rooms*/
.nav__image__rooms img{
	width: 100%;
	height: auto;
	object-fit: cover;
	border-radius: 10px;
	display: block;
	opacity: .6;
}
.nav__image__rooms.slick-current img{
	opacity: 1;
}
.slider-for-rooms{
	margin-bottom: 15px;
}
.slider-nav-rooms .slick-track{
	display: flex;
	gap: 15px;
}

.list__rooms__amenities{
	text-align: center;
	padding: 25px 20px;
	box-shadow: 0px 10px 30px #0a1d350f;
	border-radius: 10px;
}
.list__rooms__amenities:hover .box__icon__amenities{
	background-color: var(--second-color);
	transition: all .3s;
}
.list__rooms__amenities h3{
	font-family: 'Playfair Display';
	font-size: 20px;
	color: #111B27;
	font-weight: 700;
	margin-top: 15px;
}
.box__icon__amenities{
	width: 60px;
	height: 60px;
	border-radius: 50%;
	object-fit: cover;
	text-align: center;
	margin: auto;
	padding: 15px;
	background-color: #f1f3f6;
	transition: all .3s;
}
.box__icon__amenities img{
	width: 100%;
	height: auto;
	object-fit: cover;
	transition: all .3s;
}
.list__rooms__amenities:hover .box__icon__amenities img{
	transform: rotateY(180deg);
	filter: brightness(0) invert(1);
	transition: all .3s;
}
.extra__services ul{
	display: flex;
	flex-wrap: wrap;
}
.extra__services ul li{
	width: 33.333%;
	margin-bottom: 10px;
}
.extra__services ul li i{
	color: var(--second-color);
}
.book__rooms,
.summer__offers{
	background-color: #f1f3f6;
	border-radius: 10px;
}
.title__form{
	background-color: #0a1d35;
	padding: 15px 0;
	border-radius: 10px 10px 0 0;
}
.title__form h3{
	font-family: 'Playfair Display';
	font-size: 24px;
	color: #fff;
	font-weight: 700;
	text-align: center;
}
.form-book-rooms,
.main__summer__offers{
	padding: 40px;
}
.form__group__book{
	position: relative;
}
.form__group__book i{
	width: 40px;
	position: absolute;
	right: 15px;
	top: 0;
	height: 56px;
	background: #Fff;
	text-align: center;
	line-height: 56px;
}
.form__group__book input,
.form__group__book select{
	height: 56px;
	padding: 6px 25px;
	border: none;
	background-color: #fff;
	font-size: 14px;
	border-radius: 5px;
	outline: none;
}
.form__group__book textarea{
	padding: 10px 25px;
	border: none;
	background-color: #fff;
	font-size: 14px;
	border-radius: 5px;
	outline: none;
	resize: vertical;
}
.btn-book-rooms button,
.btn-book-rooms a{
	width: 100%;
	position: relative;
	padding: 15px 30px;
	background-color: var(--second-color);
	color: #fff;
	font-size: 14px;
	text-transform: uppercase;
	font-weight: 500;
	border-radius: 3px;
	border: none;
	overflow: hidden;
	z-index: 1;
}
.btn-book-rooms button::before{
	content: "";
	position: absolute;
	width: 100%;
	height: 200%;
	left: -100%;
	top: -100%;
	background-color: #0a1d35;
	transform: skewX(-40deg);
	z-index: -1;
	transition: all .6s;
}
.btn-book-rooms button:hover::before{
	width: 240%;
	top: 50%;
	transform: translateY(-50%) skewX(-40deg);
	transition: all .6s;
}
.list__summer__offer{
	display: flex;
	gap: 20px;
	margin-bottom: 30px;
}
.image__summer__offers img{
	width: 100px;
	height: 100px;
	border-radius: 5px;
	object-fit: cover;
	display: block;
}
.summer__offers__des{
	flex:1;
}
.summer__offers__des a{
	font-family: 'Playfair Display';
	font-size: 18px;
	color: #111B27;
	font-weight: 700;
}
.summer__offers__des a:hover{
	color: var(--second-color);
	text-decoration: none;
}
.price__from span{
	color: var(--second-color);
	font-weight: 500;
}

/*end rooms*/

/*services*/

.detail__services__img img{
	width: 100%;
	height: auto;
	object-fit: cover;
	border-radius: 10px;
	display: block;
}
.detail__services__des .title{
	font-family: 'Playfair Display';
	font-size: 38px;
	font-weight: 700;
	color: #111B27;
}
.about__info__label{
	display: flex;
	gap: 100px;
	align-items: center;
	margin-top: 30px;
}
.about__info__label p{
	margin-bottom: 0;
	font-size: 20px;
	color: #0a1d35;
}
.about__info__label p span{
	color: var(--second-color);
	font-size: 20px;
}
.heading__special__menu{
	text-align: center;
}

.main__special__menu{
	width: 95% !important;
	margin: auto;
}
.special__menu__img img{
	height: auto;
	object-fit: cover;
	display: block;
}
.special__menu__des{
	padding: 20px 40px;
	border-radius: 0 0 10px 10px;
	margin-bottom: 30px;
}
.list__special__menu{
	box-shadow: 0px 6px 14px #0a1d3514;
	border-radius: 10px;
}
.special__menu__des h3{
	font-family: 'Playfair Display';
	font-size: 30px;
	color: #111B27;
	font-weight: 700;
	text-align: center;
	border-bottom: 1px dashed var(--second-color);
	padding-bottom: 20px;
	margin-bottom: 20px;
}
.list__menu__item{
	margin-bottom: 20px;
}
.menu__item__wrap{
	position: relative;
	display: flex;
	justify-content: space-between;
}
.line{
	position: absolute;
	width: 100%;
	bottom: 8px;
	border-bottom: 1px dashed #000;
}
.menu__item__wrap a{
	font-family: 'Playfair Display';
	font-size: 18px;
	color: #0a1d35;
	font-weight: 700;
	background-color: #fff;
	z-index: 2;
}
.menu__item__wrap a:hover{
	color: var(--second-color);
	text-decoration: none;
}
.menu__item__wrap h6{
	font-family: 'Playfair Display';
	font-size: 18px;
	color: #0a1d35;
	font-weight: 700;
	background-color: #fff;
	z-index: 2;
}
/*end services*/

/*gallery*/
.tabs{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 25px;
}
.list__tabs p{
	padding: 14px 18px;
	border: 1px solid #e0e0e0;
	border-radius: 3px;
	font-size: 14px;
	font-weight: 700;
	color: #111B27;
	text-transform: uppercase;
	margin-bottom: 0;
	cursor: pointer;
}
.list__tabs.current p{
	background-color: var(--second-color);
	border-color: var(--second-color);
	color: #fff;
}
.main__tab .tab-content{
	display: none;
}
.tab-content.current{
	display: block;
}
.list__gallery{
	position: relative;
	margin-bottom: 30px;
}
.list__gallery::before{
	content: "";
	position: absolute;
	left: 30px;
	top: 30px;
	width: calc(100% - 60px);
	height: calc(100% - 60px);
	background-color: #00000066;
	border-radius: 10px;
	transform: rotateY(90deg);
	opacity: 0;
	transition: all .4s;
}
.list__gallery:hover::before{
	transform: rotateY(0);
	opacity: 1;
	transition: all .4s;
}
.gallery__icon{
	position: absolute;
	width: 55px;
	height: 55px;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: var(--second-color);
	opacity: 0;
	transition: all .4s;
}
.list__gallery:hover .gallery__icon{
	opacity: 1;
	text-decoration: none;
	transition: all .4s;
}
.gallery__icon i{
	font-size: 25px;
	color: #fff;
}
.gallery__img img{
	width: 100%;
	height: auto;
	object-fit: cover;
	border-radius: 10px;
	display: block;
	aspect-ratio: 6/5;
}
/*end gallery*/

/*blog*/
.list__blog{
	padding: 0px;
	border-radius: 10px;
	box-shadow: 0px 4px 50px #0a1d3514;
	margin-bottom: 30px;
}
.blog__image img{
	width: 100%;
	height: auto;
	object-fit: cover;
	border-radius: 10px;
	display: block;
	aspect-ratio: 6 / 4;
}
.blog__content .blog__meta{
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	margin-bottom: 0;
}
.blog__content{
	padding:20px;
}
.blog__title{
	display: inline-block;
	font-family: 'Playfair Display';
	font-size: 23px;
	line-height:1.2;
	color: #111B27;
	font-weight: 700;
	margin-bottom:10px;
}
.blog__title:hover{
	color: var(--second-color);
	text-decoration: none;
}
.blog__desc{
	overflow: hidden;
	text-overflow:ellipsis;
	display:-webkit-box;
	-webkit-line-clamp:3;
	line-clamp: 3;
	-webkit-box-orient:vertical;
	margin-bottom:10px;
}
.search__blog,
.categories,
.recent__posts,
.tags{
	background-color: #f1f3f6;
	padding: 30px;
	border-radius: 10px;
	margin-bottom: 30px;
}
.form-search-blog{
	position: relative;
}
.form-search-blog input{
	height: 56px;
	border: none;
	padding: 0 25px;
	color: #6e777f;
	border-radius: 5px;
	outline: none;
}
.form-search-blog button{
	position: absolute;
	top: 0;
	right: 0;
	width: 50px;
	height: 100%;
	border: none;
	outline: none;
	background-color: #fff;
}
.form-search-blog button i{
	font-size: 20px;
	color: var(--second-color);
	cursor: pointer;
}
.sidebar__blog h3{
	font-family: 'Playfair Display';
	font-size: 24px;
	color: #111B27;
	font-weight: 600;
	margin-bottom: 30px;
}
.categories ul li a{
	display: block;
	padding: 16px 25px;
	background-color: #fff;
	color: #6e777f;
	font-weight: 400;
	border-radius: 5px;
	display: flex;
	justify-content: space-between;
	margin-bottom: 10px;
}
.categories ul li a:hover{
	background-color: var(--second-color);
	color: #fff;
	text-decoration: none;
	transition: all .3s;
}
.categories ul li a:hover i{
	color: #fff;
}
.list__recent__post{
	display: flex;
	gap: 20px;
	margin-bottom: 25px;
}
.list__recent__post:last-child{
	margin-bottom: 0;
}
.recent__posts__image{
	width:20%;
}
.recent__posts__image img{
	/*width: 85px;
	height: 85px;*/
	width:100%;
	height:auto;
	object-fit: cover;
	border-radius: 5px;
	display: block;
	aspect-ratio: 1/1;
}
.recent__posts__des{
	flex:1;
}
.recent__posts__des a{
	font-family: 'Playfair Display';
	font-size: 18px;
	color: #111B27;
	font-weight: 700;
}
.recent__posts__des a:hover{
	color: var(--second-color);
	text-decoration: none;
	transition: all .3s;
}
.recent__posts__des p{
	margin-bottom: 0;
}
.recent__posts__des p i{
	color: var(--second-color);
}
.tags ul,
.tags__post ul{
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.tags ul li a,
.tags__post ul li a{
	display: inline-block;
	padding: 8px 17px;
	border-radius: 5px;
	font-size: 14px;
	color: #6e777f;
	font-weight: 500;
	text-transform: uppercase;
	background-color: #fff;
}
.tags ul li a:hover,
.tags__post ul li a:hover{
	background-color: var(--second-color);
	color: #fff;
	text-decoration: none;
	transition: all .3s;
}
.blog__detail__content{
	padding: 0px;
	border-radius: 10px;
	box-shadow: 0px 4px 50px #0a1d3514;
}
.blog__detail__content .blog__detail__title {
	display:block;
	font-family: 'Playfair Display';
	font-size: 38px;
	line-height: 1.2;
	color: #111B27;
	font-weight: 700;
	margin-bottom: 10px;
}
.blog__inner{
	display: flex;
	justify-content: space-between;
}
.blog__inner img{
	width: 48%;
	height: auto;
	object-fit: cover;
	display: block;
	border-radius: 10px;
}
.blog__navigation{
	border-top: 1px solid #e0e0e0;
	border-bottom: 1px solid #e0e0e0;
	padding: 30px 0;
}
.blog__navigation ul{
	display: flex;
	justify-content: space-between;
	margin-bottom: 0;
}
@media(max-width:767.98px){
	.blog__navigation ul{
		flex-direction: column;
		gap: 18px;
	}
}
.blog__navigation ul li{
	flex:1;
}
.blog__navigation .prev,.blog__navigation .next{
	display: flex;
	gap: 15px;
	align-items: center;
}
.blog__navigation .prev img,.blog__navigation .next img{
	width: 80px;
	height: 80px;
	object-fit: cover;
	border-radius: 10px;
	display: block;
}
.blog__navigation .prev{
	text-align:left;
}
.blog__navigation .next{
	text-align:right;
}
.blog__navigation .prev a,.blog__navigation .next a{
	color: #0a1d35;
	font-weight: 700;
	text-transform: uppercase;
}
.blog__navigation .prev a:hover,.blog__navigation .next a:hover{
	color: var(--second-color);
	text-decoration: none;
}
.blog__navigation .prev .bx-text,.blog__navigation .next .bx-text{
	flex:1;
}
/*end blog*/

/*contact*/
.main__contact__info{
	padding: 30px;
	border-radius: 5px;
	box-shadow: 0px 10px 50px #0a1d350f;
}
.heading__contact{
	text-align: center;
	position: relative;
	margin-bottom: 50px;
}
.heading__contact h3{
	font-family: 'Playfair Display';
	font-size: 36px;
	color: #0a1d35;
	font-weight: 700;
}
.shape{
	position: absolute;
	left: 50%;
	bottom: -10px;
	transform: translateX(-50%);
	width: 400px;
	height: 2px;
	background-color: #0a1d3526;
	overflow: hidden;
}
.shape::before{
	content: "";
	position: absolute;
	width: 50px;
	height: 2px;
	background-color: var(--second-color);
	border-radius: 5px;
	bottom: 0;
	animation: animateLine 8s linear infinite;
	z-index: 10;
}
@keyframes animateLine{
	0%{
		left: -110%;
	}
	100%{
		left: 110%;
	}
}
.list__contact__info{
	text-align: center;
	margin-bottom: 30px;
}
.list__contact__info i{
	width: 50px;
	height: 50px;
	background-color: var(--second-color);
	border-radius: 50%;
	text-align: center;
	line-height: 50px;
	color: #fff;
}
.list__contact__info h3{
	font-family: 'Playfair Display';
	font-size: 20px;
	color: #111B27;
	margin: 15px 0;
}
.form-contact{
	background-color: #f1f3f6;
	padding: 50px;
	border-radius: 10px;
}
.form-contact h2{
	text-align: center;
}
.list__form__contact{
	position: relative;
}
.list__form__contact input,
.list__form__contact select{
	width: 100%;
	height: 55px;
	background-color: #fff;
	padding: 6px 25px;
	font-size: 14px;
	border: none;
	outline: none;
}
.list__form__contact textarea{
	resize: vertical;
	width: 100%;
	background-color: #fff;
	padding: 6px 25px;
	font-size: 14px;
	border: none;
	outline: none;
}
.list__form__contact i{
	position: absolute;
	right: 0;
	top: 0;
	width: 40px;
	text-align: center;
	line-height: 55px;
	background-color: #fff;
}
.btn__contact{
	text-align: center;
}
.map iframe{
	width: 100%;
	display: block;
}
/*end contact*/

/*restaurant*/
.list__img__res img{
	width: 100%;
	height: auto;
	object-fit: cover;
	border-radius: 10px;
	display: block;
}
.list__restaurant__item{
	border-radius: 10px;
	margin-bottom: 30px;
	box-shadow: 0px 6px 14px #0a1d3514;
}
.res__item__image img{
	width: 100%;
	height: auto;
	object-fit: cover;
	border-radius: 10px 10px 0 0;
	display: block;
}
.restaurant__des{
	padding: 22px 40px;
}
.restaurant__des a{
	font-family: 'Playfair Display';
	font-size: 30px;
	color: #111B27;
	font-weight: 700;
	display: inline-block;
	margin-bottom: 15px;
}
.restaurant__des a:hover{
	color: var(--second-color);
	text-decoration: none;
}

.popular__dishes{
	background-image: url('../image/menu_bg.png');
	background-color: #f1f3f6;
	padding: 50px 0;
}
.tabs__menu{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.list__tabs__menu p{
	font-family: 'Playfair Display';
	position: relative;
	font-size: 24px;
	color: #495057;
	font-weight: 700;
	padding: 8px 65px;
	margin-bottom: 0;
	border-bottom: 2px solid #a5afb7;
}
.list__tabs__menu p::before{
	content: "";
	position: absolute;
	left: 50%;
	bottom: -2px;
	transform: translateX(-50%);
	width: 0;
	height: 3px;
	transform-origin: center center;
	background-color: var(--second-color);
	opacity: 0;
	transition: all .4s;
}
.list__tabs__menu.current p::before{
	opacity: 1;
	width: 100%;
}
.list__tabs__menu p:hover::before{
	width: 100%;
	opacity: 1;
	transition: all .4s;
}
.list__food{
	display: flex;
	align-items: center;
	gap: 20px;
	background-color: #fff;
	box-shadow: 0px 10px 50px #0a1d350f;
	padding: 20px;
	border-radius: 10px;
	margin-bottom: 30px;
}
.food__image img{
	width: 80px;
	height: 80px;
	object-fit: cover;
	border-radius: 10px;
	display: block;
}
.food__des a{
	font-family: 'Playfair Display';
	font-size: 18px;
	color: #0a1d35 !important;
	font-weight: 700;
	text-decoration: none !important;
}
.food__des p{
	margin-bottom: 0;
}
.main__form__book__table{
	margin: auto;
}
.form-book-table{
	background-color: #fff;
	border: 20px;
	box-shadow: 0px 10px 50px #0a1d350f;
	padding: 40px;    
}
.form-book-table .list__form__contact input,
.form-book-table .list__form__contact select,
.form-book-table .list__form__contact textarea,
.form-book-table .list__form__contact i{
	background-color: #f1f3f6;
}
.form-book-table .list__form__contact i{
	color: var(--second-color);
}
/*end restaurant*/

/*footer*/
footer{
	background-image: url('../image/footer_bg.png');
	background-color: #111B27;
	padding-top: 135px;
}
footer p{
	color: #B3C1D3;
}
.footer__logo img{
	max-width:200px;
}
.footer__logo p{
	margin: 20px 0;
}
.footer__logo ul{
	display: flex;
	gap: 10px;
}
.footer__logo ul li a{
	width: 45px;
	height: 45px;
	display: inline-block;
	border-radius: 50%;
	text-align: center;
	line-height: 45px;
	background-color: #1e2c46b3;
}
.footer__logo ul li a i{
	color: #B3C1D3;
}
.footer__link h3{
	position: relative;
	font-family: 'Playfair Display';
	font-size: 24px;
	color: #fff;
	font-weight: 600;
	padding-bottom: 10px;
	margin-bottom: 50px;
}
.footer__link h3::before{
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 50px;
	height: 2px;
	background-color: var(--second-color);
}
.footer__link ul li a{
	color: #B3C1D3;
	text-decoration: none;
	display: inline-block;
	margin-bottom: 10px;
}
.footer__link ul li a i{
	color: #B3C1D3;
	margin-right: 10px;
}
.footer__contact li{
	color: #B3C1D3;
	margin-bottom: 20px;
	display: flex;
	gap: 5px;
}
.icon__footer{
	width: 25px;
	height: 25px;
	background-color: #1e2c46b3;
	text-align: center;
	line-height: 25px;
	border-radius: 5px;
}
.icon__footer i{
	color: #fff;
	font-size: 11px;
}
.group__letter{
	position: relative;
	margin-bottom: 10px;
}
.group__letter input{
	width: 100%;
	padding: 15px 35px;
	background-color: #1E2C46;
	color: #B3C1D3;
	border-radius: 5px;
	font-weight: 400;
	border: none;
	outline: none;
}
.group__letter i{
	position: absolute;
	left: 10px;
	top: 50%;
	transform: translateY(-50%);
	color: #dadada;
}
.form-footer button{
	padding: 15px 35px;
	background-color: var(--second-color);
	border: none;
	border-radius: 5px;
	outline: none;
	color: #fff;
	text-transform: uppercase;
}

.copyright{
	background-color: #1e2c46;
}
.main__copyright{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	padding: 18px 0;
}
.main__copyright p{
	color: #fff;
	margin-bottom: 0;
}
.main__copyright ul{
	display: flex;
	gap: 20px;
	margin-bottom: 0;
}
.main__copyright ul li a{
	color: #fff;
	text-decoration: none;
}
.main__copyright ul li a:hover{
	color: var(--second-color);
	transition: all .2s;
}
.main__copyright ul li{
	position: relative;
}
.main__copyright ul li:not(:last-child){
	padding-right: 20px;
	border-right: 1px solid #fff;
}
/*end footer*/

/*back to top*/
.back-to-top{
	position: fixed;
	bottom: 15px;
	right: 15px;
	width: 50px;
	height: 50px;
	background-color: #fcfaee;
	border: 2px solid var(--second-color);
	border-radius: 50%;
	text-align: center;
	line-height: 50px;
	opacity: 0;
	cursor: pointer;
	z-index: 10;
	transition: all .6s;
}
.back-to-top.animate{
	opacity: 1;
	transition: all .6s;
}

.back-to-top span i{
	font-size: 15px;
	color: var(--second-color);
}
/*end back to top*/

@media only screen and (max-width: 1200px){
	.menu, .search, .btn__header,
	.header__location,
	.logo::before,
	.logo::after{
		display: none;
	}
	header::before{
		width:240px;
	}
	.logo{
		width:150px;
	}
	.header{
		padding: 10px 0;
	}
	.menu__bar{
		display: block;
	}
	.main__check{
		transform: translateY(0);
	}
	.slide__text{
		width: 90%;
	}
	.slide__text h1{
		font-size: 60px;
	}
	.banner__text h1{
		font-size: 44px;
	}


	.st__about__content{
		margin-top: 30px;
	}
	.heading-title .sec-title{
		font-size: 30px;
	}

	/*about*/
	.facilities{
		margin-top: 500px;
	}
	.facilities__img, .facilities__content{
		width: 100%;
	}
	.btn__header.st__btn{
		display: block;
	}
	/*end about*/

	.detail__services__des{
		margin-top: 30px;
	}
}

@media only screen and (max-width: 767.98px){
	.banner__text h1{
		font-size: 28px;
	}
	.owl-theme .owl-nav{
		display: none;
	}
	.slide__text h1{
		font-size: 35px;
	}
	header::before{
		width: 50%;
	}
	.check{
		padding: 20px 15px;
	}
	.main__check{
		padding: 20px 15px;
		margin:30px auto;
	}
	.list__about__content{
		width: 100%;
	}
	.list__about__content+.list__about__content{
		margin-top:30px;
	}
	.client__review{
		flex-direction: column;
	}
	.list__amenities{
		text-align: center;
	}
	.amenities__icon{
		margin: 0 auto;
	}

	/*about*/
	.overview{
		height: auto;
		padding-top:50px;
		padding-bottom: 30px;
	}
	.more__about__image{
		margin-top: 30px;
	}
	.text__video{
		width: 100%;
	}
	.facilities{
		margin-top: 30px;
	}
	/*end about*/
	.blog__detail__content,
	.search__blog, .categories, .recent__posts, .tags{
		padding: 20px;
	}
	.prev img, .next img{
		width: 40px;
		height: 40px;
	}
	.prev a, .next a{
		font-size: 12px;
	}

	.form-contact{
		padding: 40px 20px;
	}

	.copyright{
		margin-top: 30px;
	}
	.main__copyright{
		gap: 15px;
	}

	.offers__des{
		margin:0;
		padding:40px 20px;
	}
	.offers__des h3{
		font-size:24px;
	}

	.list__client{
		padding:20px;
	}

	.client__review img{
		margin: 0 auto;
	}
	.list__article{
		padding:20px;
	}
	.form-book-rooms, 
	.main__summer__offers {
		padding: 20px;
	}

	.text__video h2{
		font-size:30px;
	}

	.main__our__video{
		height:400px;
	}
	
	.list__rooms__amenities{
		padding:15px;
		margin-bottom: 15px;
	}
	
	.facilities__content{
		padding:20px;
	}
	.facilities__name{
		font-size:30px;
		margin-bottom:10px;
	}
	
	.detail__services__des{
		margin-top:10px;
	}
	.detail__services__des .title{
		font-size:30px;
	}
	.about__info__label{
		margin-top:10px;
	}


}

@media only screen and (max-width: 991px){
	.list__rooms .btn__card a{
		padding: 15px 20px;
	}
}

.tours .tours-list .item .info-item-tour {
	width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	margin-bottom:10px;
}
.tours{
	position:relative;
	padding:50px 0;
}
.tours .tours-list .item{
	margin-bottom:30px;
}
.tours .tours-list .item .box-image img{
	width:100%;
	height:100%;
	object-fit:cover;
	aspect-ratio: 6/4;
}
.tours .tours-list .item .box-desc{
	padding: 20px 10px;
	background: #f1f3f6;
}
.tours .tours-list .item .item-title{
	font-family: 'Playfair Display';
	font-size: 23px;
	color: #111B27;
	font-weight: 700;
	margin-bottom: 10px;
}
.tours .tours-list .item .item-title a{
	color: inherit;
}
.tours .tours-list .item:hover .item-title a{
	color: var(--second-color);
}
.tours .tours-list .item .info-item-tour p:last-child{
	margin-bottom:0;
}

.tours-detail{
	position: relative;
	padding:50px 0;
}
.tours-detail-inner{
	margin-bottom:30px;
}
.tours-detail-title{
	font-size: 38px;
	color: var(--normal-color);
	font-family: var(--three-font);
	margin-bottom:20px;
}
.tours-detail-sidebar .widget-head{
	background: var(--second-color);
	padding:20px;
	color:#fff;
}
.tours-detail-sidebar .widget-content{
	border:1px solid #d5d6d7;
	padding:15px;
}
.other-tours{
	margin-top:40px;
}
.other-tours .heading-title .sec-title{
	font-size:34px;
}
.other-tours-list .item .item-title{
	font-family: 'Playfair Display';
	font-size: 23px;
	color: #111B27;
	font-weight: 700;
	margin-bottom: 10px;
}
.other-tours-list .item .item-title a{
	color: inherit;
}
.other-tours-list .item .box-image img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	aspect-ratio: 6/4;
}
.other-tours-list .item .box-desc{
	padding:20px 0;
}
.other-tours-list .item .info-item-tour{
	overflow: hidden;
	text-overflow:ellipsis;
	display:-webkit-box;
	-webkit-line-clamp:3;
	line-clamp: 3;
	-webkit-box-orient:vertical;
	margin-bottom:10px
}

.rooms__detail__content{
	margin-bottom:30px;
}
.rooms__detail__content .wrap__content .rooms-detail-title{
	font-family: 'Playfair Display';
	font-size: 48px;
	font-weight: 700;
	color: #111B27;
}
@media(max-width:767.98px){
	.rooms__detail__content .wrap__content .rooms-detail-title{
		font-size:30px;
		margin-bottom:15px;
	}
	.tours-detail-title{
		font-size:30px;
	}
}
@media(max-width:576px){
	.logo{
		width:100px;
	}
	.offers__des{
		padding:20px;
	}
	.about__info__label{
		flex-wrap:wrap;
		gap:10px;
	}
	.tabs{
		gap:10px;
	}
	.list__tabs p{
		padding:8px 10px;
	}
}

.flatpickr-mobile:before  {
	position:absolute;
	top:50%;
	left:15px;
	transform: translateY(-50%);
	content: attr(placeholder);
	color: var(--normal-color);
}
.flatpickr-mobile:focus[value]:not([value=""]):before {
	display: none;
}

input[type="hidden"][value]:not([value=""]) + .flatpickr-mobile:before {
	display: none; 
}