/* main css */
@import url('https://fonts.googleapis.com/css2?family=Chivo:ital,wght@0,100..900;1,100..900&display=swap');
@import url("smoothproducts.css");

:root {
  --white: #fff;
  --black: #000;
  --grey: #eee;
  --white-rgb: 255, 255, 255;
  --black-rgb: 0, 0, 0;
  --color1: #9b365e;
  --color2: #3c2b86;
  --color3: #00022b;
  --color4: #457b9d;
  --color5: #1d3557;
  --transition: all 0.3s ease-in-out;
  --shadow: 0px 4px 25px 0px #0000000f;
}

html, body {
	/* overflow-x: hidden; */
}
body {
	background-color: var(--white);
    font-family: "Chivo", sans-serif;
	font-size: 16px;
	line-height: 26px;
	font-weight: 400;
	overflow-x: hidden;
}

a {
	text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
	color: var(--color1);
}

.bg-overlay {
	position: relative;
}
.bg-overlay:before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	content: '';
	opacity: 0.8
}
.bg-overlay.theme-overlay:before {
	background-color: var(--color5);
}
.bg-overlay.white-overlay:before {
	background-color: #fff;
}
.bg-overlay.black-overlay:before {
	background-color: #000;
}
.bg-overlay .container {
	position: relative;
	z-index: 1;
}

.text-justify { text-align: justify; }

.bg-1 { background-color: var(--color1); }
.bg-2 { background-color: var(--color2); }
.bg-3 { background-color: var(--color3); }
.bg-4 { background-color: var(--color4); }
.bg-5 { background-color: var(--color5); }
.bg-grey { background-color: var(--grey); }

/* header */
header { 
	position: relative;
}
.topbar p { 
	color: var(--white);
	margin: 0; 
}
.topbar .item {
	display: inline-flex;
	align-items: center;
	column-gap: 10px;
    color: var(--white);
}
.topbar .item i {
    text-align: center;
	font-size: 14px;
}
.topbar .item span {
	display: block;
}
.topbar .item a {
	font-size: 16px;
	color: var(--white);
	text-decoration: none;
}
.topbar .social {
    position: relative;
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    background: rgba(0, 0, 0, 0.20);
    border-radius: 0px;
    padding: 5px 25px;
}
.social li {
	display: block;
	color: var(--white);
}
.social li a {
	display: flex;
	width: 35px;
	height: 35px;
	border: 1px solid rgba(var(--white-rgb), .2);
	border-radius: 50%;
	align-items: center;
	justify-content: center;
	transition: var(--transition);
}
.social li img {
	width: 16px;
	filter: brightness(0) invert(1);
}
.social li a:hover {
	background-color: var(--white);
}
.social li a:hover img {
	filter: none;
}

.navbar {
	position: relative;
	z-index: 10;
	background-color: var(--black);
	border-top: 1px solid rgba(var(--white-rgb), .3);
	border-bottom: 1px solid rgba(var(--white-rgb), .3);
	/*backdrop-filter: blur(5px);*/
	/* box-shadow: 0 10px 10px rgba(0,0,0,0.2); */
}
.navbar.navbar-light { background-color: var(--white);}
.logo,
.navbar-brand {
	display: block;
	font-size: 36px;
	font-weight: bold;
	color: var(--white);
	padding: 0;
}
.navbar.navbar-light .navbar-brand {
	color: var(--black);
}
.midbar a {
	color: var(--white);
}
.navbar-right .btns,
.midbar .btns {
	position: relative;
	display: inline-flex;
	gap: 20px;
}
.navbar-right .btns a {
	color: var(--black);
}
.navbar-right .btns a,
.midbar .btns a {
	position: relative;
}
.navbar-right .btns span,
.midbar .btns span {
	position: absolute;
	top: -10px;
	right: -10px;
	display: flex;
	width: 20px;
	height: 20px;
	justify-content: center;
	align-items: center;
	background-color: var(--color2);
	color: var(--white);
	font-size: 10px;
	border-radius: 50%;
}

