@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700;800;900&display=swap');
body{
	margin: 0;
	padding: 0;
	font-size: 16px;
	font-weight: normal;
	font-style: normal;
	font-family: 'Quicksand', sans-serif;
}
a,
button {
	-webkit-transition: all 0.3s ease-out 0s;
	-moz-transition: all 0.3s ease-out 0s;
	-ms-transition: all 0.3s ease-out 0s;
	-o-transition: all 0.3s ease-out 0s;
	transition: all 0.3s ease-out 0s;
}
*::-moz-selection {
	background: #261809;
	color: #fff;
	text-shadow: none;
}
::-moz-selection {
	background: #261809;
	color: #fff;
	text-shadow: none;
}
/* 95, 58, 252 */
::selection {
	background: #261809;
	color: #fff;
	text-shadow: none;
}
*::-moz-placeholder {
	color: #555555;
	font-size: 14px;
	opacity: 1;
}
*::placeholder {
	color: #555555;
	font-size: 14px;
	opacity: 1;
}
h1,h2,h3,h4,h5,h6{
	font-weight: 700;
	color: #59310d;
}
h1,h2,h3,h4,h5,h6,p{
	margin:0;
	padding: 0;
}
ul{
	margin:0;
	padding: 0;
	list-style: none;
}
a{
	text-decoration: none;
	transition: .4s;
	-webkit-transition: all .4s ease-in-out;
}
a:hover{
	text-decoration: none;
}
button:focus{
	outline: none;
}
input:focus{
	outline: none;
}
textarea:focus{
	outline: none;
}
p{
	color: #555;
}
img {
	max-width: 100%;
}
.section-padding{
	padding: 100px 0px;
}
.section-padding-2{
	padding-top: 100px;
	padding-bottom: 70px;
}
.section-bg{
	background: #F7F7F7;
}
/*Scroll Area*/
.scroll-area {
    position: fixed;
    bottom: 20px;
    right: 40px;
    z-index: 1;
    display: none;
}
.scroll-area i {
	width: 50px;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	font-size: 20px;
	border: 2px solid #261809;
	border-radius: 50%;
	-webkit-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out;
	color: #fff;
	background: #261809;
}
/*
 * #-Button
*/
.button-1 {
	background: #261809;
	padding: 16px 40px;
	display: inline-block;
	color: #fff;
	font-size: 16px;
	letter-spacing: 0px;
	background-size: 200% auto;
	-webkit-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
	border: none;
	text-transform: uppercase;
	font-weight: 600;
	border-radius: 50px;
}
.button-1:hover{
	background:#3f12fd;
	color: #fff;
}
.button-2 {
	background: transparent;
	padding: 14px 38px;
	display: inline-block;
	color: #333;
	font-size: 16px;
	letter-spacing: 0px;
	background-size: 200% auto;
	-webkit-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
	text-transform: uppercase;
	font-weight: 600;
	border-radius: 50px;
	border: 2px solid #261809;
}
.button-2:hover{
	background: #261809;
	color: #fff;
}
.button-4 {
	display: inline-block;
	border: 1px solid hsl(222deg 20% 93%);
	border-radius: 5px;
	padding: 10px 17px;
	-webkit-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out;
	color: #333;
	text-transform: capitalize;
	font-size: 14px;
	height: 45px;
	font-weight: 500;
}
.button-4:hover{
	background: #59310d;
	color: #fff;
	border-color: #59310d;
}
.button-3 {
	border-radius: 5px;
	padding: 9px 17px;
	display: inline-block;
	border: 1px solid rgba(17,175,109,.2);
	box-sizing: border-box;
	height: 45px;
	color: #261809;
	background: #2618090a;
	-webkit-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out;
}
.button-3:hover{
	background: #261809;
	color: #fff;
	border-color: #261809;
}
.button-5 {
	border-radius: 5px;
	padding: 9px 17px;
	display: inline-block;
	border: 1px solid rgba(225, 84, 29, 0.2);
	box-sizing: border-box;
	height: 45px;
	color: #dc3c3c;
	background: #fc3a3a0a;
	-webkit-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out;
}
.button-5:hover{
	background: #dc3c3c;
	color: #fff;
	border-color: #dc3c3c;
}
/*
 * #-Header
*/
.header__action {
	float: right;
	padding-left: 30px;
	height: 100%;
	align-items: center;
	display: flex;
}
.menu {
	text-align: left;
}
.menu ul li {
	display: inline-block;
	position: relative;
}
.menu ul li a {
	display: inline-block;
	color: #333;
	text-transform: capitalize;
	font-weight: 500;
	padding: 30px 20px;
	-webkit-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out;
	font-size: 16px;
}
.menu ul li:hover > a{
	color: #261809;
}
.menu nav ul li > ul {
	position: absolute;
	top: 100px;
	left: -4px;
	background-color: #fff;
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
	width: 200px;
	opacity: 0;
	visibility: hidden;
	z-index: 999;
	text-align: left;
	border: 1px solid #efefef;
}
.menu nav ul li:hover > ul {
	opacity: 1;
	visibility: visible;
	top: 84px;
	left: 0;
}
.menu nav ul li > ul > li {
	display: block;
	position: relative;
	-webkit-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
	margin: 0px;
	padding: 0px;
}
.menu nav ul li > ul > li a::after {
	content: "";
	clear: both;
	display: block;
	width: 14px;
	height: 1px;
	background: #261809;
	position: absolute;
	top: 49%;
	left: 14px;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all .4 ease-in-out;
	transition: all .4s ease-in-out;
}
.menu nav ul li > ul > li:hover > a {
	color: #261809;
	padding-left: 30px;
}
.menu nav ul li > ul > li:hover > a::after{
	opacity: 1;
	visibility: visible;
}
.menu nav ul li > ul > li:hover > a {
	color: #261809 !important;
}
.menu nav ul li > ul > li li > a:hover{
	color: #fff;
}
.menu nav ul li > ul > li a {
	display: inline-block;
	width: 100%;
	padding: 12px 14px;
	border-bottom: 1px dashed #efefef;
	font-size: 14px;
	color: #333;
	margin: 0px;
	font-weight: 400;
	text-transform: capitalize;
}
.menu nav ul li > ul > li:last-child a{
	border-bottom: none;
}
.menu nav ul > li > ul > li > ul {
	left: 200px;
	top: 28px;
}
.menu nav ul li > ul > li:hover > ul {
	top: -3px;
}
.menu nav ul li > ul > li:hover > ul {
	top: -3px;
	left: 100%;
}
.header-login {
	margin-right: 20px;
	padding-right: 20px;
	position: relative;
}
.header-login::after {
	content: "";
	clear: both;
	display: block;
	position: absolute;
	width: 2.5px;
	height: 90%;
	background: #EAEAEA;
	top: 5%;
	right: 0;
}
.header-login a {
	color: #333;
	font-weight: 600;
	text-transform: capitalize;
	-webkit-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out;
}
.header-login a:hover{
	color: #261809;
}
.mini-cart{
	padding-right: 10px;
}
.mini-cart a {
	font-size: 20px;
	color: #333;
	position: relative;
}
.mini-cart a span {
	font-size: 12px;
	position: absolute;
	top: -9px;
	right: -24px;
	width: 25px;
	height: 25px;
	background: #261809;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	font-weight: 600;
	border-radius: 50%;
}
.mini-cart a i{
	-webkit-transition: all .4s ease-in-out;
	transition: all .4s ease;
}
.mini-cart a:hover i{
	color: #261809;
}
/*
 * #-Login Form
*/
.modal-dialog.login-form-modal {
	border-radius: 0px;
	max-width: 450px;
	margin-top: 50px;
}
.login-form-modal  .modal-content {
	border-radius: 0px;
	position: relative;
	padding: 30px;
}
.login-form-close-btn {
	position: absolute;
	top: 8px;
	right: 10px;
	border: 1px solid #eee;
	width: 25px;
	height: 25px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 18px;
	-webkit-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out;
	cursor: pointer;
	z-index: 1;
}
.login-form-close-btn:hover{
	background: #261809;
	color: #fff;
	border-color: #261809;
}
.login-register-form-head h2 {
	text-align: center;
	font-size: 26px;
	text-transform: capitalize;
	letter-spacing: 1px;
	margin-bottom: 20px;
}
.login-register-form-head ul li {
	display: inline-block;
	text-align: center;
	width: 23%;
	float: left;
	margin: 0% 1%;
}
.login-register-form-head ul li.google {
	width: 48%;
}
.login-register-form-head ul li.facebook a {
	width: 100%;
	display: block;
	color: #fff;
	font-size: 18px;
	font-weight: 600;
	text-transform: capitalize;
	border-radius: 5px;
	padding: 13px 0px;
	background: #36528C;
}
.login-register-form-head ul li.twitter a{
	width: 100%;
	display: block;
	color: #fff;
	font-size: 18px;
	font-weight: 600;
	text-transform: capitalize;
	border-radius: 5px;
	padding: 13px 0px;
	background: #0D8DDC;
}
.login-register-form-head ul li.google a {
	background: #D04237;
	width: 100%;
	display: block;
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	text-transform: capitalize;
	border-radius: 5px;
	padding: 15px 0px;
}
.login-register-form-head ul li.google a i{
	font-size: 20px;
}
.login-register-form-head ul li.google a span {
	padding-left: 6px;
}
.login-register-form-head {
	width: 100%;
	overflow: hidden;
	margin-bottom: 35px;
}
.login-register-form-middle .single-input {
	width: 100%;
	position: relative;
	margin-bottom: 25px;
}
.login-register-form-middle .single-input input {
	width: 100%;
	position: relative;
	border: 1px solid #eee;
	padding: 15px 20px;
}
.login-register-form-middle .single-input label {
	position: absolute;
	top: -10px;
	background: #fff;
	color: #000;
	z-index: 1;
	font-size: 12px;
	font-weight: 500;
	text-transform: capitalize;
	left: 20px;
}
.login-register-form-middle .single-input label.rememberme {
	position: relative;
	top: -7px;
	left: 10px;
}
.login-register-form-middle .single-input input#rememberme {
	width: auto;
	float: left;
	border-radius: 0px;
}
.login-register-form-middle .single-input button {
	width: 100%;
}
.single-input.checkbox {
	margin-bottom: 10px;
}
.login-register-from-btom p {
	font-size: 14px;
	color: #333;
}
.login-register-from-btom p a{
	color: #333;
}
.login-register-from-btom p a:hover{
	color: #261809;
}
.login-register-from-btom p.text-dark a {
	padding-left: 6px;
}
.off_canvars_overlay {
	width: 100%;
	height: 100%;
	position: fixed;
	z-index: 999;
	opacity: 0;
	visibility: hidden;
	cursor: crosshair;
	background: #232323;
	top: 0;
}
.off_canvars_overlay.active {
	opacity: 0.5;
	visibility: visible;
}
/*
 * #-Mini Cart
*/
.mini-cart-area {
	position: fixed;
	background: #fff;
	right: -360px;
	z-index: 9999;
	height: 100%;
	top: 0;
	bottom: 0;
	overflow: auto;
	width: 360px;
	-webkit-transition: all .3s ease-in-out;
	transition: all .4s ease-in-out;
}
.mini-cart-area.active{
	right: 0px;
}
.mini-cart-header {
	background: #fff;
	width: 100%;
	position: relative;
	border-bottom: 2px solid #eee;
	padding: 16px 20px;
}
.mini-cart-header h2 {
	text-transform: uppercase;
	font-size: 18px;
	font-weight: 500;
}
.mini-cart-close {
	font-size: 28px;
	position: absolute;
	right: 15px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	color: #333;
	top: 6px;
	cursor: pointer;
	-webkit-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out;
}
.mini-cart-close:hover{
	transform: rotate(45deg);
}
.cartmini__inner ul li {
	width: 100%;
	padding: 16px 20px;
	border-bottom: 1px solid #eee;
	position: relative;
	overflow: hidden;
}
.cartmini__inner ul li .thumbnail {
	width: 80px;
	float: left;
	overflow: hidden;
	margin-right: 12px;
}
.cartmini__inner ul li .content {
	overflow: hidden;
}
.cartmini__inner ul li .content h4 {
	font-size: 15px;
	font-weight: 600;
	line-height: 1.2;
	margin-bottom: 10px;
}
.cartmini__inner ul li .content h4 a{
	color: #59310d;
}
.cartmini__inner ul li .content h4:hover a{
	color: #261809;
}
.cartmini__inner ul li .content .m-price {
	font-size: 16px;
	color: #666;
}
.cartmini__inner ul li .content .remove a {
	width: 30px;
	height: 30px;
	background: #3333;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	color: #333;
	font-size: 20px;
}
.cartmini__inner ul li .content .remove {
	position: absolute;
	bottom: 18px;
	right: 20px;
}
.mini-cart-bottom {
	padding: 20px 20px;
	padding-bottom: 40px;
}
.mini-cart-bottom h4 {
	width: 100%;
	font-size: 18px;
	font-weight: 600;
	padding-bottom: 30px;
}
.mini-cart-bottom h4 span{
	text-align: right;
}
.mini-cart-bottom h4 span {
	text-align: right;
	float: right;
}
.mini-cart-bottom a{
	width: 100%;
	text-align: center;
}
.mini-cart-bottom a.button-2 {
	margin-bottom: 30px;
}
/*
 * #-Hero Area
*/
.hero-area {
	padding-top: 200px;
	padding-bottom: 150px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	position: relative;
	z-index: 1;
}
.hero-area::after {
	content: "";
	clear: both;
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	background: rgba(38, 24, 9, 0.3);
	top: 0;
	left: 0;
	z-index: -1;
}
.hero-caption h2 {
	font-size: 45px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 20px;
}
.hero-caption p {
	font-size: 26px;
	text-transform: capitalize;
	font-weight: 500;
	color: #e8e8e8;
	margin-bottom: 30px;
}
.h-search-form {
	width: 100%;
	position: relative;
}
.h-search-form input {
	width: 100%;
	padding: 0px 30px;
	border-radius: 50px;
	border: none;
	font-weight: 600;
	font-size: 16px;
	text-transform: capitalize;
	position: relative;
	color: #333;
	height: 70px;
}
.h-search-form input::-moz-placeholder {
	color: #333;
	font-size: 16px;
	opacity: 1;
}
.h-search-form input::placeholder {
	color: #333;
	font-size: 16px;
	opacity: 1;
}
.h-search-form button {
	position: absolute;
	right: 6px;
	height: 60px;
	border: none;
	color: #fff;
	background: #261809;
	top: 5px;
	border-radius: 50px;
	width: 100px;
}
/*
 * Section Headding
*/
.section-headding h2 {
	font-size: 35px;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 15px;
}
.section-headding p {
	font-size: 18px;
}
/*
 * #-Product Style
*/
.product-item {
	width: 100%;
	box-sizing: border-box;
	box-shadow: 0 0 20px 0 rgb(62 28 131 / 10%);
	overflow: hidden;
}
.product-item .thumbnail {
	width: 100%;
	overflow: hidden;
	position: relative;
}
.product-item .thumbnail img{
	width: 100%;
}
.badge {
	position: absolute;
	top: 8px;
	right: 8px;
	background: linear-gradient(to right, #4a77f4 0%, #20029f 100%);
	text-transform: capitalize;
	font-size: 14px;
	padding: 8px 12px;
}
.product-item .content {
	padding: 20px 12px;
	border-top: 1px solid #eee;
	box-sizing: border-box;
}
.product-item .content h3 {
	margin-top: 16px;
	font-size: 18px;
	margin-bottom: 6px;
	font-weight: 700;
}
.product-item .content h3 a {
	color: #59310d;
}
.product-item .content h3:hover a{
	color: #261809;
}
.product-item .content .meta {
	margin-bottom: 10px;
}
.product-item .content .meta span {
	margin-right: 6px;
	font-size: 14px;
	color: #666;
}
.product-item .content .meta span:last-child{
	margin-right: 0px;
}
.product-item .content .meta span a {
	font-weight: 500;
	color: #333;
}
.product-item .content .meta span a:hover{
	color: #261809;
}
.product-item .content .ratting{
	width: 100%;
	overflow: hidden;
}
.ratting span {
	color: #ffa726;
	font-size: 15px;
	float: left;
}
.ratting span:last-child{
	color: #333;
}
.ratting span:last-child {
	color: #333;
	font-weight: 500;
	padding-left: 10px;
}
.product-item .content .bottom {
	width: 100%;
	overflow: hidden;
	border-top: 1px solid #eee;
	margin-top: 20px;
	padding-top: 20px;
}
.product-item .content .bottom .price {
	float: left;
}
.product-item .content .bottom .price span {
	font-size: 20px;
	font-weight: 600;
	padding-top: 6px;
	display: block;
}
.product-item .content .bottom .right-btn {
	float: right;
}
.product-item .content .bottom .right-btn a {
	margin: 0px 2px;
}
.section-bg .product-item {
	background: #fff;
	border-radius: 5px;
	box-shadow: none;
}
.trending-product-slider .owl-dots {
	text-align: center;
	margin-top: 20px;
}
.trending-product-slider .owl-dots .owl-dot {
	margin: 0 6px;
	border: 0;
	background: none;
	cursor: pointer;
}
.trending-product-slider .owl-dots .owl-dot.active span {
	background: #261809;
}
.trending-product-slider .owl-dots .owl-dot span {
	display: block;
	border-radius: 50%;
	background-color: #333;
	width: 8px;
	height: 8px;
	position: relative;
	transition: all 0.3s ease;
}
.trending-product-slider .owl-dots .owl-dot span::after {
	position: absolute;
	content: "";
	top: -5px;
	left: -5px;
	border: 1px solid #261809;
	border-radius: 50%;
	width: calc(100% + 10px);
	height: calc(100% + 10px);
	transform: scale(0);
	transition: all 0.3s ease;
}
.trending-product-slider .owl-dots .owl-dot.active span::after {
	transform: scale(1);
}
/*
 * Category
*/
.p-category-item {
	text-align: center;
	box-shadow: 0px 0px 20px 0px #eee;
	border-radius: 10px;
	padding: 50px 20px;
	-webkit-transition: all .4s ease-in-out;
	transition: all .5s ease-in-out;
}
.p-category-item:hover{
	transform: translateY(-15px);
}
.p-category-item h3 {
	margin-top: 30px;
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 10px;
}
.p-category-item h3 a{
	color: #59310d;
}
.p-category-item:hover h3 a{
	color: #261809;
}
.p-category-item a.link {
	font-size: 14px;
	font-weight: 500;
	color: #333;
	-webkit-transition: all .4s ease-out;
	transition: all .4s ease-in-out;
}
.p-category-item:hover a.link{
	color: #261809;
}
.p-category-item a.link i{
	-webkit-transition: all .4s ease-out;
	transition: all .4s ease-in-out;
}
.p-category-item a.link:hover i{
	padding-left: 10px;
}
.badge.new {
	background: green;
}
.l-product-category-list ul li {
	display: inline-block;
	border: 1px solid #eee;
	margin: 4px 3px;
	background: #fff;
	border-radius: 5px;
	cursor: pointer;
	padding: 10px 20px;
	font-weight: 500;
	-webkit-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out;
	font-size: 16px;
}
.l-product-category-list ul li.mixitup-control-active {
	background: #261809;
	border-color: #261809;
	color: #fff;
}
.auth-port-best-sale .content h3 {
	font-size: 20px;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 4px;
}
.auth-port-best-sale .content p {
	font-size: 14px;
	margin-bottom: 15px;
}
.auth-port-best-sale .content a.button-1 {
	padding: 10px 20px;
	font-size: 14px;
	text-transform: capitalize;
	font-weight: 500;
}
/*
 * #-Why Chooses Us
*/
.why-chooses-us {
	background: #261809;
	color: #fff;
}
.why-chooses-us .section-headding h2 {
	color: #fff;
}
.info-item-1 .icon {
	padding-right: 12px;
}
.info-item-1 .icon i {
	color: transparent;
	-webkit-text-stroke-width: 1.5px;
	-webkit-text-stroke-color: #fff;
	font-size: 50px;
}
.info-item-1 .content{
	overflow: hidden;
}
.info-item-1 .content h4 {
	font-size: 18px;
	color: #fff;
	line-height: 1.2;
	margin-bottom: 10px;
}
.info-item-1 .content p {
	color: #eee;
	font-size: 14px;
}
/*
 * #-Testimonial Area
*/
.testimonial-item img {
	width: auto !important;
}
.testimonial-item {
	background: #F7F7F7;
	border-radius: 10px;
	padding: 50px 50px;
	position: relative;
}

.testimonial-full .owl-dots {
	text-align: center;
	margin-top: 20px;
}
.testimonial-full .owl-dots .owl-dot {
	margin: 0 6px;
	border: 0;
	background: none;
	cursor: pointer;
}
.testimonial-full .owl-dots .owl-dot.active span {
	background: #261809;
}
.testimonial-full .owl-dots .owl-dot span {
	display: block;
	border-radius: 50%;
	background-color: #333;
	width: 8px;
	height: 8px;
	position: relative;
	transition: all 0.3s ease;
}
.testimonial-full .owl-dots .owl-dot span::after {
	position: absolute;
	content: "";
	top: -5px;
	left: -5px;
	border: 1px solid #261809;
	border-radius: 50%;
	width: calc(100% + 10px);
	height: calc(100% + 10px);
	transform: scale(0);
	transition: all 0.3s ease;
}
.testimonial-full .owl-dots .owl-dot.active span::after {
	transform: scale(1);
}
.testimonial-item .top {
	width: 100%;
	overflow: hidden;
	margin-bottom: 30px;
}
.testimonial-item .top .img {
	float: left;
	margin-right: 20px;
}
.testimonial-item .top .quote {
	position: absolute;
	right: 30px;
	top: 50px;
	opacity: .4;
}
.testimonial-item .top .meta {
	overflow: hidden;
}
.testimonial-item .top .meta h3 {
	font-size: 20px;
	font-weight: 600;
	margin-top: 10px;
}
.testimonial-item .top .meta .ratting-testi span {
	float: left;
	font-size: 16px;
	color: #ffa726;
}
.testimonial-item .bottom p {
	line-height: 32px;
	font-style: italic;
	font-size: 18px;
}
.auth-port-best-sale p.content {
	margin-top: 14px;
	line-height: 28px;
	font-size: 15px;
	margin-bottom: 10px;
}
.auth-port-best-sale ul li {
	line-height: 34px;
	font-weight: 500;
}
.auth-port-best-sale ul li i {
	color: #261809;
	padding-right: 5px;
}
/*
 * #-Blog
*/
.blog-item {
	transition: all ease .4s;
	box-shadow: 0 0 20px 0 rgb(62 28 131 / 10%);
	-webkit-box-shadow: 0 0 20px 0 rgb(62 28 131 / 10%);
	border-radius: 5px;
}
.blog-item .thumbnail img {
	width: 100%;
}
.blog-item .content {
	position: relative;
}
.blog-item .content .c-o-cate {
	margin-top: 16px;
	margin-bottom: 15px;
	padding: 0px 15px;
}
.blog-item .content .c-o-cate span {
	padding-right: 10px;
	font-size: 14px;
	color: #333;
}
.blog-item .content .c-o-cate span a{
	color: #333;
}
.blog-item .content .c-o-cate span i{
	color: #261809;
}
.blog-item .content .c-o-cate span a:hover{
	color: #261809;
}
.blog-item .content .c-o-cate span:last-child{
	padding-right: 0px;
}
.blog-item .content .title-or-con {
	margin-bottom: 20px;
	padding: 0px 15px;
}
.blog-item .content .title-or-con h2 {
	font-size: 20px;
	font-weight: 600;
	line-height: 1.2;
	margin-bottom: 10px;
	text-transform: capitalize;
}
.blog-item .content .title-or-con h2 a{
	color: #333;
}
.blog-item .content .title-or-con h2:hover a{
	color: #261809;
}
.blog-item .content .title-or-con p {
	line-height: 30px;
}
.blog-item .content .meta {
	padding: 0px 15px;
	padding-top: 20px;
	padding-bottom: 30px;
	border-top: 1px solid #eee;
	overflow: hidden;
}
.blog-item .content .meta .left {
	float: left;
}
.blog-item .content .meta .left img {
	width: 35px;
	margin-right: 10px;
	float: left;
}
.blog-item .content .meta .left span {
	overflow: hidden;
	color: #333;
	text-transform: capitalize;
	font-weight: 500;
	font-size: 14px;
	padding-top: 6px;
	display: inline-block;
}
.blog-item .content .meta .left:hover span{
	color: #261809;
}
.blog-item .content .meta .right {
	float: right;
	overflow: hidden;
}
.blog-item .content .meta .right .button-1 {
	font-size: 14px;
	font-weight: 500;
	padding: 7px 20px;
}
/*
 * Subscribe
*/
.subscribe-area {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	position: relative;
	z-index: 1;
}
.subscribe-area::after {
	content: "";
	clear: both;
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	background: rgba(38, 24, 9, 0.65);
	top: 0;
	left: 0;
	z-index: -1;
}
.subscribe-form h3 {
	font-size: 50px;
	color: #fff;
	font-weight: 700;
	margin-bottom: 10px;
}
.subscribe-form p {
	font-size: 20px;
	color: #fff;
	margin-bottom: 30px;
}
.subscribe-form form {
	max-width: 500px;
	position: relative;
	margin: 0 auto;
	width: 100%;
}
.subscribe-form form input {
	width: 100%;
	height: 60px;
	border: none;
	padding: 0px 25px;
	font-weight: 600;
	color: #59310d;
	border-radius: 30px;
}
.subscribe-form form input::-moz-placeholder {
	color: #59310d;
	font-size: 16px;
	opacity: 1;
}
.subscribe-form form input::placeholder {
	color: #59310d;
	font-size: 16px;
	opacity: 1;
}
.subscribe-form form button {
	height: 50px;
	position: absolute;
	top: 5px;
	right: 6px;
	border: none;
	background: #261809;
	color: #fff;
	padding: 0px 30px;
	border-radius: 30px;
}
/*
 * #-Footer
*/
.footer {
	background: #261809;
	color: #b5b4b9;
}
.footer-widgets-single h3 {
	font-size: 18px;
	color: #ffffff;
	font-weight: 700;
	margin-bottom: 27px;
	text-transform: capitalize;
}
.footer-bottom {
	border-top: 1px solid #262626;
}
.footer-widgets-single .corporate-address li {
	line-height: 28px;
	padding: 4px 0px;
	display: flex;
}
.footer-widgets-single .corporate-address li i {
	float: left;
	margin-top: 4px;
	padding-right: 15px;
	color: #261809;
	font-size: 16px;
}
.footer-social {
	margin-top: 14px;
}
.footer-social span{
	display: inline-block;
	margin: 0px 2px;
}
.footer-social span a{
	display: inline-block;
}
.footer-social span a i {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 33px;
	height: 32px;
	background: #084f99;
	color: #fff;
	font-size: 14px;
	border-radius: 2px;
}
.footer-social span a i.fa-twitter {
	background: #1da1f2;
}
.footer-social span a i.fa-linkedin {
	background: #0e76a8;
}
.footer-social span a i.fa-instagram {
	background: radial-gradient(circle farthest-corner at 32% 106%,#ffe17d 0,#ffcd69 10%,#fa9137 28%,#eb4141 42%,transparent 82%),linear-gradient(135deg,#234bd7 12%,#c33cbe 58%);
}
.footer-widgets-single .footer-menu li {
	display: block;
	line-height: 32px;
}
.footer-widgets-single .footer-menu li a {
	display: inline-block;
	position: relative;
	-webkit-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out;
	color: #b5b4b9;
	font-size: 15px;
	padding: 3px 0px;
}
.footer-widgets-single .footer-menu li a::after {
	content: "";
	clear: both;
	display: block;
	position: absolute;
	width: 10px;
	height: 1px;
	background: #fff;
	top: 50%;
	left: 0;
	-webkit-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out;
	opacity: 0;
	visibility: hidden;
}
.footer-widgets-single .footer-menu li a:hover::after{
	opacity: 1;
	visibility: visible;
}
.footer-widgets-single .footer-menu li a:hover{
	color: #fff;
	padding-left: 12px;
}
.copy-text p {
	color: #b5b4b9;
	font-size: 15px;
}
.copy-text p a{
	color: #b5b4b9;
}
.copy-text p a:hover{
	color: #fff;
}
/*
 * #-Preeloader
*/
#loading {
    background-color: #261809;
    height: 100%;
    width: 100%;
    position: fixed;
    z-index: 999;
    margin-top: 0px;
    top: 0px;
}
#loading-center {
    width: 100%;
    height: 100%;
    position: relative;
}
#loading-center-absolute {
    position: absolute;
    left: 50%;
    top: 50%;
    height: 20px;
    width: 100px;
    margin-top: -10px;
    margin-left: -50px;
}
.object {
    width: 20px;
    height: 20px;
    background-color: #FFF;
    -moz-border-radius: 50% 50% 50% 50%;
    -webkit-border-radius: 50% 50% 50% 50%;
    border-radius: 50% 50% 50% 50%;
    margin-right: 20px;
    margin-bottom: 20px;
    position: absolute;
}
#object_one {
    -webkit-animation: object 2s linear infinite;
    animation: object 2s linear infinite;
}
#object_two {
    -webkit-animation: object 2s linear infinite -.4s;
    animation: object 2s linear infinite -.4s;
}
#object_three {
    -webkit-animation: object 2s linear infinite -.8s;
    animation: object 2s linear infinite -.8s;
}
#object_four {
    -webkit-animation: object 2s linear infinite -1.2s;
    animation: object 2s linear infinite -1.2s;
}
#object_five {
    -webkit-animation: object 2s linear infinite -1.6s;
    animation: object 2s linear infinite -1.6s;
}
@-webkit-keyframes object {
    0% {
        left: 100px;
        top: 0
    }
    80% {
        left: 0;
        top: 0;
    }
    85% {
        left: 0;
        top: -20px;
        width: 20px;
        height: 20px;
    }
    90% {
        width: 40px;
        height: 15px;
    }
    95% {
        left: 100px;
        top: -20px;
        width: 20px;
        height: 20px;
    }
    100% {
        left: 100px;
        top: 0;
    }
}
@keyframes object {
    0% {
        left: 100px;
        top: 0
    }
    80% {
        left: 0;
        top: 0;
    }
    85% {
        left: 0;
        top: -20px;
        width: 20px;
        height: 20px;
    }
    90% {
        width: 40px;
        height: 15px;
    }
    95% {
        left: 100px;
        top: -20px;
        width: 20px;
        height: 20px;
    }
    100% {
        left: 100px;
        top: 0;
    }
}
/*
 * #-Counter
*/
.counter-area-full{
	margin-top: -100px;
	position: relative;
	z-index: 9;
}
.counter-item {
	text-align: center;
	box-shadow: 0 0 20px 0 rgb(62 28 131 / 10%);
	border-radius: 10px;
	padding: 50px 20px;
	-webkit-transition: all .4s ease-in-out;
	transition: all .5s ease-in-out;
	background: #fff;
}
.counter-item .icon {
	width: 40px;
	height: 40px;
	background: #26180940;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #261809;
	margin: 0 auto;
	margin-bottom: 20px;
	border-radius: 50%;
}
.counter-item .title h3 {
	display: inline-block;
	font-size: 50px;
	font-weight: 900;
}
.counter-item .title h2 {
	display: inline-block;
	font-size: 50px;
	font-weight: 900;
}
.counter-item .content {
	margin-top: 12px;
}
.home-2 .hero-area {
	padding-bottom: 200px;
}
/*
 * Browse Product Category
*/
.browse-p-cate-item {
	text-align: center;
	box-shadow: 0px 0px 20px 0px #eee;
	border-radius: 10px;
	padding: 50px 20px 0px 20px;
	-webkit-transition: all .4s ease-in-out;
	transition: all .5s ease-in-out;
}
.browse-p-cate-item:hover{
	transform: translateY(-15px);
}
.browse-p-cate-item h2 {
	font-size: 20px;
	font-weight: 700;
	line-height: 1.2;
}
.browse-p-cate-item p {
	font-size: 15px;
	line-height: 1.2;
	margin-bottom: 15px;
	margin-top: 5px;
}
.browse-p-cate-item a.btn-link-a {
	display: inline-block;
	margin-bottom: 30px;
	background: #edeef3;
	padding: 12px 30px;
	margin-top: 5px;
	border-radius: 50px;
	font-size: 15px;
	color: #333;
	-webkit-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out;
}
.browse-p-cate-item a.btn-link-a:hover{
	background: #261809;
	color: #fff;
}
.creative-bundle-thumb .owl-dots {
	text-align: center;
	margin-top: 20px;
}
.creative-bundle-thumb .owl-dots .owl-dot {
	margin: 0 6px;
	border: 0;
	background: none;
	cursor: pointer;
}
.creative-bundle-thumb .owl-dots .owl-dot.active span {
	background: #261809;
}
.creative-bundle-thumb .owl-dots .owl-dot span {
	display: block;
	border-radius: 50%;
	background-color: #333;
	width: 8px;
	height: 8px;
	position: relative;
	transition: all 0.3s ease;
}
.creative-bundle-thumb .owl-dots .owl-dot span::after {
	position: absolute;
	content: "";
	top: -5px;
	left: -5px;
	border: 1px solid #261809;
	border-radius: 50%;
	width: calc(100% + 10px);
	height: calc(100% + 10px);
	transform: scale(0);
	transition: all 0.3s ease;
}
.creative-bundle-thumb .owl-dots .owl-dot.active span::after {
	transform: scale(1);
}
.creative-bundle-content h2 {
	margin-bottom: 10px;
	font-size: 30px;
	font-weight: 700;
}
.creative-bundle-content p {
	line-height: 28px;
	font-size: 15px;
	margin-bottom: 20px;
}
.creative-bundle-content ul{
	margin-bottom: 20px;
}
.creative-bundle-content ul li {
	line-height: 30px;
	padding: 2px 0px;
	font-weight: 500;
}
.creative-bundle-content ul li i {
	color: #261809;
	padding-right: 8px;
}
/*
 * Inner banner Wrapper
*/
.inner-banner-wrapper {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	position: relative;
	z-index: 1;
}
.inner-banner-wrapper::after {
	content: "";
	clear: both;
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
	background: rgba(38, 24, 9, 0.4);
}
.inner-banner-wrapper-content h4 {
	font-size: 18px;
	text-transform: capitalize;
	margin-bottom: 20px;
	font-weight: 600;
	color: #fff;
}
.inner-banner-wrapper-content form{
	width: 100%;
	position: relative;
}
.inner-banner-wrapper-content form input {
	width: 100%;
	height: 70px;
	padding: 0px 25px;
	font-weight: 600;
	color: #333;
	text-transform: capitalize;
	border: none;
	border-radius: 50px;
	position: relative;
	font-size: 16px;
}
.inner-banner-wrapper-content form input::-moz-placeholder {
	color: #333;
	font-size: 16px;
	opacity: 1;
}
.inner-banner-wrapper-content form input::placeholder {
	color: #333;
	font-size: 16px;
	opacity: 1;
}
.inner-banner-wrapper-content form button {
	position: absolute;
	top: 5px;
	right: 6px;
	border: none;
	background: #261809;
	height: 60px;
	padding: 0px 35px;
	color: #fff;
	font-size: 18px;
	border-radius: 50px;
}
.breadcrumb-content ul li {
	display: inline-block;
	padding: 0px 12px;
	color: #333;
	text-transform: capitalize;
	position: relative;
}
.breadcrumb-content ul li::after {
	content: "";
	clear: both;
	display: block;
	position: absolute;
	width: 5px;
	height: 2px;
	background: #333;
	top: 50%;
	right: -6px;
}
.breadcrumb-content ul li:last-child::after {
	width: 0;
	height: 0;
}
.breadcrumb-content ul li a {
	color: #686868;
}
.breadcrumb-content ul li a:hover{
	color: #261809;
}
/*
 * About Us
*/
.about-content h4 {
	color: #261809;
	font-size: 20px;
	text-transform: capitalize;
	font-weight: 400;
	margin-bottom: 10px;
}
.about-content h2 {
	font-size: 35px;
	line-height: 1.2;
	margin-bottom: 10px;
}
.about-content p {
	line-height: 30px;
	margin-bottom: 15px;
}
.about-content ul{
	margin-bottom: 20px;
}
.about-content ul li {
	line-height: 24px;
	padding: 4px 0px;
	font-weight: 600;
	text-transform: capitalize;
}
.about-content ul li i {
	color: #261809;
	padding-right: 5px;
}
.about-content h3 {
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 5px;
}
/*
 * #-Contact Us
*/
.contact-form h2 {
	font-size: 30px;
	text-transform: capitalize;
	margin-bottom: 15px;
	font-weight: 600;
}
.contact-form input {
	width: 100%;
	margin-bottom: 25px;
	padding: 16px 20px;
	border: 1px solid #eee;
	background: #F2F3F5;
	-webkit-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out;
}
.contact-form input:focus{
	border-color: #261809;
}
.contact-form textarea {
	width: 100%;
	margin-bottom: 25px;
	padding: 16px 20px;
	border: 1px solid #eee;
	background: #F2F3F5;
	-webkit-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out;
	height: 160px;
}
.contact-form textarea:focus{
	border-color: #261809;
}
.contact-info h2 {
	font-size: 30px;
	text-transform: capitalize;
	margin-bottom: 15px;
	font-weight: 600;
}
.contact-info p {
	line-height: 26px;
	font-size: 15px;
	margin-bottom: 10px;
}
.contact-info-list p {
	margin: 0;
}
.contact-info-list .item {
	width: 100%;
	overflow: hidden;
}
.contact-info-list .item .icon {
	width: 50px;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #26180961;
	border-radius: 50%;
	color: #261809;
	margin-right: 10px;
	float: left;
}
.contact-info-list .item .content {
	overflow: hidden;
}
.contact-info-list .item .content h4 {
	font-size: 16px;
	text-transform: capitalize;
	font-weight: 600;
}
.product-sorting-list span {
	border: 2px solid #eee;
	float: left;
	font-size: 14px;
	font-weight: 500;
	text-transform: capitalize;
	border-right: none;
}
.product-sorting-list span:last-child{
	border-right: 2px solid #eee;
}
.product-sorting-list span:first-child {
	border: none;
	text-transform: uppercase;
	padding-right: 10px;
	padding-top: 6px;
}
.product-sorting-list span a {
	color: #333;
	padding: 5px 6px;
	display: inline-block;
	font-size: 13px;
}
.product-sorting-list {
	float: right;
}
.product-sorting-list span.active a{
	background: #261809;
	color: #fff;
}
.product-sorting-list span:hover a{
	color: #fff;
	background: #261809;
}
/*
 * Pagination
*/
.product-pagination ul li {
	display: inline-block;
	margin: 0px 2px;
}
.product-pagination ul li a {
	display: flex;
	width: 35px;
	height: 35px;
	align-items: center;
	justify-content: center;
	-webkit-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out;
	box-shadow: 0px 0px 4px 0px #dfdfdf;
	font-weight: 500;
	color: #333;
}
.product-pagination ul li span {
	display: flex;
	width: 35px;
	height: 35px;
	align-items: center;
	justify-content: center;
	-webkit-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out;
	box-shadow: 0px 0px 4px 0px #dfdfdf;
	font-weight: 500;
	color: #fff;
	background: #261809;
}
.product-pagination ul li a:hover{
	color: #fff;
	background: #261809;
}
/*
 * Blog pagination
*/
.blog-pagination ul li {
	display: inline-block;
	margin: 0px 2px;
}
.blog-pagination ul li a {
	display: flex;
	width: 35px;
	height: 35px;
	align-items: center;
	justify-content: center;
	-webkit-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out;
	box-shadow: 0px 0px 4px 0px #dfdfdf;
	font-weight: 500;
	color: #333;
}
.blog-pagination ul li span {
	display: flex;
	width: 35px;
	height: 35px;
	align-items: center;
	justify-content: center;
	-webkit-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out;
	box-shadow: 0px 0px 4px 0px #dfdfdf;
	font-weight: 500;
	color: #fff;
	background: #261809;
}
.blog-pagination ul li a:hover{
	color: #fff;
	background: #261809;
}
/*
 * #-Widgets
*/
.p-widgets-single {
	width: 100%;
	box-sizing: border-box;
	box-shadow: 0 0 20px 0 rgb(62 28 131 / 10%);
	overflow: hidden;
	border-radius: 5px;
	padding: 25px 25px;
}
.p-widgets-single h2.title {
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	line-height: 1.2;
	margin-bottom: 20px;
	border-bottom: 1px solid #eee;
	padding-bottom: 10px;
}
.p-widgets-single .sidebar__check-p {
	line-height: 30px;
	padding: 4px 0px;
	width: 100%;
	overflow: hidden;
}
.p-widgets-single .sidebar__check-p .sidebar__check {
	float: left;
	padding-left: 5px;
}
.p-widgets-single .sidebar__check-p span {
	float: right;
	padding-right: 5px;
}
.p-widgets-single .sidebar__check-p .sidebar__check .form-check-input {
	width: 18px;
	height: 18px;
	margin-right: 6px;
}
.p-widgets-single .sidebar__check-p .sidebar__check label {
	font-size: 16px;
	color: #666;
	cursor: pointer;
}
.sidebar-check-form {
	max-height: 360px;
	overflow-y: auto;
}
/*
 * #-Product Details
*/
.product-details-full {
	width: 100%;
	box-sizing: border-box;
	box-shadow: 0 0 20px 0 rgb(62 28 131 / 10%);
	overflow: hidden;
	border-radius: 5px;
	padding: 25px 25px;
}
.text-right{
	text-align: right;
}
.product-details-full .thumbnail img {
	width: 100%;
}
.lp-or-vedio-btn a {
	text-transform: capitalize;
	padding: 14px 25px;
	margin-right: 10px;
}
.lp-or-vedio-btn a:last-child{
	margin: 0px;
}
.lp-or-vedio-btn span{
	display: none;
}
.product-share span {
	display: inline-block;
	margin: 0px 2px;
}
.product-share span a{
	display: inline-block;
}
.product-share span a i{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 33px;
	height: 32px;
	background: #084f99;
	color: #fff;
	font-size: 14px;
	border-radius: 2px;
}
.product-share span a i.fa-twitter {
	background: #1da1f2;
}
.product-share span a i.fa-linkedin {
	background: #0e76a8;
}
.product-share span a i.fa-instagram {
	background: radial-gradient(circle farthest-corner at 32% 106%,#ffe17d 0,#ffcd69 10%,#fa9137 28%,#eb4141 42%,transparent 82%),linear-gradient(135deg,#234bd7 12%,#c33cbe 58%);
}
.product-details-box-t .nav-tabs li span {
	border: 1px solid #eee;
	border-radius: 0px;
	border-bottom: 1px solid #eee;
	border-bottom-color: #eee !important;
	text-transform: capitalize;
	font-weight: 400;
	font-size: 18px;
	padding: 10px 28px;
	cursor: pointer;
}
.product-details-box-t .nav-tabs li span.nav-link.active {
	background: #261809;
	color: #fff;
	border-color: #261809;
}
.product-details-box-t .tab-content {
	margin-top: 20px;
}
.product-details-description h2 {
	font-size: 30px;
	font-weight: 700;
	margin-bottom: 15px;
}
.product-details-description p {
	line-height: 30px;
	margin-bottom: 20px;
}
.product-details-description h4 {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 10px;
	text-transform: capitalize;
}
.product-details-description ul {
	margin-bottom: 20px;
}
.product-details-description ul li {
	line-height: 30px;
	padding: 4px 0px;
	font-weight: 500;
}
.single-product-reviews h2 {
	font-size: 22px;
	font-weight: 600;
	margin-bottom: 20px;
}
.single-product-reviews ul li {
	width: 100%;
	position: relative;
	margin-bottom: 30px;
	border: 1px solid #eee;
	padding: 15px;
	padding-left: 100px;
}
.single-product-reviews ul li img {
	position: absolute;
	left: 10px;
	width: 72px;
}
.single-product-reviews ul li .review-info h5 {
	font-size: 16px;
	text-transform: capitalize;
	font-weight: 600;
}
.single-product-reviews ul li .review-info small {
	font-size: 12px;
}
.ratting-single span {
	color: #ffa726;
	font-size: 15px;
	float: left;
}
.ratting-single {
	width: 100%;
	overflow: hidden;
	margin-bottom: 10px;
}
.product-review-form h3 {
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 10px;
}
.product-review-form input {
	width: 100%;
	margin-bottom: 25px;
	padding: 16px 20px;
	border: 1px solid #eee;
	background: #F2F3F5;
	-webkit-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out;
}
.product-review-form input:focus{
	border-color: #261809;
}
.product-review-form textarea {
	width: 100%;
	margin-bottom: 25px;
	padding: 16px 20px;
	border: 1px solid #eee;
	background: #F2F3F5;
	-webkit-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out;
	height: 150px;
}
.product-review-form textarea:focus{
	border-color: #261809;
}
.product-review-form button {
	border-radius: 0px;
	text-transform: capitalize;
}
.p-support-ticket-request-form h2 {
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 10px;
}
.p-support-ticket-request-form p {
	line-height: 30px;
	margin-bottom: 20px;
}
.p-support-ticket-request-form  input {
	width: 100%;
	margin-bottom: 25px;
	padding: 16px 20px;
	border: 1px solid #eee;
	background: #F2F3F5;
	-webkit-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out;
}
.p-support-ticket-request-form input:focus{
	border-color: #261809;
}
.p-support-ticket-request-form textarea {
	width: 100%;
	margin-bottom: 25px;
	padding: 16px 20px;
	border: 1px solid #eee;
	background: #F2F3F5;
	-webkit-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out;
	height: 150px;
}
.p-support-ticket-request-form textarea:focus{
	border-color: #261809;
}
.p-support-ticket-request-form button {
	border-radius: 0px;
	text-transform: capitalize;
}
.single-p-widgets-single .licence-p-a {
	box-shadow: 0 0 20px 0 rgb(62 28 131 / 10%);
	border-radius: 5px;
}
.single-p-widgets-single .licence-p-a .nav-tabs {
	border: none;
}
.single-p-widgets-single .licence-p-a .nav-tabs li {
	width: 50%;
	box-sizing: border-box;
	text-align: center;
}
.single-p-widgets-single .licence-p-a .nav-tabs li button {
	border: none;
	width: 100%;
	text-transform: capitalize;
	font-weight: 600;
	font-size: 15px;
	padding: 18px 0px;
	border-radius: 0px;
}
.single-p-widgets-single .licence-p-a .nav-tabs li button.active {
	background: #261809;
	color: #fff;
}
.single-p-widgets-sin-price {
	padding: 25px;
}
.single-p-widgets-sin-price p {
	margin-bottom: 20px;
}
.theme-price-plan .theme-price-single {
	margin-bottom: 20px;
	width: 100%;
	overflow: hidden;
	padding-left: 4px;
}
.theme-price-plan .theme-price-single .theme-price-radio {
	float: left;
}
.theme-price-plan .theme-price-single .theme-price-value {
	float: right;
}
.single-p-widgets-sin-price .button-1 {
	width: 100%;
}
.single-p-widgets-single.box-shadow {
	width: 100%;
	box-sizing: border-box;
	box-shadow: 0 0 20px 0 rgb(62 28 131 / 10%);
	overflow: hidden;
	border-radius: 5px;
	padding: 25px 25px;
}
.s-or-review-item i {
	font-size: 40px;
	float: left;
	padding-right: 10px;
	color: #261809;
}
.s-or-review-item span {
	padding-top: 10px;
	display: block;
	text-transform: capitalize;
}
.single-p-widgets-single h2 {
	font-size: 20px;
	text-transform: capitalize;
	font-weight: 600;
	margin-bottom: 20px;
	border-bottom: 1px solid #eee;
	padding-bottom: 20px;
}
.dp_detail_infobox_p .dp_single_list_p {
	margin-bottom: 20px;
	width: 100%;
	overflow: hidden;
	display: flex;
}
.dp_detail_infobox_p .dp_single_list_p .title {
	display: flex;
	flex: 0 0 38%;
}
.dp_detail_infobox_p .dp_single_list_p .title b {
	font-size: 14px;
	text-transform: capitalize;
	font-weight: 600;
}
.dp_detail_infobox_p .dp_single_list_p .info{
	padding-left: 10px;
}
.dp_detail_infobox_p .dp_single_list_p .info span {
	font-size: 14px;
	color: #666;
	text-transform: capitalize;
}
.dp_detail_infobox_p .dp_single_list_p .info a {
	color: #0b73bd;
	font-size: 14px;
	margin-right: 4px;
}
.dp_detail_infobox_p .dp_single_list_p .info a:hover{
	color: #261809;
}
/*
 * Blog Widgets
*/
.blog-widgets-single {
	width: 100%;
	box-sizing: border-box;
	box-shadow: 0 0 20px 0 rgb(62 28 131 / 10%);
	overflow: hidden;
	border-radius: 5px;
	padding: 25px 25px;
}
.b-w-search {
	width: 100%;
	position: relative;
}
.b-w-search input {
	width: 100%;
	padding: 20px 15px;
	border: 1px solid #eee;
	position: relative;
	-webkit-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out;
	background: #F2F3F5;
}
.b-w-search input:focus {
	border-color: #261809;
}
.b-w-search button {
	position: absolute;
	top: 18px;
	right: 6px;
	border: none;
	background: none;
	font-size: 20px;
}
.b-w-search button:hover{
	color: #261809;
}
.b-resenct-blog-single .thumbnail {
	width: 70px;
	margin-right: 12px;
	padding-top: 10px;
}
.b-resenct-blog-single .thumbnail img{
	width: 100%;
}
.b-resenct-blog-single .content span {
	font-size: 12px;
	line-height: 1;
}
.b-resenct-blog-single .content h4 {
	font-size: 16px;
	font-weight: 600;
	line-height: 1.2;
}
.b-resenct-blog-single .content h4 a{
	color: #59310d;
}
.b-resenct-blog-single:hover .content h4 a{
	color: #261809;
}
.blog-widgets-single h3.title {
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	line-height: 1.2;
	margin-bottom: 20px;
	border-bottom: 1px solid #eee;
	padding-bottom: 10px;
}
.blog-widgets-single ul li {
	display: block;
	line-height: 30px;
	border-bottom: 1px solid #eee;
	padding: 10px 0px;
}
.blog-widgets-single ul li:last-child{
	border: none;
}
.blog-widgets-single ul li a {
	color: #555;
}
.blog-widgets-single ul li a:hover{
	color: #261809;
}
.tagscould a {
	display: inline-block;
	border: 1px solid #eee;
	margin: 4px 3px;
	padding: 5px 15px;
	font-size: 14px;
	color: #333;
	border-radius: 5px;
	-webkit-transition: all.4s ease-in-out;
	transition: all .4s ease-in-out;
}
.tagscould a:hover{
	color: #fff;
	border-color: #261809;
	background: #261809;
}
/*
 * #-Blog Details
*/
.blog-details {
	width: 100%;
	box-sizing: border-box;
	box-shadow: 0 0 20px 0 rgb(62 28 131 / 10%);
	overflow: hidden;
	border-radius: 5px;
	padding: 25px 25px;
}
.blog-details img{
	width: 100%;
}
.blog-details .content .meta {
	margin-top: 20px;
	margin-bottom: 20px;
}
.blog-details .content .meta span {
	padding-right: 10px;
	font-size: 14px;
	color: #333;
}
.blog-details .content .meta span a{
	color: #333;
}
.blog-details .content .meta span i{
	color: #261809;
}
.blog-details .content .meta span a:hover{
	color: #261809;
}
.blog-details .content .meta span:last-child{
	padding-right: 0px;
}
.blog-details .content .meta span{
	padding-right: 10px;
}
.blog-details .content h2 {
	font-size: 28px;
	text-transform: capitalize;
	font-weight: 700;
	margin-bottom: 20px;
}
.blog-details .content p {
	font-size: 16px;
	line-height: 30px;
	margin-bottom: 20px;
}
.blog-share span {
	display: inline-block;
	margin: 0px 2px;
}
.blog-share span a{
	display: inline-block;
}
.blog-share span a i{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 30px;
	height: 30px;
	background: #084f99;
	color: #fff;
	font-size: 14px;
	border-radius: 2px;
}
.blog-share span a i.fa-twitter {
	background: #1da1f2;
}
.blog-share span a i.fa-linkedin {
	background: #0e76a8;
}
.blog-share span a i.fa-instagram {
	background: radial-gradient(circle farthest-corner at 32% 106%,#ffe17d 0,#ffcd69 10%,#fa9137 28%,#eb4141 42%,transparent 82%),linear-gradient(135deg,#234bd7 12%,#c33cbe 58%);
}
/*
 * Comment List
*/
.comments-list-full, .comment-form-area{
	width: 100%;
	box-sizing: border-box;
	box-shadow: 0 0 20px 0 rgb(62 28 131 / 10%);
	overflow: hidden;
	border-radius: 5px;
	padding: 30px 25px;
}
.comments-list-full h3, .comment-form-area h3{
	margin-bottom: 30px;
	font-size: 22px;
	text-transform: capitalize;
	font-weight: 600;
}
.comments-list-full ul li {
	position: relative;
	padding-left: 100px;
}
.comments-list-full ul li img{
	position: absolute;
	width: 80px;
	left: 0;
	top: 0;
}
.comments-list-full ul li .com-content h4 {
	font-size: 16px;
	text-transform: capitalize;
	font-weight: 700;
	margin-bottom: 4px;
}
.comments-list-full ul li .com-content p {
	line-height: 26px;
	font-size: 15px;
	margin-bottom: 5px;
}
.comments-list-full ul li .com-content a.reply {
	display: inline-block;
	color: #333;
	text-transform: capitalize;
	font-weight: 600;
}
.comments-list-full ul li .com-content a.reply:hover{
	color: #261809;
}
/*
 * Comment Form
*/
.comment-form-area input {
	width: 100%;
	margin-bottom: 25px;
	padding: 16px 20px;
	border: 1px solid #eee;
	background: #F2F3F5;
	-webkit-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out;
}
.comment-form-area input:focus{
	border-color: #261809;
}
.comment-form-area textarea {
	width: 100%;
	margin-bottom: 25px;
	padding: 16px 20px;
	border: 1px solid #eee;
	background: #F2F3F5;
	-webkit-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out;
	height: 150px;
}
.comment-form-area textarea:focus{
	border-color: #261809;
}
.comment-form-area button {
	border-radius: 0px;
	text-transform: capitalize;
}
/*
 * #-Support Page
*/
.info-box-1 {
	box-sizing: border-box;
	box-shadow: 0px 0px 20px 0px #eee;
	text-align: center;
	padding: 50px 30px;
	border-radius: 5px;
	-webkit-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out;
}
.info-box-1:hover{
	transform: translateY(-10px);
}
.info-box-1 .icon{
	margin-bottom: 30px;
}
.info-box-1 .content h2 {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 10px;
}
.info-box-1 .content a {
	text-transform: capitalize;
	padding: 10px 20px;
}
.info-box-1 .content p {
	line-height: 30px;
	margin-bottom: 20px;
}
.accordion-item {
	border: 2px solid #eee;
	border-bottom: none;
}
.accordion-item:last-child{
	border-bottom: 2px solid #eee;
}
.accordion-item .accordion-header {
	line-height: 1;
	margin: 0;
	padding: 0;
}
.accordion-item .accordion-header a {
	font-size: 18px;
	width: 100%;
	display: inline-block;
	color: #59310d;
	padding: 20px 20px;
	font-weight: 600;
	text-transform: capitalize;
	position: relative;
}
.accordion-item .accordion-header a::after {
	content: "-";
	clear: both;
	overflow: hidden;
	position: absolute;
	top: 14px;
	right: 10px;
	width: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #261809;
	color: #fff;
	font-size: 20px;
	height: 30px;
}
.accordion-item .accordion-header a.collapsed::after{
	content: "+";
}
.accordion-item .accordion-body {
	border: none;
	padding: 15px 20px;
	border-top: 2px solid #eee;
}
.accordion-item .accordion-collapse {
	border: none;
}
.accordion-item .accordion-body p {
	line-height: 30px;
	margin-bottom: 10px;
}
.log-in-register-form {
	max-width: 450px;
	margin: 0 auto;
	background: #fff;
	box-sizing: border-box;
	padding: 30px;
}
/*
 * #-Pricing
*/
.pricing-item {
	text-align: center;
	background: #f4f6f5;
	-webkit-transition: all .4s ease-in-out;
	transition: all .6s ease-in-out;
}
.pricing-item:hover {
	-webkit-box-shadow: 0px 11px 15px 0px rgba(216, 216, 216, 0.75);
	-moz-box-shadow: 0px 11px 15px 0px rgba(216, 216, 216, 0.75);
	box-shadow: 0px 11px 15px 0px rgba(216, 216, 216, 0.75);
	background: #ffffff;
}
.pricing-item .headding {
	background: #8bc34a;
	position: relative;
	padding: 30px 0px;
	overflow: hidden;
}
.pricing-item.active .headding {
	background: #261809;
}
.pricing-item .headding h4 {
	font-size: 20px;
	text-transform: capitalize;
	font-weight: 600;
	color: #fff;
	margin-bottom: 10px;
}
.pricing-item .headding h2 {
	font-size: 50px;
	font-weight: 700;
	color: #fff;
}
.pricing-item .headding h2 small {
	font-size: 20px;
	text-transform: capitalize;
	font-weight: 600;
}
.pricing-item .headding span {
	position: absolute;
	top: 16px;
	right: -39px;
	background: #1a0202;
	text-transform: uppercase;
	font-weight: 600;
	font-size: 14px;
	padding: 8px 35px;
	color: #fff;
	letter-spacing: .3px;
	transform: rotate(51deg);
}
.pricing-item .content-pricing {
	padding: 35px 0px;
}
.pricing-item .content-pricing ul li {
	line-height: 30px;
	padding: 12px 0px;
	font-size: 16px;
	border-bottom: 1px solid #eee;
	text-transform: capitalize;
}
.pricing-item .content-pricing ul li:last-child{
	border: none;
}
/*
 * #-Add to Cart
*/
.shopping-cart-tabel thead tr td {
	padding: 15px 14px;
	background: #261809;
	color: #fff;
	text-transform: capitalize;
	font-weight: 600;
}
.shopping-cart-tabel .product-thumbnail {
	width: 140px;
}
.shopping-cart-tabel .product-thumbnail img {
	width: 120px;
}
.shopping-cart-tabel .product-name a {
	font-weight: 600;
	color: #59310d;
	font-size: 16px;
}
.shopping-cart-tabel .product-name a:hover {
	color: #261809;
}
.shopping-cart-tabel .prodcut-quantity {
	width: 120px;
}
.shopping-cart-tabel .prodcut-quantity input {
	border-radius: 0px;
}
.shopping-cart-tabel .prodcut-quantity input:focus{
	box-shadow: none;
}
.table.shopping-cart-tabel{
	text-align: center;
}
.table.shopping-cart-tabel .product-remove i {
	width: 30px;
	height: 30px;
	background: #d0d0d0;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto;
	cursor: pointer;
	border-radius: 50%;
}
.border-radious-0{
	border-radius: 0px;
}
.add-to-cart-p input:focus {
	box-shadow: none;
	border-color: #261809;
}
.add-to-cart-p input{
	margin-bottom: 25px;
	padding: 16px 20px;
	border: 1px solid #eee;
	background: #F2F3F5;
	-webkit-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out;
}
/*
 * Checkout
*/
.checkout-p-co-form {
	box-shadow: 0px 0px 20px 0px #eee;
	border-radius: 10px;
	padding: 50px 20px;
	-webkit-transition: all .4s ease-in-out;
	transition: all .5s ease-in-out;
}
.checkout-p-co-form h2 {
	font-size: 22px;
	text-transform: capitalize;
	font-weight: 600;
	margin-bottom: 20px;
}
.checkout-p-co-form .ck-single-i {
	width: 100%;
	margin-bottom: 25px;
}
.checkout-p-co-form .ck-single-i input{
	width: 100%;
	padding: 16px 20px;
	border: 1px solid #eee;
	background: #F2F3F5;
	-webkit-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out;
}
.checkout-p-co-form .ck-single-i input:focus{
	border-color: #261809;
}
.checkout-p-co-form .ck-single-i select{
	width: 100%;
	padding: 16px 20px;
	border: 1px solid #eee;
	background: #F2F3F5;
	-webkit-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out;
}
.checkout-p-co-form .ck-single-i select:focus{
	border-color: #261809;
}
.checkout-p-co-form .ck-single-i textarea{
	width: 100%;
	padding: 16px 20px;
	border: 1px solid #eee;
	background: #F2F3F5;
	-webkit-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out;
	height: 160px;
}
.checkout-p-co-form .ck-single-i textarea:focus{
	border-color: #261809;
}
.checkout-p-co-form .ck-single-i button{
	border-radius: 0px;
	margin-top: 20px;
}
.checkout-p-co-form .ck-single-i label {
	text-transform: capitalize;
	font-weight: 400;
	font-size: 16px;
	margin-bottom: 10px;
}
.checkout-p-co-form .ck-single-i h2 {
	font-size: 20px;
	text-transform: capitalize;
	font-weight: 600;
}
.checkout-p-co-form .ck-single-i .sub-total {
	margin-top: 20px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	border: 2px solid #f7f7f7;
	background-color: #ffff;
	padding: 15px 15px 15px;
}
.error-404-area {
	display: flex;
	height: 100vh;
	align-items: center;
	justify-content: center;
	text-align: center;
	background: #aaa7ac45;
}
.error-404-content img {
	width: 40%;
}
.error-404-content h2 {
	margin-top: 30px;
	font-size: 30px;
	text-transform: capitalize;
	margin-bottom: 10px;
}
.error-404-content p{
	margin-bottom: 20px;
}
.menu nav ul li > ul > li a i {
	text-align: right;
	float: right;
	padding-top: 5px;
}
.user-inner-banner-wrapper .auth-port-best-sale .content {
	text-align: left;
}
/*
 * #-User Profile
*/
.user-inner-banner-wrapper {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	position: relative;
	z-index: 1;
}
.user-inner-banner-wrapper::after {
	content: "";
	clear: both;
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
	background: #261809c2;
}
.user-p-s-o-r {
	float: right;
}
.user-p-s-o-r .top {
	display: flex;
}
.user-p-s-o-r .top i {
	font-size: 40px;
	color: #fff;
	padding-right: 10px;
	display: inline-block;
}
.user-p-s-o-r .top h3 {
	color: #fff;
	padding-top: 4px;
	font-size: 26px;
}
.user-p-s-o-r p {
	margin-top: 10px;
	font-size: 20px;
	text-transform: capitalize;
	font-weight: 500;
	color: #fff;
}
.user-dash-nav-menus ul li {
	display: inline-block;
	float: left;
}
.user-dash-nav-menus ul li a {
	display: inline-block;
	padding: 25px 40px;
	text-transform: capitalize;
	font-weight: 500;
	color: #59310d;
	-webkit-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out;
	border-right: 1px solid #eee;
	font-size: 16px;
}
.user-dash-nav-menus ul li:first-child a{
	border-left: 1px solid #eee;
}
.user-dash-nav-menus ul li.active a {
	background: #2618092e;
}
.user-dash-nav-menus ul li a:hover{
	background: #2618092e;
}
.w-b-b-shadow {
	background: #fff;
	padding: 40px 30px;
	border-radius: 10px;
	box-shadow: 0px 0px 10px 0px #eee;
}
.user-dash__p-info .a__profile .thumbnail {
	width: 100px;
	height: 100px;
	background: #eee;
	border-radius: 50%;
	margin: 0 auto;
	position: relative;
	margin-bottom: 30px;
}
.user-dash__p-info .a__profile .thumbnail img {
	width: 100%;
	border-radius: 50%;
}
.user-dash__p-info .a__profile .thumbnail i {
	position: absolute;
	top: 10px;
	right: 5px;
	color: #261809;
}
.user-dash__p-info .a__profile .name h4 {
	font-size: 20px;
	text-transform: capitalize;
	font-weight: 600;
	margin-bottom: 5px;
}
.user-dash__p-info .a__profile .name p {
	font-size: 14px;
	margin-bottom: 10px;
}
.user-dash__p-info .a__profile .name .r-vi-a span {
	font-size: 15px;
	color: #ffa726;
}
.user-dash__p-info .c__a__author .title {
	margin-bottom: 20px;
}
.user-dash__p-info .c__a__author .title h2 {
	font-size: 20px;
	text-transform: capitalize;
	font-weight: 600;
	margin-bottom: 5px;
}
.user-dash__p-info .c__a__author .form-group {
	margin-bottom: 15px;
}
.user-dash__p-info .c__a__author .form-group label {
	font-size: 14px;
	margin-bottom: 3px;
}
.user-dash__p-info .c__a__author .form-group input{
	width: 100%;
	padding: 16px 20px;
	border: 1px solid #eee;
	background: #F2F3F5;
	-webkit-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out;
}
.user-dash__p-info .c__a__author .form-group textarea{
	width: 100%;
	height: 140px;
	padding: 16px 20px;
	border: 1px solid #eee;
	background: #F2F3F5;
	-webkit-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out;
}
.user-dash__p-info .c__a__author .form-group textarea:focus{
	box-shadow: none;
	border-color: #261809;
}
.user-dash__p-info .c__a__author .form-group button{
	width: 100%;
	background: #261809;
	color: #fff;
}
.c_autoh_social ul li a i {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 42px;
	height: 42px;
	background: #084f99;
	color: #fff;
	font-size: 14px;
	border-radius: 2px;
}
.c_autoh_social ul li a i.fa-twitter {
	background: #1da1f2;
}
.c_autoh_social ul li a i.fa-linkedin {
	background: #0e76a8;
}
.c_autoh_social ul li a i.fa-instagram {
	background: radial-gradient(circle farthest-corner at 32% 106%,#ffe17d 0,#ffcd69 10%,#fa9137 28%,#eb4141 42%,transparent 82%),linear-gradient(135deg,#234bd7 12%,#c33cbe 58%);
}
.c_autoh_social ul li {
	display: inline-block;
	margin: 3px 2px;
}
.c_autoh_social ul li a i.fa-pinterest-p {
	background: #e03c3c;
}
.c_autoh_social ul li a i.fa-tumblr {
	background: #009688;
}
.c_autoh_social ul li a i.fa-google-plus-g {
	background: #ea2626;
}
.c_autoh_social ul li a i.fa-dribbble {
	background: #e43c7d;
}
.c_autoh_social ul li a i.fab.fa-skype {
	background: #35b4ff;
}
.user-dash__p_content_full h2 {
	margin-bottom: 10px;
	font-weight: 700;
	font-size: 22px;
}
.user-dash__p_content_full p {
	line-height: 30px;
	margin-bottom: 15px;
}
.user-dash__p_content_full ul{
	margin-bottom: 15px;
}
.user-dash__p_content_full ul li {
	font-weight: 500;
	line-height: 30px;
	padding: 2px 0px;
	padding-left: 14px;
	position: relative;
}
.user-dash__p_content_full ul li::after {
	content: "";
	clear: both;
	display: block;
	position: absolute;
	width: 7px;
	height: 7px;
	background: #333;
	top: 13px;
	left: 0;
	border-radius: 50%;
}
.followers-item-single {
	background: #fff;
}
.followers-item-single .content h3 {
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 5px;
	font-weight: 600;
}
.followers-item-single .content h3 a{
	color: #59310d;
}
.followers-item-single:hover .content h3 a{
	color: #261809;
}
/*
 * #-Mobile Menu
*/
.off_canvars_overlay {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  cursor: crosshair;
  background: #232323;
  top: 0;
}
.off_canvars_overlay.active {
  opacity: 0.5;
  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: 9991;
	top: 0;
	height: 100vh;
	transition: .5s;
	left: 0;
	margin-left: -300px;
	padding: 20px 0px 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_search_box {
  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: 10px;
}
.offcanvas_main_menu li a {
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
  display: block;
  padding: 0px 10px;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #ededed;
  color: #333;
}
.offcanvas_main_menu li a:hover {
  color: #261809;
}
.offcanvas_main_menu li ul.sub-menu {
  padding-left: 20px;
}
.offcanvas_footer {
  margin-top: 50px;
  padding-bottom: 50px;
  text-align: center;
}
.offcanvas_footer span a {
  font-size: 14px;
}
.offcanvas_footer span a:hover {
  color: #261809;
}
.slinky-theme-default a:not(.back) {
  padding: 10px 0;
  text-transform: capitalize;
  font-size: 16px;
  font-weight: 400;
}
.slinky-theme-default a:not(.back):hover {
  background: inherit;
  color: #261809;
}
.canvas_close {
  position: absolute;
  top: 10px;
  right: 13px;
}
.canvas_close a {
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 500;
  width: 32px;
  height: 32px;
  display: block;
  text-align: center;
  line-height: 32px;
  border: 1px solid #ededed;
  border-radius: 50%;
  color: #333;
}
.canvas_close a:hover {
  background: #261809;
  border-color: #261809;
  color: #fff;
}
.mobile-logo {
	padding-left: 20px;
	margin-bottom: 20px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .canvas_open {
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  .canvas_open {
    right: 20px;
    top: 27px;
    display: block;
    width: 36px;
  }
}
.canvas_open a {
  font-size: 27px;
  display: block;
  line-height: 37px;
  text-align: center;
  color: #232323;
}
@media only screen and (max-width: 767px) {
  .canvas_open a {
    width: 36px;
    height: 34px;
    line-height: 33px;
    font-size: 27px;
  }
}
.canvas_open a:hover {
  color: #fe3737;
  border-color: #fe3737;
}
.mobile-logo h2 {
	font-size: 30px;
	letter-spacing: 2px;
	font-weight: 900;
}
.mobile-logo h2 a{
	color: #333;
}
/*
 * Sticky
*/
.header.sticky {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 99;
	-webkit-animation: sticky 1s;
	-moz-animation: sticky 1s;
	-o-animation: sticky 1s;
	animation: sticky 1s;
	-webkit-box-shadow: 2px 4px 8px rgba(51, 51, 51, 0.25);
	-moz-box-shadow: 2px 4px 8px rgba(51, 51, 51, 0.25);
	box-shadow: 2px 4px 8px rgba(140, 129, 129, 0.25);
	background: #fff;
}
@-webkit-keyframes sticky {
  	0% {
    	-webkit-transform: translateY(-100%);
    	transform: translateY(-100%);
    }
  	100% {
    	-webkit-transform: translateY(0%);
    	transform: translateY(0%);
	}
}
@keyframes sticky {
  	0% {
    	-webkit-transform: translateY(-100%);
    	transform: translateY(-100%);
	}
  	100% {
    	-webkit-transform: translateY(0%);
    	transform: translateY(0%);
	}
}
.mobile-menu-login {
	margin-top: 20px;
	padding-left: 20px;
	box-sizing: border-box;
}
.mobile-menu-login a {
	color: #59310d;
	font-weight: 600;
	text-transform: capitalize;
	font-size: 18px;
}
.mobile-menu-login a:hover{
	color: #261809;
}

.text-glow {
    color: #fff;
    font-weight: 700;
    font-size: 2.5rem;
    text-shadow: 0 0 8px #d4af37, 0 0 16px #d4af37;
}

.icon-glow {
    color: #d4af37;
    filter: drop-shadow(0 0 8px #d4af37);
    transition: transform 0.3s ease;
}
.icon-glow:hover {
    transform: scale(1.15);
}

.info-card-glow {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(6px);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.info-card-glow:hover {
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.4);
    transform: translateY(-5px);
}
