/*--------------------------------------------------------------------- File Name: style.css ---------------------------------------------------------------------*/

/*--------------------------------------------------------------------- import Fonts ---------------------------------------------------------------------*/

@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700;1,800;1,900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

/*-- Common Style --*/
*,
*::after,
*::before {
	box-sizing: border-box;
}

html,
body {
	height: 100%;
	padding: 0;
}

body {
	line-height: 24px;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	visibility: visible;
	font-family: "Poppins", sans-serif;
	color: #373737;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 400;
	margin-top: 0;
	font-family: "Playfair Display", serif;
}

h1 {
	font-size: 48px;
	line-height: 1;
	font-weight: 700;
}

h2 {
	font-size: 36px;
	line-height: 36px;
}

h3 {
	font-size: 30px;
	line-height: 30px;
}

h4 {
	font-size: 16px;
	line-height: 19px;
}

h5 {
	font-size: 14px;
	line-height: 18px;
}

h6 {
	font-size: 12px;
	line-height: 14px;
}

p:last-child {
	margin-bottom: 0;
}

a,
button {
	color: inherit;
	line-height: inherit;
	text-decoration: none;
	cursor: pointer;
}

a,
button,
img,
input,
span {
	transition: all 0.3s ease 0s;
}

.btn:focus {
	box-shadow: none;
}

*:focus {
	outline: none !important;
}

a:focus {
	color: inherit;
	outline: none;
	text-decoration: none;
}

a:hover {
	text-decoration: none;
}

button,
input[type="submit"] {
	cursor: pointer;
}

img {
	max-width: 100%;
	height: auto;
}

ul {
	list-style: outside none none;
	margin: 0;
	padding: 0;
}

.btn {
	font-weight: 600;
	padding: 12px 30px;
	border-radius: 30px;
	color: #ffffff;
	background: #744312;
	border-color: #744312;
	transition: 0.5s all ease-in-out;
	-webkit-transition: 0.5s all ease-in-out;
	-moz-transition: 0.5s all ease-in-out;
	-ms-transition: 0.5s all ease-in-out;
	-o-transition: 0.5s all ease-in-out;
}
.btn:hover {
	color: #8d3c1c;
	background: #eee;
	border-color: #eee;
}
.btn:active,
.btn:focus {
	outline: none !important;
	box-shadow: none;
}

.btn.btn-white-outline {
	background: transparent;
	border-width: 2px;
	border-color: rgba(255, 255, 255, 0.3);
}
.btn.btn-white-outline:hover {
	border-color: white;
	color: #ffffff;
}

/* /////////////////////////////////////////////////////////////////////////////////// */

/* header css here */
.body_overlay {
	width: 100%;
	height: 100%;
	position: fixed;
	z-index: 999;
	opacity: 0;
	visibility: hidden;
	cursor: progress;
	background-color: rgba(0, 0, 0, 0.6);
	top: 0;
}
.body_overlay.active {
	opacity: 0.3;
	visibility: visible;
}

.offcanvas_menu {
	display: none;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
	.offcanvas_menu {
		display: block;
	}
}
@media only screen and (max-width: 767px) {
	.offcanvas_menu {
		display: block;
	}
}

.offcanvas_menu_wrapper {
	width: 290px;
	position: fixed;
	background: #fff;
	z-index: 999;
	top: 0;
	height: 100vh;
	transition: 0.5s;
	left: 0;
	margin-left: -300px;
	padding: 55px 15px 30px;
	overflow-y: auto;
}
.offcanvas_menu_wrapper.active {
	margin-left: 0;
}
.offcanvas_menu_wrapper .slinky-theme-default {
	background: inherit;
	min-height: 300px;
	overflow-y: auto;
}
.offcanvas_menu_wrapper .header_top_contact {
	display: block;
}

.offcanvas_main_menu > li.menu-item-has-children.menu-open > span.menu-expand {
	transform: rotate(180deg);
}
.offcanvas_main_menu
	> li
	ul
	li.menu-item-has-children.menu-open
	span.menu-expand {
	transform: rotate(180deg);
}

