@import url('https://fonts.googleapis.com/css2?family=Kaushan+Script&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

:root {
	--primary-color-one: #f9a61a;
	--primary-color-two: #59595a;
}

body {
	min-width: 280px;
}

body * {
	font-family: 'Roboto', sans-serif;
}

ul,ol {
	list-style: none !important;
	margin: 0 !important;
	margin-block-start: 0;
	margin-block-end: 0;
	padding-inline-start: 0;
}

input,
input:active,
input:focus,
input:hover{
	outline-color: transparent !important;
}

a,
a:active,
a:focus,
a:hover {
	cursor: pointer;
	text-decoration: none;
	outline: none !important;
}

img {
	width: 100%;
}

.bg-primary-one {
	background-color: var(--primary-color-one);
}

.bg-primary-two {
	background-color: #818286;
}

.bg-gray {
	background-color: #e6e6e6;
}

.cursive {
	font-family: 'Kaushan Script', cursive;
}

.swiper-button-next:after,
.swiper-button-prev:after {
	font-size: 30px;
	font-weight: 900;
	color: #ffffffc5;
}

.swiper-button-next:hover::after,
.swiper-button-prev:hover::after {
	opacity: 0.8;
}

.swiper-pagination-bullet-active {
	background-color: var(--primary-color-one);
}

/*---------------------------------------
## Back Top Start
---------------------------------------*/
.back-to-top {
	position: fixed;
	right: 30px;
	bottom: 60px;
	width: 50px;
	height: 50px;
	text-align: center;
	line-height: 50px;
	border-radius: 50%;
	z-index: 99;
	font-size: 25px;
	background-color: var(--primary-color-one);
	color: #fff;
	cursor: pointer;
	display: none;
}

.back-to-top i {
	/* color: #000000; */
	font-size: 20px;
}

/*---------------------------------------
## Back Top End
---------------------------------------*/

/*---------------------------------------
## Side Contect Start Btns
---------------------------------------*/

.side-contect-btns {
	position: fixed;
	right: 0;
	top: 50%;
	z-index: 1000;

	display: flex;
	flex-direction: column;
	row-gap: 5px;
}

.side-contect-btns a {
	background-color: var(--primary-color-one);
	color: #fff;
	border-radius: 50px 0 0 50px;

	transform: translate(140px, 0px);
	text-transform: uppercase;
	padding: 10px;
	padding-right: 40px;
	font-size: 15px;
	font-family: 'Oswald', sans-serif;
	transition: all 0.8s;
	cursor: pointer;
}

.side-contect-btns a:hover {
	transform: translate(0, 0);
}

.side-contect-btns a i {
	background-color: #FFF;
	height: 35px;
	width: 35px;
	color: var(--primary-color-two);
	text-align: center;
	font-size: 22px;
	line-height: 35px;
	border-radius: 50%;
	margin-right: 10px;
	transition: all 0.5s;
}

.side-contect-btns a:hover i {
	rotate: 360deg;
}

@media screen and (max-width: 480px) {
	.side-contect-btns {
		bottom: 0;
		top: unset;
		right: unset;
		flex-direction: row;
		width: 100%;
	}

	.side-contect-btns a {
		border-radius: 0;
		transform: unset;
		font-size: 12px;
		flex: 1;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.side-contect-btns a:first-child {
		border-right: 1px solid #fff;
	}
}

/*---------------------------------------
## Side Contect Btns End
---------------------------------------*/

/*---------------------------------------
## Pop Up Enquire Form Start
---------------------------------------*/

.enquire-form-container {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(100%, -50%);
	transition: 0.5s;
	z-index: 999;

	width: 70%;
	height: 88vh;
	overflow: auto;
	background-color: #eee;
	padding-top: 15px;
	padding-bottom: 15px;
}

@media screen and (max-width: 480px) {
	.enquire-form-container {
		width: 90%;
	}
}

.enquire-form-container.active {
	transform: translate(-50%, -50%);
}

.enquire-form-container img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.enquire-form-container .enquire-heading {
	border-left: 2px solid #f7560f;
	padding: 10px 35px;
	margin: 10px 0;
}

.enquire-form-container .enquire-heading h3 {
	font-weight: 300;
}

.enquire-form-container .pop-up-form em {
	font-weight: 300;
}

.enquire-form-container .pop-up-form p {
	margin: 0;
}

.enquire-form-container .pop-up-form span.wpcf7-form-control-wrap{
	display: inline-block;
	width: 100%;
}

.enquire-form-container .pop-up-form input,
.enquire-form-container .pop-up-form select,
.enquire-form-container .pop-up-form textarea {
	margin-top: 15px;
	border-radius: 0;
	background-color: transparent;
	border: 1px solid rgba(0, 0, 0, .125);
	box-shadow: none;
}

.enquire-form-container .pop-up-form textarea{
	max-height: 80px;
}

.enquire-form-container .pop-up-form input[type="submit"] {
	border-width: 1px;
	color: #f7560f;
	padding: 5px 25px;
	margin: 20px 0;
}

.enquire-form-container .pop-up-form input[type="submit"]:active,
.enquire-form-container .pop-up-form input[type="submit"]:hover {
	color: #fff;
	background-color: var(--primary-color-two);
}

.enquire-form-container .pop-up-form input:focus,
.enquire-form-container .pop-up-form select:focus,
.enquire-form-container .pop-up-form textarea:focus,
.enquire-form-container .pop-up-form input:active,
.enquire-form-container .pop-up-form select:active,
.enquire-form-container .pop-up-form textarea:active {
	box-shadow: none !important;
	outline: none !important;
	border-color: var(--primary-color-two) !important;
}

.enquire-cross {
	position: absolute;
	top: 10px;
	right: 10px;
	font-size: 25px;
	color: #f7560f;
	background-color: #eee;
	cursor: pointer;
	height: 30px;
	width: 30px;
	display: grid;
	place-items: center;
}

/*---------------------------------------
## Pop Up Enquire Form End
---------------------------------------*/


/* top header */

.top-header {
	padding: 5px 0;
}

.top-header .logo {
	width: 300px;
}

.top-header .logo img {
	/* width: 100%; */
}

.top-header .right-part {
	gap: 20px;
}

.top-header .email {
	font-size: 16px;
	font-weight: 500;
	color: black;
}

.top-header .search,
.top-header .wishlist {
	/* display: inline-block; */
}

.top-header .search {
	width: 25px;
	height: 25px;
	display: grid;
	place-items: center;
	background-color: #000;
	color: #fff;
	font-size: 14px;
	border-radius: 50%;
}

.top-header .wishlist {
	font-size: 25px;
	color: red;
	position: relative;
}

.top-header .wishlist .count {
	position: absolute;
	top: -2px;
	right: -12px;
	color: #fff;
	font-size: 10px;
	background-color: red;
	border: 1px solid #fff;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;

}

.main-header {
	position: relative;
	background-color: var(--primary-color-two);
}


.main-header.stricky-fixed {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 999;
	animation-name: menu_sticky;
	animation-duration: 0.60s;
	animation-timing-function: ease-out;
	transition: all .25s ease-in-out;
}

@keyframes menu_sticky {
	0% {
		margin-top: -100px;
	}

	50% {
		margin-top: -74px;
	}

	100% {
		margin-top: 0;
	}
}


.main-header .menu {
	width: 100%;
	display: flex;
	column-gap: 16px;
	justify-content: space-between;
	background-color: var(--primary-color-two);
	transition: 0.3s;
	font-family: 'Poppins' !important;
}

.main-header .menu a {
	display: block;
	padding: 10px 0;
	color: #fff;
	font-weight: 700;
	transition: 0.3s;
	/* white-space: nowrap; */
	cursor: pointer;
	font-family: 'Poppins';
}

.main-header .menu a:hover {
	color: var(--primary-color-one);
}

.main-header .menu .dropdown {
	position: static;
}

.main-header .menu .dropdown>a::after {
	display: inline-block;
	width: 0;
	height: 0;
	margin-left: 10px;
	vertical-align: 3px;
	content: "";
	border-top: 0.3em solid;
	border-right: 0.3em solid transparent;
	border-bottom: 0;
	border-left: 0.3em solid transparent;
	transition: 0.3s;
}

.main-header .menu .dropdown:hover>a::after {
	rotate: 180deg;
}

.main-header .menu .dropdown .submenu {
	width: 95%;
	position: absolute;
	left: 50%;
	transform: translate(-50%, 20%);
	background-color: #fff;
	box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
	padding-top: 10px;
	padding-bottom: 10px;
	z-index: 99;

	visibility: hidden;
	opacity: 0;
	transition: 0.3s;

	max-height: 70vh;
	overflow: auto;
}

.main-header .menu .dropdown .submenu::-webkit-scrollbar {
	/* display: none; */
}

.main-header .menu .dropdown:hover .submenu {
	transform: translate(-50%, 0);
	visibility: visible;
	opacity: 1;
}

.main-header .menu .dropdown .submenu .container {}

.main-header .menu .submenu span a {
	font-size: 14px;
	font-weight: 600;
	color: var(--primary-color-one);
	font-family: 'Poppins' !important;
}

.main-header .menu .submenu span a:hover {
	opacity: 0.8;
}

.main-header .menu .submenu li a {
	color: #000;
	padding: 2px 0;
	font-size: 14px;
	font-weight: 300;
	font-family: 'Poppins' !important;
}

.main-header .menu .submenu li a:hover {
	color: var(--primary-color-one);
}

.main-header .menu .dropdown .submenu ul li span {
	font-size: 14px;
	font-weight: 600;
	color: var(--primary-color-one);
}

.main-header .menu-bar {
	font-size: 25px;
	color: #fff;
	padding: 0;
	outline: none;
	box-shadow: none;
	display: none;
	font-family : 'poppins' !important;
}

.main-header .menu-bar:hover{
	background: none;
	border: none;
}

.main-header .menu-bar i:nth-child(2) {
	display: none;
	color: var(--primary-color-one);
}

.main-header .menu-bar.open i:nth-child(1) {
	display: none;
}

.main-header .menu-bar.open i:nth-child(2) {
	display: inline;
}

.main-header .menu-bar.open+.menu {
	height: 400px;
	visibility: visible;
	opacity: 1;
}

@media screen and (min-width: 992px) {
	.main-header .menu-bar.open+.menu {
		height: auto;
	}
}

@media screen and (max-width: 992px) {
	.top-header {
		padding: 2px 0;
	}

	.top-header .right-part {
		gap: 10px;
	}

	.main-header .menu-bar {
		display: block;
	}

	.main-header .menu {
		flex-direction: column;
		justify-content: unset;
		height: 0;
		visibility: hidden;
		opacity: 0;
		font-family: 'Poppins' !important;
	}
}

@media screen and (max-width: 767px) {
	.top-header .logo {
		width: 65%;
	}

	.top-header .email {
		display: none;
	}
}

.content-heading-box .heading {
	display: block;
	position: relative;
	font-size: 32px;
	color: #2a2a2a;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: unset;
	line-height: unset;
}

.content-heading-box .heading::after {
	content: "";
	display: block;
	width: 70px;
	height: 3px;
	background-color: var(--primary-color-one);
	margin-top: 8px;
}

.content-heading-box .heading.line-center::after {
	margin-left: auto;
	margin-right: auto;
}

.content-heading-box .mini-heading {
	float: left;
	height: auto;
	width: 100%;
	font-family: 'Kaushan Script', cursive;
	font-size: 25px;
	margin-bottom: 5px;
	color: #2a2a2a;
}

.content {
	color: #6a6b6f;
	font-weight: 500;
	font-size: 16px;
	line-height: 25px;
}

@media screen and (max-width: 480px) {
	.content-heading-box .heading {
		font-size: 18px;
	}

	.content-heading-box .mini-heading {
		font-size: 20px;
	}
}

.enquire-btn {
	background-color: var(--primary-color-one);
	color: #fff;
	border-radius: 50px;
	padding: 8px 20px;
	font-weight: 600;
	font-size: 14px;
}

.enquire-btn:hover {
	color: #fff;
	background-color: #000;
}


/* mission-vision-value */
.mission-vision-value {
	color: #fff;
}

.mission-vision-value .col-12 {
	padding: 50px 30px;
}

.mission-vision-value img {
	width: 60px;
	margin-bottom: 16px;
}

.mission-vision-value .title {
	font-size: 27px;
	font-weight: 700;
	color: #FFFFFF;
	margin-bottom: 15px;
}

.mission-vision-value .text {
	font-size: 16px;
	font-weight: 500;
	color: #FFFFFF;
	margin: 0;
	margin-bottom: 15px;
}

.mission-vision-value a {
	border: 2px solid #FFFFFF;
	text-align: center;
	font-size: 14px;
	color: #FFFFFF;
	font-weight: 600;
	padding: 8px 16px;
	border-radius: 0;
}

.mission-vision-value a:hover {
	background-color: #000;
	color: #fff;
	border-color: #000;
}

/* featured-categories */
.featured-categories a {
	display: block;
	border: 2px solid var(--primary-color-one);
	overflow: hidden;
}

.featured-categories a img {
	transition: 0.3s;
}

.featured-categories a:hover img {
	transform: scale(1.1);
}

.featured-categories p,
.accreditations p {
	font-size: 16px;
	font-weight: 600;
	text-transform: uppercase;
}

.featured-categories .featured-product-heading{
	/* 	font-size: 15px;
	font-weight: 500; */
}

.featured-categories .featured-product-heading a{
	display: unset;
	border: 0;
	overflow: unset;
	font-weight: 500;
	font-size: 15px;
	color: #000;
}

footer .main-footer {
	background-color: var(--primary-color-two);
	padding-top: 60px;
	padding-bottom: 20px;
}

.footer-title {
	margin-bottom: 20px;
	font-size: 20px;
	color: #fff;
	font-weight: 500;
}

.footer-body {
	color: #FFFFFF;
	font-size: 14px;
	margin-bottom: 20px;
}

.footer-body a,
.footer-body p {
	color: #fff;
	display: inline-block;
	margin-bottom: 8px;
	font-weight: 300;
	font-size: 14px;
}

/* .footer-body li a::before {
content: '\1F852';
margin-right: 8px;
} */

.footer-body li a i {
	font-size: 10px;
	margin-right: 8px;
}

.footer-body a:hover {
	color: var(--primary-color-one);
}

.footer-body ul a,
.footer-body p a {
	display: inline;
}

.footer-body ul a::before,
.footer-body p a::before {
	content: none;
}

.footer-body input {
	width: 100%;
	border: none;
	outline: none;
	font-size: 16px;
}

.footer-body input[type="email"] {
	color: #fff;
	border-bottom: 1px solid #bdbdbd;
	padding: 5px;
	background: transparent !important;
	box-shadow: none;
}

.footer-body input[type="submit"] {
	color: #000;
	font-size: 14px;
	line-height: 40px;
	background-color: var(--primary-color-one);
	margin-top: 8px;
	transition: 0.3s;
	padding: 0;
}

.footer-body input[type="submit"]:hover {
	color: #fff;
	background-color: #000;
}

.footer-body .social-icons {
	display: flex;
	gap: 10px;
}

.footer-body .social-icons a i {
	font-size: 22px;
	margin-right: 0;
}

footer .copyright {
	padding: 20px 0;
	border-top: 1px solid rgba(255, 255, 255, .1);
	text-align: center;
	background-color: var(--primary-color-two);
	color: #CCCCCC;
	font-size: 13px;
}


/* category */
.category-heading .row {
	padding-bottom: 8px;
	border-bottom: 1px solid #d8d8d8;
}

.category-heading .heading {
	color: var(--primary-color-one);
	text-transform: uppercase;
	margin-bottom: 0.5rem;
	font-weight: 500;
	line-height: 1.2;
	font-size: 2rem;
}

.category-heading .breadcrumbs {
	font-size: 12px;
	font-weight: 900;
	float: right;
	display: block;
}

@media screen and (max-width: 480px) {
	.category-heading .heading {
		font-size: 25px;
		text-align: center;
	}

	.category-heading .breadcrumbs {
		float: unset;
		text-align: center;
	}
}

.category-content {
	font-weight: 500;
	color: var(--primary-color-two);
	text-align: justify;

	/* 	display: none; */
}

.single-category-container {
	position: relative;
	margin-bottom: 30px;
}

.single-category-container .add-to-wishlist {
	position: absolute;
	top: 0;
	right: 0;
}

.add-to-wishlist i {
	color: red;
	transition: 0.5s;
	position: absolute;
	top: 8px;
	right: 8px;
}

.add-to-wishlist i:nth-child(2) {
	opacity: 0;
}

.add-to-wishlist:hover i:nth-child(1) {
	opacity: 0;
}

.add-to-wishlist:hover i:nth-child(2) {
	opacity: 1;
}

.single-category {
	color: #000;
}

.single-title {
	color: var(--primary-color-one);
	margin-top: 12px;
	text-transform: uppercase;
}

.hover-image-container {
	position: relative;
	overflow: hidden;
}

.hover-image-container img {
	max-width: 100%;
	transition: 1s;
}

.hover-image-container img:nth-child(2) {
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
}

.hover-image-container:hover img:nth-child(1) {
	opacity: 0;
}

.hover-image-container:hover img:nth-child(2) {
	opacity: 1;
}

.single-product-details .mini-heading {
	font-size: 20px;
}

.single-product-details .heading {
	font-size: 25px;
	color: var(--primary-color-one);
}

.specifications,
.about {
	font-size: 16px;
	font-weight: 400;
	color: var(--primary-color-two);
}

.specifications p {
	text-align: center;
	margin: 0;
	margin-bottom: 5px;
}

.enquiry-btn button {
	color: #ffffff;
	font-size: 14px;
	font-weight: 500;
	line-height: 30px;
	background-color: var(--primary-color-one);
	margin-top: 8px;
	transition: 0.3s;
	border-radius: 0;
}

.enquiry-btn button:hover {
	background-color: #000;
}

.similer-products {
	padding: 50px 0;
	background-repeat: no-repeat;
	background-size: cover;
}

.slider2 {
	width: 100%;
	overflow: hidden;
}

.similer-products .heading {
	display: block;
	font-size: 25px;
	font-weight: 300;
	margin-bottom: 20px;
	text-transform: uppercase;
}

.similer-products .swiper-slide {
	padding-bottom: 40px;
}

.single-similer-product {
	display: block;
	text-align: center;
	color: var(--primary-color-one);
}

.single-similer-product:hover {
	color: var(--primary-color-one);
	opacity: 0.8;
}

.single-similer-product .title {
	margin-top: 16px;
	text-transform: uppercase;
}

.content-area{
	float: none !important;
	width: 100% !important;
	margin: 0 !important;
}


/* new css */
.style-text {
	color: #808084;
	font-size: 15px;
	line-height: 26px;
	font-weight: 500;
	text-align: justify;
}

.right-img {
	width: 500px;
	float: right;
	margin: 0 0 20px 20px;
}

.left-img {
	width: 500px;
	float: left;
	margin: 0 20px 20px 0;
}

.sub-heading {
	font-size: 23px;
	text-align: left;
	font-weight: 800;
	color: #f9a61a;
	text-transform: uppercase;
}

@media screen and (max-width: 480px) {
	.right-img {
		width: 100%;
		float: unset;
		margin: 0 0 20px 0;
	}

	.left-img {
		width: 100%;
		float: unset;
		margin: 0 0 20px 0;
	}
}

.certificates a {
	background-color: #000;
}

.certificates a img {
	transition: 0.3s;
}

.certificates a:hover img {
	opacity: 0.5;
}

.testimonial-container {
	background-color: var(--primary-color-one);
	padding: 20px;
	color: #ffffff;
}

.testimonial-container span {
	font-size: 18px;
	font-weight: 800;
}

.fair-container {
	background-color: #fff;
	padding: 30px 20px;
	border: 1px solid #e6e5e4;
	font-weight: 500;
	height: 100%;
}

.fair-container p {
	font-size: 18px;
	color: #6a6b6f;
	margin: 0;
}

.fair-container .fair-location {
	font-size: 15px;
	color: var(--primary-color-one);
}

.gallery a[data-fancybox="gallery"] {
	height: 200px;
	display: block;
	background-color: #000;
	border: 2px solid var(--primary-color-one);
	outline: none;
}

.gallery a[data-fancybox="gallery"] img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: 0.3s;
}

.gallery a[data-fancybox="gallery"]:hover img {
	opacity: 0.5;
}

.question {
	font-size: 18px;
	font-weight: 700;
	color: var(--primary-color-one);
}

.contact-page .addresses {
	color: #808084;
	font-weight: 500;
}

.contact-page span {
	display: block;
}

.contact-page .addresses .office {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 5px;
}

.contact-page .addresses .location {
	font-size: 16px;
	font-weight: 600;
}

.contact-page .addresses .address {
	font-size: 15px;
}

.contact-page .addresses .contact-link {}

.contact-page .addresses .contact-link a {
	color: inherit;
}

.contact-form {
	background-color: var(--primary-color-one);
	padding: 20px;
	border-radius: 5px;
}

.contact-form .form-heading {
	color: #000000;
	text-align: center;
	font-size: 22px;
	font-weight: 600;
}

.contact-form input {
	height: 52px;
	outline: none;
	box-shadow: none !important;
	border: none;
	border-bottom: 2px solid #00000000;
}

.contact-form textarea {
	height: 80px;
	resize: none;
	outline: none;
	box-shadow: none !important;
	border: none;
	border-bottom: 2px solid #00000000;
}

.contact-form input:focus,
.contact-form textarea:focus {
	border-color: royalblue;
}


.contact-form input.btn {
	background-color: #000;
	color: #fff;
	height: auto;
	width: 100%;
	border: none;
	border-radius: 0;
}

/* modal start */
.search-modal,
.brochure-modal {
	position: fixed;
	z-index: 10000;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	background-color: rgba(0, 0, 0, 0.7);
	transition: 0.5s;

	opacity: 0;
	visibility: hidden;

}

.search-modal.show,
.brochure-modal.show {
	opacity: 1;
	visibility: visible;
}

.modal-content {
	border-radius: 0;
	padding: 16px;
}

.modal-title {
	font-weight: 300;
	color: var(--primary-color-two);
}

.modal-header button {
	color: var(--primary-color-two);
	box-shadow: none !important;
	border: none;
	outline: none;
}

.modal-body input[type='text'],
.modal-body input[type='tel'],
.modal-body input[type='email'] {
	outline: none;
	border: none;
	border-bottom: 1px solid #d6d6d6;
	margin-bottom: 24px;
	padding: 6px 8px;
	width: 100%;
}

.modal-body input[type='submit'] {
	background-color: var(--primary-color-one);
	color: #fff;
	border-radius: 2px;
	outline: none;
	border: none;
	box-shadow: none;
	float: right;
	padding: 10px 24px;
	transition: 0.3s;
}

.modal-body input[type='submit']:hover {
	box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

/* model end */


/* woo commerce css */
.storefront-sorting{
	display: block !important;
	width: 100%;
}

.storefront-sorting .woocommerce-notices-wrapper,
.storefront-sorting .woocommerce-ordering{
	display: none !important;
}

.woocommerce-loop-category__title,
.woocommerce-loop-product__title,
.wc-block-grid__product .wc-block-grid__product-link .wc-block-grid__product-title{
	font-size: 1.25rem;
	font-weight: 500;
	line-height: 1.2;
	color: var(--primary-color-one);
	text-transform: uppercase;
}

.flex-control-nav.flex-control-thumbs{
	display: flex;
	gap: 8px;
	margin: 10px 0 !important;
}

.flex-control-nav.flex-control-thumbs li{
	cursor: pointer;
}

.product-details .price{
	display: none !important;
}

.woocommerce-product-gallery.woocommerce-product-gallery--with-images{
	position: relative;
}

.woocommerce-product-gallery__trigger{
	position: absolute;
	z-index: 1;
	background: var(--primary-color-one);
	padding: 4px;
	outline-color: var(--primary-color-two) !important;
}

.product_title.entry-title{
	color: var(--primary-color-one);
	text-transform: uppercase;
	margin-bottom: 0.5rem;
	font-weight: 500;
	line-height: 1.2;
	font-size: 2rem;
}

@media screen and (max-width: 480px){
	.product_title.entry-title {
		font-size: 25px;
		margin-top: 12px;
	}
}

.summary.entry-summary form.cart{
	display: flex;
	gap: 8px;
	padding-left: 2px;
}

input[type=number]::-webkit-inner-spin-button, input[type=number]::-webkit-outer-spin-button{
	opacity: 1;
}

.single_add_to_cart_button{
	color: #fff !important;
	font-size: 14px;
	font-weight: 500 !important;
	line-height: 30px;
	background-color: var(--primary-color-one) !important;
	transition: 0.3s;
	border-radius: 0 !important;
	font-family: 'Roboto', sans-serif;
}

.single_add_to_cart_button:hover{
	/* 	color: #fff; */
	background-color: #000 !important;
}

.input-text[name="quantity"]{
	outline-color: var(--primary-color-one) !important;
}

.wc-block-cart__sidebar.wp-block-woocommerce-cart-totals-block .wp-block-woocommerce-cart-order-summary-block{
	display: none !important;
}

.wp-element-button.wc-block-cart__submit-button,
.wp-element-button.wc-block-components-checkout-place-order-button{
	background-color: var(--primary-color-one) !important;
	transition: 0.5s !important;
}

.wp-element-button.wc-block-cart__submit-button:hover,
.wp-element-button.wc-block-components-checkout-place-order-button:hover{
	background-color: #000 !important;
}

.wc-block-components-sidebar-layout.wc-block-cart.wp-block-woocommerce-filled-cart-block{
	flex-direction: column;
}

.wc-block-components-sidebar-layout .wc-block-components-main,
.wc-block-components-sidebar{
	margin: auto !important;
}

h1.entry-title{
	color: var(--primary-color-one);
	text-transform: uppercase;
	margin: 20px 0;
	font-weight: 500;
	line-height: 1.2;
	font-size: 2rem;
}

@media screen and (max-width: 480px){
	h1.entry-title {
		font-size: 25px;
		text-align: center;
	}
}

.wc-block-checkout__sidebar.wp-block-woocommerce-checkout-totals-block{
	display: none;
}

.woocommerce-table__product-table.product-total,
.woocommerce-table__product-total.product-total,
.woocommerce-table.woocommerce-table--order-details.shop_table.order_details tfoot tr,
.woocommerce-order-overview__total.total,
.wc-block-cart-items__header-product,
.wc-block-cart-items__header-total,
.aws_result_price{
	display: none !important;
}

/* .woocommerce-table.woocommerce-table--order-details.shop_table.order_details tfoot tr:last-child{
display: table-row !important;
}
*/

table.wc-block-cart-items .wc-block-cart-items__row .wc-block-components-product-name{
	color: var(--primary-color-one);
}

.wc-block-cart-item__product .specifications p{
	text-align: left;
}

.wc-block-grid__product-price.price{
	display: none !important;
}

#wpgs-gallery.wcgs-woocommerce-product-gallery{
	min-width: unset !important;
	max-width: unset !important;
}

.gallery-navigation-carousel.swiper .swiper-wrapper{
	transform: unset !important;
}

.wcgs-woocommerce-product-gallery.horizontal .swiper-pagination.swiper-pagination-bullets.swiper-pagination-horizontal{
	display: none !important;
}



a.go-to-home {
	color: #000;
	font-size: 14px;
	line-height: 40px;
	background-color: var(--primary-color-one);
	margin-top: 8px;
	transition: 0.3s;
	padding: 8px 16px;
}

a.go-to-home:hover {
	color: #fff;
	background-color: #000;
}


/*-----------Site Map-------------*/

.sitepages{
	margin-bottom:25px;
}

.sitepages h2{
	font-size:25px;
	font-weight:bold;
}

.sitepages ul{
	display:flex;
	justify-content:space-between;
}

@media screen and (max-width: 767px){
	.sitepages ul{
		display: unset;
	}
}

.sitepages ul li a{
	font-size: 16px;
	color: #f9a61a;
	font-weight: 700;
	transition:0.3s;
}

.sitepages ul li a:hover{
	color:#8d8c8c;
}

.siteproducts{
	margin-bottom:25px;
}

.siteproducts h2{
	font-size:25px;
	font-weight:bold;
}
.pad0{
	padding:0px;
}

.siteblock{
	width:100%;
	margin-bottom:30px;
}

.siteblock h4{
	font-size:16px;
	color:#f9a61a;
	font-weight:700;
}

.siteblock h4 a{
	font-size:16px;
	color:#f9a61a;
	font-weight:700;
}

.siteblock h4 a:hover{
	color:#8d8c8c;align-content
}


.siteblock ul li{
	margin-bottom:2px;
}

.siteblock ul li a{
	color:#000;
	transition:0.3s;
	font-size: 14px;
}

.siteblock ul li a:hover{
	color:#f9a61a;
}

.siteblock>ul{
	margin-left:15px !important;
	list-style: square !important;
}

.siteblock ul ul{
	margin-left:15px !important;
	list-style: disc !important;
}

.siteblock ul ul li a{
	font-size:12px;
	color:#8d8c8c;
}

/* ----------------------Blog Start-------------------------- */
.blog-heading .heading{
	text-transform: unset;
}

.single-blog-container .single-blog {
	display: block;
	background-color: rgb(248, 248, 248);
	padding: 10px;
}

.single-blog-container .single-blog .single-title{
	font-weight: 500;
	text-transform: unset;
}

.single-blog-container .single-blog .single-blog-img {
	overflow: hidden;
	flex: 1;
}

.single-blog-container .single-blog .single-blog-img img {
	transition: 0.3s;
	height: 100%;
	width: 100%;
	object-fit: cover;
}

.single-blog-container .single-blog:hover .single-blog-img img {
	transform: scale(1.05);
}

.single-blog-container .single-blog .single-blog-content {
	flex: 3;
	margin-left: 16px;
}

.single-blog-container .single-blog .timing {
	color: #838383;
	font-size: 12px;
	margin: 8px 0;
}

.single-blog-container .single-blog .mini-content {
	color: #000;
	font-size: 14px;
}

.single-blog-container .single-blog .btn {
	border: 2px solid var(--primary-color-one);
	text-align: center;
	font-size: 14px;
	color: #000;
	font-weight: 600;
	padding: 8px 16px;
	border-radius: 0;
	outline: none;
	box-shadow: none;
}

.single-blog-container .single-blog .btn:hover {
	color: #fff;
	background-color: #000;
	border-color: #000;
}

.recent-posts .heading {
	color: var(--primary-color-one);
	font-weight: 500;
}

.single-recent-post {
	display: flex;
	gap: 16px;
	border-top: 1px solid #d8d8d8;
	padding-top: 10px;
	margin-top: 10px;
}

.single-recent-post img {
	width: 80px;
	height: 80px;
	object-fit: cover;
	background-color: #000;
}

.single-recent-post:hover img {
	opacity: 0.8;
}

.single-recent-post .title {
	font-size: 14px;
	font-weight: 500;
	color: #6a6b6f;
}

.single-recent-post:hover .title {
	color: var(--primary-color-one);
}

.single-recent-post .timing {
	color: #838383;
	font-size: 12px;
	margin: 8px 0;
}

.blog-content {
	color: #808084;
	font-size: 15px;
	line-height: 26px;
	font-weight: 500;
	text-align: justify;
}

.blog-content .timing {
	color: #838383;
	font-size: 12px;
	margin: 8px 0;
}

.blog-content ul,
.blog-content ol {
	list-style: unset !important;
	margin-left: 16px !important;
	margin-bottom: 16px !important;
}

@media screen and (max-width: 991px) {

	.single-blog-container .single-blog .single-blog-img {
		flex: 1.5;
	}

	.single-blog-container .single-blog .single-blog-content {
		flex: 2;
	}

}

@media screen and (max-width: 767px) {
	.single-blog {
		flex-direction: column;
	}

	.single-blog-container .single-blog .single-blog-content {
		margin-left: 0;
	}
}

.post-tags-container {
	margin-top: 18px;
	padding-top: 10px;
	border-top: 1px solid var(--primary-color-one);
}

.post-tags-container .heading {
	color: var(--primary-color-one);
	font-weight: 500;
}

.post-tags-container .post-tags a {
	color: #838383;
	display: block;
	margin-top: 6px;
	padding-top: 6px;
	font-size: 14px;
	border-top: 1px solid #d8d8d8;
}

.post-tags-container .post-tags a:hover {
	color: var(--primary-color-one);
}
/* ----------------------Blog End-------------------------- */

.pagi .page-numbers {
	border: 1px solid #f9a61a;
	padding: 2px 4px;
	background: #f8f8f8;
	color: #000;
}

.pagi .page-numbers.current {
	background: #000;
	color: #fff;
	border: 1px dotted #f9a61a;
}

.pagi .page-numbers:hover{
	background: #000;
	color: #fff;
}

div#primary {
    padding: 20px;
}
mark.count { display: none !important; }