:root {
	--pc: #76a713;
	--sc: #ff7800;
	--white: #fff;
	--black: #000;
	--muted: rgba(42, 42, 42, .8);
	--transition: all 0.3s ease-out 0s;
}

body a {
	text-decoration: none;
	color: var(--pc);
}

p,
:is(ul, ol) li,
.flex-col-wp-single-blog-container span{
	line-height: 30px;
	font-size: 16px;
	font-weight: normal;
	color: var(--black);
}

.sub-heading {
	font-family: "Architects Daughter", Sans-serif;
	font-size: 24px;
	font-weight: 400;
	color: var(--sc);
}

[class*="site-seprator"] h2 {
	margin-bottom: 15px;
	color: #227500;
}

form :is(input, select, textarea) {
	font-size: 1rem;
	background: var(--white);
	border: 1px solid #ECECEC;
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.07);
	font-weight: 500;
	color: #606266;
}

.flex-col-input label {
	font-size: 15px;
	font-weight: 500;
}

.flex-col-input label span {
	color: #f56c6c;
}

form :is(input, select, textarea):focus-visible {
	outline: none;
}

form button {
	font-size: 1rem;
	background: transparent;
	border: none;
	cursor: pointer;
}

.topbar {
	background-color: var(--pc);
	padding: 12px 0;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.6;
	color: var(--white);
	z-index: 2;
	position: relative;
}

.topbar .flex-top-left :is(p, div, a) {
	color: var(--white);
}

[class*="btn-"] {
	font-size: 16px;
	font-weight: 600;
	line-height: 2.5rem;
}

[class*="btn-pc-"] {
	background: var(--sc);
	color: var(--white);
}

.btn-pc-flash {
	border-radius: 5px;
	padding: 0px 26px;
	width: fit-content;
}

.btn-pc-flash:after {
	width: 50px;
	height: 50px;
	content: '';
	position: absolute;
	top: -13px;
	left: -28px;
	-webkit-border-radius: 50px;
	-khtml-border-radius: 50px;
	-moz-border-radius: 50px;
	-ms-border-radius: 50px;
	-o-border-radius: 50px;
	border-radius: 50px;
	z-index: -1;
	background-color: rgba(255, 255, 255, .32);
	-webkit-transition: 0.3s cubic-bezier(.24, .74, .58, 1);
}

.btn-pc-flash:hover:after {
	transform: scale(10);
	background-color: rgba(255, 255, 255, .08);
}

#bodyBtn {
	background: #1E6D00;
	color: var(--white);
}

/*==============///site-header-start==============*/

.header .container {
	background: var(--white);
	transition: var(--transition);
	box-shadow: 0 15px 25px rgba(154, 154, 154, .15);
}

.header .badge {
	border: 1px solid #D3D2DF;
	border-radius: 4px;
	fill: #6d6c80;
	transition: var(--transition);
	cursor: pointer;
}

.header .badge span {
	background: #f10505;
	border-radius: 50%;
	font-size: 10px;
	color: var(--white);
}

.header nav ul li a {
	color: #010148;
	font-size: 16px;
	transition: all 220ms linear 0ms;
	font-weight: 700;
}

.header .dropdown svg {
	cursor: pointer;
	transition: all .2s ease-in;
	margin-left: auto;
}

.header .dropdown ul li.dropdown:not(.header .dropdown) {
	transform: rotate(-90deg);
}

.header .dropdown ul {
	background: var(--white);
	transition: var(--transition);
	border-radius: 4px;
	box-shadow: 0px 30px 70px 0px rgba(137, 139, 142, 0.15);
	border: 1px solid #f5f5f5;
}

.header .dropdown ul li a:hover {
	transition: all 220ms linear 0ms;
	padding-left: 30px;
	color: var(--pc);
}

.header .dropdown ul li a:hover:after {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	background: var(--pc);
	transition: all 220ms linear 0ms;
	height: 2px;
	width: 20px;
}

.header nav ul li:not(ul li > ul li):hover:after,
.header nav ul li a:not(ul li > ul li a):hover:after,
.header nav ul>li a.active:not(li ul li a.active):after,
.header nav ul li:not(li ul li):hover:before,
.header nav ul li a:not(li ul li a):hover:before,
.header nav ul li a.active:not(li ul li a.active):before {
	content: '';
	position: absolute;
	z-index: -1;
}