.offcanvas_main_menu li {
	position: relative;
}
.offcanvas_main_menu li:last-child {
	margin: 0;
}
.offcanvas_main_menu li span.menu-expand {
	position: absolute;
	right: 0;
	cursor: pointer;
}
.offcanvas_main_menu li span.menu-expand:hover {
	color: #ab6e35;
}
.offcanvas_main_menu li a {
	font-size: 14px;
	font-weight: 400;
	text-transform: capitalize;
	display: block;
	padding-bottom: 12px;
	margin-bottom: 12px;
	border-bottom: 1px solid #ededed;
}
.offcanvas_main_menu li a:hover {
	color: #ab6e35;
}
.offcanvas_main_menu li ul.sub-menu {
	padding-left: 20px;
}
.canvas_close {
	position: absolute;
	top: 15px;
	right: 25px;
}
.canvas_close a {
	font-size: 30px;
	transition: 0.7s;
	display: inline-block;
	transform: scale(1) rotate(0deg);
}
.canvas_close a:hover {
	color: #ffb83c;
	transform: scale(1.3) rotate(180deg);
}
.canvas_close a:hover {
	color: #ab6e35;
}

.canvas_open {
	display: none;
	margin-left: 30px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
	.canvas_open {
		display: block;
	}
}
@media only screen and (max-width: 767px) {
	.canvas_open {
		display: block;
	}
}
.canvas_open a {
	font-size: 38px;
	display: block;
	line-height: 16px;
}
.canvas_open a:hover {
	color: #ab6e35;
}

.sticky-header.sticky {
	position: fixed;
	z-index: 99;
	width: 100%;
	top: 0;
	background: rgba(255, 255, 255, 0.9);
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.11);
	animation-name: fadeInDown;
	animation-duration: 900ms;
	animation-timing-function: cubic-bezier(0.2, 1, 0.22, 1);
	animation-delay: 0s;
	animation-iteration-count: 1;
	animation-direction: normal;
	animation-fill-mode: none;
	animation-play-state: running;
	border-bottom: 0;
	display: block;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
	.sticky-header.sticky {
		padding: 15px 0;
	}
}
@media only screen and (max-width: 767px) {
	.sticky-header.sticky {
		padding: 15px 0;
	}
}

/* /////////////////////////////////////////////////////////////////////////////////// */

.header_section {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 5;
	width: 100%;
	background: #eee;
	transition: all 0.5s ease;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
}

.header_section .container {
	max-width: 1570px;
}
@media only screen and (max-width: 767px) {
	.header_section .container {
		max-width: 576px;
	}
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.header_section.mb-30 {
		margin-bottom: 0;
	}
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
	.header_section.mb-30 {
		margin-bottom: 0;
	}
}
@media only screen and (max-width: 767px) {
	.header_section.mb-30 {
		margin-bottom: 0;
	}
}

.header_transparent {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 9;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
	.header_transparent {
		position: inherit;
	}
}
@media only screen and (max-width: 767px) {
	.header_transparent {
		position: inherit;
	}
}

.main_header {
	padding: 47px 0 42px;
	transition: all 0.5s ease;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
	.main_header {
		padding: 35px 0 45px;
	}
}
@media only screen and (max-width: 767px) {
	.main_header {
		padding: 30px 0;
	}
}

.page_search_box {
	position: fixed;
	width: 100%;
	height: 0;
	background: #ffffff;
	z-index: 999;
	left: 0;
	top: 0;
	transition: 0.3s;
	display: flex;
	align-items: center;
	opacity: 0;
	visibility: hidden;
}
.page_search_box.active {
	height: 100%;
	opacity: 1;
	visibility: visible;
}
.page_search_box form {
	width: 70%;
	margin: 0 auto;
	position: relative;
}
@media only screen and (max-width: 767px) {
	.page_search_box form {
		width: 90%;
	}
}
.page_search_box form input::-webkit-input-placeholder {
	color: #373737;
}
.page_search_box form input::-moz-placeholder {
	color: #373737;
}
.page_search_box form input:-ms-input-placeholder {
	color: #373737;
}
.page_search_box form input:-moz-placeholder {
	color: #373737;
}
.page_search_box form input {
	width: 100%;
	background: none;
	height: 50px;
	font-size: 24px;
	color: #373737;
	font-weight: 400;
	padding: 0 50px 0 0;
}
@media only screen and (max-width: 767px) {
	.page_search_box form input {
		width: 90%;
		font-size: 16px;
	}
}
.page_search_box form button {
	position: absolute;
	bottom: 11px;
	right: 0;
	border: 0;
	padding: 0;
	background: none;
	font-size: 20px;
}
.page_search_box form button:hover {
	color: #e5c592;
}
@media only screen and (max-width: 767px) {
	.page_search_box form button {
		font-size: 18px;
	}
}

