/**
* Bootstrap v5.3.2
*/



/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
	font-family: "Open Sans", sans-serif;
	background: #0c0b09;
	color: #edeae5;
}

a {
	color: #e88e2b;
	text-decoration: none;
}

a:hover {
	color: #ffffff;
	text-decoration: none;
}

a.rev {
	color: #ffffff;
	text-decoration: none;
}

a.rev:hover {
	color: #e88e2b;
	text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "Playfair Display", serif;
}

p {
	text-align: justify;
}


/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9999;
	overflow: hidden;
	background: #1a1814;
}

#preloader:before {
	content: "";
	position: fixed;
	top: calc(50% - 30px);
	left: calc(50% - 30px);
	border: 6px solid #1a1814;
	border-top-color: #e88e2b;
	border-bottom-color: #e88e2b;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
	position: fixed;
	visibility: hidden;
	opacity: 0;
	right: 15px;
	bottom: 15px;
	z-index: 996;
	width: 44px;
	height: 44px;
	border-radius: 50px;
	transition: all 0.4s;
	border: 2px solid #e88e2b;
}

.back-to-top i {
	font-size: 28px;
	color: #e88e2b;
	line-height: 0;
}

.back-to-top:hover {
	background: #e88e2b;
	color: #1a1814;
}

.back-to-top:hover i {
	color: #0c0b09;
}

.back-to-top.active {
	visibility: visible;
	opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
	[data-aos-delay] {
		transition-delay: 0 !important;
	}
}


/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
	height: 40px;
	font-size: 14px;
	background: #00000033;
	transition: all 0.5s;
	z-index: 996;
}

#topbar.topbar-scrolled {
	top: -40px;
}

#topbar .contact-info a {
	font-size: 20px;
	padding: 0 30px 0 0;
}

#topbar .contact-info i {
	font-style: normal;
	font-weight: 400;
	/*color: #e88e2b;*/
}

#topbar .contact-info i span {
	padding-left: 5px;
	color: #ffffff;
}

#topbar .languages ul {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	padding: 0;
	margin: 0;
	color: #e88e2b;
}

#topbar .languages ul a {
	color: white;
}

#topbar .languages ul li+li {
	padding-left: 10px;
}

#topbar .languages ul li+li::before {
	display: inline-block;
	padding-right: 10px;
	color: #ffffff80;
	content: "/";
}



/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
	background: #0c0b09cc;
	border-bottom: 1px solid #ffffff4d;
	transition: all 0.5s;
	z-index: 997;
	padding: 15px 0;
	top: 40px;
}

#header.header-scrolled {
	top: 0;
	background: #000000;
	border-bottom: 1px solid #ffffff4d;
}

#header .logo {
	font-size: 28px;
	margin: 0;
	padding: 0;
	line-height: 1;
	font-weight: 300;
	letter-spacing: 1px;
	text-transform: uppercase;
	font-family: "Poppins", sans-serif;
}



#header .logo a {
	color: #ffffff;
}

#header .logo img {
	max-height: 40px;
}

@media (max-width: 400px) {
	#header .logo {
		font-size: 22px;
	}
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
	padding: 0;
}

.navbar ul {
	margin: 0;
	padding: 0;
	display: flex;
	list-style: none;
	align-items: center;
}

.navbar li {
	position: relative;
}

.navbar a,
.navbar a:focus {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 0 10px 18px;
	color: #ffffff;
	white-space: nowrap;
	transition: 0.3s;
	font-size: 15px;
	font-weight: 500;
	text-transform: uppercase;
}

.navbar a i,
.navbar a:focus i {
	font-size: 12px;
	line-height: 0;
	margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
	color: #e88e2b;
}

.navbar .dropdown ul {
	display: block;
	position: absolute;
	left: 14px;
	top: calc(100% + 30px);
	margin: 0;
	padding: 10px 0;
	z-index: 99;
	opacity: 0;
	visibility: hidden;
	background: #ffffff;
	box-shadow: 0px 0px 30px #0C0B0980;
	transition: 0.3s;
	border-radius: 4px;
}

.navbar .dropdown ul li {
	min-width: 200px;
}

.navbar .dropdown ul a {
	padding: 10px 20px;
	color: #0c0b09;
}

.navbar .dropdown ul a i {
	font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
	color: #e88e2b;
}

