/* Home page 04 css start */
/* Section title */
.section-title-4 h2 {
	font-size: 48px;
	color: var(--km-heading);
	line-height: 1.2;
	margin-bottom: 30px;
}

.section-subtitle-4 {
	font-size: 15px;
	font-weight: 600;
	color: var(--km-secondary);
	line-height: 25px;
	margin-bottom: 20px;
	text-transform: uppercase;
}

.section-title-4 p {
	color: var(--km-secondary);
	font-size: 16px;
	line-height: 28px;
}

.section-mb {
	margin-bottom: 18px;
}

.blog-mb {
	margin-bottom: 15px;
}

/* Section bg color */
.section-bg {
	background: #f6f9fe;
}

.footer-bg {
	background: linear-gradient(#ECF1FF 0%, rgba(252, 253, 255, 0.03) 100%);
}

.long-bg {
	background-position: bottom;
	background-size: inherit;
	background-repeat: no-repeat;
	padding-bottom: 150px;
}

.br-10 {
	border-radius: 10px;
}

/* Home 4 Button Css */
.gradint-btn {
	font-size: 14px;
	font-weight: 500;
	color: var(--km-white);
	background: linear-gradient(to right, #ffc339 0%, #f23367 100%);
	position: relative;
	display: inline-block;
	height: 50px;
	padding: 0px 30px;
	border-radius: 3px;
	z-index: 1;
	transition: all 0.2s linear;
	line-height: 50px;
}

.gradint-btn::before {
	content: "";
	top: 1px;
	bottom: 1px;
	left: 1px;
	right: 1px;
	background: #F3FBFE;
	position: absolute;
	border-radius: 3px;
	z-index: -1;
	transition: opacity 0.2s linear;
	opacity: 0;
}

.gradint-btn:hover::before {
	opacity: 1;
}

.gradint-btn:hover {
	color: var(--km-heading);
}

.btn-style-4 {
	position: relative;
	font-size: 14px;
	text-transform: uppercase;
	font-weight: 500;
	height: 60px;
	display: inline-block;
	border: 1px solid #3157D4;
	line-height: 60px;
	padding: 0px 35px;
	border-radius: 3px;
	z-index: 99;
}

.btn-style-4::before {
	background: #3157D4;
	content: "";
	position: absolute;
	left: auto;
	right: 0;
	width: 0px;
	height: 100%;
	top: 0px;
	bottom: 0px;
	border: 0;
	transition: all 0.3s ease-in-out;
	z-index: -1;
}

.btn-style-4:hover::before {
	left: 0px;
	right: auto;
	width: 100%;
}

.btn-style-4:hover {
	color: var(--km-white);
}

.btn-style-4 i {
	vertical-align: middle;
	margin-left: 5px;
	transform: rotateY(180deg);
}

.hero-btn {
	position: relative;
	z-index: 99;
}

.hero-btn:hover {
	color: var(--km-white);
}

/* Animation all css */
@keyframes hero-thumb-animation {
	0% {
		-webkit-transform: translateX(-50px);
		-moz-transform: translateX(-50px);
		-ms-transform: translateX(-50px);
		transform: translateX(-50px);
	}

	100% {
		-webkit-transform: translateX(0px);
		-moz-transform: translateX(0px);
		-ms-transform: translateX(0px);
		transform: translateX(0px);
	}
}

.icon-animated-hidden {
	transform: translateX(120px);
	opacity: 0;
}

@keyframes hero-circle-1 {
	0% {
		-webkit-transform: rotate(0deg);
		-moz-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	100% {
		-webkit-transform: rotate(360deg);
		-moz-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@keyframes message-box {
	0% {
		transform: translateY(0);
	}

	25% {
		transform: translateY(-10px);
	}

	50% {
		transform: translateY(0);
	}

	75% {
		transform: translateY(10px);
	}

	100% {
		transform: translateY(0);
	}
}

@keyframes hero-thumb-sm-animation {
	0% {
		-webkit-transform: translateY(-20px) translateX(50px);
		-moz-transform: translateY(-20px) translateX(50px);
		-ms-transform: translateY(-20px) translateX(50px);
		transform: translateY(-20px) translateX(50px);
	}

	100% {
		-webkit-transform: translateY(-20px) translateX(0px);
		-moz-transform: translateY(-20px) translateX(0px);
		-ms-transform: translateY(-20px) translateX(0px);
		transform: translateY(-20px) translateX(0px);
	}
}

@keyframes source-sm-animation {
	0% {
		-webkit-transform: translateY(-10px) translateX(18px);
		-moz-transform: translateY(-10px) translateX(18px);
		-ms-transform: translateY(-10px) translateX(18px);
		transform: translateY(-10px) translateX(18px);
	}

	100% {
		-webkit-transform: translateY(-10px) translateX(0px);
		-moz-transform: translateY(-10px) translateX(0px);
		-ms-transform: translateY(-10px) translateX(0px);
		transform: translateY(-10px) translateX(0px);
	}
}

@keyframes rise {
	0% {
		bottom: -100px;
		transform: translateX(0);
	}

	50% {
		transform: translate(100px);
	}

	100% {
		bottom: 1080px;
		transform: translateX(-200px);
	}
}

/* header css start */
.transparent-header-4 {
	position: absolute;
	left: 0;
	right: 0;
	z-index: 999;
	border-bottom: 1px solid #E7EBF2;
}

.transparent-header-4 .header-space {
	padding: 0px 65px;
}

.header-logo-4 img {
	max-width: 150px;
}

.main-menu-4 ul li a {
	color: var(--km-heading);
}

.main-menu-4 ul li {
	margin-right: 65px;
}

.header-right-info-4 {
	margin-left: 40px;
}

.header-search-4 a i {
	font-size: 18px;
	display: inline-block;
	vertical-align: middle;
	color: var(--km-heading);
}

.header-btn-4 {
	margin-left: 40px;
	position: relative;
}

.header-info-bar {
	cursor: pointer;
	margin-left: 40px;
	display: inline-block;
	max-width: 25px;
	overflow: hidden;
	transition: .3s;
}

.header-info-bar span {
	background: var(--km-black);
	width: 25px;
	height: 2px;
	margin-top: 5px;
	display: block;
	border-radius: 5px;
}

.header-info-bar span:nth-last-child(2) {
	width: 25px;
	text-align: right;
	margin-left: 10px;
	transition: .3s;
}

.header-info-bar:hover span:nth-last-child(2) {
	width: 25px;
	margin-left: 0px;
}

/* header css end */

/* header info css start */
.info-close-icon button {
	border: none;
	background: none;
	font-size: 20px;
}

.info-close-icon {
	text-align: right;
	margin-bottom: 20px;
}

.info-area-inner-4 {
	position: fixed;
	right: -370px;
	top: 0;
	padding: 30px;
	width: 330px;
	height: 100%;
	background: #fff none repeat scroll 0 0;
	overflow-y: scroll;
	-webkit-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
	-moz-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
	transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
	-webkit-box-shadow: -5px 0 20px -5px rgba(0, 0, 0, 0.5);
	-moz-box-shadow: -5px 0 20px -5px rgba(0, 0, 0, 0.5);
	box-shadow: -20px 0px 20px rgba(40, 59, 106, 0.08);
	z-index: 99999;
}

.info-area.info-opened .info-area-inner-4 {
	right: -20px;
}

.body-overlay {
	background: #091334;
	opacity: 0;
	height: 100%;
	width: 100%;
	position: fixed;
	top: 0;
	z-index: 999;
	left: 0;
	opacity: 0;
	visibility: hidden;
}

.body-overlay.opened {
	opacity: 0.6;
	visibility: visible;
	display: block;
}

.info-content p {
	color: var(--km-secondary);
	font-size: 16px;
	line-height: 28px;
	text-align: center;
	margin-bottom: 50px;
}

.kimox-info-instagram ul li {
	list-style: none;
	display: inline-block;
	margin-bottom: 5px;
	padding-left: 2px;
}

.info-btn-4 {
	height: 30px;
	border: 1px solid #3157D4;
	display: inline-block;
	line-height: 30px;
	padding: 0px 19px;
	font-size: 14px;
	font-weight: 500;
	transition: .3s;
}

.info-btn-4:hover {
	color: var(--km-white);
	background: #3157D4;
}

.kimox-contact-4 h3 {
	font-size: 20px;
	font-weight: 500;
	line-height: 28px;
	margin-bottom: 20px;
}

.kimox-contact-4 ul li {
	font-size: 16px;
	color: var(--km-secondary);
	margin-bottom: 10px;
	list-style: none;
	line-height: 28px;
}

.info-social-4 ul li {
	list-style: none;
	display: inline-block;
	padding: 0px 5px;
}

.kimox-contact-4 ul li:last-child {
	margin-bottom: 0;
}

.info-social-4 ul li a,
.info-social-4 a {
	width: 35px;
	height: 35px;
	color: #95989B;
	border: 1px solid #D4D8DE;
	line-height: 35px;
	display: block;
	border-radius: 50%;
	transition: .3s;
}

.info-social-4 ul li a:hover,
.info-social-4 a:hover {
	color: var(--km-white);
	background: linear-gradient(to right, #f23367 0%, #ffc339 100%);
	border: transparent;
}

.side-menu-4 ul li a {
	color: #242629 !important;
	padding: 10px 0px !important;
	font-size: 15px !important;
	font-weight: 500;
	border-top: 1px solid #E7EBF2 !important;
}

.side-menu-4 .mean-nav ul li a.mean-expand {
	background: none !important;
}

.side-menu-4 .mean-nav ul li a.mean-expand {
	border-left: 1px solid #E7EBF2 !important;
}

/* header info css end */

/* Hero area css start */
.hero-area {
	position: relative;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

.kimox-hero-height {
	min-height: 880px;
}

.hero-content h2 {
	font-size: 100px;
	line-height: 110px;
	font-weight: 700;
	background: linear-gradient(to right, #f23367 0%, #ffc339 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	margin-bottom: 35px;
}

.hero-content p {
	font-size: 20px;
	line-height: 32px;
	font-weight: 400;
	color: #585858;
	margin-bottom: 40px;
}

.here-right-bigthumb img {
	max-width: inherit !important;
}

.hero-right-4 {
	position: relative;
}

/* hero shape all css */

.hero-right-thumb {
	position: relative;
}

.hero-right-shape-1 {
	position: absolute;
	top: 23%;
	right: -42%;
	animation-duration: 4s;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
	animation-name: message-box;
}

.hero-right-shape-2 {
	position: absolute;
	bottom: -1%;
	left: -8%;
	animation-duration: 2.5s;
	-webkit-animation: hero-thumb-animation 4s linear infinite alternate;
	-moz-animation: hero-thumb-animation 4s linear infinite alternate;
	-o-animation: hero-thumb-animation 4s linear infinite alternate;
	animation: hero-thumb-animation 4s linear infinite alternate;
}

.hero-right-shape-3 {
	position: absolute;
	top: 27%;
	left: -9%;
	animation-duration: 4s;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
	animation-name: message-box;
}

.hero-shape-1 {
	position: absolute;
	top: 25%;
	left: 0;
	animation-duration: 5.5s;
	-webkit-animation: hero-thumb-animation 8s linear infinite alternate;
	-moz-animation: hero-thumb-animation 8s linear infinite alternate;
	-o-animation: hero-thumb-animation 8s linear infinite alternate;
	animation: hero-thumb-animation 8s linear infinite alternate;
}

.hero-shape-2 {
	position: absolute;
	bottom: 27%;
	left: 10%;
	-webkit-animation: hero-circle-1 6s linear 0s infinite alternate;
	-moz-animation: hero-circle-1 6s linear 0s infinite alternate;
	-o-animation: hero-circle-1 6s linear 0s infinite alternate;
	animation: hero-circle-1 6s linear 0s infinite alternate;
}

.hero-shape-3 {
	position: absolute;
	left: 39%;
	top: 14%;
	-webkit-animation: hero-circle-1 6s linear 0s infinite alternate;
	-moz-animation: hero-circle-1 6s linear 0s infinite alternate;
	-o-animation: hero-circle-1 6s linear 0s infinite alternate;
	animation: hero-circle-1 6s linear 0s infinite alternate;
}

.hero-shape-4 {
	position: absolute;
	bottom: 9%;
	left: 48%;
	-webkit-animation: hero-circle-1 6s linear 0s infinite alternate;
	-moz-animation: hero-circle-1 6s linear 0s infinite alternate;
	-o-animation: hero-circle-1 6s linear 0s infinite alternate;
	animation: hero-circle-1 6s linear 0s infinite alternate;
}

.hero-shape-5 {
	position: absolute;
	left: 16%;
	bottom: 28%;
}

.hero-shape-6 {
	position: absolute;
	right: 0;
	top: 15%;
}

/* Hero area css end */

/* Brand area css start*/
.brand-warpper img {
	max-width: 100%;
	-webkit-filter: grayscale(100%);
}

.brand-warpper img:hover {
	-webkit-filter: grayscale(0%);
}

/* Brand area css end*/

/* About area css start */
.about-thumb {
	position: relative;
	z-index: 1;
}

.about-bigthumb {
	position: relative;
	z-index: -1;
	-webkit-animation: hero-thumb-sm-animation 4s linear infinite alternate;
	-moz-animation: hero-thumb-sm-animation 4s linear infinite alternate;
	-o-animation: hero-thumb-sm-animation 4s linear infinite alternate;
	animation: hero-thumb-sm-animation 4s linear infinite alternate;
}

.about-shape-1 {
	position: absolute;
	top: 55px;
	left: -70px;
	box-shadow: 0px 10px 40px rgba(23, 42, 106, 0.15);

}

.about-shape-2 {
	position: absolute;
	bottom: -15%;
	left: -8%;
	z-index: -1;
}

.about-user {
	position: absolute;
	bottom: -40px;
	right: -60px;
	background: var(--km-white);
	width: 200px;
	height: 282px;
	display: inline-block;
	text-align: center;
	border-radius: 10px;
	box-shadow: -10px 20px 70px rgba(17, 40, 114, 0.12);
	padding: 35px 0px 30px 0px;
	animation-duration: 4s;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
	animation-name: message-box;
}

.about-counter-4 h2 {
	font-size: 48px;
	font-weight: 900;
	background: linear-gradient(to right, #f23367 0%, #ffc339 100%);
	background-clip: border-box;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	line-height: 58px;
	letter-spacing: -2px;
}

.user-text {
	font-size: 24px;
	color: var(--km-heading);
	line-height: 30px;
	font-weight: 500;
	margin-bottom: 30px;
	display: block;
}

/* About area css end */

/* Service area css start */
.service-items {
	background: var(--km-white);
	padding: 35px 40px 35px 40px;
	border-radius: 10px;
	box-shadow: 0px 30px 99px rgba(28, 50, 122, 0.07);
}

.service-content h3 {
	font-size: 24px;
	line-height: 34px;
	font-weight: 600;
	margin-bottom: 25px;
}

.service-btn {
	color: var(--km-secondary);
	font-size: 14px;
	font-weight: 500;
}

.service-btn:hover {
	color: #3157D4;
}

.service-btn:hover i {
	padding-left: 3px;
}

.service-content p {
	color: var(--km-secondary);
	font-size: 16px;
	line-height: 28px;
	margin-bottom: 25px;
}

.service-btn i {
	vertical-align: middle;
	margin-left: 4px;
	font-size: 18px;
	transition: .3s;
}

.service-icon-1 img {
	filter: drop-shadow(0px 20px 20px rgba(49, 87, 212, 0.1));
	margin-bottom: 40px;
}

.service-icon-1 span {
	width: 78px;
	height: 78px;
	display: inline-block;
	line-height: 78px;
	border-radius: 50%;
	font-size: 30px;
	color: var(--km-white);
	background: linear-gradient(#f1f4ff 0%, #3157d4 100%);
	filter: drop-shadow(0px 20px 20px rgba(49, 87, 212, 0.1));
	margin-bottom: 40px;
}

.service-icon-2 span {
	width: 78px;
	height: 78px;
	display: inline-block;
	line-height: 78px;
	border-radius: 50%;
	font-size: 30px;
	color: var(--km-white);
	background: linear-gradient(#ffe8b4 0%, #f23367 100%);
	filter: drop-shadow(0px 20px 20px rgba(242, 51, 103, 0.1));
	margin-bottom: 40px;
}

.service-icon-3 span {
	width: 78px;
	height: 78px;
	display: inline-block;
	line-height: 78px;
	border-radius: 50%;
	font-size: 30px;
	color: var(--km-white);
	background: linear-gradient(#b4fffa 0%, #33a6f2 100%);
	filter: drop-shadow(0px 20px 20px rgba(71, 180, 243, 0.1));
	margin-bottom: 40px;
}

.service-icon-4 span {
	width: 78px;
	height: 78px;
	display: inline-block;
	line-height: 78px;
	border-radius: 50%;
	font-size: 30px;
	color: var(--km-white);
	background: linear-gradient(#cac6fb 0%, #913ce6 100%);
	filter: drop-shadow(0px 20px 20px rgba(127, 28, 225, 0.1));
	margin-bottom: 40px;
}

.service-icon-5 span {
	width: 78px;
	height: 78px;
	display: inline-block;
	line-height: 78px;
	border-radius: 50%;
	font-size: 30px;
	color: var(--km-white);
	background: linear-gradient(#a5ffec 0%, #19c966 100%);
	filter: drop-shadow(0px 20px 20px rgba(51, 242, 108, 0.1));
	margin-bottom: 40px;
}

.service-icon-6 span {
	width: 78px;
	height: 78px;
	display: inline-block;
	line-height: 78px;
	border-radius: 50%;
	font-size: 30px;
	color: var(--km-white);
	background: linear-gradient(#fca9bc 0%, #eb1f4f 100%);
	filter: drop-shadow(0px 20px 20px rgba(242, 51, 83, 0.1));
	margin-bottom: 40px;
}

.service-icon-2 img {
	filter: drop-shadow(0px 20px 20px rgba(242, 51, 103, 0.1));
	margin-bottom: 40px;
}

.service-icon-3 img {
	filter: drop-shadow(0px 20px 20px rgba(71, 180, 243, 0.1));
	margin-bottom: 40px;
}

.service-icon-4 img {
	filter: drop-shadow(0px 20px 20px rgba(127, 28, 225, 0.1));
	margin-bottom: 40px;
}

.service-icon-5 img {
	filter: drop-shadow(0px 20px 20px rgba(51, 242, 108, 0.1));
	margin-bottom: 40px;
}

.service-icon-6 img {
	filter: drop-shadow(0px 20px 20px rgba(242, 51, 83, 0.1));
	margin-bottom: 40px;
}

.service-items {
	transition: all 1.9s cubic-bezier(0, 0, 0.2, 1);
}

/* Service area css end */

/* sources area css start */
.sources-sticker {
	margin-bottom: 15px;
}

.sources-thumb-left {
	margin-right: 15px;
}

.sources-thumb-right {
	padding: 50px 0px;
}

.sources-review img {
	border: 5px solid var(--km-white);
	border-radius: 50%;
	filter: drop-shadow(0px 5px 10px rgba(26, 48, 119, 0.07));
}

.sources-review ul li {
	display: inline-block;
	list-style: none;
	margin-right: -18px;
}

.sources-review ul li i {
	width: 50px;
	height: 50px;
	background: #c5d1f6;
	line-height: 39px;
	text-align: center;
	color: var(--km-heading);
	font-size: 14px;
	border-radius: 50%;
	cursor: pointer;
	border: 5px solid var(--km-white);
	filter: drop-shadow(0px 5px 10px rgba(26, 48, 119, 0.07));
}

.sources-review-content span {
	color: var(--km-heading);
	font-size: 16px;
	font-weight: 700;
}

.sources-review {
	margin-right: 35px;
}

.sources-review-content {
	max-width: 245px;
}

.sources-bottom-thumb:hover img {
	transform: scale(1.1);
}

.sources-bottom-thumb img {
	-webkit-transition: all 0.3s linear 0s;
	-moz-transition: all 0.3s linear 0s;
	-ms-transition: all 0.3s linear 0s;
	-o-transition: all 0.3s linear 0s;
	transition: all 0.3s linear 0s;
}

.sources-thumb-right img {
	-webkit-transition: all 0.3s linear 0s;
	-moz-transition: all 0.3s linear 0s;
	-ms-transition: all 0.3s linear 0s;
	-o-transition: all 0.3s linear 0s;
	transition: all 0.3s linear 0s;
}

.sources-thumb-right:hover img {
	transform: scale(1.1);
}

.sources-sticker {
	position: relative;
}

.sources-sticker-4 {
	position: absolute;
	top: 22px;
	right: 18px;
}

.sources-sticker-text {
	position: absolute;
	top: 26px;
	left: 20px;
}

.sources-sticker-text h3 {
	color: #ffff;
	font-size: 24px;
	line-height: 26px;
	font-weight: 600;
	margin-top: 30px;
}

.sources-sticker-text span {
	color: var(--km-white);
	font-size: 15px;
	line-height: 25px;
}

.sources-sticker-animation {
	animation-duration: 3s;
	-webkit-animation: source-sm-animation 3s linear infinite alternate;
	-moz-animation: source-sm-animation 3s linear infinite alternate;
	-o-animation: source-sm-animation 3s linear infinite alternate;
	animation: source-sm-animation 3s linear infinite alternate;
}

/* sources area css end */

/* Feature area css start */
.feature-area {
	padding-top: 112px;
}

.feature-info ul li {
	color: var(--km-heading);
	font-size: 16px;
	font-weight: 500;
	list-style: none;
	margin-bottom: 20px;
}

.feature-info ul li:nth-child(2) {
	margin-bottom: 0;
}

.feature-info li i {
	color: #F23367;
	font-size: 15px;
	vertical-align: middle;
	margin-right: 10px;
}

.feature-thumb {
	position: relative;
	z-index: 1;
}

.feature-phone-bg img {
	position: absolute;
	top: 55px;
	z-index: -1;
}

.feature-mobile {
	animation-duration: 4s;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
	animation-name: message-box
}

/* Feature area css end */

/* Counter area css start */
.counter-area {
	position: relative;
	margin-top: -145px;
	z-index: 99;
}

.counter-bg {
	background: var(--km-white);
	border-radius: 10px;
	box-shadow: 0px 30px 80px rgba(30, 48, 109, 0.1);
	padding: 60px 70px;
}

.counter-item h2 {
	font-size: 48px;
	line-height: 58px;
	margin-bottom: 10px;
}

.counter-gry-1 {
	background: linear-gradient(to right, #f23367 0%, #ffc339 100%);
	background-clip: border-box;
	background-clip: border-box;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.counter-gry-2 {
	background: linear-gradient(#3157d4 0%, #7494ff 100%);
	background-clip: border-box;
	background-clip: border-box;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.counter-gry-3 {
	background: linear-gradient(#2ade96 0%, #39b0ff 100%);
	background-clip: border-box;
	background-clip: border-box;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.counter-gry-4 {
	background: linear-gradient(#f5218b 0%, #a339ff 100%);
	background-clip: border-box;
	background-clip: border-box;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.counter-item p {
	color: var(--km-heading);
	font-size: 16px;
	font-weight: 500;
	line-height: 25px;
	text-transform: capitalize;
}

/* Counter area css end */

/* Testimonials area css start */
.testimonials-area {
	padding-bottom: 112px;
}

.testimonials-quote span {
	width: 100px;
	height: 100px;
	display: inline-block;
	line-height: 100px;
	background: linear-gradient(#f23367 0%, #ffc339 100%);
	box-shadow: 0px 20px 30px rgba(242, 51, 103, 0.1);
	color: var(--km-white);
	font-size: 50px;
	border-radius: 10px;
	position: absolute;
	top: -30px;
	left: 43.4%;
}

.testimonials-content {
	position: relative;
	background: var(--km-white);
	box-shadow: 0px 3px 10px rgba(33, 49, 104, 0.05);
	border-radius: 10px;
	border: 1px solid #e7ebf2;
	padding: 130px 66px 60px 66px;
	margin-bottom: 35px;
	margin-top: 35px;
}

.testimonials-content p {
	color: var(--km-secondary);
	font-weight: 500;
	font-size: 20px;
	line-height: 32px;
	font-style: italic;
}

.testimonials-author-thumb {
	margin-right: 15px;
}

.testimonials-author-text h4 {
	color: var(--km-heading);
	font-size: 20px;
	line-height: 32px;
	font-weight: 600;
	margin-bottom: 0;
}

.testimonials-author-text span {
	color: var(--km-secondary);
	font-size: 15px;
}

.testimonials-author {
	cursor: pointer;
}

.all-author {
	padding-bottom: 41px;
	padding-left: 20px;
}

.testimonials-author-text {
	position: relative;
}

.testimonials-author-text p {
	position: absolute;
	left: 25px;
	background: var(--km-white);
	width: 30px;
	height: 30px;
	bottom: -48px;
	line-height: 30px;
	text-align: center;
	color: var(--km-heading);
	font-size: 20px;
	font-weight: 600;
}

.swiper-slide-thumb-active .testimonials-author-text p {
	color: #F23367;
}

.testimonials-thumb-line::before {
	position: absolute;
	content: '';
	left: 0;
	background: #E7EBF2;
	width: 100%;
	height: 1px;
	bottom: 6px;
}

.test-mb {
	margin-bottom: 42px !important;
}

/* Testimonials area css end */

/* Portfolio area css start */
.portfolios-space {
	margin: 0 15px;
}

.all-portfolio {
	text-align: right;
	padding-top: 20px;
}

.all-portfolio a {
	position: relative;
	color: #3157D4;
	line-height: 25px;
	font-size: 14px;
	text-transform: uppercase;
	font-weight: 500;
}

.all-portfolio a i::before {
	vertical-align: middle;
	margin-left: 7px;
	font-size: 18px;
	transition: .3s;
}

.all-portfolio a::before {
	content: "";
	width: 0;
	height: 1px;
	background: #3157D4;
	position: absolute;
	left: auto;
	right: 0;
	bottom: -4px;
	opacity: 0;
	transition: all 0.3s linear
}

.all-portfolio a:hover::before {
	opacity: 1;
	width: 100%;
	left: 0;
	right: auto;
	transition: all 0.2s linear;
}

.portfolios-img {
	margin-bottom: 20px;
}

.portfolios-img img {
	width: 100%;
	-webkit-transition: all 0.3s linear 0s;
	-moz-transition: all 0.3s linear 0s;
	-ms-transition: all 0.3s linear 0s;
	-o-transition: all 0.3s linear 0s;
	transition: all 0.3s linear 0s;
}

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

.portfolios-text span a {
	color: #F23367;
	font-size: 15px;
	line-height: 25px;
	font-weight: 400;
	display: block;
}

.portfolios-text h3 {
	color: var(--km-heading);
	font-size: 22px;
	line-height: 32px;
	margin-bottom: 2px;
}

.portfolios-text p {
	color: var(--km-secondary);
	font-size: 15px;
	line-height: 25px;
}

.portfolio-area .swiper-pagination-bullet {
	width: 30px !important;
	height: 8px !important;
	display: block;
	background: #d1d7e2;
	border: none !important;
	border-radius: 5px !important;
}

.portfolio-area .swiper-pagination-bullet.swiper-pagination-bullet-active {
	background: #3157D4;
}

.portfolio-area .swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal>.swiper-pagination-bullets {
	bottom: 14px !important;
}

/* Portfolio area css end */

/* Blog area css start */
.blog-items {
	position: relative;
	overflow: hidden;
	border-radius: 5px;
}

.blog-img img {
	position: relative;
	-webkit-transition: all 0.3s linear 0s;
	-moz-transition: all 0.3s linear 0s;
	-ms-transition: all 0.3s linear 0s;
	-o-transition: all 0.3s linear 0s;
	transition: all 0.3s linear 0s;
	width: 100%;
	border-radius: 5px;
}

.blog-items:hover .blog-img img {
	transform: scale(1.1);
	border-radius: 5px;
}

.blog-img::before {
	position: absolute;
	content: '';
	left: 0;
	top: 0;
	background: #0c1a47;
	opacity: 0.5;
	width: 100%;
	height: 100%;
	z-index: 9;
	border-radius: 5px;
}

.blog-content-4 {
	position: absolute;
	top: 33px;
	left: 30px;
	z-index: 99;
}

.blog-meta-4 ul {
	margin: 0;
	padding: 0;
}

.blog-meta-4 ul li {
	list-style: none;
	display: inline-block;
	margin-right: 15px;
	margin-bottom: 20px;
}

.blog-meta-4 ul li a {
	color: var(--km-white);
	font-size: 14px;
	line-height: 28px;
	font-weight: 500;
}

.blog-meta-4 ul li a i {
	margin-right: 10px;
	font-size: 18px;
}

.blog-content-4 h3 {
	color: var(--km-white);
	font-size: 22px;
	line-height: 32px;
	font-weight: 700;
}

.blog-btn-4 {
	color: var(--km-white);
	text-transform: uppercase;
	font-size: 12px;
	font-weight: 500;
}

.blog-btn-4:hover {
	color: var(--km-white);
}

.blog-btn-4 i {
	font-size: 11px;
	margin-left: 4px;
	transition: .3s;
}

.blog-btn-4:hover i {
	padding-left: 3px;
}

/* Blog area css end */

/* Footer area css start */
.footer-bg {
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

.footer-text p {
	color: var(--km-secondary);
	font-size: 16px;
	line-height: 28px;
	font-weight: 400;
}

.footer-subscribe {
	position: relative;
}

.footer-subscribe input {
	width: 100%;
	border: none;
	height: 60px;
	padding: 0px 20px;
	background: var(--km-white);
	border-radius: 3px;
	box-shadow: 0px 10px 20px rgba(53, 82, 177, 0.13);
}

.footer-subscribe-btn {
	font-size: 14px;
	font-weight: 600;
	color: var(--km-white);
	cursor: pointer;
	height: 50px;
	text-align: center;
	background-size: 300% 100%;
	-moz-transition: all .4s ease-in-out;
	-o-transition: all .4s ease-in-out;
	-webkit-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out;
	border: none;
	padding: 0px 33px;
	border-radius: 3px;
	position: absolute;
	top: 5px;
	right: 5px;
	text-transform: uppercase;
	font-weight: 500;
}

.footer-subscribe-btn:hover {
	background-position: 100% 0;
	-moz-transition: all .4s ease-in-out;
	-o-transition: all .4s ease-in-out;
	-webkit-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out;
}

.footer-subscribe-btn:focus {
	outline: none;
}

.footer-subscribe-btn.gray-2 {
	background-image: linear-gradient(to right, #f23367, #ffc339, #7494ff, #3157d4);
}

.footer-subscribe input::-moz-placeholder {
	font-size: 14px;
	color: var(--km-secondary);
}

.footer-subscribe input::placeholder {
	font-size: 14px;
	color: var(--km-secondary);
}

.footer-title {
	font-size: 24px;
	color: var(--km-heading);
	font-weight: 600;
	margin-bottom: 40px;
}

.footer-menu-4 ul li a {
	color: var(--km-secondary);
	font-size: 16px;
	font-weight: 400;
}

.footer-menu-4 ul li a:hover {
	padding-left: 3px;
}

.footer-menu-4 ul li {
	margin-bottom: 17px;
}

.footer-categories-4 ul li {
	margin-bottom: 17px;
}

.footer-categories-4 ul li a {
	color: var(--km-secondary);
	font-size: 16px;
	font-weight: 400;
}

.footer-categories-4 ul li a:hover {
	padding-left: 3px;
}

.footer-social-4 ul li {
	display: inline-block;
	margin-right: 6px;
}

.footer-social-4 ul li a {
	height: 40px;
	width: 40px;
	background: var(--km-white);
	display: block;
	text-align: center;
	line-height: 40px;
	border-radius: 50%;
	color: #95989b;
	font-size: 15px;
	filter: drop-shadow(0px 6px 15px rgba(53, 70, 128, 0.1));
}

.footer-social-4 ul li a:hover {
	background: #355CDE;
	color: var(--km-white);
}

.footer-info-icon span {
	font-size: 50px;
	background: linear-gradient(to right, #f23367 0%, #ffc339 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.footer-info-icon {
	margin-right: 20px;
}

.footer-info-text {
	padding-top: 10px;
}

.footer-info-text span {
	margin-bottom: 4px;
	display: block;
	font-size: 15px;
	font-weight: 400;
}

.footer-info-text h3 {
	color: var(--km-heading);
	font-size: 24px;
	line-height: 32px;
}

.footer-menu-4 ul li:last-child {
	margin-bottom: 0;
}

.footer-categories-4 ul li:last-child {
	margin-bottom: 0;
}

.footer-link-space,
.custom-footer-4-2 {
	padding-left: 70px;
}

/* Footer area css end */

/* Footer Copyright area css end */
.footer-copyright {
	border: 1px solid #e7ebf2;
	padding: 30px 0px;
}

.copy-righttext p {
	color: var(--km-heading);
	font-size: 16px;
	line-height: 28px;
}

.copy-right-payment {
	text-align: right;
}

.copy-right-payment ul li {
	display: inline-block;
	margin-left: 20px;
}

/* Footer bubble css start*/
.bubble {
	position: fixed;
	bottom: -100px;
	border-radius: 50%;
	opacity: 0.5;
	animation: rise 10s infinite ease-in;
}

.bubble:nth-child(1) {
	width: 9px;
	height: 9px;
	left: 10%;
	background: linear-gradient(#ff9100 0%, #ffeb39 100%);
	animation-duration: 15s;
}

.bubble:nth-child(2) {
	width: 9px;
	height: 9px;
	left: 20%;
	background: linear-gradient(#f330a0 0%, #fb89f3 100%);
	animation-duration: 7s;
	animation-delay: 3s;
}

.bubble:nth-child(3) {
	width: 9px;
	height: 9px;
	left: 35%;
	background: linear-gradient(#31d48d 0%, #58ebd7 100%);
	animation-duration: 12s;
	animation-delay: 5s;
}

.bubble:nth-child(4) {
	width: 9px;
	height: 9px;
	left: 50%;
	background: linear-gradient(#9b17ff 0%, #f859f2 100%);
	animation-duration: 11s;
	animation-delay: 3s;
}

.bubble:nth-child(5) {
	width: 9px;
	height: 9px;
	left: 55%;
	background: linear-gradient(#31c9d4 0%, #cbe1ff 100%);
	animation-duration: 6s;
	animation-delay: 3s;
}

.bubble:nth-child(6) {
	width: 9px;
	height: 9px;
	left: 65%;
	background: linear-gradient(#31d48d 0%, #58ebd7 100%);
	animation-duration: 13s;
	animation-delay: 3s;
}

.bubble:nth-child(7) {
	width: 9px;
	height: 9px;
	left: 70%;
	background: linear-gradient(#7494ff 0%, #3157d4 96.22%, #3a4a80 100%);
	animation-duration: 12s;
	animation-delay: 4s;
}

.bubble:nth-child(8) {
	width: 9px;
	height: 9px;
	left: 80%;
	background: linear-gradient(#f23367 0%, #fea9ba 100%);
	animation-duration: 8s;
	animation-delay: 3s;
}

/* Footer bubble css start*/

/* Footer Copyright area css end */

/* Home page 05 css start */

/* Default Css */
.section-number span {
	font-size: 30px;
	font-weight: 300;
	color: var(--km-heading);
	line-height: 40px;
	margin-right: 12px;
}

.section-title-5 h2 {
	color: var(--km-heading);
	font-size: 30px;
	line-height: 40px;
	font-weight: 700;
	margin-top: 1px;
	margin-bottom: 15px;
}

.section-title-content-5 p {
	color: var(--km-secondary);
	font-size: 16px;
	line-height: 26px;
	margin-bottom: 30px;
}

/* Home page 5 button style */
.kimox-btn-5 {
	position: relative;
	color: var(--km-heading);
	font-size: 14px;
	line-height: 25px;
	font-weight: 500;
	text-transform: uppercase;
}

.kimox-btn-5::before {
	content: "";
	width: 100%;
	height: 1px;
	background: var(--km-heading);
	position: absolute;
	left: auto;
	right: 0;
	bottom: -8px;
	opacity: 1;
	transition: all 0.3s linear;
}

.kimox-btn-5:hover::before {
	opacity: 0;
	width: 0;
	left: 0;
	right: auto;
	transition: all 0.2s linear;
}

.kimox-btn-5 i {
	vertical-align: middle;
	font-size: 18px;
	margin-left: 7px;
}

.kimox-btn-5:hover {
	color: var(--km-heading);
}

.kimox-icon-style {
	position: relative;
	padding-right: 21px;
	display: inline-block;
}

.kimox-icon-style i {
	font-size: 18px;
	position: absolute;
	top: 12px;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	transition: all ease 0.2s;
	-webkit-transition: all ease 0.3s;
	-moz-transition: all ease 0.3s;
	-ms-transition: all ease 0.3s;
	-o-transition: all ease 0.3s;
}

.kimox-icon-style i:first-child {
	right: 15px;
	visibility: hidden;
	opacity: 0;
}

.kimox-icon-style i:last-child {
	right: -7px;
}

.kimox-icon-style:hover i:first-child {
	right: -7px;
	visibility: visible;
	opacity: 1;
	transition-timing-function: ease-out;
}

.kimox-icon-style:hover i:last-child {
	right: -22px;
	visibility: hidden;
	opacity: 0;
}

.kimox-icon-style.link-prev {
	padding-right: 0;
	padding-left: 21px;
}

.kimox-icon-style.link-prev i:first-child {
	left: 10%;
	right: auto;
}

.kimox-icon-style.link-prev i:last-child {
	left: 0;
	right: auto;
}

.kimox-icon-style.link-prev:hover i:first-child {
	left: 0%;
	right: auto;
}

.kimox-icon-style.link-prev:hover i:last-child {
	left: -10%;
	right: auto;
}

/* Header css start */
.header-space {
	padding: 0px 80px;
}

.header-logo-5 img {
	max-width: 150px;
}

.main-menu-5 ul li {
	margin-right: 48px;
}

.main-menu-5 ul li a {
	color: var(--km-heading);
	font-weight: 500;
	line-height: 23px;
}

.header-cart ul li {
	display: inline-block;
	margin-right: 30px;
}

.header-right-info-5 {
	margin-left: 40px;
}

.header-cart ul li a i {
	color: var(--km-secondary);
	font-size: 27px;
	vertical-align: middle;
}

.header-login-btn {
	font-size: 14px;
	height: 50px;
	line-height: 50px;
	display: inline-block;
	cursor: pointer;
	border: none;
	outline: none;
	font-weight: 500;
	border: 1px solid var(--km-heading);
	color: var(--km-heading);
	padding: 0px 31px;
	position: relative;
	z-index: 1;
	-webkit-transition: all 0.3s linear 0s;
	-moz-transition: all 0.3s linear 0s;
	-o-transition: all 0.3s linear 0s;
	transition: all 0.3s linear 0s;
}

.header-login-btn::before {
	background: var(--km-white);
	content: "";
	position: absolute;
	left: auto;
	right: 0;
	width: 0px;
	height: 100%;
	top: 0px;
	bottom: 0px;
	transition: all 0.3s ease-in-out;
	z-index: -1;
}

.header-login-btn:hover::before {
	left: 0px;
	right: auto;
	width: 100%;
	background: var(--km-heading);
	border: 1px solid var(--km-heading);
}

.header-login-btn:hover {
	color: var(--km-white);
}

.header-info-bar-5 {
	cursor: pointer;
	margin-left: 40px;
	display: inline-block;
	max-width: 25px;
	overflow: hidden;
	transition: .3s;
}

.header-info-bar-5 span {
	background: var(--km-black);
	width: 25px;
	height: 2px;
	margin-top: 5px;
	display: block;
	border-radius: 5px;
}

.header-info-bar-5 span:nth-last-child(2) {
	width: 25px;
	text-align: right;
	margin-left: 10px;
	transition: .3s;
}

.header-info-bar-5:hover span:nth-last-child(2) {
	width: 25px;
	margin-left: 0px;
}

.header-cart {
	position: relative;
}

.shop-counter {
	position: relative;
	background: var(--km-heading);
	width: 18px;
	height: 18px;
	display: inline-block;
	text-align: center;
	border-radius: 50%;
	color: var(--km-white);
	line-height: 20px;
	left: -9px;
	top: -3px;
	transition: .3s;
}

.shop-counter:hover {
	background: var(--km-primary);
	color: var(--km-white);
}

.header-cart li a .header-cart-5 {
	position: absolute;
	right: 0;
}

/* Header css end */

/* Slider css start */
.slider-height-5 {
	min-height: 800px;
}

.slider-content h2 {
	color: var(--km-heading);
	font-size: 70px;
	line-height: 80px;
	font-weight: 700;
	margin-bottom: 11px;
}

.slider-content p {
	color: #585858;
	font-size: 16px;
	line-height: 28px;
	font-weight: 400;
	margin-bottom: 30px;
}

.slider-btn-5 {
	font-size: 14px;
	height: 70px;
	line-height: 70px;
	vertical-align: middle;
	display: inline-block;
	cursor: pointer;
	border: none;
	outline: none;
	font-weight: 500;
	color: var(--km-white);
	background: var(--km-primary);
	border: 1px solid var(--km-primary);
	padding: 0px 59px;
	text-transform: uppercase;
	position: relative;
	z-index: 1;
	-webkit-transition: all 0.3s linear 0s;
	-moz-transition: all 0.3s linear 0s;
	-o-transition: all 0.3s linear 0s;
	transition: all 0.3s linear 0s;
}

.slider-btn-5::before {
	background: var(--km-white);
	content: "";
	position: absolute;
	left: auto;
	right: 0;
	width: 0px;
	height: 100%;
	top: 0px;
	bottom: 0px;
	transition: all 0.3s ease-in-out;
	z-index: -1;
}

.slider-btn-5:hover::before {
	left: 0px;
	right: auto;
	width: 100%;
}

.slider-btn-5:hover {
	color: var(--km-heading);
}

.slider-right-img img {
	margin-left: 190px;
	margin-bottom: -195px;
}

.slider-right-img {
	position: relative;
}

.slider-price-sticker {
	position: absolute;
	top: 5%;
	width: 205px;
	height: 205px;
	background: var(--km-heading);
	border-radius: 50%;
	line-height: 150px;
	text-align: center;
	left: 32%;
}

.slider-price-text {
	position: absolute;
	top: 19%;
	left: 38%;
}

.slider-price-text span {
	color: var(--km-white);
	font-size: 16px;
	font-weight: 500;
	margin-left: 27px;
	margin-bottom: 5px;
	display: block;
}

.slider-price-text h3 {
	color: var(--km-white);
	font-size: 40px;
	font-weight: 600;
}

.swiper-slide-active .slide-bg {
	-webkit-transform: scale(1.12);
	-moz-transform: scale(1.12);
	transform: scale(1.12);
}

.slider-active .slide-prev,
.slider-active .slide-next {
	position: absolute;
	font-size: 20px;
	background: var(--km-white);
	height: 45px;
	width: 100px;
	line-height: 65px;
	color: #000000;
	border: none;
	outline: none;
	cursor: pointer;
	z-index: 3;
	text-align: center;
	top: 48%;
	left: 40px;
	margin: 0px;
	vertical-align: middle;
	-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;
	transform: rotate(90deg);
}

.slider-active .slide-prev:hover,
.slider-active .slide-next:hover {
	background: #000000;
	color: var(--km-white);
}

.slider-active .slide-prev:hover,
.slider-active .slide-next:hover {
	background: #000000;
	color: var(--km-white);
}

.slider-active .slide-next {
	left: auto;
	right: 40px;
}

.slider-active.km-slider-active-03 .slide-next {
	left: auto;
	right: 40px;
}

/* Banner css start */
.banner-left {
	background: #F8F6EF;
	padding: 0px 70px 15px 25px;
}

.banner-left-text {
	padding-top: 90px;
}

.banner-img {
	margin-right: 35px;
}

.banner-img img {
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out;
}

.banner-img img:hover {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

.banner-big img {
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out;
}

.banner-big img:hover {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}


.banner-right-small img {
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out;
}

.banner-right-small img:hover {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

.banner-content span {
	color: var(--km-heading);
	font-size: 18px;
	line-height: 28px;
	font-weight: 400;
	margin-bottom: 8px;
	display: block;
}

.banner-content h3 {
	color: var(--km-heading);
	font-size: 30px;
	line-height: 35px;
	font-weight: 500;
	margin-bottom: 28px;
	display: block;
}

.banner-btn-4 {
	position: relative;
	font-size: 14px;
	line-height: 25px;
	color: var(--km-heading);
	font-weight: 500;
}

.banner-btn-4 i {
	vertical-align: middle;
	font-size: 20px;
	margin-left: 8px;
}

.banner-btn-4::before {
	position: absolute;
	content: '';
	width: 0;
	height: 1px;
	background: var(--km-heading);
	position: absolute;
	left: auto;
	right: 0;
	bottom: -8px;
	opacity: 0;
	transition: all 0.3s linear;
}

.banner-btn-4:hover::before {
	opacity: 1;
	width: 100%;
	left: 0;
	right: auto;
	transition: all 0.2s linear;
}

.banner-right {
	background: #f8f8f9;
	padding: 0px 45px 15px 28px;
	overflow: hidden;
}

.banner-right-text {
	padding-top: 90px;
	margin-left: 24px;
}

.banner-right-img {
	position: relative;
}

.banner-right-small {
	position: absolute;
	top: 0px;
	left: 62%;
}

/* Banner css end */

/* Best selling css start */
.selling-title-mb {
	margin-bottom: 0 !important;
}

.best-selling-filters {
	text-align: right;
	padding-top: 5px;
}

.best-selling-filters button.active {
	color: var(--km-heading);
}

.best-selling-filters button {
	position: relative;
	margin-left: 35px;
	cursor: pointer;
	font-size: 16px;
	color: var(--km-secondary);
	line-height: 26px;
	background: none;
	border: none;
	padding: 0;
}

.best-selling-filters button::before {
	position: absolute;
	content: '';
	top: 7px;
	background: var(--km-heading);
	width: 1px;
	height: 15px;
	left: -21px;
}

.best-selling-filters li:first-child button::before {
	display: none;
}

.best-selling-item {
	position: relative;
	background: #f8f8f9;
	padding: 30px 25px;
	transition: .3s;
	z-index: 99;
}

.best-selling-item .best-selling-thumb-1 {
	-webkit-transition: opacity .5s linear 0.2s;
	-moz-transition: opacity .5s linear 0.2s;
	transition: opacity .5s linear 0.2s;
	opacity: 1;
	visibility: visible;
}

.best-selling-item:hover .best-selling-thumb-1 {
	opacity: 0;
	visibility: hidden;
	transition: .3s linear;
}

.best-selling-thumb-overly {
	position: absolute;
	left: 0;
	top: 0;
	opacity: 0;
	transition: .3s linear;
}

.best-selling-item:hover .best-selling-thumb-overly {
	opacity: 1;
	visibility: visible;
}

.product-content {
	margin-bottom: 26px;
}

.product-title h4 {
	font-size: 18px;
	color: var(--km-heading);
	margin-bottom: 4px;
}

.product-action ul li {
	list-style: none;
}

.product-meta span {
	color: var(--km-heading);
	font-size: 16px;
}

.product-action ul li {
	display: inline-block;
	margin-right: 12px;
}

.product-action ul li a {
	border: 1px solid #c7cbd1;
	color: var(--km-heading);
	width: 40px;
	height: 40px;
	display: inline-block;
	border-radius: 20px;
	line-height: 40px;
	text-align: center;
	font-size: 16px;
}

.product-action ul li a:hover {
	background: var(--km-primary);
	color: var(--km-white);
	border: 1px solid transparent;
}

.product-action {
	transition: .3s;
	opacity: 0;
	visibility: hidden;
}

.best-selling-item:hover .product-action {
	opacity: 1;
	visibility: visible;
}

.product-wrapper {
	background: var(--km-white);
	position: absolute;
	bottom: -84px;
	transition: .3s;
	padding: 20px 40px 0px 25px;
	left: 24px;
}

.best-selling-item:hover .product-wrapper {
	bottom: -20px;
}

.best-selling-img {
	margin-bottom: 40px;
}

.best-selling-btn {
	position: relative;
	font-size: 14px;
	color: var(--km-heading);
	line-height: 25px;
	font-weight: 500;
	text-transform: uppercase;
}

.best-selling-btn i {
	vertical-align: middle;
	margin-left: 8px;
	font-size: 18px;
}

.best-selling-btn:hover {
	color: var(--km-heading);
}

.best-selling-btn::after {
	position: absolute;
	content: '';
	width: 100%;
	height: 1px;
	background: #C6C7C8;
	bottom: -7px;
	left: 0;
	cursor: pointer;
}

.best-selling-btn::before {
	position: absolute;
	content: '';
	width: 100%;
	height: 1px;
	background: #C6C7C8;
	bottom: -7px;
	left: 0;
	cursor: pointer;
}

.best-selling-btn::before {
	content: "";
	position: absolute;
	width: 0px;
	height: 0px;
	background: var(--km-primary);
	bottom: -7px;
	left: 0;
	margin: auto;
	transition: 0.3s;
	z-index: 99;
}

.best-selling-btn:hover::before {
	width: 50%;
	height: 1px;
	transition: .3s;
}

/* Best selling css end */

/* features css start */

.features-area.s-features-area {
	border: 0;
}

.features-icon {
	margin-right: 20px;
	margin-top: 4px;
}

.features-content h4 {
	border: 1px solid rgba(0, 0, 0, 0);
	font-size: 16px;
	font-weight: 500;
	margin-bottom: 0;
}

.features-content p {
	color: var(--km-secondary);
	font-size: 14px;
	line-height: 28px;
	font-weight: 400;
}

/* features css end */

/* interior css start */
.interior-right {
	position: relative;
	text-align: right;
}

.interior-right-img::before {
	position: absolute;
	content: '';
	width: 400px;
	height: 320px;
	background: #A3A486;
	right: -40px;
	top: -40px;
	z-index: -1;
}

/* interior css end */

/* beauty css end */
.beauty-left {
	position: relative;
	text-align: left;
}

.beauty-left-img::before {
	position: absolute;
	content: '';
	width: 400px;
	height: 320px;
	background: #A3A486;
	z-index: -1;
	top: -40px;
	left: -40px;
}

/* beauty css end */

/* subscribe css start */
.subscribe-area {
	position: relative;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	min-height: 370px;
}

.subscribe-area::before {
	position: absolute;
	content: '';
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: #e6e6e2;
	opacity: 0.2;
}

.subscribe-wrapper {
	position: relative;
	z-index: 99;
}

.subscribe-title h2 {
	color: var(--km-heading);
	font-size: 30px;
	font-weight: 500;
	line-height: 40px;
	margin-bottom: 45px;
}

.subscribe-form-5 {
	position: relative;
}

.subscribe-form-5 input {
	background: var(--km-white);
	border: none;
	height: 60px;
	width: 100%;
	padding: 0px 55px;
}

.subscribe-form-5 button {
	position: absolute;
	background: var(--km-heading);
	color: var(--km-white);
	height: 60px;
	border: none;
	padding: 0px 63px;
	right: 0;
	text-transform: uppercase;
	font-size: 14px;
	line-height: 28px;
	font-weight: 500;
}

.subscribe-form-5 button:hover {
	background: var(--km-primary);
}

.subscribe-form-5 i {
	position: absolute;
	left: 24px;
	z-index: 99;
	top: 20px;
	font-size: 18px;
}

.subscribe-form-5 input::-moz-placeholder,
.subscribe-form-5 input::placeholder {
	font-size: 14px;
	line-height: 28px;
	color: var(--km-secondary);
}

/* subscribe css end */

/* Shop-brand css start*/

.shop-brand-img {
	text-align: center;
	max-width: 190px;
	max-height: 166px;
	line-height: 153px;
}

.shop-brand-img img {
	opacity: 0.4;
	transition: .3s;
}

.shop-brand-img img:hover {
	opacity: 1;
}

.shop-brand-topborder {
	position: relative;
}

.shop-brand-topborder::before {
	position: absolute;
	content: '';
	width: 100%;
	height: 1px;
	background: #e7ebf2;
	left: 0;
}

.shop-brand-right {
	padding-left: 115px;
}

.shop-brand-middle {
	position: relative;
}

.shop-brand-middle::before {
	position: absolute;
	content: '';
	width: 300px;
	height: 1px;
	background: #e7ebf2;
	transform: rotate(90deg);
	left: 50px;
	bottom: 0;
}

.shop-brand-middle::after {
	position: absolute;
	content: '';
	width: 300px;
	height: 1px;
	background: #e7ebf2;
	transform: rotate(90deg);
	right: 45px;
	bottom: 0;
}

/* Shop-brand css end*/

/* Testimonial css start */
.single-top-border {
	border-top: 1px solid #E7EBF2;
	padding-top: 120px;
}

div.testimonial-author-img img {
	border: 1px dashed var(--km-secondary);
	border-radius: 50%;
	padding: 23px;
}

.testimonial-quote span {
	position: absolute;
	bottom: -15px;
	right: 45px;
	width: 65px;
	height: 65px;
	background: var(--km-white);
	line-height: 65px;
	text-align: center;
	border-radius: 50%;
	color: var(--km-primary);
	font-size: 25px;
}

.testimonial-author-des h4 {
	color: var(--km-heading);
	font-size: 22px;
	line-height: 26px;
	font-weight: 600;
	margin-bottom: 6px;
}

.testimonial-author-des span {
	color: var(--km-secondary);
	font-size: 16px;
	line-height: 26px;
	font-weight: 400;
	margin-bottom: 25px;
	display: block;
}

.testimonial-author-des p {
	color: var(--km-secondary);
	font-size: 20px;
	line-height: 30px;
	font-style: italic;
	font-weight: 500;
}

.testimonial-main {
	padding-left: 140px;
	padding-bottom: 45px;
}

.testimonial-author-img {
	position: relative;
	padding-right: 28px;
	float: left;
}

.testimonial-author-des {
	padding-right: 251px;
	overflow: hidden;
}

.testimonial-area-5 .swiper-button-prev.slide-prev {
	top: 96%;
	left: 28%;
	font-size: 25px;
	color: var(--km-heading);
	transition: .3s;
}

.testimonial-area-5 .swiper-button-prev.slide-prev:hover {
	color: var(--km-primary);
}

.testimonial-area-5 .swiper-button-next.slide-next {
	top: 96%;
	left: 32.7%;
	font-size: 25px;
	color: var(--km-heading);
}

.testimonial-area-5 .swiper-button-next.slide-next:hover {
	color: var(--km-primary);
}

.testimonial-top-area {
	padding-bottom: 18px;
	padding-left: 20px;
}

/* Testimonial css end */

/* Footer css start */
.footer-top-5 {
	background: #f8f8f9;
	padding-top: 100px;
	padding-bottom: 60px;
	padding-left: 83px;
	padding-right: 83px;
}

.footer-logo-5 img {
	max-width: 150px;
}

.footer-logo-5 {
	margin-bottom: 35px;
}

.footer-text-5 p {
	color: var(--km-secondary);
	font-size: 16px;
	line-height: 28px;
	margin-bottom: 25px;
}

.footer-social-title-5 h3 {
	color: var(--km-heading);
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 28px;
}

.footer-social-icon-5 ul li {
	display: inline-block;
	margin-right: 8px;
	margin-bottom: 8px;
}

.footer-social-icon-5 ul li a {
	width: 40px;
	height: 40px;
	border: 1px solid #D4D8DE;
	color: #95989B;
	display: block;
	line-height: 40px;
	text-align: center;
	border-radius: 50%;
	transition: .3s;
}

.footer-social-icon-5 ul li a:hover {
	border: 1px solid transparent;
	background: var(--km-heading);
	color: var(--km-white);
}

.footer-title-5 h3 {
	color: var(--km-heading);
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 30px;
}

.footer-menu-5-pl {
	padding-left: 100px;
}

.footer-menu-5 ul li a {
	color: var(--km-secondary);
	font-size: 16px;
	line-height: 40px;
	transition: .3s;
}

.footer-menu-5 ul li a:hover {
	color: var(--km-heading);
	padding-left: 2px;
}

.footer-categories-5 ul li a {
	color: var(--km-secondary);
	font-size: 16px;
	line-height: 40px;
	transition: .3s;
}

.footer-categories-5 ul li a:hover {
	color: var(--km-heading);
	padding-left: 2px;
}

.footer-categories-5 ul li:last-child {
	margin-bottom: 0;
}

.footer-info-5 ul li a {
	color: var(--km-secondary);
	font-size: 16px;
	line-height: 28px;
	display: flex;
}

.footer-info-5 ul li a:hover {
	color: var(--km-heading);
}

.footer-info-5 ul li {
	margin-bottom: 15px;
}

.footer-info-5 ul li a i {
	margin-right: 14px;
	color: var(--km-heading);
	font-size: 18px;
	vertical-align: middle;
	padding-top: 6px;
}

.footer-info-5 {
	padding-top: 5px;
}

.footer-info-5 ul li:last-child {
	margin-bottom: 0px;
}

/* Footer css end */

/* Footer copy right area css start*/
.footer-copyright-5 {
	padding-top: 33px;
	padding-bottom: 25px;
	padding-left: 84px;
	padding-right: 84px;
}

.footer-bottom-info-icon span {
	color: var(--km-primary);
	font-size: 50px;
}

.footer-bottom-info-icon {
	margin-right: 23px;
}

.footer-bottom-info-text {
	padding-top: 6px;
}

.footer-bottom-info-text span {
	font-size: 15px;
	line-height: 31px;
	color: var(--km-secondary);
	margin-bottom: -3px;
	display: block;
}

.footer-bottom-info-text h4 {
	color: var(--km-heading);
	font-size: 24px;
	line-height: 32px;
}

.footer-copyright-5 p {
	color: var(--km-heading);
	font-size: 16px;
	line-height: 28px;
}

.footer-copyright-app img {
	margin-left: 8px;
	margin-bottom: 8px;
}

/* Footer copy right area css end*/

/* Home page 06 style start */

/* Header css start */
.kimox-transparant-header-6 {
	position: absolute;
	left: 0;
	right: 0;
	z-index: 999;
	padding: 25px 0px;
}

.header-space-6 {
	padding: 0px 46px;
}

.header-menu-left span {
	color: var(--km-heading);
	font-size: 18px;
	text-transform: uppercase;
	font-weight: 400;
}

.info-bar-6 {
	margin-left: 25px;
}

/* Header css end */

/* Hero area css start */
.hero-area-6 {
	position: relative;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	min-height: 950px;
}

.hero-area-6::before {
	position: absolute;
	content: '';
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(#fff 0%, #ebeef3 100%);
	opacity: 0.9;
}

.hero-content-6 {
	text-align: center;
	position: relative;
	z-index: 99;
}

.hero-content-6 h2 {
	color: var(--km-heading);
	font-size: 90px;
	line-height: 110px;
	font-weight: 700;
	margin-bottom: 17px;
}

/* Hero area css end */

/* Portfolio area css start */
.portfolio-title-6 {
	position: relative;
}

.portfolio-title-6::before {
	position: absolute;
	content: '';
	left: -20px;
	top: 3px;
	width: 3px;
	height: 55px;
	background: var(--km-heading);
}

.portfolio-title-6 h2 {
	color: var(--km-heading);
	font-size: 30px;
	line-height: 40px;
	font-weight: 600;
	margin-bottom: 0px;
}

.portfolio-title-6 p {
	color: var(--km-secondary);
	font-size: 16px;
	line-height: 26px;
}

.portfolio-all-filter-6 button {
	position: relative;
	border: none;
	background: none;
	color: var(--km-heading);
	font-size: 16px;
	margin-left: 27px;
}

.portfolio-all-filter-6 button:first-child {
	margin-left: 0;
}

.portfolio-all-filter-6 button {
	border-top: 1px solid transparent;
	border-bottom: 1px solid transparent;
	padding: 4px 0px;
}

.portfolio-all-filter-6 button.active {
	border-top: 1px solid var(--km-heading);
	border-bottom: 1px solid var(--km-heading);
}

.portfolio-all-filter-6 button.active::before {
	position: absolute;
	content: '';
	background: var(--km-heading);
	clip-path: polygon(10% 17%, 89% 17%, 49% 33%);
	height: 25px;
	width: 20px;
	bottom: -21px;
	left: 0;
	right: 0;
	margin: auto;
}

.portfolio-img-6 {
	position: relative;
	transition: .3s;
}

.portfolio-content-6 {
	position: absolute;
	background: var(--km-white);
	top: 20px;
	padding: 130px 91px;
	text-align: center;
	left: 0px;
	opacity: 0;
	visibility: hidden;
	transition: .3s;
}

.portfolio-content-6 span {
	color: var(--km-heading);
	font-size: 16px;
	text-transform: uppercase;
	font-weight: 400;
	margin-bottom: 5px;
	display: block;
}

.portfolio-content-6 h3 {
	font-size: 30px;
	color: var(--km-heading);
	font-weight: 600;
	line-height: 40px;
	margin-bottom: 27px;
}

.portfolio-content-6 {
	position: absolute;
	background: var(--km-white);
	top: 20px;
	padding: 30px;
	text-align: center;
	left: 0px;
	opacity: 0;
	visibility: hidden;
	transition: .3s;
	bottom: 20px;
	right: 15px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.portfolio-btn-6 i {
	transition: .3s;
	vertical-align: middle;
	margin-left: 3px;
}

.portfolio-btn-6:hover i {
	padding-left: 3px;
}

.portfolio-img-6:hover .portfolio-content-6 {
	opacity: 1;
	visibility: visible;
	left: 15px;
}

.portfolio-button-btn {
	border: 1px solid #707070;
	height: 60px;
	display: inline-block;
	line-height: 60px;
	padding: 0px 40px;
	color: var(--km-heading);
	font-size: 14px;
	text-transform: uppercase;
	font-weight: 500;
	transition: .3s;
}

.portfolio-button-btn:hover {
	color: var(--km-heading);
}

.portfolio-button-btn i {
	vertical-align: middle;
	font-size: 18px;
	margin-left: 6px;
	transition: .3s;
}

.portfolio-button-btn:hover i {
	padding-left: 3px;
}

/* Portfolio area css end */

/* Features area css start */
.features-top-border-6 {
	border-top: 1px solid #E7EBF2;
	padding-top: 110px;
}

.features-title-top {
	position: relative;
}

.features-title-right h2 {
	color: var(--km-heading);
	font-size: 55px;
	line-height: 65px;
	font-weight: 900;
	opacity: 0;
	visibility: hidden;
	transition: .3s;
}

.features-title-left {
	position: absolute;
	left: 0;
	top: 4px;
	transition: .3s;
}

.features-wrapper:hover .features-title-left {
	left: 80px;
}

.features-wrapper:hover .features-title-right h2 {
	opacity: 1;
	visibility: visible;
}

.features-title-left span {
	color: var(--km-heading);
	font-size: 15px;
	font-weight: 300;
	line-height: 28px;
}

.features-title-left h4 {
	color: var(--km-heading);
	font-size: 16px;
	font-weight: 500;
	line-height: 28px;
}

.features-buttom-text p {
	color: var(--km-secondary);
	font-size: 16px;
	line-height: 26px;
}

.features-wrapper-single {
	padding: 0px 25px;
}

.features-wrapper {
	border-left: 1px solid #E7EBF2;
}

.features-border-none {
	border-left: none;
}

/* Features area css end */

/* testimonial&brand area css start */
.testimonial-border-6 {
	border: 1px solid #E7EBF2;
	padding-top: 50px;
	padding-bottom: 101px;
	padding-left: 30px;
	padding-right: 30px;
}

.testimonial-main-6 {
	position: relative;
}

.testimonial-quote-6 span {
	position: absolute;
	right: 0;
	top: 10px;
	color: var(--km-heading);
	font-size: 32px;
}

.testimonial-author-title-6 {
	padding-top: 20px;
}

.testimonial-author-img-6 {
	margin-right: 20px;
}

.testimonial-author-title-6 h4 {
	color: var(--km-heading);
	font-size: 22px;
	line-height: 26px;
	font-weight: 600;
	margin-bottom: 6px;
}

.testimonial-author-title-6 span {
	color: var(--km-secondary);
	font-size: 16px;
	line-height: 26px;
	font-weight: 400;
}

.testimonial-review-content-6 p {
	color: var(--km-secondary);
	font-size: 20px;
	line-height: 30px;
	font-style: italic;
	font-weight: 500;
}

.testimonial-author-6 {
	margin-bottom: 30px;
}

.testimonial-wrapper-6 .swiper-button-prev.slide-prev {
	top: 86%;
	left: 79%;
	font-size: 25px;
	color: var(--km-heading);
	transition: .3s;
}

.testimonial-wrapper-6 .swiper-button-prev.slide-prev:hover {
	color: var(--km-primary);
}

.testimonial-wrapper-6 .swiper-button-next.slide-next {
	top: 86%;
	left: 88.7%;
	font-size: 25px;
	color: var(--km-heading);
}

.testimonial-wrapper-6 .swiper-button-next.slide-next:hover {
	color: var(--km-primary);
}

.swiper-pagination-bullet {
	cursor: pointer;
	margin-right: 20px;
	font-size: 18px;
}

.brand-item-img-6 {
	line-height: 175px;
	text-align: center;
	border: 1px solid #ccc;
}

.brand-item-img-6 img {
	opacity: 0.4;
	transition: .3s;
}

.brand-item-img-6 img:hover {
	opacity: 1;
}

.brand-button-btn {
	margin-top: 17px;
}

.testimonial-wrapper-6 .swiper-pagination-2.swiper-pagination-clickable.swiper-pagination-bullets {
	top: 63px;
	position: relative;
}

.testimonial-wrapper-6 .swiper-pagination-bullet {
	position: relative;
	font-size: 20px !important;
	background: none !important;
	line-height: 30px !important;
	font-weight: 500;
	color: var(--km-heading);
	border: none !important;
	width: 23px !important;
	height: 23px !important;
	margin-right: 35px !important;
	top: 0;
	transition: .5s;
}

.testimonial-wrapper-6 .swiper-pagination-bullet::before {
	position: absolute;
	content: '';
	left: 5px;
	width: 12px;
	height: 12px;
	background: var(--km-primary);
	border-radius: 2px;
	transform: rotate(45deg);
	bottom: -22px;
	opacity: 0;
	visibility: hidden;
}

.testimonial-wrapper-6 .swiper-pagination-bullet.swiper-pagination-bullet-active {
	color: var(--km-primary);
	top: -23px;
}

.testimonial-wrapper-6 .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
	opacity: 1;
	visibility: visible;
}

.testimonial-wrapper-6 .swiper-pagination-2.swiper-pagination-clickable.swiper-pagination-bullets::before {
	position: absolute;
	content: '';
	width: 35px;
	height: 1px;
	border: 1px dotted #B6BAC2;
	top: 16px;
	left: 28px;
}

.testimonial-wrapper-6 .swiper-pagination-2.swiper-pagination-clickable.swiper-pagination-bullets::after {
	position: absolute;
	content: '';
	width: 35px;
	height: 1px;
	border: 1px dotted #B6BAC2;
	top: 16px;
	left: 91px;
}

/* testimonial&brand area css start */

/* Team area css start */
.team-title-6 h2 {
	color: var(--km-heading);
	font-size: 30px;
	font-weight: 600;
	margin-bottom: 2px;
}

.team-title-6 p {
	color: var(--km-secondary);
	font-size: 16px;
	line-height: 26px;
}

.team-author-wrapper {
	position: relative;
	text-align: center;
	border: 1px solid #E7EBF2;
	height: 100%;
	background: var(--km-white);
	display: flex;
	align-items: center;
	justify-content: center;
}

.team-author-content h3 {
	font-size: 22px;
	color: var(--km-heading);
	line-height: 26px;
	font-weight: 600;
	margin-bottom: 3px;
}

.team-author-content span {
	color: var(--km-secondary);
	font-size: 16px;
	line-height: 26px;
	margin-bottom: 13px;
	display: block;
}

.team-author-social ul li {
	list-style: none;
	display: inline-block;
	margin-left: 15px;
}

.team-author-social ul li a {
	color: #A4AAB2;
	font-size: 15px;
	transition: .3s;
}

.team-author-social ul li a:hover {
	color: var(--km-heading);
}

.team-author-social {
	margin-bottom: 35px;
}

.team-wrapper-6:hover .team-author-btn {
	opacity: 1;
	visibility: visible;
}

.team-author-btn {
	height: 50px;
	border: 1px solid var(--km-primary);
	display: inline-block;
	line-height: 50px;
	padding: 0px 40px;
	text-transform: uppercase;
	font-size: 14px;
	font-weight: 500;
	color: var(--km-primary);
	opacity: 0;
	visibility: hidden;
}

.team-author-btn i {
	font-size: 18px;
	margin-left: 6px;
	vertical-align: sub;
	transition: .3s;
}

.team-author-btn:hover i {
	padding-left: 3px;
}

.team-img img {
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out;
	width: 100%;
}

.team-img img:hover {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

.team-img {
	overflow: hidden;
}

.team-author-wrapper::before {
	position: absolute;
	content: '';
	width: 15px;
	height: 15px;
	border: 1px solid #E7EBF2;
	left: -8px;
	top: 50%;
	border-left: 0;
	border-bottom: 0;
	background: var(--km-white);
	transform: translateY(-50%);
	transform: rotate(223deg);
}

.team-author-wrapper-buttom {
	position: relative;
	text-align: center;
	border: 1px solid #E7EBF2;
	height: 100%;
	background: var(--km-white);
	display: flex;
	align-items: center;
	justify-content: center;
}

.team-author-wrapper-buttom::before {
	position: absolute;
	content: '';
	width: 15px;
	height: 15px;
	background: var(--km-white);
	border: 1px solid #E7EBF2;
	top: 50%;
	right: -8px;
	border-left: none;
	border-bottom: none;
	transform: translateY(-50%);
	transform: rotate(45deg);
}

.team-top-area {
	margin-top: 55px;
	transition: .3s;
}

.team-wrapper-6:hover .team-top-area {
	transform: translateY(-30px);
}

/* Team area css end */

/* Counter area css */
.single-counter-item {
	text-align: center;
}

.single-counter-item h2 {
	font-size: 50px;
	font-weight: 500;
	color: var(--km-heading);
	margin-bottom: 9px;
}

.single-counter-item p {
	color: var(--km-heading);
	font-size: 16px;
	font-style: italic;
	font-weight: 500;
}

/* counter area css end */

/* Footer area css start */
.footer-space-6 {
	padding-left: 45px;
	padding-right: 5px;
	border-top: 1px solid #E7EBF2;
	padding-top: 85px;
	padding-bottom: 85px;
}

.footer-logo-6 img {
	max-width: 150px;
}

.footer-widget-title-6 h3 {
	color: var(--km-heading);
	font-size: 20px;
	line-height: 25px;
	margin-bottom: 23px;
}

.footer-widget-title-6 h3 {
	color: var(--km-heading);
	font-size: 20px;
	line-height: 25px;
}

.footer-call-info ul li a {
	color: var(--km-secondary);
	font-size: 16px;
	line-height: 24px;
}

.footer-location-info p {
	color: var(--km-secondary);
	font-size: 16px;
	line-height: 24px;
}

.footer-team-info a {
	position: relative;
	color: var(--km-secondary);
	font-size: 16px;
	line-height: 24px;
	margin-right: 20px;
	transition: .3s;
}

.footer-team-info a:hover {
	color: var(--km-primary);
	text-decoration: underline;
}

.footer-team-info a::before {
	position: absolute;
	content: '';
	border: 1px solid var(--km-secondary);
	width: 1px;
	height: 15px;
	left: 118px;
	top: 2px;
}

.footer-team-info a:last-child:before {
	border: none;
}

.footer-team-info a:nth-child(2):before {
	border: none;
}

.footer-social-6 ul li {
	display: inline-block;
	margin-right: 20px;
	position: relative;
}

.footer-social-6 ul li a {
	color: var(--km-secondary);
	font-size: 16px;
	line-height: 24px;
}

.footer-social-6 ul li::before {
	position: absolute;
	content: '';
	right: -13px;
	top: 5px;
	width: 1px;
	height: 16px;
	border: 1px solid var(--km-secondary);
	transform: rotate(10deg);
}

.footer-social-6 ul li:last-child:before {
	border: none;
}

/* Footer area css end */

/* Footer copy right start */
.footer-copy-right-6 {
	border-top: 1px solid #E7EBF2;
	padding-top: 30px;
	padding-bottom: 30px;
}

.footer-copy-right-text-6 p {
	color: var(--km-heading);
	font-size: 16px;
	line-height: 24px;
}

/* Footer copy right css end */

/* Full menu css */

.side-info-full-content {
	padding-top: 230px;
}

.side-info-full-content h2 {
	position: relative;
	text-align: center;
	color: var(--km-heading);
	font-size: 90px;
	line-height: 110px;
	font-weight: 700;
	margin-bottom: 17px;
	z-index: 999;
}

.info-close-icon button {
	border: none;
	background: none;
	position: relative;
	right: 0px;
	color: var(--km-heading);
	text-transform: uppercase;
	font-weight: 400;
	top: 5px;
	font-size: 18px;
}

.info-close-icon {
	text-align: right;
	margin-bottom: 20px;
}

.info-close-icon button i {
	vertical-align: middle;
	margin-left: 10px;
	font-size: 30px;
}

.info-area-inner-6 {
	position: fixed;
	right: -370px;
	top: 0;
	padding: 30px;
	width: 330px;
	height: 100%;
	background: #F7F8FA none repeat scroll 0 0;
	overflow-y: scroll;
	-webkit-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
	-moz-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
	transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
	z-index: 99999;
}

.info-area.info-opened .info-area-inner-6 {
	right: -20px;
}

.body-overlay-6 {
	height: 100%;
	width: 100%;
	position: fixed;
	top: 0;
	z-index: 999;
	left: 0;
	opacity: 0;
	visibility: hidden;
}

.body-overlay-6.opened {
	opacity: 0.6;
	visibility: visible;
	display: block;
}

.main-menu-6 {
	text-align: right;
}

.main-menu-6 ul li {
	display: block;
	margin-right: 0;
}

.main-menu-6 ul li a {
	position: relative;
	color: var(--km-heading);
	padding: 19px 0px;
	z-index: 9999;
}

.main-menu.main-menu-6 ul li .sub-menu {
	background: none;
	box-shadow: none;
	left: 0;
	opacity: 0;
	position: absolute;
	top: 130%;
	transition: all 0.3s ease 0s;
	visibility: hidden;
	width: 240px;
	z-index: 9;
	text-align: left;
	padding: 15px 0;
}

.main-menu.main-menu-6 ul li:hover .sub-menu {
	opacity: 1;
	visibility: visible;
	top: 0;
}

.main-menu ul li:hover>.sub-menu-6 {
	opacity: 1;
	visibility: visible;
	top: 0;
}

.main-menu-6 ul li a::after {
	content: "";
	width: 0;
	height: 1px;
	background: var(--km-heading);
	position: absolute;
	left: auto;
	right: 0;
	bottom: 15px;
	opacity: 0;
	transition: all 0.3s linear;
}

.main-menu-6 ul li a:hover::after {
	/*opacity: 1;*/
	width: 100%;
	left: 0;
	right: auto;
	transition: all 0.2s linear;
}

.main-menu ul li .sub-menu-6 li a::after {
	display: none;
}

.info-logo-4 img {
	max-width: 177px;
}

.kimox-sidebar .zoom-instagram-widget__items {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
}

.kimox-sidebar .zoom-instagram-widget__items::before,
.kimox-sidebar .zoom-instagram-widget__items::after {
	display: none !important;
}

.no-shadow {
	box-shadow: none;
}

.kimox-feature-list-wrap ul {
	overflow: hidden;
}

.kimox-feature-list-wrap ul li {
	width: 50%;
	float: left;
}

.kimox-feature-list-wrap ul li:nth-child(2) {
	margin-bottom: 20px;
}

.info-area-wrapper-4 .info-social-4 a {
	display: inline-block;
	margin: 0 3px;
}


.kimox-blog-content {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 99;
	padding: 30px;
}

.banner-right-img.banner-img {
	margin-right: 0;
}

.testimonial-area-5 .swiper-button-next.slide-next,
.testimonial-area-5 .swiper-button-prev.slide-prev {
	background-image: none;
}

.footer-top-5 .footer-widget ul li a {
	color: var(--km-secondary);
	font-size: 16px;
	line-height: 40px;
	transition: .3s;
}

.footer-top-5 .footer-widget ul li a:hover {
	color: var(--km-heading);
	padding-left: 2px;
}

.kimox-product-action {
	text-align: center;
}

.kimox_action_btn {
	border: 1px solid #c7cbd1;
	color: var(--km-heading);
	width: 40px;
	height: 40px;
	display: inline-block;
	border-radius: 20px;
	line-height: 40px;
	text-align: center;
	font-size: 16px;
}

.product-action.kimox-product-action>* {
	display: inline-block;
	margin: 0 7px;
}

.product-action.kimox-product-action a:hover {
	background: var(--km-primary);
	color: var(--km-white);
	border: 1px solid transparent;
}

.best-selling-item a.button.yith-wcqv-button {
	display: none;
}

.product-meta ins {
	text-decoration: none;
}

.product-showing p {
	font-size: 16px;
	font-weight: 400;
	line-height: 28px;
	color: #596277;
	margin-bottom: 0;
}

.shop-count-ordering-wrap .product-showing,
.shop-count-ordering-wrap .pro-filter {
	margin-bottom: 50px;
}

.pro-filter .list {
	z-index: 999;
}

.best-selling-img img {
	max-height: 212px;
	object-fit: cover;
}

.bdevs-quick-view-images {
	width: 40%;
	overflow: hidden;
	float: left;
}

#yith-quick-view-content div.summary {
	margin: 0;
	padding: 15px;
	width: 50%;
	float: left;
	font-size: inherit;
	padding-left: 40px;
}

#yith-quick-view-modal .custom-tab li .nav-link {
	padding: 0;
	font-size: 18px;
	color: #bababa;
	margin-right: 0;
	border: 0;
	padding-top: 0;
}

.woocommerce img,
.woocommerce-page img {
	height: auto;
	max-width: 100%;
	padding: 15px;
}

#yith-quick-view-modal .custom-tab li .nav-link img {
	max-width: 114px;
}

.bdevs-quick-view-images ul {
	border: 0;
	margin-top: 15px;
}

.bdevs-quick-view-images ul li {
	width: 33.33%;
	padding: 0 8px;
}

#yith-quick-view-modal.open .yith-wcqv-main {
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
	opacity: 1;
	height: 100%;
	overflow-y: inherit;
	position: relative;
	box-shadow: inherit;
	padding: 30px;
}

.bdevs-quick-view-images .tab-content img {
	height: 376px;
	object-fit: cover;
}

.details-product-title.title {
	font-size: 25px;
}

.details-rating a {
	font-size: 12px;
	color: #fcd700;
	margin-right: 2px;
}

.details-rating span {
	font-size: 13px;
	color: #6f6f6f;
	padding-left: 8px;
	display: inline-block;
}

.details-pro-price {
	font-size: 14px;
	font-weight: 800;
	color: #222;
	display: inline-block;
}

.woocommerce-product-details__short-description p {
	padding-bottom: 40px;
}

.woocommerce-product-details__short-description p {
	line-height: 34px;
	font-size: 17px;
}

.cart-plus-minus input {
	border: 0px;
	outline: 0px;
	background: none;
	font-weight: 400;
	color: var(--km-black);
	font-size: 16px;
	border: 1px solid #ddd;
	display: inline-block;
	padding: 8px 20px;
	width: 110px !important;
	text-align: center;
}

.product-quantity label {
	display: none;
}

.site-btn.brand-btn {
	background: #222;
	border: 1px solid #222;
	color: var(--km-white);
	text-transform: uppercase;
	line-height: 1;
	height: 50px;
	padding: 0px 60px;
	font-weight: 800;
	font-size: 12px;
}

.cart .site-btn.brand-btn {
	background: #0b2154;
	border-color: #0b2154;
}

.pro-details-content .pro-quan-area .cart .site-btn.brand-btn {
	background: var(--km-black);
	border-color: var(--km-black);
	transition: all 0.3s;
}

.pro-details-content .pro-quan-area .cart .site-btn.brand-btn:hover {
	background: var(--km-primary);
	border-color: var(--km-primary);
}

.woocommerce-product-details__short-description .product-quantity {
	display: inline-block;
}

.woocommerce-product-details__short-description .product-quantity {
	display: inline-block;
}

.pro-quan-area .product-quantity {
	display: inline-block;
	vertical-align: middle;
}

.pro-quan-area .product-quantity input {
	margin-right: 7px;
}

.product_meta>span {
	font-size: 16px;
	font-weight: 600;
	color: var(--km-black);
	margin-bottom: 10px;
	display: block;
}

.product_meta>span a {
	color: #808080;
	font-weight: 400;
	text-transform: capitalize;
}

.product_meta>span a:hover {
	color: var(--km-primary);
}

.pro-details-tab .custom-tab {
	width: 18%;
	border: 0;
	float: left;
}

.pro-details-tab .custom-tab li a {
	padding: 0px;
	margin-bottom: 25px;
	position: relative;
	border: 0;
	background-color: #f8f8f9;
	border-radius: 0;
}

.custom-content {
	float: right;
	width: 76%;
	margin-right: 40px;
}

.custom-content img {
	width: 100%;
	margin-left: 18px;
	background-color: #ddd;
}

.fa-heart-o:before {
	content: '\f004';
	font-weight: 300;
}

.yith-wcwl-add-to-wishlist {
	margin-top: 0px;
	display: inline-block;
	margin: 0;
}

.pro-details-content .yith-wcwl-add-to-wishlist {
	margin-top: 20px;
}

.yith-wcwl-add-button a.add_to_wishlist {
	color: #222;
	font-weight: 500;
	margin-bottom: 14px;
	display: inline-block;
	position: relative;
}

.yith-wcwl-add-button a.add_to_wishlist::before {
	width: 50px;
	height: 1px;
	background: #222;
	content: "";
	position: absolute;
	left: 0;
	bottom: -3px;
}

.yith-wcwl-add-button a.add_to_wishlist i {
	margin-right: 5px;
}

.bakix-details-tab.mb-50 ul li a {
	border: 0;
}

.bakix-details-tab ul li button {
	border: 0 !important;
	padding: 0;
	margin-right: 22px;
	font-size: 20px;
	position: relative;
	color: var(--km-secondary) !important;
}

.bakix-details-tab ul li button.active {
	color: var(--km-primary) !important;
	position: relative;
}

.bakix-details-tab ul li button.active::after {
	width: 100%;
	height: 2px;
	content: "";
	position: absolute;
	left: 0;
	bottom: -21px;
	background: var(--km-primary);
}

.event-text p {
	line-height: 34px;
	font-size: 17px;
}

.bakix-details-tab .nav-tabs {
	padding-bottom: 20px;
}

#reply-title h4 {
	color: var(--km-heading);
	font-weight: 600;
	margin-bottom: 15px;
	line-height: 1;
}

.woocommerce p.stars a {
	position: relative;
	height: 1em;
	width: 1em;
	text-indent: -999em;
	display: inline-block;
	text-decoration: none;
	color: orange;
}

.kimox-rating span {
	margin-bottom: 5px;
	display: inline-block;
}

.product-review-box label {
	font-weight: 600;
	color: var(--km-heading);
	margin-bottom: 12px;
	display: block;
}

.kimox_review input,
.kimox_review textarea {
	width: 100%;
	line-height: 50px;
	padding: 0 30px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	border: 2px solid #f5f5f5;
	background: #f5f5f5;
	margin-bottom: 20px;
}

.kimox_review textarea {
	height: 130px !important;
}

.product-action.kimox-product-action .yith-wcwl-add-to-wishlist a::before {
	display: none;
}

span.feedback {
	opacity: 1;
	margin-right: 6px;
}

.yith-wcwl-wishlistexistsbrowse {
	margin-bottom: 20px;
}

.yith-wcwl-wishlistexistsbrowse a {
	color: #222;
}

.yith-wcwl-wishlistexistsbrowse {
	position: relative;
}

.yith-wcwl-wishlistexistsbrowse::before {
	width: 70px;
	height: 1px;
	background: #222;
	content: "";
	position: absolute;
	left: 0;
	bottom: -3px;
}

.cart-plus-minus {
	position: relative;
	display: inline-block;
}

.cart-plus-minus .qtybutton {
	font-size: 20px;
	color: var(--km-black);
	display: inline-block;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	height: 22px;
	width: 22px;
	background: var(--km-white);
	border-radius: 30px;
	line-height: 1;
	cursor: pointer;
	text-align: center;
}

.cart-plus-minus .minus {
	left: 7px;
}

.cart-plus-minus .plus {
	right: 14px;
}


/*  list comments */
.product-commnets .rating {
	margin-bottom: 10px;
}

.product-commnets .description p {
	line-break: anywhere;
	line-height: 1.4;
}

.product-commnets-list {
	display: flex;
	grid-gap: 20px;
}

.pro-commnets-text h4 {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 7px;
}

.pro-commnets-text .rating a i {
	color: orange;
}

.pro-commnets-text .rating a {
	margin-right: 2px;
}

.pro-commnets-text {
	flex: 1;
}

.product-commnets {
	padding-bottom: 50px;
}

/* wishlist */
.woocommerce table.shop_table {
	border: 0;
}

.woocommerce table.shop_table .body tr {
	position: relative;
}

.woocommerce table.shop_table th {
	border: 0;
	border-bottom: 1px solid var(--km-border);
	padding-bottom: 20px;
}

.woocommerce table.shop_table tbody td {
	border: 1px solid var(--km-border);
}

.woocommerce table.shop_table thead th {
	text-align: left;
}

.shop_table.wishlist_table th span {
	color: var(--km-heading);
	font-weight: 700;
	margin-bottom: 10px;
}

.woocommerce table.shop_table tbody td {
	border: 0;
	border-bottom: 1px solid #ddd;
}

.woocommerce a.remove {
	display: block;
	font-size: 1.5em;
	height: 1em;
	width: 1em;
	text-align: center;
	line-height: 1;
	border-radius: 100%;
	color: red !important;
	text-decoration: none;
	font-weight: 700;
	border: 0;
}

.woocommerce a.remove:hover {
	color: #fff !important;
	background: red;
}

.shop_table td.product-name a {
	font-size: 16px;
	color: var(--km-primary);
	margin-right: 20px;
}

.product-name .button.yith-wcqv-button {
	padding: 7px 15px;
	border-radius: 30px;
	color: var(--km-white);
	background-color: var(--km-primary);
	margin: 0;
	height: auto;
	margin-left: 15px;
	font-size: 14px;
	font-weight: 400;
	line-height: 17px;
}

.woocommerce table.shop_table td {
	text-align: left;
}

.woocommerce table.shop_table td {
	padding: 30px 12px;
}

.product-price span:first-child {
	margin-right: 6px;
}

.wishlist_table .product-stock-status span.wishlist-in-stock {
	color: #297e29;
}

span.woocommerce-Price-amount.amount {
	font-size: 16px;
	color: #222;
}

td.product-stock-status span {
	font-size: 15px;
}

td.product-add-to-cart a {
	background: var(--km-primary);
	color: var(--km-white);
	line-height: 28px;
	padding: 0 13px;
	border-radius: 30px;
}

.yith_wcwl_wishlist_footer .yith-wcwl-share ul {
	padding-left: 0;
}

/* cart */
tr.woocommerce-cart-form__cart-item.cart_item td img {
	width: 64px;
}

tr.woocommerce-cart-form__cart-item.cart_item td {}

tr.woocommerce-cart-form__cart-item.cart_item td {
	padding: 20px;
}

.woocommerce table.shop_table tbody td .product-remove a {
	margin-right: 0;
}

tr.woocommerce-cart-form__cart-item.cart_item .product-remove a {
	margin: 0;
	display: inline-block;
}

tr.woocommerce-cart-form__cart-item.cart_item .product-remove {
	text-align: center;
}

tr.woocommerce-cart-form__cart-item.cart_item {}

tr.woocommerce-cart-form__cart-item.cart_item td.product-name a {
	color: var(--km-heading);
	font-weight: 700;
	margin-bottom: 10px;
}

tr.woocommerce-cart-form__cart-item.cart_item td.product-name a:hover {
	color: var(--km-primary);
}

.cart.woocommerce-cart-form__contents th {
	color: var(--km-heading);
	font-weight: 700;
	margin-bottom: 10px;
}

#coupon_code {
	height: 52px;
	border: 1px solid #ebebeb;
	padding: 0 15px;
	margin-right: 10px;
	width: auto;
}

.coupon label {
	display: none;
}

.woocommerce #respond input#submit:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
	background-color: #d81324;
	text-decoration: none;
	background-image: none;
	color: var(--km-white);
}

.woocommerce #respond input#submit,
.woocommerce a.buttons,
.woocommerce button.button,
.woocommerce input.button {
	font-size: 14px;
	margin: 0;
	line-height: 1;
	cursor: pointer;
	position: relative;
	text-decoration: none;
	overflow: visible;
	padding: 19px 35px !important;
	font-weight: 700;
	border-radius: 3px;
	left: auto;
	color: var(--km-white);
	background-color: var(--km-black);
	border: 0;
	display: inline-block;
	background-image: none;
	box-shadow: none;
	text-shadow: none;
}

.cart_totals h2 {
	font-size: 24px;
}

table.shop_table.shop_table_responsive th,
table.shop_table.shop_table_responsive td {
	text-align: left;
	padding-left: 0;
}

#add_payment_method .wc-proceed-to-checkout a.checkout-button,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
.woocommerce-checkout .wc-proceed-to-checkout a.checkout-button {
	display: block;
	text-align: center;
	margin-bottom: 1em;
	font-size: 14px;
	padding: 0 20px;
	font-weight: 700;
	text-transform: inherit;
	background: #25262a;
	border: 1px solid var(--km-black);
	color: var(--km-white);
	line-height: 47px;
}


/*checkout*/
.woocommerce form .form-row label {
	color: #333;
	margin: 0 0 10px;
	display: block;
	width: 100%;
}

.woocommerce form .password-input,
.woocommerce-page form .password-input {
	width: 100%;
}

.woocommerce .col2-set .col-1,
.woocommerce-page .col2-set .col-1 {
	float: left;
	width: 48%;
	max-width: 48%;
}

.woocommerce .col2-set .col-2,
.woocommerce-page .col2-set .col-2 {
	float: right;
	width: 48%;
	max-width: 48%;
}

.woocommerce-input-wrapper {
	width: 100%;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea {
	box-sizing: border-box;
	width: 100%;
	margin: 0;
	outline: 0;
	line-height: normal;
	height: 50px;
	padding: 0 15px;
	border: 1px solid #c4c4c4;
}

.select2-container--default .select2-selection--single {
	background-color: var(--km-white);
	border-radius: 0;
	height: 50px;
	border: 1px solid #c4c4c4;
}

.select2-container .select2-selection--single .select2-selection__rendered {
	padding-left: 15px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
	height: 45px;
	position: absolute;
	top: 1px;
	right: 10px;
	width: 20px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
	line-height: 45px;
}

.woocommerce form .form-row .input-text,
.woocommerce-page form .form-row .input-text {
	box-sizing: border-box;
	width: 100%;
	height: 100px;
	padding: 20px;
}

#order_review .woocommerce-checkout-review-order-table thead th,
#order_review .woocommerce-checkout-review-order-table thead td {
	border: none;
	text-align: left;
}

#order_review table td,
#order_review table th {
	padding: 8px 0;
	border-top: 0;
	border: 0;
}

#order_review table td.product-total,
#order_review table th.product-total,
#order_review table tfoot td {
	text-align: right;
	border: 0;
}

.yith-wcwl-add-to-wishlist {
	margin-top: 0px;
	display: inline-block;
	margin: 0;
}

.hidden-title-form button i,
.wishlist-title a.show-title-form i,
.wishlist_manage_table tfoot a.create-new-wishlist i,
.wishlist_manage_table tfoot button.submit-wishlist-changes i,
.wishlist_table .add_to_cart.button i,
.wishlist_table .ask-an-estimate-button i,
.yith-wcwl-add-button>a i,
.yith-wcwl-wishlist-new button i,
.yith-wcwl-wishlist-search-form button.wishlist-search-button i {
	margin-right: 0;
}

.woocommerce table.woocommerce-checkout-review-order-table th {
	border: 0;
	text-align: left;
}

.woocommerce-info {
	border-top-color: #d81324;
}

.woocommerce-info::before {
	color: #d81324;
}

button#place_order {
	background: var(--km-primary);
	border: 1px solid transparent;
	color: var(--km-white);
	font-size: 14px;
	margin-left: 10px;
	padding: 10px 30px;
	text-transform: uppercase;
	font-weight: 500;
	line-height: 12px;
	height: 50px;
}

.woocommerce-form-coupon #coupon_code {
	width: 100%;
}

.value {
	display: flex;
	align-items: center;
}

.variations .nice-select {
	float: none;
}

.variations tr {
	margin-bottom: 10px !important;
	display: flex;
}

.reset_variations {
	margin-left: 15px;
}

table.variations tr label {
	min-width: 35px;
}

.woocommerce-privacy-policy-text {
	margin-bottom: 20px;
}

table.shop_table.woocommerce-checkout-review-order-table th,
table.shop_table.woocommerce-checkout-review-order-table td {
	color: #222;
}

a.added_to_cart.wc-forward {
	position: absolute;
	left: 50%;
	background: var(--km-primary);
	transform: translateX(-50%);
	color: var(--km-white);
	line-height: 1;
	padding-top: 0;
	width: 80%;
	line-height: 30px;
	height: 42px;
	line-height: 42px;
	border-radius: 30px;
	margin: 0 0;
}

/* prevent acc page  */
@media (max-width: 992px) {

	.woocommerce .col2-set .col-1,
	.woocommerce-page .col2-set .col-1 {
		float: left;
		width: 100%;
		margin-bottom: 50px;
		max-width: 100%;
	}

	.woocommerce .col2-set .col-2,
	.woocommerce-page .col2-set .col-2 {
		float: right;
		width: 100%;
		max-width: 100%;
	}

	/* wishlist */

	.woocommerce table.shop_table tbody td a {
		display: block;
		margin: 0 !important;
	}

	.woocommerce table.shop_table tbody td a:nth-child(2) {
		margin-top: 10px !important;
		text-align: center;
	}

	.woocommerce table.shop_table tbody td ins {
		text-decoration: none;
	}
}

.woocommerce form .form-row {
	padding: 3px;
	margin: 0 0 6px;
	margin-bottom: 15px;
}

.woocommerce form.checkout_coupon,
.woocommerce form.login,
.woocommerce form.register {
	padding: 40px 20px;
}

@media (max-width: 992px) {

	.woocommerce table.shop_table_responsive tr:nth-child(2n) td,
	.woocommerce-page table.shop_table_responsive tr:nth-child(2n) td {
		background-color: transparent;
	}

	tr.woocommerce-cart-form__cart-item.cart_item td.product-name a {
		margin-right: 0;
	}

	.woocommerce table.shop_table tbody td {
		padding-right: 0 !important;
	}

	.coupon {
		padding-bottom: 20px !important;
	}

	ul.shop_table.cart.wishlist_table.wishlist_view.responsive.mobile a {
		margin: 0;
	}

	span.woocommerce-Price-amount.amount {
		font-size: 14px;
	}

	table.item-details-table .label {
		color: #222;
		font-size: 13px !important;
		vertical-align: middle !important;
		padding: 0;
	}

	table.additional-info .label {
		font-size: 13px !important;
		color: #222;
	}

	table.additional-info .value {
		color: #222;
		font-size: 11px !important;
		line-height: 21px;
	}

	.product-add-to-cart a.product_type_simple.add_to_cart_button.ajax_add_to_cart.add_to_cart.alt {
		background: var(--km-primary);
		color: var(--km-white);
		display: inline-block !important;
		height: 36px;
		width: calc(100% - 60px);
		border-radius: 30px;
		line-height: 36px;
		float: left;
	}

	a.remove_from_wishlist {
		background: var(--km-primary);
		color: var(--km-white);
		width: 36px;
		display: inline-block;
		height: 36px;
		border-radius: 50%;
		text-align: center;
		line-height: 36px;
	}

	ul.shop_table.cart.wishlist_table.wishlist_view.responsive.mobile>* {
		margin-bottom: 44px;
	}
}

table.shop_table.cart.wishlist_table.wishlist_view.traditional.responsive tbody td {
	padding: 21px 12px;
}

@media (max-width: 1599px) and (min-width: 1200px) {
	.kimox_action_btn {
		width: 30px;
		height: 30px;
		line-height: 30px;
		font-size: 13px;
	}

	.kimox-sub-wrap .subscribe-title {
		margin-bottom: 30px;
	}

	.ktestimonial-text {
		padding: 30px 15px 80px 15px;
	}

	.pro-details-tab .tab-content {
		width: 75%;
	}

	.header-3-top-info li span {
		font-size: 13px;
	}

	.header-3-top-info li {
		margin-left: 28px;
	}

	.header-3-top-info li::before {
		display: none;
	}
}

@media (max-width: 991px) {
	.best-selling-item {
		display: inline-block;
	}

	.portfolio-area .swiper-pagination {
		display: none;
	}

	.shop-details-area .pro-details-tab {
		overflow: hidden;
		margin-bottom: 90px;
	}
}

@media (max-width: 767px) and (min-width: 576px) {
	.kimox_action_btn {
		width: 30px;
		height: 30px;
		line-height: 30px;
		font-size: 13px;
	}
}

@media (max-width: 1200px) {
	.footer-section-3 .footer__widget .footer-widget-title>* {
		color: #222;
	}
}

@media (min-width: 768px) and (max-width: 991px) {
	.ktestimonial-author {
		padding-left: 60px;
		margin-top: -76px;
	}
}

@media (max-width: 991px) {
	.footer-about-3-content {
		padding: 0 30px;
	}

	.blog-content-4 h3 {
		margin-bottom: 5px;
	}
}

@media (min-width: 768px) and (max-width: 991px) {
	.counter-bg {
		padding: 40px 27px;
		padding-bottom: 20px;
	}

	.testimonials-author-text h4 {
		font-size: 15px;
		line-height: 1.4;
	}

	.blog-date.kimox-blog-date-space {
		top: -80px;
	}

	.kimox-blog-list-3 {
		margin-left: 0;
	}
}

@media (min-width: 1200px) and (max-width: 1600px) {
	.section-title-3.service-title-8 br {
		display: none;
	}

	.kimox-client-user-title br {
		display: none;
	}

	.blog-date.kimox-blog-date-space {
		top: -80px;
	}

	.chart-point-text {
		padding-right: 0;
	}

	.kimox-blog-list-3 {
		margin-left: 0;
	}
}

.ktestimonial-author.kimox-testimoinal-author {
	margin-top: -80px;
}

@media (min-width: 992px) and (max-width: 1199px) {
	.blog-date.kimox-blog-date-space {
		top: -80px;
	}

	.sidebar__widget {
		padding: 30px;
	}

	.kimox-blog-list-3 {
		margin-left: 0;
	}

	.sources-sticker-text h3 {
		margin-top: 10px;
	}

	.pro-details-tab .tab-content {
		width: 74%;
	}

	.section-title-4 h2 {
		font-size: 35px;
	}

	.blog-content-4.kimox-blog-content h3 {
		font-size: 20px;
		line-height: 1.4;
		margin-bottom: 6px;
	}

	.blog-content-4.kimox-blog-content {
		padding: 26px 16px;
	}

	.transparent-header-4 .header-space {
		padding: 20px 65px;
	}

	.sources-right.kimox-source-right {
		padding-left: 10px;
	}

	.sources-review-content p span {
		padding-right: 6px;
	}
}

@media (max-width: 767px) {
	.blog-date.kimox-blog-date-space {
		top: -80px;
	}

	.kimox-blog-list-3 {
		margin-left: 0;
	}

	.kblog-text .kblog-meta span::after {
		display: none;
	}

	.pro-details-tab .custom-content {
		width: 81%;
		margin-right: 0;
	}

	.product-quantity .cart-plus-minus {
		margin-bottom: 0;
	}

	blockquote {
		padding: 30px 16px;
	}

	.kblog-text.kblog-text2 {
		padding: 20px;
	}

	.ktestimonial-author.kimox-testimoinal-author {
		padding-left: 40px;
	}

	.footer-about-3-content {
		padding: 0 4px;
	}

	.app-list img {
		max-width: 200px !important;
	}

	.kimox-about-area-9 {
		overflow: hidden;
	}

	.sources-review-content span {
		padding-right: 6px;
	}

	div.section-title-4 h2 {
		font-size: 25px;
		line-height: 1.4;
	}

	.kimox-feature-list-wrap ul li {
		width: 100%;
		float: none;
	}

	.blog-meta-4 ul li {
		margin-right: 6px;
	}

	.footer-link-space,
	.custom-footer-4-2 {
		padding-left: 0;
	}

	.benefit-progress>* {
		margin-bottom: 30px;
	}

	.kslider.kslider-2.z-index.text-center .kslider--btn {
		float: none;
	}
}

.kimox-hero-height .hero-content {
	z-index: 99;
	position: relative;
}

.portfolios-active.kimox-portfolio-active {
	padding-bottom: 70px;
}

@media (min-width: 576px) and (max-width: 767px) {
	.service-items {
		padding: 40px 20px;
	}
}

.product-action a::before {
	display: none;
}

.product-action ul li a {
	display: inline-block !important;
}

.footer-top-5 .footer-social-icon-5 ul li a:hover {
	color: var(--km-white);
}

@media (min-width: 992px) and (max-width: 1199px) {
	.testimonial-main.kimox-testimonial-main-4 {
		padding-left: 0px;
	}

	.testimonial-area-5 .swiper-button-prev.slide-prev {
		left: 0;
	}

	.testimonial-area-5 .swiper-button-next.slide-next {
		left: 8%;
	}

	.footer-link-space,
	.custom-footer-4-2 {
		padding-left: 10px;
	}

	.kimox-sub-wrap.subscribe-wrapper h1 {
		padding: 0 100px;
		margin-bottom: 50px;
	}
}

@media (max-width: 767px) {
	.product-action ul li a {
		width: 35px;
		height: 35px;
		line-height: 34px;
		font-size: 11px;
	}

	.kimox-selling-space .button.yith-wcqv-button {
		display: none !important;
	}

	.interior-area.interior-tp {
		overflow: hidden;
	}

	.banner-left-img.banner-img img {
		max-width: 70px;
	}

	.banner-right-img.banner-img img {
		max-width: 70px;
	}

	.banner-right {
		padding: 0 17px;
	}

	.section-title-5 .selling-title-mb {
		margin-bottom: 15px !important;
	}

	.section-title-5 {
		margin-bottom: 15px;
	}

	.subscribe-wrapper.kimox-sub-wrap .subscribe-title {
		margin-bottom: 35px;
	}
}

.footer-top-5 .footer-widget .footer-info-5 ul li a {
	line-height: 1.6;
}

.kimox-all-info-3 {
	display: block !important;
}

.bdevs-quick-view-images .nav-tabs {
	display: none;
}

#yith-quick-view-content .custom-content {
	float: right;
	width: 100%;
	margin-right: 40px;
}

.review-form input {
	width: 100%;
	height: 53px;
	background: #f5f5f5;
	border: 0;
	margin-bottom: 30px;
	border-radius: 3px;
}

.ktestimonial-author-img {
	margin-bottom: 13px;
	margin-top: 30px;
}

@media (min-width: 768px) and (max-width: 991px) {
	.kintro-text {
		margin-top: 110px;
	}

	.clients-user-text .clients-user-title br {
		display: none;
	}

	.subscribe-wrapper.kimox-sub-wrap .subscribe-title {
		margin-bottom: 30px;
	}
}

@media (max-width: 575px) {
	.best-selling-item.kimox-selling-space {
		max-width: 269px;
	}
}

@media (max-width: 991px) {
	.custom-footer-2 {
		padding-left: 0;
	}
}

.blog__details-wrapper .post-text p img {
	margin-bottom: 20px;
}

@media (max-width: 991px) {
	.shop-details-area .best-selling-item {
		display: block;
	}

	.kblog-text-title {
		line-height: 1.4;
	}
}

.pro-details-content .pro-quan-area .cart {
	align-content: center;
	display: flex;
	flex-wrap: wrap;
	grid-gap: 9px;
}

@media screen and (max-width: 1200px) {
	.footer-copyright-5.text-center {
		padding: 0;
	}
}

nav.woocommerce-MyAccount-navigation ul li {
	list-style: none;
}

nav.woocommerce-MyAccount-navigation ul li a {
	font-size: 16px;
	color: var(--km-primary);
}

.woocommerce-MyAccount-content a {
	color: var(--km-primary);
}

.main-menu ul li .sub-menu li.has-new {
	position: relative;
}

.main-menu ul li .sub-menu li.has-new::after {
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	content: "New";
	background: var(--km-primary);
	display: inline-block;
	line-height: 1;
	padding: 3px 6px;
	font-size: 10px;
	color: var(--km-white);
}

.blog-date span span {
	margin-bottom: 7px;
}

.brand-warpper {
	text-align: center;
}

.portfolios-text h3 a:hover {
	color: #F23367;
}

.cart_totals td {
	text-align: right !important;
}

.woocommerce #respond input#submit,
.woocommerce a.buttons,
.woocommerce button.button,
.woocommerce input.button {
	background-color: var(--km-primary);
}

#add_payment_method .wc-proceed-to-checkout a.checkout-button,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
.woocommerce-checkout .wc-proceed-to-checkout a.checkout-button {
	background-color: var(--km-primary);
	border-color: transparent;
}

.woocommerce-info .showcoupon,
a.woocommerce-privacy-policy-link {
	color: var(--km-primary);
}

.kimox-flex-right {
	justify-content: flex-end;
}

@media (min-width: 570px) and (max-width: 767px) {
	.banner-right-text {
		padding-top: 40px;
		padding-bottom: 13px;
	}
}

ul.woocommerce-error li {
	padding-left: 20px !important;
}

@media (max-width: 575px) {
	.woocommerce-cart-form__contents #coupon_code {
		width: 100%;
		margin-bottom: 20px;
	}

	table.shop_table.shop_table_responsive.cart.woocommerce-cart-form__contents .actions button {
		float: none;
		width: 100%;
	}
}

@media (min-width: 576px) and (max-width: 767px) {
	.interior-tp.kimox-interior-tp-1 {
		padding-top: 60px;
		padding-bottom: 40px;
	}

	.interior-tp.kimox-interior-tp-1 .interior-right {
		margin-top: 80px;
	}

	.interior-area.interior-tp .beauty-left {
		margin-bottom: 40px;
	}

	.interior-area.interior-tp .section-title-5 {
		margin-bottom: 60px;
	}

	.shop-area-pb.kimox-brand-shop-space-1 {
		margin-bottom: 60px;
	}

	.best-selling-filters ul {
		justify-content: flex-start;
	}

	.best-selling-filters ul li:first-child button {
		margin-left: 0;
	}

	.kimox-best-selling-area-space-2 {
		margin-bottom: 60px;
	}

	.footer-copyright-5.text-center {
		margin-bottom: 24px;
	}
}

@media (max-width: 767px) {

	.woocommerce #payment #place_order,
	.woocommerce-page #payment #place_order {
		margin-left: 0;
	}

	.banner-left-img.banner-img img,
	.banner-right-img.banner-img img {
		max-width: 140px;
	}

	.banner-right,
	.banner-left {
		flex-wrap: wrap;
	}

	.banner-left.d-flex,
	.banner-right.d-flex {
		padding: 29px 17px;
	}
}

@media (min-width: 768px) and (max-width: 991px) {
	.interior-area.interior-tp {
		overflow: hidden;
	}

	.best-selling-filters .kimox-flex-right {
		justify-content: flex-start;
	}

	.best-selling-filters .kimox-flex-right li:first-child button:first-child {
		margin-left: 0;
	}

	.custom-footer-4-2 {
		padding-left: 0;
	}

	.footer-copyright-5.text-center {
		margin-bottom: 12px;
	}

	.testimonial-area-5 .testimonial-main {
		padding-left: 0;
	}

	.best-selling-filters {
		margin-bottom: 30px;
	}
}

@media (max-width: 575px) {

	.banner-left.d-flex,
	.banner-right.d-flex {
		padding: 29px 17px;
	}

	.interior-area.interior-tp.kimox-interior-tp-2 .section-title-5 {
		padding: 34px 0;
	}
}

.subscribe-wrapper.kimox-sub-wrap .subscribe-title {
	margin-bottom: 40px;
}

.kimox-header-logo-6 img {
	max-width: 170px;
}

.features-area-6 .container .row>*:first-child .features-wrapper {
	border-left: 0;
}

div.kimox-custom-testimonial-wrapper-6 {
	padding-bottom: 100px;
	padding-top: 50px;
}

div.testimonial-main-6 {
	padding: 0 50px;
}

div.kimox-custom-testimonial-wrapper-6 div.testimonial-main-6 {
	padding: 0 50px;
}

div.kimox-custom-testimonial-wrapper-6 .testimonial-quote-6 span {
	position: absolute;
	right: 50px;
	top: 10px;
	color: var(--km-heading);
	font-size: 32px;
}

div.kimox-custom-testimonial-wrapper-6 .swiper-pagination-2.swiper-pagination-clickable.swiper-pagination-bullets {
	left: 50px;
}

@media (max-width: 767px) {
	div.kimox-custom-testimonial-wrapper-6 div.testimonial-main-6 {
		padding: 0 14px;
	}

	div.kimox-custom-testimonial-wrapper-6 .swiper-pagination-2.swiper-pagination-clickable.swiper-pagination-bullets {
		left: 14px;
	}

	div.kimox-custom-testimonial-wrapper-6 .testimonial-review-content-6 p {
		font-size: 16px;
		line-height: 26px;
	}

	div.kimox-custom-testimonial-wrapper-6 {
		padding-top: 35px;
	}

	div.kimox-custom-testimonial-wrapper-6 .testimonial-quote-6 span {
		right: 19px;
		top: -25px;
	}
}

.features-area-6 .container .row>*:first-child .features-wrapper .features-wrapper-single {
	padding-left: 0;
}

.kimox-custom-testimonial-wrapper-6 .swiper-button-next,
.kimox-custom-testimonial-wrapper-6 .swiper-button-prev {
	background-image: none;
}

.portfolio-btn-6 {
	display: inline-block;
	height: 50px;
	border: 1px solid var(--km-heading);
	color: var(--km-heading);
	line-height: 50px;
	padding: 0 26px;
	font-size: 16px;
}

.portfolio-btn-6:hover {
	border-color: transparent;
	color: var(--km-white);
	background-color: var(--km-heading);
}

.info-area-inner-6 {
	width: 230px;
	overflow: auto;
}

.main-menu.fix.main-menu-6 {
	overflow: visible;
}

.info-area.info-opened .info-area-inner-6 {
	overflow: visible;
}

.main-menu.main-menu-6 ul li .sub-menu {
	background: var(--km-white);
	left: auto;
	right: 160px;
}

@media (max-width: 767px) {
	.main-menu.main-menu-6 ul li .sub-menu {
		background: var(--km-white);
		left: auto;
		right: 84px;
		padding: 19px 0;
		width: 227px;
	}

	div.hero-content-6 h2 {
		font-size: 55px;
		line-height: 1.4;
	}

	div.hero-content-6 h2 br {
		display: none;
	}

	div.hero-area-6 {
		min-height: 520px;
	}

	div.hero-space-6 .hero-content-6 {
		padding-top: 40px;
	}
}

@media (max-width: 575px) {
	div.hero-content-6 h2 {
		font-size: 35px;
		line-height: 1.4;
	}

	div.hero-content-6 h2 br {
		display: none;
	}
}

.team-wrapper-6 .team-author-btn i {
	vertical-align: middle;
	display: inline-block;
}

.header-space-6 .info-bar-6.info-toggle-btn {
	transform: translateY(2px);
}



/*----------------------------------------*/
/*  07. TEAM CSS START
/*----------------------------------------*/
.team__area {
	position: relative;
}

.team__area::after {
	position: absolute;
	content: "";
	bottom: -25px;
	left: 0;
	width: 100%;
	/*background: url("../img/bg/wave-bg.png");*/
	height: 140%;
	z-index: -1;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.team__area::after {
		height: 132%;
	}
}

.team__item {
	padding: 30px 35px;
	background: #423d7c;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
}

.team__item-add {
	background: var(--km-white);
}

.team__item-add::after {
	display: none;
}

.team__item::after {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	/*  background-image: -moz-linear-gradient(-130deg, #dd24ff 0%, #841ff9 100%);
      background-image: -webkit-linear-gradient(-130deg, #dd24ff 0%, #841ff9 100%);
      background-image: -ms-linear-gradient(-130deg, #dd24ff 0%, #841ff9 100%);
      background-image: linear-gradient(-130deg, #dd24ff 0%, #841ff9 100%);*/
	opacity: 0;
}

.team__item:hover::after {
	opacity: 1;
}

.team__item:hover .team__info {
	top: 35px;
	visibility: visible;
	opacity: 1;
}

.team__item:hover .team__social {
	bottom: 35px;
	visibility: visible;
	opacity: 1;
}

.team__add {
	padding: 113px 0;
}

.team__add a {
	font-size: 50px;
	color: #9895b4;
}

.team__add a:hover {
	color: #4636ff;
}

div.team__thumb img {
	width: 200px;
	height: 200px;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
}

.team__content h3 {
	font-size: 22px;
	margin-bottom: 0;
	color: var(--km-white);
	text-transform: capitalize;
}

.team__content span {
	font-size: 15px;
	color: #cac9d3;
}

.team__info {
	position: absolute;
	top: 10px;
	left: 30px;
	z-index: 1;
	visibility: hidden;
	opacity: 0;
	-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;
}

.team__info h3 {
	font-size: 22px;
	margin-bottom: 0;
	color: var(--km-white);
	text-transform: capitalize;
}

.team__info span {
	font-size: 15px;
	color: #cac9d3;
}

.team__social {
	position: absolute;
	bottom: 10px;
	left: 30px;
	z-index: 1;
	visibility: hidden;
	opacity: 0;
	-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;
}

.team__social ul li {
	display: inline-block;
	margin-right: 7px;
}

.team__social ul li a {
	display: inline-block;
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	background: #7b23de;
	font-size: 14px;
	color: var(--km-white);
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
}

.team__social ul li a:hover {
	background: var(--km-white);
	color: #7b23de;
}

.team__details-inner {
	-webkit-box-shadow: 0px 50px 80px 0px rgba(3, 0, 53, 0.1);
	-moz-box-shadow: 0px 50px 80px 0px rgba(3, 0, 53, 0.1);
	box-shadow: 0px 50px 80px 0px rgba(3, 0, 53, 0.1);
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
}

.team__details-shape {
	right: -11%;
	bottom: -16%;
	z-index: -1;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
	.team__details-shape {
		right: 0;
	}
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.team__details-shape {
		right: 0;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.team__details-shape {
		right: -3%;
		bottom: -7%;
	}
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
	.team__details-shape {
		right: -3%;
		bottom: -7%;
	}
}

@media (max-width: 575px) {
	.team__details-shape {
		right: -3%;
		bottom: -5%;
	}
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.team__details-img {
		margin-right: 30px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.team__details-img {
		margin-right: 0px;
	}
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
	.team__details-img {
		margin-right: 0px;
	}
}

@media (max-width: 575px) {
	.team__details-img {
		margin-right: 0px;
	}
}

.team__details-img img {
	-webkit-border-radius: 30px 0 0 30px;
	-moz-border-radius: 30px 0 0 30px;
	border-radius: 30px 0 0 30px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.team__details-content {
		padding-top: 40px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.team__details-content {
		padding: 40px;
	}
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
	.team__details-content {
		padding: 40px;
	}
}

@media (max-width: 575px) {
	.team__details-content {
		padding: 40px;
	}
}

.team__details-content>span {
	font-size: 20px;
	display: inline-block;
	margin-bottom: 7px;
}

.team__details-content h3 {
	font-size: 30px;
	margin-bottom: 15px;
}

.team__details-content p {
	margin-bottom: 35px;
	padding-right: 80px;
}

.team__details-contact ul li {
	margin-bottom: 8px;
	display: flex;
}

.team__details-contact ul li .icon i {
	line-height: 27px;
	color: #4636ff;
	margin-right: 15px;
}

.team__details-contact ul li .text span {
	font-weight: 500;
}

.team__details-social ul li {
	display: inline-block;
	margin-right: 7px;
}

.team__details-social ul li a {
	position: relative;
	display: inline-block;
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	background: #f1f1f1;
	font-size: 14px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
}

.team__details-social ul li a:hover {
	background: #4636ff;
	color: var(--km-white);
}

.team__details-info h4 {
	font-size: 40px;
	font-weight: 700;
	margin-bottom: 25px;
}

.team__details-info p {
	margin-bottom: 25px;
}

/* btn */
.z-btn {
	display: inline-block;
	height: 54px;
	line-height: 48px;
	border: 2px solid #4636ff;
	background: #4636ff;
	color: var(--km-white);
	padding: 0 30px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	font-weight: 700;
	text-transform: capitalize;
	min-width: 160px;
	text-align: center;
}

.z-btn i {
	margin-left: 8px;
}

a.z-btn:hover {
	background: var(--km-white);
	color: #4636ff;
}

.header-area-5.header-pad-5 .mean-container .mean-nav {
	display: none;
	position: fixed;

}

.features-icon i {
	font-size: 35px;
}

@media (max-width: 1200px) {
	.header-sms {
		right: 0;
	}
}

.footer-about-3::before {
	top: -114px;
}

@media (min-width: 768px) and (max-width: 991px) {
	.footer__widget.custom-footer-3-4 {
		padding-left: 0;
	}

	#yith-quick-view-content div.summary {
		padding-left: 0;
	}

	.summary-content .details-pro-price {
		margin-bottom: 8px;
	}

	.woocommerce-product-details__short-description p {
		padding-bottom: 20px;
	}

	.woocommerce-product-details__short-description p {
		font-size: 15px;
		line-height: 26px;
	}

	div.beauty-left-img::before {
		right: auto;
		left: 0;
	}

	div.interior-right-img::before {
		right: 0;
		left: auto;
	}

	div.testimonial-author-des {
		padding-left: 0;
	}

	div.testimonial-area-5 .testimonial-main {
		padding-right: 0;
	}

	div.shop-brand-right {
		padding-right: 0;
	}

}

@media (min-width: 1400px) and (max-width: 1599px) {
	.ktestimonial-author.kimox-testimoinal-author.kimox-testimonial-author-1-update {
		padding-left: 21px;
	}
}

@media (min-width: 1200px) and (max-width: 1399px) {
	.ktestimonial-author.kimox-testimoinal-author.kimox-testimonial-author-1-update {
		padding-left: 20px;
	}
}

@media (min-width: 992px) and (max-width: 1199px) {
	.section-title-3.mb-30.service-title-8.kimox-section-title-left-1-updated br {
		display: none;
	}
}

@media (max-width: 575px) {
	div.portfolio-content-6 {
		padding: 106px 51px;
	}

	div.choose-right .accordion-button::after {
		display: none;
	}
}

div.best-selling-item .product-wrapper {
	left: 10px;
	right: 10px;
}

.product-title h4 a:hover {
	color: var(--km-primary);
}

@media (min-width: 768px) and (max-width: 991px) {
	.pro-quan-area .site-btn.brand-btn {
		padding: 0 46px;
	}
}

@media (max-width: 767px) {
	#yith-quick-view-content .custom-content {
		float: none;
		margin-right: 0;
	}

	.bdevs-quick-view-images {
		width: 100%;
		float: none;
		margin-bottom: 20px;
	}

	#yith-quick-view-content div.summary {
		padding-left: 0;
	}

	.bdevs-quick-view-images .tab-content img {
		margin-left: 0;
	}

	.bdevs-quick-view-images .bdevs-quick-view-images {
		margin-left: 0;
	}

	#yith-quick-view-modal.open .yith-wcqv-main {
		background: var(--km-white);
		overflow-y: auto;
		padding: 0;
	}

	#yith-quick-view-content div.summary {
		width: 100%;
		padding: 7px 18px;
	}

	.woocommerce-product-details__short-description p {
		font-size: 16px;
		line-height: 28px;
	}

	.yith-wcqv-wrapper #yith-quick-view-close {
		background: var(--km-primary);
		color: var(--km-white);
		opacity: 1;
		border: 0;
		line-height: 20px;
	}
}

@media (max-width: 414px) {
	.product-quantity .cart-plus-minus {
		margin-bottom: 20px;
	}
}

@media (max-width: 768px) {
	.kimox-page-content .coupon {
		float: none !important;
	}

	.woocommerce .cart-collaterals .cart_totals,
	.woocommerce-page .cart-collaterals .cart_totals {
		float: none;
		width: 100%;
	}
}

a.added_to_cart.wc-forward {
	z-index: 9;
	border: 0;
}

div.footer-social-4 ul li a:hover {
	color: var(--km-white);
}

.hero-all-shape>img:nth-child(1) {
	animation-duration: 5s;
}

.hero-all-shape>img:nth-child(3) {
	animation-duration: 5s;
}

/* Chrome, Safari, Edge, Opera */
.cart-plus-minus input::-webkit-outer-spin-button,
.cart-plus-minus input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

/* Firefox */
.cart-plus-minus input[type=number] {
	-moz-appearance: textfield;
}

#reviews #commentform .post-input textarea {
	display: none;
}

.woocommerce #review_form #respond textarea {
	resize: none;
}

/* // updated css  */
.sidebar__widget .wp-block-heading {
	font-size: 20px;
	font-weight: 700;
	text-transform: uppercase;
	position: relative;
}

.yith-wcwl-add-to-wishlist .feedback .yith-wcwl-icon {
	margin-right: 5px;
	color: var(--km-primary);
}

.pro-details-tab .nav-tabs .nav-item .nav-link {
	cursor: pointer;
}

.pro-details-tab .nav-tabs .nav-item.show .nav-link,
.pro-details-tab .nav-tabs .nav-link.active {
	color: #495057;
	background-color: var(--km-primary);
	border-color: #dee2e6 #dee2e6 #fff;
}