.search_close {
	position: absolute;
	top: 50px;
	right: 100px;
}
@media only screen and (max-width: 767px) {
	.search_close {
		top: 22px;
		right: 30px;
	}
}
.search_close i {
	font-size: 20px;
	cursor: pointer;
	transform: scale(1) rotate(0deg);
	display: inline-block;
	transition: 0.5s;
}
.search_close i:hover {
	color: #e5c592;
	transform: scale(1.3) rotate(180deg);
}

@media only screen and (max-width: 575px) {
	.header_logo img {
		max-width: 112px;
	}
}

.main_menu nav > ul > li {
	margin-right: 65px;
	position: relative;
}
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
	.main_menu nav > ul > li {
		margin-right: 40px;
	}
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.main_menu nav > ul > li {
		margin-right: 25px;
	}
}
.main_menu nav > ul > li:last-child {
	margin-right: 0;
}
.main_menu nav > ul > li:hover ul.sub_menu {
	visibility: visible;
	opacity: 1;
	top: 100%;
}
.main_menu nav > ul > li:hover > a {
	color: #373737;
}
.main_menu nav > ul > li:hover > a::before {
	width: 100%;
}
.main_menu nav > ul > li > a {
	display: inline-block;
	position: relative;
	font-weight: 500;
	font-size: 18px;
	line-height: 41px;
	text-transform: uppercase;
	color: #9f9f9f;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.main_menu nav > ul > li > a {
		font-size: 15px;
	}
}
.main_menu nav > ul > li > a::before {
	position: absolute;
	content: "";
	width: 0;
	height: 2px;
	background: #ab6e35;
	left: 0;
	top: 0;
	transition: 0.3s;
}
.main_menu nav > ul > li > a.active {
	color: #373737;
}
.main_menu nav > ul > li > a.active::before {
	width: 100%;
}
.main_menu nav > ul > li ul.sub_menu {
	position: absolute;
	min-width: 190px;
	padding: 18px 20px;
	background: #ffffff;
	box-shadow: 0 3px 11px 0 rgba(0, 0, 0, 0.1);
	left: 0;
	right: auto;
	visibility: hidden;
	opacity: 0;
	overflow: hidden;
	transition: 0.3s;
	z-index: 99;
	top: 120%;
	text-align: left;
}
.main_menu nav > ul > li ul.sub_menu li a {
	font-size: 14px;
	font-weight: 500;
	display: block;
	line-height: 32px;
	text-transform: capitalize;
	color: #999999;
}
.main_menu nav > ul > li ul.sub_menu li a:hover {
	color: #ab6e35;
}

.header_account > ul > li {
	margin-right: 45px;
}
.header_account > ul > li:last-child {
	margin-right: 0;
}
@media only screen and (max-width: 575px) {
	.header_account > ul > li {
		margin-right: 20px;
	}
}
.header_account > ul > li.account_link_menu {
	position: relative;
}
.header_account > ul > li.account_link_menu:hover .dropdown_account_link {
	opacity: 1;
	visibility: visible;
	top: 105%;
}

.dropdown_account_link {
	position: absolute;
	right: 0;
	top: 150%;
	width: 110px;
	text-align: left;
	background: #fff;
	border-radius: 4px;
	border: 1px solid #ededed;
	padding: 10px 15px;
	z-index: 9;
	opacity: 0;
	visibility: hidden;
	transition: 0.3s;
}
.dropdown_account_link li a {
	font-size: 13px;
	font-weight: 500;
	line-height: 30px;
}
.dropdown_account_link li a:hover {
	color: #ab6e35;
}

.header_section.scrolled .main_header {
	padding: 20px 0;
}