.navbar .dropdown:hover>ul {
	opacity: 1;
	top: 100%;
	visibility: visible;
}

.navbar .dropdown .dropdown ul {
	top: 0;
	left: calc(100% - 30px);
	visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
	opacity: 1;
	top: 0;
	left: 100%;
	visibility: visible;
}

@media (max-width: 1366px) {
	.navbar .dropdown .dropdown ul {
		left: -90%;
	}

	.navbar .dropdown .dropdown:hover>ul {
		left: -100%;
	}
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
	color: #ffffff;
	font-size: 28px;
	cursor: pointer;
	display: none;
	line-height: 0;
	transition: 0.5s;
}

@media (max-width: 1160px) {
	.mobile-nav-toggle {
		display: block;
	}

	.navbar ul {
		display: none;
	}
}

.navbar-mobile {
	position: fixed;
	overflow: hidden;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	background: #0C0B0980;
	transition: 0.3s;
	z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
	position: absolute;
	top: 15px;
	right: 15px;
}

.navbar-mobile ul {
	display: block;
	position: absolute;
	top: 55px;
	right: 15px;
	bottom: 15px;
	left: 15px;
	padding: 10px 0;
	border-radius: 6px;
	background-color: #1a1814;
	overflow-y: auto;
	transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
	padding: 10px 20px;
	font-size: 15px;
	color: #ffffff;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
	color: #e88e2b;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
	margin: 15px;
}

.navbar-mobile .dropdown ul {
	position: static;
	display: none;
	margin: 10px 20px;
	padding: 10px 0;
	z-index: 99;
	opacity: 1;
	visibility: visible;
	background: #ffffff;
	box-shadow: 0px 0px 30px #0C0B0980;
}

.navbar-mobile .dropdown ul li {
	min-width: 200px;
}

.navbar-mobile .dropdown ul a {
	padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
	font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
	color: #e88e2b;
}

.navbar-mobile .dropdown>.dropdown-active {
	display: block;
}

/*--------------------------------------------------------------
# Home Section
--------------------------------------------------------------*/
#home {
	width: 100%;
	height: 101vh;
	background: url("../img/home-bg.webp") top center;
	background-size: cover;
	position: relative;
	padding: 0;
}

#home:before {
	content: "";
	background: #00000033;
	position: absolute;
	bottom: 0;
	top: 0;
	left: 0;
	right: 0;
}

#home .container {
	padding-top: 110px;
}

@media (max-width: 992px) {
	#home .container {
		padding-top: 98px;
	}
}

#home h1 {
	margin: 0;
	font-size: 48px;
	font-weight: 700;
	line-height: 56px;
	color: #ffffff;
	font-family: "Poppins", sans-serif;
}

#home h1 span {
	color: #e88e2b;
}

#home h2 {
	color: #edeae5;
	margin-bottom: 10px 0 0 0;
	font-size: 22px;
}

#home img {
	max-height: 200px;
	
}
.hshade {
	-webkit-filter: drop-shadow(0px 0px 5px #000000);
	filter: drop-shadow(0px 0px 4px #000000);
}

@media (min-width: 1366px) {
	#home {
		background-attachment: fixed;
	}
}

@media (max-width: 992px) {
	#home .play-btn {
		margin-top: 30px;
	}
}

@media (max-height: 500px) {
	#home {
		height: auto;
	}

	#home .container {
		padding-top: 130px;
		padding-bottom: 60px;
	}
}

@media (max-width: 768px) {
	#home h1 {
		font-size: 28px;
		line-height: 36px;
	}

	#home h2 {
		font-size: 18px;
		line-height: 24px;
	}
	
	#home img {
		max-height: 120px;
	}
}

@keyframes pulsate-btn {
	0% {
		transform: scale(0.6, 0.6);
		opacity: 1;
	}

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

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
	padding: 60px 0;
	overflow: hidden;
}

.section-bg {
	background-color: #1a1814;
}

.section-title {
	padding-bottom: 40px;
}

.section-title h2 {
	font-size: 14px;
	font-weight: 500;
	padding: 0;
	line-height: 1px;
	margin: 0 0 5px 0;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #d8d1c4;
	font-family: "Poppins", sans-serif;
}

