* {
	padding: 0;
	margin: 0;
	scroll-behavior: smooth;
	font-family: "Poppins", sans-serif;
	box-sizing: border-box;
}

ul,
ol {
	list-style: none;
}

p {
	margin-bottom: 10px;
}

:root {
	--bs-gutter-x: 1.5rem;
	--bs-gutter-y: 0;
}

.container,
.container-fluid,
body.tax-product_cat .content-area{
	width: 100%;
	padding-right: var(--bs-gutter-x, .75rem);
	padding-left: var(--bs-gutter-x, .75rem);
	margin-right: auto;
	margin-left: auto;
}

@media (min-width: 576px) {
	.container,
	body.tax-product_cat .content-area{
		max-width: 540px;
	}
}

@media (min-width: 768px) {
	.container,
	body.tax-product_cat .content-area{
		max-width: 720px;
	}
}

@media (min-width: 992px) {
	.container,
	body.tax-product_cat .content-area{
		max-width: 960px;
	}
}

@media (min-width: 1200px) {
	.container,
	body.tax-product_cat .content-area{
		max-width: 1140px;
	}
}

@media (min-width: 1400px) {
	.container,
	body.tax-product_cat .content-area{
		max-width: 1320px;
	}
}

.row {
	--bs-gutter-x: 1.5rem;
	--bs-gutter-y: 0;
	display: flex;
	flex-wrap: wrap;
	margin-top: calc(-1 * var(--bs-gutter-y));
	margin-right: calc(-0.5 * var(--bs-gutter-x));
	margin-left: calc(-0.5 * var(--bs-gutter-x));
}

.row>* {
	box-sizing: border-box;
	flex-shrink: 0;
	width: 100%;
	max-width: 100%;
	padding-right: calc(var(--bs-gutter-x) * 0.5);
	padding-left: calc(var(--bs-gutter-x) * 0.5);
	margin-top: var(--bs-gutter-y);
}

.col-6 {
	flex: 0 0 auto;
	width: 50%;
}

/*------------ Layout media query starts ------------*/
@media (min-width: 768px) {

	.col-md-3 {
		flex: 0 0 auto;
		width: 25%;
	}

	.col-md-4 {
		flex: 0 0 auto;
		width: 33.33333333%;
	}

	.col-md-6 {
		flex: 0 0 auto;
		width: 50%;
	}
}

@media (min-width: 992px) {

	.col-lg-1 {
		flex: 0 0 auto;
		width: 8.33333333%;
	}

	.col-lg-2 {
		flex: 0 0 auto;
		width: 16.66666667%;
	}

	.col-lg-3 {
		flex: 0 0 auto;
		width: 25%;
	}

	.col-lg-4 {
		flex: 0 0 auto;
		width: 33.33333333%;
	}

	.col-lg-5 {
		flex: 0 0 auto;
		width: 41.66666667%;
	}

	.col-lg-7 {
		flex: 0 0 auto;
		width: 58.33333333%;
	}

	.col-lg-6 {
		flex: 0 0 auto;
		width: 50%;
	}

	.col-lg-8 {
		flex: 0 0 auto;
		width: 66.66666667%;
	}

	.col-lg-9 {
		flex: 0 0 auto;
		width: 75%;
	}

	.col-lg-10 {
		flex: 0 0 auto;
		width: 83.33333333%;
	}

	.col-lg-12 {
		flex: 0 0 auto;
		width: 100%;
	}
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 700;
	line-height: 1.3;
	text-transform: capitalize;
	margin-bottom: 5px
}

.h1,
h1 {
	font-size: calc(1.375rem + 1.5vw)
}

@media (min-width:1200px) {

	.h1,
	h1 {
		font-size: 3.125rem
	}
}

.h2,
h2 {
	font-size: calc(1.325rem + .9vw)
}

@media (min-width:1200px) {

	.h2,
	h2 {
		font-size: 2.375rem
	}
}

.h3,
h3 {
	font-size: calc(1.3rem + .6vw)
}

@media (min-width:1200px) {

	.h3,
	h3 {
		font-size: 1.75rem
	}
}

.h4,
h4 {
	font-size: calc(1.275rem + .3vw)
}

@media (min-width:1200px) {

	.h4,
	h4 {
		font-size: 1.5rem
	}
}

.h5,
h5 {
	font-size: 1.25rem
}

.h6,
h6 {
	font-size: 1rem
}

[class*="row-gap"] {
	row-gap: 20px;
}

.row-gap-3 {
	row-gap: 30px;
}

.row-gap-5{
	row-gap: 50px;
}