.navbar-brand img { 
	height: 120px; 
}
.nav-item {
	position: relative;
	padding: 0 10px;
}
.nav-item .nav-link {
	color: var(--white);
	font-size: 15px;
	padding: 12px;
	text-transform: uppercase;
}
.navbar.navbar-light .nav-item .nav-link {
	color: var(--black);
	padding: 25px 12px;
}
.nav-item:hover .nav-link {
	color: var(--color1);
}
.navbar-toggler { border:none;}
.navbar-toggler:focus { box-shadow:none;}
/* .navbar-toggler-icon { filter: brightness(0) invert(1);} */
.nav-item.dropdown li:not(:last-child) {
	border-bottom: 1px solid #e3e3e3;
}
.dropdown-toggle::after {
	font-size: 12px;
	content: '\f107';
	font-family:"FontAwesome";
	border: none;
	vertical-align: bottom;
}
.dropdown-item {
	padding: 10px 20px;
	transition: var(--transition);
}
.dropdown-item:hover {
	color: var(--color1);
	background-color: var(--white);
	padding-left: 25px;
}
.nav-item.dropdown .dropdown-menu {
	position: absolute;
	left: 0;
	top: 100%;
	z-index: 99;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0;
	width: 250px;
	border: 1px solid #eaecf0;
	border-radius: 0;
	box-shadow: var(--shadow);
	background-color: var(--white);
	transition: var(--transition);
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
}
.nav-item.dropdown:hover .dropdown-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0px);
}
.nav-item.dropdown:hover .dropdown-menu li a {
	position: relative;
}
/*********************/
#searchbox {
	display: none;
	position: fixed;
	z-index: 11;
	inset: 0;
}
#searchbox .closebox {
	position: absolute;
	top: 0;
	right: 0;
	color: var(--white);
	padding: 10px;
	font-size: 24px;
}
#searchbox .wrap {
	display: flex;
	justify-content: center;
	/*align-items: center;*/
	width: 100%;
	height: 100vh;
	background-color: rgba(var(--black-rgb),.5);
	backdrop-filter: blur(4px);
}
#suggestion-box {
    height:85dvh;
    overflow:auto;
}
/* width */
#suggestion-box::-webkit-scrollbar {
  width: 8px;
}
/* Track */
#suggestion-box::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey; 
  border-radius: 10px;
  background: var(--white); 
}
/* Handle */
#suggestion-box::-webkit-scrollbar-thumb {
  background: var(--color1); 
  border-radius: 10px;
}
/* Handle on hover */
#suggestion-box::-webkit-scrollbar-thumb:hover {
  background: var(--color6); 
}
.wrap .inputbox {
	position: relative;
	width: 60%;
}
.wrap .inputbox input {
	background-color: transparent;
	border-radius: 0;
	color: var(--white);
	border: none;
	border-bottom: 1px solid var(--white);
	padding: 10px 0;
	box-shadow: none;
}
.wrap .inputbox input::placeholder {
	color: var(--white);
}
.wrap .inputbox button {
	position: absolute;
	top: 8px;
	right: 0;
	/*bottom: 0;*/
	border: none;
	background-color: transparent;
	color: var(--white);
}
/*********************/
/* slider */
.slider .item {
	position: relative;
}
.slider .item::before {
	position: absolute;
	inset: 0;
	/* content: ''; */
	background: linear-gradient(0deg,rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
}
.slider .item img {
	width: 100%;
	height: 500px;
	object-fit: cover;
}
.slider .item .desc {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: start;
	padding-left:100px;
	max-width: 660px;
}
.slider .item .desc h1 {
	font-size: 48px;
	font-weight: 800;
	color: var(--black);
	letter-spacing: 2px;
	text-transform: uppercase;
}
.slider .owl-item.active h1,
.slider .owl-item.active p {
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	animation-name: fadeInUp;
	animation-delay: 0.5s;
}
.slider .owl-item.active p {
	animation-name: fadeInDown;
	animation-delay: 1s;
}
.slider .owl-nav > div {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 50px;
	height: 50px;
	background-color: var(--color2);
	color: var(--white);
	line-height: 50px;
	text-align: center;
	border-radius: 50%;
	font-size: 20px;
	transition: var(--transition);
	box-shadow: 0 0 10px rgba(0,0,0,0.2);
	opacity: 0.4;
}
.slider .owl-nav > div.owl-prev { left: 15px;}
.slider .owl-nav > div.owl-next { right: 15px;}
.slider:hover .owl-nav > div { opacity: 1;}
.slider .owl-nav > div:hover { background-color: var(--white); color: var(--color2);}
.slider .owl-dots {
	position: absolute;
	bottom: 20px;
	left: 0;
	right: 0;
	display: flex;
	justify-content: center;
	align-items: flex-end;
	gap:10px;
	margin: 0;
}
.slider .owl-dots > div {
	position: relative;
	width: 40px;
	height: 6px;
	background-color: transparent;
	color: var(--white);
	overflow: hidden;
	/* border-radius: 6px; */
}
.slider .owl-dots > div:before,
.slider .owl-dots > div:after {
	position: absolute;
	content: '';
	height: 100%;
	top: 0;
	left: 0;
	/* border-radius: 6px; */
}
.slider .owl-dots > div:before {
	background-color: rgba(var(--white-rgb), .4);
	width: 100%;
}
.slider .owl-dots > div.active {
	height: 10px;
}
.slider .owl-dots > div.active:after {
	background-color: var(--white);
	animation: owldot 4s;
  	animation-fill-mode: forwards;
}
@keyframes owldot {
	from {width: 0;}
	to {width: 100%;}
}
/********************* /
.owl-carousel .owl-dots {
	display: flex;
	justify-content: center;
	gap:10px;
	margin-top: 30px;
}
.owl-carousel .owl-dots > div {
	width: 7px;
	height: 7px;
	border-radius: 7px;
	background-color: var(--black);
}
.owl-carousel .owl-dots > div.active {
	background-color: var(--color2);
	outline: 1px solid var(--color2);
	outline-offset: 5px;
}
/*********************/
.btn1 {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	vertical-align: middle;
	-webkit-appearance: none;
	appearance: none;
	outline: none !important;
	font-size: 16px;
	line-height: 16px;
	color: var(--white);
	padding: 13px 20px;
	border-radius: 35px;
	border: none;
	background-color: var(--color2);
	z-index: 2;
	gap: 8px;
	text-align: center;
	overflow: hidden;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}
.btn1::before {
  content: "";
  background-color: var(--color3);
  position: absolute;
  top: 0;
  width: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  clip-path: circle(0% at 50% 50%);
  transition: all cubic-bezier(0, 0.96, 0.58, 1.1) 0.8s;
  z-index: -1;
}
.btn1:hover::before {
  clip-path: circle(100% at 50% 50%);
  transition: all cubic-bezier(0, 0.96, 0.58, 1.1) 4s;
}
.btn1:hover {
  color: var(--white);
}

.btn2 {
	position: relative;
	display: inline-block;
	background-color: var(--color2);
	color: var(--white);
	padding: 10px 20px;
	overflow: hidden;
	transition: var(--transition);
	border: #2a9d8f;
}
.btn2::before {
	position: absolute;
	inset: 0;
	background-color: var(--color1);
	content: '';
	transform: translateX(-100%);
	transition: var(--transition);
}
.btn2 span {
	position: relative;
	z-index: 1;
}
.btn2:hover::before {
	transform: translateX(0);
}
/*********************/
.heading {
    position: relative;
    z-index: 1;
    margin-bottom: 50px;
}
.heading span {
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 18px;
    font-weight: 700;
    color: var(--color3);
    position: relative;
    border-bottom: 2px solid var(--color3);
}
.heading h2 {
    position: relative;
	display: inline-flex;
	flex-direction: column;
	align-items: center;
    font-size: 36px;
    font-weight: 600;
    color: var(--color2);
    text-transform: capitalize;
    margin-bottom: 0;
}
.heading h2::after {
	content:'';
    position: relative;
	width: 40px;
	height: 2px;
	background-color: var(--color2);
	margin: 10px 0;
}
/*********************/
.welcome {
	position: relative;
}
.welcome figure {
	position: relative;
}
.welcome figure img {
	border-radius: 15px;
}
.welcome figure .img1 {
	position: absolute;
	top: -20px;
	left: -50px;
	width: 100px;
	z-index: -1;
}
.welcome figure .img2 {
	position: absolute;
	bottom: -30px;
	left: -50px;
	width: 200px;
	z-index: -1;
	opacity: 0.5;
}
.welcome figure:after {
	position: absolute;
	/*content: '';*/
	top: 0;
	left: 0;
	bottom: 0;
	width:calc(100% - 25px);
	height: 100%;
	border:4px solid var(--color1);
	transform: scale(1.05);
	z-index: -1
}
.welcome .btn {
	background-color: #efcda5;
	border-color: #666;
	font-weight: 500
}
.welcome .btn:hover {
	background-color: #111;
	border-color: #111;
	color: #fff;
}

/*********************/
.banner .item {
	position: relative;
	display: flex;
	flex-direction: column;
	overflow: hidden;
}
.banner .item img {
	transition: var(--transition);
}
.banner .item .desc {
	position: absolute;
	inset: 0;
	padding: 40px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.banner .item h2 {
	color: inherit;
	text-transform: uppercase;
	width: 50%;
	font-size: 40px;
	font-weight: 700;
}
.banner .item p {
	width: 60%;
}
.banner .item:hover img {
	transform: scale(1.1);
}
.banner.type2 .item h2,
.banner.type2 .item p {
	width: 100%;
}

/*********************/
/* home products */
.products .item figure {
	position: relative;
	margin-bottom: 0;
	overflow: hidden;
}
.products .item figure img {
	width: 100%;
}
.products .item figure .img2 {
	position: absolute;
	inset: 0;
	opacity: 0;
	transition: var(--transition);
}
.products .item .img img {
	aspect-ratio: 1/1;
	object-fit: cover;
	border-radius: 40px 40px 40px 0;
}
.products .item .btn-cart {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: var(--black);
	padding: 10px;
	color: var(--white);
	transform: translateY(100%);
	transition: var(--transition);
}
.products .item .btn-icon {
	position: absolute;
	top: 0;
	right: 0;
	display: flex;
	flex-direction: column;
	padding: 10px;
	gap:5px;
}
.products .item .btn-icon a {
	color: var(--black);
	transform: scale(0);
	transition: var(--transition);
}
.products .item p {
	display: inline-flex;
	gap:15px;
	margin-bottom: 0;
}
.products .item p strike {
	color: rgba(var(--black-rgb), .4);
}
.products .item:hover figure .img2 {
	opacity: 1;
}
.products .item:hover .btn-cart {
	transform: translateY(0);
}
.products .item:hover .btn-icon a {
	transform: scale(1);
}
/*********************/
.products.type2 .item .btn-icon {
	left: 0;
	right: auto;
}
.products.type2 .item .btn-icon a {
	width: 40px;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: var(--white);
	border-radius: 50%;
	box-shadow: 0 0 10px rgba(var(--black-rgb), .1);
}
.products.type2 .item .btn-icon a:hover {
	background-color: var(--black);
	color: var(--white);
}
.products.type2 .item figure {
	margin-bottom: 10px;
}
.products.type2 .item figure .btn-cart {
	background-color: transparent;
	transform: none;
	text-align: center;
	opacity: 0;
	background-color: rgba(var(--black-rgb),.2);
	top: 0;
	display: flex;
	align-items: end;
}
.products.type2 .item figure .btn2 {
	display: inline-flex;
	margin: 0 auto;
	border-radius: 30px;
	padding: 7px 20px;
	font-size: 14px;
}
.products.type2 .item:hover figure .btn-cart {
	opacity: 1;
}
.products.type2 .item:hover figure .img2 {
	opacity: 1;
	transform: scale(1.1);
	transition: transform 3s;
}
/*********************/
/* category */
.category .item {
	display: block;
}
.category .item figure {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background-color: var(--grey);
}
.category .item img {
	height: 60px;
}
.category .item h4 {
	font-size: 18px;
	color: var(--black);
}
.category .owl-nav > div {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}
.category .owl-nav > div img {
	height: 40px;
}
.category .owl-nav .owl-prev {
	left: 0;
}
.category .owl-nav .owl-prev img {
	transform: rotate(180deg);
}
.category .owl-nav .owl-next {
	right: 0;
}
/*********************/
.category.type2 .item {
	position: relative;
	height: 100%;
	overflow: hidden;
}
.category.type2 .item img {
	width: 100%;
	height: 100%;
	aspect-ratio: 1/1;
	object-fit: cover;
	transition: var(--transition);
}
.category.type2 .col-md-12 .item img {
	aspect-ratio: 2/1;
}
.category.type2 .item div {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 20px;
}
.category.type2 .item:hover img {
	transform: scale(1.1);
}
/*********************/
/* counter */
.counter_wrap {
	background-size: cover;
	background-attachment: fixed;
}
.counter_wrap h1 {
	font-size: 60px;
	font-weight: 700;
	color: #efcda5;
}
/*********************/
/* testimonials */
.testimonials {}
.testimonials .item {
	position: relative;
	display: flex;
	gap:25px;
}
.testimonials .item .text {
	position: relative;
}
.testimonials .item .text:after {
	position: absolute;
	top:20px;
	left: -35px;
	content: '”';
	font-size: 5em;
	opacity: 0.5;
}
.testimonials .item img {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	margin: 0 auto;
}
.testimonials.type2 .item {
	background-color: rgba(var(--white-rgb), .2);
	padding: 30px;
	flex-direction: column;
	text-align: center;
	border-radius: 20px;
	color: var(--white);
}
.testimonials.type2 .item h4 {
	color: inherit;
}
.testimonials.type2 .item .text:after {
	display: none;
}
/*********************/
/* gallery */
.gallery {}
.gallery .item {
	display: block;
	position: relative;
	outline: 2px solid #fff;
	outline-offset: -10px;
}
.gallery .item:after {
	font-family:'FontAwesome';
	font-size: 30px;
	color: #fff;
	position: absolute;
	text-align: center;
	content: '\f055';
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	transform: scale(0);
	transition: 1s;
}
.gallery .item:before {
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0,0,0,0.5);
	transform: scale(0);
	transition: 0.5s;
}
.gallery .item:hover:after {
	transform: scale(1);
}
.gallery .item:hover:before {
	transform: scale(1);
}
/*********************/
/*********************/
.features {
	counter-reset: process;
}
.features .item {
	position: relative;
	height: 100%;
	padding: 20px 25px;
	background: var(--white);
	border-radius: 50px 50px 50px 0px;
	box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
	z-index: 1;
}
.features .item .count {
	position: absolute;
	right: 30px;
	top: 30px;
}
.features .item .count:before {
	position: absolute;
	right: 0;
	top: 0;
	font-size: 60px;
	font-weight: 800;
	-webkit-text-stroke: 2px var(--color1);
	-webkit-text-fill-color: transparent;

	counter-increment: process;
	content: "0" counter(process) "";
}
.features .item .icon {
	width: 80px;
	height: 80px;
	line-height: 65px;
	border-radius: 50%;
	text-align: center;
	color: var(--white);
	font-size: 60px;
	background: var(--color2);
	margin-bottom: 25px;
	box-shadow: 5px 5px 0 #F2F3F5;
	position: relative;
	transition: all .5s ease-in-out;
}
.features .item:hover .icon {
	transform: rotateY(360deg);
}
.features .item .icon img {
	width: 48px;
	filter: brightness(0) invert(1);
}
.features .item .feature-content{
	flex: 1;
}
.features .item .feature-content h4 {
	color: var(--color5);
	font-size: 22px;
	font-weight: 600;
	margin-bottom: 5px;
}
.features .item .feature-content p {
	font-size: 14px;
	color: var(--color5);
	margin-bottom: 0;
}
/* form */
.enquiry_wrap {
	position: relative;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	z-index: 1;
}

.form1 {
	border-radius: 80px 80px 80px 0;
	box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
}
.form1 .header2 {
	background: var(--color2);
	border-radius: 50px 50px 50px 0;
	padding: 20px 30px;
}
.form1 form {
	border-radius: 50px 50px 50px 0;
	padding: 20px 30px;
}

.wrap-input-8 .input {
  width: 100%;
  box-sizing: border-box;
  letter-spacing: 1px;
  background-color: #F2F3F5;
  border: 1px solid #ddd; 
  padding: 7px 14px 9px; 
  transition: 0.4s;
}
.wrap-input-8 .input:focus {
  outline: none;
}
.wrap-input-8 {
  position: relative;
  margin-bottom: 10px;
}
.wrap-input-8 .input ~ .focus-border:before,
.wrap-input-8 .input ~ .focus-border:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color2);
  transition: 0.3s;
}
.wrap-input-8 .input ~ .focus-border:after {
  top: auto;
  bottom: 0;
  left: auto;
  right: 0;
}
.wrap-input-8 .input ~ .focus-border i:before,
.wrap-input-8 .input ~ .focus-border i:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 0;
  background-color: var(--color2);
  transition: 0.4s;
}
.wrap-input-8 .input ~ .focus-border i:after {
  left: auto;
  right: 0;
  top: auto;
  bottom: 0;
}
.wrap-input-8 .input:focus ~ .focus-border:before,
.wrap-input-8 .input:focus ~ .focus-border:after {
  width: 100%;
  transition: 0.3s;
}
.wrap-input-8 .input:focus ~ .focus-border i:before,
.wrap-input-8 .input:focus ~ .focus-border i:after {
  height: 100%;
  transition: 0.4s;
}
/*********************/
/* whyus */
.whyus { 
	position: relative;
	background-size: cover; 
	background-attachment: fixed; 
	padding: 100px 0;
}
.whyus:before { 
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	/*content: '';*/
	background-color: #000;
	opacity: 0.7;
}
.whyus .grid_view {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	grid-gap: 20px;
}
.whyus .item {
	border: 1px solid #fff;
	border-radius: 20px;
}
.whyus .item img {
	width: 80px;
	margin: 30px 0;
	filter: brightness(0) invert(1);
}

