/*--------------------------------------------------------------
# Fonts
--------------------------------------------------------------*/
@font-face {
	font-family: 'Arabian Onenight';
	src: url('../fonts/XXII\ ARABIAN-ONENIGHTSTAND.ttf');
	font-display: swap;
}

@font-face {
	font-family: 'Arabella';
	src: url('../fonts/Arabella.ttf');
	font-display: swap;
}
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

a {
  color: #c99834;
  text-decoration: none;
}

a:hover {
  color: rgb(235, 192, 106);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Roboto", sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: goldenrod;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: rgb(228, 184, 71);
  transform: translateY(-4px);
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9999;
	overflow: hidden;
	background: #431616;
}

#preloader:before {
	content: "";
	position: fixed;
	top: calc(50% - 0px);
	left: calc(50% - 30px);
	border: 6px solid #f3b12c;
	border-top-color: #431616;
	border-bottom-color: #431616;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
	0% {
	transform: rotate(0deg);
	}

	100% {
	transform: rotate(360deg);
	}
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
	[data-aos-delay] {
	  transition-delay: 0 !important;
	}
  }
  

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: rgba(84, 25, 13, 0.9);
	transition: all 0.5s;
	height: 100px;
	z-index: 995;
}

#header.header-hidden {
    top: -100% !important;
}

#header .logo {
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

#header .logo img {
  max-height: 100px;
  height: 100%;
  width: auto;
}

@media (max-width: 768px) {
	#header {
		height: 70px;
	}

	#header .logo img {
		max-height: 70px;
		height: 100%;
  		width: auto;
	}
}

/*--------------------------------------------------------------
# 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>ul>li {
  white-space: nowrap;
  padding: 10px 0 10px 22px;
}

.navbar a,
.navbar a:focus,
.navbar .dropdown>ul>li>span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4px;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: goldenrod;
  white-space: nowrap;
  transition: 0.3s;
  text-transform: uppercase;
  position: relative;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
  color: goldenrod;
}

.navbar>ul>li>a:before,
.navbar>ul>li>span:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -6px;
  left: 0;
  background-color: rgb(247, 219, 164);
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before,
.navbar li:hover>a:before,
.navbar .active:before,
.navbar li:hover>span:before {
  visibility: visible;
  width: 100%;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a,
.navbar li:hover>span {
  color: rgb(247, 219, 164);
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 22px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: rgb(96, 35, 23);
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar-lang-dropdown-ul {
	left: -80px !important;
}

.navbar-lang-dropdown-ul li span {
	justify-content: start !important;
	cursor: pointer;
}

.navbar-lang-dropdown-ul li span img {
	margin-right: 10px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a,
.navbar .dropdown ul>li>span {
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 500;
  text-transform: none;
  color: #af8633;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul>li>span:hover
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a,
.navbar .dropdown ul li:hover>span {
  color: rgb(247, 219, 164);
}

.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%;
  }
}

.bi.bi-list.mobile-nav-toggle {
    color: #af8633;
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: rgb(247, 219, 164);
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #af8633;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(17, 17, 17, 0.9);
  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;
  background-color: rgb(51, 15, 8);
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #af8633;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: rgb(255, 234, 193);
}

.navbar-mobile>ul>li {
  white-space: nowrap;
  padding: 0;
}

.navbar-mobile a:hover:before,
.navbar-mobile li:hover>a:before,
.navbar-mobile .active:before {
  visibility: hidden;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: rgb(51, 15, 8);
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
  color: #af8633;
}

.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: rgb(255, 234, 193);
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

#nav-lang-globe {
	font-size: 20px;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

#hero {
  width: 100%;
  height: 100vh;
  position: relative;
  background: linear-gradient(
	rgb(84, 25, 13), 
	rgb(84, 25, 13), 
	rgba(84, 25, 13, 0.9),
	rgba(84, 25, 13, 0.8), 
	rgba(84, 25, 13, 0.7), 
	rgba(84, 25, 13, 0.4), 
	rgba(84, 25, 13, 0.2));
  transition: 0.3;
  padding: 0;
}

#hero::before {
  content: "";
  z-index: -1;
  background: url("../images/hero_carousel_1.webp");
  position: absolute;
  background-size: cover;
  background-repeat: no-repeat;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

.hero-title-1, .hero-title-2 {
    margin: 0; 
	color: #c99020;
	text-shadow: #4f1818 5px 5px 15px;
}

#hero .hero-title-1 {
	font-family: 'Arabian Onenight';
	font-style: italic;
	font-size: 130px;
}

#hero .hero-title-2 {
	font-family: 'Arabella';
	font-size: 91px;
}

.hero-divider {
	margin: 30px 0;
	width: 650px;
}

.hero-divider img {
	width: 100%;
	height: auto;
}

@media (max-width: 800px) {
	#hero::before {
		background: url("../images/hammam_main_image.webp");
		background-size: cover;
		background-position: center center;
	}	
}

@media (max-width: 470px) {

	#hero .hero-title-1 {
		font-size: 50px;
	}
	
	#hero .hero-title-2 {
		font-size: 40px;
	}

	.hero-divider {
		width: 220px;
		margin: 20px 0;
	}
}

@media (min-width: 471px) and (max-width: 825px) {	
	#hero .hero-title-1 {
		font-size: 10vw;
	}
	
	#hero .hero-title-2 {
		font-size: 7vw;
	}

	.hero-divider {
		width: 50vw;
		margin: 30px 0;
	}
}

@media (min-width: 826px) and (max-width: 1600px) {
	#hero .hero-title-1 {
		font-size: 100px;
	}
	
	#hero .hero-title-2 {
		font-size: 70px;
	}

	.hero-divider {
		width: 500px;
		margin: 30px 0;
	}
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0 60px 0;
  overflow: hidden;
  /*min-height: 100vh;*/
}

