@import url('https://fonts.googleapis.com/css2?family=Bangers&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');


:root {
	--theme-color: #000000;
	--theme-color-second:#ed1b24;
	--theme-color-third: #282828;

	--heading-font: "Bangers", system-ui;
	--paragraph-font: "Inter", sans-serif;
	--span-font: 'spanist';



	--shadow-small: 0 1px 3px rgba(0, 0, 0, 0.1);
	--shadow-base: 0 4px 6px rgba(0, 0, 0, 0.1);
	--shadow-large: 0 10px 20px rgba(0, 0, 0, 0.2);
}

html {
	scroll-behavior: smooth;
	overflow-x: hidden !important;

}

body {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	outline: none;
	font-size: 17px;
	color: #282828;
	background-color: #fff;
	scroll-behavior: smooth;
	overflow-x: hidden !important;
	font-family: "Inter", sans-serif;
	/* color: var(--theme-color) !important; */
}


a {
	color: #0055f1;
	text-decoration: none;
	transition: all 0.5s;

}

a:hover {
	text-decoration: none;
	transition: all .6s;
	text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	margin-bottom: 15px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--heading-font);
}

.span-font {
	font-family: var(--span-font);
}

p {
	margin: 0;
	line-height: 27px;
	margin-bottom: 15px;
	font-size: 16px;
}

ul li {
	margin-bottom: 0px;
}

.img-fluid {
	display: block;
	width: 100%;
	max-width: 100%;
}

.li {
	display: inline-block;
	padding: 0px 5px;
}

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

h1 {
	font-size: 86px;
}

h2 {
	font-size: 50px;
}

h3 {
	font-size: 40px;
}

h4{}

h5{}

h6{}


.bg-cover {
	background-position: center !important;
	background-repeat: no-repeat !important;
	background-size: cover !important;
}

.gap {
	margin-bottom: 30px;
}

section {
	padding: 80px 0px;
}

.form-control:focus {
	border-color: #ced4da;
	outline: 0;
	box-shadow: none;
}

input {
	width: 100%;
	outline: none;
	border: none;
	border: 1px solid #ced4da;
}

textarea {
	width: 100%;
	outline: none;
	border: none;
	border: 1px solid #ced4da;
}

select {
	width: 100%;
	outline: none;
	border: none;
	border: 1px solid #ced4da;
	color: #c1c0bd;
}

/* navbar----------- */


@-webkit-keyframes AnimationName {
	0% {
		background-position: 0% 50%;
	}

	50% {
		background-position: 100% 50%;
	}

	100% {
		background-position: 0% 50%;
	}
}

@-moz-keyframes AnimationName {
	0% {
		background-position: 0% 50%;
	}

	50% {
		background-position: 100% 50%;
	}

	100% {
		background-position: 0% 50%;
	}
}

@keyframes AnimationName {
	0% {
		background-position: 0% 50%;
	}

	50% {
		background-position: 100% 50%;
	}

	100% {
		background-position: 0% 50%;
	}
}

* {
	box-sizing: border-box;
}
.m-backtotop {
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	position: fixed;
	bottom: -50px;
	right: 0;
	width: 50px;
	height: 50px;
	background: var(--theme-color);
	border-radius: 0;
	text-align: center;
	border: 2px solid var(--theme-color-second);
	box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
	opacity: 0;
	overflow: hidden;
	color: #fff;
}

.m-backtotop.active {
	bottom: 0;
	opacity: 1;
}