/*********************/
.certificates .item {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100px;
	border: 1px solid #ccc;
	padding: 5px;
}
/*********************/

/* footer */
footer {
	background-size: cover;
	font-weight: 100;
}
.footer-light {
	border-top: 2px solid var(--white);
}
footer .logo {
	height: 40px;
	filter: brightness(0) invert(1);
}
footer h4 {
	position: relative;
	color: inherit;
	text-transform: uppercase;
}
footer h4:after {
	position: relative;
	display: block;
	content: '';
	width:60px;
	height: 3px;
	background-color: var(--white);
	margin: 10px 0;
}
.footer-light h4:after {
	background-color: var(--black);
	opacity: 0.2;
}
footer .links {
	padding: 0;
	margin: 0;
}
footer .links li {
	display: block;
}
footer .links li a {
	display: block;
	color: inherit;
}
footer .social li a {
	filter: brightness(0) invert(1);
}
.footer-bottom {
	border-top: 2px solid rgba(var(--white-rgb), .2);
}
.footer-contact li {
	position: relative;
	display: flex;
	justify-content: start;
	color: inherit;
	font-size: 16px;
	margin-bottom: 15px;
}
.footer-contact li a {
	color: inherit;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}
.footer-contact li i {
	flex-shrink: 0;
	width: 30px;
	height: 30px;
	line-height: 30px;
	font-size: 16px;
	margin-right: 15px;
	border-radius: 10px 10px 10px 0;
	background: var(--color1);
	text-align: center;
	-webkit-transition: 0.3s;
	transition: 0.3s;
	color: var(--white);
}
.footer-social {
	display: flex;
	gap: 15px;
}
.footer-social li {
	list-style: none;
}
.footer-social li a {
	display: block;
	height: 38px;
	width: 38px;
	line-height: 38px;
	text-align: center;
	border-radius: 10px 10px 10px 0;
	background: var(--white);
	color: var(--color2);
	transition: 0.3s;
}
.footer-social li a img {
	height: 20px;
	transition: 0.3s;
}
.footer-social li a:hover {
	background: var(--color2);
}
.footer-social li a:hover img {
	filter: brightness(0) invert(1);
}