.section-bg {
  background-color: #f1f1f1;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: #9e1212;
}

.section-title p {
  margin-bottom: 0;
}

.hidden-button {
	display: none;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about {
    position: relative;
	background-color: white;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        rgba(209, 195, 192, 1),
        rgba(209, 195, 192, 0.1)
    );
}

.about .content h3 {
  font-weight: 700;
  font-size: 34px;
}

.about .content p {
  margin-bottom: 0;
}

.about .content .icon-box {
  margin-top: 25px;
}

.about .content .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 5px 0 10px 60px;
}

.about .content .icon-box i {
  font-size: 48px;
  float: left;
  color: #5c9f24;
}

.about .content .icon-box p {
  font-size: 15px;
  color: #848484;
  margin-left: 60px;
}

.about .image {
  height: 50%;
  overflow: hidden;
  margin-top: 40px;
}

.about .image img {
  width: 100%;
  margin-top: -40%;
  margin-bottom: -5%;
}

@media (min-width: 992px) and (max-width: 1199px) {
	.about .image {
		height: 50%;
		width: 80%;
		overflow: hidden;
		margin-top: 40px;
	}
	  
	.about .image img {
		width: 100%;
		margin-top: -40%;
		margin-bottom: -5%;
	}

	.about .div-content {
		width: 80%;
	}
}