img,
svg {
	vertical-align: middle;
}

.img-fluid {
	max-width: 100%;
	height: auto;
}

:where(.section, section, .sec-space, .mt-5, .mt-auto) {
/* 	margin-top: 60px; */
	margin-top: 80px;
}

.mt-3 {
	margin-top: 30px !important;
}

.mx-auto {
	margin-inline: auto;
}

.mb-0 {
	margin-bottom: 0 !important;
}

.mb-5 {
	margin-bottom: 50px !important;
}

.pb-50{
	padding-bottom: 50px !important;
}

[class*="flex-"]{
	display: flex;
	align-items: center;
}

[class*="flex-col"] {
	flex-flow: column;
	align-items: unset;
}

[class*="-between"] {
	justify-content: space-between;
}

[class*="grid"] {
	display: grid !important;
}

.justify-content-center {
	justify-content: center;
}

.align-items-center {
	align-items: center;
}

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

/*------------------------topbar-start--------------------------*/

.topbar {
	padding-block: 10px;
}

.topbar ul li a,
.flex-social-media {
	gap: 10px;
}

.topbar p{
	margin: 0;
    gap: 10px;
    line-height: 1;
}

.topbar .flex-top-lb li:not(:first-child) a {
	border-left: 1px solid #ffffff52;
	padding-left: 20px;
	margin-left: 20px;
}

