* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-size: 14px;
	font-family: 'Montserrat', sans-serif;
	color: #222;
	line-height: 1.5;
}

ul {
	list-style: none;
	margin-bottom: 0;
}
img{
	max-width: 100%;
	object-fit: cover;
}

header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 100;
}

.header {
	background: rgba(255, 255, 255, .15);
	border-bottom: 1px solid rgba(255, 255, 255, .2);
	position: relative;
}

.header a {
	color: #fff !important;
	text-transform: uppercase;
}


/* Set Active */

.header.active {
	background: #690905f2;
	animation: slideDown .5s ease-in-out;
}

@keyframes slideDown {
	0% {
		transform: translateY(-100%);
	}
	100% {
		transform: translateY(0);
	}
}

/*.header.active a {
color: #fff !important;
}*/

.header.active .nav_header {
	margin-top: -61px;
}

.header.active .nav_menu {
	padding-top: 20px;
}

.header.active .logo_header {
	width: 110px;
	height: 110px;
	border-radius: 50%;
	background: #fff;
	margin-top: 50px;
	box-shadow: 0 0 10px #F3DB81;
}

.header.active .logo_header img {
	width: 60px;
}


/* End Set Active */

.nav_header {
	width: 100%;
	padding: 20px 0;
	transition: .5s;
}

.nav-top {
	display: flex;
}

.nav-top__right {
	margin-left: auto;
	display: flex;
	align-items: center;
}
.language {
	margin-left: 30px;
}

.nav-top__left a {
	margin-right: 10px;
	text-decoration: none;
}

.nav-top__right a {
	font-size: 13px;
	margin-left: 10px;
	text-decoration: none;
}

.nav-top__right a i.fas {
	font-size: 10px;
}

.nav_menu {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.nav_menu .logo_header {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: flex;
	justify-content: center;
	align-items: center;
}

.nav_menu .logo_header img {
	width: 100px;
	transform: scale(1.5);
}

.nav_menu ul {
	display: flex;
}

.nav_menu ul li {
	position: relative;
}
.lang-select{
	border: 1px solid red;
}
.lang-select a img{
	height: 50px;
}

.nav_menu ul a {
	text-decoration: none;
	font-weight: bold;
	transition: .3s ease;
	font-size: 15px;
	line-height: 50px;
}

.nav_menu ul a:hover {
	text-shadow: 0 0 10px #fff;
}

.menu_left ul li a {
	padding-right: 20px;
}

.menu_right ul li a {
	padding-left: 20px;
}


/* Sub Menu */

.nav_menu ul li:hover ul.sub_menu {
	visibility: visible;
	opacity: 1;
	z-index: 100;
	animation: hoverEffect .3s ease-in-out;
}

@keyframes hoverEffect {
	0% {
		transform: translateY(50px);
		opacity: 0.5;
	}
	100% {
		transform: translateY(0);
		opacity: 1;
	}
}
ul.sub_menu {
	display: block;
	position: absolute;
	left: 0;
	width: 200px;
	background: #fff;
	visibility: hidden;
	opacity: 0;
	z-index: -1;
	border-bottom-right-radius: 10px;
	box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.header.active ul.sub_menu{
	background: #fff;
}

ul.sub_menu::before {
	content: '';
	position: absolute;
	top: -10px;
	left: 15px;
	width: 15px;
	height: 10px;
	background: #fff;
	clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}
.header.active ul.sub_menu::before{
	background: #fff;
}

ul.sub_menu li:not(:last-child) {
	border-bottom: 1px solid rgb(216, 214, 214);
}

ul.sub_menu li a {
	padding: 5px 10px;
	line-height: 30px;
	display: block;
	color: #222 !important;
	font-size: 14px;
}


/* End Sub Menu */


/* End Menu */


/* Main */

main {
	position: relative;
}

.banner {
	height: 100vh;
	box-sizing: border-box;
	position: relative;
	/* overflow: hidden; */
}

.banner__img {
	position: relative;
}

.banner__img::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgb(0,0,0,0.5);
}

.banner__img img {
	width: 100%;
	height: 100vh;
	object-fit: cover;
}

.banner__content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	width: 50%;
	color: #fff;
}

.banner__content .star {
	color: #fff;
}

.banner__content h1.title {
	font-size: 3rem;
	font-family: 'Playfair Display', serif;
	text-shadow: 0 2px 5px rgba(0, 0, 0, .5);
	margin: 30px 0;
}