/*mini cart css here*/
.mini_cart {
	position: fixed;
	width: 355px;
	height: 100%;
	padding: 20px 20px 33px;
	background: #fff;
	z-index: 999;
	right: 0;
	top: 0;
	transition: 0.5s;
	transform: translateX(100%);
	overflow-y: auto;
	box-shadow: 0 0 15px rgba(5, 0, 0, 0.1);
}
.mini_cart.active {
	transform: translateX(0);
}
@media only screen and (max-width: 575px) {
	.mini_cart {
		width: 300px;
	}
}

.cart_close {
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid #ededed;
	padding-bottom: 10px;
}

.cart_text h3 {
	font-size: 18px;
	text-transform: capitalize;
	font-weight: 600;
	margin-bottom: 0;
}

.mini_cart_close > a {
	font-size: 25px;
}
.mini_cart_close > a:hover {
	color: #ab6e35;
}

.cart_img {
	width: 90px;
	margin-right: 10px;
	border: 1px solid transparent;
}
.cart_img:hover {
	border-color: #ab6e35;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
	.cart_img {
		width: 70px;
	}
}
@media only screen and (max-width: 767px) {
	.cart_img {
		width: 70px;
	}
}

.cart_info {
	width: 63%;
}
.cart_info a {
	font-weight: 400;
	font-size: 14px;
	line-height: 20px;
	display: block;
	margin-bottom: 6px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
	.cart_info a {
		font-size: 13px;
	}
}
@media only screen and (max-width: 767px) {
	.cart_info a {
		font-size: 13px;
	}
}
.cart_info a:hover {
	color: #ab6e35;
}
.cart_info p {
	font-size: 12px;
}
.cart_info p span {
	font-weight: 600;
}

.cart_remove a {
	font-size: 15px;
	display: block;
	line-height: 20px;
	text-align: center;
}
.cart_remove a:hover {
	color: #ab6e35;
}

.cart_item {
	overflow: hidden;
	padding: 20px 0;
	border-bottom: 1px solid #ededed;
	display: flex;
	justify-content: space-between;
}

.mini_cart_table {
	padding: 23px 0;
}

.cart_total {
	display: flex;
	justify-content: space-between;
}
.cart_total span {
	font-size: 14px;
	font-weight: 400;
}
.cart_total span.price {
	font-weight: 700;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
	.cart_total span {
		font-size: 13px;
	}
}
@media only screen and (max-width: 767px) {
	.cart_total span {
		font-size: 13px;
	}
}

.cart_button:first-child {
	margin-bottom: 15px;
}
.cart_button a {
	text-transform: uppercase;
	border-radius: 3px;
	font-size: 12px;
	font-weight: 500;
	background: #eef0f1;
	display: block;
	text-align: center;
	line-height: 20px;
	margin-bottom: 0;
	padding: 13px 0px 11px;
	border: 1px solid #ededed;
}
.cart_button a:hover {
	background: #ab6e35;
	border-color: #ab6e35;
	color: #fff;
}

/*mini cart css end*/
.header_style2 .header_account {
	margin-left: 80px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.header_style2 .header_account {
		margin-left: 50px;
	}
}
@media only screen and (max-width: 767px) {
	.header_style2 .header_account {
		margin-left: 0;
	}
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
	.header_style2 .header_account {
		margin-left: 0;
	}
}
.header_style2 .main_menu nav > ul > li {
	margin-right: 55px;
}
.header_style2 .main_menu nav > ul > li:last-child {
	margin-right: 0;
}
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
	.header_style2 .main_menu nav > ul > li {
		margin-right: 40px;
	}
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.header_style2 .main_menu nav > ul > li {
		margin-right: 25px;
	}
}
.header_style2 .main_menu nav > ul > li > a::before {
	display: none;
}

.header_other .main_header {
	padding: 30px 0;
}

/* //////////////////////////// */

/* Overlay */
.body_overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease-in-out;
	z-index: 99;
}
.body_overlay.active {
	opacity: 1;
	visibility: visible;
}