@media (min-width: 1199px) and (max-width: 1399px) {
	.about .image {
		height: 90%;
		overflow: hidden;
		margin-top: 40px;
	}
	  
	.about .image img {
		width: 100%;
		margin: -10%;
	}
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services {
	position: relative;
	background: linear-gradient(
		rgba(240, 232, 231, 1),
		rgba(240, 232, 231, 0.95),
		rgba(240, 232, 231, 0.9),
		rgba(240, 232, 231, 0.8),
		rgba(240, 232, 231, 0.7),
		rgba(240, 232, 231, 0.6)
		);
	background-repeat: no-repeat;
}

.services-bg {
	z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-size: cover;
    background-image: url('../images/bg_1.webp');
	background-repeat: repeat;
	background-size: 200px;
}

.services .section-title {
	z-index: 1;
}

.image-card {
	position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
	height: 300px;
	z-index: 2;
	border-radius: 10px;
	border: none;
	/*box-shadow: 2px 2px 10px 0px rgb(128, 128, 128);*/
	transition: all 0.3s ease-in-out;
	filter: grayscale(0.2);
}

.image-card::before {
	content: "";
	background:
		rgba(137, 78, 78, 0.6);
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	border-radius: 10px;
	transition: all 0.3s ease-in-out;
}

.image-card .card-body {
    position: relative;
    z-index: 2;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.image-card .card-body h2{
    color: rgb(236, 229, 229);
	/*text-shadow: #2f0d0d 5px 5px 5px;*/
	transition: all 0.4s ease;
	text-shadow: 
		-2px -2px 4px rgba(52, 52, 52, 0.4),
		2px -2px 4px rgba(52, 52, 52, 0.4),
		-2px 2px 4px rgba(52, 52, 52, 0.4),
		2px 2px 4px rgba(52, 52, 52, 0.4);
}

.image-card .card-body .show-more-label{
    color: rgb(229, 229, 229);
	visibility: hidden;
	margin-top: 5px;
	/*text-shadow: #000000 5px 5px 5px;*/
	text-shadow: 
        -2px -2px 10px 8px rgb(52, 52, 52),
        2px -2px 10px 8px rgb(52, 52, 52),
        -2px 2px 10px 8px rgb(52, 52, 52),
        2px 2px 10px 8px rgb(52, 52, 52);
	transition: all 0.2s ease;
}

.image-card:hover {
	background-position: right center;
	box-shadow: 4px 4px 10px 0px rgb(128, 128, 128);
	filter: grayscale(0.4);
}

.image-card:hover .card-body h2{
	text-shadow: 
		-2px -2px 4px rgb(52, 52, 52),
		2px -2px 4px rgb(52, 52, 52),
		-2px 2px 4px rgb(52, 52, 52),
		2px 2px 4px rgb(52, 52, 52);
}

.image-card:hover .show-more-label{
	visibility: visible;
	margin-left: 30px;
}

.image-card:hover::before {
	background: rgba(137, 78, 78, 0.2);
}

.bg-image-card-1 {
    background-image: url('../images/services_gommage.webp');
}

.bg-image-card-2 {
    background-image: url('../images/services_masage.webp');
}

.bg-image-card-3 {
    background-image: url('../images/services_rassoul.webp');
}

.bg-image-card-4 {
    background-image: url('../images/services_depilation.webp');
}

.bg-image-card-5 {
    background-image: url('../images/services_hairdressing.webp');
}

.bg-image-card-6 {
    background-image: url('../images/services_skincare.webp');
}


/*--------------------------------------------------------------
# Gift card info
--------------------------------------------------------------*/
.gift-card-info {
	margin: 70px auto 10px auto;
	background-color: rgba(93, 37, 37, 0.506);
	width: 75%;
}

@media only screen and (max-width: 500px) {
	.gift-card-info {
		width: 100%;
	}
}

.gift-card-info .gift-card-content {
	padding: 20px;
}

.gift-card-info .gift-card-image {
	padding: 10px;
	display: flex;
	align-items: end;
}

.gift-card-info .gift-card-content h3 {
	color: rgb(255, 255, 255);
	margin-bottom: 20px;
	font-family: 'Arabella';
	font-size: 3em;
}

.gift-card-info .gift-card-content p {
	color: rgb(255, 255, 255);
	font-size: larger;
}

.gift-card-info .gift-card-content a {
	color: rgb(255, 245, 173);
}

.gift-card-info .gift-card-content a:hover {
	text-decoration: underline;
}


/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
.gallery {
	background-color: white;
}

.gallery .gallery-item {
  margin-bottom: 30px;
}

.gallery .gallery-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: rgba(42, 42, 42, 0.7);
}

.gallery .gallery-wrap::before {
  content: "";
  background: rgba(42, 42, 42, 0.7);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

.gallery .gallery-wrap img {
  transition: all ease-in-out 0.3s;
}

.gallery .gallery-wrap .gallery-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 20px;
}

.gallery .gallery-wrap .gallery-info h4 {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
}

.gallery .gallery-wrap .gallery-info p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
  font-style: italic;
}