.header nav ul li:not(ul li > ul li):hover:after,
.header nav ul li a:not(ul li > ul li a):hover:after,
.header nav ul>li a.active:not(li ul li a.active):after {
	width: 0;
	height: 0;
	border-width: 5px;
	border-style: solid;
	border-color: #7f3c00 #7f3c00 transparent transparent;
	bottom: -10px;
    left: -9px;
	display: none;
}

.header nav ul li:not(li ul li):hover:before,
.header nav ul li a:not(li ul li a):hover:before,
.header nav ul li a.active:not(li ul li a.active):before {
	inset: 0;
	background: var(--sc);
	height: 100px;
	width: 100%;
}

.header nav ul li:not(ul li > ul li):hover:after,
.header nav ul li a:not(ul li > ul li a):hover:after,
.header nav ul li a.active:not(li ul li a.active):after {
	display: block;
}

.header nav ul li:hover a:not(ul li > ul li a),
.header nav ul li a:hover:not(ul li > ul li a),
.header nav ul li a.active:not(ul li > ul li a.active) {
	color: var(--white);
}

.header nav ul li:hover svg:not(ul li > ul li svg) {
	fill: var(--white);
}

.header .site-searching,
.header .menuToggler {
	cursor: pointer;
}

#headerSticky {
	transition: all 0.7s ease;
	background: var(--white) !important;
	box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
	transform: translateY(0);
	animation: smoothSticky 0.7s ease;
}

@keyframes smoothSticky {
	0% {
		transform: translateY(-100%);
	}

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

#headerSticky .container {
	box-shadow: unset !important;
}

/*==============///site-search-bar-start==============*/