.m-backtotop > div {
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.m-backtotop > div.arrow {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
	opacity: 1;
	z-index: 999;
}

.m-backtotop > div.text {
	font-size: 0.5rem;
	line-height: 10px;
	text-transform: uppercase;
	font-weight: 900;
	font-family: "Open Sans", sans-serif;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translateY(50%) translateX(-50%);
	opacity: 0;
	margin-top: 1px;
}

.m-backtotop:hover {
	transform: scale(1.1);
	bottom: 0px;
	cursor: pointer;
	background: black;
	box-shadow: 0 10px 5px rgba(0, 0, 0, 0.1);
}

.m-backtotop:hover > div.arrow {
	transform: translateY(-150%) translateX(-50%);
	opacity: 0;
}

.m-backtotop:hover > div.text {
	transform: translateY(-50%) translateX(-50%);
	opacity: 1;
}

/* Progress bar styles */
.m-backtotop .progress-bar {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 0;
	background: var(--theme-color-second);
	transition: height 0.2s ease-in-out;
}

.py-5 {
	padding-top: 50px !important;
	padding-bottom: 50px !important;
}

.py-6 {
	padding-top: 60px !important;
	padding-bottom: 60px !important;
}

.py-7 {
	padding-top: 70px !important;
	padding-bottom: 70px !important;
}

.py-8 {
	padding-top: 80px !important;
	padding-bottom: 80px !important;
}

.py-9 {
	padding-top: 90px !important;
	padding-bottom: 90px !important;
}

.py-10 {
	padding-top: 100px !important;
	padding-bottom: 100px !important;
}

.gap-p p {
	margin-bottom: 0px;
}


/* ---------------------- */


/* ---------------------- */
.small {
	display: none;
}


a.navbar-brand img {
	width: 337px;
}

.header_menu li a {
	color: #282828;
	font-size: 16px;
	text-transform: uppercase;
	padding: 29px 19px;
	display: inline-block;
}

.header_menu li a:hover {
	color: var(--theme-color-second);
}

.hd_info {
	display: flex;
	align-items: center;
	gap: 10px;

	flex-wrap: wrap;
}

a.comon-btn {
	background: var(--theme-color-second);
	color: #fff;
	display: inline-block;
	font-size: 15px;
	padding: 12px 6px;
	border-radius: 5px;
	width: 12rem;
	text-align: center;
	text-transform: uppercase;
	font-weight: 500;
	border: 1px solid var(--theme-color-second);
}

a.comon-btn:hover {
	background: var(--theme-color);
	color: #fff;
}
a.btn-dark{
	background-color: var(--theme-color-third);
}
a.btn-inherit{
	width: inherit;
}
a.btn-white {
	background: #fff;
	color: #1e1e1e;
}

.header_menu li a {
	color: #282828;
	font-size: 16px;
	text-transform: capitalize;
	padding: 29px 19px;
	display: inline-block;
	font-weight: 500;
}

.navbar li:hover a {
	color: var(--theme-color-second);
}

.navbar li:hover .dropdown-menu {
	transition: .3s;
	opacity: 1;
	visibility: visible;
	top: 100%;
	transform: rotateX(0deg);
}

@media all and (min-width: 992px) {
	.navbar .dropdown-menu-end {
		right: 0;
		left: auto;
	}

	.navbar li .dropdown-menu {
		display: block;
		opacity: 0;
		visibility: hidden;
		transition: .3s;
		margin-top: 0;
	}

	.navbar li:hover a {
		color: var(--theme-color-second);
	}

	.navbar .dropdown-menu.fade-down {
		top: 80%;
		transform: rotateX(-75deg);
		transform-origin: 0% 0%;
	}

	.navbar .dropdown-menu.fade-up {
		top: 180%;
	}

	.navbar li:hover .dropdown-menu {
		transition: .3s;
		opacity: 1;
		visibility: visible;
		top: 100%;
		transform: rotateX(0deg);
	}
}

ul.dropdown-menu.fade-up li a:hover {
	color: #fff !important;
	background: var(--theme-color-second);
}

#main_header ul.dropdown-menu.fade-up li:last-child {
	border-bottom: 0px;
}

#main_header ul.dropdown-menu.fade-up li {
	border-bottom: 1px solid #c1c0bd;
	margin: 0 0 0 0;
}

ul.dropdown-menu.fade-up li a {
	color: #282828 !important;
	font-size: 14px;
	display: block;
	width: 100%;
	padding: 11px 12px;
}

ul.dropdown-menu.fade-up {
	border: none;
	background: #fff;
	padding: 0 0;
	min-width: inherit;
	width: 200px;
	border-radius: 0px;
}

.link-sm-2 i {
	top: -9px !important;
}

.link-sm-2 {
	position: relative;
}


.sticky {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%
}

.sticky-top-1.sticky {
	background: #fff !important;
	z-index: 9999999999999;
}



#main_header .navbar-expand-lg {
	flex-wrap: nowrap;
	justify-content: space-between;
	width: 100%;
}
#main_header ul.contact-data {
	display: flex;
	align-items: center;
	justify-content: end;
	padding-top: 15px;
}
#main_header ul.contact-data  li a{
	display: flex;
	gap: 10px;
	font-size: 15px;
	text-transform: none;
	padding:  0 ;
}
#main_header ul.contact-data  li a i{
	color: var(--theme-color-second);
}
#main_header ul.contact-data  li{
	padding: 5px 10px
}
#main_header .header_menu li a {

	font-size: 14px;
	text-transform: uppercase;
	padding: 13px 19px;

	font-weight: 500;
}

/* #main_header .header_menu li a.whatsapp {
	background: #00ed79;
	color: #fff;
	font-size: 27px;
	padding: 0;
	height: 43px;
	width: 43px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 7px;
} */
a.whatsapp {
    background: #00ed79;
    color: #fff;
    font-size: 27px;
    padding: 0;
    height: 43px;
    width: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
}