.gallery .gallery-wrap .gallery-links {
  text-align: center;
  z-index: 4;
}

.gallery .gallery-wrap .gallery-links a {
  color: #fff;
  margin: 0 5px 0 0;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

.gallery .gallery-wrap .gallery-links a:hover {
  color: #8ed851;
}

.gallery .gallery-wrap:hover::before {
  opacity: 1;
}

.gallery .gallery-wrap:hover img {
  transform: scale(1.2);
}

.gallery .gallery-wrap:hover .gallery-info {
  opacity: 1;
}

.gallery .gallery-collapse-button {
	border-radius: 15px;
	padding: 10px 20px;
	background-color: #c3646400;
	color: #9e1212;
	font-weight: bolder;
	transition: all 0.4s;
	border: 4px solid #9e1212;
}

#gallery-collapse-div {
	box-sizing: border-box;
	position: static;
}

.gallery .gallery-collapse-button:hover {
	background-color: #9e1212;
	color: white;
}

/*--------------------------------------------------------------
# Gallery Details
--------------------------------------------------------------*/
.gallery-details {
  padding-top: 40px;
}

.gallery-details .gallery-details-slider img {
  width: 100%;
}

.gallery-details .gallery-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.gallery-details .gallery-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #5c9f24;
}

.gallery-details .gallery-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #5c9f24;
}

.gallery-details .gallery-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(42, 42, 42, 0.08);
}

.gallery-details .gallery-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.gallery-details .gallery-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.gallery-details .gallery-info ul li+li {
  margin-top: 10px;
}

.gallery-details .gallery-description {
  padding-top: 30px;
}

.gallery-details .gallery-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.gallery-details .gallery-description p {
  padding: 0;
}


/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing {
	position: relative;
	background: linear-gradient(
		rgba(240, 232, 231, 1),
		rgba(240, 232, 231, 0.95),
		rgba(240, 232, 231, 0.95),
		rgba(240, 232, 231, 0.9),
		rgba(240, 232, 231, 0.85),
		rgba(240, 232, 231, 0.85),
		rgba(240, 232, 231, 0.85),
		rgba(240, 232, 231, 0.85),
		rgba(240, 232, 231, 0.95),
		rgba(240, 232, 231, 0.95),
		rgba(240, 232, 231, 1)
		);
	background-repeat: no-repeat;
}

.pricing::before {
	content: "";
	z-index: -1;
	position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-size: cover;
    background-image: url('../images/bg_2.webp');
	background-repeat: repeat;
	background-size: 100px;
}

.pricing-info-warning {
	background-color: rgba(95, 38, 38, 0.321);
	color: #431313;
	margin: 30px auto 10px auto;
	width: 85%;
}

@media only screen and (max-width: 500px) {
	.pricing-info-warning {
		width: 100%;
	}

	.pricing-info-drink,
	.pricing-info-call {
		width: 100% !important;
	}
}

.pricing-info-drink,
.pricing-info-bonus {
	background-color: #9e76125b;
	color: #570e0e;
	padding: 5px;
	margin: 40px auto 10px auto;
	width: 75%;
}

.pricing-info-bonus {
	border: #b8a501fb solid 7px;
}

.pricing-info-call {
	background-color: rgba(15, 101, 158, 0.321);
	color: #0b2599;
	padding: 5px;
	margin: 40px auto 10px auto;
	width: 75%;
}

.pricing-info-warning p,
.pricing-info-drink p,
.pricing-info-call p,
.pricing-info-bonus p {
	font-weight: bolder;
}