.flex-social-media li a {
	height: 35px;
	width: 35px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.topbar .flex-container{
	gap:50px
}

/*------------------------Header-start--------------------------*/

.header {
	padding-block: 10px;
	z-index: 999;
	position: relative;
}

.headerUp,
.topbarUp{
	position: sticky !important;
	animation: smoothSticky 0.7s ease;
}

.topbarUp{
	top:0;
	z-index:9999 !important
}

.headerUp{
	top: 40px;
}

.bwe-service-logo img {
	height: 60px;
	width: auto;
}

.header nav>ul,
.header .flex-header-rb {
	gap: 30px;
}

.dropdown {
	position: relative;
}

.dropdown ul {
	position: absolute;
	left: 0;
	top: 45px;
	min-width: 230px;
	visibility: hidden;
	opacity: 0;
	transform: scale(1, 0);
	transform-origin: 0 0;
	gap: 10px;
	padding: 15px;
	z-index: 2;
}

.dropdown:hover>ul {
	opacity: 1;
	visibility: visible;
	transform: scale(1);
}

.header .flex-header-rb .flex-head-call {
	gap: 10px;
}

.srchBar {
	padding-left: 30px;
}

[class*="flex-btn"]{
                     overflow: hidden;
                     padding: 10px 20px;
                     gap: 12px;
                     width: fit-content;
	z-index:0;
                  }

.toggleBtn,
.header .closeToggle{
	display: none;
}

/*------------------------Hero-start--------------------------*/

.flex-pairBtn {
	gap: 10px;
	flex-wrap: wrap;
}

.hero-banner .swiper{
	padding-bottom: 0 !important;
}

.hero-banner .swiper-slide img:not(.flex-col-hero-content .flex-subTitle img){   
                  width: 100%;
                  height: 100%;
                  object-fit: contain;
               }

               .hero-banner :is(.swiper-autoheight, .swiper-autoheight .swiper-slide){
                  height: auto !important;
               }

               .hero-banner .flex-col-hero-content {
    position: absolute;
/* 				   text-align:right; */
                  color: var(--white);
    right: 100px;
    gap: 10px;
    top: 50%;
    z-index: 9999;
    max-width: 400px;
    transform: translateY(-50%);
}

.hero-banner H1{
	font-size:50px
}


/* ----------cta-css------------ */

.cta-img img{
	width: 100%;
    height: 350px;
    border-radius: 6px;
}



/* ------------------------ServiceCard_Slides-start--------------------------*/

.flex-col-sec-hd-center {
	align-items: center;
	text-align: center;
}

[class*="flex-col-sec-hd"] {
	gap: 10px;
	margin-bottom: 30px;
}

.flex-hd-between [class*="flex-col-sec-hd"]{
	margin-bottom: 0;
}

.flex-hd-between{
	margin-bottom: 40px;
}

.service-card {
	position: relative;
	overflow: hidden;
	border-radius: 10px;
}

.service-card img {
	height: 300px;
	width: 100%;
	object-fit: cover;
	object-position: center;
	border-radius: 10px;
}

.service-card .srvc-content {
	position: absolute;
	bottom: 20px;
	left: 15px;
	width: 90%;
	padding: 15px;
}

.service-card .flex-icon {
	position: absolute;
	right: 15px;
	top: 20px;
	height: 70px;
	width: 70px;
	justify-content: center;
}

.service-card .flex-icon img {
	height: auto;
	width: auto;
}

.swiper-button-next:after, .swiper-button-prev:after{
	display:none !important
}

/*  .swiper-autoheight, .swiper-autoheight .swiper-slide{
    height: -webkit-fill-available !important;
} */

.flex-col-inds-card {
	gap: 15px;
	height: 100%;
	text-align: center;
	align-items: center;
	padding: 20px;
}

.flex-col-inds-card img {
    transition: transform .3s ease;
	height: 60px;
	width: 60px;
}

.flex-col-inds-card .h6{
	margin-bottom: 0
}

.flex-col-inds-card p{
	font-size: 15px
}

.flex-col-sol-card {
    padding: 25px;
    gap: 10px;
    height: 100%
}

.ind-card{
    align-items: unset;
    text-align: left;
}

.ind-card .flex-ids-hd{
	gap: 10px;
}
               
/* ------------------------faq-start--------------------------*/

details:not(:last-child) {
	margin-bottom: 20px;
}

details summary {
	position: relative;
	padding: 15px 40px 15px 20px
}

details .content {
	padding: 0 20px 10px;
}

/* ------------------------testimonial-or-partner-start--------------------------*/

.flex-col-rev-card {
/* 	gap: 20px; */
	height: 100%;
}

.flex-col-rev-card .flex-user-nm {
	gap: 10px;
}

.flex-col-rev-card .rev-flex-between{
	margin-bottom: 20px;
}

/* .flex-col-rev-card .flex-user-nm img {
	height: 50px;
	width: 50px;
	object-fit: cover;
	border-radius: 50%;
} */

.flex-col-rev-card .flex-between .rev-logo img {
	height: 50px;
	width: auto;
	object-fit: contain;
}

.flex-rating {
	gap: 5px;
	padding: 0;
}

body main ul.flex-rating li:after{
	content: unset;
}

.grid-50{
	grid-template-columns: 50% auto;
	gap: 15px 25px;
}

.form-container .grid-50{
	gap: 15px 70px;
}

/* .form-container .flex-col-form-wrap{
	padding-block: 50px;
} */

.part-logo img {
	height: 50px;
	object-fit: contain;
	width: 100%;
}

.flex-rating {
	gap: 5px;
	padding: 0;
}

/* ------------------------Form-bg-wrapper-start--------------------------*/

.bg-lighty {
	background: #fcfcfc;
	padding-block: 60px;
}

.form-img-wrap {
	background: url(../img/form-img-wrap.svg) no-repeat center / contain;
	width: 100%;
	position: relative;
	border-radius: 10px;
	padding: 60px 80px 40px;
}

form :is(input, select, textarea) {
	width: 100%;
	padding: 12px;
}

.form-img-wrap .form-strip {
	width: fit-content;
	padding: 20px 8px;
	position: absolute;
	right: 3px;
	top: 50%;
	transform: translateY(-50%);
	writing-mode: sideways-rl;
	min-height: 200px;
	text-align: center;
}

@media (width <=1400px) {
	.form-img-wrap .form-strip {
		right: -40px;
	}
}

.ftrs-bg {
	height: 100%;
	padding-block: 50px;
	background: url(../img/ftrs-bg.webp) no-repeat bottom center / cover;
}

.flex-col-ftrs {
	align-items: center;
	text-align: center;
	gap: 15px;
	height: 100%;
}

.flex-col-ftrs .flex-ftrs-icn, .flex-col-sol-card .flex-sol-icn {
	height: 75px;
	width: 75px;
	justify-content: center;
}

.flex-col-ftrs .flex-ftrs-icn img {
	height: 50px;
	width: 50px;
	object-fit: contain;
}

.marquee {
	overflow: hidden;
	padding-block: 15px !important;
	width: 100%;
	background:#f5f5f570
}

.marquee-content {
	min-width: 100%;
	gap: 30px;
	white-space: nowrap;
	animation: marqueeRTL 10s linear infinite
}

.flex-mrq-item {
	gap: 10px;
}

/*------------------------Blog-Card-start--------------------------*/

[class*="blog-card"]{
	height: 100%;
	position: relative;
	overflow: hidden;
	width: 100%;
	gap: 20px;
}

.img-placeholder,
.img-placeholder img {
	width: 100%;
	transition: all .4s ease;
}

.img-placeholder {
	background-color: #c7c7c7;
	aspect-ratio: 16 / 9;
	overflow: hidden;
}

.img-placeholder img {
	height: 100%;
	object-fit: cover;
}

[class*="blog-card"] .flex-col-crd-content {
	gap: 10px;
	flex: 1;
}

.overlay-blog-card {
	position: relative;
	height: 100%;
}

.overlay-blog-card .flex-col-crd-content {
	position: absolute;
	bottom: 0;
	z-index: 9999;
	padding: 25px;
}

/* [class*="-title"] {
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	display: -webkit-box !important;
	margin-bottom: 0 !important;
	overflow: hidden;
	text-overflow: ellipsis;
} */

.grid-blog-card {
	grid-template-columns: 60% auto;
}

.flex-col-blog-card .flex-col-crd-content .date{
    position: absolute;
    top: 210px;
    right: 30px;
    padding: 6px 15px;
}

 .srch-overlay{
               position: fixed;
               height: 200vh;
               width: 100%;
               background: rgb(0 0 0 / 93%);
               z-index: 9999;
               inset: 0;
               display: none;
            }

 .srch-overlay.active{
 	display: block;
 }

            .srchBar-wrapper {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -15px);
    opacity: 0;
    visibility: hidden;
    transition: all .4s ease;
    z-index: 99999;
    width: 100%;
    max-width: 800px;
}

            .srchBar-wrapper#show {
            	transform: translate(-50%, -50%);
    opacity: 1;
    visibility: visible;
    transition: all .4s ease;
            }

            .srchBar-wrapper form{
               position: relative;
            }

            .srchBar-wrapper form input{
               background: transparent;
    color: var(--white);
    border-bottom: 1px solid var(--white) !important;
    outline: 0;
    border-radius: 0;
    font-size: 30px;
    padding: 0 40px 5px 0;
            }

            .srchBar-wrapper form input::placeholder{
               color: var(--white);
}

            .srchBar-wrapper form button{
               position: absolute;
    right: 0;
    padding: 10px;
    background: transparent;
    border: 0;
    outline: 0;
            }

            .closeSrchBar{
               position: fixed;
               right: 30px;
               cursor: pointer;
               top: 30px;
               z-index: 999999;
               display: none;
            }