/* Mini Cart */
.mini_cart {
	position: fixed;
	top: 0;
	right: -400px;
	width: 350px;
	height: 100%;
	background: #fff;
	z-index: 100;
	box-shadow: -2px 0 8px rgba(0, 0, 0, 0.2);
	transition: right 0.4s ease;
}
.mini_cart.active {
	right: 0;
}

/* Offcanvas Menu */
.offcanvas_menu_wrapper {
	position: fixed;
	top: 0;
	left: -300px;
	width: 280px;
	height: 100%;
	background: #fff;
	z-index: 100;
	box-shadow: 2px 0 8px rgba(0, 0, 0, 0.2);
	transition: left 0.4s ease;
}
.offcanvas_menu_wrapper.active {
	left: 0;
}

/* Search Box */
.page_search_box {
	position: fixed;
	top: -100px;
	left: 50%;
	transform: translateX(-50%);
	width: 80%;
	max-width: 600px;
	background: #fff;
	padding: 20px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	transition: top 0.4s ease;
	z-index: 101;
	border-radius: 8px;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	-ms-border-radius: 8px;
	-o-border-radius: 8px;
}
.page_search_box.active {
	top: 50px;
	height: 40%;
	width: 100%;
}

.page_search_box .search_close i {
	font-size: 2rem;
}

.page_search_box .modal-header {
	position: absolute;
	top: 5rem;
	color: #ab6e35;
}

.page_search_box .modal-header .modal-title {
	font-size: 2rem !important;
}

.page_search_box .modal-body {
	top: 10rem;
	width: 100%;
}

/* ///////////////////////////////////////// */

.user-profile-image {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	object-fit: cover;
	cursor: pointer;
}

/* ////////////////////////////////////////////////////// */

.hero {
	background: #aa7f46;
	padding: calc(4rem - 30px) 0 0rem 0;
	height: 70%;
	position: relative;
	top: 8rem;
}

.hero .row {
	display: flex;
	align-items: start;
}

.hero .row .col-lg-7 {
	display: flex;
	align-items: center;
	justify-content: center;
}

.hero .intro-excerpt {
	position: relative;
	z-index: 4;
}

.hero h1 {
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 30px;
}

.hero p {
	color: rgba(255, 255, 255, 0.5);
	margin-bottom: 30px;
}

.hero .hero-img-wrap {
	position: relative;
	width: 70%;
	background-color: violet;
}
.hero .hero-img-wrap img {
	position: absolute;
	top: 0px;
	right: 0px;
	z-index: 2;
	border-radius: 10%;
	-webkit-border-radius: 10%;
	-moz-border-radius: 10%;
	-ms-border-radius: 10%;
	-o-border-radius: 10%;
}

.hero .hero-img-wrap:after {
	content: "";
	position: absolute;
	width: 255px;
	height: 217px;
	background-image: url("../images/dots-light.svg");
	background-size: contain;
	background-repeat: no-repeat;
	right: -50px;
	top: 0px;
	z-index: 200;
}
.hero .hero-img-wrap:before {
	content: "";
	position: absolute;
	width: 255px;
	height: 217px;
	background-image: url("../images/dots-light.svg");
	background-size: contain;
	background-repeat: no-repeat;
	left: -80px;
	top: 210px;
}

@media (min-width: 320px) {
	.hero {
		top: 6rem;
	}
}

@media (min-width: 768px) {
	.hero {
		padding: calc(4rem - 30px) 0 4rem 0;
	}
	.hero .hero-img-wrap img {
		left: -100px;
		right: 0;
	}
}

@media (min-width: 992px) {
	.hero {
		padding: calc(8rem - 30px) 0 8rem 0;
		top: 8rem;
	}
	.hero .intro-excerpt {
		max-width: 450px;
	}
	.hero {
		height: 58%;
	}
	.hero .hero-img-wrap img {
		left: 0px;
		top: -80px;
		position: absolute;
		right: -50px;
	}
}

@media (min-width: 1200px) {
	.hero .hero-img-wrap img {
		left: 0px;
		top: -80px;
		right: -100px;
	}
	.hero .hero-img-wrap:after {
		top: -40px;
	}
}

@media (min-width: 1400px) {
	.hero h1 {
		font-size: 54px;
	}
}

/* ////////////////////////////////////////////// */