.enter-price-span {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 115px;
	height: 115px;
	margin: 6px;
	background-color: #741717;
	box-shadow: 0px 0px 30px 5px #741717b1;
	color: goldenrod;
	text-align: center;
	font-family: 'Arabian Onenight';
	font-size: 24px;
	line-height: 1.3em;
	transform: rotate(-20deg);
}

.pricing-cards-buttons {
	display: flex;
	position: relative;
	align-items: center;
	margin-top: 80px;
	margin-bottom: 120px;
}

.prev-button,
.next-button {
    width: 100px;
    height: 410px;
	background-color: rgba(0, 0, 0, 0.115);
    border: none;
    cursor: pointer;
	display: flex;
    align-items: center;
    justify-content: center;
	transition: all 0.3s;
}

.prev-button:hover,
.next-button:hover {
	background-color: rgba(0, 0, 0, 0.316);
}

@media only screen and (max-width: 1024px) {
	.prev-button,
	.next-button {
		display: none;
	}
}

.touch-move-gesture {
	position: absolute;
    top: 0;
    left: 0;
	width: 100%;
    height: 100%;
    background: linear-gradient(
		to right,
		rgba(0, 0, 0, 0) 0%,
		rgba(0, 0, 0, 0.6) 1%,
		rgba(0, 0, 0, 0.6) 99%,
		rgba(0, 0, 0, 0) 100%
		);
	display: none;
	justify-content: center;
	align-items: center;
	z-index: 10;
}

.touch-move-gesture img {
	height: 50%;
	opacity: 0.7;
	animation: none;
}

@keyframes pulse {
    0% { transform: scale(1); }
    15% { transform: scale(1.1); }
    30% { transform: scale(1); }
	47% { transform: translateX(-20px); }
	65% { transform: translateX(0); }
    82% { transform: translateX(-20px); }
    100% { transform: translateX(0); }
}

.touch-move-gesture img.pulse {
    animation: pulse 3s;
}

.pricing-cards {
    display: flex;
    overflow-x: scroll;
    scroll-behavior: smooth;
}

.pricing-cards {
    scrollbar-width: none; /*Firefox */
    -ms-overflow-style: none;  /*IE and Edge */
}

.pricing-cards::-webkit-scrollbar {
    display: none; /*WebKit browsers*/
}


.pricing-card {
    flex: 0 0 200px;
    margin: 0 10px;
	background: url('../images/maur_doors_card.webp') no-repeat center;
	background-size: contain;
	border: none;
}

.pricing-card .card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.pricing-card .card-title .card-title-label {
	margin-top: 35px;
	font-family: 'Arabella';
	font-weight: bold;
	font-size: 33px;
	line-height: 32px;
	color: #741717;
}

.pricing-card .card-title .card-title-price {
	color: #741717;
	background-color: #ca970a6f;
	font-size: 25px;
	font-weight: bolder;
	border: 0px solid #ca970a6f;
	border-radius: 10px;
	box-sizing: border-box;
	padding: 6px 8px;
	max-width: fit-content;
	min-height: 100%;
	margin-top: 10px;
}

.pricing-card .card-text {
	position: absolute;
	margin-top: 85% !important;
	padding: 0 15px;
}

.pricing-card .card-text p {
	font-family: 'Arabian Onenight';
	font-size: 16px;
	line-height: 20px;
	color: #741717;
	font-style: italic;
	margin: 0;
}

.pricing-card .card-text small {
	font-size: 14px;
	line-height: 20px;
	color: #741717;
	font-style: italic;
	margin: 0;
}

.pricing-card .card-text .gift-item {
	color: #d6240c;
}

.table-col-div {
	display: flex;
	flex-direction: column;
}

.pricing-table {
	background-color: rgba(255, 255, 255, 0);
	width: 100%;
}

.pricing-table th,
.pricing-table td {
	background-color: rgba(95, 38, 38, 0.321);
	white-space: nowrap;
	font-size: 18px;
}

.pricing-table th {
	color: #741717;
}

.pricing-table span,
.pricing-table .price-number {
	font-weight: bolder;
}