.popup-search-box {
	background: rgba(255, 255, 255, 0.98);
	transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.popup-search-box button.searchClose {
	background-color: var(--pc);
	transition: all 0.3s ease;
}

.popup-search-box form input {
	border: none;
	border-bottom: 2px solid var(--black);
	border-radius: unset;
	font-size: 25px;
	font-weight: 600;
	transition: all 0.3s ease;
	box-shadow: unset !important;
	background-color: unset !important;
}

.popup-search-box form button {
	background: transparent;
	border: none;
	transition: all 0.3s ease;
}

/*//header-&-searcbar//=============(END*)*/

.site-banner:after {
	bottom: 0;
	left: 0;
	background: url(https://naturmedscientific.com/wp-content/uploads/2025/08/slider-bg1-scaled1.jpg) no-repeat center/cover;
	height: 100px;
	z-index: -1;
}

.site-banner h1 {
	font-size: 62px;
	font-weight: 700;
	line-height: 80px;
	margin-bottom: 0;
	color: rgb(26, 36, 40);
}

.site-banner p {
	font-size: 20px;
	line-height: 35px;
}

.flex-btn-hero {
	line-height: unset;
	background: var(--sc);
	color: var(--white);
	border-radius: 30px;
	transition: all .3s;
}

.flex-btn-hero span {
	background: var(--white);
	border-radius: 50%;
}

.flex-btn-hero:hover {
	background: var(--pc);
	transition: all .3s;
}

.flex-btn-hero svg path {
	transition: transform .38s cubic-bezier(0.37, 0.08, 0.02, 0.93), opacity .18s ease-out;
}

.flex-btn-hero svg path:last-child {
	transform: translateX(-110%);
	opacity: 0;
}

.flex-btn-hero:hover svg path:first-child {
	transform: translateX(110%);
	opacity: 0;
}

.flex-btn-hero:hover svg path:last-child {
	opacity: 1;
	transform: translate(0);
}

.hero-animate-img img {
	animation: moveAnimateB 3s ease-in-out .1s infinite;
}

@keyframes moveAnimateB {
	0% {
		transform: translateY(0);
	}

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

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

.arrow-icn:after {
	background: url(https://naturmedscientific.com/wp-content/uploads/2025/08/slider-arow1.png) no-repeat;
	height: 55px;
	width: 55px;
	right: 130px;
	top: -50px;
}

.slider-prev,
.slider-next {
	border: none;
	cursor: pointer;
	transition: all 0.3s ease;
	background: transparent;
}

.slider-prev:after {
	background: rgba(173, 232, 55, .6);
	left: 20px;
}

.slider-next:after {
	background: rgba(255, 174, 101, .6);
	left: -30px;
}

.slider-prev:after,
.slider-next:after {
	top: -5px;
	height: 40px;
	width: 40px;
	border-radius: 50%;
}

.natmed-sol-card {
	background: #E9F9FD;
	border-radius: 10px;
}

.natmed-flex-col :is(h4, .h5) {
	color: #227500;
}

.card-btn {
	background: var(--sc);
	border-radius: 30px;
	font-weight: 500;
	transition: all 0.3s;
	color: var(--white);
	padding: .65em 1em;
	width: fit-content;
	cursor: pointer;
}

.card-btn svg {
	opacity: 0;
	transform: translateX(-10px) scale(0.5);
	transition: all 0.3s;
	display: inline-block;
	width: 0;
	margin-left: 0;
}

.card-btn:hover {
	text-decoration: unset !important
}

.card-btn:hover svg {
	opacity: 1;
	transform: translateX(0) scale(1);
	width: auto;
	margin-left: 8px;
}

.natmed-sol-card:hover {
	transition: all 0.3s;
	box-shadow: 0 49px 49px rgba(12, 13, 12, .1);
}

.bounce-ani-trigger:hover img {
	animation: bounce 1200ms ease-out infinite;
}

@keyframes bounce {
	0%,
	100%,
	20%,
	50%,
	80% {
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0);
	}

	40% {
		-webkit-transform: translateY(-10px);
		-ms-transform: translateY(-10px);
		transform: translateY(-10px);
	}

	60% {
		-webkit-transform: translateY(-5px);
		-ms-transform: translateY(-5px);
		transform: translateY(-5px);
	}
}

.about-bg-wrap::after {
	content: '';
	position: absolute;
	inset: 0;
	z-index: -2;
	height: 100%;
	width: 100%;
	background: url(https://naturmedscientific.com/wp-content/uploads/2025/08/bg-section7.webp) no-repeat;
}

.about-bg-wrap::before {
	content: '';
	position: absolute;
	inset: 0;
	z-index: -1;
	height: 100%;
	width: 100%;
	background: url(https://naturmedscientific.com/wp-content/uploads/2025/08/h9-bg-section2.webp) no-repeat center/cover;
	opacity: 0.5;
}

.abot-img img,
.adv-mid-img img {
	border-radius: 5px;
}

.adv-col {
	background-color: #F7F8F9;
	border: 1px solid #EEEEEE;
	border-radius: 7px;
}

.adv-col .flex-adv-icon {
	background-color: var(--sc);
	border-radius: 50%;
	outline-offset: 2px;
	outline: 3px solid var(--sc);
}

.adv-col .flex-adv-icon::after {
	content: '';
	position: absolute;
	background-color: var(--pc);
	height: 100%;
	width: 100%;
	border-radius: 50%;
	inset: 0;
	transform: scale(0);
	z-index: -1;
	transition: transform 0.3s ease;
}

.adv-col:hover .flex-adv-icon::after {
	transform: scale(1);
}

:where(.site-bg, .bg-primary) {
	padding-block: 60px;
}

.site-bg {
	background: #F7F8F9;
}

.bg-primary {
	background: #76A713;
}

.bg-primary :is(h2, p) {
	color: var(--white);
}

.swiper-button-next:after,
.swiper-button-prev:after {
	font-weight: 700 !important;
	font-size: 13px !important;
}

.certified-img {
	border: 1px solid #ccc;
	border-radius: 5px;
	padding: 5px;
	background: var(--white);
}

.swiper-pagination-bullet {
	background: #227500 !important;
	opacity: unset !important;
}

.swiper-pagination-bullet-active {
	background: var(--black) !important;
}

#ourEvent .swiper-slide {
	border: 1px solid #EEEEEE;
	box-shadow: 0 5px 7px 0px rgba(0, 0, 0, 0.15);
	transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
	padding: 18px 10px;
	border-radius: 10px;
	background: var(--white);
}

#ourEvent .swiper-slide img {
	border: 1px solid #DDDDDD;
	border-radius: 7px 7px 7px 7px;
}

#modalAlt {
	color: #fff;
	font-size: 18px;
	position: absolute;
	bottom: 40px;
}

.flex-gallery-item,
.gallery-img img {
	cursor: pointer;
}

.blog-card:not(.sidebar .blog-card){
	box-shadow: 5px 5px 30px -5px rgba(0, 0, 0, 0.15);
	border: 1px solid #DDDDDD;
	border-radius: 10px;
}

.blog-card .category {
	background: var(--pc);
	border-radius: 5px 5px 0px 0px;
	color: var(--white);
}

.blog-card .img-placeholder {
	background-color: #c7c7c7;
}

.blog-card .blog-title {
	font-size: 20px;
	font-weight: 600;
	line-height: 1.5;
	color:var(--black) 
}

.blog-card .flex-col-blog-content-wrap {
	background: var(--black);
	transition: all .3s ease;
	opacity: 0;
	visibility: hidden;
}

.blog-card:hover .flex-col-blog-content-wrap {
	transition: all .3s ease;
	opacity: 1;
	visibility: visible;
}

.blog-card .flex-col-blog-content-wrap :where(div, span, a, p) {
	color: var(--white);
}

.blog-card .flex-date {
	background: #FFFFFF2B;
	width: fit-content;
	padding: 5px 10px;
	border-radius: 5px;
	gap: 7px;
}

/*///single-page-layout-start*/

.single-page-banner h1 {
	color: var(--white);
	font-size: 48px;
}

#breadcrumbs :is(a, span) {
	font-size: 15px;
	font-weight: 500;
	color: var(--white);
}

.single-page-banner:before,
#breadcrumbs span:before {
	content: '';
	position: absolute;
}