.sticky-col{
	position: sticky;
    top: 50px;
}


     .cat-card {
   padding: 30px;
   overflow: hidden;
}

.cat-card .flex-col-cat-content {
   gap: 10px;
}

.cat-card .flex-col-cat-content .dvsn {
   padding: 7px 15px;
   margin-bottom: 10px;
   width: fit-content;
}

.cat-card .flex-col-cat-content :is(.h5, p) {
   margin-bottom: 0;
}

/* .abt-wrap {
   height: 100%;
   width: 100%;
   padding-block: 50px;
}

.abt-wrap .abt-img img {
   width: 100%;
}

.abt-wrap .abt-img {
   position: relative;
}

.abt-wrap .abt-img .exp {
   position: absolute;
   bottom: 150px;
   left: -18px;
   text-align: center;
   padding: 20px 40px;
} */

.my-50{
  margin-block: 50px;
}

.flex-abt-list{
  gap: 10px 30px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.flex-abt-list li{
  gap: 10px;
  font-weight: 500;
}

.flex-col-social-col{
  padding: 25px;
  text-align: center;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
}

:is(body.single-blog, body.page) main :where(ul, ol) {
   display: grid;
   gap: 10px;
   padding-left: 25px;
}

.flex-col-prod-card .flex-prod-img img {
    height: 300px;
	object-fit:contain;
    width: 100%;
}

.flex-col-prod-card {
   padding: 12px 15px 20px;
   gap: 15px;
	align-items:center
}

.flex-col-prod-card  .flex-pairBtn{
	margin-top:15px;
}

.flex-prod-btn {
   padding-left: 15px;
   justify-content: space-between;
   height: 40px;
   overflow: hidden;
}

.flex-prod-btn span {
   background: var(--sc);
   height: 40px;
   width: 40px;
   justify-content: center;
   transition:all .4s ease;
}

.flex-col-wcu-card img {
   height: 55px;
   width: 55px;
   margin-bottom: 8px;
}

.flex-col-wcu-card {
   gap: 5px;
}

.flex-col-wcu-card.align-end {
   align-items: self-end;
   text-align: right;
   margin-right: 40px;
}

.flex-col-wcu-card:not(.flex-col-wcu-card.align-end) {
   margin-left: 40px;
}

.bg-primary {
   background: var(--pc);
   padding: 50px
}

.bg-secondary {
   background: var(--sc);
   padding: 50px
}

.gap-0 {
   gap: 0 !important;
}

:is(.flex-wcu-info, .flex-wcu-info .flex-col-info) {
   gap: 10px;
}

.form-container {
    position: relative;
    /* background: #2d30910a; */
    padding-block: 50px;
}

.form-container:after {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    background: #eeeeeec7;
    right: 0;
    top: 0;
    max-width: 680px;
    z-index: -1;
}

@media (min-width: 1441px), (max-width: 1400px) {
    .form-container:after {
        display: none;
    }
}

.grid-3 {
   grid-template-columns: 40% 45% 10%;
   gap: 20px 50px;
   align-items: center;
}

/* .form-container img {
    height: 600px;
    object-fit: cover;
    transform: scale(-1, 1);
    object-position: top;
    width: 100%;
} */

.form-container .flex-form-info {
    padding: 12px 20px;
    gap: 12px;
}

.form-container .form-grdnt-text {
   writing-mode: sideways-lr;
   position: absolute;
   padding-block: 40px;
   right: 20px;
   top: 50%;
   transform: translateY(-50%);
}

.search-form{
        position: relative;
    }

    .search-form input{
        padding: 0 30px 7px 10px;
    }

    .search-form button{
        position: absolute;
        background: transparent;
        right: 0;
        top: 3px;
    }

.err-container img{
	height:300px
}

.err-container .flex-col-error-wrap{
	gap:10px
}

/*-----------ath-single-start-----------*/

.flex-col-ath-desc .flex-ath-bio {
	gap: 15px;
	margin-bottom: 30px
}

.flex-col-ath-desc .auth-social-follow ul {
	list-style: none !important;
	padding: 0 !important;
	flex-direction: row !important;
	margin-block: 10px 20px;
	display:flex;
}
.flex-col-ath-desc .auth-social-follow ul li:after{
	display:none
}

.single-blog-con :is(h2, h3, h4, h5, h6, p, ul){
	margin-bottom:15px !important
}

.single-blog-con a{
	color:var(--pc);
	text-decoration:underline;
	font-weight:600;
}

.single-blog-con a:hover{
	text-decoration:none;
}

.flex-post-smry{
        justify-content: center;
        margin-top: 30px;
        gap: 15px 50px;
        flex-wrap: wrap;
    }

    .flex-post-smry :is(a, span, div){
        color: var(--white);
    }

/*------------------------Footer-start--------------------------*/

.footer {
    padding-block: 250px 50px;
    margin-top: 130px;
}

.footer .foot-topbar {
	margin-block: -290px 50px;
}

.footer .flex-col-logo-wrap {
	gap: 20px;
}

.flex-col-foot-menu{
	gap: 10px;
}

.flex-col-foot-menu .menu-ttl {
	position: relative;
	margin-bottom: 22px
}

.footer .flex-col-menu-list {
	gap: 15px;
}

.footer .flex-foo-info {
	gap: 10px;
	align-items: unset;
}

.flex-copyright {
    padding: 10px 20px;
    text-align: center;
    flex-wrap: wrap;
    gap: 20px 0;
}

.mob-cta-strip,
.mob-bnr{
	display:none
}

.flex-cta-con-between{
        gap: 20px;
        background: transparent;
        padding: 30px;
        border-radius: 20px;
        border: 2px solid var(--pc);
        flex-wrap: wrap;
    }

    .flex-cta-con-between .flex-col-cta-con-between{
        gap: 10px;
    }


 .grid-details-col{
        gap: 20px;
        grid-template-columns: 15% auto;
        align-items: center;   
    }

    .grid-details-col span {
    height: 50px;
    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .step-wrap {
    background: var(--sc);
    padding: 30px;
    position: relative;
    z-index: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .step-wrap .flex-col-detl-step{
        gap: 5px;
        text-align: center;
    }

.chess-box{
    gap:0;
  }

  .p-5{
    padding: 50px;
  }

.tabsCon .tabcontent {
    display: none;
}

    .before-after-slider {
        margin: auto;
        overflow: hidden;
        position: relative;
        width: fit-content;
    }

    .before-after-slider img {
    border-radius: unset;
    display: block;
    height: 350px;
    object-fit: contain;
    user-select: none
}

.before-image {
    left: 0;
    overflow: hidden;
    width: 50%;
    z-index: 2
}

.before-image,.resizer {
    height: 100%;
    position: absolute;
    top: 0
}

.resizer {
    background: var(--white);
    cursor: ew-resize;
    left: 50%;
    touch-action: pan-y;
    width: 4px;
    z-index: 5
}

.resizer,.resizer:after {
    align-items: center;
    display: flex
}

.flex-tabs {
    width: fit-content;
    margin: 0 auto 30px auto;
    padding: 10px 10px;
}

.brnch-card .abt-loc-card {
    padding: 50px 10px 30px;
    height: 100%;
    gap: 10px;
    position: relative;
}

   .brnch-card .abt-loc-card span {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70px;
    width: 70px;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
}


/*-----------------------------for-mediaQuery-----------------------start**/

@media (width <=1023px) {
	
	.header nav ul li.dropdown svg{
    position: absolute;
    right: 0;
    top: 10px;
}
	
	.meeting-head-wrap{
   padding: 15px 20px !important;
}

.fixed_your_meeting_Enq-Form {
   padding: 20px !important;
}

	.toggleBtn {
		order: 2;
		display: block;
		cursor: pointer;
	}

	.header:after,
	.ftrs-bg:after,
    .ftrs-bg:before,
    .topbar p,
    .flex-hd-between [class*="flex-btn"],
    .swiper :is([class*="swiper-button"]),
	.hero-banner [class*="flex-btn"] .flex-span-icn,
	.topbar .flex-container p{
		display: none !important;
	}

	.header .widget_bwe-service-logo-widget .bwe-service-logo img{
		filter: unset !important;
	}

	.header .closeToggle{
		position: fixed;
		right: 30px;
		top: 15px;
		z-index: 999999999999;
	}

	.flex-head-call,
	.form-strip,
	.form-container .form-grdnt-text,
	.d-md-none{
		display: none;
	}
	
	.mob-cta-strip,
	.mob-bnr{
	display: block !important
}

	.order-md-1 {
		order: 1;
	}
	
	.order-md-2 {
		order: 2;
	}

	.header nav>ul {
		flex-direction: column;
		width: 100%;
		background: var(--white);
		position: fixed;
		left: 0;
		top: 0;
		align-items: unset;
		padding: 30px;
		gap: 18px;
		height: 100%;
		z-index: 999999999;
		transform: translateX(-100%);
		transition: all .4s;
	}

	.header nav>ul.showMenu {
		transform: translateX(0%);
		transition: all .4s;
	}

	.header nav>ul li.dropdown #showSubMenu {
		position: relative;
		display: flex;
		top: 0;
		margin-block: 10px 0;
		width: fit-content;
		transform: unset !important;
		opacity: unset !important;
		transform: unset !important;
		visibility: unset !important;
	}

	.srchBar-wrapper{
		width: 90% !important;
	}

	.srchBar-wrapper form input{
		font-size: 20px !important;
	}

/* 	    .hero-banner .swiper-pagination {
        display: flex !important;
        gap: 8px !important;
        top: 85% !important;
        transform: translateX(-50%) !important;
    } */

/* .hero-banner .swiper-pagination .swiper-pagination-bullet{
    width: 25px !important;
	height: 25px !important;
} */

            .srchBar-wrapper form button{
            	padding-block: 0 !important;
            }

	.form-bg-img:after,
.hero-banner .swiper .swiper-slide .hero-content p{
		display: none;
	}
	
	.inner-img .flex-col-adrs-strip{
		bottom:0 !important
	}
	
	.flex-col-adrs-strip .flex-info-adrs{
		font-size:12px !important
	}

	.dot-circle:after,
	.dot-circle:before {
		opacity: .3;
	}

/* .hero-banner .swiper .swiper-slide .hero-content{
	height: 350px !important;
}

.hero-banner .swiper .swiper-slide .hero-content:after{
	height: 350px !important;
} */

	.part-logo,
	.flex-col-rev-card,
	.cat-card,
	.bg-primary,
	.bg-secondary{
		padding: 15px !important;
	}

	.bg-color-img,
	.ftrs-bg,
	.bg-lighty,
	.light-pc-bg,
	.form-container,
	.form-container .flex-col-form-wrap{
		padding-block: 30px !important;
	}
	
/* 	..flex-pairBtn [class*="flex-btn"]{
		font-size:14px !important
	} */

	.flex-col-blog-card .flex-col-crd-content .date{
		top: 50% !important	;
	}

	.flex-col-wcu-card{
		text-align: center !important;
		align-items: center !important;
		margin:0 !important;
	}

	.wcu-wrapper .row-gap-5{
		row-gap: 20px !important;
	}

/* 	.hero-banner .swiper-slide img:not(.flex-col-hero-content .flex-subTitle img){
		height:auto !important;
	}

	.hero-banner .flex-pairBtn{
		gap: 20px !important;
		margin-top: 15px !important;
		margin-left: unset !important;
	} */

/* 	.hero-banner h1{
		font-weight: 600;
	}

	.hero-banner .flex-col-hero-content{
		display:none !important
	}
	
	.hero-banner .flex-col-hero-content .text-black{
		color:var(--white) !important;
	}
	
	.hero-banner .flex-col-hero-content .flex-subTitle{
		justify-content:start !important
	}

	.hero-banner .swiper .swiper-slide .hero-content:after{
		background: linear-gradient(89.97deg, rgb(0 0 0 / 85%) -7.68%, rgb(0 0 0 / 85%) 155.57%) !important;
	}

	.hero-banner [class*="flex-btn"] {
    	font-size: 14px !important;
    	padding: 10px !important;
    } */
	
	[class*="flex-col-sec-hd"]{
		margin-bottom:20px !important
	}
	
	.flex-col-social-col .val{
		font-size:24px !important;
	}

	:where(.section, section, .sec-space, .mt-5, .mt-auto) {
		margin-top: 40px;
	}

	form textarea,
	.cta-img img{
		height: auto !important;
	}

	.form-img-wrap {
		padding: 25px !important;
		background-size: cover !important;
		background-position: unset !important;
	}

	.footer {
		padding-bottom: 10px
	}

	.foot-top-wrap {
		padding: 20px
	}

	.foot-top-wrap .h3 {
		font-size: 20px;
		margin: 0;
		line-height: 30px !important;
	}

body.single-product h1{
        font-size: 22px !important;
    }

    body.single-product h2{
        font-size: 20px !important;
    }

	.disclaimer {
		margin-top: 20px
	}

	.grid-blog-card,
	.grid-3,
	.grid-50{
		grid-template-columns: auto !important;
	}
	
	.chess-box .p-5{
		padding:20px !important
	}

/* 	.wcu-smry p{
		font-size: 16px !important;
		font-weight:400 !important;
	}

	.overlay-blog-card{
		min-height: 250px;
	}

	.grid-blog-card{
		flex-direction: column-reverse;
    	display: flex !important;
	} */
	
	.py-5 {
		padding-block:25px!important;
	}
	
	.flex-col-prod-card [class*="flex-btn"]{
		padding-inline:15px !important
	}
	
	.flex-col-prod-card .flex-pairBtn{
		gap:10px !important
	}
	
/* 	.hero-banner .swiper .swiper-slide .hero-content{
               position: relative;
             }

             .hero-banner .swiper .swiper-slide .hero-content:after{
               content: '';
               position: absolute;
               background: linear-gradient(89.97deg, #000000 -7.68%, rgba(0, 0, 0, 0) 155.57%);
               height: 100%;
               width: 100%;
               inset: 0;
             } */
	
	.inner-img:after{
		content:unset !important
	}
	
	.inner-img .flex-col-adrs-strip{
		position:static !important
	}
	
	.form-container .grid-3 .inner-img{
		order:2;
	}
	
	.topbar .flex-top-lb .flex-ul-item span{
		display:flex !important;
		}
	
	 .ingredients-item-two {
    flex-direction: column !important;
    text-align: center !important;
}
	
	.ingredients-item-wrap{
		margin:unset !important
	}
	
	.ingredients-content-two .title{
		font-size:16px !important
	}
	
}


@media (600px <=width <=1023px) {
	.woocommerce ul.products:not(.sidebar-cat ul.products){
		grid-template-columns: repeat(2, 1fr) !important;
	}
}


@media (width <=600px) {

	.topbar:before,
	.topbar:after,
	.topbar .flex-social-media,
	.header .pc-flex-btn span,
	.bg-texture:after ,
	.bg-texture:before {
		display: none;
	}

	.topbar .flex-top-lb li:not(:first-child) a {
		border-left: 0;
	}

	.topbar .flex-top-lb{
		flex-wrap: wrap;
		gap: 5px;
	}

	.header .wtsp-btn {
        font-size: 13px;
        padding: 8px 15px;
        gap: 8px;
    }
	
	.header .pc-flex-btn{
        display: none;
	}

	.header .flex-header-rb {
		gap: 20px;
	}

	.srchBar {
		padding: 0;
		border-left: unset !important;
	}

	.hero-banner .flex-col-hero-content {
		gap: 10px;
	}

	.grid-50.wcu-smry {
		grid-template-columns: auto !important;
	}

	.footer .flex-col-foot-menu li a{
		font-size: 14px !important
	}
	
	.woocommerce ul.products:not(.sidebar-cat ul.products) {
		grid-template-columns: auto !important;
	}
	
	.woocommerce .woocommerce-ordering{
		float:left !important
	}
		.woocommerce div.product .woocommerce-tabs ul.tabs li {
    padding: 0px 15px!important;
}
.woocommerce ul.products:not(.sidebar-cat ul.products) {
    gap: 20px 20px!important;
}
.footer {
    margin-top: 80px;
}
.fixed_your_meeting {
    padding: 20px!important;
}	
	
}

/* Added By Nikhil Kumar Dogra */

.fw-light { font-weight: 300; }
.py-3 { padding-block: 30px !important;}
.py-5 { padding-block: 50px;}
.mb-2 { margin-bottom: 20px; }

.srvc-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
    height: -webkit-fill-available;
    padding: 30px 20px;
    margin-bottom: 20px;
}

.srvc-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.bg-dark {
    position: relative;
    z-index: 0;
}

.bg-dark:after {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.bg-dark h2 {
    position: relative;
    z-index: 1;
}

/* added by nikhil */
.form-container .container img{
      width: 100%;
      height: auto !important;
   }

[class*="flex-col-error-wrap"] {
    flex-flow: column;
    align-items: center;
}

.woocommerce-product-details__short-description th {
    background: #e3e3e3;
    /* color: white; */
    padding: 8px 15px;
    text-align: left;
    font-weight: 600;
}

.woocommerce-product-details__short-description td {
    padding: 8px 15px;
    border-bottom: 1px solid #e5e7eb;
    font-size: 15px;
	color: #3a3a3a;
}

.woocommerce-product-details__short-description tr:last-child td {
    border-bottom: none;
}

.woocommerce-product-details__short-description tr:nth-child(even) {
    background: #f9fafb;
}

.woocommerce-product-details__short-description tr:hover {
    background: #f3f4f6;
    transition: background 0.2s ease;
}


.woocommerce ul.products:not(.sidebar-cat ul.products){
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap:50px 20px;
    }

.woocommerce ul.products::before,
.woocommerce ul.products::after{
	content:unset !important
}

 .woocommerce ul.products li{
	width:100% !important;
	margin:0 !important
}

.product-item .woocommerce ul.products li .button{
	background:var(--pc);
	color:var(--white);
	font-weight:500;
	transition:all .2s;
}

.product-item .woocommerce ul.products li:hover .button{
	transition:all .2s ;
	opacity:0.8
}

.product-item .sidebar-cat{
        position: sticky !important;
    	top: 50px !important;
	background: rgba(0, 137, 199, 0.11);
    padding: 24px;
    border-top: 2px solid rgb(0, 137, 199);
    }

.product-item .sidebar-cat ul li img{
	display:none !important
}

.woocommerce-product-gallery [class*="flex-"]:not(.flex-control-thumbs){
	display:block !important
}

.product-item .sidebar-cat ul li:not(:first-child){
                border-top: 1px solid rgb(223 223 223);
                padding-top: 10px;
                margin-top: 10px;
            }

            .product-item .sidebar-cat ul li h2{
                position:relative;
				width:100%;
				font-weight:unset;
            }

      .product-item .sidebar-cat ul li h2 mark {
    position: absolute;
    right: 0;
    top: 3px;
    font-size: 14px;
}

.product-item .sidebar-cat:not(.sidebar-cat.prod-side-cat) ul li{
	display:flex;
	align-items:center;
	justify-content:space-between
}

            .product-item .sidebar-cat ul li .wc-block-product-categories-list-item-count,
.product-item .sidebar-cat ul li h2 mark{
                    background: var(--pc);
    color: var(--white);
    height: 30px;
    width: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
            }

.product-item .sidebar-cat .h4{
	margin-bottom:30px !important;
		font-size:18px;
}


.woocommerce-product-details__short-description table {
	background: white;
	box-shadow: 0 4px 6px rgb(0 0 0 / 5%);
	overflow: hidden;
	width: 100%;
	margin: 30px auto;
	border: 1px solid var(--muted);
}

ul.tabs.wc-tabs{
    display: flex;
    align-items: center;
    padding: 0 6px !important;
    gap: 20px;
	flex-wrap:wrap;
	justify-content:center;
	border-bottom: 1px solid #e9e9e9cc;
}

.content-area{
	margin-top:40px; 
}

body.single-product .content-area .woocommerce-product-gallery .flex-control-nav{
        display: flex !important;
	    margin-top: 20px !important;
        align-items: center;
        gap: 20px;
    }

.flex-control-thumbs li img{
        border-radius: 50%;
    }

.flex-control-thumbs{
	margin-top: 20px !important;
	display: grid !important;
    align-items: center;
    gap: 20px;
    justify-content: center;
    grid-template-columns: repeat(8, 1fr);
}