/* banner */
.banner_sec {
	color: var(--theme-color-third);
}
.banner_sec  h3{
	color: var(--theme-color-second);
	font-size: 70px;
	margin-bottom: 0;
	line-height: 1;
}
.banner_sec  h1 span {
	color: var(--theme-color-second);
	transform: rotate(342deg);
	display: inline-block;
	margin-left: -22px;
	font-size: 70px;
}

.home_sec_2 .product-box{
	position: relative;

}

.home_sec_2 .product-box img{
	height: 560px;
	object-fit: cover;
	border-radius: 18px;
}

.home_sec_2 .owver-lay{
	position: absolute;
	bottom: 0;
	left: 0;
	color: #fff;
	width: 100%;
}
.home_sec_2 .product-box h4{
	font-family: var(--paragraph-font);
	font-size: 28px;
	text-transform: uppercase;
	font-weight: 400;
}

.home_sec_2 h5{
	font-family: var(--paragraph-font);
	text-transform: uppercase;
	font-weight: 400;
	font-size: 15px;
	margin-bottom: 0;
}

.home_sec_3 h2 {
	color: var(--theme-color-second);
}

.home_sec_3 .specific-box img {
	width: 45px;
	height: 45px;
	object-fit: contain;
	margin-bottom: 10px;
}

.fixed-bottom-call {
	display: none;
	position: fixed;
	bottom: 0;
	width: 100%;
	z-index:999999;
}

.fixed-bottom-call a.btn-1 {
	padding: 14px;
	width: 100%;
	color: #fff;
	background-color: var(--theme-color-second);
	display: flex;
	gap: 10px;
}

.fixed-bottom-call a.btn-1.btn-dark {
	background-color: var(--theme-color-third);
}


.home_sec_4 .mat-box h4 {
	color: var(--theme-color-second);
	min-height: 50px;
}


.home_sec_6 .post-box {
	position: relative;
}

.home_sec_6 .post-box .content {
	position: absolute;
	top: 0;
	width: 100%;
	left: 0;
}

.home_sec_6 .post-box h4 {
	font-family: var(--paragraph-font);
	font-size: 28px;
	font-weight: 600;
}

.home_sec_7 .product-box {
	background-color: #fef3f4;
	border: 1px solid var(--theme-color-second);
}

.home_sec_7 .product-box img {
	width: 25px !important;
	margin-bottom: 25px;
	margin-left: auto;
}

.home_sec_7 .product-box .content {
	margin-bottom: 35px;
}

.home_sec_9 .blog-box h5 {
	font-family: var(--paragraph-font);
}

.home_sec_10 form input,
.home_sec_10 form textarea,
.home_sec_10 form button {
	padding: 10px;
	width: 100%;
}

.home_sec_10 form textarea {
	height: 180px;
}

.home_sec_10 form button {
	border: none;
	background-color: var(--theme-color-second);
	color: #fff;
	text-transform: uppercase;

}

.footer {
	padding: 100px 0;
	color: #fff;
}

.footer .ft-heading h5 {
	font-family: var(--paragraph-font);
	font-weight: 600;
	font-size: 20px;
	text-transform: uppercase;
}

.footer .ft-heading .ft-list li a {
	color: #fff;
	font-size: 14px;
}

.footer .ft-heading .ft-list li {
	margin-bottom: 10px;
	font-size: 14px;
}

.footer .ft-heading a,
.footer .ft-heading p {
	font-size: 14px;
}

.footer .social {
	display: flex;
	margin: 0;
	gap: 18px;
}

.footer .social  li a{
	height: 45px;
	display: flex;
	width: 45px;
	background-color: #fff;
	color: #000000;
	align-items: center;
	justify-content: center;
	border-radius: 600px;
}



.inner-blog-left-sec {
	box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
	border: rgba(149, 157, 165, 0.2);
	padding: 15px 19px 35px;
	border-radius: 8px;
	background: #fff;
	color: #000;
}

.inner-blog-left-sec .inner-blog-sec1 p {
	color: #000000ab;
}

.inner-blog-left-sec .inner-blog-sec1 .heading .blog-head {
	display: flex;
	align-items: center;
	gap: 20px;
}

.inner-blog-left-sec .inner-blog-sec1 .heading .blog-head p {
	color: #606060;
	margin-bottom: 12px;
}

.inner-blog-left-sec .inner-blog-sec1 h3 {
	font-weight: 600;
	margin-bottom: 18px;
	/* font-size: 29px; */
}

.inner-blog-left-sec .inner-blog-sec1 img {
	border-radius: 5px;
	margin-bottom: 0;
}

.inner-blog-left-sec .inner-blog-sec1 .share-sec {
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid #1c1c1c2b;
	margin-bottom: 10px;
}