.section-title h2::after {
	content: "";
	width: 120px;
	height: 1px;
	display: inline-block;
	background: #ffffff4d;
	margin: 4px 10px;
}

.section-title p {
	margin: 0;
	margin: 0;
	font-size: 28px;
	font-weight: 700;
	font-family: "Playfair Display", serif;
	color: #e88e2b;
	text-align: left;
}


/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about {
	background: url("../img/about-bg.webp") center center;
	background-size: cover;
	position: relative;
	padding: 80px 0;
	z-index: 1;
}

.about2 {
	position: relative;
	z-index: 2;
}

.about:before {
	content: "";
	background: #000000cc;
	position: absolute;
	bottom: 0;
	top: 0;
	left: 0;
	right: 0;
}

about .section-title h2::after {
	z-index: 1;
	background: #ffffff4d;
}

.about .about-img {
	position: relative;
	transition: 0.5s;
}

.about .about-img img {
	max-width: 100%;
	position: relative;
}

.about .content {
	position: relative;
}

.about .content h3 {
	font-weight: 600;
	font-size: 26px;
}

.about .content ul {
	list-style: none;
	padding: 0;
}

.about .content ul li {
	padding-bottom: 10px;
}

.about .content ul i {
	font-size: 20px;
	padding-right: 4px;
	color: #e88e2b;
}

.about .content p:last-child {
	margin-bottom: 0;
}