@keyframes slideDown {
	0% {
		transform: translateY(-50px);
		opacity: 0;
	}
	100% {
		transform: translateY(0);
		opacity: 1;
	}
}

@keyframes slideUp {
	0% {
		transform: translateY(50px);
		opacity: 0;
	}
	100% {
		transform: translateY(0);
		opacity: 1;
	}
}

.banner__content h1.title span {
	color: #F3DB81;
}

.banner__content p.text-banner {
	font-size: 18px;
	text-shadow: 0 0 10px #000;
	margin-bottom: 30px;
}

a.button1 {
	animation: slideUp 2s ease;
}

a.button {
	text-decoration: none;
	padding: 8px 17px;
	background: transparent;
	border: 1px solid #ddd;
	color: #fff;
	position: relative;
	font-size: 18px;
	transition: .5s;
}

a.button span {
	z-index: 10;
}

a.button:hover {
	color: #222;
	background: #fff;
}
.btn-more{
	display:inline-block;
	text-decoration: none;
	padding: 8px 17px;
	background: transparent;
	border: 1px solid #000;
	color: #000;
	position: relative;
	font-size: 18px;
	transition: .5s;

}
.btn-more:hover{
	background:#711612;
	color:#fff;
}
.banner__booking {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	padding: 40px 0;
	z-index: 3;
}

.book-date {
	position: relative;
	padding-top: 20px;
	padding-right: 30px;
}

.book-date i.fas {
	position: absolute;
	top: 50%;
	right: 50%;
	transform: translate(-50%, -50%);
	font-size: 1.8em;
	padding-left: 15px;
	color: #fff;
}

.book-date label {
	position: absolute;
	top: 0;
	left: 0;
	color: #fff;
}

.book-date input {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	background: transparent;
	display: inline-block;
	outline: none;
	border: none;
	cursor: pointer;
	text-indent: -9999;
	color: transparent;
}

.date-value {
	z-index: 10;
	padding-top: 20px;
	color: #fff;
	font-family: 'Playfair Display', serif;
	transition: .5s;
}

.book-date:hover .date-value {
	padding-left: 15px;
}

.date-value .day {
	font-size: 6em;
	line-height: 28px;
}

.date-value .month {
	font-size: 1.5em;
}

.date-value .year {
	font-size: 1.2em;
	color: #f1c40f
}


/* Custom datepicker */

.book-date .ui-state-default,
.ui-widget-content .ui-state-default {
	padding: 15px;
}

.book-date .ui-state-default:hover,
.ui-widget-content .ui-state-default:hover {
	background: #fff;
}

.ui-datepicker {
	width: 25em !important;
}

.book-now {
	width: 100%;
	text-align: center;
}
button#bookNow {
	width: 100%;
	padding: 20px;
	border: 1px solid #f3f3f3;
	background-color: transparent;
	font-size: 20px;
	color:#FFF;
}
button#bookNow:hover {
	background: #fff;
	color: #333;
	transition: all .5s;
}
button#bookNow span
{
	text-transform:uppercase;
}
a.btn--big {
	width: 100%;
	padding: 15px;
	display: block;
	font-size: 22px;
}

.book-now small {
	display: block;
	font-size: 50%;
}

.guests {
	position: absolute;
	left: 0;
	margin-top: 20px;
	background: #fff;
	box-shadow: 0 0 10px rgba(0, 0, 0, .35);
	width: 350px;
	z-index: 10;
	display: none;
}

.guests.active {
	display: block;
	animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
	0% {
		opacity: 0.5;
	}
	100% {
		opacity: 1;
	}
}

.guest-header {
	padding: 10px;
	background: #690905;
	display: flex;
	justify-content: space-between;
}

.guest-header span {
	color: #fff;
}

.guest-header span i.fa {
	padding: 5px;
	border: 1px solid #ddd;
	border-radius: 50%;
	cursor: pointer;
}

.guest-body {
	padding: 10px;
}

.guest-item {
	display: flex;
	align-items: center;
	padding: 10px;
	border-bottom: 1px dashed #ddd;
}

.guest-item .number {
	width: 50px;
	height: 50px;
	border: 1px solid #ddd;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.guest-item .number span {
	color: #000;
	font-weight: bold;
}

.guest-item .type-guest {
	padding-left: 10px;
}

.guest-item .action {
	margin-left: auto;
}