.inner-blog-left-sec .inner-blog-sec1 .share-sec .social ul {
	display: flex;
	gap: 15px;
	align-items: center;
}

.inner-blog-left-sec .inner-blog-sec1 .share-sec .social ul li i {
	font-size: 17px;
	color: var(--theme-color);
}

.inner-blog-left-sec .inner-blog-sec1 .heading .blog-head i {
	color: var(--theme-color);
	font-size: 16px;
	margin-right: 3px;
}

.inner-blog-left-sec .inner-blog-sec1 .share-sec .social ul li a {
	color: #00000059;
}

.inner-blog-left-sec .navigation-sec .navigation {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.inner-blog-left-sec .navigation-sec .navigation a {
	color: var(--theme-color);
	font-size: 15px;
	font-weight: 600;
}

.inner-blog-left-sec .navigation-sec .navigation i {
	color: var(--theme-color);
}

.inner-blog-left-sec .navigation-sec .blog-contain {
	padding: 25px 18px;
	box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
	border: rgba(149, 157, 165, 0.2);
	border-radius: 5px;
	height: 100%;
}

.inner-blog-left-sec .navigation-sec .blog-contain .img-top {
	padding-bottom: 15px;
}

.inner-blog-left-sec .navigation-sec .blog-contain .img-top img {
	border-radius: 5px;
}

.inner-blog-left-sec .navigation-sec .blog-contain .blog-content .heading h3 {
	color: #000;
}

.inner-blog-left-sec .navigation-sec .blog-contain .blog-content .heading p strong {
	color: #00000059;
}

.inner-blog-left-sec .navigation-sec .blog-contain .blog-content .heading p {
	color: #000000ab;
}

.inner-blog-left-sec .navigation-sec .blog-contain .blog-content .heading .blog-head {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.inner-blog-left-sec .inner-blog-comment .contact-form {
	padding: 20px 25px;
	border: 1px solid rgba(69, 69, 70, 0.2);
	border-radius: 8px;
	background: #fff;
	color: #000;
	box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.inner-blog-left-sec .inner-blog-comment .contact-form form input {
	width: 100%;
	outline: none;
	padding: 11px;
	border-radius: 4px;
	border: 1px solid #1c1c1c3b;
}

.inner-blog-left-sec .inner-blog-comment .contact-form form textarea {
	width: 100%;
	outline: none;
	padding: 11px;
	border-radius: 4px;
	border: 1px solid #1c1c1c3b;
}

.inner-blog-left-sec .inner-blog-comment .contact-form form button {
	color: #ffffff;
	background-color: #000;
	display: inline-block;
	width: 100%;
	text-transform: uppercase;
	text-align: center;
	border: 1px solid #000;
	padding: 15px 20px;
	border-radius: 8px;
	font-weight: 400;
	transition: 0.5s;
}

.inner-blog-left-sec .inner-blog-comment .contact-form form button:hover {
	background: #1c1c1c3b;
	border: 1px solid #1c1c1c3b;
	color: #000;
	transition: 0.5s;
}

.inner-blog-left-sec .admin-sec p {
	color: #000000ab;
}

.inner-blog-left-sec .admin-sec .admin-info .admin-info-content .social ul {
	display: flex;
	gap: 25px;
	align-items: center;
}

.inner-blog-left-sec .admin-sec .admin-info .admin-info-content .social ul li i {
	font-size: 18px;
}

.inner-blog-left-sec .admin-sec .admin-info .admin-info-content .social ul li a {
	color: #000000ab;
}

.inner-blog-left-sec .admin-sec .admin-info .admin-info-content {
	border-top: 1px solid #1c1c1c3b;
	border-bottom: 1px solid #1c1c1c3b;
	padding: 10px 20px;
}

.inner-blog-left-sec .admin-sec img {
	border-radius: 5px;
}


/* inner-blog-right-sec */

.inner-blog-right-sec {
	box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
	border: rgba(149, 157, 165, 0.2);
	padding: 35px 21px;
	border-radius: 8px;
	background: #fff;
	color: #000;
}
.inner-blog-right-sec .blog-search form {
	position: relative;
	border: 1px solid #1c1c1c3b;
	border-radius: 5px;
	padding: 11px 13px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.inner-blog-right-sec .blog-search form input {
	border: none;
	outline: none;
	padding: 0;
	width: 100%;
}

.inner-blog-right-sec .blog-search form button {
	/* position: absolute;
	top: 0;
	right: 0;
	width: 50px;
	height: 100%; */
	cursor: pointer;
	background: none;
	border: 0;
	font-size: 15px;
	color: #000000;
}

.inner-blog-right-sec .popular-sec .popular-cards1 {
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-top: 1px solid #1c1c1c3b;
	padding: 15px 0;
	gap: 10px;
}

.inner-blog-right-sec .popular-sec .popular-cards1 .img-top img {
	width: 130px;
}

.inner-blog-right-sec .popular-sec .popular-cards1 p {
	color: #000000ab;
	font-weight: 300;
	font-size: 14px;
	margin-bottom: 0;
}

.inner-blog-right-sec .popular-sec .popular-cards1 a {
	color: #000000ab;
	font-size: 15px;
	font-weight: 600;
}

.inner-blog-right-sec .popular-sec .popular-cards1 .heading {
	width: 100%;
}
.product_catagories h2{
	color: var(--theme-color-third);
	margin-bottom: 10px;
}



/* Contact Page */

.contact-info-content {
	background: var(--theme-color-second);
	padding: 30px;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	border-radius: 10px;
}

.contact-info-content .icon {
	width: 60px;
	height: 60px;
	background: #fff;
	margin: auto;
	border-radius: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--theme-color-second);
	font-size: 30px;
}

.contact-info-content .icon-info {
	margin-top: 20px;
}

.contact-info-content .icon-info h4 {
	color: #fff;
	margin-bottom: 4px !important;
	font-weight: 400;
}

.contact-info-content .icon-info p {
	color: #eee;
	font-size: 16px;
	font-weight: 400;
	word-break: break-all;
}

.contact-info-content .icon-info p a {
	color: #fff;
	font-weight: 400;
	font-size: 14px;
}
.contact-info span {
	color: #cb1818;
	font-size: 16px;
	/* font-family: "Pacifico", cursive; */
	font-weight: 300;
	letter-spacing: 1.6px;
}

.contact-page-form h2 {
	color: #111;
	font-size: 40px;
}

.map {
	line-height: 0;
}
.map iframe{
	width: 100%;
}
.contact-info input {
	padding: 15px 8px;
	color: #353535;
	background-color: #fff;
	border: 1px solid #666666;
	outline: 0;
	box-shadow: none;
	width: 100%;
	border-radius: 3px;
	font-weight: 400;
}

.contact-info select {
	padding: 15px 8px;
	color: #353535;
	background-color: #fff;
	border: 1px solid #666666;
	outline: 0;
	box-shadow: none;
	width: 100%;
	border-radius: 3px;
	font-weight: 400;
}

.input:focus {
	color: #5F656F;
	background-color: #fff;
	border-color: #5F656F;
	outline: 0;
	box-shadow: none;
}

.contact-info textarea {
	padding: 15px 8px;
	color: #353535;
	background-color: #fff;
	border: 1px solid #666666;
	outline: 0;
	box-shadow: none;
	width: 100%;
	border-radius: 3px;
	font-weight: 400;
}

.contact-info form button {
	padding: 15px 0px;
	background: #000000;
	color: #fff;
	border: none;
	letter-spacing: 1px;
	transition: 1s;
	width: 100%;
	border-radius: 3px;
	font-weight: 400;
	text-transform: uppercase;
}

.form-check input {
	width: 25px;
}

.form-check {
	display: flex;
	align-items: baseline;
	padding-left: 0;
	/* justify-content: center; */
}



.our_mission_sec .mission_box {
	border: 2px solid var(--theme-color-second);
	border-radius: 10px;
	text-align: center;
}

.our_mission_sec .mission_box h4{
	color: var(--theme-color);
}

.our_mission_sec .mission_box p{
	opacity: 0.6;
}

.indoor-mat1 div#accordionPanelsStayOpenExample {
	border: 2px solid #000;
	border-radius: 6px;
}

.indoor-mat1 .accordion-button:not(.collapsed) {
	color: #fff;
	background-color: var(--theme-color);
	box-shadow: inset 0 -1px 0 rgba(0,0,0,.125);
}

.indoor-mat1 div#accordionPanelsStayOpenExample  ul{
	margin-bottom: 0;
}
.indoor-mat1 div#accordionPanelsStayOpenExample  ul li a{
	color: #000;
}
.indoor-mat1 div#accordionPanelsStayOpenExample  ul li{
	margin-bottom: 15px;
}
.indoor-mat1 div#accordionPanelsStayOpenExample  ul li:last-child{
	margin-bottom: 0;
}