.price-number {
	width: 1% !important;
	text-wrap: nowrap;
}

.pricing-table small {
	white-space: normal;
	font-style: italic;
	font-weight: normal;
}

.pricing-table th {
	font-size: 24px;
	padding-bottom: 25px;
}

.pricing-table tr td:nth-child(1) {
	overflow-x: hidden;
	text-overflow: ellipsis;
	max-width: 50px;
}

.pricing-table tr td.text-end:nth-child(2) {
	width: 1%;
}

.show-more-button {
	border-radius: 15px;
	padding: 10px 20px;
	background-color: #c3646400;
	color: #9e1212;
	font-weight: bolder;
	transition: all 0.4s;
	border: 4px solid #9e1212;
}


/*--------------------------------------------------------------
# Wedding Info
--------------------------------------------------------------*/
.wedding-info {
	padding: 60px 0;
	background: linear-gradient(rgba(172, 172, 172, 0.5), rgba(0, 0, 0, 0.5));
}

.wedding-info-bg {
	z-index: -2;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-size: cover;
    background-image: url('../images/wedding_info.webp');
	background-repeat: no-repeat;
	background-position: center center;
}

.wedding-info h3 {
	color: #ffffff;
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 30px;
}

#wedding-collapse {
	background-color: rgba(41, 41, 41, 0.486);
	padding: 15px;
	max-width: 700px;
	margin: 10px auto;
}
  
.wedding-info p {
	color: #fff;
}

.wedding-info .wedding-info-button {
	font-family: "Raleway", sans-serif;
	font-weight: 600;
	font-size: 16px;
	letter-spacing: 1px;
	display: inline-block;
	padding: 8px 28px;
	border-radius: 8px;
	transition: 0.5s;
	margin-top: 30px;
	border: 2px solid #fff;
	color: #fff;
	background-color: rgba(255, 255, 255, 0);
}

.wedding-info .wedding-info-button:hover {
	background: #9e1212;
	border-color: #9e1212;
}


/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact {
	position: relative;
	background: linear-gradient(
		rgb(255, 255, 255),
		rgba(255, 255, 255, 1),
		rgba(255, 255, 255, 1),
		rgba(255, 255, 255, 0.9),
		rgba(255, 255, 255, 0.7)
		);
	background-repeat: no-repeat;
	padding-bottom: 20%;
}

.contact-bg {
	z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-size: cover;
    background-image: url('../images/bg_3.webp');
	background-repeat: repeat;
	background-size: 80px;
}

.contact .contact-info {
	padding-right: 3em;
}

.contact .contact-info i {
  font-size: 37px;
  display: inline-block;
  margin-right: 30px;
  color: #9e1212;
}

.contact .contact-info .contact-opening-hours i {
	font-size: 33px;
	padding-left: 2px;
}

.contact .contact-info address,
.contact .contact-info p {
  margin-bottom: 0;
  color: #000;
}

.contact .contact-info h3 {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: bold;
  text-transform: uppercase;
  color: #999;
}

.contact .contact-info a {
  color: #000;
}

.contact .contact-info a:hover {
  color: #af8633;
}

.contact .contact-address,
.contact .contact-opening-hours {
  margin-bottom: 20px;
  color: #000;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.contact .image-map {
	height: 270px;
	background-size: cover;
	background-repeat: no-repeat;
	margin: auto;
}

.contact .image-map .map-hover-overlay {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    display: flex;
	flex-direction: column;
    justify-content: center;
    align-items: center;
}

.contact .image-map .map-hover-overlay p {
	padding: 20px;
}

@media screen and (max-width: 399px) {
	.contact .image-map {
		background-image: url('../images/maps/map_256.webp');
		margin-top: 50px;
		width: 256px;
	}
}

@media screen and (min-width: 400px) and (max-width: 519px) {
	.contact .image-map {
		background-image: url('../images/maps/map_376.webp');
		margin-top: 50px;
		width: 376px;
	}
}