.call-fixed {
  position: fixed;
  box-shadow: 0px 0px 10px #e0e0e0;
  background: #fff;
  padding: 10px;
  border-radius: 50px;
  bottom: 25px;
  left: 25px;
  z-index: 10;
}
.call-fixed a {
  display: block;
  margin: 10px 0;
}

.scroll-btn {
  position: fixed;
  bottom: 300px;
  right: 30px;
  z-index: 94;
  opacity: 0;
  visibility: hidden;
  display: inline-block;
  border-radius: 50%;
  /* Small devices */
}
.scroll-btn i {
  display: inline-block;
  background-color: var(--color2);
  color: var(--white);
  text-align: center;
  font-size: 16px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  z-index: 2;
  border-radius: inherit;
  position: relative;
  transition: all ease 0.8s;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.02);
}
.scroll-btn:before {
  /* content: ""; */
  position: absolute;
  left: -6px;
  top: -6px;
  right: -6px;
  bottom: -6px;
  background-color: transparent;
  border-radius: inherit;
  z-index: 1;
  border: 2px dashed var(--color1);
  transition: all ease 0.4s;
  animation: spin 13s infinite linear;
}
.scroll-btn:focus i, .scroll-btn:hover i {
  background-color: var(--black);
  color: var(--white);
}
.scroll-btn:focus:before, .scroll-btn:hover:before {
  border-color: var(--black);
}
.scroll-btn.show {
  bottom: 120px;
  opacity: 1;
  visibility: visible;
}
.scrollToTop {
  position: fixed;
  right: 20px;
  bottom: 500px;
  opacity: 0;
  visibility: hidden;
  transition: all ease 0.4s;
  z-index: 10;
}
.scrollToTop.show {
  bottom: 20px;
  opacity: 1;
  visibility: visible;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
/************************/
#google_translate_element select {
    display:inline-block;
    width:auto;
    height:initial;
    padding:5px;
    color:#111;
    background-position: right 10px center;
    border-radius:3px;
    border:1px solid #ddd;
}
.goog-te-gadget { font-size: 0 !important;}
#google_translate_element span { display:none;}