.inner_product_sec_1 .product-form{
	background-color: #f4f4f4;
	padding: 25px;
	border-radius: 10px;
}

.inner_product_sec_1 .product-form input{
	padding: 15px;
	border: none;
}

.inner_product_sec_1 .product-form textarea{
	padding: 15px;
	border: none;
	height: 155px;
}
.inner_product_sec_1 .product-form button{
	width: 100%;
	border: none;
	background-color: var(--theme-color-second);
	padding: 12px;
	border-radius: 100px;
	color: #fff;
	text-transform: uppercase;
}


.inner_product_sec_2 .nav-pills .nav-link.active, .inner_product_sec_2 .nav-pills .show>.nav-link {
	color: #fff;
	background-color: var(--theme-color-third);
}
.inner_product_sec_2 .nav-pills .nav-link {
	background-color: var(--theme-color-second);
	color: #000;
	width: 14rem;
}
.inner_product_sec_2 .nav-pills {
	gap: 10px;
}

.inner_product_sec_2 ul#productTab {
	margin-bottom: 16px;
	border: none;
	gap: 10px;
}

.inner_product_sec_2 .nav-tabs .nav-item.show .nav-link, .inner_product_sec_2 .nav-tabs .nav-link.active {
	color: #495057;
	background-color: #fff;
	border-color: #dee2e6 #dee2e6 #fff;
	border: none;
	color: #fff;
	background: var(--theme-color-second);
}