.product-section {
	padding: 7rem 0;
	margin-top: 15rem;
}
.product-section .product-item {
	text-align: center;
	text-decoration: none;
	display: block;
	position: relative;
	padding-bottom: 30px;
	cursor: pointer;
	width: 100%;
	height: 25vh;
}
.product-section .product-item .product-thumbnail {
	margin-bottom: 30px;
	position: relative;
	top: 0;
	width: 50%;
	height: 100%;
	transition: 0.3s all ease;
	-webkit-transition: 0.3s all ease;
	-moz-transition: 0.3s all ease;
	-ms-transition: 0.3s all ease;
	-o-transition: 0.3s all ease;
}
.product-section .product-item h3 {
	font-weight: 600;
	font-size: 16px;
	margin-top: 1.5rem;
}
.product-section .product-item strong {
	font-weight: 800 !important;
	font-size: 18px !important;
}
.product-section .product-item h3,
.product-section .product-item strong {
	color: #2f2f2f;
	text-decoration: none;
}
.product-section .product-item .icon-cross {
	position: absolute;
	width: 35px;
	height: 35px;
	display: inline-block;
	background: #2f2f2f;
	bottom: 15px;
	left: 50%;
	margin-bottom: -17.5px;
	opacity: 0;
	visibility: hidden;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transition: 0.3s all ease;
	-webkit-transition: 0.3s all ease;
	-o-transition: 0.3s all ease;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	-moz-transition: 0.3s all ease;
	-ms-transition: 0.3s all ease;
	-moz-transform: translateX(-50%);
	-o-transform: translateX(-50%);
}

.product-section .product-item .icon-cross i {
	position: absolute;
	left: 50%;
	top: 50%;
	font-size: 2rem;
	font-weight: 700;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
}
.product-section .product-item:before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: #d8d4ce;
	height: 0%;
	z-index: -1;
	border-radius: 10px;
	-webkit-transition: 0.3s all ease;
	-o-transition: 0.3s all ease;
	transition: 0.3s all ease;
}
.product-section .product-item:hover .product-thumbnail {
	top: -25px;
}
.product-section .product-item:hover .icon-cross {
	bottom: 0;
	opacity: 1;
	visibility: visible;
}
.product-section .product-item:hover:before {
	height: 70%;
}

@media (max-width: 768px) {
	.product-section .product-item {
		margin-bottom: 7rem;
	}
}

/* ////////////////////////////////////////////// */

.icon-box-icon.pe-3.pb-3 {
	border: 1px solid #aa7f46;
	border-radius: 50%;
}

.icon-box .icon-box-icon i {
	width: 40px;
	height: 40px;
	color: #aa7f46;
	font-size: 2rem;
}

.icon-box .icon-box-content {
	width: 67%;
	cursor: default;
}

.icon-box-content h3.card-title {
	font-size: 1.5rem;
}

/* ////////////////////////////////////////////// */

#about-us {
	margin-top: 10rem;
}

.jarallax {
	position: relative;
	z-index: 0;
	min-height: 510px;
}

.jarallax .jarallax-img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 50% !important;
	-webkit-border-radius: 50% !important;
	-moz-border-radius: 50% !important;
	-ms-border-radius: 50% !important;
	-o-border-radius: 50% !important;
}