@media screen and (min-width: 520px) and (max-width: 767px) {
	.contact .image-map {
		background-image: url('../images/maps/map_516.webp');
		margin-top: 60px;
		width: 516px;
	}
}

@media screen and (min-width: 768px) and (max-width: 991px) {
	.contact .image-map {
		background-image: url('../images/maps/map_696.webp');
		margin-top: 70px;
		width: 696px;
	}
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
	.contact .image-map {
		background-image: url('../images/maps/map_609.webp');
		width: 609px;
	}
}

@media screen and (min-width: 1200px) and (max-width: 1399px) {
	.contact .image-map {
		background-image: url('../images/maps/map_789.webp');
		width: 789px;
	}
}

@media screen and (min-width: 1400px) {
	.contact .image-map {
		background-image: url('../images/maps/map_969.webp');
		width: 969px;
	}
}


/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #e2e2e2;
  min-height: 40px;
  margin-top: 70px;
}

@media (min-width: 768px) {
	.breadcrumbs{
		margin-top: 100px;
	}
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 400;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #444444;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: rgb(63, 22, 6);
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 14px;
}

#footer .footer-top {
  background: linear-gradient(
	rgb(84, 25, 13),
  	rgb(117, 39, 24),
	rgb(147, 56, 37), 
	rgb(117, 39, 24), 
	rgb(84, 25, 13));
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  font-size: 24px;
  color: goldenrod;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Roboto", sans-serif;
  color: #fff;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #2a2a2a;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: goldenrod;
  color: #fff;
  text-decoration: none;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: goldenrod;
  font-size: 1em;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul#ul-images-links a {
	text-decoration: underline !important;
}

#footer .footer-top .footer-links ul p {
	margin: 0;
}

#footer .footer-top .footer-links ul a:hover {
  color: goldenrod;
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
}


/*--------------------------------------------------------------
#Inner-page
--------------------------------------------------------------*/
.inner-page {
	min-height: 100vh;
}

.inner-page-image {
	overflow: hidden;
}
  
.inner-page-image img {
	height: 100%;
	object-fit: cover;
	object-position: center;
}


/*--------------------------------------------------------------
# Cookies consent
--------------------------------------------------------------*/

#consent-popup {
	z-index: 1000;
	background-color: rgba(209, 195, 192, 1);
	position: fixed;
	font-size: 14px;
	width: 70vw;
	max-width: 42.85em;
	box-shadow: 0 0  2em rgba(5, 0, 31, 0.7);
	font-family: "Poppins", sans-serif;
	text-align: justify;
	line-height: 1.8em;
	border-radius: 10px;
	transition: all 0.5s ease-in-out;
}

.hide {
	visibility: hidden;
	opacity: 0;
}

.show {
	visibility: visible;
	opacity: 1;
}

@media only screen and (max-width: 500px) {
	#consent-popup {
		width: calc(100vw - 1em);
	};

	.hide {
		bottom: 0;
		left: 0;
		right: 0;
	}
	
	.show {
		bottom: .5em;
		left: .5em;
		right: .5em;
	}
}

@media only screen and (min-width: 501px) {
	#consent-popup {
		width: 70vw;
	};

	.hide {
		bottom: 0;
		left: 2em;
	}
	
	.show {
		bottom: 2em;
		left: 2em;
	}
}

.popup-header-bg {
	border-radius: 10px 10px 0 0;
	background: rgb(92, 37, 26);
	color: rgb(197, 153, 42);
}

.popup-head {
	padding: 2em 1.4em 1em 1.4em;
	width: 100%;
}

.popup-body-bg {
	padding: 0 1.6em 2em 1.6em;
}

#consent-popup h3 {
	font-size: 1.7em;
	text-align: center;
	padding-left: 39px;
}

#consent-popup p {
	text-align: center;
	margin: 1.4em 0;
}

#consent-popup a {
	color: rgb(148, 25, 0);
}

#consent-popup a:hover {
	text-decoration: underline;
}