.inner_product_sec_2 .nav-tabs .nav-link {
	margin-bottom: 0px;
	background: 0 0;
	border: none;
	background-color: var(--theme-color-third);
	color: #fff;
	/* width: 12rem; */
	border-radius: 0;
	padding: 10px 21px;
}

.inner_product_sec_2  h2{
	font-size: 45px;
}
.inner_product_sec_2  h3 {
	font-size: 35px;
}
.inner_product_sec_2 figure{
	margin-bottom: 10px;
}
.inner_product_sec_2 figure img{
	height: 259px;
	object-fit: cover;
	border-radius: 10px;
}

.inner_product_sec_2 figcaption{
	display: none;
}

.inner_product_sec_2 ul li{
	margin-bottom: 15px;
}


/* Blog Leave A Comment */
.inner-blog-left-sec .inner-blog-comment .contact-form {
	padding: 20px 25px;
	border: 1px solid rgba(69, 69, 70, 0.2);
	border-radius: 8px;
	background: #fff;
	color: #000;
	box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}


#respond {
	/*     max-width: 600px; */
	margin: 0 auto;
}
#respond #reply-title small a{
	color: white !important;
	background-color: #000 !important;
	padding: 10px 15px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
}
#respond h2 {
	font-size: 24px;
	margin: 24px 0 16px 0;
	font-weight: 500;
}
#respond form {
	display: block;
	margin-top: 0em;
	border: none;
}
#respond form p{
	color: #6d6d6d;
	margin: 0;
	line-height: 26px;
	margin-bottom: 21px;
	font-size: 16px;
}
#respond .comment-form-comment,
#respond .comment-form-author,
#respond .comment-form-email,
#respond .comment-form-url {
	margin-bottom: 20px;
}

#respond label {
	display: block;
	font-weight: bold;
	margin-bottom: 5px;
}

#respond textarea,
#respond input[type="text"],
#respond input[type="email"],
#respond input[type="url"] {
	width: 100%;
	padding: 10px;
	border: 1px solid #ccc;
	border-radius: 5px;
}

#respond .comment-form-cookies-consent {
	margin-top: 20px;
}

#respond .form-submit {
	margin-top: 20px;
}

#respond .submit {
	background-color: #FF6601;
	color: white;
	padding: 10px 15px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
}

#respond .submit:hover {
	background: #000000;
	color: #fff;
	transition: all 0.8s;
}#respond .comment-form-cookies-consent input {
	width: 18px;
	height: 12px;
}
#respond .comment-form-cookies-consent input,
#respond .comment-form-cookies-consent label {
	display: inline;
}
#respond p.logged-in-as a{
	color: #0f3ca1 !important;
	text-decoration: underline;
	display: inline-block !important;
}
#comments .comment-author a{
	color: #000 !important;
}
#comments .comment-metadata a{
	color: #000 !important;
}
#comments .comment-metadata a.comment-edit-link{
	color: white !important;
	background-color: #000 !important;
	padding: 10px 15px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
}
#comments span.comment-reply a{
	color: white !important;
	background-color: #000 !important;
	padding: 10px 15px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	margin-right: 10px !important;
}
div#respond label {
	margin-bottom: 15px;
	font-weight: 600;
	text-transform: uppercase;
}

div#respond input,  div#respond textarea{
	padding: 10px;
	border-radius: 6px;
}

div#respond input#wp-comment-cookies-consent {
	width: 20px;
	height: 17px;
}

div#respond p.comment-form-cookies-consent {
	display: flex;
	align-items: center;
	gap: 13px;
	flex-wrap: nowrap;
} 

div#respond p.comment-form-cookies-consent  label{
	margin:0px!important;
}

