body {
	font-family: 'Montserrat', sans-serif;
	font-size: 0.875rem;
}
a {
	color:  inherit;
	text-decoration: none;
}
a:hover {
	text-decoration: none;
	/*color: #C1A079;*/
	/*font-weight: bold;*/
}

img {
	max-width: 100%;
}
.hover-shadow:hover {
	box-shadow: 0 .5rem 1rem rgba(0,0,0,.15);
}

.text-justify {
	text-align: justify;
}
.fw-semibold {
	font-weight: 600;
}



.form-control::placeholder {
	font-size: 14px;
}

.rounded-5 {
	border-radius: 5px;
}
.rounded-15 {
	border-radius: 15px;
}

/*colors*/
.text-pink {color: #DDBEA9 !important;}
.bg-pink {background-color: #DDBEA9 !important;}
.btn-pink {background-color: #DDBEA9 !important;border-color: #DDBEA9 !important;}
.hover-pink:hover {color: #DDBEA9 !important;}
.border-pink:hover {border-color: #DDBEA9 !important;}
.text-green {color: #077777 !important;}
.bg-green {background-color: #077777 !important;}
.btn-green {background-color: #077777 !important;border-color: #077777 !important;}
.hover-green:hover {color: #077777 !important;}
.border-green:hover {border-color: #077777 !important;}
.text-black {color: #454648 !important;}
.bg-black {background-color: #454648 !important;}
.btn-black {background-color: #454648 !important;border-color: #454648 !important;}
.hover-black:hover {color: #454648 !important;}
.border-black:hover {border-color: #454648 !important;}




.background-text {
	left: 0;
	right: 0;
	top: -10px;
	font-size: 10rem;
	color: #ffffff29;
}


.z-index-9 {
	z-index: 9 !important;

}



/* header */
.header .bi {
	font-size: 28px;
}
.header .logo {
	width: 175px;
}
#searchForm {
	position: absolute;
	right: 30px;
	top: 50px;
	z-index: 9;
}
#searchForm input {
	width: 300px;
	border: 1px solid #ffffff;
	border-radius: 5px;
	height: 42px;
}
#searchForm button {
	position: absolute;
	right: 0px;
}





.hero-bg {
	margin-top: -86px;
	z-index: 1;
}






/*homepage*/
#homepageBanner {
	margin-top: -86px;
}








/*video responsive*/
.container-video {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 56.25%; /* 16:9 Aspect Ratio (divide 9 by 16 = 0.5625) */
}

.container-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}


/* footer */
.footer {
	background-color: #B0886F;
	color: #222;
}
.footer a {
	color: #222;
}
.footer a:hover {
	color: black;
}
.footer .logo {
	width: 175px;
}


/*slick homepage*/

.slick-arrow {
	position: absolute;
	z-index: 2;
	top: 45%;
	border: none;
	font-size: 0px;
	background-color: transparent;
}
.slick-arrow:before {
	display: inline-block;
	font-family: bootstrap-icons !important;
	font-style: normal;
	font-weight: normal !important;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	vertical-align: -0.125em;
	-webkit-font-smoothing: antialiased;
	font-size: 36px;
	color: white;
	text-shadow: 1px 1px 4px yellow;
}
.slick-prev.slick-arrow {
	left: 30px;
}
.slick-prev.slick-arrow:before {
	content: "\f284";
}
.slick-next.slick-arrow {
	right: 30px;
}
.slick-next.slick-arrow:before {
	content: "\f285";
}
@media(max-width: 767px) {
	.slick-slide img {
		width: 100%;
	}
}


/*furniture page*/
.image-wrapper {
	position: relative;
}
.image-wrapper .image-title {
	display: none;
}
.image-wrapper a:hover .image-title {
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	left: 12px;
	right: 12px;
	top: 0;
	bottom: 0;
	background-color: rgb(76 75 75 / 0.6);
}
.image-title p {
	color: white;
	font-size: 1.25rem;
	vertical-align: center;
}



#scrollTop {
	display: none;
	position: fixed; 
	bottom: 20px; 
	right: 30px; 
	z-index: 99; 
	background: linear-gradient(90deg, #47CFC5 0%, #008C82 100%);
	border: 3px solid #FFFFFF;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	color: white;
}
#scrollTop .bi {
	font-size: 20px;
}
#scrollTop:hover {
 	background: linear-gradient(45deg, #47CFC5 0%, #008C82 100%);
}





/* SMALL SCREEN */
/* ------------------------------------------------------------------------- */
@media (max-width: 767px) {
	/* 	header */
	.header,
	.header .container {
		padding-left: 10px;
		padding-right: 0;
	}
	.header {
		border-bottom: 1px solid #e7e7e7;
	}
	#menu {
		position: fixed;
	  display: flex;
	  flex-direction: column;
	  top: 0;
	  right: 0;
	  bottom: 0;
	  padding: 15px;
	  width: 270px;
	  background: #ffffff;
	  transform: translateX(102%);
	  box-shadow: 0 0 5px 0 rgb(1 3 4 / 19%);
	  z-index: 1084;
		transition: 0.35s all cubic-bezier(0.65, 0.05, 0.36, 1);
	}
	#menu.active {
		transform: translateX(0);
	}

	/*homepage banner*/
	 #homepageBanner img {
		height: 600px;
		object-fit: cover;
	}
	#homepageBanner .top-50 {
		top: 25%;
	}
	#homepageBanner .font-size-48 {
		font-size: 2rem;
	}

	.background-text {
		top: 35px;
		font-size: 3.5rem;
	}

	.hero-bg {
	  margin-top: 40px;
	}

}


/* SMALL SCREEN ENDS */
/* ------------------------------------------------------------------------- */








/* BIG SCREEN */
/* ------------------------------------------------------------------------- */
@media (min-width: 768px) {



	/*menu*/
	.menu .active {
		font-weight: 600;
	}



	.homepage-about .about-content {
		position: absolute;
		left: 45%;
		top: 30%;
	}


	.font-size-md-24 {
		font-size: 1.5rem;
	}




}


/* BIG SCREEN ENDS*/
/* ------------------------------------------------------------------------- */







.category-layout a {
	position: relative;
	display: block;
	margin-bottom: 35px;
	color: black;
}
.category-layout a:hover {
	color: #2a2a2a;
}
.category-layout a > p {
	position: absolute;
	top: calc(50% - 20px);
	left: 0;
	width: 100%;
	text-align: center;
	font-size: 22px;
	font-weight: 600;
	line-height: 22px;
}

.price {
	color: #357386;
	font-weight: 600;
}