@media (min-width: 1024px) {
	.about {
		background-attachment: fixed;
	}
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .box {
	padding: 30px 30px;
	transition: all ease-in-out 0.3s;
	background: #1a1814;
}

.services .box span {
	display: block;
	font-size: 28px;
	font-weight: 700;
	color: #e88e2b;
}

.services .box h4 {
	font-size: 24px;
	font-weight: 600;
	padding: 0;
	margin: 20px 0;
	color: #d8d1c4;
}

.services .box p {
	color: #d8d1c4;
	font-size: 15px;
	margin: 0;
	padding: 0;
}

.services .box:hover {
	background: #a96922;
	/*padding: 30px 30px 60px 30px;*/
}

.services .box:hover span,
.services .box:hover h4,
.services .box:hover p {
	color: #ffffff;
}


/*--------------------------------------------------------------
# Tarifs
--------------------------------------------------------------*/
.tarifs {
	overflow: hidden;
}

.tarifs .nav-tabs {
	border: 0;
}

.tarifs .nav-link {
	border: 0;
	padding: 12px 15px;
	transition: 0.3s;
	color: #ffffff;
	border-radius: 0;
	/*border-right: 2px solid #e88e2b;*/
	font-weight: 600;
	font-size: 15px;
}

.tarifs .nav-link:hover {
	color: #e88e2b;
}

.tarifs .nav-link.active {
	color: #1a1814;
	background: #e88e2b;
	border-color: #e88e2b;
}

.tarifs .nav-link:hover {
	border-color: #e88e2b;
}

.tarifs .tab-pane.active {
	animation: fadeIn 0.5s ease-out;
}

.tarifs .details h3 {
	font-size: 26px;
	font-weight: 600;
	margin-bottom: 20px;
	/*color: #ffffff;*/
}

.tarifs .details p {
	color: #d8d1c4;
}

.tarifs .details p:last-child {
	margin-bottom: 0;
}

@media (max-width: 992px) {
	.tarifs .nav-link {
		border: 0;
		padding: 15px;
	}
}


.tarifs .price{
	position: relative;
	color: #d8d1c4;
	overflow: hidden;
}

.tarifs .price::after {
	content: "..........................................................................................................................................";
	position: absolute;
	left: 20px;
	right: 0;
	top: -4px;
	z-index: 1;
	color: #d8d1c4;
}

.tarifs .price .inti {
	position: relative;
	display: inline-block;
	padding-right: 10px;
	background: #0c0b09;
	color: #d8d1c4;
	font-weight: 400;
	z-index: 2;
	transition: 0.3s;
}

.tarifs .price span {
	position: relative;
	float: right;
	padding: 0 10px;
	background: #0c0b09;
	color: #e88e2b;
	font-weight: 400;
	z-index: 3;
}

@media (max-width: 1160px) {
	.tarifs img {
		width: 100%;
		height: 150px;
		object-fit: cover;
		margin-bottom: 20px;
	}
}

/*--------------------------------------------------------------
# Events
--------------------------------------------------------------*/
.events {
	background: url("../img/events-bg.webp") center center no-repeat;
	background-size: cover;
	position: relative;
}

.events::before {
	content: "";
	background-color: #000000cc;
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
}

.events .section-title h2 {
	color: #ffffff;
}

.events .container {
	position: relative;
}

@media (min-width: 1024px) {
	.events {
		background-attachment: fixed;
	}
}

.events-swiper {
	width: 100%;
	height: 400px;
	background: #000000;
	z-index: 1;
}

.events-swiper .swiper-slide {
	text-align: center;
	font-size: 18px;
	background: #d8d1c4;
	display: flex;
	align-items: center;
}

.events-swiper .swiper-slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/*--------------------------------------------------------------
# Rooms
--------------------------------------------------------------*/

.rooms .subtag {
	margin-top: 12px;
	display: flex;
	flex-direction: row;
	justify-content: center;
}
.rooms .subtag i {
	padding: 0 12px;
	background-color: #ffffff20;
	margin: 0 5px;
}
.rooms .subtag i span {
	padding-left: 7px;
	color: #ffffff80;
}
@media (max-width: 768px) {
	.rooms .subtag {
		flex-direction: column;
		justify-content: flex-start;
	}
	.rooms .subtag i {
		margin: 0;
	}
	.rooms .subtag i span {
		
	}
}

.rooms-swiper {
	width: 100%;
	height: 400px;
	background: #1a1814;
	z-index: 1;
}
.rooms-swiper .swiper-slide {
	text-align: center;
	font-size: 18px;
	background: #d8d1c4;
	display: flex;
	flex-shrink: 1;
	align-items: center;
}
.rooms-swiper .swiper-slide a {
	display: block;
	overflow: hidden;
	width: auto;
	height: 100%;
}
.rooms-swiper .swiper-slide img {
	height: 100%;
	object-fit: cover;
	transition: all ease-in-out 0.6s;
}
.rooms-swiper .swiper-slide img:hover {
	transform: scale(1.05);
}
.rooms-swiper .swiper-slide span {
	position: absolute;
	width: 100%;
	min-height:21px;
	bottom: 0;
	font-size: 14px;
	padding: 0 5px;
	color: #ffffff;
	background-color: #0C0B0980;
}
.rooms-swiper .swiper-slide span i{
	/**/display: none;
	font-weight: 700;
}


/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
.gallery .gallery-item {
	overflow: hidden;
}

.gallery .gallery-item img {
	transition: all ease-in-out 0.4s;
	height: 100%;
	max-height:200px;
	min-height: 200px;
	width: 100%;
	object-fit: cover;
}

.gallery .gallery-item:hover img {
	transform: scale(1.1);
}


/*--------------------------------------------------------------
# Resto
--------------------------------------------------------------*/
.resto .gallery-item {
	overflow: hidden;
}

.resto .gallery-item img {
	transition: all ease-in-out 0.4s;
	height: 100%;
	max-height:200px;
	min-height: 200px;
	width: 100%;
	object-fit: cover;
}

.resto .gallery-item:hover img {
	transform: scale(1.1);
}


/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
	width: 100%;
}

.contact .info i {
	font-size: 20px;
	float: left;
	width: 44px;
	height: 44px;
	background: #e88e2b;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50px;
	transition: all 0.3s ease-in-out;
}

.contact .info h4 {
	padding: 0 0 0 60px;
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 5px;
	font-family: "Poppins", sans-serif;
}

.contact .info p {
	padding: 0 0 0 60px;
	margin-bottom: 0;
	font-size: 14px;
	color: #d8d1c4;
}

.contact .info .infodata {
	margin-top: 40px;
}
.contact .info .infodata span {
	
}