div#respond input#submit {
	background: #17132e;
	color: #fff;
	text-transform: uppercase;
	font-weight: 600;
	letter-spacing: 2px;
}

input#search-form-1 {
	border: none;
	outline: none;
	width: 100% !important;
}
.single-post label {
	width: 100%!important;
}
.search-form label {
	width: 100% !important;
}

/* ========================= */
/* ========================= */


/* Products Header - Black Background */
.facetwp-facet .facetwp-facet-label,
.col-lg-3 .facetwp-facet > div:first-child,
.col-lg-3 h3,
.col-lg-3 .widget-title {
    background-color: #000 !important;
    color: #fff !important;
    padding: 15px 20px !important;
    margin: 0 !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    border: none !important;
	border-radius:5PX !important;
}

option#wpc-option-taxonomy-product_cat-0 {
    display: none !important;
}
/*  */ 

/* Main Container - Black Border */
.col-lg-3 .wpc-filters-section {
    border: 2px solid #000 !important;
    border-radius: 8px !important;
    overflow: hidden !important;
    background: #fff !important;
}

/* Black Header - Always black background */
.col-lg-3 .wpc-filter-header {
    background-color: #000 !important;
    margin: 0 !important;
    padding: 0 !important;
}

.col-lg-3 .wpc-filter-title {
    background-color: #000 !important;
    color: #fff !important;
    padding: 15px 20px !important;
    margin: 0 !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    position: relative !important;
    user-select: none !important;
    border-radius: 6px !important;
}

/* Plus icon when collapsed */
.col-lg-3 .wpc-filter-title::after {
    content: "−" !important;
    position: absolute !important;
    right: 20px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    font-size: 24px !important;
    font-weight: 300 !important;
    line-height: 1 !important;
    color: #fff !important;
}

/* Change to + when collapsed */
.col-lg-3 .wpc-filter-title.collapsed::after {
    content: "+" !important;
}

/* When collapsed - entire section has black background */
.col-lg-3 .wpc-filter-title.collapsed {
    border-radius: 6px !important;
}

.col-lg-3 .wpc-filters-section.collapsed {
    background: #000 !important;
}

/* Hide the original dropdown select */
.col-lg-3 .wpc-filters-widget-select {
    display: none !important;
}

/* Filter content - white background when open */
.col-lg-3 .wpc-filter-content {
    background: #fff !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Style for the list */
.col-lg-3 .wpc-custom-list {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.col-lg-3 .wpc-custom-list li {
    padding: 12px 20px !important;
    border-bottom: 1px solid #e0e0e0 !important;
    background: #fff !important;
    cursor: pointer !important;
    transition: background 0.2s ease !important;
}

.col-lg-3 .wpc-custom-list li:hover {
    background: #f5f5f5 !important;
}

.col-lg-3 .wpc-custom-list li:last-child {
    border-bottom: none !important;
}

.col-lg-3 .wpc-custom-list li a {
    color: #000 !important;
    text-decoration: none !important;
    font-size: 15px !important;
    display: block !important;
}
.content h4 {
    color: var(--theme-color-second);
}

form.wpcf7-form.init p {
    margin-bottom: 0px !important;
}

ul.tabs.wc-tabs {
    display: flex;
    gap: 10px;
}
.tabs.wc-tabs li a {
   margin-bottom: 0px;
    background: 0 0;
    border: none;
    background-color: var(--theme-color-third);
    color: #fff;
    /* width: 12rem; */
    border-radius: 0;
    padding: 10px 21px;
}



.tabs.wc-tabs .active a {
    border-color: #dee2e6 #dee2e6 #fff;
    border: none;
    color: #fff;
    background: var(--theme-color-second);
}
/* div#tab-description, div#reviews {
    border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
    padding: 20px;
} */
.inner_product_sec_2 .woocommerce-Tabs-panel {
    border: 1px solid #dee2e6 !important;
    padding: 20px !important;
}


.catagory-2 .cat-box {
    background: #F2F2F2;
    padding: 30px;
    height: 100%;
    position: relative;
}

.catagory-2 .cat-box::after {
	content: '';
	display: block;
	background: #F2F2F2;
	padding: 30px;
	height: 390px;
	position: absolute;
	width: 100%;
	left: 0;
	z-index: -1;
}

.catagory-2 .cat-box::before {
	content: '';
	display: block;
	background: #F2F2F2;
	padding: 30px;
	height: 470px;
	position: absolute;
	width: 100%;
	left: 0;
	z-index: -1;
	top: -250px;
}

.catagory-2 .cat-box li a {
 
    color: #383838;
    text-decoration: none;
    padding: 10px 0;
    display: inline-block;
  }


  .catagory-2 .heading h2{
    position: relative;
    display: inline-block;
  }

.catagory-2 .heading h2::after {
    content: '';
    display: block;
    background-color: #ed1b24;
    width: 100%;
    height: 6px;
  }

  .catagory-2 .img-box-2 {
    display: flex;
    gap: 5px;
    width: 220px;
    box-sizing: content-box;
  }

 .catagory-2 .img-box-2 img{
  width:20px;
 }
 .catagory-2 .border-12 {
	padding-bottom: 25px;
	border-bottom: 3px solid #ed1b24;
}

 .catagory-2 .norder-2 h5{
  margin-bottom: 8px;
 }

 .catagory-2 .list-item li{
  display: flex;
  align-items: baseline;
  margin-bottom: 5px;
  gap: 5px;
 }
 .catagory-2 .list-item li i {
	font-size: 8px;
	position: relative;
	top: -3px;
}

.catagory-2 .grid-box{
  display: grid;
  grid-template-columns: auto auto;
  gap: 15px;
}

.catagory-2 #head h2 {
	text-decoration: underline;
	text-decoration-color: #ed1b24;
}
.catagory-2 #head h2::after{
  display: none;
}