.guest-item .action span {
	border: 1px solid #ddd;
	border-radius: 50%;
	padding: 4px 11px;
	font-size: 22px;
	font-weight: bold;
	cursor: pointer;
}

.guest-item .action span.plus:hover {
	background: rgb(144, 243, 144);
}

.guest-item .action span.minus:hover {
	background: rgb(234, 98, 98);
}


/* Custom Owl  */

#sliderBanner .owl-nav button.owl-prev,
#sliderBanner .owl-nav button.owl-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 35px;
	height: 35px;
	display: flex;
	justify-content: center;
	align-items: center;
	outline: none;
	background: transparent;
	border: none;
}

#sliderBanner .owl-nav button.owl-prev {
	left: 15px;
}

#sliderBanner .owl-nav button.owl-next {
	right: 15px;
}

#sliderBanner .owl-nav button.owl-prev span,
#sliderBanner .owl-nav button.owl-next span {
	font-size: 36px;
	color: #fff;
	font-weight: bold;
	transition: .4s;
}

#sliderBanner .owl-nav button.owl-prev span:hover,
#sliderBanner .owl-nav button.owl-next span:hover {
	transform: scale(1.3);
}

#sliderBanner .owl-stage .owl-item.active {
	animation: abc 2s ease;
}

#sliderBanner .owl-stage .owl-item:not(.active) {
	animation: xyz 1s ease-in-out;
}

#sliderBanner .owl-stage .owl-item.active h1.title {
	animation: slideDown 1s ease;
}

#sliderBanner .owl-stage .owl-item.active p.text-banner {
	animation: slideUp 2s ease;
}

@keyframes abc {
	0% {
		opacity: 0.8;
	}
	75% {
		opacity: 0.9;
		transform: scale(1.15);
	}
	100% {
		opacity: 1;
		transform: scale(1);
	}
}

@keyframes xyz {
	0% {
		opacity: 1;
		transform: scale(1);
	}
	100% {
		opacity: 0;
		transform: scale(0);
	}
}

#sliderBanner .owl-dots {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
}


/* list room */

.list-room {
	position: relative;
	/* background: #000; */
}

.rooms.rooms-widget {
	position: relative;
}

.rooms.rooms-widget:before,
.new::before {
	content: "";
	position: absolute;
	width: 100%;
	height: 50%;
	left: 0;
	bottom: 0;
	background-color: #690905;
}

.btn.btn-clean-dark {
	background-color: transparent;
	border-color: rgba(58, 61, 69, .5);
	color: #3a3d45 !important;
	font-family: "Montserrat", "sans-serif";
}
section.rooms.rooms-widget {
	padding-bottom: 70px;
}
.section-header {
	padding-bottom: 40px;
}

.section-header .title {
	margin-top: 0;
	margin-bottom: 5px;
	color: #3a3d45;
	font-family: "Playfair Display", serif;
	position: relative;
	text-transform: uppercase;
}

.section-header .title span {
	color: #f1c40f;
}

.section-header p {
	margin: 0;
}

.section-header .title .btn {
	position: absolute;
	right: 0;
	top: 3px;
}

.rooms article .image {
	position: relative;
}

.owl-rooms .item article {
	margin-top: 20px;
}

.rooms article .image img {
	width: 100%;
}

.rooms article .details {
	padding: 35px;
	background-color: #eee;
}

.rooms .title a {
	color: #EAC76E;
	text-decoration: none;
	line-height: 32px;
}

.rooms .book {
	display: flex;
	justify-content: space-between;
}

.rooms .book .btn-main {
	background-color: #690905;
	text-transform: uppercase;
	font-weight: 600;
	color: #FFF;
	border-radius: 0;
	padding: 10px 15px;
}

.owl-room .owl-nav {
	opacity: 0;
	transition: all .5s ease-in-out;
}

section.rooms.rooms-widget:hover .owl-nav {
	opacity: 1;
}

.owl-room .owl-nav button.owl-prev {
	position: absolute;
	top: 50%;
	left: -30px;
	background: transparent!important;
	outline: none;
}

.owl-room .owl-nav button.owl-next {
	position: absolute;
	top: 50%;
	right: -30px;
	background: transparent!important;
	outline: none;
}

.owl-room button span {
	color: #FFF;
	font-size: 45px;
}


/* end list room */


/* service */