#consent-popup button {
	border: none;
	color: black;
	font-size:  1.1em;
	display: block;
	position: relative;
	border-radius: 5px;
	transition: 0.5s
}

#consent-popup .popup-body-bg button {
	font-size:  1.1em;
	padding: 1em 1.4em;
}

#accept-cookies {
	background-color: rgb(197, 153, 42);
}

#reject-cookies {
	background-color: #969696;
}

#accept-cookies:hover,
#reject-cookies:hover {
	filter: brightness(.7);
}

#consent-popup .popup-header-bg button {
	background-color: rgb(92, 37, 26);
	color: rgb(197, 153, 42);
	padding: .45em .9em;
	align-self: flex-start;
	margin-top: 5px;
	margin-right: 5px;
	border: 2px solid rgb(92, 37, 26);
	border-radius: 8px;
}

#consent-popup .popup-header-bg button:hover {
	border: 2px solid rgb(197, 153, 42);
	right: 0;
}

#consent-popup .x-mark-button {
	padding: .5em .5em .2em .5em !important;
}

#consent-popup .x-mark-button i {
	font-size: 24px;
}

/*--------------------------------------------------------------
# Manage consent button
--------------------------------------------------------------*/
.manage-consent-button {
	display: flex;
	align-items: center;
	position: fixed;
	max-width: fit-content;
	left: 0;
	bottom: 15px;
	z-index: 996;
	background: goldenrod;
	color: white;
	border: none;
	padding: .6em .8em;
	border-radius: 0 7px 7px 0;
	transition: all 0.5s ease-in-out;
}

.manage-consent-button svg {
	margin-left: 9px;
	transition: all 0.5s ease-in-out;
}
  
.manage-consent-button:hover {
	background: rgb(84, 25, 13);
	color: goldenrod;
	transform: translateX(0);
}

.manage-consent-button:hover svg {
	transform: rotate(-90deg);
}


/* Base styles for both popups */
.popup-card-info {
	position: fixed;
	left: 50%;
	transform: translateX(-50%);
	border: none;
	border-radius: 10px;
	width: 70%;
	z-index: 995;
	transition: all 0.9s ease-in-out;
	opacity: 0;
	pointer-events: none;
}

.popup-show {
	opacity: 1;
	pointer-events: all;
}

.hide {
	bottom: -150px;
}

.career-hide {
	bottom: -150px;
}

@media only screen and (max-width: 768px) {
	.popup-card-info {
		width: 90%;
		max-height: 80%;
		overflow-y: auto;
	}

	.news-card-info {
		bottom: 10px;
		background-color: rgba(131, 65, 65, 0.92);
	}

	.career-card-info {
		bottom: 10px !important;
		background-color: rgba(173, 15, 15, 0.92);
		transition: all 0.7s ease-in-out;
	}
}

.popup-card-info .popup-card-content {
	padding: 20px;
}

.popup-card-header button {
	background-color: rgba(131, 65, 65, 0);
	color: white;
	padding: .45em .75em;
	align-self: flex-start;
	margin: 0;
	border: 2px solid white;
	border-radius: 8px;
	transition: all 0.2s ease-in-out;
}

.popup-card-header button:hover {
	background-color: white;
	color: rgb(131, 65, 65);
}

.popup-card-header h3 {
	color: rgb(255, 255, 255);
	text-align: center;
	padding-right: 10px;
	padding-left: 15px;
	margin-bottom: 20px;
	font-family: 'Arabella';
	font-size: 2.5em;
}

.popup-card-info .popup-card-content p {
	color: rgb(255, 255, 255);
	font-size: medium;
}

/* Specific styles for desktop */
.news-card-info {
	bottom: 10px;
	background-color: rgba(131, 65, 65, 0.92);
	max-width: 700px;
}

.career-card-info {
	bottom: 10px;
	background-color: rgba(173, 15, 15, 0.92);
	transition: all 0.7s ease-in-out;
}

.career-move-down {
	bottom: 10px;
}

.link-career-popup,
.tel-career-popup {
	color: #f5bf5a;
}