@media (max-width: 991px) {
	.jarallax {
		min-height: 280px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.jarallax .jarallax-img {
		transform: none !important;
	}
}

/* /////////////////////////////////////////////////// */

.collections {
	width: 85%;
	display: flex;
	margin: 10rem auto 7rem;
}

.collections .product-card {
	height: 100%;
}

.collections .card-detail {
	height: 5rem;
	display: flex;
	align-items: flex-start;
	justify-content: center;
}

.collections .image-container {
	position: relative;
	top: 1rem;
	right: 0.5rem;
	overflow: hidden;
}

.collections .image-container img {
	width: 100%;
	height: 65vh;
	display: block;
	transition: transform 0.5s ease;
}

.collections .overlay {
	position: absolute;
	bottom: -20px;
	left: 8px;
	right: 0;
	height: 0;
	width: 95.7%;
	color: #000;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	border-radius: 50px;
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	-ms-border-radius: 50px;
	-o-border-radius: 50px;
	transition: height 0.5s ease;
	-webkit-transition: height 0.5s ease;
	-moz-transition: height 0.5s ease;
	-ms-transition: height 0.5s ease;
	-o-transition: height 0.5s ease;
}

.collections .image-container:hover img {
	transform: scale(0.95);
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
}

.collections .image-container:hover .overlay {
	height: 60%;
}

@media (max-width: 1024px) {
	.collections {
		width: 95%;
		margin-left: 1rem;
	}
	.collections .image-container img {
		height: 53vh;
	}
}

@media (max-width: 780px) {
	.collections .image-container img {
		height: 65vh;
	}
}

@media (max-width: 520px) {
	.collections .image-container img {
		height: 79vh;
	}
}

@media (max-width: 410px) {
	.collections .image-container img {
		height: 90vh;
	}
}
@media (max-width: 361px) {
	.collections .image-container img {
		height: 100vh;
	}
}

/* ////////////////////////////////////////// */

.testimonial .container-fluid {
	margin: 0;
	padding: 0;
}

.testimonial .slider {
	width: 100%;
	overflow: hidden;
	margin: auto;
	position: relative;
}

.testimonial .slides {
	display: flex;
	transition: 0.5s;
	border: none;
}

.testimonial .card {
	min-width: 100%;
	text-align: center;
	padding: 40px 40px 20px;
	background: #f4f4f4;
	border: none;
}

.testimonial .indicators {
	text-align: center;
	margin-top: 10px;
}

.testimonial .indicators span {
	display: inline-block;
	width: 12px;
	height: 12px;
	margin: 5px;
	border-radius: 50%;
	background: #bbb;
	cursor: pointer;
}

.testimonial .indicators .active {
	background: #333;
}

.testimonial .slider .card img {
	display: block;
	margin: 0 auto 3rem;
	border: 7px solid #b8bcc042;
	width: 7rem;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
}

.testimonial .slider .card h3 {
	color: #222;
}
.testimonial .slider .card h4 {
	color: #70767c;
	font-style: italic;
	font-size: 1.2rem;
}
.testimonial .slider .card .stars {
	color: #e2942d;
}

.testimonial .slider .card p {
	margin: auto;
	width: 50%;
	color: #444;
}

.testimonial .slider .card p i {
	color: #70767c;
	font-size: 2rem;
}

.testimonial .slider .card p span {
	color: #444;
}

@media (max-width: 576px) {
	.testimonial .slider .card p {
		margin: 0;
		width: 100%;
	}
}

/* ////////////////////////////////////// */

.contact .title .line {
	height: 3px;
	background-color: #8d3c1c;
	width: 100px;
	margin: 20px auto;
}

.contact .title h2 {
	text-transform: uppercase;
	color: #744312;
	font-size: 2.5rem;
}

.contact .info-box {
	background: #fff;
	border-radius: 8px;
}

.contact-icon {
	font-size: 2rem;
	color: #8d3c1c;
	border: 2px dashed #8d3c1c;
	border-radius: 50%;
	padding: 5px 10px;
	display: inline-block;
}

.form input,
.form textarea {
	border: 1px solid #ddd;
	box-shadow: none;
	margin-bottom: 1rem;
	outline: none;
}

.form input::placeholder,
.form textarea::placeholder {
	color: #ccc;
}

.form input:focus,
.form textarea:focus {
	border-color: #8d3c1c;
	outline: none;
}

.form button {
	background: #8d3c1c;
	border: none;
}
.form button:hover {
	color: #744312;
	background: #eee;
}

/* //////////////////////////////////////////// */
#footer {
	background-color: #aa7f46;
	font-size: 14px;
	color: #fff;
}

#footer p {
	color: #fff;
}

#footer a {
	color: #ddd;
	text-decoration: none;
}

#footer a:hover {
	color: #744312;
}

#footer .social-links a {
	font-size: 18px;
	display: inline-block;
	background: #744312;
	border: 1px solid #744312;
	color: #fff;
	line-height: 1;
	padding: 8px;
	margin-right: 5px;
	border-radius: 50%;
	transition: 0.3s all ease-in-out;
	-webkit-transition: 0.3s all ease-in-out;
	-moz-transition: 0.3s all ease-in-out;
	-ms-transition: 0.3s all ease-in-out;
	-o-transition: 0.3s all ease-in-out;
}