.stretcher-wrapper .stretcher {
	position: relative;
	width: 100%;
	height: auto;
	overflow: hidden;
	font-size: 0;
	margin: 0;
	padding: 0;
}

.stretcher-wrapper .stretcher {
	height: 500px;
	white-space: nowrap;
}

.stretcher-wrapper .stretcher .stretcher-item {
	position: relative;
	background-size: cover;
	background-position: center;
	display: block;
	width: 100%;
	height: 30vh;
	overflow: hidden;
	-moz-transition: width .5s;
	-o-transition: width .5s;
	-webkit-transition: width .5s;
	transition: width .5s;
}

.stretcher-wrapper .stretcher .stretcher-item {
	width: 23%;
	height: 100%;
	display: inline-block;
}

.stretcher-item .stretcher-logo {
	background-color: rgba(0, 72, 108, .8);
	opacity: 1;
	position: absolute;
	width: 100%;
	height: 100%;
	-moz-transition: opacity .2s;
	-o-transition: opacity .2s;
	-webkit-transition: opacity .2s;
	transition: opacity .2s;
	font-size: initial;
	color: #fff;
}

.stretcher-wrapper .stretcher {
	position: relative;
	width: 100%;
	height: auto;
	overflow: hidden;
	font-size: 0;
	margin: 0;
	padding: 0;
}

.stretcher-wrapper .stretcher {
	height: 500px;
	white-space: nowrap;
}

.stretcher-wrapper .stretcher .stretcher-item {
	position: relative;
	background-size: cover;
	background-position: center;
	display: block;
	width: 100%;
	height: 30vh;
	overflow: hidden;
	-moz-transition: width .5s;
	-o-transition: width .5s;
	-webkit-transition: width .5s;
	transition: width .5s;
}

.stretcher-wrapper .stretcher .stretcher-item {
	width: 23%;
	height: 100%;
	display: inline-block;
}

.stretcher-wrapper .section-header:before {
	content: '';
	position: absolute;
	border-width: 20px 20px 0 20px;
	border-style: solid solid solid solid;
	border-color: #fff transparent #fff;
	top: 60px;
	left: 50%;
	z-index: 2;
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}

.stretcher-wrapper .section-header {
	background-color: #fff;
	position: relative;
	padding-bottom: 40px;
}