.socialfix {
	position: fixed;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	margin: 0;
	padding: 5px;
	display: flex;
	gap: 6px;
	flex-direction: column;
	background-color: rgba(var(--white-rgb), .5);
	border: 1px solid var(--white);
	border-radius: 0 8px 8px 0;
	z-index: 1;
}
.socialfix li {
	display: block;
}
.socialfix img {
	height: 28px;
}
/**************/
.whatsappfix {
  position: fixed;
  left: 50px;
  bottom: 90px;
  z-index: 1
}
.whatsappfix .video-btn > span {
  background-color: rgba(37, 211, 102,1);
}

.video-btn {
  text-align: initial;
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  position: relative;
  font-size: 28px;
  font-style: italic;
  padding: 6px 0 6px 4.125rem;
  font-weight: 600;
}
.video-btn > span {
  position: absolute;
  left: 0;
  text-align: center;
  height: 3.6875rem;
  width: 3.6875rem;
  line-height: 3.6875rem;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  background-color: rgba(255,255,255,.1);
  top: 0;
}
.video-btn:hover, 
.video-btn:focus {color: #fff;}

/*=== Pulse Animation ===*/
.spinner:before,
.spinner:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -4.0625rem;
  margin-left: -4.0625rem;
  background-color: inherit;
  -webkit-animation: pluse 2s linear infinite;
  -ms-animation: pluse 2s linear infinite;
  -o-animation: pluse 2s linear infinite;
  animation: pluse 2s linear infinite;
  width: 8.125rem;
  height: 8.125rem;
  -webkit-border-radius: inherit;
  border-radius: inherit;
  opacity: 0;
  z-index: -2;
}
.spinner:after {
  -webkit-animation: pluse 2s linear 2.3s infinite;
  -ms-animation: pluse 2s linear 2.3s infinite;
  -o-animation: pluse 2s linear 2.3s infinite;
  animation: pluse 2s linear 2.3s infinite;
  -webkit-animation-delay: 0.5s;
  -ms-animation-delay: 0.5s;
  -o-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

@-webkit-keyframes pluse {
  0% {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.3);
    -ms-transform: scale(1.3);
    -o-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}

@-ms-keyframes pluse {
  0% {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.3);
    -ms-transform: scale(1.3);
    -o-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}

@-o-keyframes pluse {
  0% {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.3);
    -ms-transform: scale(1.3);
    -o-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}

@keyframes pluse {
  0% {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.3);
    -ms-transform: scale(1.3);
    -o-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}
/************************/
.breadcrumb {
	font-size: 14px;
	color: var(--black);
	padding: 8px 0;
}
.breadcrumb a {
	color: inherit;
}
.sort-list a {
	display: block;
	color: var(--black);
	padding:10px 20px;
}
.sort-list a:not(:last-child) {
	border-bottom:1px solid rgba(var(--black-rgb), 0.1);
}
.color-list {
	display: flex;
	gap:10px;
}
.color-list a {
	display: block;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	box-shadow: 0 0 10px rgba(var(--black-rgb), 0.2);
}

.nav-pills a {
	color: var(--black);
	border-bottom: 1px solid var(--black);
	padding: 5px 0;
	font-size: 21px;
	font-weight: 600;
	opacity: 0.5;
}
.nav-pills a.active,
.nav-pills a:hover {
	opacity: 1;
}
.details {
	position: sticky;
	top: 0;
}
.btn-action .qty {
	display: inline-flex;
	text-align: center;
	border: 1px solid #ccc;
	padding: 5px;
	font-family: 'Roboto', sans-serif;
	font-size: 16px;
}
.qty input[type=number]::-webkit-inner-spin-button, 
.qty input[type=number]::-webkit-outer-spin-button {  
	-webkit-appearance: none;
}
.btn-action .qty .value-control {
	background-color: transparent;
	border:none;
	color: #aaa;
}
.btn-action .qty input {
	border:none;
	outline: none;
	width: 50px;
	text-align: center;
}
.colors label,
.sizes label {
	position: relative;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.colors label input,
.sizes label input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}
.colors .checkmark {
	display: block;
	height: 25px;
	width: 25px;
	border-radius: 50%;
	/* background-color: var(--color1); */
	border: 1px solid #ddd;
}
/* Create the checkmark/indicator (hidden when not checked) */
.colors .checkmark:after,
.sizes .checkmark:after {
	content: "";
	position: absolute;
	display: none;
}
/* Show the checkmark when checked */
.colors input:checked ~ .checkmark:after,
.colors .checkmark:hover:after,
.sizes input:checked ~ .checkmark:after {
	display: block;
}
/* Style the checkmark/indicator */
.colors .checkmark:after {
	top: 50%;
	left: 50%;
	width: 5px;
	height: 10px;
	border: solid var(--black);
	border-width: 0 2px 2px 0;
	-webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
	-ms-transform: translateX(-50%) translateY(-50%) rotate(45deg);
	transform: translateX(-50%) translateY(-50%) rotate(45deg);
}
.sizes .checkmark {
	display: block;
	border: 1px solid #ddd;
	padding: 0 10px;
	background-color: var(--white);
	font-size: 12px;
	font-weight: 700;
}
.sizes input:checked ~ .checkmark,
.sizes .checkmark:hover {
	background-color: var(--color1);
	border-color: var(--color1);
	color: var(--white);
}

.cart-table .item {
	display: flex;
	gap:10px;
}
.cart-table .item div {
	display: flex;
	gap:10px;
	flex-direction: column;
}
.cart-table .item a {
	color: var(--black);
}
.cart-table .item img {
	height: 80px;
}

.checkout .list-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 15px;
}
.checkout .item {
	display: flex;
	gap:10px;
	align-items: center;
}
.checkout .item p {
	margin: 0;
}
.checkout .item figure {
	position: relative;
	width: 50px;
	margin: 0;
}
.checkout .item figure img {
	width: 100%;
	border: 1px solid rgba(var(--black-rgb), .1);
}
.checkout .item figure span {
	position: absolute;
	top: 0;
	right: 0;
	transform: translateX(40%) translateY(-40%);
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background-color: var(--black);
	color: var(--white);
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 12px;
}
.checkout h5 {
	font-size: 14px;
	font-weight: 600;
	margin: 0;
}
.checkout .price,
.subtotal span, .shipping span, .total span {
}
.coupon {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.coupon div {
	display: flex;
	border:1px solid var(--color1)
}
.coupon div input {
	border:none;
	outline: none;
	padding: 10px;
}
.coupon div .btn1 {
	padding: 10px 15px;
	border-radius: 0;
}
.subtotal, .total, .coupon, .shipping {
	border-top:1px solid #ddd;
	padding: 10px 0;
}
.total {
	font-size: 18px;
	font-weight: 600;
}
/*********************
Responsive CSS
*********************/
@media only screen and (max-width: 480px) {
	.carousel-item .main { height: 300px; }
	.carousel-item p { font-size: 5em; top: -25px; }
	.carousel-item h1 { font-size: 24px; }
	.counter_wrap h1 { font-size: 48px; text-align: center; }
}