.single-page-banner:before {
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, .6);
}

 body.single-product .single-product :is(.sku_wrapper, .posted_in, .tagged_as){
    font-weight: 600
  }

#breadcrumbs span:before {
	top: 8px;
	left: -25px;
	background: url('data:image/svg+xml,<svg width="18" height="18" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill="%23fff" fill-opacity=".01" d="M0 0h48v48H0z"/><path d="m12 12 12 12-12 12m12-24 12 12-12 12" stroke="%2376a713" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"/></svg>') no-repeat center / contain;
	height: 17px;
	width: 17px;
}

.flex-certified-col {
	border: 1px solid #ccc;
	padding-block: 20px;
	border-radius: 5px;
}

.cs-col {
	background: #f1ffd5;
	padding: 30px;
	height: 100%;
	border-radius: 10px;
	border: 1px solid var(--pc);
}

.wp-in-page-searching-layout input:focus{
	transition:all .3s ease;
	border: 1px solid var(--pc) !important;
}

.sidebar .row .col-lg-12:not(:last-child) .grid-card{
        border-bottom: 1px solid #cccccc5e;
        padding-bottom: 20px !important;
    }

.single_post_bottom_unOrdered__list,
.single_post_bottom_Ordered__list{
	gap: 5px !important;
	margin-bottom: 30px !important;
}

ul.single_post_bottom_unOrdered__list{
	list-style: disc !important;
    }

ol.single_post_bottom_Ordered__list{
        list-style: decimal !important;
    }

    .single_post_bottom_unOrdered__list li a:hover{
        color: var(--sc) !important;
        text-decoration: unset !important;
    }

/*==============///site-Contact-pg.-start==============*/

.con-info-flex-col {
	background: var(--pc);
	transition: all .4s ease;
	border-radius: 50px 0 50px 0;
}

.con-info-flex-col:hover {
	transform: scale(.9);
	transition: all .4s ease;
	outline: 4px dotted var(--pc);
	outline-offset: 20px;
}