#mapid {
	background-color: #0C0B09;
	background-image: url("data:image/svg+xml,%3Csvg width='100' height='20' viewBox='0 0 100 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21.184 20c.357-.13.72-.264 1.088-.402l1.768-.661C33.64 15.347 39.647 14 50 14c10.271 0 15.362 1.222 24.629 4.928.955.383 1.869.74 2.75 1.072h6.225c-2.51-.73-5.139-1.691-8.233-2.928C65.888 13.278 60.562 12 50 12c-10.626 0-16.855 1.397-26.66 5.063l-1.767.662c-2.475.923-4.66 1.674-6.724 2.275h6.335zm0-20C13.258 2.892 8.077 4 0 4V2c5.744 0 9.951-.574 14.85-2h6.334zM77.38 0C85.239 2.966 90.502 4 100 4V2c-6.842 0-11.386-.542-16.396-2h-6.225zM0 14c8.44 0 13.718-1.21 22.272-4.402l1.768-.661C33.64 5.347 39.647 4 50 4c10.271 0 15.362 1.222 24.629 4.928C84.112 12.722 89.438 14 100 14v-2c-10.271 0-15.362-1.222-24.629-4.928C65.888 3.278 60.562 2 50 2 39.374 2 33.145 3.397 23.34 7.063l-1.767.662C13.223 10.84 8.163 12 0 12v2z' fill='%23191814' fill-opacity='1' fill-rule='evenodd'/%3E%3C/svg%3E");
	width:100%;
	height: 400px;
	z-index: 1;
	opacity: 0.8;
}

#mapbtn {
	position: absolute;	
	margin-top: -50px;
	margin-left: 6px;
	z-index: 2;
}

#mapbtn i {
	font-size: 24px;
	width: 44px;
	height: 44px;
	background: #e88e2b;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50px;
	cursor: pointer;
}
#mapbtn i:hover{
	background: #000000;
}

#mapid .leaflet-pane .leaflet-tile-pane {
	filter: sepia(0.1);
}

.owners{
	text-align: right;
}
.owners img{
	width: 300px;
	filter: grayscale(1);
	mix-blend-mode: screen;
}
@media (max-width: 991px) {
	.contact .info .infodata span {
		display: inline-block;
		padding-left: 20px;
	}
	.owners{
		text-align: center;
	}
	.owners img {
		width: 200px;
	}
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
	
	padding: 30px 0 30px 0;
	background: #000000;
	border-top: 1px solid #37332a;
	color: #ffffff;
	font-size: 14px;
}

#footer .footer-top {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}

#footer .footer-top .footer-info {
	order: 1;
	flex-basis: 40%;
}
#footer .footer-top .footer-info h3 {
	font-size: 20px;
	margin: 0 0 0 0;
	padding: 2px 0 2px 0;
	line-height: 1;
	font-weight: 300;
	text-transform: uppercase;
	font-family: "Poppins", sans-serif;
}
#footer .footer-top .footer-info p {
	font-size: 14px;
	line-height: 24px;
	margin-bottom: 0;
	font-family: "Playfair Display", serif;
	color: #ffffff;
}
#footer .footer-top .footer-info p i {
	padding-right: 4px;
	color: #e88e2b;
}

#footer .footer-top .footer-logo {
	order: 2;
	flex-basis: 20%;
	text-align: center;
}
#footer .footer-top .footer-logo img{
	width: 100px;
}

#footer .footer-top .footer-links {
	order: 3;
	flex-basis: 40%;
	text-align: right;
}
#footer .footer-top .footer-links a {
	font-size: 26px;
	display: inline-block;
	margin-right: 20px;
	background: #37332a;
	color: #ffffff;
	line-height: 1;
	padding: 10px 0;
	border-radius: 50%;
	text-align:center;
	width: 44px;
	height: 44px;
	transition: 0.3s;
}
#footer .footer-top .footer-links a svg{
	margin-bottom: 6px;
}
#footer .footer-top .footer-links a:last-child {
	margin-right: 0px;
}
#footer .footer-top .footer-links a:hover {
	background: #e88e2b;
	color: #ffffff;
	text-decoration: none;
}

#footer .copyright {
	text-align: center;
	padding-top: 30px;
}

#footer .credits {
	padding-top: 10px;
	text-align: center;
	font-size: 13px;
	color: #ffffff;
}

@media (max-width: 768px) {
	#footer .footer-top {
		flex-direction: column;
		justify-content: center;
	}
	#footer .footer-top .footer-info {
		order: 1;
		flex-basis: 100%;
		text-align: center;
	}
	#footer .footer-top .footer-logo {
		order: 3;
		flex-basis: 100%;
		text-align: center;
		margin-top: 20px;
	}

	#footer .footer-top .footer-links {
		order: 2;
		flex-basis: 100%;
		text-align: center;
		margin-top: 20px;
	}
}