#footer .social-links a:hover {
	background: #fff;
	color: #744312;
}

#footer .footer-links ul li {
	padding: 5px 0;
}

#footer .footer-links ul i {
	color: #8d3c1c;
	margin-right: 8px;
}

.footer-newsletter input {
	border-radius: 5px 0 0 5px;
	-webkit-border-radius: 5px 0 0 5px;
	-moz-border-radius: 5px 0 0 5px;
	-ms-border-radius: 5px 0 0 5px;
	-o-border-radius: 5px 0 0 5px;
	background-color: #eee;
	outline: none;
	border: none;
}

.footer-newsletter input:focus {
	background-color: #8d3c1c;
	color: #fff;
	outline: none;
	box-shadow: none;
}

.footer-newsletter button {
	background-color: #744312;
	border: 1px solid #744312 !important;
	border-radius: 0 5px 5px 0;
	-webkit-border-radius: 0 5px 5px 0;
	-moz-border-radius: 0 5px 5px 0;
	-ms-border-radius: 0 5px 5px 0;
	-o-border-radius: 0 5px 5px 0;
}

.footer-newsletter button:hover {
	color: #744312;
	background-color: #eee;
}

.copy p strong {
	color: #744312;
}

/* /////////////////////////////////////////////// */

.scrollTopBtn {
	position: fixed;
	bottom: 20px;
	right: 20px;
	width: 45px;
	height: 45px;
	border: 2px solid #8d3c1c;
	background: #8d3c1c;
	color: #fff;
	font-size: 22px;
	cursor: pointer;
	display: none;
	justify-content: center;
	align-items: center;
	z-index: 4;
	border-radius: 20%;
	-webkit-border-radius: 20%;
	-moz-border-radius: 20%;
	-ms-border-radius: 20%;
	-o-border-radius: 20%;
	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
}

.scrollTopBtn:hover {
	background: #fff;
	color: #8d3c1c;
}

/* ///////////////////////////////////////////// */

.loader {
	bottom: 0;
	height: 100%;
	left: 0;
	position: fixed;
	right: 0;
	top: 0;
	width: 100%;
	z-index: 1111;
	background: #fff;
	overflow-x: hidden;
}

.loader-inner {
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	height: 50px;
	width: 50px;
}

.circle {
	width: 8vmax;
	height: 8vmax;
	border-right: 4px solid #744312;
	border-radius: 50%;
	animation: spinRight 800ms linear infinite;
	-webkit-animation: spinRight 800ms linear infinite;
}

.circle:before {
	content: "";
	width: 6vmax;
	height: 6vmax;
	display: block;
	position: absolute;
	top: calc(50% - 3vmax);
	left: calc(50% - 3vmax);
	border-left: 3px solid #8d3c1c;
	border-radius: 100%;
	animation: spinLeft 800ms linear infinite;
	-webkit-animation: spinLeft 800ms linear infinite;
}

.circle:after {
	content: "";
	width: 6vmax;
	height: 6vmax;
	display: block;
	position: absolute;
	top: calc(50% - 3vmax);
	left: calc(50% - 3vmax);
	border-left: 3px solid #f28123;
	border-radius: 100%;
	-webkit-animation: spinLeft 800ms linear infinite;
	animation: spinLeft 800ms linear infinite;
	width: 4vmax;
	height: 4vmax;
	top: calc(50% - 2vmax);
	left: calc(50% - 2vmax);
	border: 0;
	border-right: 2px solid #8d3c1c;
	animation: none;
	-webkit-animation: none;
}

@keyframes spinLeft {
	from {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	to {
		-webkit-transform: rotate(720deg);
		transform: rotate(720deg);
	}
}

@keyframes spinRight {
	from {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
	to {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
}

#loader.hidden {
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.8s ease, visibility 0.8s ease;
}

/* ////////////////////////////////////////////// */

section {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

section.show {
	opacity: 1;
	transform: translateY(0);
}