.con-info-flex-col:after {
	content: '';
	position: absolute;
	inset: 0;
	height: 100%;
	width: 100%;
	background: url(https://naturmedscientific.com/wp-content/themes/organio/assets/images/bg-fancybox1.png) no-repeat;
	background-size: cover;
	background-position: center;
	z-index: -1;
}

.con-info-flex-col :where(a, p, div) {
	color: var(--white);
}

.con-info-flex-col span {
	background: var(--white);
	border-radius: 50%;
}

.con-info-flex-col :where(a, p) {
	font-size: 19px;
}

.flex-between-career {
	background: #f7f8f9;
	border: 1px solid #ccc;
	padding: 30px;
}

.sep-border {
	color: rgb(203 203 203 / 80%);
	padding-left: 10px;
}

.career-form {
	background-color: var(--white);
	padding: 20px;
	border-radius: 10px 10px 10px 10px;
	box-shadow: 5px 5px 30px -5px rgba(0, 0, 0, 0.15);
}

/*==============///site-footer-start==============*/

.footer .h3,
.footer p,
.footer a,
.footer .link-ttl,
.footer .flex-col-form label,
.our-timing span {
	color: var(--white);
}

.footer .link-ttl, .footer .flex-col-foot-list li {
	line-height: 1;
}

.footer:after,
.footer .footer-form:after,
.footer .link-ttl:after,
.footer .flex-col-foot-list li:before {
	content: '';
	position: absolute;
}

.footer:after {
	inset: 0;
	z-index: -1;
	background: url(https://naturmedscientific.com/wp-content/uploads/2025/08/bg-footer-top.png) no-repeat top center/cover;
	margin-top: -50px;
}

.footer .footer-form {
	background: var(--pc);
	border-radius: 150px;
}

.footer .footer-form:after {
	inset: 0;
	z-index: -1;
	background: url(https://naturmedscientific.com/wp-content/uploads/2025/08/bg-newsletter1.png) no-repeat right center / cover;
	height: 100%;
	width: 100%;
}

.footer form input {
	border-radius: 30px;
}

.footer form button {
	border-radius: 0 30px 30px 0;
	background: var(--sc);
	color: var(--white);
}

.footer .flex-col-foot-list li:before {
	top: 0;
	left: -27px;
	height: 18px;
	width: 18px;
	background: url('data:image/svg+xml,<svg width="18" height="18" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill="%23fff" fill-opacity=".01" d="M0 0h48v48H0z"/><path d="m19 12 12 12-12 12" stroke="%23ccc" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"/></svg>') no-repeat;
}

.footer .link-ttl:after {
	left: 0;
	bottom: -15px;
	background: #B2D659;
	height: 1.5px;
	width: 30px;
}

.flex-foot-info a {
	line-height: 1.8;
	font-size: 14px;
}

.our-timing p {
	color: var(--sc);
}

.flex-col-info-content p {
	margin-bottom: 0;
	line-height: 1.4;
}

.copyryt {
	color: var(--white);
	font-weight: 500;
	font-size: 15px;
}

.copyryt:before {
	position: absolute;
	background: url(https://naturmedscientific.com/wp-content/uploads/2025/08/bg-footer-bottom.png) no-repeat top/cover;
	height: 100%;
	width: 100%;
	content: '';
	left: 0;
	bottom: 0px;
	z-index: -1;
}

.flex-col-foot-list li a {
	transition: all .3s ease;
	position: relative;
}

.flex-col-foot-list li a:hover {
	padding-left: 10px;
	transition: all .3s ease;
}

.flex-col-foot-list li a:after,
.flex-col-foot-list li a:before {
	content: "";
	height: 2px;
	position: absolute;
	right: 0;
	top: calc(100% + 2px);
	width: 0;
}

.flex-col-foot-list li a::after {
	transition: .3s ease-in-out;
	background: var(--white);
}

.flex-col-foot-list li a:hover:after,
.flex-col-foot-list li a:hover:before {
	height: 1.5px;
	left: 10px;
	width: 85%;
}

.chat-on-wtsp {
	background: #27B43E;
	border-radius: 50%;
}

#backToTop {
	background: var(--pc);
	border-radius: 4px 0 0 4px;
	cursor: pointer;
}

/*==============///site-footer-end==============*/

/*//Schedule_Form_Popup//*/

.fixed_your_meeting .flex-meeting-head-between {
	font-size: 22px;
	font-weight: 600;
	color: var(--white);
	border-radius: 12px 12px 0 0;
	background: var(--pc);
	padding: 15px 25px;
	margin: 0;
}

.fixed_your_meeting_Enq-Form {
	background: #F3F4F5;
	padding: 25px;
	border-radius: 0 0 12px 12px;
}

form .fixed_your_meeting_Enq-Form :is(textarea, input) {
	box-shadow: unset;
	padding: 15px 20px !important;
}

#SYM_Overlay,
#getQuote_Overlay{
	display: none;
	background: hsl(0deg 0% 0% / 77%);
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 9999;
}

.closegetQuoteModals, .closeMeetModals, .sidebarClose{
	cursor:pointer
}

/*//Schedule_Form_Popup//*/

.accordians details {
	border: 1px solid #ccc;
}

.accordians details:not(:last-child) {
	border-bottom: unset !important;
}

.accordians details summary {
	list-style: none;
	color: #227500;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
}

.accordians details summary:before,
.accordians details summary:after {
	content: '';
	position: absolute;
	right: 15px;
	top: 15px;
	height: 20px;
	width: 20px;
}

.accordians details[open] summary:after {
	display: none;
}

.accordians details[open] summary:before {
	background: url('data:image/svg+xml,<svg width="20" height="20" fill="%2366D074" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path fill="none" d="M0 0h16v16H0z"/><path d="M15 7H1v2h14z"/></svg>') no-repeat;
}

.accordians details summary:after {
	background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M8 2a1 1 0 0 0-1 1v4H3a1 1 0 1 0 0 2h4v4a1 1 0 1 0 2 0V9h4a1 1 0 1 0 0-2H9V3a1 1 0 0 0-1-1" fill="%23227500"/></svg>') no-repeat;
}

.accordians details[open] summary {
	color: #66D074;
}

.accordians details .content {
	padding: 15px 25px 30px;
	border-top: 1px solid #ccc;
}

/* //error-page-styling*/

.grid-card .flex-col-wp-content a {
	color: var(--black);
	font-size: 17px;
}

.grid-card .flex-col-wp-content a:hover {
	color: var(--pc);
}

.wp-in-page-searching-layout button {
	background: #1E6D00;
	padding: 10px 15px;
}

/* // single-blog-styling (start) //*/

.flex-col-wp-single-blog-container .img-placeholder img {
	border-radius: 10px 10px 0 0;
}

.flex-col-wp-single-blog-container .flex-wp-sinlge-blog-info {
	border-bottom: 1px solid #ccc;
	padding-bottom: 20px;
}

.flex-col-wp-single-blog-container .flex-wp-sinlge-blog-info:after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -2px;
	background: var(--pc);
	height: 4px;
	width: 40px;
}

.flex-col-wp-single-blog-container .flex-wp-sinlge-blog-info .flex-info-item :where(span, div, p, a) {
	font-size: 15px;
}

.flex-col-wp-single-blog-container a:hover {
	text-decoration: underline;
}

.wp-ath-card-wrapper .post-title {
	font-weight: 600;
	font-size: 22px;
	line-height: 1.4;
}

.sidebar .wp-block-woocommerce-product-categories ul.wc-block-product-categories-list li,
.sidebar .wp-block-categories li.cat-item{
	border-bottom: 1px solid #ccc;
	padding-bottom: 15px;
}

.sidebar .wp-block-woocommerce-product-categories ul.wc-block-product-categories-list li a,
.sidebar .wp-block-categories li.cat-item a{
	color: var(--black);
	font-size: 15px;
	font-weight: 600;
	transition: all .4s ease;
}

.sidebar .wp-block-woocommerce-product-categories ul.wc-block-product-categories-list a:hover,
.sidebar .wp-block-categories li.cat-item a:hover{
	color: var(--pc);
	padding-left: 20px;
	transition: all .4s ease;
}

.sidebar h4 {
	position: relative;
	margin-bottom:30px
}

.sidebar h4:after {
	content: '';
	position: absolute;
	left: 0px;
	bottom: -7px;
	background: var(--pc);
	height: 2px;
	width: 40px;
}

/* //woo-commerce-dash...-css>start */

.woocommerce-account .woocommerce nav ul li:not(:last-child) {
    border-bottom: 1px solid #cccccc4f;
    padding: 15px 25px ;
}

.woocommerce-account .woocommerce nav ul li:hover{
   transition: all .4s ease;
   background: #f1f1f1;
}

.woocommerce-account .woocommerce nav ul li.is-active {
   background: var(--pc);
}

.woocommerce-account .woocommerce nav ul li.is-active a{
   color: var(--white);
}

.woocommerce-downloads .woocommerce .woocommerce-MyAccount-content .woocommerce-info:after,
.woocommerce-edit-address .woocommerce .woocommerce-MyAccount-content .woocommerce-Address .woocommerce-Address-title:after,
.woocommerce-edit-address .woocommerce .woocommerce-MyAccount-content .woocommerce-Address .woocommerce-Address-title:before,
.single-product .woocommerce .woocommerce-tabs ul li:after,
.single-product .woocommerce .woocommerce-tabs ul li:before{
   content: unset !important;
}

.woocommerce-edit-address .woocommerce .woocommerce-MyAccount-content .woocommerce-Address{
       background: #b9b9b91a;
    padding: 30px;
    border-radius: 5px;
    border: 1px solid #ccc;
	margin-top:15px
}

.woocommerce-edit-address .woocommerce .woocommerce-MyAccount-content .woocommerce-Address .woocommerce-Address-title h2{
   font-size: 22px;
    margin-bottom: 0;
}

.woocommerce-edit-account .woocommerce .woocommerce-MyAccount-content fieldset{
   padding: 20px;
    margin-block: 25px;
    border-radius: 10px;
    border: 1px solid #ccc;
	background:var(--white)
}

.woocommerce .woocommerce-button{
	background:var(--pc) !important;
	color:var(--white) !important;
}

.woocommerce form.edit-account{
	background: #cccccc30;
    padding: 25px;
    border: 1px solid #ccc;
    border-radius: 10px;
}

.single-product .woocommerce .woocommerce-tabs ul.tabs li {
	 border-radius: 0 !important;
    background: var(--pc) !important;
    padding: 5px 30px !important;
    color: var(--white) !important;
    font-weight: 400 !important;
	border: 0 !important;
}

.woocommerce-info::before{
	top:1.7em !important
}

.flex-col-brochure{
      padding: 30px;
      border: 1px solid #ccc;
      border-radius: 7px;
   }

   .flex-col-brochure .h3{
      color: #1e6d00;
	   text-align:center
   }

/* //site-pagination----start */

.pagination .nav-links :is(a, span),
.woocommerce-pagination ul li :is(a, span){
       background: #cccccc26 !important;
   transition: all .4s ease !important;
    border-radius: 5px !important;
    font-size: 17px !important;
}

.pagination .nav-links span.current,
.pagination .nav-links :is(a, span):hover,
.woocommerce-pagination ul li span.current,
.woocommerce-pagination ul li :is(a, span):hover{
   background: var(--pc) !important;
   color: var(--white) !important;
   transition: all .4s ease !important;
}

/* --------for__(leave-a-cmnt__form, show-cmnt, next-or-prev. post [in-single-pg....])----------start */

.flex_prev_next_blog_col_between .blog-card {
   box-shadow: unset !important;
   border: unset !important;
}

.flex_prev_next_blog_col_between a {
   color: var(--black);
}

.flex_prev_next_blog_col_between .blog-card .blog-content a {
   font-size: 16px;
   font-weight: 700;
}

.flex_prev_next_blog_col_between a:hover {
   text-decoration: unset !important;
   color: var(--pc) !important;
}

.border-top {
   border-top: 1px solid #ccc;
   padding-top: 30px;
   margin-block: 0 20px;
}

.single__blog__leave__cmnt .form-wrap {
   padding: 35px;
   box-shadow: 0 0 35px rgba(12, 12, 12, .05);
   background: var(--white);
}

.single__blog__leave__cmnt .form-wrap form :is(input, textarea, select):not(input[type="checkbox"]) {
   background-color: #fff;
   border: 1px solid #ececec;
   color: #5d5d60;
   font-size: 15px;
   font-weight: 400;
   box-shadow: unset;
}

.flex-check label {
   color: var(--muted);
   line-height: 1.5;
}

/* //add-css */
    .whatsapp-chat {
      position: fixed;
      bottom: 30px;
      right: 20px;
      display: flex;
      align-items: center;
      z-index: 9999;
      animation: floatUpDown 2s ease-in-out infinite;
    }

   .whatsapp-text {
    background-color: #f1f1f1;
    color: #000;
    padding: 10px 14px;
    font-size: 16px;
    margin-right: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
    text-decoration: none;
    border-radius: 50px;
    border: 1px solid #cccccc5c;
}

    .whatsapp-icon {
      background-color: #25d366;
      border-radius: 50%;
      width: 48px;
      height: 48px;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s;
    }

    .whatsapp-icon:hover {
      transform: scale(1.05);
    }

    .whatsapp-icon img {
      width: 24px;
      height: 24px;
    }

    @keyframes floatUpDown {
      0%, 100% {
        transform: translateY(0);
      }
      50% {
        transform: translateY(-6px);
      }
    }


/* --------for__(leave-a-cmnt__form, show-cmnt, next-or-prev. post [in-single-pg....])----------start */

.border-top {
   border-top: 1px solid #ccc;
   padding-top: 30px;
   margin-block: 0 20px;
}

.single__blog__leave__cmnt .form-wrap {
   padding: 35px;
   box-shadow: 0 0 35px rgba(12, 12, 12, .05);
   background: var(--white);
}

.single__blog__leave__cmnt .form-wrap form :is(input, textarea, select):not(input[type="checkbox"]) {
   background-color: #fff;
   border: 1px solid #ececec;
   color: #5d5d60;
   font-size: 15px;
   font-weight: 400;
   box-shadow: unset;
}

.flex-check label {
   color: var(--muted);
   line-height: 1.5;
}

ul.comment_list a{
   color: #acabab;
   font-size: 14px;
}

ul.comment_list a span{
   color: var(--pc);
}

ul.comment_list a:hover{
   text-decoration: unset !important;
}

ul.comment_list:not(.comment_list.by_admin){
   border-bottom: 1px solid #ccc;
   padding-bottom: 30px;
}

/* Woocoomerce Overide */
.woocommerce div.product div.images .woocommerce-product-gallery__trigger {
	z-index: 1 !Important;
}

.popup-search-box form button {
 background: none !Important;
}

/*//responsive-query=================start*/

@media (width <=1023px) {
	.header .menuClose {
		background: var(--white);
	}

	.header .menu {
		background: var(--white);
		box-shadow: -9px 0 14px 0px rgba(0, 0, 0, 0.06);
		transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
	}

	.header .menuToggler,
	.site-searching {
		border: 1px solid #D3D2DF;
		border-radius: 4px;
		fill: #6d6c80;
		transition: var(--transition);
		cursor: pointer;
	}

	.header .menu nav ul li {
		border-bottom: 1px solid #D3D2DF;
	}

	.header .menu nav ul li:last-child {
		border-bottom: 0;
		padding-bottom: 0 !important;
		margin-bottom: 0;
	}

	.header .dropdown ul li a:hover {
		padding-left: unset !important;
	}

	.header .dropdown ul li a:hover:after {
		content: unset !important;
	}

	.header .dropdown ul {
		transition: none !important;
		box-shadow: unset !important;
	}

	.header .dropdown.mobile_dropdown>ul {
		border-radius: 0;
		border: 1px solid #d3d2df78;
		transform: none;
	}

	.header nav>ul {
		background: #fff;
		box-shadow: 0 0 12px rgba(0, 0, 0, .22);
	}

	.header nav ul li:not(ul li > ul li):hover:after,
	.header nav ul li a:not(ul li > ul li a):hover:after,
	.header nav ul li a.active:not(li ul li a.active):after,
	.header nav ul li:not(li ul li):hover:before,
	.header nav ul li a:not(li ul li a):hover:before,
	.header nav ul li a.active:not(li ul li a.active):before {
		display: none;
	}

	.header nav ul li a.active,
	.header nav ul li:hover a:not(ul li > ul li a) {
		color: var(--pc) !important;
	}

	.header nav ul li:hover svg:not(ul li > ul li svg) {
		fill: var(--pc) !important;
	}

	.header .main-header {
		box-shadow: 0 15px 25px rgba(154, 154, 154, .15);
	}

	#modalAlt {
		bottom: 20px !important;
	}

	:is(.site-banner, .single-page-banner) h1 {
		line-height: 1.4 !important;
		font-size: calc(1.375rem + 1.5vw) !important;
	}

	.fixed_your_meeting .flex-meeting-head-between {
		font-size: 18px;
	}
}