.catagory-2 #text-none h2{
  text-decoration: none;
}

.catagory-2 .product-box{
  border: 3px solid #9b9b9b;
  padding: 15px;
  height: 100%;
}

.catagory-2 .product-box h5{
  position: relative;
}

.catagory-2 .product-box h5::after {
	content: "";
	display: block;
	height: 3px;
	width: 70%;
	background-color: #ed1b24;
	position: absolute;
	left: 0;
	bottom: -4px;
}


.catagory-2 .product-box p{
  font-size: 14px;
  line-height: normal;
}

.catagory-2 .product-box a{
  color: #000000;
  font-size: 14px;

}
.catagory-2 .product-box a i{
  opacity: .5;
  font-size: 18px;
}

.catagory-2 .product-box .orange img {
	padding: 2px;
	width: 26px;
}

.catagory-2 .product-box .orange {
  gap: 5px;
}

.product-form #myDIV{
  display: none;
}

/*     .img-top {
        padding: 0px 150px;
    } */

#resource-banner {
  padding: 2rem 0;
  max-height: none;
}

.resource_sec .comon-btn {
  width: 16rem;
}

.resource_sec .list-box {
  padding: 25px 25px;
  background-color: #000;
  color: #fff;
}

.resource_sec .list-box h3 {
  font-weight: 400;
}

.resource_sec .list-box ul li a {
  color: #fff;
}


.resource_sec .list-box ul li i {
  font-size: 6px;
}


.resource_sec .list-box ul li {
  margin-bottom: 9px;
  display: flex;
  align-items: baseline;
  gap: 8px;

}


.resource_sec .list-box p a {
  color: #fff;

}


.center {
  display: flex;
justify-content: center;
margin-top: 40px;
}

a.page-numbers {
    color: #000000;
    padding: 10px 10px;
    text-decoration: none;
    transition: background-color 0.5s;
    border: 1px solid #ddd;
border-radius: 5px;
    margin: 0px 5px;
    padding: 10px 15px;
   font-size: 18px;
}

a.page-numbers:hover {
    background-color: #d6d4d4;
}

span.page-numbers.current {
    background-color: #9bcb3b;
    color: #fff;
    padding: 10px 15px;
    text-decoration: none;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    margin: 0px 5px;
    font-size: 18px;
        z-index: 3;
border-radius: 5px;
}


===============WHEN GAP SHOW TOP AND BOTTOM==========
a.page-numbers {
    color: #000000;
    text-decoration: none;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin: 0 5px;
    padding: 10px 15px;
    font-size: 18px;
    transition: background-color 0.5s;
}

a.page-numbers:hover {
    background-color: #d6d4d4;
}

span.page-numbers.current {
    background-color: #e80a0aed;
    color: #fff;
    margin: 0 5px;
    font-size: 18px;
    border-radius: 5px;
    padding: 10px 15px;
    z-index: 3;
    transition: all .15s ease-in-out;
}

/* Fix extra gaps */
.blog-pagination ul {
    margin: 0 !important;
    padding: 0 !important;
    list-style: none;
}

.blog-pagination ul li {
    display: inline-block;
    margin: 0;
    padding: 0;
}

.blog-pagination.section {
    padding-top: 10px;
    padding-bottom: 10px;
}
ul.product-point {
    list-style: disc;
    padding-left: 55px;
}

.heading p a {
    color: #e92413;
}
.inner_banner .heading p a {
    color: #171313;
}

.whatsapp {
    background-color: #25D366;
    color: #fff;
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    border-radius: 100px;
    position: fixed;
    /* top: 10px; */
    bottom: 60px;
    right: 5px;
}