.stretcher-wrapper .stretcher .stretcher-item .stretcher-logo img,
.stretcher-wrapper .stretcher .stretcher-item .stretcher-logo .text {
	position: absolute;
	left: 50%;
	top: 50%;
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.stretcher-wrapper .stretcher .stretcher-item.active .stretcher-logo .text {
	display: none;
}

.stretcher-wrapper .stretcher .stretcher-item .stretcher-logo .text {
	text-align: center;
}

.stretcher-wrapper .stretcher .stretcher-item figure {
	display: none;
	position: absolute;
	bottom: -15px;
	padding: 15px 30px;
	background-color: rgba(0, 72, 108, .8);
	/* background: #f3f3f3; */
	width: 100%;
	-moz-transition: width .5s;
	-o-transition: width .5s;
	-webkit-transition: width .5s;
	transition: width .5s;
	color: #FFF;
}

.stretcher-wrapper .stretcher .stretcher-item figure h4 {
	margin-bottom: 0;
	color: #FFF;
	font-family: "Playfair Display", serif;
}

.stretcher-wrapper .stretcher .stretcher-item figure figcaption {
	white-space: normal;
	font-size: 13px;
}

.stretcher-wrapper .stretcher .stretcher-item.active {
	width: 38%;
}

.stretcher-wrapper .stretcher .stretcher-item.inactive {
	width: 18%;
}

.stretcher-wrapper .stretcher .stretcher-item.active .stretcher-logo {
	background-color: transparent;
}

.stretcher-wrapper .stretcher .stretcher-item.active figure {
	display: block;
}

.stretcher-wrapper .stretcher .stretcher-item.more .more-icon {
	font-size: 70px;
	color: #fff;
	position: absolute;
	left: 18%;
	top: 50%;
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.stretcher-wrapper .stretcher .stretcher-item.more.active .more-icon {
	left: 50%;
	font-size: 20px;
}

.stretcher-wrapper .stretcher .stretcher-item.more .more-icon a {
	display: none;
}

.stretcher-wrapper .stretcher .stretcher-item.more .more-icon span {
	display: block;
}

.stretcher-wrapper .stretcher .stretcher-item.more.active .more-icon span {
	display: none;
}

.stretcher-wrapper .stretcher .stretcher-item.more.active .more-icon a {
	color: #FFF;
	display: block;
}

.stretcher-wrapper .stretcher .stretcher-item.more {
	background-color: #002639
}


/* emd service */


/* New */

.new {
	position: relative;
}

.new .image img {
	width: 100%;
	position: static;
}

.new .text {
	padding: 30px;
	background-color: #FFF;
	position: relative;
	transition: all .3s;
	transform: translate(0, -30px);
}

.new .text .time {
	width: 65px;
	height: 65px;
	border-radius: 50%;
	padding: 10px;
	font-size: 12px;
	color: #FFF;
	background-color: #690905;
	text-align: center;
	text-decoration: none;
	position: absolute;
	top: -50%;
	left: 50%;
	transform: translate(-50%, 10px);
	text-align: center;
	line-height: 1;
}

.new .text .time span:nth-child(2) {
	font-size: 25px;
}

.new .text h4 {
	font-family: "Playfair", "sans-serif";
	text-decoration: none;
	font-size: 23px;
	color: #222;
	line-height: 1.1;
	height: 40px;
}

.new .col-md-4 a:hover {
	text-decoration: none;
}

.new article:hover>.text {
	transform: translate(0);
}


/* end new */


/* card */

.cards figure {
	position: relative;
	overflow: hidden;
	margin-bottom: 30px;
}

.cards figure figcaption {
	-webkit-transform: scale(1.3);
	transform: scale(1.3);
	min-height: 360px;
	position: relative;
	background-size: cover;
	background-position: center;
	transition: all .5s;
}

.cards figure figcaption:before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: #690905;
	opacity: 0;
	-moz-transition: all .3s;
	-o-transition: all .3s;
	-webkit-transition: all .3s;
	transition: all .5s;
}

.cards figure figcaption img {
	display: none;
}

.cards figure figcaption img {
	width: 100%;
}

.cards figure .btn {
	top: 80%;
}

.cards figure .btn {
	position: absolute;
	top: 80%;
	left: 50%;
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	color: #FFF;
	text-transform: uppercase;
	padding: 5px 15px;
	border: 1px solid #FFF;
	transition: all .5s;
}

.cards figure.active .btn {
	position: absolute;
	top: 50%;
	left: 50%;
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	color: #FFF;
	text-transform: uppercase;
	padding: 5px 15px;
	border: 1px solid #FFF;
	transition: all .5s;
}

.cards figure.active figcaption {
	-moz-transform: scale(1.5);
	-ms-transform: scale(1.5);
	-o-transform: scale(1.5);
	-webkit-transform: scale(1.5);
	transform: scale(1.5);
	transition: all 2s;
}

.cards figure.active figcaption:before {
	opacity: .8;
}


/* end card */


/* Image blog */

.image-blocks .section-header {
	min-height: 400px;
	padding-top: 100px;
	margin-bottom: -180px;
}

.image-blocks .section-header .title,
.image-blocks .section-header p {
	color: #FFF!important;
}

.image-blocks .section-header .btn.btn-clean-dark {
	color: #FFF!important;
	border-color: #FFF;
}

.image-blocks .blocks {
	display: flex;
}

.blocks_text {
	flex: 1;
	background: #EEE;
}

.blocks_text .text {
	padding: 70px 50px;
}

.blocks_img {
	flex: 1;
}

.image-blocks .blocks_img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.blocks_text h2.title {
	font-family: "Display", "sans-serif";
	font-size: 35px;
}

.image-blocks .blocks_text .room-facilities {
	display: flex;
	justify-content: center;
}
.image-blocks .blocks_text .room-facilities a
{
	color:#333;
	padding:0 15px;
}
.image-blocks .blocks_text .room-facilities {
	margin: 40px 0;
	padding: 15px 0;
	border-top: 1px solid #6767676b;
	border-bottom: 1px solid #6767676b;
}

.image-blocks .blocks_text .room-facilities figcaption {
	font-size: 13px;
	text-align: center;
}

.image-blocks .blocks_text .room-facilities figure {
	margin: 0;
}

.image-blocks .blocks_text .room-facilities i {
	font-size: 30px;
	margin-bottom: 3px;
}

.image-blocks .book {
	display: flex;
}

.image-blocks .book .btn.btn-danger {
	padding: 10px 20px;
	text-transform: uppercase;
	background-color: #e4bf6e;
	border: 1px solid #e4bf6e;
	margin-right: 15px;
}

.image-blocks .book div:nth-child(2) {
	margin-left: 15px;
}

.image-blocks .book div span {
	font-size: 13px;
}

.image-blocks .book div span.price.h2 {
	font-size: 25px;
}


/* end Image blog */


/* qoutes */

.quotes {
	background-color: #006a9f;
	color: #fff;
	position: relative;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	height: 400px;
	z-index: -2;
}

.quotes .section-header .title {
	color: #FFF;
	font-weight: 400;
	font-family: "Playfair Display", serif;
}

.quotes .text {
	text-align: center;
}

.quotes h4 {
	font-family: "Display", "sans-serif";
}

.quotes .more .rating {
	text-align: center;
}

.owl-quotes .owl-nav {
	opacity: 0;
	transition: all .5s ease-in-out;
}

section.quotes.quotes-slider:hover .owl-nav {
	opacity: 1;
}

.owl-quotes .owl-nav button.owl-prev {
	position: absolute;
	top: 50%;
	left: -30px;
	background: transparent!important;
	outline: none;
}

.owl-quotes .owl-nav button.owl-next {
	position: absolute;
	top: 50%;
	right: -30px;
	background: transparent!important;
	outline: none;
}

.owl-quotes button span {
	color: #FFF;
	font-size: 45px;
}


/* end qoutes */


/* End Main */


/* section header */


/* section footer */

.subscribe {
	position: relative;
	background-image: url(/img/detail/contact.png);
	background-size: 60% auto;
	padding: 150px;
	background-position: center;
	background-color: #690905;
	background-attachment: fixed;
	background-repeat: no-repeat;
	z-index: 999;
}

.subscribe .box {
	max-width: 400px;
	margin: auto;
	text-align: center;
	color: #FFF;
}

.subscribe .box::after {
	background-color: #690905;
	-moz-transform: translate(-50%, -50%) rotate(45deg);
	-ms-transform: translate(-50%, -50%) rotate(45deg);
	-o-transform: translate(-50%, -50%) rotate(45deg);
	-webkit-transform: translate(-50%, -50%) rotate(45deg);
	transform: translate(-50%, -50%) rotate(45deg);
	left: 50%;
	z-index: -1;
	box-shadow: 0 0 15px rgba(0, 0, 0, .3);
	opacity: .5;
	width: 400px;
	height: 400px;
	position: absolute;
	display: block;
	content: "";
	top: 50%;
}

.subscribe .box .title {
	font-family: "Display", "sans-serif";
	font-size: 33px;
}

.subscribe .form-group {
	position: relative;
	margin: 0 15px;
}

.subscribe .form-control {
	display: block;
	width: 100%;
	height: 46px;
	padding: 12px 18px;
	font-size: 14px;
	line-height: 1.42857;
	color: #555;
	background-color: #fff;
	background-image: none;
	border: 1px solid #ccc;
	border-radius: 1.5px;
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
	-webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
	-o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
	transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

.subscribe button.btn.btn-sm.btn-main {
	position: absolute;
	top: -10%;
	right: 15px;
	background: #002639;
	color: #FFF;
	text-transform: uppercase;
	transform: translateY(50%);
}

footer {
	padding: 40px 0;
	background-color: #711612;
	color: #fff;
}

.footer-left {
	text-align: left;
}

.footer-right {
	text-align: right;
}

.footer-right ul li,
.footer-left ul li,
.icon ul li {
	display: inline-table;
}

.footer-link a,
.footer-social a {
	color: #FFF;
	padding: 0 10px;
	position: relative;
}

.footer-link li a::before {
	content: "|";
	position: absolute;
	top: 50%;
	right: 0;
	color: #FFF;
	transform: translate(-50%, -50%);
}

.footer-link li:nth-last-of-type(1) a::before {
	display: none;
}

.footer-social a {
	padding: 0 5px;
}

.footer-social .icon {
	margin-top: 40px;
}

.footer-social .icon i {
	font-size: 18px;
}

.footer-social .copyright {
	margin-top: 20px;
	margin-bottom: 20px;
}


/* end footer */


/* banner share */

.banner_share {
	position: relative;
	width: 100%;
	height: 300%;
	/*margin-bottom: -200px;*/
}

.banner_share img {
	width: 100%;
	height: 100%;
	max-height: 70vh;
	object-fit: cover;
}

.banner_share::before {
	width: 100%;
	content: "";
	height: 100%;
	position: absolute;
	background-color: #690905e6;
}

.banner_share .title {
	color: #FFF;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
	text-align: center;
}

.banner_share .title h2 {
	font-family: "Display", "sans-serif";
	text-transform: uppercase;
}

.banner_share .title p {
	font-size: 15px;
	text-transform: uppercase;
}


/* end banner share */


/* card about h2 */

.cards-about h2 {
	position: relative;
}


/* .container .section-header h2:after {
content: "";
position: absolute;
left: 50%;
-moz-transform: translateX(-50%);
-ms-transform: translateX(-50%);
-o-transform: translateX(-50%);
-webkit-transform: translateX(-50%);
transform: translateX(-50%);
background-color: #ddd;
} */

.cards-about h2:before {
	content: "";
	width: 10px;
	height: 10px;
	border-radius: 50%;
	position: absolute;
	background: #DDD;
	bottom: -100%;
	text-align: center;
	margin: auto;
	left: 50%;
	transform: translate(-50%, -50%);
}

.cards-about h2::after {
	content: "";
	width: 100px;
	height: .5px;
	border-radius: 50%;
	position: absolute;
	background: #DDD;
	bottom: -75%;
	text-align: center;
	margin: auto;
	margin-top: -5px;
	left: 50%;
	transform: translate(-50%, -50%);
}

.cards-about .title {
	margin: 70px 0;
	font-size: 15px;
	text-transform: inherit;
	text-align: center;
	font-family: "Playfair Display", serif;
}


/* end card about h2 */

.book-now small {
	display: block;
	font-size: 50%;
}

.book-date input.soPerson {
	width: 50px;
	background: transparent;
	display: inline-block;
	outline: none;
	border: none;
	cursor: pointer;
	padding-left: 20px;
	font-size: 16px;
	font-weight: bold;
}
.img-review i{
	font-size: 30px;
}
.imreview
{
	width:100px!important;
	height:20px!important;
}
.img-review
{
	display: flex;
	justify-content: space-between;
	align-items: center;

}
.content-item h4
{
	color:#000;
	text-align: justify;
	font-size:20px;
	font-weight:600;
	margin-top: 10px;
}
.slidertrip .item {
	padding: 15px;
	background: #FFF;
	border-radius: 15px;
	box-shadow: inset -1px 0px 3px 0px black;
}
.cttrip {
	text-align: justify;
	margin-bottom:15px;
}
.readmore
{
	color: #cfb16d;
	text-align: right;
	font-weight:600;
}
.readmore:hover {
	color: #f99500;
	text-align: right;
}
.rv-footer {
	display: flex;
	justify-content: space-around;
}
img.per-rv {
	width: 50px!important;
	height: 50px;
	border-radius: 50%;
}
.rv-namedate p
{
	margin-bottom:5px;
	font-weight:600;
}

div#CDSWIDSSP {
	width: 100%!important;
}
.ptrip {
	height: 80px;
	overflow: hidden;
	-webkit-box-orient: vertical;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
	-webkit-line-clamp: 4;
}
.slidertrip .content-item h4 {
	color: #000;
	text-align: justify;
	font-size: 20px;
	font-weight: 600;
	margin-top: 10px;
	padding-bottom: 20px;
}

/*=========*/
.heading__title h2{
	font-size: 40px;
	color: #000;
	font-family: "Playfair Display", serif;
	text-transform: uppercase;
}
.intro__des{
	height: 100%;
	padding: 40px;
	border: solid 1px #afa593;
}
.intro__des p{
	font-size: 15px;
	color: #000;
	font-weight: 600;
	line-height: 28px;
}
.st__news{
	position: relative;
}
.st__news::before{
	content: "";
	position: absolute;
	width: 100%;
	height: 50%;
	left: 0;
	bottom: 0;
	background-color: #690905;
}
.item__news-des{
	position: relative;
	padding: 25px;
	background-color: #fff;
	transform: translateY(-30px);
	transition: all .3s;
}
.item__news:hover .item__news-des{
	transform: translateY(0);
	transition: all .3s;
}
.item__news{
	position: relative;
}
.post__time{
	width: 65px;
	height: 65px;
	display: block;
	background-color: #690905;
	font-size: 65%;
	color: #515561;
	border-radius: 100%;
	position: absolute;
	top: -50px;
	left: 50%;
	transform: translateX(-50%);
	padding: 10px;
}
.post__time span{
	display: block;
	color: white;
	font-weight: 600;
	text-align: center;
	line-height: 1;
}
.post__time span:nth-child(2){
	font-size: 22px;
}
.item__news-des > a{
	display: inline-block;
	font-family: "Playfair Display", serif;
	font-size: 18px;
	color: #b58e3e;
}
section.st__map{
	padding-top: 0;
}
.st__map iframe{
	display: block;
}
.bg-img{
	background-color: #eeeeee;
	background-image: url(/files/images/bg-pattern.png);
}
.facility__intro{
	box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
	margin-bottom: 30px;
}
.menumobile i{
	color: #fff;
}


.tab-content{
	display: none;
}
.tab-content.current{
	display: block;
}
.tabs{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: 30px 0;
	gap: 15px;
}
.list__tabs{
	padding: 8px 20px;
	border: 1px solid #ccc;
	cursor: pointer;
	font-weight: 600;
	transition: all .3s;
}
.list__tabs:hover,
.list__tabs.current{
	background-color: #690905f2;
	border-color: #690905f2;
	color: #fff;
	transition: all .3s;
}
.room_item-forward{
	padding: 30px 20px;
    background: #EEEEEE;
    transform: translateY(-20px);
    transition: .4s;
    position: relative;
}
.room_item-forward .item-title{
	    font-size: 18px;
    font-weight: 600;
    color: #3a3d45;
}
.room_item-forward .item-title a{
	color:inherit;	
}
.widget_categories a{
	color:#222;
}



/*.tabs {
	background-color: transparent;
	border-width: 0;
	padding: 0;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
}*/

.tabs .z-tabs-nav {
	list-style: none;
	padding: 0;
	margin: 0;
	background-color: transparent;
	border-width: 0;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
}

.tabs .z-tabs-nav li {
	background-color: transparent !important;
	background-image: none !important;
	border-width: 0 !important;
	margin: 0 40px 0 0 !important;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
}

.tabs .z-tabs-nav li a {
	color: #666;
	font-weight: 700;
	padding: 0 !important;
	text-transform: uppercase;
	font-family: 'Muli' font-size: 14px;
}

.tabs .z-tabs-nav li:hover a,
.tabs .z-tabs-nav li.ui-tabs-active a {
	color: var(--primary-color) !important;
}

.tabs .z-tabs-panel {
	padding: 0;
	margin-top: 30px;
}

.tabs.tabs-2 .z-tabs-nav li {
	margin: 0 !important;
}

.tabs.tabs-2 .z-tabs-nav li a {
	font-family: 'Muli';
	padding: 10px 15px !important;
	border: 1px solid #BBB;
	-webkit-transition: all .2s ease;
	-moz-transition: all .2s ease;
	-ms-transition: all .2s ease;
	-o-transition: all .2s ease;
	font-size: 14px;
	font-weight: 500;
	/*height: 39px;*/
	border-bottom-color: var(--primary-color);
}
#tabbed-nav.z-tabs.horizontal.top.white.z-bordered > ul > li.z-active > a {
	border-top: 3px solid #feb301;
	margin-top: 0;
	margin-bottom: 0;
	background: none;
	color: #000;
	box-shadow: none;
	font-weight: 500;
}

.tabs.tabs-2 .z-tabs-nav li:hover a, .tabs.tabs-2 .z-tabs-nav li:focus a {
	color: var(--primary-color) !important;
	border-color: var(--primary-color);
	/*border-bottom-color :#fff;*/
}

.tabs.tabs-2 .z-tabs-nav li.ui-tabs-active a {
	color: var(--primary-color) !important;
	border-color: var(--primary-color);
	border-bottom-color: #fff;
}
.tabs.tabs-2 .z-container .z-content .z-content-inner{
	padding:15px 10px !important;
}

.btn-fixed{
	position: fixed;
	bottom: 30px;
    left: 15px;
	z-index: 20;
}
.btn-fixed ul li:first-child{
	background-color: #fff;
	border-radius: 50px;
	padding: 6px 10px;
	min-width: 200px;
	text-align: center;
	display: none;
}
.btn-fixed ul li p{
	font-weight: 600;
	margin-bottom: 0;
}
.btn-fixed ul li{
	margin-bottom: 10px;
}
.btn-fixed ul li img{
	width: 45px;
	object-fit: cover;
}